codex 1.5.19__py3-none-any.whl → 1.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of codex might be problematic. Click here for more details.
- codex/exceptions.py +25 -12
- codex/integrity.py +66 -3
- codex/librarian/covers/coverd.py +2 -2
- codex/librarian/covers/create.py +52 -30
- codex/librarian/covers/path.py +9 -8
- codex/librarian/covers/purge.py +28 -18
- codex/librarian/covers/tasks.py +3 -2
- codex/librarian/importer/{aggregate_metadata.py → aggregate.py} +58 -88
- codex/librarian/importer/cache.py +93 -0
- codex/librarian/importer/const.py +77 -23
- codex/librarian/importer/create_comics.py +101 -18
- codex/librarian/importer/create_covers.py +96 -0
- codex/librarian/importer/create_fks.py +129 -150
- codex/librarian/importer/deleted.py +103 -28
- codex/librarian/importer/{clean_metadata.py → extract.py} +33 -4
- codex/librarian/importer/failed_imports.py +44 -66
- codex/librarian/importer/importer.py +96 -0
- codex/librarian/importer/importerd.py +71 -290
- codex/librarian/importer/init.py +265 -0
- codex/librarian/importer/link_comics.py +26 -26
- codex/librarian/importer/link_covers.py +73 -0
- codex/librarian/importer/moved.py +138 -89
- codex/librarian/importer/query_covers.py +52 -0
- codex/librarian/importer/query_fks.py +255 -189
- codex/librarian/importer/status.py +8 -39
- codex/librarian/importer/tasks.py +26 -9
- codex/librarian/janitor/cleanup.py +61 -16
- codex/librarian/janitor/failed_imports.py +1 -1
- codex/librarian/janitor/janitor.py +13 -1
- codex/librarian/janitor/janitord.py +1 -1
- codex/librarian/janitor/status.py +1 -0
- codex/librarian/janitor/tasks.py +5 -0
- codex/librarian/librariand.py +9 -5
- codex/librarian/notifier/notifierd.py +1 -1
- codex/librarian/notifier/tasks.py +4 -4
- codex/librarian/search/update.py +1 -1
- codex/librarian/watchdog/db_snapshot.py +9 -6
- codex/librarian/watchdog/emitter.py +3 -0
- codex/librarian/watchdog/event_batcherd.py +19 -3
- codex/librarian/watchdog/events.py +176 -36
- codex/librarian/watchdog/observers.py +13 -3
- codex/middleware.py +1 -2
- codex/migrations/0027_import_order_and_covers.py +280 -0
- codex/models/admin.py +0 -1
- codex/models/base.py +6 -0
- codex/models/comic.py +41 -40
- codex/models/functions.py +12 -0
- codex/models/groups.py +58 -12
- codex/models/library.py +11 -3
- codex/models/paths.py +62 -14
- codex/models/query.py +91 -0
- codex/models/util.py +31 -0
- codex/permissions.py +1 -1
- codex/search/backend.py +2 -2
- codex/search/backend_search.py +229 -0
- codex/search/engine.py +1 -9
- codex/search/query.py +67 -0
- codex/search/writing.py +1 -1
- codex/serializers/admin.py +56 -45
- codex/serializers/browser/choices.py +37 -42
- codex/serializers/browser/filters.py +32 -136
- codex/serializers/browser/metadata.py +59 -0
- codex/serializers/browser/mixins.py +65 -0
- codex/serializers/browser/mtime.py +21 -0
- codex/serializers/browser/page.py +6 -21
- codex/serializers/browser/settings.py +43 -11
- codex/serializers/choices.py +35 -12
- codex/serializers/fields.py +149 -0
- codex/serializers/mixins.py +0 -22
- codex/serializers/models/pycountry.py +11 -51
- codex/serializers/opds/urls.py +10 -0
- codex/serializers/opds/v2.py +10 -16
- codex/serializers/opds/v2_unused.py +5 -3
- codex/serializers/reader.py +24 -16
- codex/serializers/redirect.py +3 -2
- codex/serializers/route.py +45 -0
- codex/serializers/settings.py +12 -0
- codex/settings/settings.py +79 -32
- codex/signals/django_signals.py +6 -0
- codex/startup.py +77 -3
- codex/static_root/assets/VCheckbox-DanrzdHo.8ec5e2094cbf.js +1 -0
- codex/static_root/assets/VCheckbox-DanrzdHo.8ec5e2094cbf.js.br +0 -0
- codex/static_root/assets/VCheckbox-DanrzdHo.8ec5e2094cbf.js.gz +0 -0
- codex/static_root/assets/VCheckbox-DanrzdHo.js +1 -0
- codex/static_root/assets/VCheckbox-DanrzdHo.js.br +0 -0
- codex/static_root/assets/VCheckbox-DanrzdHo.js.gz +0 -0
- codex/static_root/assets/{VCheckboxBtn-CzTNt4cV.39d03f0eaf4b.js → VCheckboxBtn-DxNOKONG.5ab34c4c47aa.js} +1 -1
- codex/static_root/assets/VCheckboxBtn-DxNOKONG.5ab34c4c47aa.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-DxNOKONG.5ab34c4c47aa.js.gz +0 -0
- codex/static_root/assets/{VCheckboxBtn-CzTNt4cV.js → VCheckboxBtn-DxNOKONG.js} +1 -1
- codex/static_root/assets/VCheckboxBtn-DxNOKONG.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-DxNOKONG.js.gz +0 -0
- codex/static_root/assets/VCombobox-DDvdoPTG.11d080e8edd7.js +1 -0
- codex/static_root/assets/VCombobox-DDvdoPTG.11d080e8edd7.js.br +0 -0
- codex/static_root/assets/VCombobox-DDvdoPTG.11d080e8edd7.js.gz +0 -0
- codex/static_root/assets/VCombobox-DDvdoPTG.js +1 -0
- codex/static_root/assets/VCombobox-DDvdoPTG.js.br +0 -0
- codex/static_root/assets/VCombobox-DDvdoPTG.js.gz +0 -0
- codex/static_root/assets/VDialog-Bd5dN_E1.457666d7fce1.js +1 -0
- codex/static_root/assets/VDialog-Bd5dN_E1.457666d7fce1.js.br +0 -0
- codex/static_root/assets/VDialog-Bd5dN_E1.457666d7fce1.js.gz +0 -0
- codex/static_root/assets/VDialog-Bd5dN_E1.js +1 -0
- codex/static_root/assets/VDialog-Bd5dN_E1.js.br +0 -0
- codex/static_root/assets/VDialog-Bd5dN_E1.js.gz +0 -0
- codex/static_root/assets/VDialog-lQ13FnRR.1c801ad756b2.css +1 -0
- codex/static_root/assets/VDialog-lQ13FnRR.1c801ad756b2.css.br +0 -0
- codex/static_root/assets/VDialog-lQ13FnRR.1c801ad756b2.css.gz +0 -0
- codex/static_root/assets/VDialog-lQ13FnRR.css +1 -0
- codex/static_root/assets/VDialog-lQ13FnRR.css.br +0 -0
- codex/static_root/assets/VDialog-lQ13FnRR.css.gz +0 -0
- codex/static_root/assets/VExpansionPanels-DqTuYpTR.12673cf9f391.js +1 -0
- codex/static_root/assets/VExpansionPanels-DqTuYpTR.12673cf9f391.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-DqTuYpTR.12673cf9f391.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-DqTuYpTR.js +1 -0
- codex/static_root/assets/VExpansionPanels-DqTuYpTR.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-DqTuYpTR.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-DKb8XPr-.3cf6bf5bf3bc.js +1 -0
- codex/static_root/assets/VRadioGroup-DKb8XPr-.3cf6bf5bf3bc.js.br +0 -0
- codex/static_root/assets/VRadioGroup-DKb8XPr-.3cf6bf5bf3bc.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-DKb8XPr-.js +1 -0
- codex/static_root/assets/VRadioGroup-DKb8XPr-.js.br +0 -0
- codex/static_root/assets/VRadioGroup-DKb8XPr-.js.gz +0 -0
- codex/static_root/assets/VSelect-ARDhJiQK.372c098fb475.css +1 -0
- codex/static_root/assets/VSelect-ARDhJiQK.372c098fb475.css.br +0 -0
- codex/static_root/assets/VSelect-ARDhJiQK.372c098fb475.css.gz +0 -0
- codex/static_root/assets/VSelect-ARDhJiQK.css +1 -0
- codex/static_root/assets/VSelect-ARDhJiQK.css.br +0 -0
- codex/static_root/assets/VSelect-ARDhJiQK.css.gz +0 -0
- codex/static_root/assets/VSelect-C_yPbyCG.08bd6b53a7ce.js +1 -0
- codex/static_root/assets/VSelect-C_yPbyCG.08bd6b53a7ce.js.br +0 -0
- codex/static_root/assets/VSelect-C_yPbyCG.08bd6b53a7ce.js.gz +0 -0
- codex/static_root/assets/VSelect-C_yPbyCG.js +1 -0
- codex/static_root/assets/VSelect-C_yPbyCG.js.br +0 -0
- codex/static_root/assets/VSelect-C_yPbyCG.js.gz +0 -0
- codex/static_root/assets/VSelectionControl-CmFPvGMS.802c9b3e6e28.js +1 -0
- codex/static_root/assets/VSelectionControl-CmFPvGMS.802c9b3e6e28.js.br +0 -0
- codex/static_root/assets/VSelectionControl-CmFPvGMS.802c9b3e6e28.js.gz +0 -0
- codex/static_root/assets/VSelectionControl-CmFPvGMS.js +1 -0
- codex/static_root/assets/VSelectionControl-CmFPvGMS.js.br +0 -0
- codex/static_root/assets/VSelectionControl-CmFPvGMS.js.gz +0 -0
- codex/static_root/assets/VSlideGroup-D5FZWsM1.a47491fe3e6d.js +1 -0
- codex/static_root/assets/VSlideGroup-D5FZWsM1.a47491fe3e6d.js.br +0 -0
- codex/static_root/assets/VSlideGroup-D5FZWsM1.a47491fe3e6d.js.gz +0 -0
- codex/static_root/assets/VSlideGroup-D5FZWsM1.js +1 -0
- codex/static_root/assets/VSlideGroup-D5FZWsM1.js.br +0 -0
- codex/static_root/assets/VSlideGroup-D5FZWsM1.js.gz +0 -0
- codex/static_root/assets/VSlideGroup-Dk_1upHt.2c836070ec75.css +1 -0
- codex/static_root/assets/VSlideGroup-Dk_1upHt.2c836070ec75.css.br +0 -0
- codex/static_root/assets/VSlideGroup-Dk_1upHt.2c836070ec75.css.gz +0 -0
- codex/static_root/assets/VSlideGroup-Dk_1upHt.css +1 -0
- codex/static_root/assets/VSlideGroup-Dk_1upHt.css.br +0 -0
- codex/static_root/assets/VSlideGroup-Dk_1upHt.css.gz +0 -0
- codex/static_root/assets/{VTable-TEvK4Tmn.c68c176d93db.js → VTable-2RHFqfg6.f0f2106b158b.js} +1 -1
- codex/static_root/assets/VTable-2RHFqfg6.f0f2106b158b.js.br +0 -0
- codex/static_root/assets/VTable-2RHFqfg6.f0f2106b158b.js.gz +0 -0
- codex/static_root/assets/{VTable-TEvK4Tmn.js → VTable-2RHFqfg6.js} +1 -1
- codex/static_root/assets/VTable-2RHFqfg6.js.br +0 -0
- codex/static_root/assets/VTable-2RHFqfg6.js.gz +0 -0
- codex/static_root/assets/VTextField-BssVoDhB.4cc388b4aa3c.css +1 -0
- codex/static_root/assets/VTextField-BssVoDhB.4cc388b4aa3c.css.br +0 -0
- codex/static_root/assets/VTextField-BssVoDhB.4cc388b4aa3c.css.gz +0 -0
- codex/static_root/assets/VTextField-BssVoDhB.css +1 -0
- codex/static_root/assets/VTextField-BssVoDhB.css.br +0 -0
- codex/static_root/assets/VTextField-BssVoDhB.css.gz +0 -0
- codex/static_root/assets/VTextField-o1N9ylIb.7fffaeff8d40.js +1 -0
- codex/static_root/assets/VTextField-o1N9ylIb.7fffaeff8d40.js.br +0 -0
- codex/static_root/assets/VTextField-o1N9ylIb.7fffaeff8d40.js.gz +0 -0
- codex/static_root/assets/VTextField-o1N9ylIb.js +1 -0
- codex/static_root/assets/VTextField-o1N9ylIb.js.br +0 -0
- codex/static_root/assets/VTextField-o1N9ylIb.js.gz +0 -0
- codex/static_root/assets/VWindowItem-C_zvuz9C.663fa48efea4.js +1 -0
- codex/static_root/assets/VWindowItem-C_zvuz9C.663fa48efea4.js.br +0 -0
- codex/static_root/assets/VWindowItem-C_zvuz9C.663fa48efea4.js.gz +0 -0
- codex/static_root/assets/VWindowItem-C_zvuz9C.js +1 -0
- codex/static_root/assets/VWindowItem-C_zvuz9C.js.br +0 -0
- codex/static_root/assets/VWindowItem-C_zvuz9C.js.gz +0 -0
- codex/static_root/assets/admin-B8Bp2Uih.82c98714bcf1.css +1 -0
- codex/static_root/assets/admin-B8Bp2Uih.82c98714bcf1.css.br +0 -0
- codex/static_root/assets/admin-B8Bp2Uih.82c98714bcf1.css.gz +0 -0
- codex/static_root/assets/admin-B8Bp2Uih.css +1 -0
- codex/static_root/assets/admin-B8Bp2Uih.css.br +0 -0
- codex/static_root/assets/admin-B8Bp2Uih.css.gz +0 -0
- codex/static_root/assets/admin-DHyHEWZ3.7a8015456c0f.js +1 -0
- codex/static_root/assets/admin-DHyHEWZ3.7a8015456c0f.js.br +0 -0
- codex/static_root/assets/admin-DHyHEWZ3.7a8015456c0f.js.gz +0 -0
- codex/static_root/assets/admin-DHyHEWZ3.js +1 -0
- codex/static_root/assets/admin-DHyHEWZ3.js.br +0 -0
- codex/static_root/assets/admin-DHyHEWZ3.js.gz +0 -0
- codex/static_root/assets/admin-drawer-panel-BXpIDQXM.19507a95375b.js +30 -0
- codex/static_root/assets/admin-drawer-panel-BXpIDQXM.19507a95375b.js.br +0 -0
- codex/static_root/assets/admin-drawer-panel-BXpIDQXM.19507a95375b.js.gz +0 -0
- codex/static_root/assets/admin-drawer-panel-BXpIDQXM.js +30 -0
- codex/static_root/assets/admin-drawer-panel-BXpIDQXM.js.br +0 -0
- codex/static_root/assets/admin-drawer-panel-BXpIDQXM.js.gz +0 -0
- codex/static_root/assets/admin-drawer-panel-mne3FIj6.561b3f75fe65.css +1 -0
- codex/static_root/assets/admin-drawer-panel-mne3FIj6.561b3f75fe65.css.br +0 -0
- codex/static_root/assets/admin-drawer-panel-mne3FIj6.561b3f75fe65.css.gz +0 -0
- codex/static_root/assets/admin-drawer-panel-mne3FIj6.css +1 -0
- codex/static_root/assets/admin-drawer-panel-mne3FIj6.css.br +0 -0
- codex/static_root/assets/admin-drawer-panel-mne3FIj6.css.gz +0 -0
- codex/static_root/assets/browser-D0Vjmmp_.a1bfaf48d65f.js +1 -0
- codex/static_root/assets/browser-D0Vjmmp_.a1bfaf48d65f.js.br +0 -0
- codex/static_root/assets/browser-D0Vjmmp_.a1bfaf48d65f.js.gz +0 -0
- codex/static_root/assets/browser-D0Vjmmp_.js +1 -0
- codex/static_root/assets/browser-D0Vjmmp_.js.br +0 -0
- codex/static_root/assets/browser-D0Vjmmp_.js.gz +0 -0
- codex/static_root/assets/browser-D7QQDneO.155cb612ed0c.css +1 -0
- codex/static_root/assets/browser-D7QQDneO.155cb612ed0c.css.br +0 -0
- codex/static_root/assets/browser-D7QQDneO.155cb612ed0c.css.gz +0 -0
- codex/static_root/assets/browser-D7QQDneO.css +1 -0
- codex/static_root/assets/browser-D7QQDneO.css.br +0 -0
- codex/static_root/assets/browser-D7QQDneO.css.gz +0 -0
- codex/static_root/assets/change-password-dialog-0u6IJA87.5f9a9aa573b7.css +1 -0
- codex/static_root/assets/change-password-dialog-0u6IJA87.5f9a9aa573b7.css.br +0 -0
- codex/static_root/assets/change-password-dialog-0u6IJA87.5f9a9aa573b7.css.gz +0 -0
- codex/static_root/assets/change-password-dialog-0u6IJA87.css +1 -0
- codex/static_root/assets/change-password-dialog-0u6IJA87.css.br +0 -0
- codex/static_root/assets/change-password-dialog-0u6IJA87.css.gz +0 -0
- codex/static_root/assets/change-password-dialog-BBsJLPXZ.e642f7e2b96f.js +1 -0
- codex/static_root/assets/change-password-dialog-BBsJLPXZ.e642f7e2b96f.js.br +0 -0
- codex/static_root/assets/change-password-dialog-BBsJLPXZ.e642f7e2b96f.js.gz +0 -0
- codex/static_root/assets/change-password-dialog-BBsJLPXZ.js +1 -0
- codex/static_root/assets/change-password-dialog-BBsJLPXZ.js.br +0 -0
- codex/static_root/assets/change-password-dialog-BBsJLPXZ.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-DCKvg3ai.2a3277b3c147.js +1 -0
- codex/static_root/assets/confirm-dialog-DCKvg3ai.2a3277b3c147.js.br +0 -0
- codex/static_root/assets/confirm-dialog-DCKvg3ai.2a3277b3c147.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-DCKvg3ai.js +1 -0
- codex/static_root/assets/confirm-dialog-DCKvg3ai.js.br +0 -0
- codex/static_root/assets/confirm-dialog-DCKvg3ai.js.gz +0 -0
- codex/static_root/assets/copy-to-clipboard-DoUvDJVx.bec27f144aca.js +1 -0
- codex/static_root/assets/copy-to-clipboard-DoUvDJVx.bec27f144aca.js.br +0 -0
- codex/static_root/assets/copy-to-clipboard-DoUvDJVx.js +1 -0
- codex/static_root/assets/copy-to-clipboard-DoUvDJVx.js.br +0 -0
- codex/static_root/assets/datetime-column-DeCthByU.1f3bf499e063.css +1 -0
- codex/static_root/assets/datetime-column-DeCthByU.css +1 -0
- codex/static_root/assets/datetime-column-jHKA_uNm.039c7da2036f.js +1 -0
- codex/static_root/assets/datetime-column-jHKA_uNm.039c7da2036f.js.br +0 -0
- codex/static_root/assets/datetime-column-jHKA_uNm.039c7da2036f.js.gz +0 -0
- codex/static_root/assets/datetime-column-jHKA_uNm.js +1 -0
- codex/static_root/assets/datetime-column-jHKA_uNm.js.br +0 -0
- codex/static_root/assets/datetime-column-jHKA_uNm.js.gz +0 -0
- codex/static_root/assets/filter-DgPg2ts9.af0fcf0888c6.js +1 -0
- codex/static_root/assets/filter-DgPg2ts9.af0fcf0888c6.js.br +0 -0
- codex/static_root/assets/filter-DgPg2ts9.af0fcf0888c6.js.gz +0 -0
- codex/static_root/assets/filter-DgPg2ts9.js +1 -0
- codex/static_root/assets/filter-DgPg2ts9.js.br +0 -0
- codex/static_root/assets/filter-DgPg2ts9.js.gz +0 -0
- codex/static_root/assets/{flag-tab-D380D1SI.f4bc34623651.js → flag-tab-9qxOALxP.f89bc9891671.js} +1 -1
- codex/static_root/assets/flag-tab-9qxOALxP.f89bc9891671.js.br +0 -0
- codex/static_root/assets/flag-tab-9qxOALxP.f89bc9891671.js.gz +0 -0
- codex/static_root/assets/{flag-tab-D380D1SI.js → flag-tab-9qxOALxP.js} +1 -1
- codex/static_root/assets/flag-tab-9qxOALxP.js.br +0 -0
- codex/static_root/assets/flag-tab-9qxOALxP.js.gz +0 -0
- codex/static_root/assets/flag-tab-BNwbLfrN.b755a99fff7e.css +1 -0
- codex/static_root/assets/flag-tab-BNwbLfrN.b755a99fff7e.css.br +0 -0
- codex/static_root/assets/flag-tab-BNwbLfrN.b755a99fff7e.css.gz +0 -0
- codex/static_root/assets/flag-tab-BNwbLfrN.css +1 -0
- codex/static_root/assets/flag-tab-BNwbLfrN.css.br +0 -0
- codex/static_root/assets/flag-tab-BNwbLfrN.css.gz +0 -0
- codex/static_root/assets/group-tab-CBKuS3Iv.7e4746634782.css +1 -0
- codex/static_root/assets/group-tab-CBKuS3Iv.7e4746634782.css.br +0 -0
- codex/static_root/assets/group-tab-CBKuS3Iv.7e4746634782.css.gz +0 -0
- codex/static_root/assets/group-tab-CBKuS3Iv.css +1 -0
- codex/static_root/assets/group-tab-CBKuS3Iv.css.br +0 -0
- codex/static_root/assets/group-tab-CBKuS3Iv.css.gz +0 -0
- codex/static_root/assets/group-tab-D5vWrihT.1afb2ce453ff.js +1 -0
- codex/static_root/assets/group-tab-D5vWrihT.1afb2ce453ff.js.br +0 -0
- codex/static_root/assets/group-tab-D5vWrihT.1afb2ce453ff.js.gz +0 -0
- codex/static_root/assets/group-tab-D5vWrihT.js +1 -0
- codex/static_root/assets/group-tab-D5vWrihT.js.br +0 -0
- codex/static_root/assets/group-tab-D5vWrihT.js.gz +0 -0
- codex/static_root/assets/http-error-B4FHoKfs.141fdae409bc.js +1 -0
- codex/static_root/assets/http-error-B4FHoKfs.141fdae409bc.js.br +0 -0
- codex/static_root/assets/http-error-B4FHoKfs.141fdae409bc.js.gz +0 -0
- codex/static_root/assets/http-error-B4FHoKfs.js +1 -0
- codex/static_root/assets/http-error-B4FHoKfs.js.br +0 -0
- codex/static_root/assets/http-error-B4FHoKfs.js.gz +0 -0
- codex/static_root/assets/http-error-DKulXuTl.95e42988d5d5.css +1 -0
- codex/static_root/assets/http-error-DKulXuTl.95e42988d5d5.css.br +0 -0
- codex/static_root/assets/http-error-DKulXuTl.95e42988d5d5.css.gz +0 -0
- codex/static_root/assets/http-error-DKulXuTl.css +1 -0
- codex/static_root/assets/http-error-DKulXuTl.css.br +0 -0
- codex/static_root/assets/http-error-DKulXuTl.css.gz +0 -0
- codex/static_root/assets/library-tab-BN0SfPcH.913e236f625e.css +1 -0
- codex/static_root/assets/library-tab-BN0SfPcH.913e236f625e.css.br +0 -0
- codex/static_root/assets/library-tab-BN0SfPcH.913e236f625e.css.gz +0 -0
- codex/static_root/assets/library-tab-BN0SfPcH.css +1 -0
- codex/static_root/assets/library-tab-BN0SfPcH.css.br +0 -0
- codex/static_root/assets/library-tab-BN0SfPcH.css.gz +0 -0
- codex/static_root/assets/library-tab-BWo0cmzk.0e3d67d0c41a.js +1 -0
- codex/static_root/assets/library-tab-BWo0cmzk.0e3d67d0c41a.js.br +0 -0
- codex/static_root/assets/library-tab-BWo0cmzk.0e3d67d0c41a.js.gz +0 -0
- codex/static_root/assets/library-tab-BWo0cmzk.js +1 -0
- codex/static_root/assets/library-tab-BWo0cmzk.js.br +0 -0
- codex/static_root/assets/library-tab-BWo0cmzk.js.gz +0 -0
- codex/static_root/assets/{main-ED57DJUb.css → main-Ztp855PW.css} +1 -1
- codex/static_root/assets/main-Ztp855PW.css.br +0 -0
- codex/static_root/assets/{main-ED57DJUb.css.gz → main-Ztp855PW.css.gz} +0 -0
- codex/static_root/assets/{main-ED57DJUb.b84231dc384d.css → main-Ztp855PW.d46d718fac45.css} +1 -1
- codex/static_root/assets/main-Ztp855PW.d46d718fac45.css.br +0 -0
- codex/static_root/assets/{main-ED57DJUb.b84231dc384d.css.gz → main-Ztp855PW.d46d718fac45.css.gz} +0 -0
- codex/static_root/assets/main-ipmlipkF.5e60e6e8e447.js +32 -0
- codex/static_root/assets/main-ipmlipkF.5e60e6e8e447.js.br +0 -0
- codex/static_root/assets/main-ipmlipkF.5e60e6e8e447.js.gz +0 -0
- codex/static_root/assets/main-ipmlipkF.js +32 -0
- codex/static_root/assets/main-ipmlipkF.js.br +0 -0
- codex/static_root/assets/main-ipmlipkF.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-BA9ifTed.b4865334ee08.css +1 -0
- codex/static_root/assets/pagination-toolbar-BA9ifTed.b4865334ee08.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-BA9ifTed.b4865334ee08.css.gz +0 -0
- codex/static_root/assets/pagination-toolbar-BA9ifTed.css +1 -0
- codex/static_root/assets/pagination-toolbar-BA9ifTed.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-BA9ifTed.css.gz +0 -0
- codex/static_root/assets/pagination-toolbar-kZ-Xdv8c.b3341b8028df.js +1 -0
- codex/static_root/assets/pagination-toolbar-kZ-Xdv8c.b3341b8028df.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-kZ-Xdv8c.b3341b8028df.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-kZ-Xdv8c.js +1 -0
- codex/static_root/assets/pagination-toolbar-kZ-Xdv8c.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-kZ-Xdv8c.js.gz +0 -0
- codex/static_root/assets/pdf-doc-C2StaYUz.cb848834dbe1.js +305 -0
- codex/static_root/assets/pdf-doc-C2StaYUz.cb848834dbe1.js.br +0 -0
- codex/static_root/assets/pdf-doc-C2StaYUz.cb848834dbe1.js.gz +0 -0
- codex/static_root/assets/pdf-doc-C2StaYUz.js +305 -0
- codex/static_root/assets/pdf-doc-C2StaYUz.js.br +0 -0
- codex/static_root/assets/pdf-doc-C2StaYUz.js.gz +0 -0
- codex/static_root/assets/reader-CCnq3j1-.b6b38ed5521e.js +2 -0
- codex/static_root/assets/reader-CCnq3j1-.b6b38ed5521e.js.br +0 -0
- codex/static_root/assets/reader-CCnq3j1-.b6b38ed5521e.js.gz +0 -0
- codex/static_root/assets/reader-CCnq3j1-.js +2 -0
- codex/static_root/assets/reader-CCnq3j1-.js.br +0 -0
- codex/static_root/assets/reader-CCnq3j1-.js.gz +0 -0
- codex/static_root/assets/reader-CqXFa_gE.78267e9de0c2.css +1 -0
- codex/static_root/assets/reader-CqXFa_gE.78267e9de0c2.css.br +0 -0
- codex/static_root/assets/reader-CqXFa_gE.78267e9de0c2.css.gz +0 -0
- codex/static_root/assets/reader-CqXFa_gE.css +1 -0
- codex/static_root/assets/reader-CqXFa_gE.css.br +0 -0
- codex/static_root/assets/reader-CqXFa_gE.css.gz +0 -0
- codex/static_root/assets/relation-chips-Bsc-gUxE.98e65384c3c9.css +1 -0
- codex/static_root/assets/relation-chips-Bsc-gUxE.98e65384c3c9.css.br +0 -0
- codex/static_root/assets/relation-chips-Bsc-gUxE.98e65384c3c9.css.gz +0 -0
- codex/static_root/assets/relation-chips-Bsc-gUxE.css +1 -0
- codex/static_root/assets/relation-chips-Bsc-gUxE.css.br +0 -0
- codex/static_root/assets/relation-chips-Bsc-gUxE.css.gz +0 -0
- codex/static_root/assets/relation-chips-C9ysW0tU.670f1d1f273f.js +1 -0
- codex/static_root/assets/relation-chips-C9ysW0tU.670f1d1f273f.js.br +0 -0
- codex/static_root/assets/relation-chips-C9ysW0tU.670f1d1f273f.js.gz +0 -0
- codex/static_root/assets/relation-chips-C9ysW0tU.js +1 -0
- codex/static_root/assets/relation-chips-C9ysW0tU.js.br +0 -0
- codex/static_root/assets/relation-chips-C9ysW0tU.js.gz +0 -0
- codex/static_root/assets/settings-drawer-C0ofzAhW.c0def8f383cb.js +2 -0
- codex/static_root/assets/settings-drawer-C0ofzAhW.c0def8f383cb.js.br +0 -0
- codex/static_root/assets/settings-drawer-C0ofzAhW.c0def8f383cb.js.gz +0 -0
- codex/static_root/assets/settings-drawer-C0ofzAhW.js +2 -0
- codex/static_root/assets/settings-drawer-C0ofzAhW.js.br +0 -0
- codex/static_root/assets/settings-drawer-C0ofzAhW.js.gz +0 -0
- codex/static_root/assets/settings-drawer-nZ9HvKSZ.01744e131806.css +1 -0
- codex/static_root/assets/settings-drawer-nZ9HvKSZ.01744e131806.css.br +0 -0
- codex/static_root/assets/settings-drawer-nZ9HvKSZ.01744e131806.css.gz +0 -0
- codex/static_root/assets/settings-drawer-nZ9HvKSZ.css +1 -0
- codex/static_root/assets/settings-drawer-nZ9HvKSZ.css.br +0 -0
- codex/static_root/assets/settings-drawer-nZ9HvKSZ.css.gz +0 -0
- codex/static_root/assets/stats-tab-B4yKuY0c.a5728396494b.css +1 -0
- codex/static_root/assets/stats-tab-B4yKuY0c.a5728396494b.css.br +0 -0
- codex/static_root/assets/stats-tab-B4yKuY0c.a5728396494b.css.gz +0 -0
- codex/static_root/assets/stats-tab-B4yKuY0c.css +1 -0
- codex/static_root/assets/stats-tab-B4yKuY0c.css.br +0 -0
- codex/static_root/assets/stats-tab-B4yKuY0c.css.gz +0 -0
- codex/static_root/assets/stats-tab-BqJj7j1w.38a3459d61ea.js +1 -0
- codex/static_root/assets/stats-tab-BqJj7j1w.38a3459d61ea.js.br +0 -0
- codex/static_root/assets/stats-tab-BqJj7j1w.38a3459d61ea.js.gz +0 -0
- codex/static_root/assets/stats-tab-BqJj7j1w.js +1 -0
- codex/static_root/assets/stats-tab-BqJj7j1w.js.br +0 -0
- codex/static_root/assets/stats-tab-BqJj7j1w.js.gz +0 -0
- codex/static_root/assets/task-tab-1XiWn9xP.06cb8e1b794d.css +1 -0
- codex/static_root/assets/{task-tab-DoX9OA37.9bb355f36dbf.css.br → task-tab-1XiWn9xP.06cb8e1b794d.css.br} +1 -1
- codex/static_root/assets/task-tab-1XiWn9xP.06cb8e1b794d.css.gz +0 -0
- codex/static_root/assets/task-tab-1XiWn9xP.css +1 -0
- codex/static_root/assets/{task-tab-DoX9OA37.css.br → task-tab-1XiWn9xP.css.br} +1 -1
- codex/static_root/assets/task-tab-1XiWn9xP.css.gz +0 -0
- codex/static_root/assets/task-tab-BsPzNk8S.e00630a60b43.js +1 -0
- codex/static_root/assets/task-tab-BsPzNk8S.e00630a60b43.js.br +0 -0
- codex/static_root/assets/task-tab-BsPzNk8S.e00630a60b43.js.gz +0 -0
- codex/static_root/assets/task-tab-BsPzNk8S.js +1 -0
- codex/static_root/assets/task-tab-BsPzNk8S.js.br +0 -0
- codex/static_root/assets/task-tab-BsPzNk8S.js.gz +0 -0
- codex/static_root/assets/to-case-KvqtSug2.9c02da2e47c7.js +1 -0
- codex/static_root/assets/to-case-KvqtSug2.9c02da2e47c7.js.br +0 -0
- codex/static_root/assets/to-case-KvqtSug2.js +1 -0
- codex/static_root/assets/to-case-KvqtSug2.js.br +0 -0
- codex/static_root/assets/unauthorized-CibJYD8o.4c2de98c2b53.css +1 -0
- codex/static_root/assets/unauthorized-CibJYD8o.4c2de98c2b53.css.br +0 -0
- codex/static_root/assets/unauthorized-CibJYD8o.4c2de98c2b53.css.gz +0 -0
- codex/static_root/assets/unauthorized-CibJYD8o.css +1 -0
- codex/static_root/assets/unauthorized-CibJYD8o.css.br +0 -0
- codex/static_root/assets/unauthorized-CibJYD8o.css.gz +0 -0
- codex/static_root/assets/unauthorized-DwSdNzX2.f418e69f3afe.js +1 -0
- codex/static_root/assets/unauthorized-DwSdNzX2.f418e69f3afe.js.br +0 -0
- codex/static_root/assets/unauthorized-DwSdNzX2.f418e69f3afe.js.gz +0 -0
- codex/static_root/assets/unauthorized-DwSdNzX2.js +1 -0
- codex/static_root/assets/unauthorized-DwSdNzX2.js.br +0 -0
- codex/static_root/assets/unauthorized-DwSdNzX2.js.gz +0 -0
- codex/static_root/assets/user-tab-DrJOb9Ys.083d993726d8.js +1 -0
- codex/static_root/assets/user-tab-DrJOb9Ys.083d993726d8.js.br +0 -0
- codex/static_root/assets/user-tab-DrJOb9Ys.083d993726d8.js.gz +0 -0
- codex/static_root/assets/user-tab-DrJOb9Ys.js +1 -0
- codex/static_root/assets/user-tab-DrJOb9Ys.js.br +0 -0
- codex/static_root/assets/user-tab-DrJOb9Ys.js.gz +0 -0
- codex/static_root/img/folder.f28936a3701d.svg +1 -0
- codex/static_root/img/folder.f28936a3701d.svg.br +0 -0
- codex/static_root/img/folder.f28936a3701d.svg.gz +0 -0
- codex/static_root/img/folder.svg +1 -0
- codex/static_root/img/folder.svg.br +0 -0
- codex/static_root/img/folder.svg.gz +0 -0
- codex/static_root/img/imprint.7c2adebb76d6.svg +1 -0
- codex/static_root/img/imprint.7c2adebb76d6.svg.br +0 -0
- codex/static_root/img/imprint.7c2adebb76d6.svg.gz +0 -0
- codex/static_root/img/imprint.svg +1 -0
- codex/static_root/img/imprint.svg.br +0 -0
- codex/static_root/img/imprint.svg.gz +0 -0
- codex/static_root/img/logo-32.5688944495bf.webp +0 -0
- codex/static_root/img/logo-32.webp +0 -0
- codex/static_root/img/logo-maskable-180.c58d966aa64e.webp +0 -0
- codex/static_root/img/logo-maskable-180.webp +0 -0
- codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg +1 -0
- codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.br +0 -0
- codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.gz +0 -0
- codex/static_root/img/logo-maskable.svg +1 -83
- codex/static_root/img/logo-maskable.svg.br +0 -0
- codex/static_root/img/logo-maskable.svg.gz +0 -0
- codex/static_root/img/logo.0f5344a028ca.svg +1 -0
- codex/static_root/img/logo.0f5344a028ca.svg.br +0 -0
- codex/static_root/img/logo.0f5344a028ca.svg.gz +0 -0
- codex/static_root/img/logo.svg +1 -80
- codex/static_root/img/logo.svg.br +0 -0
- codex/static_root/img/logo.svg.gz +0 -0
- codex/static_root/img/missing-cover-165.0743171f2148.webp +0 -0
- codex/static_root/img/missing-cover-165.webp +0 -0
- codex/static_root/img/missing-cover.ddb038cc2c56.svg +1 -0
- codex/static_root/img/missing-cover.ddb038cc2c56.svg.br +0 -0
- codex/static_root/img/missing-cover.ddb038cc2c56.svg.gz +0 -0
- codex/static_root/img/missing-cover.svg +1 -0
- codex/static_root/img/missing-cover.svg.br +0 -0
- codex/static_root/img/missing-cover.svg.gz +0 -0
- codex/static_root/img/publisher.82d378fcd601.svg +1 -0
- codex/static_root/img/publisher.82d378fcd601.svg.br +0 -0
- codex/static_root/img/publisher.82d378fcd601.svg.gz +0 -0
- codex/static_root/img/publisher.svg +1 -0
- codex/static_root/img/publisher.svg.br +0 -0
- codex/static_root/img/publisher.svg.gz +0 -0
- codex/static_root/img/series.ec8a889b8f95.svg +1 -0
- codex/static_root/img/series.ec8a889b8f95.svg.br +0 -0
- codex/static_root/img/series.ec8a889b8f95.svg.gz +0 -0
- codex/static_root/img/series.svg +1 -0
- codex/static_root/img/series.svg.br +0 -0
- codex/static_root/img/series.svg.gz +0 -0
- codex/static_root/img/story-arc.ca10014355ef.svg +1 -0
- codex/static_root/img/story-arc.ca10014355ef.svg.br +1 -0
- codex/static_root/img/story-arc.ca10014355ef.svg.gz +0 -0
- codex/static_root/img/story-arc.svg +1 -0
- codex/static_root/img/story-arc.svg.br +1 -0
- codex/static_root/img/story-arc.svg.gz +0 -0
- codex/static_root/img/volume.814e4c79461a.svg +1 -0
- codex/static_root/img/volume.814e4c79461a.svg.br +0 -0
- codex/static_root/img/volume.814e4c79461a.svg.gz +0 -0
- codex/static_root/img/volume.svg +1 -0
- codex/static_root/img/volume.svg.br +0 -0
- codex/static_root/img/volume.svg.gz +0 -0
- codex/static_root/js/choices-admin.3521e2a863df.json +1 -0
- codex/static_root/js/choices-admin.3521e2a863df.json.br +0 -0
- codex/static_root/js/choices-admin.3521e2a863df.json.gz +0 -0
- codex/static_root/js/choices-admin.json +1 -1
- codex/static_root/js/choices-admin.json.br +0 -0
- codex/static_root/js/choices-admin.json.gz +0 -0
- codex/static_root/js/choices.2f6b0359e1ef.json +1 -0
- codex/static_root/js/choices.2f6b0359e1ef.json.br +0 -0
- codex/static_root/js/choices.2f6b0359e1ef.json.gz +0 -0
- codex/static_root/js/choices.json +1 -1
- codex/static_root/js/choices.json.br +0 -0
- codex/static_root/js/choices.json.gz +0 -0
- codex/static_root/manifest.1c84116d9a0a.json +622 -0
- codex/static_root/manifest.1c84116d9a0a.json.br +0 -0
- codex/static_root/manifest.1c84116d9a0a.json.gz +0 -0
- codex/static_root/manifest.json +337 -322
- codex/static_root/manifest.json.br +0 -0
- codex/static_root/manifest.json.gz +0 -0
- codex/static_root/staticfiles.json +1 -1
- codex/status_controller.py +11 -2
- codex/templates/headers-script-globals.html +1 -4
- codex/urls/api/admin.py +5 -7
- codex/urls/api/auth.py +2 -1
- codex/urls/api/browser.py +18 -9
- codex/urls/api/reader.py +5 -11
- codex/urls/api/v3.py +4 -0
- codex/urls/app.py +8 -3
- codex/urls/converters.py +39 -0
- codex/urls/opds/binary.py +1 -1
- codex/urls/opds/root.py +3 -4
- codex/urls/opds/v1.py +1 -1
- codex/urls/opds/v2.py +6 -1
- codex/urls/root.py +2 -1
- codex/util.py +12 -0
- codex/views/admin/api_key.py +7 -8
- codex/views/admin/auth.py +28 -0
- codex/views/admin/flag.py +2 -7
- codex/views/admin/group.py +2 -6
- codex/views/admin/library.py +44 -37
- codex/views/admin/stats.py +20 -83
- codex/views/admin/tasks.py +26 -12
- codex/views/admin/user.py +3 -14
- codex/views/auth.py +39 -64
- codex/views/bookmark.py +93 -72
- codex/views/browser/annotations.py +293 -0
- codex/views/browser/base.py +101 -87
- codex/views/browser/breadcrumbs.py +202 -0
- codex/views/browser/browser.py +165 -518
- codex/views/browser/choices.py +67 -120
- codex/views/browser/cover.py +165 -0
- codex/views/browser/filters/annotations.py +102 -0
- codex/views/browser/filters/bookmark.py +24 -12
- codex/views/browser/filters/field.py +8 -6
- codex/views/browser/filters/group.py +38 -16
- codex/views/browser/filters/search.py +169 -25
- codex/views/browser/metadata.py +169 -136
- codex/views/browser/mtime.py +61 -0
- codex/views/browser/order_by.py +65 -0
- codex/views/browser/paginate.py +106 -0
- codex/views/browser/settings.py +66 -0
- codex/views/browser/title.py +48 -0
- codex/views/browser/validate.py +161 -0
- codex/views/const.py +157 -0
- codex/views/download.py +8 -20
- codex/views/error.py +2 -2
- codex/views/frontend.py +8 -3
- codex/views/mixins.py +76 -0
- codex/views/opds/auth.py +17 -0
- codex/views/opds/authentication_v1.py +46 -45
- codex/views/opds/binary.py +5 -10
- codex/views/opds/const.py +13 -0
- codex/views/opds/urls.py +30 -0
- codex/views/opds/util.py +11 -19
- codex/views/opds/v1/entry/data.py +2 -2
- codex/views/opds/v1/entry/entry.py +5 -5
- codex/views/opds/v1/entry/links.py +68 -58
- codex/views/opds/v1/facets.py +11 -11
- codex/views/opds/v1/feed.py +84 -63
- codex/views/opds/v1/links.py +21 -19
- codex/views/opds/v1/opensearch_v1.py +5 -6
- codex/views/opds/v2/feed.py +69 -53
- codex/views/opds/v2/links.py +4 -2
- codex/views/opds/v2/publications.py +50 -68
- codex/views/opds/v2/top_links.py +4 -4
- codex/views/public.py +36 -0
- codex/views/reader/arcs.py +92 -0
- codex/views/reader/books.py +181 -0
- codex/views/reader/init.py +125 -0
- codex/views/reader/page.py +16 -5
- codex/views/reader/reader.py +22 -236
- codex/views/reader/{session.py → settings.py} +4 -2
- codex/views/session.py +92 -102
- codex/views/settings.py +47 -0
- codex/views/template.py +3 -3
- codex/views/util.py +77 -0
- codex/views/version.py +2 -2
- codex/websockets/consumers.py +14 -10
- {codex-1.5.19.dist-info → codex-1.6.0.dist-info}/METADATA +36 -18
- codex-1.6.0.dist-info/RECORD +1013 -0
- codex/db_functions.py +0 -25
- codex/img/missing-cover.webp +0 -0
- codex/librarian/importer/update_comics.py +0 -90
- codex/serializers/metadata.py +0 -15
- codex/static_root/assets/VCheckbox-D7WF5wMC.c98c1beb207e.js +0 -1
- codex/static_root/assets/VCheckbox-D7WF5wMC.c98c1beb207e.js.br +0 -0
- codex/static_root/assets/VCheckbox-D7WF5wMC.c98c1beb207e.js.gz +0 -0
- codex/static_root/assets/VCheckbox-D7WF5wMC.js +0 -1
- codex/static_root/assets/VCheckbox-D7WF5wMC.js.br +0 -0
- codex/static_root/assets/VCheckbox-D7WF5wMC.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-CzTNt4cV.39d03f0eaf4b.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-CzTNt4cV.39d03f0eaf4b.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-CzTNt4cV.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-CzTNt4cV.js.gz +0 -0
- codex/static_root/assets/VCombobox-BWrSBDP9.52f0c0067437.js +0 -1
- codex/static_root/assets/VCombobox-BWrSBDP9.52f0c0067437.js.br +0 -0
- codex/static_root/assets/VCombobox-BWrSBDP9.52f0c0067437.js.gz +0 -0
- codex/static_root/assets/VCombobox-BWrSBDP9.js +0 -1
- codex/static_root/assets/VCombobox-BWrSBDP9.js.br +0 -0
- codex/static_root/assets/VCombobox-BWrSBDP9.js.gz +0 -0
- codex/static_root/assets/VDataTableVirtual-BMondxto.8b48739e5470.js +0 -1
- codex/static_root/assets/VDataTableVirtual-BMondxto.8b48739e5470.js.br +0 -0
- codex/static_root/assets/VDataTableVirtual-BMondxto.8b48739e5470.js.gz +0 -0
- codex/static_root/assets/VDataTableVirtual-BMondxto.js +0 -1
- codex/static_root/assets/VDataTableVirtual-BMondxto.js.br +0 -0
- codex/static_root/assets/VDataTableVirtual-BMondxto.js.gz +0 -0
- codex/static_root/assets/VDataTableVirtual-C5zDmmxd.a73a7dd5614a.css +0 -1
- codex/static_root/assets/VDataTableVirtual-C5zDmmxd.a73a7dd5614a.css.br +0 -0
- codex/static_root/assets/VDataTableVirtual-C5zDmmxd.a73a7dd5614a.css.gz +0 -0
- codex/static_root/assets/VDataTableVirtual-C5zDmmxd.css +0 -1
- codex/static_root/assets/VDataTableVirtual-C5zDmmxd.css.br +0 -0
- codex/static_root/assets/VDataTableVirtual-C5zDmmxd.css.gz +0 -0
- codex/static_root/assets/VExpansionPanels-CDS9qp1D.9fdf68e2f68f.js +0 -1
- codex/static_root/assets/VExpansionPanels-CDS9qp1D.9fdf68e2f68f.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-CDS9qp1D.9fdf68e2f68f.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-CDS9qp1D.js +0 -1
- codex/static_root/assets/VExpansionPanels-CDS9qp1D.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-CDS9qp1D.js.gz +0 -0
- codex/static_root/assets/VMain-8vjSGbNt.4a97ed735dc3.js +0 -1
- codex/static_root/assets/VMain-8vjSGbNt.4a97ed735dc3.js.br +0 -0
- codex/static_root/assets/VMain-8vjSGbNt.4a97ed735dc3.js.gz +0 -0
- codex/static_root/assets/VMain-8vjSGbNt.js +0 -1
- codex/static_root/assets/VMain-8vjSGbNt.js.br +0 -0
- codex/static_root/assets/VMain-8vjSGbNt.js.gz +0 -0
- codex/static_root/assets/VMain-Byt37V4c.a00e206f3cfa.css +0 -1
- codex/static_root/assets/VMain-Byt37V4c.a00e206f3cfa.css.br +0 -0
- codex/static_root/assets/VMain-Byt37V4c.a00e206f3cfa.css.gz +0 -0
- codex/static_root/assets/VMain-Byt37V4c.css +0 -1
- codex/static_root/assets/VMain-Byt37V4c.css.br +0 -0
- codex/static_root/assets/VMain-Byt37V4c.css.gz +0 -0
- codex/static_root/assets/VRadioGroup-DGplihzh.3f4a5d26a1cb.js +0 -1
- codex/static_root/assets/VRadioGroup-DGplihzh.3f4a5d26a1cb.js.br +0 -0
- codex/static_root/assets/VRadioGroup-DGplihzh.3f4a5d26a1cb.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-DGplihzh.js +0 -1
- codex/static_root/assets/VRadioGroup-DGplihzh.js.br +0 -0
- codex/static_root/assets/VRadioGroup-DGplihzh.js.gz +0 -0
- codex/static_root/assets/VSelect-DfV5vhqb.d24dcc61a20f.js +0 -1
- codex/static_root/assets/VSelect-DfV5vhqb.d24dcc61a20f.js.br +0 -0
- codex/static_root/assets/VSelect-DfV5vhqb.d24dcc61a20f.js.gz +0 -0
- codex/static_root/assets/VSelect-DfV5vhqb.js +0 -1
- codex/static_root/assets/VSelect-DfV5vhqb.js.br +0 -0
- codex/static_root/assets/VSelect-DfV5vhqb.js.gz +0 -0
- codex/static_root/assets/VSelect-MGVSeLgr.7cabd30bc5e4.css +0 -1
- codex/static_root/assets/VSelect-MGVSeLgr.7cabd30bc5e4.css.br +0 -0
- codex/static_root/assets/VSelect-MGVSeLgr.7cabd30bc5e4.css.gz +0 -0
- codex/static_root/assets/VSelect-MGVSeLgr.css +0 -1
- codex/static_root/assets/VSelect-MGVSeLgr.css.br +0 -0
- codex/static_root/assets/VSelect-MGVSeLgr.css.gz +0 -0
- codex/static_root/assets/VSelectionControl-DvHEDoJy.30ca0aef8bd2.js +0 -1
- codex/static_root/assets/VSelectionControl-DvHEDoJy.30ca0aef8bd2.js.br +0 -0
- codex/static_root/assets/VSelectionControl-DvHEDoJy.30ca0aef8bd2.js.gz +0 -0
- codex/static_root/assets/VSelectionControl-DvHEDoJy.js +0 -1
- codex/static_root/assets/VSelectionControl-DvHEDoJy.js.br +0 -0
- codex/static_root/assets/VSelectionControl-DvHEDoJy.js.gz +0 -0
- codex/static_root/assets/VSlideGroup-BdgkaRxE.ba78a4e0efc0.js +0 -1
- codex/static_root/assets/VSlideGroup-BdgkaRxE.ba78a4e0efc0.js.br +0 -0
- codex/static_root/assets/VSlideGroup-BdgkaRxE.ba78a4e0efc0.js.gz +0 -0
- codex/static_root/assets/VSlideGroup-BdgkaRxE.js +0 -1
- codex/static_root/assets/VSlideGroup-BdgkaRxE.js.br +0 -0
- codex/static_root/assets/VSlideGroup-BdgkaRxE.js.gz +0 -0
- codex/static_root/assets/VSlideGroup-CTW-HJl4.8b75b66602c9.css +0 -1
- codex/static_root/assets/VSlideGroup-CTW-HJl4.8b75b66602c9.css.br +0 -0
- codex/static_root/assets/VSlideGroup-CTW-HJl4.8b75b66602c9.css.gz +0 -0
- codex/static_root/assets/VSlideGroup-CTW-HJl4.css +0 -1
- codex/static_root/assets/VSlideGroup-CTW-HJl4.css.br +0 -0
- codex/static_root/assets/VSlideGroup-CTW-HJl4.css.gz +0 -0
- codex/static_root/assets/VTable-TEvK4Tmn.c68c176d93db.js.br +0 -0
- codex/static_root/assets/VTable-TEvK4Tmn.c68c176d93db.js.gz +0 -0
- codex/static_root/assets/VTable-TEvK4Tmn.js.br +0 -0
- codex/static_root/assets/VTable-TEvK4Tmn.js.gz +0 -0
- codex/static_root/assets/VToolbar-D7BgLWdG.css +0 -1
- codex/static_root/assets/VToolbar-D7BgLWdG.css.br +0 -0
- codex/static_root/assets/VToolbar-D7BgLWdG.css.gz +0 -0
- codex/static_root/assets/VToolbar-D7BgLWdG.e4d8a79cc655.css +0 -1
- codex/static_root/assets/VToolbar-D7BgLWdG.e4d8a79cc655.css.br +0 -0
- codex/static_root/assets/VToolbar-D7BgLWdG.e4d8a79cc655.css.gz +0 -0
- codex/static_root/assets/VToolbar-DCXw9xBt.576c107a78d3.js +0 -2
- codex/static_root/assets/VToolbar-DCXw9xBt.576c107a78d3.js.br +0 -0
- codex/static_root/assets/VToolbar-DCXw9xBt.576c107a78d3.js.gz +0 -0
- codex/static_root/assets/VToolbar-DCXw9xBt.js +0 -2
- codex/static_root/assets/VToolbar-DCXw9xBt.js.br +0 -0
- codex/static_root/assets/VToolbar-DCXw9xBt.js.gz +0 -0
- codex/static_root/assets/VWindowItem-CCYriq5i.8a6d4a38dabd.js +0 -1
- codex/static_root/assets/VWindowItem-CCYriq5i.8a6d4a38dabd.js.br +0 -0
- codex/static_root/assets/VWindowItem-CCYriq5i.8a6d4a38dabd.js.gz +0 -0
- codex/static_root/assets/VWindowItem-CCYriq5i.js +0 -1
- codex/static_root/assets/VWindowItem-CCYriq5i.js.br +0 -0
- codex/static_root/assets/VWindowItem-CCYriq5i.js.gz +0 -0
- codex/static_root/assets/admin-A2T028Mn.be3fa80456de.js +0 -1
- codex/static_root/assets/admin-A2T028Mn.be3fa80456de.js.br +0 -0
- codex/static_root/assets/admin-A2T028Mn.be3fa80456de.js.gz +0 -0
- codex/static_root/assets/admin-A2T028Mn.js +0 -1
- codex/static_root/assets/admin-A2T028Mn.js.br +0 -0
- codex/static_root/assets/admin-A2T028Mn.js.gz +0 -0
- codex/static_root/assets/admin-C8Kk7_Ni.255594400b96.css +0 -1
- codex/static_root/assets/admin-C8Kk7_Ni.255594400b96.css.br +0 -0
- codex/static_root/assets/admin-C8Kk7_Ni.255594400b96.css.gz +0 -0
- codex/static_root/assets/admin-C8Kk7_Ni.css +0 -1
- codex/static_root/assets/admin-C8Kk7_Ni.css.br +0 -0
- codex/static_root/assets/admin-C8Kk7_Ni.css.gz +0 -0
- codex/static_root/assets/admin-drawer-panel-DffXGW1d.8f7f39ffb127.js +0 -30
- codex/static_root/assets/admin-drawer-panel-DffXGW1d.8f7f39ffb127.js.br +0 -0
- codex/static_root/assets/admin-drawer-panel-DffXGW1d.8f7f39ffb127.js.gz +0 -0
- codex/static_root/assets/admin-drawer-panel-DffXGW1d.js +0 -30
- codex/static_root/assets/admin-drawer-panel-DffXGW1d.js.br +0 -0
- codex/static_root/assets/admin-drawer-panel-DffXGW1d.js.gz +0 -0
- codex/static_root/assets/admin-drawer-panel-Dv_IY0x2.af4fa9980c09.css +0 -1
- codex/static_root/assets/admin-drawer-panel-Dv_IY0x2.af4fa9980c09.css.br +0 -0
- codex/static_root/assets/admin-drawer-panel-Dv_IY0x2.af4fa9980c09.css.gz +0 -0
- codex/static_root/assets/admin-drawer-panel-Dv_IY0x2.css +0 -1
- codex/static_root/assets/admin-drawer-panel-Dv_IY0x2.css.br +0 -0
- codex/static_root/assets/admin-drawer-panel-Dv_IY0x2.css.gz +0 -0
- codex/static_root/assets/browser-CY9BdW6B.c9c3e5dffcbf.js +0 -1
- codex/static_root/assets/browser-CY9BdW6B.c9c3e5dffcbf.js.br +0 -0
- codex/static_root/assets/browser-CY9BdW6B.c9c3e5dffcbf.js.gz +0 -0
- codex/static_root/assets/browser-CY9BdW6B.js +0 -1
- codex/static_root/assets/browser-CY9BdW6B.js.br +0 -0
- codex/static_root/assets/browser-CY9BdW6B.js.gz +0 -0
- codex/static_root/assets/browser-HtKThxA9.69be059a55f4.css +0 -1
- codex/static_root/assets/browser-HtKThxA9.69be059a55f4.css.br +0 -0
- codex/static_root/assets/browser-HtKThxA9.69be059a55f4.css.gz +0 -0
- codex/static_root/assets/browser-HtKThxA9.css +0 -1
- codex/static_root/assets/browser-HtKThxA9.css.br +0 -0
- codex/static_root/assets/browser-HtKThxA9.css.gz +0 -0
- codex/static_root/assets/change-password-dialog-BRmvkNir.2fead58a78c7.css +0 -1
- codex/static_root/assets/change-password-dialog-BRmvkNir.2fead58a78c7.css.br +0 -0
- codex/static_root/assets/change-password-dialog-BRmvkNir.2fead58a78c7.css.gz +0 -0
- codex/static_root/assets/change-password-dialog-BRmvkNir.css +0 -1
- codex/static_root/assets/change-password-dialog-BRmvkNir.css.br +0 -0
- codex/static_root/assets/change-password-dialog-BRmvkNir.css.gz +0 -0
- codex/static_root/assets/change-password-dialog-Dr1CYQ46.afdd502a985d.js +0 -1
- codex/static_root/assets/change-password-dialog-Dr1CYQ46.afdd502a985d.js.br +0 -0
- codex/static_root/assets/change-password-dialog-Dr1CYQ46.afdd502a985d.js.gz +0 -0
- codex/static_root/assets/change-password-dialog-Dr1CYQ46.js +0 -1
- codex/static_root/assets/change-password-dialog-Dr1CYQ46.js.br +0 -0
- codex/static_root/assets/change-password-dialog-Dr1CYQ46.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-BoVvCI5y.8549e2429bdf.js +0 -1
- codex/static_root/assets/confirm-dialog-BoVvCI5y.8549e2429bdf.js.br +0 -0
- codex/static_root/assets/confirm-dialog-BoVvCI5y.8549e2429bdf.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-BoVvCI5y.js +0 -1
- codex/static_root/assets/confirm-dialog-BoVvCI5y.js.br +0 -0
- codex/static_root/assets/confirm-dialog-BoVvCI5y.js.gz +0 -0
- codex/static_root/assets/confirm-footer-BPuy6r_H.3aa74b8e07c1.css +0 -1
- codex/static_root/assets/confirm-footer-BPuy6r_H.3aa74b8e07c1.css.br +0 -0
- codex/static_root/assets/confirm-footer-BPuy6r_H.3aa74b8e07c1.css.gz +0 -0
- codex/static_root/assets/confirm-footer-BPuy6r_H.css +0 -1
- codex/static_root/assets/confirm-footer-BPuy6r_H.css.br +0 -0
- codex/static_root/assets/confirm-footer-BPuy6r_H.css.gz +0 -0
- codex/static_root/assets/confirm-footer-CIu2tkFD.0aa16c0fc333.js +0 -1
- codex/static_root/assets/confirm-footer-CIu2tkFD.0aa16c0fc333.js.br +0 -0
- codex/static_root/assets/confirm-footer-CIu2tkFD.0aa16c0fc333.js.gz +0 -0
- codex/static_root/assets/confirm-footer-CIu2tkFD.js +0 -1
- codex/static_root/assets/confirm-footer-CIu2tkFD.js.br +0 -0
- codex/static_root/assets/confirm-footer-CIu2tkFD.js.gz +0 -0
- codex/static_root/assets/datetime-column-BWWfvyhn.a4a94ba57c73.css +0 -1
- codex/static_root/assets/datetime-column-BWWfvyhn.a4a94ba57c73.css.br +0 -0
- codex/static_root/assets/datetime-column-BWWfvyhn.css +0 -1
- codex/static_root/assets/datetime-column-BWWfvyhn.css.br +0 -0
- codex/static_root/assets/datetime-column-C3t430gN.97e5c5364aef.js +0 -1
- codex/static_root/assets/datetime-column-C3t430gN.97e5c5364aef.js.br +0 -0
- codex/static_root/assets/datetime-column-C3t430gN.97e5c5364aef.js.gz +0 -0
- codex/static_root/assets/datetime-column-C3t430gN.js +0 -1
- codex/static_root/assets/datetime-column-C3t430gN.js.br +0 -0
- codex/static_root/assets/datetime-column-C3t430gN.js.gz +0 -0
- codex/static_root/assets/filter-BQ_FuhIp.ee8b78c4aa55.js +0 -1
- codex/static_root/assets/filter-BQ_FuhIp.ee8b78c4aa55.js.br +0 -0
- codex/static_root/assets/filter-BQ_FuhIp.ee8b78c4aa55.js.gz +0 -0
- codex/static_root/assets/filter-BQ_FuhIp.js +0 -1
- codex/static_root/assets/filter-BQ_FuhIp.js.br +0 -0
- codex/static_root/assets/filter-BQ_FuhIp.js.gz +0 -0
- codex/static_root/assets/flag-tab-D380D1SI.f4bc34623651.js.br +0 -0
- codex/static_root/assets/flag-tab-D380D1SI.f4bc34623651.js.gz +0 -0
- codex/static_root/assets/flag-tab-D380D1SI.js.br +0 -0
- codex/static_root/assets/flag-tab-D380D1SI.js.gz +0 -0
- codex/static_root/assets/flag-tab-D_HjkAta.203bedf35ce7.css +0 -1
- codex/static_root/assets/flag-tab-D_HjkAta.203bedf35ce7.css.br +0 -0
- codex/static_root/assets/flag-tab-D_HjkAta.203bedf35ce7.css.gz +0 -0
- codex/static_root/assets/flag-tab-D_HjkAta.css +0 -1
- codex/static_root/assets/flag-tab-D_HjkAta.css.br +0 -0
- codex/static_root/assets/flag-tab-D_HjkAta.css.gz +0 -0
- codex/static_root/assets/group-tab-CDcOyQyw.9c85a4fb987a.js +0 -1
- codex/static_root/assets/group-tab-CDcOyQyw.9c85a4fb987a.js.br +0 -0
- codex/static_root/assets/group-tab-CDcOyQyw.9c85a4fb987a.js.gz +0 -0
- codex/static_root/assets/group-tab-CDcOyQyw.js +0 -1
- codex/static_root/assets/group-tab-CDcOyQyw.js.br +0 -0
- codex/static_root/assets/group-tab-CDcOyQyw.js.gz +0 -0
- codex/static_root/assets/group-tab-GFacGljN.98df9e04f2a7.css +0 -1
- codex/static_root/assets/group-tab-GFacGljN.98df9e04f2a7.css.br +0 -0
- codex/static_root/assets/group-tab-GFacGljN.98df9e04f2a7.css.gz +0 -0
- codex/static_root/assets/group-tab-GFacGljN.css +0 -1
- codex/static_root/assets/group-tab-GFacGljN.css.br +0 -0
- codex/static_root/assets/group-tab-GFacGljN.css.gz +0 -0
- codex/static_root/assets/http-error-C25WdjWC.1c7337ad6e1d.css +0 -1
- codex/static_root/assets/http-error-C25WdjWC.1c7337ad6e1d.css.br +0 -0
- codex/static_root/assets/http-error-C25WdjWC.1c7337ad6e1d.css.gz +0 -0
- codex/static_root/assets/http-error-C25WdjWC.css +0 -1
- codex/static_root/assets/http-error-C25WdjWC.css.br +0 -0
- codex/static_root/assets/http-error-C25WdjWC.css.gz +0 -0
- codex/static_root/assets/http-error-D4BCbtF2.d3d31021f2ca.js +0 -1
- codex/static_root/assets/http-error-D4BCbtF2.d3d31021f2ca.js.br +0 -0
- codex/static_root/assets/http-error-D4BCbtF2.d3d31021f2ca.js.gz +0 -0
- codex/static_root/assets/http-error-D4BCbtF2.js +0 -1
- codex/static_root/assets/http-error-D4BCbtF2.js.br +0 -0
- codex/static_root/assets/http-error-D4BCbtF2.js.gz +0 -0
- codex/static_root/assets/index-DUjeNg4x.36d50c91b2c1.js +0 -1
- codex/static_root/assets/index-DUjeNg4x.36d50c91b2c1.js.br +0 -0
- codex/static_root/assets/index-DUjeNg4x.36d50c91b2c1.js.gz +0 -0
- codex/static_root/assets/index-DUjeNg4x.js +0 -1
- codex/static_root/assets/index-DUjeNg4x.js.br +0 -0
- codex/static_root/assets/index-DUjeNg4x.js.gz +0 -0
- codex/static_root/assets/library-tab-BpWTK9vs.b2a752770db5.js +0 -1
- codex/static_root/assets/library-tab-BpWTK9vs.b2a752770db5.js.br +0 -0
- codex/static_root/assets/library-tab-BpWTK9vs.b2a752770db5.js.gz +0 -0
- codex/static_root/assets/library-tab-BpWTK9vs.js +0 -1
- codex/static_root/assets/library-tab-BpWTK9vs.js.br +0 -0
- codex/static_root/assets/library-tab-BpWTK9vs.js.gz +0 -0
- codex/static_root/assets/library-tab-DZKDtQ5v.c8123e4bc5a4.css +0 -1
- codex/static_root/assets/library-tab-DZKDtQ5v.c8123e4bc5a4.css.br +0 -3
- codex/static_root/assets/library-tab-DZKDtQ5v.c8123e4bc5a4.css.gz +0 -0
- codex/static_root/assets/library-tab-DZKDtQ5v.css +0 -1
- codex/static_root/assets/library-tab-DZKDtQ5v.css.br +0 -3
- codex/static_root/assets/library-tab-DZKDtQ5v.css.gz +0 -0
- codex/static_root/assets/main-DB0zDxIA.e71734100695.js +0 -32
- codex/static_root/assets/main-DB0zDxIA.e71734100695.js.br +0 -0
- codex/static_root/assets/main-DB0zDxIA.e71734100695.js.gz +0 -0
- codex/static_root/assets/main-DB0zDxIA.js +0 -32
- codex/static_root/assets/main-DB0zDxIA.js.br +0 -0
- codex/static_root/assets/main-DB0zDxIA.js.gz +0 -0
- codex/static_root/assets/main-ED57DJUb.b84231dc384d.css.br +0 -0
- codex/static_root/assets/main-ED57DJUb.css.br +0 -0
- codex/static_root/assets/metadata-dialog-BlvHIpPe.aca38025f67b.js +0 -1
- codex/static_root/assets/metadata-dialog-BlvHIpPe.aca38025f67b.js.br +0 -0
- codex/static_root/assets/metadata-dialog-BlvHIpPe.aca38025f67b.js.gz +0 -0
- codex/static_root/assets/metadata-dialog-BlvHIpPe.js +0 -1
- codex/static_root/assets/metadata-dialog-BlvHIpPe.js.br +0 -0
- codex/static_root/assets/metadata-dialog-BlvHIpPe.js.gz +0 -0
- codex/static_root/assets/metadata-dialog-CNrYFyyx.87cbe14f8752.css +0 -1
- codex/static_root/assets/metadata-dialog-CNrYFyyx.87cbe14f8752.css.br +0 -0
- codex/static_root/assets/metadata-dialog-CNrYFyyx.87cbe14f8752.css.gz +0 -0
- codex/static_root/assets/metadata-dialog-CNrYFyyx.css +0 -1
- codex/static_root/assets/metadata-dialog-CNrYFyyx.css.br +0 -0
- codex/static_root/assets/metadata-dialog-CNrYFyyx.css.gz +0 -0
- codex/static_root/assets/pdf-doc-x5fJF5N8.67b5456d222e.js +0 -35
- codex/static_root/assets/pdf-doc-x5fJF5N8.67b5456d222e.js.br +0 -0
- codex/static_root/assets/pdf-doc-x5fJF5N8.67b5456d222e.js.gz +0 -0
- codex/static_root/assets/pdf-doc-x5fJF5N8.js +0 -35
- codex/static_root/assets/pdf-doc-x5fJF5N8.js.br +0 -0
- codex/static_root/assets/pdf-doc-x5fJF5N8.js.gz +0 -0
- codex/static_root/assets/reader-BDo-P8Ww.46ce70253011.css +0 -1
- codex/static_root/assets/reader-BDo-P8Ww.46ce70253011.css.br +0 -0
- codex/static_root/assets/reader-BDo-P8Ww.46ce70253011.css.gz +0 -0
- codex/static_root/assets/reader-BDo-P8Ww.css +0 -1
- codex/static_root/assets/reader-BDo-P8Ww.css.br +0 -0
- codex/static_root/assets/reader-BDo-P8Ww.css.gz +0 -0
- codex/static_root/assets/reader-CXmsYhy4.3f98149c37d9.js +0 -2
- codex/static_root/assets/reader-CXmsYhy4.3f98149c37d9.js.br +0 -0
- codex/static_root/assets/reader-CXmsYhy4.3f98149c37d9.js.gz +0 -0
- codex/static_root/assets/reader-CXmsYhy4.js +0 -2
- codex/static_root/assets/reader-CXmsYhy4.js.br +0 -0
- codex/static_root/assets/reader-CXmsYhy4.js.gz +0 -0
- codex/static_root/assets/stats-tab-BTZLMBCU.7e0a9547c12e.css +0 -1
- codex/static_root/assets/stats-tab-BTZLMBCU.7e0a9547c12e.css.br +0 -0
- codex/static_root/assets/stats-tab-BTZLMBCU.7e0a9547c12e.css.gz +0 -0
- codex/static_root/assets/stats-tab-BTZLMBCU.css +0 -1
- codex/static_root/assets/stats-tab-BTZLMBCU.css.br +0 -0
- codex/static_root/assets/stats-tab-BTZLMBCU.css.gz +0 -0
- codex/static_root/assets/stats-tab-xK8fU37K.24f65a4c7479.js +0 -1
- codex/static_root/assets/stats-tab-xK8fU37K.24f65a4c7479.js.br +0 -0
- codex/static_root/assets/stats-tab-xK8fU37K.24f65a4c7479.js.gz +0 -0
- codex/static_root/assets/stats-tab-xK8fU37K.js +0 -1
- codex/static_root/assets/stats-tab-xK8fU37K.js.br +0 -0
- codex/static_root/assets/stats-tab-xK8fU37K.js.gz +0 -0
- codex/static_root/assets/task-tab-D-j9C5kb.f8defdafa5d1.js +0 -1
- codex/static_root/assets/task-tab-D-j9C5kb.f8defdafa5d1.js.br +0 -0
- codex/static_root/assets/task-tab-D-j9C5kb.f8defdafa5d1.js.gz +0 -0
- codex/static_root/assets/task-tab-D-j9C5kb.js +0 -1
- codex/static_root/assets/task-tab-D-j9C5kb.js.br +0 -0
- codex/static_root/assets/task-tab-D-j9C5kb.js.gz +0 -0
- codex/static_root/assets/task-tab-DoX9OA37.9bb355f36dbf.css +0 -1
- codex/static_root/assets/task-tab-DoX9OA37.9bb355f36dbf.css.gz +0 -0
- codex/static_root/assets/task-tab-DoX9OA37.css +0 -1
- codex/static_root/assets/task-tab-DoX9OA37.css.gz +0 -0
- codex/static_root/assets/to-case-kUm8NPpW.5b3369f511b8.js +0 -1
- codex/static_root/assets/to-case-kUm8NPpW.js +0 -1
- codex/static_root/assets/user-tab-DMcrO04A.501813c958bd.js +0 -1
- codex/static_root/assets/user-tab-DMcrO04A.501813c958bd.js.br +0 -0
- codex/static_root/assets/user-tab-DMcrO04A.501813c958bd.js.gz +0 -0
- codex/static_root/assets/user-tab-DMcrO04A.js +0 -1
- codex/static_root/assets/user-tab-DMcrO04A.js.br +0 -0
- codex/static_root/assets/user-tab-DMcrO04A.js.gz +0 -0
- codex/static_root/img/logo-32.dbb98f6dfde4.webp +0 -0
- codex/static_root/img/logo-maskable-180.201cbde62d55.webp +0 -0
- codex/static_root/img/logo-maskable.d618c2d7943f.svg +0 -83
- codex/static_root/img/logo-maskable.d618c2d7943f.svg.br +0 -0
- codex/static_root/img/logo-maskable.d618c2d7943f.svg.gz +0 -0
- codex/static_root/img/logo.3fb129bfbd92.svg +0 -80
- codex/static_root/img/logo.3fb129bfbd92.svg.br +0 -0
- codex/static_root/img/logo.3fb129bfbd92.svg.gz +0 -0
- codex/static_root/img/missing-cover.8c8c1d4f6782.webp +0 -0
- codex/static_root/img/missing-cover.webp +0 -0
- codex/static_root/img/missing-page.71bb10f7c72a.svg +0 -13
- codex/static_root/img/missing-page.71bb10f7c72a.svg.br +0 -0
- codex/static_root/img/missing-page.71bb10f7c72a.svg.gz +0 -0
- codex/static_root/img/missing-page.svg +0 -13
- codex/static_root/img/missing-page.svg.br +0 -0
- codex/static_root/img/missing-page.svg.gz +0 -0
- codex/static_root/js/choices-admin.bb730e4f26ac.json +0 -1
- codex/static_root/js/choices-admin.bb730e4f26ac.json.br +0 -0
- codex/static_root/js/choices-admin.bb730e4f26ac.json.gz +0 -0
- codex/static_root/js/choices.fedcbd1ec085.json +0 -1
- codex/static_root/js/choices.fedcbd1ec085.json.br +0 -0
- codex/static_root/js/choices.fedcbd1ec085.json.gz +0 -0
- codex/static_root/manifest.8e6c35516db7.json +0 -607
- codex/static_root/manifest.8e6c35516db7.json.br +0 -0
- codex/static_root/manifest.8e6c35516db7.json.gz +0 -0
- codex/views/browser/browser_annotations.py +0 -298
- codex/views/browser/browser_order_by.py +0 -108
- codex/views/browser/const.py +0 -3
- codex/views/browser/session.py +0 -12
- codex/views/cover.py +0 -59
- codex-1.5.19.dist-info/RECORD +0 -936
- {codex-1.5.19.dist-info → codex-1.6.0.dist-info}/LICENSE +0 -0
- {codex-1.5.19.dist-info → codex-1.6.0.dist-info}/WHEEL +0 -0
- {codex-1.5.19.dist-info → codex-1.6.0.dist-info}/entry_points.txt +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{_ as g,V as x}from"./confirm-footer-CIu2tkFD.js";import{_ as V,R as a,P as l,T as n,ao as u,ap as f,L as m,ae as r,ai as i,ah as T,aG as _}from"./admin-drawer-panel-DffXGW1d.js";const p={name:"ConfirmDialog",components:{ConfirmFooter:g},props:{icon:{type:String,default:""},buttonText:{type:String,default:""},titleText:{type:String,required:!0},objectName:{type:String,required:!0},confirmText:{type:String,required:!0},size:{type:String,default:"default"},density:{type:String,default:"default"}},data(){return{showDialog:!1}},methods:{close(s){this.$emit(s),this.showDialog=!1}}},D={class:"confirmDialog"};function S(s,t,e,h,c,d){const y=g;return a(),l(x,{modelValue:c.showDialog,"onUpdate:modelValue":t[2]||(t[2]=o=>c.showDialog=o),transition:"fab-transition","max-width":"20em","overlay-opacity":"0.5"},{activator:n(({props:o})=>[e.icon?(a(),l(u,f({key:0,icon:""},o,{size:e.size,density:e.density,title:e.titleText}),{default:n(()=>[m(T,null,{default:n(()=>[r(i(e.icon),1)]),_:1})]),_:2},1040,["size","density","title"])):(a(),l(u,f({key:1,block:""},o),{default:n(()=>[r(i(e.buttonText),1)]),_:2},1040))]),default:n(()=>[_("div",D,[_("h3",null,i(e.titleText),1),r(" "+i(e.objectName)+" ",1),m(y,{"confirm-text":e.confirmText,onConfirm:t[0]||(t[0]=o=>d.close("confirm")),onCancel:t[1]||(t[1]=o=>d.close("cancel"))},null,8,["confirm-text"])])]),_:1},8,["modelValue"])}const w=V(p,[["render",S],["__scopeId","data-v-996f6e3c"]]);export{w as _};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.v-dialog{align-items:center;justify-content:center;margin:auto}.v-dialog>.v-overlay__content{max-height:calc(100% - 48px);width:calc(100% - 48px);max-width:calc(100% - 48px);margin:24px}.v-dialog>.v-overlay__content,.v-dialog>.v-overlay__content>form{display:flex;flex-direction:column;min-height:0}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>.v-sheet,.v-dialog>.v-overlay__content>form>.v-card,.v-dialog>.v-overlay__content>form>.v-sheet{--v-scrollbar-offset: 0px;border-radius:4px;overflow-y:auto;box-shadow:0 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>form>.v-card{display:flex;flex-direction:column}.v-dialog>.v-overlay__content>.v-card>.v-card-item,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item{padding:16px 24px}.v-dialog>.v-overlay__content>.v-card>.v-card-item+.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item+.v-card-text{padding-top:0}.v-dialog>.v-overlay__content>.v-card>.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-text{font-size:inherit;letter-spacing:.03125em;line-height:inherit;padding:16px 24px 24px}.v-dialog>.v-overlay__content>.v-card>.v-card-actions,.v-dialog>.v-overlay__content>form>.v-card>.v-card-actions{justify-content:flex-end}.v-dialog--fullscreen{--v-scrollbar-offset: 0px}.v-dialog--fullscreen>.v-overlay__content{border-radius:0;margin:0;padding:0;width:100%;height:100%;max-width:100%;max-height:100%;overflow-y:auto;top:0;left:0}.v-dialog--fullscreen>.v-overlay__content>.v-card,.v-dialog--fullscreen>.v-overlay__content>.v-sheet,.v-dialog--fullscreen>.v-overlay__content>form>.v-card,.v-dialog--fullscreen>.v-overlay__content>form>.v-sheet{min-height:100%;min-width:100%;border-radius:0}.v-dialog--scrollable>.v-overlay__content,.v-dialog--scrollable>.v-overlay__content>form{display:flex}.v-dialog--scrollable>.v-overlay__content>.v-card,.v-dialog--scrollable>.v-overlay__content>form>.v-card{display:flex;flex:1 1 100%;flex-direction:column;max-height:100%;max-width:100%}.v-dialog--scrollable>.v-overlay__content>.v-card>.v-card-text,.v-dialog--scrollable>.v-overlay__content>form>.v-card>.v-card-text{backface-visibility:hidden;overflow-y:auto}.v-overlay-container{contain:layout;left:0;pointer-events:none;position:absolute;top:0;display:contents}.v-overlay-scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-overlay-scroll-blocked:not(html){overflow-y:hidden!important}html.v-overlay-scroll-blocked{position:fixed;top:var(--v-body-scroll-y);left:var(--v-body-scroll-x);width:100%;height:100%}.v-overlay{border-radius:inherit;display:flex;left:0;pointer-events:none;position:fixed;top:0;bottom:0;right:0}.v-overlay__content{outline:none;position:absolute;pointer-events:auto;contain:layout}.v-overlay__scrim{pointer-events:auto;background:rgb(var(--v-theme-on-surface));border-radius:inherit;bottom:0;left:0;opacity:var(--v-overlay-opacity, .32);position:fixed;right:0;top:0}.v-overlay--absolute,.v-overlay--contained .v-overlay__scrim{position:absolute}.v-overlay--scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.confirmFooter[data-v-24df1550]{display:flex;justify-content:space-between;margin:1em auto auto}
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.v-dialog{align-items:center;justify-content:center;margin:auto}.v-dialog>.v-overlay__content{max-height:calc(100% - 48px);width:calc(100% - 48px);max-width:calc(100% - 48px);margin:24px}.v-dialog>.v-overlay__content,.v-dialog>.v-overlay__content>form{display:flex;flex-direction:column;min-height:0}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>.v-sheet,.v-dialog>.v-overlay__content>form>.v-card,.v-dialog>.v-overlay__content>form>.v-sheet{--v-scrollbar-offset: 0px;border-radius:4px;overflow-y:auto;box-shadow:0 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-dialog>.v-overlay__content>.v-card,.v-dialog>.v-overlay__content>form>.v-card{display:flex;flex-direction:column}.v-dialog>.v-overlay__content>.v-card>.v-card-item,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item{padding:16px 24px}.v-dialog>.v-overlay__content>.v-card>.v-card-item+.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-item+.v-card-text{padding-top:0}.v-dialog>.v-overlay__content>.v-card>.v-card-text,.v-dialog>.v-overlay__content>form>.v-card>.v-card-text{font-size:inherit;letter-spacing:.03125em;line-height:inherit;padding:16px 24px 24px}.v-dialog>.v-overlay__content>.v-card>.v-card-actions,.v-dialog>.v-overlay__content>form>.v-card>.v-card-actions{justify-content:flex-end}.v-dialog--fullscreen{--v-scrollbar-offset: 0px}.v-dialog--fullscreen>.v-overlay__content{border-radius:0;margin:0;padding:0;width:100%;height:100%;max-width:100%;max-height:100%;overflow-y:auto;top:0;left:0}.v-dialog--fullscreen>.v-overlay__content>.v-card,.v-dialog--fullscreen>.v-overlay__content>.v-sheet,.v-dialog--fullscreen>.v-overlay__content>form>.v-card,.v-dialog--fullscreen>.v-overlay__content>form>.v-sheet{min-height:100%;min-width:100%;border-radius:0}.v-dialog--scrollable>.v-overlay__content,.v-dialog--scrollable>.v-overlay__content>form{display:flex}.v-dialog--scrollable>.v-overlay__content>.v-card,.v-dialog--scrollable>.v-overlay__content>form>.v-card{display:flex;flex:1 1 100%;flex-direction:column;max-height:100%;max-width:100%}.v-dialog--scrollable>.v-overlay__content>.v-card>.v-card-text,.v-dialog--scrollable>.v-overlay__content>form>.v-card>.v-card-text{backface-visibility:hidden;overflow-y:auto}.v-overlay-container{contain:layout;left:0;pointer-events:none;position:absolute;top:0;display:contents}.v-overlay-scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-overlay-scroll-blocked:not(html){overflow-y:hidden!important}html.v-overlay-scroll-blocked{position:fixed;top:var(--v-body-scroll-y);left:var(--v-body-scroll-x);width:100%;height:100%}.v-overlay{border-radius:inherit;display:flex;left:0;pointer-events:none;position:fixed;top:0;bottom:0;right:0}.v-overlay__content{outline:none;position:absolute;pointer-events:auto;contain:layout}.v-overlay__scrim{pointer-events:auto;background:rgb(var(--v-theme-on-surface));border-radius:inherit;bottom:0;left:0;opacity:var(--v-overlay-opacity, .32);position:fixed;right:0;top:0}.v-overlay--absolute,.v-overlay--contained .v-overlay__scrim{position:absolute}.v-overlay--scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.confirmFooter[data-v-24df1550]{display:flex;justify-content:space-between;margin:1em auto auto}
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{x as z,r as W,X as N,cj as fe,a as R,ck as $,dd as Ge,de as Ue,df as ge,dg as ne,dh as oe,di as ye,h as O,n as Q,dj as Xe,dk as J,dl as ae,dm as he,dn as be,C as V,a0 as we,d5 as Ye,w as ve,dp as Te,dq as Ke,dr as Je,z as de,i as Be,ds as Ee,dt as Ze,ap as D,du as Qe,d4 as et,s as j,ch as tt,f as Fe,p as nt,dv as ot,dw as at,dx as Le,E as rt,bd as lt,F as it,be as st,G as _e,as as Me,I as ct,J as ut,aw as ft,ax as vt,bg as dt,o as mt,cl as gt,d2 as yt,aq as ht,K as Ve,L as B,dy as bt,bj as wt,bh as Et,bk as xt,bi as St,M as pt,cn as Pt,dz as Ot,ar as At,cY as Ct,c8 as kt,c_ as Rt,_ as Tt,R as Bt,aB as Ft,T as xe,ae as Se,ai as Lt,ao as pe}from"./admin-drawer-panel-DffXGW1d.js";import{d as _t}from"./main-DB0zDxIA.js";function re(e,n){return{x:e.x+n.x,y:e.y+n.y}}function Mt(e,n){return{x:e.x-n.x,y:e.y-n.y}}function Pe(e,n){if(e.side==="top"||e.side==="bottom"){const{side:t,align:o}=e,i=o==="left"?0:o==="center"?n.width/2:o==="right"?n.width:o,a=t==="top"?0:t==="bottom"?n.height:t;return re({x:i,y:a},n)}else if(e.side==="left"||e.side==="right"){const{side:t,align:o}=e,i=t==="left"?0:t==="right"?n.width:t,a=o==="top"?0:o==="center"?n.height/2:o==="bottom"?n.height:o;return re({x:i,y:a},n)}return re({x:n.width/2,y:n.height/2},n)}const De={static:It,connected:$t},Vt=z({locationStrategy:{type:[String,Function],default:"static",validator:e=>typeof e=="function"||e in De},location:{type:String,default:"bottom"},origin:{type:String,default:"auto"},offset:[Number,String,Array]},"VOverlay-location-strategies");function Dt(e,n){const t=W({}),o=W();N&&fe(()=>!!(n.isActive.value&&e.locationStrategy),a=>{var r,l;R(()=>e.locationStrategy,a),$(()=>{window.removeEventListener("resize",i),o.value=void 0}),window.addEventListener("resize",i,{passive:!0}),typeof e.locationStrategy=="function"?o.value=(r=e.locationStrategy(n,e,t))==null?void 0:r.updateLocation:o.value=(l=De[e.locationStrategy](n,e,t))==null?void 0:l.updateLocation});function i(a){var r;(r=o.value)==null||r.call(o,a)}return{contentStyles:t,updateLocation:o}}function It(){}function Wt(e,n){n?e.style.removeProperty("left"):e.style.removeProperty("right");const t=Ye(e);return n?t.x+=parseFloat(e.style.right||0):t.x-=parseFloat(e.style.left||0),t.y-=parseFloat(e.style.top||0),t}function $t(e,n,t){(Array.isArray(e.target.value)||Ge(e.target.value))&&Object.assign(t.value,{position:"fixed",top:0,[e.isRtl.value?"right":"left"]:0});const{preferredAnchor:i,preferredOrigin:a}=Ue(()=>{const d=ge(n.location,e.isRtl.value),u=n.origin==="overlap"?d:n.origin==="auto"?ne(d):ge(n.origin,e.isRtl.value);return d.side===u.side&&d.align===oe(u).align?{preferredAnchor:ye(d),preferredOrigin:ye(u)}:{preferredAnchor:d,preferredOrigin:u}}),[r,l,f,v]=["minWidth","minHeight","maxWidth","maxHeight"].map(d=>O(()=>{const u=parseFloat(n[d]);return isNaN(u)?1/0:u})),c=O(()=>{if(Array.isArray(n.offset))return n.offset;if(typeof n.offset=="string"){const d=n.offset.split(" ").map(parseFloat);return d.length<2&&d.push(0),d}return typeof n.offset=="number"?[n.offset,0]:[0,0]});let m=!1;const b=new ResizeObserver(()=>{m&&h()});R([e.target,e.contentEl],(d,u)=>{let[S,A]=d,[p,w]=u;p&&!Array.isArray(p)&&b.unobserve(p),S&&!Array.isArray(S)&&b.observe(S),w&&b.unobserve(w),A&&b.observe(A)},{immediate:!0}),$(()=>{b.disconnect()});function h(){if(m=!1,requestAnimationFrame(()=>m=!0),!e.target.value||!e.contentEl.value)return;const d=Xe(e.target.value),u=Wt(e.contentEl.value,e.isRtl.value),S=J(e.contentEl.value),A=12;S.length||(S.push(document.documentElement),e.contentEl.value.style.top&&e.contentEl.value.style.left||(u.x-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x")||0),u.y-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y")||0)));const p=S.reduce((P,E)=>{const g=E.getBoundingClientRect(),y=new ae({x:E===document.documentElement?0:g.x,y:E===document.documentElement?0:g.y,width:E.clientWidth,height:E.clientHeight});return P?new ae({x:Math.max(P.left,y.left),y:Math.max(P.top,y.top),width:Math.min(P.right,y.right)-Math.max(P.left,y.left),height:Math.min(P.bottom,y.bottom)-Math.max(P.top,y.top)}):y},void 0);p.x+=A,p.y+=A,p.width-=A*2,p.height-=A*2;let w={anchor:i.value,origin:a.value};function H(P){const E=new ae(u),g=Pe(P.anchor,d),y=Pe(P.origin,E);let{x:_,y:F}=Mt(g,y);switch(P.anchor.side){case"top":F-=c.value[0];break;case"bottom":F+=c.value[0];break;case"left":_-=c.value[0];break;case"right":_+=c.value[0];break}switch(P.anchor.align){case"top":F-=c.value[1];break;case"bottom":F+=c.value[1];break;case"left":_-=c.value[1];break;case"right":_+=c.value[1];break}return E.x+=_,E.y+=F,E.width=Math.min(E.width,f.value),E.height=Math.min(E.height,v.value),{overflows:be(E,p),x:_,y:F}}let L=0,C=0;const s={x:0,y:0},T={x:!1,y:!1};let ee=-1;for(;!(ee++>10);){const{x:P,y:E,overflows:g}=H(w);L+=P,C+=E,u.x+=P,u.y+=E;{const y=he(w.anchor),_=g.x.before||g.x.after,F=g.y.before||g.y.after;let G=!1;if(["x","y"].forEach(k=>{if(k==="x"&&_&&!T.x||k==="y"&&F&&!T.y){const M={anchor:{...w.anchor},origin:{...w.origin}},X=k==="x"?y==="y"?oe:ne:y==="y"?ne:oe;M.anchor=X(M.anchor),M.origin=X(M.origin);const{overflows:q}=H(M);(q[k].before<=g[k].before&&q[k].after<=g[k].after||q[k].before+q[k].after<(g[k].before+g[k].after)/2)&&(w=M,G=T[k]=!0)}}),G)continue}g.x.before&&(L+=g.x.before,u.x+=g.x.before),g.x.after&&(L-=g.x.after,u.x-=g.x.after),g.y.before&&(C+=g.y.before,u.y+=g.y.before),g.y.after&&(C-=g.y.after,u.y-=g.y.after);{const y=be(u,p);s.x=p.width-y.x.before-y.x.after,s.y=p.height-y.y.before-y.y.after,L+=y.x.before,u.x+=y.x.before,C+=y.y.before,u.y+=y.y.before}break}const te=he(w.anchor);return Object.assign(t.value,{"--v-overlay-anchor-origin":`${w.anchor.side} ${w.anchor.align}`,transformOrigin:`${w.origin.side} ${w.origin.align}`,top:V(le(C)),left:e.isRtl.value?void 0:V(le(L)),right:e.isRtl.value?V(le(-L)):void 0,minWidth:V(te==="y"?Math.min(r.value,d.width):r.value),maxWidth:V(Oe(we(s.x,r.value===1/0?0:r.value,f.value))),maxHeight:V(Oe(we(s.y,l.value===1/0?0:l.value,v.value)))}),{available:s,contentBox:u}}return R(()=>[i.value,a.value,n.offset,n.minWidth,n.minHeight,n.maxWidth,n.maxHeight],()=>h()),Q(()=>{const d=h();if(!d)return;const{available:u,contentBox:S}=d;S.height>u.y&&requestAnimationFrame(()=>{h(),requestAnimationFrame(()=>{h()})})}),{updateLocation:h}}function le(e){return Math.round(e*devicePixelRatio)/devicePixelRatio}function Oe(e){return Math.ceil(e*devicePixelRatio)/devicePixelRatio}let ce=!0;const Z=[];function Ht(e){!ce||Z.length?(Z.push(e),ue()):(ce=!1,e(),ue())}let Ae=-1;function ue(){cancelAnimationFrame(Ae),Ae=requestAnimationFrame(()=>{const e=Z.shift();e&&e(),Z.length?ue():ce=!0})}const K={none:null,close:zt,block:jt,reposition:Gt},Nt=z({scrollStrategy:{type:[String,Function],default:"block",validator:e=>typeof e=="function"||e in K}},"VOverlay-scroll-strategies");function qt(e,n){if(!N)return;let t;ve(async()=>{t==null||t.stop(),n.isActive.value&&e.scrollStrategy&&(t=Te(),await new Promise(o=>setTimeout(o)),t.active&&t.run(()=>{var o;typeof e.scrollStrategy=="function"?e.scrollStrategy(n,e,t):(o=K[e.scrollStrategy])==null||o.call(K,n,e,t)}))}),$(()=>{t==null||t.stop()})}function zt(e){function n(t){e.isActive.value=!1}Ie(e.targetEl.value??e.contentEl.value,n)}function jt(e,n){var r;const t=(r=e.root.value)==null?void 0:r.offsetParent,o=[...new Set([...J(e.targetEl.value,n.contained?t:void 0),...J(e.contentEl.value,n.contained?t:void 0)])].filter(l=>!l.classList.contains("v-overlay-scroll-blocked")),i=window.innerWidth-document.documentElement.offsetWidth,a=(l=>Ke(l)&&l)(t||document.documentElement);a&&e.root.value.classList.add("v-overlay--scroll-blocked"),o.forEach((l,f)=>{l.style.setProperty("--v-body-scroll-x",V(-l.scrollLeft)),l.style.setProperty("--v-body-scroll-y",V(-l.scrollTop)),l!==document.documentElement&&l.style.setProperty("--v-scrollbar-offset",V(i)),l.classList.add("v-overlay-scroll-blocked")}),$(()=>{o.forEach((l,f)=>{const v=parseFloat(l.style.getPropertyValue("--v-body-scroll-x")),c=parseFloat(l.style.getPropertyValue("--v-body-scroll-y")),m=l.style.scrollBehavior;l.style.scrollBehavior="auto",l.style.removeProperty("--v-body-scroll-x"),l.style.removeProperty("--v-body-scroll-y"),l.style.removeProperty("--v-scrollbar-offset"),l.classList.remove("v-overlay-scroll-blocked"),l.scrollLeft=-v,l.scrollTop=-c,l.style.scrollBehavior=m}),a&&e.root.value.classList.remove("v-overlay--scroll-blocked")})}function Gt(e,n,t){let o=!1,i=-1,a=-1;function r(l){Ht(()=>{var c,m;const f=performance.now();(m=(c=e.updateLocation).value)==null||m.call(c,l),o=(performance.now()-f)/(1e3/60)>2})}a=(typeof requestIdleCallback>"u"?l=>l():requestIdleCallback)(()=>{t.run(()=>{Ie(e.targetEl.value??e.contentEl.value,l=>{o?(cancelAnimationFrame(i),i=requestAnimationFrame(()=>{i=requestAnimationFrame(()=>{r(l)})})):r(l)})})}),$(()=>{typeof cancelIdleCallback<"u"&&cancelIdleCallback(a),cancelAnimationFrame(i)})}function Ie(e,n){const t=[document,...J(e)];t.forEach(o=>{o.addEventListener("scroll",n,{passive:!0})}),$(()=>{t.forEach(o=>{o.removeEventListener("scroll",n)})})}const Ut=Symbol.for("vuetify:v-menu"),Xt=z({closeDelay:[Number,String],openDelay:[Number,String]},"delay");function Yt(e,n){let t=()=>{};function o(r){t==null||t();const l=Number(r?e.openDelay:e.closeDelay);return new Promise(f=>{t=Je(l,()=>{n==null||n(r),f(r)})})}function i(){return o(!0)}function a(){return o(!1)}return{clearDelay:t,runOpenDelay:i,runCloseDelay:a}}const Kt=z({target:[String,Object],activator:[String,Object],activatorProps:{type:Object,default:()=>({})},openOnClick:{type:Boolean,default:void 0},openOnHover:Boolean,openOnFocus:{type:Boolean,default:void 0},closeOnContentClick:Boolean,...Xt()},"VOverlay-activator");function Jt(e,n){let{isActive:t,isTop:o}=n;const i=de("useActivator"),a=W();let r=!1,l=!1,f=!0;const v=O(()=>e.openOnFocus||e.openOnFocus==null&&e.openOnHover),c=O(()=>e.openOnClick||e.openOnClick==null&&!e.openOnHover&&!v.value),{runOpenDelay:m,runCloseDelay:b}=Yt(e,s=>{s===(e.openOnHover&&r||v.value&&l)&&!(e.openOnHover&&t.value&&!o.value)&&(t.value!==s&&(f=!0),t.value=s)}),h=W(),d={onClick:s=>{s.stopPropagation(),a.value=s.currentTarget||s.target,t.value||(h.value=[s.clientX,s.clientY]),t.value=!t.value},onMouseenter:s=>{var T;(T=s.sourceCapabilities)!=null&&T.firesTouchEvents||(r=!0,a.value=s.currentTarget||s.target,m())},onMouseleave:s=>{r=!1,b()},onFocus:s=>{et(s.target,":focus-visible")!==!1&&(l=!0,s.stopPropagation(),a.value=s.currentTarget||s.target,m())},onBlur:s=>{l=!1,s.stopPropagation(),b()}},u=O(()=>{const s={};return c.value&&(s.onClick=d.onClick),e.openOnHover&&(s.onMouseenter=d.onMouseenter,s.onMouseleave=d.onMouseleave),v.value&&(s.onFocus=d.onFocus,s.onBlur=d.onBlur),s}),S=O(()=>{const s={};if(e.openOnHover&&(s.onMouseenter=()=>{r=!0,m()},s.onMouseleave=()=>{r=!1,b()}),v.value&&(s.onFocusin=()=>{l=!0,m()},s.onFocusout=()=>{l=!1,b()}),e.closeOnContentClick){const T=Be(Ut,null);s.onClick=()=>{t.value=!1,T==null||T.closeParents()}}return s}),A=O(()=>{const s={};return e.openOnHover&&(s.onMouseenter=()=>{f&&(r=!0,f=!1,m())},s.onMouseleave=()=>{r=!1,b()}),s});R(o,s=>{s&&(e.openOnHover&&!r&&(!v.value||!l)||v.value&&!l&&(!e.openOnHover||!r))&&(t.value=!1)}),R(t,s=>{s||setTimeout(()=>{h.value=void 0})},{flush:"post"});const p=Ee();ve(()=>{p.value&&Q(()=>{a.value=p.el})});const w=Ee(),H=O(()=>e.target==="cursor"&&h.value?h.value:w.value?w.el:We(e.target,i)||a.value),L=O(()=>Array.isArray(H.value)?void 0:H.value);let C;return R(()=>!!e.activator,s=>{s&&N?(C=Te(),C.run(()=>{Zt(e,i,{activatorEl:a,activatorEvents:u})})):C&&C.stop()},{flush:"post",immediate:!0}),$(()=>{C==null||C.stop()}),{activatorEl:a,activatorRef:p,target:H,targetEl:L,targetRef:w,activatorEvents:u,contentEvents:S,scrimEvents:A}}function Zt(e,n,t){let{activatorEl:o,activatorEvents:i}=t;R(()=>e.activator,(f,v)=>{if(v&&f!==v){const c=l(v);c&&r(c)}f&&Q(()=>a())},{immediate:!0}),R(()=>e.activatorProps,()=>{a()}),$(()=>{r()});function a(){let f=arguments.length>0&&arguments[0]!==void 0?arguments[0]:l(),v=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e.activatorProps;f&&Ze(f,D(i.value,v))}function r(){let f=arguments.length>0&&arguments[0]!==void 0?arguments[0]:l(),v=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e.activatorProps;f&&Qe(f,D(i.value,v))}function l(){let f=arguments.length>0&&arguments[0]!==void 0?arguments[0]:e.activator;const v=We(f,n);return o.value=(v==null?void 0:v.nodeType)===Node.ELEMENT_NODE?v:void 0,o.value}}function We(e,n){var o,i;if(!e)return;let t;if(e==="parent"){let a=(i=(o=n==null?void 0:n.proxy)==null?void 0:o.$el)==null?void 0:i.parentNode;for(;a!=null&&a.hasAttribute("data-no-activator");)a=a.parentNode;t=a}else typeof e=="string"?t=document.querySelector(e):"$el"in e?t=e.$el:t=e;return t}function Qt(){if(!N)return j(!1);const{ssr:e}=_t();if(e){const n=j(!1);return tt(()=>{n.value=!0}),n}else return j(!0)}const en=z({eager:Boolean},"lazy");function tn(e,n){const t=j(!1),o=O(()=>t.value||e.eager||n.value);R(n,()=>t.value=!0);function i(){e.eager||(t.value=!1)}return{isBooted:t,hasContent:o,onAfterLeave:i}}function $e(){const n=de("useScopeId").vnode.scopeId;return{scopeId:n?{[n]:""}:void 0}}const Ce=Symbol.for("vuetify:stack"),U=Fe([]);function nn(e,n,t){const o=de("useStack"),i=!t,a=Be(Ce,void 0),r=Fe({activeChildren:new Set});nt(Ce,r);const l=j(+n.value);fe(e,()=>{var m;const c=(m=U.at(-1))==null?void 0:m[1];l.value=c?c+10:+n.value,i&&U.push([o.uid,l.value]),a==null||a.activeChildren.add(o.uid),$(()=>{if(i){const b=ot(U).findIndex(h=>h[0]===o.uid);U.splice(b,1)}a==null||a.activeChildren.delete(o.uid)})});const f=j(!0);i&&ve(()=>{var m;const c=((m=U.at(-1))==null?void 0:m[0])===o.uid;setTimeout(()=>f.value=c)});const v=O(()=>!r.activeChildren.size);return{globalTop:at(f),localTop:v,stackStyles:O(()=>({zIndex:l.value}))}}function on(e){return{teleportTarget:O(()=>{const t=e.value;if(t===!0||!N)return;const o=t===!1?document.body:typeof t=="string"?document.querySelector(t):t;if(o==null)return;let i=o.querySelector(":scope > .v-overlay-container");return i||(i=document.createElement("div"),i.className="v-overlay-container",o.appendChild(i)),i})}}function an(){return!0}function He(e,n,t){if(!e||Ne(e,t)===!1)return!1;const o=Le(n);if(typeof ShadowRoot<"u"&&o instanceof ShadowRoot&&o.host===e.target)return!1;const i=(typeof t.value=="object"&&t.value.include||(()=>[]))();return i.push(n),!i.some(a=>a==null?void 0:a.contains(e.target))}function Ne(e,n){return(typeof n.value=="object"&&n.value.closeConditional||an)(e)}function rn(e,n,t){const o=typeof t.value=="function"?t.value:t.value.handler;n._clickOutside.lastMousedownWasOutside&&He(e,n,t)&&setTimeout(()=>{Ne(e,t)&&o&&o(e)},0)}function ke(e,n){const t=Le(e);n(document),typeof ShadowRoot<"u"&&t instanceof ShadowRoot&&n(t)}const ln={mounted(e,n){const t=i=>rn(i,e,n),o=i=>{e._clickOutside.lastMousedownWasOutside=He(i,e,n)};ke(e,i=>{i.addEventListener("click",t,!0),i.addEventListener("mousedown",o,!0)}),e._clickOutside||(e._clickOutside={lastMousedownWasOutside:!1}),e._clickOutside[n.instance.$.uid]={onClick:t,onMousedown:o}},unmounted(e,n){e._clickOutside&&(ke(e,t=>{var a;if(!t||!((a=e._clickOutside)!=null&&a[n.instance.$.uid]))return;const{onClick:o,onMousedown:i}=e._clickOutside[n.instance.$.uid];t.removeEventListener("click",o,!0),t.removeEventListener("mousedown",i,!0)}),delete e._clickOutside[n.instance.$.uid])}};function sn(e){const{modelValue:n,color:t,...o}=e;return B(Pt,{name:"fade-transition",appear:!0},{default:()=>[e.modelValue&&B("div",D({class:["v-overlay__scrim",e.color.backgroundColorClasses.value],style:e.color.backgroundColorStyles.value},o),null)]})}const qe=z({absolute:Boolean,attach:[Boolean,String,Object],closeOnBack:{type:Boolean,default:!0},contained:Boolean,contentClass:null,contentProps:null,disabled:Boolean,opacity:[Number,String],noClickAnimation:Boolean,modelValue:Boolean,persistent:Boolean,scrim:{type:[Boolean,String],default:!0},zIndex:{type:[Number,String],default:2e3},...Kt(),...rt(),...lt(),...en(),...Vt(),...Nt(),...it(),...st()},"VOverlay"),Re=_e()({name:"VOverlay",directives:{ClickOutside:ln},inheritAttrs:!1,props:{_disableGlobalStack:Boolean,...qe()},emits:{"click:outside":e=>!0,"update:modelValue":e=>!0,afterEnter:()=>!0,afterLeave:()=>!0},setup(e,n){let{slots:t,attrs:o,emit:i}=n;const a=Me(e,"modelValue"),r=O({get:()=>a.value,set:x=>{x&&e.disabled||(a.value=x)}}),{teleportTarget:l}=on(O(()=>e.attach||e.contained)),{themeClasses:f}=ct(e),{rtlClasses:v,isRtl:c}=ut(),{hasContent:m,onAfterLeave:b}=tn(e,r),h=ft(O(()=>typeof e.scrim=="string"?e.scrim:null)),{globalTop:d,localTop:u,stackStyles:S}=nn(r,vt(e,"zIndex"),e._disableGlobalStack),{activatorEl:A,activatorRef:p,target:w,targetEl:H,targetRef:L,activatorEvents:C,contentEvents:s,scrimEvents:T}=Jt(e,{isActive:r,isTop:u}),{dimensionStyles:ee}=dt(e),te=Qt(),{scopeId:P}=$e();R(()=>e.disabled,x=>{x&&(r.value=!1)});const E=W(),g=W(),y=W(),{contentStyles:_,updateLocation:F}=Dt(e,{isRtl:c,contentEl:y,target:w,isActive:r});qt(e,{root:E,contentEl:y,targetEl:H,isActive:r,updateLocation:F});function G(x){i("click:outside",x),e.persistent?Y():r.value=!1}function k(x){return r.value&&d.value&&(!e.scrim||x.target===g.value)}N&&R(r,x=>{x?window.addEventListener("keydown",M):window.removeEventListener("keydown",M)},{immediate:!0}),mt(()=>{N&&window.removeEventListener("keydown",M)});function M(x){var I,me;x.key==="Escape"&&d.value&&(e.persistent?Y():(r.value=!1,(I=y.value)!=null&&I.contains(document.activeElement)&&((me=A.value)==null||me.focus())))}const X=gt();fe(()=>e.closeOnBack,()=>{Ot(X,x=>{d.value&&r.value?(x(!1),e.persistent?Y():r.value=!1):x()})});const q=W();R(()=>r.value&&(e.absolute||e.contained)&&l.value==null,x=>{if(x){const I=yt(E.value);I&&I!==document.scrollingElement&&(q.value=I.scrollTop)}});function Y(){e.noClickAnimation||y.value&&ht(y.value,[{transformOrigin:"center"},{transform:"scale(1.03)"},{transformOrigin:"center"}],{duration:150,easing:At})}function ze(){i("afterEnter")}function je(){b(),i("afterLeave")}return Ve(()=>{var x;return B(pt,null,[(x=t.activator)==null?void 0:x.call(t,{isActive:r.value,targetRef:L,props:D({ref:p},C.value,e.activatorProps)}),te.value&&m.value&&B(bt,{disabled:!l.value,to:l.value},{default:()=>[B("div",D({class:["v-overlay",{"v-overlay--absolute":e.absolute||e.contained,"v-overlay--active":r.value,"v-overlay--contained":e.contained},f.value,v.value,e.class],style:[S.value,{"--v-overlay-opacity":e.opacity,top:V(q.value)},e.style],ref:E},P,o),[B(sn,D({color:h,modelValue:r.value&&!!e.scrim,ref:g},T.value),null),B(wt,{appear:!0,persisted:!0,transition:e.transition,target:w.value,onAfterEnter:ze,onAfterLeave:je},{default:()=>{var I;return[Et(B("div",D({ref:y,class:["v-overlay__content",e.contentClass],style:[ee.value,_.value]},s.value,e.contentProps),[(I=t.default)==null?void 0:I.call(t,{isActive:r})]),[[xt,r.value],[St("click-outside"),{handler:G,closeConditional:k,include:()=>[A.value]}]])]}})])]})])}),{activatorEl:A,scrimEl:g,target:w,animateClick:Y,contentEl:y,globalTop:d,localTop:u,updateLocation:F}}}),ie=Symbol("Forwarded refs");function se(e,n){let t=e;for(;t;){const o=Reflect.getOwnPropertyDescriptor(t,n);if(o)return o;t=Object.getPrototypeOf(t)}}function cn(e){for(var n=arguments.length,t=new Array(n>1?n-1:0),o=1;o<n;o++)t[o-1]=arguments[o];return e[ie]=t,new Proxy(e,{get(i,a){if(Reflect.has(i,a))return Reflect.get(i,a);if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const r of t)if(r.value&&Reflect.has(r.value,a)){const l=Reflect.get(r.value,a);return typeof l=="function"?l.bind(r.value):l}}},has(i,a){if(Reflect.has(i,a))return!0;if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const r of t)if(r.value&&Reflect.has(r.value,a))return!0;return!1},set(i,a,r){if(Reflect.has(i,a))return Reflect.set(i,a,r);if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const l of t)if(l.value&&Reflect.has(l.value,a))return Reflect.set(l.value,a,r);return!1},getOwnPropertyDescriptor(i,a){var l;const r=Reflect.getOwnPropertyDescriptor(i,a);if(r)return r;if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const f of t){if(!f.value)continue;const v=se(f.value,a)??("_"in f.value?se((l=f.value._)==null?void 0:l.setupState,a):void 0);if(v)return v}for(const f of t){const v=f.value&&f.value[ie];if(!v)continue;const c=v.slice();for(;c.length;){const m=c.shift(),b=se(m.value,a);if(b)return b;const h=m.value&&m.value[ie];h&&c.push(...h)}}}}})}const un=z({fullscreen:Boolean,retainFocus:{type:Boolean,default:!0},scrollable:Boolean,...qe({origin:"center center",scrollStrategy:"block",transition:{component:Ct},zIndex:2400})},"VDialog"),yn=_e()({name:"VDialog",props:un(),emits:{"update:modelValue":e=>!0,afterLeave:()=>!0},setup(e,n){let{emit:t,slots:o}=n;const i=Me(e,"modelValue"),{scopeId:a}=$e(),r=W();function l(c){var h,d;const m=c.relatedTarget,b=c.target;if(m!==b&&((h=r.value)!=null&&h.contentEl)&&((d=r.value)!=null&&d.globalTop)&&![document,r.value.contentEl].includes(b)&&!r.value.contentEl.contains(b)){const u=Rt(r.value.contentEl);if(!u.length)return;const S=u[0],A=u[u.length-1];m===S?A.focus():S.focus()}}N&&R(()=>i.value&&e.retainFocus,c=>{c?document.addEventListener("focusin",l):document.removeEventListener("focusin",l)},{immediate:!0});function f(){var c;(c=r.value)!=null&&c.contentEl&&!r.value.contentEl.contains(document.activeElement)&&r.value.contentEl.focus({preventScroll:!0})}function v(){t("afterLeave")}return R(i,async c=>{var m;c||(await Q(),(m=r.value.activatorEl)==null||m.focus({preventScroll:!0}))}),Ve(()=>{const c=Re.filterProps(e),m=D({"aria-haspopup":"dialog","aria-expanded":String(i.value)},e.activatorProps),b=D({tabindex:-1},e.contentProps);return B(Re,D({ref:r,class:["v-dialog",{"v-dialog--fullscreen":e.fullscreen,"v-dialog--scrollable":e.scrollable},e.class],style:e.style},c,{modelValue:i.value,"onUpdate:modelValue":h=>i.value=h,"aria-modal":"true",activatorProps:m,contentProps:b,role:"dialog",onAfterEnter:f,onAfterLeave:v},a),{activator:o.activator,default:function(){for(var h=arguments.length,d=new Array(h),u=0;u<h;u++)d[u]=arguments[u];return B(kt,{root:"VDialog"},{default:()=>{var S;return[(S=o.default)==null?void 0:S.call(o,...d)]}})}})}),cn({},r)}}),fn={name:"ConfirmFooter",props:{confirmText:{type:String,required:!0},disabled:{type:Boolean,default:!1}},emits:["confirm","cancel"]},vn={class:"confirmFooter"};function dn(e,n,t,o,i,a){return Bt(),Ft("footer",vn,[B(pe,{class:"confirmButton",disabled:t.disabled,onClick:n[0]||(n[0]=r=>e.$emit("confirm"))},{default:xe(()=>[Se(Lt(t.confirmText),1)]),_:1},8,["disabled"]),B(pe,{class:"cancelButton",onClick:n[1]||(n[1]=r=>e.$emit("cancel"))},{default:xe(()=>[Se(" Cancel ")]),_:1})])}const hn=Tt(fn,[["render",dn],["__scopeId","data-v-24df1550"]]);export{yn as V,hn as _,tn as a,Xt as b,Yt as c,qe as d,Ut as e,cn as f,Re as g,en as m,$e as u};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{x as z,r as W,X as N,cj as fe,a as R,ck as $,dd as Ge,de as Ue,df as ge,dg as ne,dh as oe,di as ye,h as O,n as Q,dj as Xe,dk as J,dl as ae,dm as he,dn as be,C as V,a0 as we,d5 as Ye,w as ve,dp as Te,dq as Ke,dr as Je,z as de,i as Be,ds as Ee,dt as Ze,ap as D,du as Qe,d4 as et,s as j,ch as tt,f as Fe,p as nt,dv as ot,dw as at,dx as Le,E as rt,bd as lt,F as it,be as st,G as _e,as as Me,I as ct,J as ut,aw as ft,ax as vt,bg as dt,o as mt,cl as gt,d2 as yt,aq as ht,K as Ve,L as B,dy as bt,bj as wt,bh as Et,bk as xt,bi as St,M as pt,cn as Pt,dz as Ot,ar as At,cY as Ct,c8 as kt,c_ as Rt,_ as Tt,R as Bt,aB as Ft,T as xe,ae as Se,ai as Lt,ao as pe}from"./admin-drawer-panel-DffXGW1d.js";import{d as _t}from"./main-DB0zDxIA.js";function re(e,n){return{x:e.x+n.x,y:e.y+n.y}}function Mt(e,n){return{x:e.x-n.x,y:e.y-n.y}}function Pe(e,n){if(e.side==="top"||e.side==="bottom"){const{side:t,align:o}=e,i=o==="left"?0:o==="center"?n.width/2:o==="right"?n.width:o,a=t==="top"?0:t==="bottom"?n.height:t;return re({x:i,y:a},n)}else if(e.side==="left"||e.side==="right"){const{side:t,align:o}=e,i=t==="left"?0:t==="right"?n.width:t,a=o==="top"?0:o==="center"?n.height/2:o==="bottom"?n.height:o;return re({x:i,y:a},n)}return re({x:n.width/2,y:n.height/2},n)}const De={static:It,connected:$t},Vt=z({locationStrategy:{type:[String,Function],default:"static",validator:e=>typeof e=="function"||e in De},location:{type:String,default:"bottom"},origin:{type:String,default:"auto"},offset:[Number,String,Array]},"VOverlay-location-strategies");function Dt(e,n){const t=W({}),o=W();N&&fe(()=>!!(n.isActive.value&&e.locationStrategy),a=>{var r,l;R(()=>e.locationStrategy,a),$(()=>{window.removeEventListener("resize",i),o.value=void 0}),window.addEventListener("resize",i,{passive:!0}),typeof e.locationStrategy=="function"?o.value=(r=e.locationStrategy(n,e,t))==null?void 0:r.updateLocation:o.value=(l=De[e.locationStrategy](n,e,t))==null?void 0:l.updateLocation});function i(a){var r;(r=o.value)==null||r.call(o,a)}return{contentStyles:t,updateLocation:o}}function It(){}function Wt(e,n){n?e.style.removeProperty("left"):e.style.removeProperty("right");const t=Ye(e);return n?t.x+=parseFloat(e.style.right||0):t.x-=parseFloat(e.style.left||0),t.y-=parseFloat(e.style.top||0),t}function $t(e,n,t){(Array.isArray(e.target.value)||Ge(e.target.value))&&Object.assign(t.value,{position:"fixed",top:0,[e.isRtl.value?"right":"left"]:0});const{preferredAnchor:i,preferredOrigin:a}=Ue(()=>{const d=ge(n.location,e.isRtl.value),u=n.origin==="overlap"?d:n.origin==="auto"?ne(d):ge(n.origin,e.isRtl.value);return d.side===u.side&&d.align===oe(u).align?{preferredAnchor:ye(d),preferredOrigin:ye(u)}:{preferredAnchor:d,preferredOrigin:u}}),[r,l,f,v]=["minWidth","minHeight","maxWidth","maxHeight"].map(d=>O(()=>{const u=parseFloat(n[d]);return isNaN(u)?1/0:u})),c=O(()=>{if(Array.isArray(n.offset))return n.offset;if(typeof n.offset=="string"){const d=n.offset.split(" ").map(parseFloat);return d.length<2&&d.push(0),d}return typeof n.offset=="number"?[n.offset,0]:[0,0]});let m=!1;const b=new ResizeObserver(()=>{m&&h()});R([e.target,e.contentEl],(d,u)=>{let[S,A]=d,[p,w]=u;p&&!Array.isArray(p)&&b.unobserve(p),S&&!Array.isArray(S)&&b.observe(S),w&&b.unobserve(w),A&&b.observe(A)},{immediate:!0}),$(()=>{b.disconnect()});function h(){if(m=!1,requestAnimationFrame(()=>m=!0),!e.target.value||!e.contentEl.value)return;const d=Xe(e.target.value),u=Wt(e.contentEl.value,e.isRtl.value),S=J(e.contentEl.value),A=12;S.length||(S.push(document.documentElement),e.contentEl.value.style.top&&e.contentEl.value.style.left||(u.x-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-x")||0),u.y-=parseFloat(document.documentElement.style.getPropertyValue("--v-body-scroll-y")||0)));const p=S.reduce((P,E)=>{const g=E.getBoundingClientRect(),y=new ae({x:E===document.documentElement?0:g.x,y:E===document.documentElement?0:g.y,width:E.clientWidth,height:E.clientHeight});return P?new ae({x:Math.max(P.left,y.left),y:Math.max(P.top,y.top),width:Math.min(P.right,y.right)-Math.max(P.left,y.left),height:Math.min(P.bottom,y.bottom)-Math.max(P.top,y.top)}):y},void 0);p.x+=A,p.y+=A,p.width-=A*2,p.height-=A*2;let w={anchor:i.value,origin:a.value};function H(P){const E=new ae(u),g=Pe(P.anchor,d),y=Pe(P.origin,E);let{x:_,y:F}=Mt(g,y);switch(P.anchor.side){case"top":F-=c.value[0];break;case"bottom":F+=c.value[0];break;case"left":_-=c.value[0];break;case"right":_+=c.value[0];break}switch(P.anchor.align){case"top":F-=c.value[1];break;case"bottom":F+=c.value[1];break;case"left":_-=c.value[1];break;case"right":_+=c.value[1];break}return E.x+=_,E.y+=F,E.width=Math.min(E.width,f.value),E.height=Math.min(E.height,v.value),{overflows:be(E,p),x:_,y:F}}let L=0,C=0;const s={x:0,y:0},T={x:!1,y:!1};let ee=-1;for(;!(ee++>10);){const{x:P,y:E,overflows:g}=H(w);L+=P,C+=E,u.x+=P,u.y+=E;{const y=he(w.anchor),_=g.x.before||g.x.after,F=g.y.before||g.y.after;let G=!1;if(["x","y"].forEach(k=>{if(k==="x"&&_&&!T.x||k==="y"&&F&&!T.y){const M={anchor:{...w.anchor},origin:{...w.origin}},X=k==="x"?y==="y"?oe:ne:y==="y"?ne:oe;M.anchor=X(M.anchor),M.origin=X(M.origin);const{overflows:q}=H(M);(q[k].before<=g[k].before&&q[k].after<=g[k].after||q[k].before+q[k].after<(g[k].before+g[k].after)/2)&&(w=M,G=T[k]=!0)}}),G)continue}g.x.before&&(L+=g.x.before,u.x+=g.x.before),g.x.after&&(L-=g.x.after,u.x-=g.x.after),g.y.before&&(C+=g.y.before,u.y+=g.y.before),g.y.after&&(C-=g.y.after,u.y-=g.y.after);{const y=be(u,p);s.x=p.width-y.x.before-y.x.after,s.y=p.height-y.y.before-y.y.after,L+=y.x.before,u.x+=y.x.before,C+=y.y.before,u.y+=y.y.before}break}const te=he(w.anchor);return Object.assign(t.value,{"--v-overlay-anchor-origin":`${w.anchor.side} ${w.anchor.align}`,transformOrigin:`${w.origin.side} ${w.origin.align}`,top:V(le(C)),left:e.isRtl.value?void 0:V(le(L)),right:e.isRtl.value?V(le(-L)):void 0,minWidth:V(te==="y"?Math.min(r.value,d.width):r.value),maxWidth:V(Oe(we(s.x,r.value===1/0?0:r.value,f.value))),maxHeight:V(Oe(we(s.y,l.value===1/0?0:l.value,v.value)))}),{available:s,contentBox:u}}return R(()=>[i.value,a.value,n.offset,n.minWidth,n.minHeight,n.maxWidth,n.maxHeight],()=>h()),Q(()=>{const d=h();if(!d)return;const{available:u,contentBox:S}=d;S.height>u.y&&requestAnimationFrame(()=>{h(),requestAnimationFrame(()=>{h()})})}),{updateLocation:h}}function le(e){return Math.round(e*devicePixelRatio)/devicePixelRatio}function Oe(e){return Math.ceil(e*devicePixelRatio)/devicePixelRatio}let ce=!0;const Z=[];function Ht(e){!ce||Z.length?(Z.push(e),ue()):(ce=!1,e(),ue())}let Ae=-1;function ue(){cancelAnimationFrame(Ae),Ae=requestAnimationFrame(()=>{const e=Z.shift();e&&e(),Z.length?ue():ce=!0})}const K={none:null,close:zt,block:jt,reposition:Gt},Nt=z({scrollStrategy:{type:[String,Function],default:"block",validator:e=>typeof e=="function"||e in K}},"VOverlay-scroll-strategies");function qt(e,n){if(!N)return;let t;ve(async()=>{t==null||t.stop(),n.isActive.value&&e.scrollStrategy&&(t=Te(),await new Promise(o=>setTimeout(o)),t.active&&t.run(()=>{var o;typeof e.scrollStrategy=="function"?e.scrollStrategy(n,e,t):(o=K[e.scrollStrategy])==null||o.call(K,n,e,t)}))}),$(()=>{t==null||t.stop()})}function zt(e){function n(t){e.isActive.value=!1}Ie(e.targetEl.value??e.contentEl.value,n)}function jt(e,n){var r;const t=(r=e.root.value)==null?void 0:r.offsetParent,o=[...new Set([...J(e.targetEl.value,n.contained?t:void 0),...J(e.contentEl.value,n.contained?t:void 0)])].filter(l=>!l.classList.contains("v-overlay-scroll-blocked")),i=window.innerWidth-document.documentElement.offsetWidth,a=(l=>Ke(l)&&l)(t||document.documentElement);a&&e.root.value.classList.add("v-overlay--scroll-blocked"),o.forEach((l,f)=>{l.style.setProperty("--v-body-scroll-x",V(-l.scrollLeft)),l.style.setProperty("--v-body-scroll-y",V(-l.scrollTop)),l!==document.documentElement&&l.style.setProperty("--v-scrollbar-offset",V(i)),l.classList.add("v-overlay-scroll-blocked")}),$(()=>{o.forEach((l,f)=>{const v=parseFloat(l.style.getPropertyValue("--v-body-scroll-x")),c=parseFloat(l.style.getPropertyValue("--v-body-scroll-y")),m=l.style.scrollBehavior;l.style.scrollBehavior="auto",l.style.removeProperty("--v-body-scroll-x"),l.style.removeProperty("--v-body-scroll-y"),l.style.removeProperty("--v-scrollbar-offset"),l.classList.remove("v-overlay-scroll-blocked"),l.scrollLeft=-v,l.scrollTop=-c,l.style.scrollBehavior=m}),a&&e.root.value.classList.remove("v-overlay--scroll-blocked")})}function Gt(e,n,t){let o=!1,i=-1,a=-1;function r(l){Ht(()=>{var c,m;const f=performance.now();(m=(c=e.updateLocation).value)==null||m.call(c,l),o=(performance.now()-f)/(1e3/60)>2})}a=(typeof requestIdleCallback>"u"?l=>l():requestIdleCallback)(()=>{t.run(()=>{Ie(e.targetEl.value??e.contentEl.value,l=>{o?(cancelAnimationFrame(i),i=requestAnimationFrame(()=>{i=requestAnimationFrame(()=>{r(l)})})):r(l)})})}),$(()=>{typeof cancelIdleCallback<"u"&&cancelIdleCallback(a),cancelAnimationFrame(i)})}function Ie(e,n){const t=[document,...J(e)];t.forEach(o=>{o.addEventListener("scroll",n,{passive:!0})}),$(()=>{t.forEach(o=>{o.removeEventListener("scroll",n)})})}const Ut=Symbol.for("vuetify:v-menu"),Xt=z({closeDelay:[Number,String],openDelay:[Number,String]},"delay");function Yt(e,n){let t=()=>{};function o(r){t==null||t();const l=Number(r?e.openDelay:e.closeDelay);return new Promise(f=>{t=Je(l,()=>{n==null||n(r),f(r)})})}function i(){return o(!0)}function a(){return o(!1)}return{clearDelay:t,runOpenDelay:i,runCloseDelay:a}}const Kt=z({target:[String,Object],activator:[String,Object],activatorProps:{type:Object,default:()=>({})},openOnClick:{type:Boolean,default:void 0},openOnHover:Boolean,openOnFocus:{type:Boolean,default:void 0},closeOnContentClick:Boolean,...Xt()},"VOverlay-activator");function Jt(e,n){let{isActive:t,isTop:o}=n;const i=de("useActivator"),a=W();let r=!1,l=!1,f=!0;const v=O(()=>e.openOnFocus||e.openOnFocus==null&&e.openOnHover),c=O(()=>e.openOnClick||e.openOnClick==null&&!e.openOnHover&&!v.value),{runOpenDelay:m,runCloseDelay:b}=Yt(e,s=>{s===(e.openOnHover&&r||v.value&&l)&&!(e.openOnHover&&t.value&&!o.value)&&(t.value!==s&&(f=!0),t.value=s)}),h=W(),d={onClick:s=>{s.stopPropagation(),a.value=s.currentTarget||s.target,t.value||(h.value=[s.clientX,s.clientY]),t.value=!t.value},onMouseenter:s=>{var T;(T=s.sourceCapabilities)!=null&&T.firesTouchEvents||(r=!0,a.value=s.currentTarget||s.target,m())},onMouseleave:s=>{r=!1,b()},onFocus:s=>{et(s.target,":focus-visible")!==!1&&(l=!0,s.stopPropagation(),a.value=s.currentTarget||s.target,m())},onBlur:s=>{l=!1,s.stopPropagation(),b()}},u=O(()=>{const s={};return c.value&&(s.onClick=d.onClick),e.openOnHover&&(s.onMouseenter=d.onMouseenter,s.onMouseleave=d.onMouseleave),v.value&&(s.onFocus=d.onFocus,s.onBlur=d.onBlur),s}),S=O(()=>{const s={};if(e.openOnHover&&(s.onMouseenter=()=>{r=!0,m()},s.onMouseleave=()=>{r=!1,b()}),v.value&&(s.onFocusin=()=>{l=!0,m()},s.onFocusout=()=>{l=!1,b()}),e.closeOnContentClick){const T=Be(Ut,null);s.onClick=()=>{t.value=!1,T==null||T.closeParents()}}return s}),A=O(()=>{const s={};return e.openOnHover&&(s.onMouseenter=()=>{f&&(r=!0,f=!1,m())},s.onMouseleave=()=>{r=!1,b()}),s});R(o,s=>{s&&(e.openOnHover&&!r&&(!v.value||!l)||v.value&&!l&&(!e.openOnHover||!r))&&(t.value=!1)}),R(t,s=>{s||setTimeout(()=>{h.value=void 0})},{flush:"post"});const p=Ee();ve(()=>{p.value&&Q(()=>{a.value=p.el})});const w=Ee(),H=O(()=>e.target==="cursor"&&h.value?h.value:w.value?w.el:We(e.target,i)||a.value),L=O(()=>Array.isArray(H.value)?void 0:H.value);let C;return R(()=>!!e.activator,s=>{s&&N?(C=Te(),C.run(()=>{Zt(e,i,{activatorEl:a,activatorEvents:u})})):C&&C.stop()},{flush:"post",immediate:!0}),$(()=>{C==null||C.stop()}),{activatorEl:a,activatorRef:p,target:H,targetEl:L,targetRef:w,activatorEvents:u,contentEvents:S,scrimEvents:A}}function Zt(e,n,t){let{activatorEl:o,activatorEvents:i}=t;R(()=>e.activator,(f,v)=>{if(v&&f!==v){const c=l(v);c&&r(c)}f&&Q(()=>a())},{immediate:!0}),R(()=>e.activatorProps,()=>{a()}),$(()=>{r()});function a(){let f=arguments.length>0&&arguments[0]!==void 0?arguments[0]:l(),v=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e.activatorProps;f&&Ze(f,D(i.value,v))}function r(){let f=arguments.length>0&&arguments[0]!==void 0?arguments[0]:l(),v=arguments.length>1&&arguments[1]!==void 0?arguments[1]:e.activatorProps;f&&Qe(f,D(i.value,v))}function l(){let f=arguments.length>0&&arguments[0]!==void 0?arguments[0]:e.activator;const v=We(f,n);return o.value=(v==null?void 0:v.nodeType)===Node.ELEMENT_NODE?v:void 0,o.value}}function We(e,n){var o,i;if(!e)return;let t;if(e==="parent"){let a=(i=(o=n==null?void 0:n.proxy)==null?void 0:o.$el)==null?void 0:i.parentNode;for(;a!=null&&a.hasAttribute("data-no-activator");)a=a.parentNode;t=a}else typeof e=="string"?t=document.querySelector(e):"$el"in e?t=e.$el:t=e;return t}function Qt(){if(!N)return j(!1);const{ssr:e}=_t();if(e){const n=j(!1);return tt(()=>{n.value=!0}),n}else return j(!0)}const en=z({eager:Boolean},"lazy");function tn(e,n){const t=j(!1),o=O(()=>t.value||e.eager||n.value);R(n,()=>t.value=!0);function i(){e.eager||(t.value=!1)}return{isBooted:t,hasContent:o,onAfterLeave:i}}function $e(){const n=de("useScopeId").vnode.scopeId;return{scopeId:n?{[n]:""}:void 0}}const Ce=Symbol.for("vuetify:stack"),U=Fe([]);function nn(e,n,t){const o=de("useStack"),i=!t,a=Be(Ce,void 0),r=Fe({activeChildren:new Set});nt(Ce,r);const l=j(+n.value);fe(e,()=>{var m;const c=(m=U.at(-1))==null?void 0:m[1];l.value=c?c+10:+n.value,i&&U.push([o.uid,l.value]),a==null||a.activeChildren.add(o.uid),$(()=>{if(i){const b=ot(U).findIndex(h=>h[0]===o.uid);U.splice(b,1)}a==null||a.activeChildren.delete(o.uid)})});const f=j(!0);i&&ve(()=>{var m;const c=((m=U.at(-1))==null?void 0:m[0])===o.uid;setTimeout(()=>f.value=c)});const v=O(()=>!r.activeChildren.size);return{globalTop:at(f),localTop:v,stackStyles:O(()=>({zIndex:l.value}))}}function on(e){return{teleportTarget:O(()=>{const t=e.value;if(t===!0||!N)return;const o=t===!1?document.body:typeof t=="string"?document.querySelector(t):t;if(o==null)return;let i=o.querySelector(":scope > .v-overlay-container");return i||(i=document.createElement("div"),i.className="v-overlay-container",o.appendChild(i)),i})}}function an(){return!0}function He(e,n,t){if(!e||Ne(e,t)===!1)return!1;const o=Le(n);if(typeof ShadowRoot<"u"&&o instanceof ShadowRoot&&o.host===e.target)return!1;const i=(typeof t.value=="object"&&t.value.include||(()=>[]))();return i.push(n),!i.some(a=>a==null?void 0:a.contains(e.target))}function Ne(e,n){return(typeof n.value=="object"&&n.value.closeConditional||an)(e)}function rn(e,n,t){const o=typeof t.value=="function"?t.value:t.value.handler;n._clickOutside.lastMousedownWasOutside&&He(e,n,t)&&setTimeout(()=>{Ne(e,t)&&o&&o(e)},0)}function ke(e,n){const t=Le(e);n(document),typeof ShadowRoot<"u"&&t instanceof ShadowRoot&&n(t)}const ln={mounted(e,n){const t=i=>rn(i,e,n),o=i=>{e._clickOutside.lastMousedownWasOutside=He(i,e,n)};ke(e,i=>{i.addEventListener("click",t,!0),i.addEventListener("mousedown",o,!0)}),e._clickOutside||(e._clickOutside={lastMousedownWasOutside:!1}),e._clickOutside[n.instance.$.uid]={onClick:t,onMousedown:o}},unmounted(e,n){e._clickOutside&&(ke(e,t=>{var a;if(!t||!((a=e._clickOutside)!=null&&a[n.instance.$.uid]))return;const{onClick:o,onMousedown:i}=e._clickOutside[n.instance.$.uid];t.removeEventListener("click",o,!0),t.removeEventListener("mousedown",i,!0)}),delete e._clickOutside[n.instance.$.uid])}};function sn(e){const{modelValue:n,color:t,...o}=e;return B(Pt,{name:"fade-transition",appear:!0},{default:()=>[e.modelValue&&B("div",D({class:["v-overlay__scrim",e.color.backgroundColorClasses.value],style:e.color.backgroundColorStyles.value},o),null)]})}const qe=z({absolute:Boolean,attach:[Boolean,String,Object],closeOnBack:{type:Boolean,default:!0},contained:Boolean,contentClass:null,contentProps:null,disabled:Boolean,opacity:[Number,String],noClickAnimation:Boolean,modelValue:Boolean,persistent:Boolean,scrim:{type:[Boolean,String],default:!0},zIndex:{type:[Number,String],default:2e3},...Kt(),...rt(),...lt(),...en(),...Vt(),...Nt(),...it(),...st()},"VOverlay"),Re=_e()({name:"VOverlay",directives:{ClickOutside:ln},inheritAttrs:!1,props:{_disableGlobalStack:Boolean,...qe()},emits:{"click:outside":e=>!0,"update:modelValue":e=>!0,afterEnter:()=>!0,afterLeave:()=>!0},setup(e,n){let{slots:t,attrs:o,emit:i}=n;const a=Me(e,"modelValue"),r=O({get:()=>a.value,set:x=>{x&&e.disabled||(a.value=x)}}),{teleportTarget:l}=on(O(()=>e.attach||e.contained)),{themeClasses:f}=ct(e),{rtlClasses:v,isRtl:c}=ut(),{hasContent:m,onAfterLeave:b}=tn(e,r),h=ft(O(()=>typeof e.scrim=="string"?e.scrim:null)),{globalTop:d,localTop:u,stackStyles:S}=nn(r,vt(e,"zIndex"),e._disableGlobalStack),{activatorEl:A,activatorRef:p,target:w,targetEl:H,targetRef:L,activatorEvents:C,contentEvents:s,scrimEvents:T}=Jt(e,{isActive:r,isTop:u}),{dimensionStyles:ee}=dt(e),te=Qt(),{scopeId:P}=$e();R(()=>e.disabled,x=>{x&&(r.value=!1)});const E=W(),g=W(),y=W(),{contentStyles:_,updateLocation:F}=Dt(e,{isRtl:c,contentEl:y,target:w,isActive:r});qt(e,{root:E,contentEl:y,targetEl:H,isActive:r,updateLocation:F});function G(x){i("click:outside",x),e.persistent?Y():r.value=!1}function k(x){return r.value&&d.value&&(!e.scrim||x.target===g.value)}N&&R(r,x=>{x?window.addEventListener("keydown",M):window.removeEventListener("keydown",M)},{immediate:!0}),mt(()=>{N&&window.removeEventListener("keydown",M)});function M(x){var I,me;x.key==="Escape"&&d.value&&(e.persistent?Y():(r.value=!1,(I=y.value)!=null&&I.contains(document.activeElement)&&((me=A.value)==null||me.focus())))}const X=gt();fe(()=>e.closeOnBack,()=>{Ot(X,x=>{d.value&&r.value?(x(!1),e.persistent?Y():r.value=!1):x()})});const q=W();R(()=>r.value&&(e.absolute||e.contained)&&l.value==null,x=>{if(x){const I=yt(E.value);I&&I!==document.scrollingElement&&(q.value=I.scrollTop)}});function Y(){e.noClickAnimation||y.value&&ht(y.value,[{transformOrigin:"center"},{transform:"scale(1.03)"},{transformOrigin:"center"}],{duration:150,easing:At})}function ze(){i("afterEnter")}function je(){b(),i("afterLeave")}return Ve(()=>{var x;return B(pt,null,[(x=t.activator)==null?void 0:x.call(t,{isActive:r.value,targetRef:L,props:D({ref:p},C.value,e.activatorProps)}),te.value&&m.value&&B(bt,{disabled:!l.value,to:l.value},{default:()=>[B("div",D({class:["v-overlay",{"v-overlay--absolute":e.absolute||e.contained,"v-overlay--active":r.value,"v-overlay--contained":e.contained},f.value,v.value,e.class],style:[S.value,{"--v-overlay-opacity":e.opacity,top:V(q.value)},e.style],ref:E},P,o),[B(sn,D({color:h,modelValue:r.value&&!!e.scrim,ref:g},T.value),null),B(wt,{appear:!0,persisted:!0,transition:e.transition,target:w.value,onAfterEnter:ze,onAfterLeave:je},{default:()=>{var I;return[Et(B("div",D({ref:y,class:["v-overlay__content",e.contentClass],style:[ee.value,_.value]},s.value,e.contentProps),[(I=t.default)==null?void 0:I.call(t,{isActive:r})]),[[xt,r.value],[St("click-outside"),{handler:G,closeConditional:k,include:()=>[A.value]}]])]}})])]})])}),{activatorEl:A,scrimEl:g,target:w,animateClick:Y,contentEl:y,globalTop:d,localTop:u,updateLocation:F}}}),ie=Symbol("Forwarded refs");function se(e,n){let t=e;for(;t;){const o=Reflect.getOwnPropertyDescriptor(t,n);if(o)return o;t=Object.getPrototypeOf(t)}}function cn(e){for(var n=arguments.length,t=new Array(n>1?n-1:0),o=1;o<n;o++)t[o-1]=arguments[o];return e[ie]=t,new Proxy(e,{get(i,a){if(Reflect.has(i,a))return Reflect.get(i,a);if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const r of t)if(r.value&&Reflect.has(r.value,a)){const l=Reflect.get(r.value,a);return typeof l=="function"?l.bind(r.value):l}}},has(i,a){if(Reflect.has(i,a))return!0;if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const r of t)if(r.value&&Reflect.has(r.value,a))return!0;return!1},set(i,a,r){if(Reflect.has(i,a))return Reflect.set(i,a,r);if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const l of t)if(l.value&&Reflect.has(l.value,a))return Reflect.set(l.value,a,r);return!1},getOwnPropertyDescriptor(i,a){var l;const r=Reflect.getOwnPropertyDescriptor(i,a);if(r)return r;if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const f of t){if(!f.value)continue;const v=se(f.value,a)??("_"in f.value?se((l=f.value._)==null?void 0:l.setupState,a):void 0);if(v)return v}for(const f of t){const v=f.value&&f.value[ie];if(!v)continue;const c=v.slice();for(;c.length;){const m=c.shift(),b=se(m.value,a);if(b)return b;const h=m.value&&m.value[ie];h&&c.push(...h)}}}}})}const un=z({fullscreen:Boolean,retainFocus:{type:Boolean,default:!0},scrollable:Boolean,...qe({origin:"center center",scrollStrategy:"block",transition:{component:Ct},zIndex:2400})},"VDialog"),yn=_e()({name:"VDialog",props:un(),emits:{"update:modelValue":e=>!0,afterLeave:()=>!0},setup(e,n){let{emit:t,slots:o}=n;const i=Me(e,"modelValue"),{scopeId:a}=$e(),r=W();function l(c){var h,d;const m=c.relatedTarget,b=c.target;if(m!==b&&((h=r.value)!=null&&h.contentEl)&&((d=r.value)!=null&&d.globalTop)&&![document,r.value.contentEl].includes(b)&&!r.value.contentEl.contains(b)){const u=Rt(r.value.contentEl);if(!u.length)return;const S=u[0],A=u[u.length-1];m===S?A.focus():S.focus()}}N&&R(()=>i.value&&e.retainFocus,c=>{c?document.addEventListener("focusin",l):document.removeEventListener("focusin",l)},{immediate:!0});function f(){var c;(c=r.value)!=null&&c.contentEl&&!r.value.contentEl.contains(document.activeElement)&&r.value.contentEl.focus({preventScroll:!0})}function v(){t("afterLeave")}return R(i,async c=>{var m;c||(await Q(),(m=r.value.activatorEl)==null||m.focus({preventScroll:!0}))}),Ve(()=>{const c=Re.filterProps(e),m=D({"aria-haspopup":"dialog","aria-expanded":String(i.value)},e.activatorProps),b=D({tabindex:-1},e.contentProps);return B(Re,D({ref:r,class:["v-dialog",{"v-dialog--fullscreen":e.fullscreen,"v-dialog--scrollable":e.scrollable},e.class],style:e.style},c,{modelValue:i.value,"onUpdate:modelValue":h=>i.value=h,"aria-modal":"true",activatorProps:m,contentProps:b,role:"dialog",onAfterEnter:f,onAfterLeave:v},a),{activator:o.activator,default:function(){for(var h=arguments.length,d=new Array(h),u=0;u<h;u++)d[u]=arguments[u];return B(kt,{root:"VDialog"},{default:()=>{var S;return[(S=o.default)==null?void 0:S.call(o,...d)]}})}})}),cn({},r)}}),fn={name:"ConfirmFooter",props:{confirmText:{type:String,required:!0},disabled:{type:Boolean,default:!1}},emits:["confirm","cancel"]},vn={class:"confirmFooter"};function dn(e,n,t,o,i,a){return Bt(),Ft("footer",vn,[B(pe,{class:"confirmButton",disabled:t.disabled,onClick:n[0]||(n[0]=r=>e.$emit("confirm"))},{default:xe(()=>[Se(Lt(t.confirmText),1)]),_:1},8,["disabled"]),B(pe,{class:"cancelButton",onClick:n[1]||(n[1]=r=>e.$emit("cancel"))},{default:xe(()=>[Se(" Cancel ")]),_:1})])}const hn=Tt(fn,[["render",dn],["__scopeId","data-v-24df1550"]]);export{yn as V,hn as _,tn as a,Xt as b,Yt as c,qe as d,Ut as e,cn as f,Re as g,en as m,$e as u};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.colTime[data-v-b06bd477]{color:rgb(var(--v-theme-textDisabled))!important}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.colTime[data-v-b06bd477]{color:rgb(var(--v-theme-textDisabled))!important}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{N as r,b6 as m,cD as s,_ as n,R as i,aB as d,ae as c,ai as a,aG as u,aE as _}from"./admin-drawer-panel-DffXGW1d.js";import{u as f}from"./main-DB0zDxIA.js";const p={name:"DateTimeColumn",props:{dttm:{type:String,default:""}},data(){return{date:new Date(this.dttm)}},computed:{...r(f,{twentyFourHourTime:t=>t.settings.twentyFourHourTime}),formattedDate:function(){return m.format(this.date)},formattedTime:function(){return s(this.twentyFourHourTime).format(this.date)}},created(){}},T={key:0},l={class:"colTime"};function D(t,h,o,F,y,e){return o.dttm?(i(),d("div",T,[c(a(e.formattedDate)+" ",1),u("div",l,a(e.formattedTime),1)])):_("",!0)}const g=n(p,[["render",D],["__scopeId","data-v-b06bd477"]]);export{g as D};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{N as r,b6 as m,cD as s,_ as n,R as i,aB as d,ae as c,ai as a,aG as u,aE as _}from"./admin-drawer-panel-DffXGW1d.js";import{u as f}from"./main-DB0zDxIA.js";const p={name:"DateTimeColumn",props:{dttm:{type:String,default:""}},data(){return{date:new Date(this.dttm)}},computed:{...r(f,{twentyFourHourTime:t=>t.settings.twentyFourHourTime}),formattedDate:function(){return m.format(this.date)},formattedTime:function(){return s(this.twentyFourHourTime).format(this.date)}},created(){}},T={key:0},l={class:"colTime"};function D(t,h,o,F,y,e){return o.dttm?(i(),d("div",T,[c(a(e.formattedDate)+" ",1),u("div",l,a(e.formattedTime),1)])):_("",!0)}const g=n(p,[["render",D],["__scopeId","data-v-b06bd477"]]);export{g as D};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{x as I,r as v,h as L,u as F,w as j,cB as w,cR as O}from"./admin-drawer-panel-DffXGW1d.js";const x=(t,l,e)=>t==null||l==null?-1:t.toString().toLocaleLowerCase().indexOf(l.toString().toLocaleLowerCase()),A=I({customFilter:Function,customKeyFilter:Object,filterKeys:[Array,String],filterMode:{type:String,default:"intersection"},noFilter:Boolean},"filter");function S(t,l,e){var g;const f=[],s=(e==null?void 0:e.default)??x,m=e!=null&&e.filterKeys?w(e.filterKeys):!1,i=Object.keys((e==null?void 0:e.customKeyFilter)??{}).length;if(!(t!=null&&t.length))return f;e:for(let r=0;r<t.length;r++){const[a,M=a]=w(t[r]),y={},u={};let c=-1;if(l&&!(e!=null&&e.noFilter)){if(typeof a=="object"){const K=m||Object.keys(M);for(const n of K){const b=O(M,n),k=(g=e==null?void 0:e.customKeyFilter)==null?void 0:g[n];if(c=k?k(b,l,a):s(b,l,a),c!==-1&&c!==!1)k?y[n]=c:u[n]=c;else if((e==null?void 0:e.filterMode)==="every")continue e}}else c=s(a,l,a),c!==-1&&c!==!1&&(u.title=c);const h=Object.keys(u).length,d=Object.keys(y).length;if(!h&&!d||(e==null?void 0:e.filterMode)==="union"&&d!==i&&!h||(e==null?void 0:e.filterMode)==="intersection"&&(d!==i||!h))continue}f.push({index:r,matches:{...u,...y}})}return f}function B(t,l,e,f){const s=v([]),m=v(new Map),i=L(()=>f!=null&&f.transform?F(l).map(r=>[r,f.transform(r)]):F(l));j(()=>{const r=typeof e=="function"?e():F(e),a=typeof r!="string"&&typeof r!="number"?"":String(r),M=S(i.value,a,{customKeyFilter:{...t.customKeyFilter,...F(f==null?void 0:f.customKeyFilter)},default:t.customFilter,filterKeys:t.filterKeys,filterMode:t.filterMode,noFilter:t.noFilter}),y=F(l),u=[],c=new Map;M.forEach(h=>{let{index:d,matches:K}=h;const n=y[d];u.push(n),c.set(n.value,K)}),s.value=u,m.value=c});function g(r){return m.value.get(r.value)}return{filteredItems:s,filteredMatches:m,getMatches:g}}export{A as m,B as u};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{x as I,r as v,h as L,u as F,w as j,cB as w,cR as O}from"./admin-drawer-panel-DffXGW1d.js";const x=(t,l,e)=>t==null||l==null?-1:t.toString().toLocaleLowerCase().indexOf(l.toString().toLocaleLowerCase()),A=I({customFilter:Function,customKeyFilter:Object,filterKeys:[Array,String],filterMode:{type:String,default:"intersection"},noFilter:Boolean},"filter");function S(t,l,e){var g;const f=[],s=(e==null?void 0:e.default)??x,m=e!=null&&e.filterKeys?w(e.filterKeys):!1,i=Object.keys((e==null?void 0:e.customKeyFilter)??{}).length;if(!(t!=null&&t.length))return f;e:for(let r=0;r<t.length;r++){const[a,M=a]=w(t[r]),y={},u={};let c=-1;if(l&&!(e!=null&&e.noFilter)){if(typeof a=="object"){const K=m||Object.keys(M);for(const n of K){const b=O(M,n),k=(g=e==null?void 0:e.customKeyFilter)==null?void 0:g[n];if(c=k?k(b,l,a):s(b,l,a),c!==-1&&c!==!1)k?y[n]=c:u[n]=c;else if((e==null?void 0:e.filterMode)==="every")continue e}}else c=s(a,l,a),c!==-1&&c!==!1&&(u.title=c);const h=Object.keys(u).length,d=Object.keys(y).length;if(!h&&!d||(e==null?void 0:e.filterMode)==="union"&&d!==i&&!h||(e==null?void 0:e.filterMode)==="intersection"&&(d!==i||!h))continue}f.push({index:r,matches:{...u,...y}})}return f}function B(t,l,e,f){const s=v([]),m=v(new Map),i=L(()=>f!=null&&f.transform?F(l).map(r=>[r,f.transform(r)]):F(l));j(()=>{const r=typeof e=="function"?e():F(e),a=typeof r!="string"&&typeof r!="number"?"":String(r),M=S(i.value,a,{customKeyFilter:{...t.customKeyFilter,...F(f==null?void 0:f.customKeyFilter)},default:t.customFilter,filterKeys:t.filterKeys,filterMode:t.filterMode,noFilter:t.noFilter}),y=F(l),u=[],c=new Map;M.forEach(h=>{let{index:d,matches:K}=h;const n=y[d];u.push(n),c.set(n.value,K)}),s.value=u,m.value=c});function g(r){return m.value.get(r.value)}return{filteredItems:s,filteredMatches:m,getMatches:g}}export{A as m,B as u};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.flags-table[data-v-ae518dc0]{max-width:100vw!important;margin-bottom:24px}[data-v-ae518dc0] .tableCheckbox{height:40px}.nameCol[data-v-ae518dc0]{padding-top:.5em!important}.desc[data-v-ae518dc0]{margin-top:1em;margin-bottom:.5em;color:rgb(var(--v-theme-textSecondary))}
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.flags-table[data-v-ae518dc0]{max-width:100vw!important;margin-bottom:24px}[data-v-ae518dc0] .tableCheckbox{height:40px}.nameCol[data-v-ae518dc0]{padding-top:.5em!important}.desc[data-v-ae518dc0]{margin-top:1em;margin-bottom:.5em;color:rgb(var(--v-theme-textSecondary))}
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{A as T,c as h,a as v,b as I,_ as k,V}from"./VDataTableVirtual-BMondxto.js";import{N as w,t as m,O as S,_ as G,Q as c,R as A,aB as x,L as s,T as i,aF as D,aG as e,aK as j,aL as E,ae as p}from"./admin-drawer-panel-DffXGW1d.js";import{a as g}from"./main-DB0zDxIA.js";import{a as N}from"./VSlideGroup-BdgkaRxE.js";import{V as f,a as H}from"./VRadioGroup-DGplihzh.js";import"./confirm-footer-CIu2tkFD.js";import"./confirm-dialog-BoVvCI5y.js";import"./VSelect-DfV5vhqb.js";import"./VSelectionControl-DvHEDoJy.js";import"./VCheckboxBtn-CzTNt4cV.js";import"./VTable-TEvK4Tmn.js";import"./filter-BQ_FuhIp.js";const C=["name","userSet","librarySet","exclude"];Object.freeze(C);const _={name:"",userSet:[],librarySet:[],exclude:!1};Object.freeze(_);const L={name:"AdminGroupCreateUpdateInputs",components:{AdminRelationPicker:T},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{name:[t=>!!t||"Name is required",t=>!!t&&!this.names.has(t.trim())||"Name already used"]},row:{..._,...g.cloneDeep(this.oldRow)}}},computed:{...w(m,{groups:t=>t.groups,libraries:t=>t.libraries,users:t=>t.users}),names(){return this.nameSet(this.groups,"name",this.oldRow,!0)}},watch:{row:{handler(t){this.$emit("change",t)},deep:!0},oldRow:{handler(t){this.row=g.cloneDeep(t)},deep:!0}},methods:{...S(m,["nameSet"])},UPDATE_KEYS:C,EMPTY_ROW:_};function O(t,l,b,U,a,y){const d=h,u=c("AdminRelationPicker");return A(),x("div",null,[s(N,{modelValue:a.row.name,"onUpdate:modelValue":l[0]||(l[0]=n=>a.row.name=n),label:"Group Name",rules:a.rules.name,clearable:"",autofocus:""},null,8,["modelValue","rules"]),s(H,{inline:"",label:"Type","model-value":a.row.exclude,"hide-details":"auto","onUpdate:modelValue":l[1]||(l[1]=n=>a.row.exclude=n)},{default:i(()=>[s(f,{value:!1},{label:i(()=>[s(d,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),_:1}),s(f,{value:!0},{label:i(()=>[s(d,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),_:1})]),_:1},8,["model-value"]),s(u,{"model-value":a.row.userSet,label:"Users",objs:t.users,"title-key":"username","onUpdate:modelValue":l[2]||(l[2]=n=>a.row.userSet=n)},null,8,["model-value","objs"]),s(u,{"model-value":a.row.librarySet,label:"Libraries",objs:t.libraries,"title-key":"path","onUpdate:modelValue":l[3]||(l[3]=n=>a.row.librarySet=n)},null,8,["model-value","objs"])])}const P=G(L,[["render",O]]),B=180,z={name:"AdminGroupsTab",components:{AdminDeleteRowDialog:v,AdminCreateUpdateDialog:I,RelationChips:k,GroupChip:h},data(){return{lastUpdate:{pk:0,field:void 0},AdminGroupCreateUpdateInputs:D(P),GROUP_HELP_HEIGHT:B,headers:[{title:"Name",key:"name",align:"start"},{title:"Type",key:"exclude",align:"start"},{title:"Users",key:"userSet"},{title:"Libraries",key:"librarySet"},{title:"Actions",key:"actions",sortable:!1}]}},computed:{...w(m,{groups:t=>t.groups,libraries:t=>t.libraries,users:t=>t.users})},mounted(){this.loadTables(["User","Library","Group"])},methods:{...S(m,["loadTables"]),groupType(t){const l=t.exclude;return{name:l?"Exclude ":"Include",exclude:l}}}},o=t=>(j("data-v-6cb5b253"),t=t(),E(),t),F={class:"tabHeader"},K=o(()=>e("td",{class:"adminNoData",colspan:"100%"},"No groups",-1)),Y={id:"groupHelp"},q=o(()=>e("h3",null,"Group Logic",-1)),M=o(()=>e("p",null," A library in no groups is accessible to every user and non-users if those are enabled. ",-1)),Q=o(()=>e("p",null,[p(" A library with "),e("em",null,"any"),p(" Include groups is accessible "),e("em",null,"only"),p(" to users who are in those groups. ")],-1)),W=o(()=>e("p",null,[p(" A library with "),e("em",null,"any"),p(" Exclude groups is not accessible to Guest users but is acccessable to any logged in users that are not in the Exclude groups. ")],-1)),J=o(()=>e("p",null," If you have libraries added and you do not see them in your browser, check to see if the library and your user are in the same group. ",-1)),X={id:"groupTable"},Z=o(()=>e("thead",null,[e("tr",null,[e("th",null,"Library in Group Type"),e("th",null,"Guest"),e("th",null,"User Out of Group"),e("th",null,"User In Group")])],-1)),$=o(()=>e("tr",null,[e("td",null,"Not in a Group"),e("td",{class:"see"},"Can See"),e("td",{class:"see"},"Can See"),e("td",{class:"see"},"Can See")],-1)),ee=o(()=>e("td",{class:"hidden"},"Hidden",-1)),te=o(()=>e("td",{class:"hidden"},"Hidden",-1)),se=o(()=>e("td",{class:"see"},"Can See",-1)),oe=o(()=>e("td",{class:"hidden"},"Hidden",-1)),ae=o(()=>e("td",{class:"see"},"Can See",-1)),le=o(()=>e("td",{class:"hidden"},"Hidden",-1));function ne(t,l,b,U,a,y){const d=c("AdminCreateUpdateDialog"),u=h,n=k,R=c("AdminDeleteRowDialog");return A(),x("div",null,[e("header",F,[s(d,{table:"Group","max-width":"20em",inputs:a.AdminGroupCreateUpdateInputs},null,8,["inputs"])]),s(V,{class:"adminTable","fixed-header":"","item-value":"pk","item-title":"name",headers:a.headers,items:t.groups},{"no-data":i(()=>[K]),"item.exclude":i(({item:r})=>[s(u,{"group-type":"",item:y.groupType(r),"title-key":"name"},null,8,["item"])]),"item.userSet":i(({item:r})=>[s(n,{pks:r.userSet,objs:t.users,"title-key":"username"},null,8,["pks","objs"])]),"item.librarySet":i(({item:r})=>[s(n,{pks:r.librarySet,objs:t.libraries,"title-key":"path"},null,8,["pks","objs"])]),"item.actions":i(({item:r})=>[s(d,{table:"Group","old-row":r,"max-width":"20em",inputs:a.AdminGroupCreateUpdateInputs,size:"small",density:"compact"},null,8,["old-row","inputs"]),s(R,{table:"Group",pk:r.pk,name:r.name,size:"small",density:"compact"},null,8,["pk","name"])]),_:2},1032,["headers","items"]),e("div",Y,[q,M,Q,W,J,e("table",X,[Z,e("tbody",null,[$,e("tr",null,[e("td",null,[s(u,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),ee,te,se]),e("tr",null,[e("td",null,[s(u,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),oe,ae,le])])])])])}const fe=G(z,[["render",ne],["__scopeId","data-v-6cb5b253"]]);export{fe as default};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{A as T,c as h,a as v,b as I,_ as k,V}from"./VDataTableVirtual-BMondxto.js";import{N as w,t as m,O as S,_ as G,Q as c,R as A,aB as x,L as s,T as i,aF as D,aG as e,aK as j,aL as E,ae as p}from"./admin-drawer-panel-DffXGW1d.js";import{a as g}from"./main-DB0zDxIA.js";import{a as N}from"./VSlideGroup-BdgkaRxE.js";import{V as f,a as H}from"./VRadioGroup-DGplihzh.js";import"./confirm-footer-CIu2tkFD.js";import"./confirm-dialog-BoVvCI5y.js";import"./VSelect-DfV5vhqb.js";import"./VSelectionControl-DvHEDoJy.js";import"./VCheckboxBtn-CzTNt4cV.js";import"./VTable-TEvK4Tmn.js";import"./filter-BQ_FuhIp.js";const C=["name","userSet","librarySet","exclude"];Object.freeze(C);const _={name:"",userSet:[],librarySet:[],exclude:!1};Object.freeze(_);const L={name:"AdminGroupCreateUpdateInputs",components:{AdminRelationPicker:T},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{name:[t=>!!t||"Name is required",t=>!!t&&!this.names.has(t.trim())||"Name already used"]},row:{..._,...g.cloneDeep(this.oldRow)}}},computed:{...w(m,{groups:t=>t.groups,libraries:t=>t.libraries,users:t=>t.users}),names(){return this.nameSet(this.groups,"name",this.oldRow,!0)}},watch:{row:{handler(t){this.$emit("change",t)},deep:!0},oldRow:{handler(t){this.row=g.cloneDeep(t)},deep:!0}},methods:{...S(m,["nameSet"])},UPDATE_KEYS:C,EMPTY_ROW:_};function O(t,l,b,U,a,y){const d=h,u=c("AdminRelationPicker");return A(),x("div",null,[s(N,{modelValue:a.row.name,"onUpdate:modelValue":l[0]||(l[0]=n=>a.row.name=n),label:"Group Name",rules:a.rules.name,clearable:"",autofocus:""},null,8,["modelValue","rules"]),s(H,{inline:"",label:"Type","model-value":a.row.exclude,"hide-details":"auto","onUpdate:modelValue":l[1]||(l[1]=n=>a.row.exclude=n)},{default:i(()=>[s(f,{value:!1},{label:i(()=>[s(d,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),_:1}),s(f,{value:!0},{label:i(()=>[s(d,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),_:1})]),_:1},8,["model-value"]),s(u,{"model-value":a.row.userSet,label:"Users",objs:t.users,"title-key":"username","onUpdate:modelValue":l[2]||(l[2]=n=>a.row.userSet=n)},null,8,["model-value","objs"]),s(u,{"model-value":a.row.librarySet,label:"Libraries",objs:t.libraries,"title-key":"path","onUpdate:modelValue":l[3]||(l[3]=n=>a.row.librarySet=n)},null,8,["model-value","objs"])])}const P=G(L,[["render",O]]),B=180,z={name:"AdminGroupsTab",components:{AdminDeleteRowDialog:v,AdminCreateUpdateDialog:I,RelationChips:k,GroupChip:h},data(){return{lastUpdate:{pk:0,field:void 0},AdminGroupCreateUpdateInputs:D(P),GROUP_HELP_HEIGHT:B,headers:[{title:"Name",key:"name",align:"start"},{title:"Type",key:"exclude",align:"start"},{title:"Users",key:"userSet"},{title:"Libraries",key:"librarySet"},{title:"Actions",key:"actions",sortable:!1}]}},computed:{...w(m,{groups:t=>t.groups,libraries:t=>t.libraries,users:t=>t.users})},mounted(){this.loadTables(["User","Library","Group"])},methods:{...S(m,["loadTables"]),groupType(t){const l=t.exclude;return{name:l?"Exclude ":"Include",exclude:l}}}},o=t=>(j("data-v-6cb5b253"),t=t(),E(),t),F={class:"tabHeader"},K=o(()=>e("td",{class:"adminNoData",colspan:"100%"},"No groups",-1)),Y={id:"groupHelp"},q=o(()=>e("h3",null,"Group Logic",-1)),M=o(()=>e("p",null," A library in no groups is accessible to every user and non-users if those are enabled. ",-1)),Q=o(()=>e("p",null,[p(" A library with "),e("em",null,"any"),p(" Include groups is accessible "),e("em",null,"only"),p(" to users who are in those groups. ")],-1)),W=o(()=>e("p",null,[p(" A library with "),e("em",null,"any"),p(" Exclude groups is not accessible to Guest users but is acccessable to any logged in users that are not in the Exclude groups. ")],-1)),J=o(()=>e("p",null," If you have libraries added and you do not see them in your browser, check to see if the library and your user are in the same group. ",-1)),X={id:"groupTable"},Z=o(()=>e("thead",null,[e("tr",null,[e("th",null,"Library in Group Type"),e("th",null,"Guest"),e("th",null,"User Out of Group"),e("th",null,"User In Group")])],-1)),$=o(()=>e("tr",null,[e("td",null,"Not in a Group"),e("td",{class:"see"},"Can See"),e("td",{class:"see"},"Can See"),e("td",{class:"see"},"Can See")],-1)),ee=o(()=>e("td",{class:"hidden"},"Hidden",-1)),te=o(()=>e("td",{class:"hidden"},"Hidden",-1)),se=o(()=>e("td",{class:"see"},"Can See",-1)),oe=o(()=>e("td",{class:"hidden"},"Hidden",-1)),ae=o(()=>e("td",{class:"see"},"Can See",-1)),le=o(()=>e("td",{class:"hidden"},"Hidden",-1));function ne(t,l,b,U,a,y){const d=c("AdminCreateUpdateDialog"),u=h,n=k,R=c("AdminDeleteRowDialog");return A(),x("div",null,[e("header",F,[s(d,{table:"Group","max-width":"20em",inputs:a.AdminGroupCreateUpdateInputs},null,8,["inputs"])]),s(V,{class:"adminTable","fixed-header":"","item-value":"pk","item-title":"name",headers:a.headers,items:t.groups},{"no-data":i(()=>[K]),"item.exclude":i(({item:r})=>[s(u,{"group-type":"",item:y.groupType(r),"title-key":"name"},null,8,["item"])]),"item.userSet":i(({item:r})=>[s(n,{pks:r.userSet,objs:t.users,"title-key":"username"},null,8,["pks","objs"])]),"item.librarySet":i(({item:r})=>[s(n,{pks:r.librarySet,objs:t.libraries,"title-key":"path"},null,8,["pks","objs"])]),"item.actions":i(({item:r})=>[s(d,{table:"Group","old-row":r,"max-width":"20em",inputs:a.AdminGroupCreateUpdateInputs,size:"small",density:"compact"},null,8,["old-row","inputs"]),s(R,{table:"Group",pk:r.pk,name:r.name,size:"small",density:"compact"},null,8,["pk","name"])]),_:2},1032,["headers","items"]),e("div",Y,[q,M,Q,W,J,e("table",X,[Z,e("tbody",null,[$,e("tr",null,[e("td",null,[s(u,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),ee,te,se]),e("tr",null,[e("td",null,[s(u,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),oe,ae,le])])])])])}const fe=G(z,[["render",ne],["__scopeId","data-v-6cb5b253"]]);export{fe as default};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#groupHelp[data-v-6cb5b253]{margin-top:2em;margin-bottom:2em;color:rgb(var(--v-theme-textSecondary))}#groupTable[data-v-6cb5b253]{border:solid thin;margin-top:1em}#groupTable th[data-v-6cb5b253],#groupTable td[data-v-6cb5b253]{padding:.25em}.see[data-v-6cb5b253]{background-color:rgb(var(--v-theme-includeGroup))}.hidden[data-v-6cb5b253]{background-color:rgb(var(--v-theme-excludeGroup))}
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#groupHelp[data-v-6cb5b253]{margin-top:2em;margin-bottom:2em;color:rgb(var(--v-theme-textSecondary))}#groupTable[data-v-6cb5b253]{border:solid thin;margin-top:1em}#groupTable th[data-v-6cb5b253],#groupTable td[data-v-6cb5b253]{padding:.25em}.see[data-v-6cb5b253]{background-color:rgb(var(--v-theme-includeGroup))}.hidden[data-v-6cb5b253]{background-color:rgb(var(--v-theme-excludeGroup))}
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#httpCode[data-v-e215aa2c],#title[data-v-e215aa2c],#link[data-v-e215aa2c]{position:absolute;left:50%;transform:translate(-50%) translateY(-25%)}#httpCode[data-v-e215aa2c],#title[data-v-e215aa2c]{top:25%}#httpCode[data-v-e215aa2c]{z-index:100;padding-top:1em}#title[data-v-e215aa2c]{text-align:center;font-size:6vw;color:rgb(var(--v-theme-textDisabled));stroke:rgb(var(--v-theme-textDisabled));fill:rgb(var(--v-theme-textDisabled));opacity:25%}#link[data-v-e215aa2c]{bottom:50%}@media (max-width: 959.98px){#title[data-v-e215aa2c]{font-size:32vw}}
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#httpCode[data-v-e215aa2c],#title[data-v-e215aa2c],#link[data-v-e215aa2c]{position:absolute;left:50%;transform:translate(-50%) translateY(-25%)}#httpCode[data-v-e215aa2c],#title[data-v-e215aa2c]{top:25%}#httpCode[data-v-e215aa2c]{z-index:100;padding-top:1em}#title[data-v-e215aa2c]{text-align:center;font-size:6vw;color:rgb(var(--v-theme-textDisabled));stroke:rgb(var(--v-theme-textDisabled));fill:rgb(var(--v-theme-textDisabled));opacity:25%}#link[data-v-e215aa2c]{bottom:50%}@media (max-width: 959.98px){#title[data-v-e215aa2c]{font-size:32vw}}
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{_ as c,P as d,T as r,Q as i,R as p,aG as t,ai as a,L as _,aK as u,aL as l}from"./admin-drawer-panel-DffXGW1d.js";import{V as h}from"./VMain-8vjSGbNt.js";import"./main-DB0zDxIA.js";const n={400:"Bad Request",403:"Forbidden",404:"Page Not Found",500:"Server Error"};Object.freeze(n);const m={name:"HttpError",data(){return{}},computed:{code:function(){return+this.$route.params.code},title:function(){let e=n[this.code];return e||(e="Unknown Error"),e}}},f=e=>(u("data-v-e215aa2c"),e=e(),l(),e),k={id:"httpCode"},S={id:"title"},x=f(()=>t("h2",null,"Codex Home",-1));function E(e,I,v,B,C,o){const s=i("router-link");return p(),d(h,{id:"main"},{default:r(()=>[t("h1",k,a(o.code),1),t("h1",S,a(o.title),1),_(s,{id:"link",to:{name:"home"}},{default:r(()=>[x]),_:1})]),_:1})}const N=c(m,[["render",E],["__scopeId","data-v-e215aa2c"]]);export{N as default};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{_ as c,P as d,T as r,Q as i,R as p,aG as t,ai as a,L as _,aK as u,aL as l}from"./admin-drawer-panel-DffXGW1d.js";import{V as h}from"./VMain-8vjSGbNt.js";import"./main-DB0zDxIA.js";const n={400:"Bad Request",403:"Forbidden",404:"Page Not Found",500:"Server Error"};Object.freeze(n);const m={name:"HttpError",data(){return{}},computed:{code:function(){return+this.$route.params.code},title:function(){let e=n[this.code];return e||(e="Unknown Error"),e}}},f=e=>(u("data-v-e215aa2c"),e=e(),l(),e),k={id:"httpCode"},S={id:"title"},x=f(()=>t("h2",null,"Codex Home",-1));function E(e,I,v,B,C,o){const s=i("router-link");return p(),d(h,{id:"main"},{default:r(()=>[t("h1",k,a(o.code),1),t("h1",S,a(o.title),1),_(s,{id:"link",to:{name:"home"}},{default:r(()=>[x]),_:1})]),_:1})}const N=c(m,[["render",E],["__scopeId","data-v-e215aa2c"]]);export{N as default};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const r=function(e,t){navigator.clipboard.writeText(e).then(()=>(t.show=!0,setTimeout(()=>{t.show=!1},5e3),!0)).catch(console.warn)};function o(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.toLowerCase().replaceAll(/(?:^|\s|-)\S/g,t=>t.toUpperCase())}export{r as c,o as t};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const r=function(e,t){navigator.clipboard.writeText(e).then(()=>(t.show=!0,setTimeout(()=>{t.show=!1},5e3),!0)).catch(console.warn)};function o(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.toLowerCase().replaceAll(/(?:^|\s|-)\S/g,t=>t.toUpperCase())}export{r as c,o as t};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{_ as H}from"./confirm-dialog-BoVvCI5y.js";import{A as Q,a as J,b as X,_ as z,V as Z}from"./VDataTableVirtual-BMondxto.js";import{cs as ee,b2 as $,N as w,t as f,ad as te,_ as k,Q as b,R as c,aB as _,L as l,T as s,aG as r,ai as g,P as V,ae as d,ah as T,aE as A,M as B,aC as oe,aK as j,aL as N,ap as P,k as x,O as v,ak as le,a_ as re,ct as se,cu as ae,aF as ie,b8 as ne,cb as de,af as me}from"./admin-drawer-panel-DffXGW1d.js";import{D as W}from"./datetime-column-C3t430gN.js";import{V as D,a as E,b as R,c as O}from"./VExpansionPanels-CDS9qp1D.js";import{V as ue}from"./VTable-TEvK4Tmn.js";import{a as pe}from"./VSlideGroup-BdgkaRxE.js";import{a as S,u as ce}from"./main-DB0zDxIA.js";import{V as he}from"./VCombobox-BWrSBDP9.js";import{V as C}from"./VCheckbox-D7WF5wMC.js";import{V as U}from"./VCheckboxBtn-CzTNt4cV.js";import"./confirm-footer-CIu2tkFD.js";import"./VSelect-DfV5vhqb.js";import"./VSelectionControl-DvHEDoJy.js";import"./filter-BQ_FuhIp.js";const fe={name:"AdminFailedImportsPanel",components:{DateTimeColumn:W},data(){return{mdiBookAlert:ee,mdiOpenInNew:$}},computed:{...w(f,["failedImports"]),...te(f,["unseenFailedImports"])},created(){this.unseenFailedImports=!0}},y=e=>(j("data-v-bc6470a2"),e=e(),N(),e),be={key:0,id:"failedImports"},_e=y(()=>r("thead",null,[r("tr",null,[r("th",null,"Path"),r("th",null,"Created")])],-1)),ye={class:"dateCol"},ge=y(()=>r("h4",null,"Failed Imports Help",-1)),we=y(()=>r("p",null," These are Comic archives that have failed to import. This list is updated every time the library updates. You should probably review these files and fix or remove them. ",-1)),ke=y(()=>r("h4",null,"Fixing comics",-1)),Fe=y(()=>r("p",null,[d(" Try using the zip fixer to fix comics: "),r("code",{class:"cli"},[d(" cp problem-comic.cbz /somewhere/safe/problem-comic.cbz.backup"),r("br"),d(" zip -F problem-comic.cbz --out fixed.zip"),r("br"),d(" mv fixed.zip problem-comic.cbz ")]),d(" You may also try "),r("code",null,"zip -FF"),d(" to fix comics which uses a different (not necissarily better) algorithm. If you fix some imports, and Codex does not immediately detect the change, poll the library which contains the fixed comics. ")],-1)),ve=y(()=>r("h4",null,"Reporting Issues",-1)),Pe={href:"https://github.com/ajslater/codex/issues/",target:"_blank"},Ce=y(()=>r("code",null,"config/logs/codex.log",-1));function Ie(e,t,m,h,o,u){const i=b("DateTimeColumn");return e.failedImports&&e.failedImports.length>0?(c(),_("div",be,[l(O,null,{default:s(()=>[l(D,{id:"failedImportsPanel",onClick:t[0]||(t[0]=p=>e.unseenFailedImports=!1)},{default:s(()=>[l(E,null,{default:s(()=>[r("h4",null,"Failed Imports: "+g(e.failedImports.length),1),e.unseenFailedImports?(c(),V(T,{key:0,id:"failedImportsIcon",title:"New Failed Imports"},{default:s(()=>[d(g(o.mdiBookAlert),1)]),_:1})):A("",!0)]),_:1}),l(R,null,{default:s(()=>[l(ue,{class:"highlight-table"},{default:s(()=>[_e,r("tbody",null,[(c(!0),_(B,null,oe(e.failedImports,p=>(c(),_("tr",{key:`fi:${p.path}`},[r("td",null,g(p.path),1),r("td",ye,[l(i,{dttm:p.createdAt},null,8,["dttm"])])]))),128))])]),_:1}),l(O,null,{default:s(()=>[l(D,{id:"failedImportsHelp"},{default:s(()=>[l(E,null,{default:s(()=>[ge]),_:1}),l(R,null,{default:s(()=>[we,ke,Fe,ve,r("p",null,[d(" If the comic looks good to you, but still shows up as a failed import, it might be Codex's fault for not importing it correctly. Please file an "),r("a",Pe,[d("Issue Report"),l(T,{size:"small"},{default:s(()=>[d(g(o.mdiOpenInNew),1)]),_:1})]),d(" and include the stack trace from the logs at "),Ce,d(" if you can. ")])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])):A("",!0)}const Ve=k(fe,[["render",Ie],["__scopeId","data-v-bc6470a2"]]),Te={name:"TimeTextField",data(){return{FORMAT:"DDD HH:mm:SS",timeRules:[e=>/^(\d{1,3} )?([01]\d|2[0-3]):([0-5]\d):([0-5]\d)$/.test(e)||`Invalid time format ${this.FORMAT}`]}}};function Ae(e,t,m,h,o,u){return c(),V(pe,P({ref:"timeField",density:"compact",filled:"",hint:o.FORMAT,round:"",rules:o.timeRules},e.$attrs),null,16,["hint","rules"])}const K=k(Te,[["render",Ae]]),xe={name:"AdminServerFolderPicker",emits:["change","menu"],data(){return{path:"",originalPath:"",showHidden:!1,menuOpen:!1}},computed:{...w(f,{folders:e=>e.folderPicker.folders,rootFolder:e=>e.folderPicker.rootFolder}),...w(x,{formErrors:e=>e.form.errors}),appendOuterIcon(){return this.showHidden?this.mdiFolderHidden:this.mdiFolderOutline},showHiddenTooltipPrefix(){return this.showHidden?"Hide":"Show"}},watch:{menuOpen(e){e&&this.$emit("menu",e)}},created(){this.loadFolders().then(()=>(this.path=this.rootFolder,this.originalPath=this.rootFolder,!0)).catch(console.warn)},methods:{...v(f,["clearFolders","loadFolders"]),...v(x,["clearErrors"]),change(e){const t=e?e.startsWith("/")||e.startsWith("\\")?e:[this.rootFolder,e].join("/"):this.rootFolder,m=this.menuOpen;this.clearErrors(),this.loadFolders(t,this.showHidden).then(()=>{this.menuOpen=m;let h="";return this.formErrors.length===0&&(this.path=h=this.rootFolder),this.$emit("change",h)}).catch(console.warn)},onBlur(){this.menuOpen=!1,this.change(this.path)},onClear(){this.clearFolders(this.orignalPath).then(()=>this.change(this.orginalPath)).catch(console.error)},onKeyDownEnter(){this.change(this.path)},onItemClick(e){this.change(e)}}},De={id:"folderPicker"};function Ee(e,t,m,h,o,u){return c(),_("div",De,[l(he,P({modelValue:o.path,"onUpdate:modelValue":t[0]||(t[0]=i=>o.path=i),menu:o.menuOpen,"onUpdate:menu":t[1]||(t[1]=i=>o.menuOpen=i)},e.$attrs,{"aria-label":"Library folder",clearable:"","error-messages":e.formErrors,"full-width":"","hide-details":"auto",items:e.folders,"menu-props":{maxHeight:"370px"},"validate-on":"blur",variant:"filled",onBlur:u.onBlur,"onClick:clear":u.onClear,onKeydown:re(u.onKeyDownEnter,["enter"])}),{item:s(({item:i,props:p})=>[l(le,P(p,{title:i.title,value:i.value,onClick:F=>u.onItemClick(i.value)}),null,16,["title","value","onClick"])]),_:1},16,["modelValue","menu","error-messages","items","onBlur","onClick:clear","onKeydown"]),l(C,{modelValue:o.showHidden,"onUpdate:modelValue":t[2]||(t[2]=i=>o.showHidden=i),density:"compact",class:"showHidden","hide-details":"auto",label:"Show Hidden Folders"},null,8,["modelValue"])])}const Re=k(xe,[["render",Ee],["__scopeId","data-v-3cf2705f"]]),M=["events","poll","pollEvery","groups"];Object.freeze(M);const I={path:"",events:!0,poll:!0,pollEvery:"01:00:00",groups:[]};Object.freeze(I);const L=(e,t)=>(e=e.replaceAll("\\","/"),t=t.replaceAll("\\","/"),e.endsWith("/")||(e+="/"),t.endsWith("/")||(t+="/"),t.startsWith(e)),Oe={name:"AdminLibraryCreateUpdateInputs",components:{AdminRelationPicker:Q,AdminServerFolderPicker:Re,TimeTextField:K},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{path:[e=>!!e||"Path is required",e=>{if(!e)return!1;for(const t of this.paths){if(L(t,e))return"Path is a child of an existing library";if(L(e,t))return"Path is a parent of an existing library"}return!0}]},row:S.cloneDeep(this.oldRow||I)}},computed:{...w(f,{groups:e=>e.groups,libraries:e=>e.libraries}),paths(){return this.nameSet(this.libraries,"path",this.oldRow,!1)}},watch:{row:{handler(e){this.$emit("change",e)},deep:!0},oldRow:{handler(e){this.row=S.cloneDeep(e)},deep:!0}},methods:{...v(f,["nameSet"])},UPDATE_KEYS:M,EMPTY_ROW:I},Se={key:1};function Ue(e,t,m,h,o,u){const i=b("AdminServerFolderPicker"),p=K,F=b("AdminRelationPicker");return c(),_(B,null,[m.oldRow?(c(),_("div",Se,g(m.oldRow.path),1)):(c(),V(i,{key:0,rules:o.rules.path,autofocus:"",label:"Library Folder",onChange:t[0]||(t[0]=n=>o.row.path=n)},null,8,["rules"])),l(C,{modelValue:o.row.events,"onUpdate:modelValue":t[1]||(t[1]=n=>o.row.events=n),"hide-details":"auto",hint:"Update Codex instantly when the filesystem changes",label:"Watch Filesystem Events","persistent-hint":!0},null,8,["modelValue"]),l(C,{modelValue:o.row.poll,"onUpdate:modelValue":t[2]||(t[2]=n=>o.row.poll=n),label:"Poll Filesystem Periodically","hide-details":"auto",hint:"Periodically poll the library for changes","persistent-hint":!0},null,8,["modelValue"]),l(p,{modelValue:o.row.pollEvery,"onUpdate:modelValue":t[3]||(t[3]=n=>o.row.pollEvery=n),label:"Poll Every",disabled:!o.row.poll},null,8,["modelValue","disabled"]),l(F,{modelValue:o.row.groups,"onUpdate:modelValue":t[4]||(t[4]=n=>o.row.groups=n),label:"Groups",objs:e.groups,"group-type":"","title-key":"name"},null,8,["modelValue","objs"])],64)}const Le=k(Oe,[["render",Ue]]),He={name:"AdminLibrariesTab",components:{AdminDeleteRowDialog:J,AdminFailedImportsPanel:Ve,AdminCreateUpdateDialog:X,RelationChips:z,ConfirmDialog:H,DateTimeColumn:W},data(){return{lastUpdate:{pk:0,field:void 0},mdiDatabaseClockOutline:se,mdiDatabaseSyncOutline:ae,mdiOpenInNew:$,AdminLibraryCreateUpdateInputs:ie(Le),headers:[{title:"Path",key:"path",align:"start"},{title:"Watch File Events",key:"events"},{title:"Poll Files Periodically",key:"poll"},{title:"Poll Every",key:"pollEvery"},{title:"Last Poll",key:"lastPoll"},{title:"Groups",key:"groups"},{title:"Actions",key:"actions",sortable:!1}]}},computed:{...w(f,{groups:e=>e.groups,libraries:e=>e.libraries,formErrors:e=>e.form.errors}),...w(ce,{twentyFourHourTime:e=>e.settings.twentyFourHourTime})},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...v(f,["updateRow","clearErrors","librarianTask","loadTables"]),formatDateTime:e=>e?ne(e,(void 0).twentyFourHourTime):"",changeCol(e,t,m){this.lastUpdate.pk=e,this.lastUpdate.field=t;const h={[t]:m};this.updateRow("Library",e,h)},getFormErrors(e,t){if(e===this.lastUpdate.pk&&t===this.lastUpdate.field)return this.formErrors},poll(e){this.librarianTask("poll",`Poll Library ${e}`,e)},forcePoll(e){this.librarianTask("poll_force",`Force Poll Library ${e}`,e)}}},ze=e=>(j("data-v-4107b305"),e=e(),N(),e),$e={class:"tabHeader"},Be=ze(()=>r("td",{class:"adminNoData",colspan:"100%"}," Add a Library to start using Codex ",-1));function je(e,t,m,h,o,u){const i=b("AdminCreateUpdateDialog"),p=b("DateTimeColumn"),F=z,n=H,G=b("AdminDeleteRowDialog"),Y=b("AdminFailedImportsPanel");return c(),_("div",null,[r("header",$e,[l(i,{table:"Library",inputs:o.AdminLibraryCreateUpdateInputs},null,8,["inputs"])]),l(Z,{class:"adminTable","fixed-header":"","item-value":"pk",headers:o.headers,items:e.libraries,"sort-by":[{key:"path",order:"asc"}]},{"no-data":s(()=>[Be]),"item.events":s(({item:a})=>[l(U,{"model-value":a.events,disabled:""},null,8,["model-value"])]),"item.poll":s(({item:a})=>[l(U,{"model-value":a.poll,disabled:""},null,8,["model-value"])]),"item.pollEvery":s(({item:a})=>[r("span",{class:me({disabled:!a.poll})},g(a.pollEvery),3)]),"item.lastPoll":s(({item:a})=>[l(p,{dttm:a.lastPoll},null,8,["dttm"])]),"item.groups":s(({item:a})=>[l(F,{pks:a.groups,objs:e.groups,"group-type":"","title-key":"name"},null,8,["pks","objs"])]),"item.actions":s(({item:a})=>[l(n,{icon:o.mdiDatabaseClockOutline,"title-text":"Poll for updated comics","object-name":a.path,"confirm-text":"Poll Library",size:"small",density:"compact",onConfirm:q=>u.poll(a.pk)},null,8,["icon","object-name","onConfirm"]),l(n,{icon:o.mdiDatabaseSyncOutline,"title-text":"Force update every comic","object-name":a.path,"confirm-text":"Force Update",size:"small",density:"compact",onConfirm:q=>u.forcePoll(a.pk)},null,8,["icon","object-name","onConfirm"]),l(i,{table:"Library","old-row":a,inputs:o.AdminLibraryCreateUpdateInputs,"max-width":"22em",size:"small",density:"compact"},null,8,["old-row","inputs"]),l(G,{table:"Library",pk:a.pk,name:a.path,size:"small",density:"compact"},null,8,["pk","name"])]),_:2},1032,["headers","items"]),l(de,null,{default:s(()=>[l(Y)]),_:1})])}const rt=k(He,[["render",je],["__scopeId","data-v-4107b305"]]);export{rt as default};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{_ as H}from"./confirm-dialog-BoVvCI5y.js";import{A as Q,a as J,b as X,_ as z,V as Z}from"./VDataTableVirtual-BMondxto.js";import{cs as ee,b2 as $,N as w,t as f,ad as te,_ as k,Q as b,R as c,aB as _,L as l,T as s,aG as r,ai as g,P as V,ae as d,ah as T,aE as A,M as B,aC as oe,aK as j,aL as N,ap as P,k as x,O as v,ak as le,a_ as re,ct as se,cu as ae,aF as ie,b8 as ne,cb as de,af as me}from"./admin-drawer-panel-DffXGW1d.js";import{D as W}from"./datetime-column-C3t430gN.js";import{V as D,a as E,b as R,c as O}from"./VExpansionPanels-CDS9qp1D.js";import{V as ue}from"./VTable-TEvK4Tmn.js";import{a as pe}from"./VSlideGroup-BdgkaRxE.js";import{a as S,u as ce}from"./main-DB0zDxIA.js";import{V as he}from"./VCombobox-BWrSBDP9.js";import{V as C}from"./VCheckbox-D7WF5wMC.js";import{V as U}from"./VCheckboxBtn-CzTNt4cV.js";import"./confirm-footer-CIu2tkFD.js";import"./VSelect-DfV5vhqb.js";import"./VSelectionControl-DvHEDoJy.js";import"./filter-BQ_FuhIp.js";const fe={name:"AdminFailedImportsPanel",components:{DateTimeColumn:W},data(){return{mdiBookAlert:ee,mdiOpenInNew:$}},computed:{...w(f,["failedImports"]),...te(f,["unseenFailedImports"])},created(){this.unseenFailedImports=!0}},y=e=>(j("data-v-bc6470a2"),e=e(),N(),e),be={key:0,id:"failedImports"},_e=y(()=>r("thead",null,[r("tr",null,[r("th",null,"Path"),r("th",null,"Created")])],-1)),ye={class:"dateCol"},ge=y(()=>r("h4",null,"Failed Imports Help",-1)),we=y(()=>r("p",null," These are Comic archives that have failed to import. This list is updated every time the library updates. You should probably review these files and fix or remove them. ",-1)),ke=y(()=>r("h4",null,"Fixing comics",-1)),Fe=y(()=>r("p",null,[d(" Try using the zip fixer to fix comics: "),r("code",{class:"cli"},[d(" cp problem-comic.cbz /somewhere/safe/problem-comic.cbz.backup"),r("br"),d(" zip -F problem-comic.cbz --out fixed.zip"),r("br"),d(" mv fixed.zip problem-comic.cbz ")]),d(" You may also try "),r("code",null,"zip -FF"),d(" to fix comics which uses a different (not necissarily better) algorithm. If you fix some imports, and Codex does not immediately detect the change, poll the library which contains the fixed comics. ")],-1)),ve=y(()=>r("h4",null,"Reporting Issues",-1)),Pe={href:"https://github.com/ajslater/codex/issues/",target:"_blank"},Ce=y(()=>r("code",null,"config/logs/codex.log",-1));function Ie(e,t,m,h,o,u){const i=b("DateTimeColumn");return e.failedImports&&e.failedImports.length>0?(c(),_("div",be,[l(O,null,{default:s(()=>[l(D,{id:"failedImportsPanel",onClick:t[0]||(t[0]=p=>e.unseenFailedImports=!1)},{default:s(()=>[l(E,null,{default:s(()=>[r("h4",null,"Failed Imports: "+g(e.failedImports.length),1),e.unseenFailedImports?(c(),V(T,{key:0,id:"failedImportsIcon",title:"New Failed Imports"},{default:s(()=>[d(g(o.mdiBookAlert),1)]),_:1})):A("",!0)]),_:1}),l(R,null,{default:s(()=>[l(ue,{class:"highlight-table"},{default:s(()=>[_e,r("tbody",null,[(c(!0),_(B,null,oe(e.failedImports,p=>(c(),_("tr",{key:`fi:${p.path}`},[r("td",null,g(p.path),1),r("td",ye,[l(i,{dttm:p.createdAt},null,8,["dttm"])])]))),128))])]),_:1}),l(O,null,{default:s(()=>[l(D,{id:"failedImportsHelp"},{default:s(()=>[l(E,null,{default:s(()=>[ge]),_:1}),l(R,null,{default:s(()=>[we,ke,Fe,ve,r("p",null,[d(" If the comic looks good to you, but still shows up as a failed import, it might be Codex's fault for not importing it correctly. Please file an "),r("a",Pe,[d("Issue Report"),l(T,{size:"small"},{default:s(()=>[d(g(o.mdiOpenInNew),1)]),_:1})]),d(" and include the stack trace from the logs at "),Ce,d(" if you can. ")])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])):A("",!0)}const Ve=k(fe,[["render",Ie],["__scopeId","data-v-bc6470a2"]]),Te={name:"TimeTextField",data(){return{FORMAT:"DDD HH:mm:SS",timeRules:[e=>/^(\d{1,3} )?([01]\d|2[0-3]):([0-5]\d):([0-5]\d)$/.test(e)||`Invalid time format ${this.FORMAT}`]}}};function Ae(e,t,m,h,o,u){return c(),V(pe,P({ref:"timeField",density:"compact",filled:"",hint:o.FORMAT,round:"",rules:o.timeRules},e.$attrs),null,16,["hint","rules"])}const K=k(Te,[["render",Ae]]),xe={name:"AdminServerFolderPicker",emits:["change","menu"],data(){return{path:"",originalPath:"",showHidden:!1,menuOpen:!1}},computed:{...w(f,{folders:e=>e.folderPicker.folders,rootFolder:e=>e.folderPicker.rootFolder}),...w(x,{formErrors:e=>e.form.errors}),appendOuterIcon(){return this.showHidden?this.mdiFolderHidden:this.mdiFolderOutline},showHiddenTooltipPrefix(){return this.showHidden?"Hide":"Show"}},watch:{menuOpen(e){e&&this.$emit("menu",e)}},created(){this.loadFolders().then(()=>(this.path=this.rootFolder,this.originalPath=this.rootFolder,!0)).catch(console.warn)},methods:{...v(f,["clearFolders","loadFolders"]),...v(x,["clearErrors"]),change(e){const t=e?e.startsWith("/")||e.startsWith("\\")?e:[this.rootFolder,e].join("/"):this.rootFolder,m=this.menuOpen;this.clearErrors(),this.loadFolders(t,this.showHidden).then(()=>{this.menuOpen=m;let h="";return this.formErrors.length===0&&(this.path=h=this.rootFolder),this.$emit("change",h)}).catch(console.warn)},onBlur(){this.menuOpen=!1,this.change(this.path)},onClear(){this.clearFolders(this.orignalPath).then(()=>this.change(this.orginalPath)).catch(console.error)},onKeyDownEnter(){this.change(this.path)},onItemClick(e){this.change(e)}}},De={id:"folderPicker"};function Ee(e,t,m,h,o,u){return c(),_("div",De,[l(he,P({modelValue:o.path,"onUpdate:modelValue":t[0]||(t[0]=i=>o.path=i),menu:o.menuOpen,"onUpdate:menu":t[1]||(t[1]=i=>o.menuOpen=i)},e.$attrs,{"aria-label":"Library folder",clearable:"","error-messages":e.formErrors,"full-width":"","hide-details":"auto",items:e.folders,"menu-props":{maxHeight:"370px"},"validate-on":"blur",variant:"filled",onBlur:u.onBlur,"onClick:clear":u.onClear,onKeydown:re(u.onKeyDownEnter,["enter"])}),{item:s(({item:i,props:p})=>[l(le,P(p,{title:i.title,value:i.value,onClick:F=>u.onItemClick(i.value)}),null,16,["title","value","onClick"])]),_:1},16,["modelValue","menu","error-messages","items","onBlur","onClick:clear","onKeydown"]),l(C,{modelValue:o.showHidden,"onUpdate:modelValue":t[2]||(t[2]=i=>o.showHidden=i),density:"compact",class:"showHidden","hide-details":"auto",label:"Show Hidden Folders"},null,8,["modelValue"])])}const Re=k(xe,[["render",Ee],["__scopeId","data-v-3cf2705f"]]),M=["events","poll","pollEvery","groups"];Object.freeze(M);const I={path:"",events:!0,poll:!0,pollEvery:"01:00:00",groups:[]};Object.freeze(I);const L=(e,t)=>(e=e.replaceAll("\\","/"),t=t.replaceAll("\\","/"),e.endsWith("/")||(e+="/"),t.endsWith("/")||(t+="/"),t.startsWith(e)),Oe={name:"AdminLibraryCreateUpdateInputs",components:{AdminRelationPicker:Q,AdminServerFolderPicker:Re,TimeTextField:K},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{path:[e=>!!e||"Path is required",e=>{if(!e)return!1;for(const t of this.paths){if(L(t,e))return"Path is a child of an existing library";if(L(e,t))return"Path is a parent of an existing library"}return!0}]},row:S.cloneDeep(this.oldRow||I)}},computed:{...w(f,{groups:e=>e.groups,libraries:e=>e.libraries}),paths(){return this.nameSet(this.libraries,"path",this.oldRow,!1)}},watch:{row:{handler(e){this.$emit("change",e)},deep:!0},oldRow:{handler(e){this.row=S.cloneDeep(e)},deep:!0}},methods:{...v(f,["nameSet"])},UPDATE_KEYS:M,EMPTY_ROW:I},Se={key:1};function Ue(e,t,m,h,o,u){const i=b("AdminServerFolderPicker"),p=K,F=b("AdminRelationPicker");return c(),_(B,null,[m.oldRow?(c(),_("div",Se,g(m.oldRow.path),1)):(c(),V(i,{key:0,rules:o.rules.path,autofocus:"",label:"Library Folder",onChange:t[0]||(t[0]=n=>o.row.path=n)},null,8,["rules"])),l(C,{modelValue:o.row.events,"onUpdate:modelValue":t[1]||(t[1]=n=>o.row.events=n),"hide-details":"auto",hint:"Update Codex instantly when the filesystem changes",label:"Watch Filesystem Events","persistent-hint":!0},null,8,["modelValue"]),l(C,{modelValue:o.row.poll,"onUpdate:modelValue":t[2]||(t[2]=n=>o.row.poll=n),label:"Poll Filesystem Periodically","hide-details":"auto",hint:"Periodically poll the library for changes","persistent-hint":!0},null,8,["modelValue"]),l(p,{modelValue:o.row.pollEvery,"onUpdate:modelValue":t[3]||(t[3]=n=>o.row.pollEvery=n),label:"Poll Every",disabled:!o.row.poll},null,8,["modelValue","disabled"]),l(F,{modelValue:o.row.groups,"onUpdate:modelValue":t[4]||(t[4]=n=>o.row.groups=n),label:"Groups",objs:e.groups,"group-type":"","title-key":"name"},null,8,["modelValue","objs"])],64)}const Le=k(Oe,[["render",Ue]]),He={name:"AdminLibrariesTab",components:{AdminDeleteRowDialog:J,AdminFailedImportsPanel:Ve,AdminCreateUpdateDialog:X,RelationChips:z,ConfirmDialog:H,DateTimeColumn:W},data(){return{lastUpdate:{pk:0,field:void 0},mdiDatabaseClockOutline:se,mdiDatabaseSyncOutline:ae,mdiOpenInNew:$,AdminLibraryCreateUpdateInputs:ie(Le),headers:[{title:"Path",key:"path",align:"start"},{title:"Watch File Events",key:"events"},{title:"Poll Files Periodically",key:"poll"},{title:"Poll Every",key:"pollEvery"},{title:"Last Poll",key:"lastPoll"},{title:"Groups",key:"groups"},{title:"Actions",key:"actions",sortable:!1}]}},computed:{...w(f,{groups:e=>e.groups,libraries:e=>e.libraries,formErrors:e=>e.form.errors}),...w(ce,{twentyFourHourTime:e=>e.settings.twentyFourHourTime})},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...v(f,["updateRow","clearErrors","librarianTask","loadTables"]),formatDateTime:e=>e?ne(e,(void 0).twentyFourHourTime):"",changeCol(e,t,m){this.lastUpdate.pk=e,this.lastUpdate.field=t;const h={[t]:m};this.updateRow("Library",e,h)},getFormErrors(e,t){if(e===this.lastUpdate.pk&&t===this.lastUpdate.field)return this.formErrors},poll(e){this.librarianTask("poll",`Poll Library ${e}`,e)},forcePoll(e){this.librarianTask("poll_force",`Force Poll Library ${e}`,e)}}},ze=e=>(j("data-v-4107b305"),e=e(),N(),e),$e={class:"tabHeader"},Be=ze(()=>r("td",{class:"adminNoData",colspan:"100%"}," Add a Library to start using Codex ",-1));function je(e,t,m,h,o,u){const i=b("AdminCreateUpdateDialog"),p=b("DateTimeColumn"),F=z,n=H,G=b("AdminDeleteRowDialog"),Y=b("AdminFailedImportsPanel");return c(),_("div",null,[r("header",$e,[l(i,{table:"Library",inputs:o.AdminLibraryCreateUpdateInputs},null,8,["inputs"])]),l(Z,{class:"adminTable","fixed-header":"","item-value":"pk",headers:o.headers,items:e.libraries,"sort-by":[{key:"path",order:"asc"}]},{"no-data":s(()=>[Be]),"item.events":s(({item:a})=>[l(U,{"model-value":a.events,disabled:""},null,8,["model-value"])]),"item.poll":s(({item:a})=>[l(U,{"model-value":a.poll,disabled:""},null,8,["model-value"])]),"item.pollEvery":s(({item:a})=>[r("span",{class:me({disabled:!a.poll})},g(a.pollEvery),3)]),"item.lastPoll":s(({item:a})=>[l(p,{dttm:a.lastPoll},null,8,["dttm"])]),"item.groups":s(({item:a})=>[l(F,{pks:a.groups,objs:e.groups,"group-type":"","title-key":"name"},null,8,["pks","objs"])]),"item.actions":s(({item:a})=>[l(n,{icon:o.mdiDatabaseClockOutline,"title-text":"Poll for updated comics","object-name":a.path,"confirm-text":"Poll Library",size:"small",density:"compact",onConfirm:q=>u.poll(a.pk)},null,8,["icon","object-name","onConfirm"]),l(n,{icon:o.mdiDatabaseSyncOutline,"title-text":"Force update every comic","object-name":a.path,"confirm-text":"Force Update",size:"small",density:"compact",onConfirm:q=>u.forcePoll(a.pk)},null,8,["icon","object-name","onConfirm"]),l(i,{table:"Library","old-row":a,inputs:o.AdminLibraryCreateUpdateInputs,"max-width":"22em",size:"small",density:"compact"},null,8,["old-row","inputs"]),l(G,{table:"Library",pk:a.pk,name:a.path,size:"small",density:"compact"},null,8,["pk","name"])]),_:2},1032,["headers","items"]),l(de,null,{default:s(()=>[l(Y)]),_:1})])}const rt=k(He,[["render",je],["__scopeId","data-v-4107b305"]]);export{rt as default};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.cli[data-v-bc6470a2]{display:block;margin-left:2em}#failedImports[data-v-bc6470a2]{margin-top:60px}#failedImportsIcon[data-v-bc6470a2]{padding-left:.25em;color:rgb(var(--v-theme-error))!important}#failedImportsHelp[data-v-bc6470a2]{color:rgb(var(--v-theme-textSecondary))}h4[data-v-bc6470a2]{padding-top:.5em}a[data-v-bc6470a2],a>.v-icon[data-v-bc6470a2]{color:rgb(var(--v-theme-primary))!important}a[data-v-bc6470a2]:hover,a:hover>.v-icon[data-v-bc6470a2]{color:rgb(var(--v-theme-textPrimary))!important}a.v-btn>.v-icon[data-v-bc6470a2]{color:rgb(var(--v-theme-textPrimary))}#folderPicker[data-v-3cf2705f]{border-radius:5px;background-color:rgb(var(--v-theme-surface))}[data-v-3cf2705f] .showHidden .v-label{color:rgb(var(--v-theme-textSecondary))}.disabled[data-v-4107b305]{color:rgb(var(--v-theme-textDisabled))!important}
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.cli[data-v-bc6470a2]{display:block;margin-left:2em}#failedImports[data-v-bc6470a2]{margin-top:60px}#failedImportsIcon[data-v-bc6470a2]{padding-left:.25em;color:rgb(var(--v-theme-error))!important}#failedImportsHelp[data-v-bc6470a2]{color:rgb(var(--v-theme-textSecondary))}h4[data-v-bc6470a2]{padding-top:.5em}a[data-v-bc6470a2],a>.v-icon[data-v-bc6470a2]{color:rgb(var(--v-theme-primary))!important}a[data-v-bc6470a2]:hover,a:hover>.v-icon[data-v-bc6470a2]{color:rgb(var(--v-theme-textPrimary))!important}a.v-btn>.v-icon[data-v-bc6470a2]{color:rgb(var(--v-theme-textPrimary))}#folderPicker[data-v-3cf2705f]{border-radius:5px;background-color:rgb(var(--v-theme-surface))}[data-v-3cf2705f] .showHidden .v-label{color:rgb(var(--v-theme-textSecondary))}.disabled[data-v-4107b305]{color:rgb(var(--v-theme-textDisabled))!important}
|
|
Binary file
|