mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Merge pull request #953 from eikek/number-files
Show the number of selected files on upload page
This commit is contained in:
commit
df5b59a7ce
@ -88,8 +88,8 @@ val elmSettings = Seq(
|
|||||||
Compile / unmanagedSourceDirectories += (Compile / sourceDirectory).value / "elm",
|
Compile / unmanagedSourceDirectories += (Compile / sourceDirectory).value / "elm",
|
||||||
headerSources / includeFilter := "*.elm",
|
headerSources / includeFilter := "*.elm",
|
||||||
headerMappings := headerMappings.value + (HeaderFileType("elm") -> HeaderCommentStyle(
|
headerMappings := headerMappings.value + (HeaderFileType("elm") -> HeaderCommentStyle(
|
||||||
new CommentBlockCreator("{-", " ", "-}"),
|
new CommentBlockCreator("{-", " ", "-}\n"),
|
||||||
HeaderPattern.commentBetween("\\{\\-", " ", "\\-\\}")
|
HeaderPattern.commentBetween("\\{\\-", " ", "\\-\\}")
|
||||||
))
|
))
|
||||||
)
|
)
|
||||||
val stylesSettings = Seq(
|
val stylesSettings = Seq(
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Api exposing
|
module Api exposing
|
||||||
( addConcEquip
|
( addConcEquip
|
||||||
, addConcPerson
|
, addConcPerson
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module App.Data exposing
|
module App.Data exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module App.Update exposing
|
module App.Update exposing
|
||||||
( initPage
|
( initPage
|
||||||
, update
|
, update
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module App.View2 exposing (view)
|
module App.View2 exposing (view)
|
||||||
|
|
||||||
import Api.Model.AuthResult exposing (AuthResult)
|
import Api.Model.AuthResult exposing (AuthResult)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.AddressForm exposing
|
module Comp.AddressForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.AttachmentMeta exposing
|
module Comp.AttachmentMeta exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.Basic exposing
|
module Comp.Basic exposing
|
||||||
( editLinkLabel
|
( editLinkLabel
|
||||||
, editLinkTableCell
|
, editLinkTableCell
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.BasicSizeField exposing
|
module Comp.BasicSizeField exposing
|
||||||
( Msg
|
( Msg
|
||||||
, update
|
, update
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.CalEventInput exposing
|
module Comp.CalEventInput exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ChangePasswordForm exposing
|
module Comp.ChangePasswordForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ClassifierSettingsForm exposing
|
module Comp.ClassifierSettingsForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.CollectiveSettingsForm exposing
|
module Comp.CollectiveSettingsForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ColorTagger exposing
|
module Comp.ColorTagger exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ConfirmModal exposing
|
module Comp.ConfirmModal exposing
|
||||||
( Settings
|
( Settings
|
||||||
, defaultSettings
|
, defaultSettings
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ContactField exposing
|
module Comp.ContactField exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.CustomFieldForm exposing
|
module Comp.CustomFieldForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.CustomFieldInput exposing
|
module Comp.CustomFieldInput exposing
|
||||||
( FieldResult(..)
|
( FieldResult(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.CustomFieldManage exposing
|
module Comp.CustomFieldManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.CustomFieldMultiInput exposing
|
module Comp.CustomFieldMultiInput exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.CustomFieldTable exposing
|
module Comp.CustomFieldTable exposing
|
||||||
( Action(..)
|
( Action(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.DatePicker exposing
|
module Comp.DatePicker exposing
|
||||||
( Msg
|
( Msg
|
||||||
, defaultSettings
|
, defaultSettings
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.DetailEdit exposing
|
module Comp.DetailEdit exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.Dropdown exposing
|
module Comp.Dropdown exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
-- inspired from here: https://ellie-app.com/3T5mNms7SwKa1
|
-- inspired from here: https://ellie-app.com/3T5mNms7SwKa1
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.EmailInput exposing
|
module Comp.EmailInput exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.EmailSettingsForm exposing
|
module Comp.EmailSettingsForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.EmailSettingsManage exposing
|
module Comp.EmailSettingsManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.EmailSettingsTable exposing
|
module Comp.EmailSettingsTable exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.EquipmentForm exposing
|
module Comp.EquipmentForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.EquipmentManage exposing
|
module Comp.EquipmentManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.EquipmentTable exposing
|
module Comp.EquipmentTable exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ExpandCollapse exposing
|
module Comp.ExpandCollapse exposing
|
||||||
( collapseToggle
|
( collapseToggle
|
||||||
, expandToggle
|
, expandToggle
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.FieldListSelect exposing
|
module Comp.FieldListSelect exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.FixedDropdown exposing
|
module Comp.FixedDropdown exposing
|
||||||
( Item
|
( Item
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.FolderDetail exposing
|
module Comp.FolderDetail exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.FolderManage exposing
|
module Comp.FolderManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.FolderSelect exposing
|
module Comp.FolderSelect exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.FolderTable exposing
|
module Comp.FolderTable exposing
|
||||||
( Action(..)
|
( Action(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ImapSettingsForm exposing
|
module Comp.ImapSettingsForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ImapSettingsManage exposing
|
module Comp.ImapSettingsManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ImapSettingsTable exposing
|
module Comp.ImapSettingsTable exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.IntField exposing
|
module Comp.IntField exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemCard exposing
|
module Comp.ItemCard exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemCardList exposing
|
module Comp.ItemCardList exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail exposing
|
module Comp.ItemDetail exposing
|
||||||
( Model
|
( Model
|
||||||
, emptyModel
|
, emptyModel
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.AddFilesForm exposing (view)
|
module Comp.ItemDetail.AddFilesForm exposing (view)
|
||||||
|
|
||||||
import Comp.Dropzone
|
import Comp.Dropzone
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.ConfirmModalView exposing (view)
|
module Comp.ItemDetail.ConfirmModalView exposing (view)
|
||||||
|
|
||||||
import Comp.ConfirmModal
|
import Comp.ConfirmModal
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.EditForm exposing (formTabs, view2)
|
module Comp.ItemDetail.EditForm exposing (formTabs, view2)
|
||||||
|
|
||||||
import Comp.CustomFieldMultiInput
|
import Comp.CustomFieldMultiInput
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.FieldTabState exposing (EditTab(..), allTabs, findTab, tabName, tabState)
|
module Comp.ItemDetail.FieldTabState exposing (EditTab(..), allTabs, findTab, tabName, tabState)
|
||||||
|
|
||||||
import Comp.CustomFieldMultiInput
|
import Comp.CustomFieldMultiInput
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.FormChange exposing
|
module Comp.ItemDetail.FormChange exposing
|
||||||
( FormChange(..)
|
( FormChange(..)
|
||||||
, multiUpdate
|
, multiUpdate
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.ItemInfoHeader exposing (view)
|
module Comp.ItemDetail.ItemInfoHeader exposing (view)
|
||||||
|
|
||||||
import Api.Model.IdName exposing (IdName)
|
import Api.Model.IdName exposing (IdName)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.Model exposing
|
module Comp.ItemDetail.Model exposing
|
||||||
( AttachmentRename
|
( AttachmentRename
|
||||||
, ConfirmModalValue(..)
|
, ConfirmModalValue(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.MultiEditMenu exposing
|
module Comp.ItemDetail.MultiEditMenu exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.Notes exposing (view)
|
module Comp.ItemDetail.Notes exposing (view)
|
||||||
|
|
||||||
import Comp.ItemDetail.Model
|
import Comp.ItemDetail.Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.SingleAttachment exposing (view)
|
module Comp.ItemDetail.SingleAttachment exposing (view)
|
||||||
|
|
||||||
import Api
|
import Api
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.Update exposing (update)
|
module Comp.ItemDetail.Update exposing (update)
|
||||||
|
|
||||||
import Api
|
import Api
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemDetail.View2 exposing (view)
|
module Comp.ItemDetail.View2 exposing (view)
|
||||||
|
|
||||||
import Comp.Basic as B
|
import Comp.Basic as B
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ItemMail exposing
|
module Comp.ItemMail exposing
|
||||||
( FormAction(..)
|
( FormAction(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.KeyInput exposing
|
module Comp.KeyInput exposing
|
||||||
( KeyInput
|
( KeyInput
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.LinkTarget exposing
|
module Comp.LinkTarget exposing
|
||||||
( LinkTarget(..)
|
( LinkTarget(..)
|
||||||
, makeConcLink
|
, makeConcLink
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.MarkdownInput exposing
|
module Comp.MarkdownInput exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.MenuBar exposing
|
module Comp.MenuBar exposing
|
||||||
( ButtonData
|
( ButtonData
|
||||||
, CheckboxData
|
, CheckboxData
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.NotificationForm exposing
|
module Comp.NotificationForm exposing
|
||||||
( Action(..)
|
( Action(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.NotificationList exposing
|
module Comp.NotificationList exposing
|
||||||
( Action(..)
|
( Action(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.NotificationManage exposing
|
module Comp.NotificationManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.OrgForm exposing
|
module Comp.OrgForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.OrgManage exposing
|
module Comp.OrgManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.OrgTable exposing
|
module Comp.OrgTable exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.PasswordInput exposing
|
module Comp.PasswordInput exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.PersonForm exposing
|
module Comp.PersonForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.PersonManage exposing
|
module Comp.PersonManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.PersonTable exposing
|
module Comp.PersonTable exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.PowerSearchInput exposing
|
module Comp.PowerSearchInput exposing
|
||||||
( Action(..)
|
( Action(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.Progress exposing
|
module Comp.Progress exposing
|
||||||
( progress2
|
( progress2
|
||||||
, smallIndicating
|
, smallIndicating
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ScanMailboxForm exposing
|
module Comp.ScanMailboxForm exposing
|
||||||
( Action(..)
|
( Action(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ScanMailboxList exposing
|
module Comp.ScanMailboxList exposing
|
||||||
( Action(..)
|
( Action(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.ScanMailboxManage exposing
|
module Comp.ScanMailboxManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.SearchMenu exposing
|
module Comp.SearchMenu exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.SearchStatsView exposing
|
module Comp.SearchStatsView exposing
|
||||||
( nameOrLabel
|
( nameOrLabel
|
||||||
, sortFields
|
, sortFields
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.SentMails exposing
|
module Comp.SentMails exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.SourceForm exposing
|
module Comp.SourceForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.SourceManage exposing
|
module Comp.SourceManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.SourceTable exposing
|
module Comp.SourceTable exposing
|
||||||
( Msg
|
( Msg
|
||||||
, SelectMode(..)
|
, SelectMode(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.StringListInput exposing
|
module Comp.StringListInput exposing
|
||||||
( ItemAction(..)
|
( ItemAction(..)
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.Tabs exposing
|
module Comp.Tabs exposing
|
||||||
( State(..)
|
( State(..)
|
||||||
, Style
|
, Style
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.TagForm exposing
|
module Comp.TagForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.TagManage exposing
|
module Comp.TagManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.TagSelect exposing
|
module Comp.TagSelect exposing
|
||||||
( CategoryCount
|
( CategoryCount
|
||||||
, Model
|
, Model
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.TagTable exposing
|
module Comp.TagTable exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.UiSettingsForm exposing
|
module Comp.UiSettingsForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.UiSettingsManage exposing
|
module Comp.UiSettingsManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.UiSettingsMigrate exposing
|
module Comp.UiSettingsMigrate exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg
|
, Msg
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.UserForm exposing
|
module Comp.UserForm exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.UserManage exposing
|
module Comp.UserManage exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.UserTable exposing
|
module Comp.UserTable exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Comp.YesNoDimmer exposing
|
module Comp.YesNoDimmer exposing
|
||||||
( Model
|
( Model
|
||||||
, Msg(..)
|
, Msg(..)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Data.BasicSize exposing
|
module Data.BasicSize exposing
|
||||||
( BasicSize(..)
|
( BasicSize(..)
|
||||||
, all
|
, all
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Data.CalEvent exposing
|
module Data.CalEvent exposing
|
||||||
( CalEvent
|
( CalEvent
|
||||||
, everyMonth
|
, everyMonth
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{-
|
{-
|
||||||
Copyright 2020 Docspell Contributors
|
Copyright 2020 Docspell Contributors
|
||||||
|
|
||||||
SPDX-License-Identifier: GPL-3.0-or-later
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
|
||||||
module Data.Color exposing
|
module Data.Color exposing
|
||||||
( Color(..)
|
( Color(..)
|
||||||
, all
|
, all
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user