codex 1.7.14__py3-none-any.whl → 1.8.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.

Files changed (1142) hide show
  1. codex/__init__.py +6 -1
  2. codex/applications/lifespan.py +16 -12
  3. codex/asgi.py +1 -2
  4. codex/choices/admin.py +64 -60
  5. codex/choices/browser.py +7 -10
  6. codex/choices/choices_to_json.py +21 -9
  7. codex/choices/search.py +133 -0
  8. codex/choices/statii.py +40 -0
  9. codex/librarian/bookmark/bookmarkd.py +56 -17
  10. codex/librarian/bookmark/latest_version.py +65 -0
  11. codex/librarian/bookmark/tasks.py +13 -2
  12. codex/librarian/bookmark/update.py +1 -1
  13. codex/librarian/bookmark/user_active.py +2 -3
  14. codex/librarian/covers/coverd.py +4 -1
  15. codex/librarian/covers/create.py +31 -22
  16. codex/librarian/covers/path.py +1 -1
  17. codex/librarian/covers/purge.py +22 -22
  18. codex/librarian/covers/status.py +37 -6
  19. codex/librarian/covers/tasks.py +2 -1
  20. codex/librarian/cron/crond.py +5 -3
  21. codex/librarian/librariand.py +59 -84
  22. codex/librarian/notifier/notifierd.py +8 -3
  23. codex/librarian/restarter/__init__.py +1 -0
  24. codex/librarian/restarter/restarter.py +55 -0
  25. codex/librarian/restarter/status.py +32 -0
  26. codex/librarian/restarter/tasks.py +15 -0
  27. codex/librarian/scribe/__init__.py +1 -0
  28. codex/librarian/scribe/importer/__init__.py +1 -0
  29. codex/librarian/scribe/importer/const.py +369 -0
  30. codex/librarian/scribe/importer/create/__init__.py +37 -0
  31. codex/librarian/scribe/importer/create/comics.py +172 -0
  32. codex/librarian/scribe/importer/create/const.py +131 -0
  33. codex/librarian/scribe/importer/create/covers.py +123 -0
  34. codex/librarian/scribe/importer/create/folders.py +98 -0
  35. codex/librarian/scribe/importer/create/foreign_keys.py +253 -0
  36. codex/librarian/scribe/importer/create/link_fks.py +73 -0
  37. codex/librarian/scribe/importer/delete/__init__.py +28 -0
  38. codex/librarian/scribe/importer/delete/comics.py +68 -0
  39. codex/librarian/scribe/importer/delete/covers.py +37 -0
  40. codex/librarian/scribe/importer/delete/folders.py +33 -0
  41. codex/librarian/scribe/importer/failed/__init__.py +1 -0
  42. codex/librarian/scribe/importer/failed/create.py +97 -0
  43. codex/librarian/scribe/importer/failed/failed.py +54 -0
  44. codex/librarian/scribe/importer/failed/query.py +103 -0
  45. codex/librarian/scribe/importer/finish.py +70 -0
  46. codex/librarian/scribe/importer/importer.py +31 -0
  47. codex/librarian/scribe/importer/init.py +338 -0
  48. codex/librarian/scribe/importer/link/__init__.py +15 -0
  49. codex/librarian/scribe/importer/link/const.py +31 -0
  50. codex/librarian/scribe/importer/link/covers.py +70 -0
  51. codex/librarian/scribe/importer/link/delete.py +106 -0
  52. codex/librarian/scribe/importer/link/many_to_many.py +88 -0
  53. codex/librarian/scribe/importer/link/prepare.py +132 -0
  54. codex/librarian/scribe/importer/link/sum.py +19 -0
  55. codex/librarian/scribe/importer/moved/__init__.py +52 -0
  56. codex/librarian/scribe/importer/moved/comics.py +125 -0
  57. codex/librarian/scribe/importer/moved/covers.py +88 -0
  58. codex/librarian/scribe/importer/moved/folders.py +205 -0
  59. codex/librarian/scribe/importer/query/__init__.py +44 -0
  60. codex/librarian/scribe/importer/query/covers.py +55 -0
  61. codex/librarian/scribe/importer/query/filters.py +61 -0
  62. codex/librarian/scribe/importer/query/foreign_keys.py +203 -0
  63. codex/librarian/scribe/importer/query/links.py +29 -0
  64. codex/librarian/scribe/importer/query/links_fk.py +99 -0
  65. codex/librarian/scribe/importer/query/links_m2m.py +102 -0
  66. codex/librarian/scribe/importer/query/update_comics.py +59 -0
  67. codex/librarian/scribe/importer/query/update_fks.py +140 -0
  68. codex/librarian/scribe/importer/read/__init__.py +14 -0
  69. codex/librarian/scribe/importer/read/aggregate_path.py +110 -0
  70. codex/librarian/scribe/importer/read/const.py +144 -0
  71. codex/librarian/scribe/importer/read/extract.py +128 -0
  72. codex/librarian/scribe/importer/read/folders.py +37 -0
  73. codex/librarian/scribe/importer/read/foreign_keys.py +145 -0
  74. codex/librarian/scribe/importer/read/many_to_many.py +237 -0
  75. codex/librarian/scribe/importer/search/__init__.py +34 -0
  76. codex/librarian/scribe/importer/search/const.py +50 -0
  77. codex/librarian/scribe/importer/search/prepare.py +85 -0
  78. codex/librarian/scribe/importer/search/sync_m2m.py +86 -0
  79. codex/librarian/scribe/importer/search/update.py +273 -0
  80. codex/librarian/scribe/importer/statii/__init__.py +21 -0
  81. codex/librarian/scribe/importer/statii/create.py +67 -0
  82. codex/librarian/scribe/importer/statii/delete.py +39 -0
  83. codex/librarian/scribe/importer/statii/failed.py +50 -0
  84. codex/librarian/scribe/importer/statii/link.py +27 -0
  85. codex/librarian/scribe/importer/statii/moved.py +39 -0
  86. codex/librarian/scribe/importer/statii/query.py +46 -0
  87. codex/librarian/scribe/importer/statii/read.py +30 -0
  88. codex/librarian/scribe/importer/statii/search.py +28 -0
  89. codex/librarian/scribe/importer/status.py +9 -0
  90. codex/librarian/scribe/importer/tasks.py +49 -0
  91. codex/librarian/scribe/janitor/__init__.py +1 -0
  92. codex/librarian/scribe/janitor/adopt_folders.py +81 -0
  93. codex/librarian/scribe/janitor/cleanup.py +199 -0
  94. codex/librarian/scribe/janitor/failed_imports.py +27 -0
  95. codex/librarian/scribe/janitor/integrity.py +375 -0
  96. codex/librarian/scribe/janitor/janitor.py +133 -0
  97. codex/librarian/scribe/janitor/scheduled_time.py +13 -0
  98. codex/librarian/scribe/janitor/status.py +152 -0
  99. codex/librarian/scribe/janitor/tasks.py +71 -0
  100. codex/librarian/scribe/janitor/update.py +88 -0
  101. codex/librarian/scribe/janitor/vacuum.py +53 -0
  102. codex/librarian/scribe/lazy_importer.py +51 -0
  103. codex/librarian/scribe/priority.py +69 -0
  104. codex/librarian/scribe/scribed.py +130 -0
  105. codex/librarian/scribe/search/__init__.py +1 -0
  106. codex/librarian/scribe/search/handler.py +28 -0
  107. codex/librarian/scribe/search/optimize.py +30 -0
  108. codex/librarian/scribe/search/remove.py +44 -0
  109. codex/librarian/scribe/search/status.py +66 -0
  110. codex/librarian/scribe/search/sync.py +398 -0
  111. codex/librarian/scribe/search/tasks.py +28 -0
  112. codex/librarian/scribe/status.py +21 -0
  113. codex/librarian/scribe/tasks.py +32 -0
  114. codex/librarian/scribe/timestamp_update.py +135 -0
  115. codex/librarian/status.py +76 -0
  116. codex/librarian/status_controller.py +196 -0
  117. codex/librarian/tasks.py +0 -10
  118. codex/librarian/telemeter/scheduled_time.py +11 -4
  119. codex/librarian/telemeter/stats.py +0 -2
  120. codex/librarian/telemeter/tasks.py +3 -1
  121. codex/librarian/telemeter/telemeter.py +17 -11
  122. codex/librarian/threads.py +148 -0
  123. codex/librarian/watchdog/const.py +139 -0
  124. codex/librarian/watchdog/db_snapshot.py +16 -10
  125. codex/librarian/watchdog/dir_snapshot_diff.py +19 -1
  126. codex/librarian/watchdog/emitter.py +140 -124
  127. codex/librarian/watchdog/event_batcherd.py +134 -88
  128. codex/librarian/watchdog/events.py +22 -211
  129. codex/librarian/watchdog/handlers.py +203 -0
  130. codex/librarian/watchdog/memory.py +56 -0
  131. codex/librarian/watchdog/observers.py +89 -55
  132. codex/librarian/watchdog/status.py +18 -5
  133. codex/librarian/watchdog/tasks.py +2 -1
  134. codex/librarian/worker.py +32 -0
  135. codex/middleware.py +6 -8
  136. codex/migrations/0011_library_groups_and_metadata_changes.py +2 -1
  137. codex/migrations/0013_int_issue_count_longer_charfields.py +2 -1
  138. codex/migrations/0023_rename_credit_creator_and_more.py +2 -1
  139. codex/migrations/0026_comicbox_1.py +9 -9
  140. codex/migrations/0034_comicbox2.py +792 -0
  141. codex/models/__init__.py +1 -0
  142. codex/models/admin.py +14 -22
  143. codex/models/base.py +21 -2
  144. codex/models/comic.py +80 -43
  145. codex/models/fields.py +81 -0
  146. codex/models/functions.py +8 -2
  147. codex/models/groups.py +99 -34
  148. codex/models/identifier.py +79 -0
  149. codex/models/library.py +17 -3
  150. codex/models/named.py +52 -55
  151. codex/models/paths.py +16 -12
  152. codex/models/query.py +7 -5
  153. codex/run.py +12 -18
  154. codex/serializers/admin/groups.py +3 -0
  155. codex/serializers/admin/libraries.py +13 -1
  156. codex/serializers/admin/stats.py +5 -4
  157. codex/serializers/admin/tasks.py +3 -5
  158. codex/serializers/admin/users.py +9 -3
  159. codex/serializers/auth.py +13 -6
  160. codex/serializers/browser/choices.py +35 -18
  161. codex/serializers/browser/filters.py +7 -5
  162. codex/serializers/browser/metadata.py +12 -10
  163. codex/serializers/browser/mixins.py +6 -8
  164. codex/serializers/browser/mtime.py +6 -2
  165. codex/serializers/browser/page.py +8 -3
  166. codex/serializers/browser/settings.py +35 -5
  167. codex/serializers/fields/__init__.py +2 -2
  168. codex/serializers/fields/auth.py +4 -5
  169. codex/serializers/fields/base.py +16 -0
  170. codex/serializers/fields/browser.py +15 -31
  171. codex/serializers/fields/group.py +11 -8
  172. codex/serializers/fields/reader.py +14 -10
  173. codex/serializers/fields/sanitized.py +2 -0
  174. codex/serializers/fields/session.py +3 -8
  175. codex/serializers/fields/stats.py +3 -5
  176. codex/serializers/fields/vuetify.py +21 -10
  177. codex/serializers/mixins.py +42 -0
  178. codex/serializers/models/base.py +1 -1
  179. codex/serializers/models/comic.py +6 -2
  180. codex/serializers/models/named.py +62 -37
  181. codex/serializers/models/pycountry.py +0 -3
  182. codex/serializers/opds/v1.py +6 -6
  183. codex/serializers/opds/v2/feed.py +2 -4
  184. codex/serializers/opds/v2/publication.py +14 -14
  185. codex/serializers/opds/v2/unused.py +2 -0
  186. codex/serializers/reader.py +52 -31
  187. codex/serializers/route.py +6 -4
  188. codex/serializers/settings.py +6 -6
  189. codex/settings/__init__.py +423 -1
  190. codex/signals/django_signals.py +2 -35
  191. codex/signals/os_signals.py +4 -5
  192. codex/startup/__init__.py +180 -0
  193. codex/startup/db.py +130 -0
  194. codex/startup/logger_init.py +45 -0
  195. codex/startup/registration.py +13 -0
  196. codex/static_root/assets/VCheckbox-BD4eUg4g.3d575d473135.js +1 -0
  197. codex/static_root/assets/VCheckbox-BD4eUg4g.3d575d473135.js.br +0 -0
  198. codex/static_root/assets/VCheckbox-BD4eUg4g.3d575d473135.js.gz +0 -0
  199. codex/static_root/assets/VCheckbox-BD4eUg4g.js +1 -0
  200. codex/static_root/assets/VCheckbox-BD4eUg4g.js.br +0 -0
  201. codex/static_root/assets/VCheckbox-BD4eUg4g.js.gz +0 -0
  202. codex/static_root/assets/VCheckboxBtn-BwlWS4y9.b40b085f1d67.js +1 -0
  203. codex/static_root/assets/VCheckboxBtn-BwlWS4y9.b40b085f1d67.js.br +0 -0
  204. codex/static_root/assets/VCheckboxBtn-BwlWS4y9.b40b085f1d67.js.gz +0 -0
  205. codex/static_root/assets/VCheckboxBtn-BwlWS4y9.js +1 -0
  206. codex/static_root/assets/VCheckboxBtn-BwlWS4y9.js.br +0 -0
  207. codex/static_root/assets/VCheckboxBtn-BwlWS4y9.js.gz +0 -0
  208. codex/static_root/assets/VCombobox-DyLCrBiS.3e13940cf92c.js +1 -0
  209. codex/static_root/assets/VCombobox-DyLCrBiS.3e13940cf92c.js.br +0 -0
  210. codex/static_root/assets/VCombobox-DyLCrBiS.3e13940cf92c.js.gz +0 -0
  211. codex/static_root/assets/VCombobox-DyLCrBiS.js +1 -0
  212. codex/static_root/assets/VCombobox-DyLCrBiS.js.br +0 -0
  213. codex/static_root/assets/VCombobox-DyLCrBiS.js.gz +0 -0
  214. codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css +1 -0
  215. codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css.br +0 -0
  216. codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css.gz +0 -0
  217. codex/static_root/assets/VDialog-CpWjrJ0R.css +1 -0
  218. codex/static_root/assets/VDialog-CpWjrJ0R.css.br +0 -0
  219. codex/static_root/assets/VDialog-CpWjrJ0R.css.gz +0 -0
  220. codex/static_root/assets/VDialog-N7erUTvb.ea9a9b29fb16.js +1 -0
  221. codex/static_root/assets/VDialog-N7erUTvb.ea9a9b29fb16.js.br +0 -0
  222. codex/static_root/assets/VDialog-N7erUTvb.ea9a9b29fb16.js.gz +0 -0
  223. codex/static_root/assets/VDialog-N7erUTvb.js +1 -0
  224. codex/static_root/assets/VDialog-N7erUTvb.js.br +0 -0
  225. codex/static_root/assets/VDialog-N7erUTvb.js.gz +0 -0
  226. codex/static_root/assets/VDivider-DFsQRi0x.d079d29e9764.js +1 -0
  227. codex/static_root/assets/VDivider-DFsQRi0x.d079d29e9764.js.br +0 -0
  228. codex/static_root/assets/VDivider-DFsQRi0x.d079d29e9764.js.gz +0 -0
  229. codex/static_root/assets/VDivider-DFsQRi0x.js +1 -0
  230. codex/static_root/assets/VDivider-DFsQRi0x.js.br +0 -0
  231. codex/static_root/assets/VDivider-DFsQRi0x.js.gz +0 -0
  232. codex/static_root/assets/VExpansionPanels-D_1ryJs5.c67ae2359ced.js +1 -0
  233. codex/static_root/assets/VExpansionPanels-D_1ryJs5.c67ae2359ced.js.br +0 -0
  234. codex/static_root/assets/VExpansionPanels-D_1ryJs5.c67ae2359ced.js.gz +0 -0
  235. codex/static_root/assets/VExpansionPanels-D_1ryJs5.js +1 -0
  236. codex/static_root/assets/VExpansionPanels-D_1ryJs5.js.br +0 -0
  237. codex/static_root/assets/VExpansionPanels-D_1ryJs5.js.gz +0 -0
  238. codex/static_root/assets/VForm-Bhq1UjFg.c9c80e741c2a.js +1 -0
  239. codex/static_root/assets/VForm-Bhq1UjFg.c9c80e741c2a.js.br +0 -0
  240. codex/static_root/assets/VForm-Bhq1UjFg.c9c80e741c2a.js.gz +0 -0
  241. codex/static_root/assets/VForm-Bhq1UjFg.js +1 -0
  242. codex/static_root/assets/VForm-Bhq1UjFg.js.br +0 -0
  243. codex/static_root/assets/VForm-Bhq1UjFg.js.gz +0 -0
  244. codex/static_root/assets/VRadioGroup-IJTnZQT5.731c3f06cee5.js +1 -0
  245. codex/static_root/assets/VRadioGroup-IJTnZQT5.731c3f06cee5.js.br +0 -0
  246. codex/static_root/assets/VRadioGroup-IJTnZQT5.731c3f06cee5.js.gz +0 -0
  247. codex/static_root/assets/VRadioGroup-IJTnZQT5.js +1 -0
  248. codex/static_root/assets/VRadioGroup-IJTnZQT5.js.br +0 -0
  249. codex/static_root/assets/VRadioGroup-IJTnZQT5.js.gz +0 -0
  250. codex/static_root/assets/VSelect-C857NCMc.567124f78bac.js +1 -0
  251. codex/static_root/assets/VSelect-C857NCMc.567124f78bac.js.br +0 -0
  252. codex/static_root/assets/VSelect-C857NCMc.567124f78bac.js.gz +0 -0
  253. codex/static_root/assets/VSelect-C857NCMc.js +1 -0
  254. codex/static_root/assets/VSelect-C857NCMc.js.br +0 -0
  255. codex/static_root/assets/VSelect-C857NCMc.js.gz +0 -0
  256. codex/static_root/assets/VSelect-DQPZyfSb.57477277e7dd.css +1 -0
  257. codex/static_root/assets/VSelect-DQPZyfSb.57477277e7dd.css.br +0 -0
  258. codex/static_root/assets/VSelect-DQPZyfSb.57477277e7dd.css.gz +0 -0
  259. codex/static_root/assets/VSelect-DQPZyfSb.css +1 -0
  260. codex/static_root/assets/VSelect-DQPZyfSb.css.br +0 -0
  261. codex/static_root/assets/VSelect-DQPZyfSb.css.gz +0 -0
  262. codex/static_root/assets/VSelectionControl-BUBBamEF.2e9636e900d8.js +1 -0
  263. codex/static_root/assets/VSelectionControl-BUBBamEF.2e9636e900d8.js.br +0 -0
  264. codex/static_root/assets/VSelectionControl-BUBBamEF.2e9636e900d8.js.gz +0 -0
  265. codex/static_root/assets/VSelectionControl-BUBBamEF.js +1 -0
  266. codex/static_root/assets/VSelectionControl-BUBBamEF.js.br +0 -0
  267. codex/static_root/assets/VSelectionControl-BUBBamEF.js.gz +0 -0
  268. codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css +1 -0
  269. codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css.br +0 -0
  270. codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css.gz +0 -0
  271. codex/static_root/assets/VTable-CQyv0wyO.css +1 -0
  272. codex/static_root/assets/VTable-CQyv0wyO.css.br +0 -0
  273. codex/static_root/assets/VTable-CQyv0wyO.css.gz +0 -0
  274. codex/static_root/assets/VTable-CwYzcGki.ddd22f371cdb.js +1 -0
  275. codex/static_root/assets/VTable-CwYzcGki.ddd22f371cdb.js.br +0 -0
  276. codex/static_root/assets/VTable-CwYzcGki.ddd22f371cdb.js.gz +0 -0
  277. codex/static_root/assets/VTable-CwYzcGki.js +1 -0
  278. codex/static_root/assets/VTable-CwYzcGki.js.br +0 -0
  279. codex/static_root/assets/VTable-CwYzcGki.js.gz +0 -0
  280. codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css +1 -0
  281. codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css.br +0 -0
  282. codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css.gz +0 -0
  283. codex/static_root/assets/VWindowItem-ChYLiXSE.css +1 -0
  284. codex/static_root/assets/VWindowItem-ChYLiXSE.css.br +0 -0
  285. codex/static_root/assets/VWindowItem-ChYLiXSE.css.gz +0 -0
  286. codex/static_root/assets/VWindowItem-WsjNvbu_.0c1a85eba03e.js +1 -0
  287. codex/static_root/assets/VWindowItem-WsjNvbu_.0c1a85eba03e.js.br +0 -0
  288. codex/static_root/assets/VWindowItem-WsjNvbu_.0c1a85eba03e.js.gz +0 -0
  289. codex/static_root/assets/VWindowItem-WsjNvbu_.js +1 -0
  290. codex/static_root/assets/VWindowItem-WsjNvbu_.js.br +0 -0
  291. codex/static_root/assets/VWindowItem-WsjNvbu_.js.gz +0 -0
  292. codex/static_root/assets/admin-ByuViOU9.9a1ee0a29ae2.js +1 -0
  293. codex/static_root/assets/admin-ByuViOU9.9a1ee0a29ae2.js.br +0 -0
  294. codex/static_root/assets/admin-ByuViOU9.9a1ee0a29ae2.js.gz +0 -0
  295. codex/static_root/assets/admin-ByuViOU9.js +1 -0
  296. codex/static_root/assets/admin-ByuViOU9.js.br +0 -0
  297. codex/static_root/assets/admin-ByuViOU9.js.gz +0 -0
  298. codex/static_root/assets/admin-CJauEn2X.b0c66e357083.js +1 -0
  299. codex/static_root/assets/admin-CJauEn2X.b0c66e357083.js.br +0 -0
  300. codex/static_root/assets/admin-CJauEn2X.b0c66e357083.js.gz +0 -0
  301. codex/static_root/assets/admin-CJauEn2X.js +1 -0
  302. codex/static_root/assets/admin-CJauEn2X.js.br +0 -0
  303. codex/static_root/assets/admin-CJauEn2X.js.gz +0 -0
  304. codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css +1 -0
  305. codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css.br +0 -0
  306. codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css.gz +0 -0
  307. codex/static_root/assets/admin-DJCVf2PA.css +1 -0
  308. codex/static_root/assets/admin-DJCVf2PA.css.br +0 -0
  309. codex/static_root/assets/admin-DJCVf2PA.css.gz +0 -0
  310. codex/static_root/assets/admin-menu-BRVAx54U.2c7d6cfd8a50.js +1 -0
  311. codex/static_root/assets/admin-menu-BRVAx54U.2c7d6cfd8a50.js.br +0 -0
  312. codex/static_root/assets/admin-menu-BRVAx54U.2c7d6cfd8a50.js.gz +0 -0
  313. codex/static_root/assets/admin-menu-BRVAx54U.js +1 -0
  314. codex/static_root/assets/admin-menu-BRVAx54U.js.br +0 -0
  315. codex/static_root/assets/admin-menu-BRVAx54U.js.gz +0 -0
  316. codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css +1 -0
  317. codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css.br +0 -0
  318. codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css.gz +0 -0
  319. codex/static_root/assets/admin-menu-hpyUS8ku.css +1 -0
  320. codex/static_root/assets/admin-menu-hpyUS8ku.css.br +0 -0
  321. codex/static_root/assets/admin-menu-hpyUS8ku.css.gz +0 -0
  322. codex/static_root/assets/admin-settings-button-progress-Cks9_KN-.a592809d4008.css +1 -0
  323. codex/static_root/assets/admin-settings-button-progress-Cks9_KN-.css +1 -0
  324. codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.4fe043a87c09.js +1 -0
  325. codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.4fe043a87c09.js.br +0 -0
  326. codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.4fe043a87c09.js.gz +0 -0
  327. codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.js +1 -0
  328. codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.js.br +0 -0
  329. codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.js.gz +0 -0
  330. codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css +1 -0
  331. codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css.br +0 -0
  332. codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css.gz +0 -0
  333. codex/static_root/assets/browser-Cdi7U5ku.css +1 -0
  334. codex/static_root/assets/browser-Cdi7U5ku.css.br +0 -0
  335. codex/static_root/assets/browser-Cdi7U5ku.css.gz +0 -0
  336. codex/static_root/assets/browser-OtRiWIux.be28cec0e65a.js +1 -0
  337. codex/static_root/assets/browser-OtRiWIux.be28cec0e65a.js.br +0 -0
  338. codex/static_root/assets/browser-OtRiWIux.be28cec0e65a.js.gz +0 -0
  339. codex/static_root/assets/browser-OtRiWIux.js +1 -0
  340. codex/static_root/assets/browser-OtRiWIux.js.br +0 -0
  341. codex/static_root/assets/browser-OtRiWIux.js.gz +0 -0
  342. codex/static_root/assets/change-password-dialog-DE8R9FId.f3180b3946dd.js +1 -0
  343. codex/static_root/assets/change-password-dialog-DE8R9FId.f3180b3946dd.js.br +0 -0
  344. codex/static_root/assets/change-password-dialog-DE8R9FId.f3180b3946dd.js.gz +0 -0
  345. codex/static_root/assets/change-password-dialog-DE8R9FId.js +1 -0
  346. codex/static_root/assets/change-password-dialog-DE8R9FId.js.br +0 -0
  347. codex/static_root/assets/change-password-dialog-DE8R9FId.js.gz +0 -0
  348. codex/static_root/assets/confirm-dialog-Dy-4G4rU.c2de2d0acce1.js +1 -0
  349. codex/static_root/assets/confirm-dialog-Dy-4G4rU.c2de2d0acce1.js.br +0 -0
  350. codex/static_root/assets/confirm-dialog-Dy-4G4rU.c2de2d0acce1.js.gz +0 -0
  351. codex/static_root/assets/confirm-dialog-Dy-4G4rU.js +1 -0
  352. codex/static_root/assets/confirm-dialog-Dy-4G4rU.js.br +0 -0
  353. codex/static_root/assets/confirm-dialog-Dy-4G4rU.js.gz +0 -0
  354. codex/static_root/assets/confirm-dialog-YfC8mRQA.be37e8f67e0f.css +1 -0
  355. codex/static_root/assets/confirm-dialog-YfC8mRQA.css +1 -0
  356. codex/static_root/assets/datetime-column-Bt7J1qEf.css +1 -0
  357. codex/static_root/assets/datetime-column-Bt7J1qEf.css.br +0 -0
  358. codex/static_root/assets/datetime-column-Bt7J1qEf.d83164b4d4cb.css +1 -0
  359. codex/static_root/assets/datetime-column-Bt7J1qEf.d83164b4d4cb.css.br +0 -0
  360. codex/static_root/assets/datetime-column-C86OiFxS.32dca850b5fb.js +1 -0
  361. codex/static_root/assets/datetime-column-C86OiFxS.32dca850b5fb.js.br +0 -0
  362. codex/static_root/assets/datetime-column-C86OiFxS.32dca850b5fb.js.gz +0 -0
  363. codex/static_root/assets/datetime-column-C86OiFxS.js +1 -0
  364. codex/static_root/assets/datetime-column-C86OiFxS.js.br +0 -0
  365. codex/static_root/assets/datetime-column-C86OiFxS.js.gz +0 -0
  366. codex/static_root/assets/filter-OaiDOf0D.41d89efe9cd5.js +1 -0
  367. codex/static_root/assets/filter-OaiDOf0D.41d89efe9cd5.js.br +0 -0
  368. codex/static_root/assets/filter-OaiDOf0D.41d89efe9cd5.js.gz +0 -0
  369. codex/static_root/assets/filter-OaiDOf0D.js +1 -0
  370. codex/static_root/assets/filter-OaiDOf0D.js.br +0 -0
  371. codex/static_root/assets/filter-OaiDOf0D.js.gz +0 -0
  372. codex/static_root/assets/flag-tab-ChsErni6.0fca30995a0e.js +1 -0
  373. codex/static_root/assets/flag-tab-ChsErni6.0fca30995a0e.js.br +0 -0
  374. codex/static_root/assets/flag-tab-ChsErni6.0fca30995a0e.js.gz +0 -0
  375. codex/static_root/assets/flag-tab-ChsErni6.js +1 -0
  376. codex/static_root/assets/flag-tab-ChsErni6.js.br +0 -0
  377. codex/static_root/assets/flag-tab-ChsErni6.js.gz +0 -0
  378. codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css +1 -0
  379. codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css.br +0 -0
  380. codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css.gz +0 -0
  381. codex/static_root/assets/forwardRefs-B_sUWZn6.css +1 -0
  382. codex/static_root/assets/forwardRefs-B_sUWZn6.css.br +0 -0
  383. codex/static_root/assets/forwardRefs-B_sUWZn6.css.gz +0 -0
  384. codex/static_root/assets/forwardRefs-BjkhALLr.1bfbdea189d7.js +1 -0
  385. codex/static_root/assets/forwardRefs-BjkhALLr.1bfbdea189d7.js.br +0 -0
  386. codex/static_root/assets/forwardRefs-BjkhALLr.1bfbdea189d7.js.gz +0 -0
  387. codex/static_root/assets/forwardRefs-BjkhALLr.js +1 -0
  388. codex/static_root/assets/forwardRefs-BjkhALLr.js.br +0 -0
  389. codex/static_root/assets/forwardRefs-BjkhALLr.js.gz +0 -0
  390. codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css +1 -0
  391. codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css.br +0 -0
  392. codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css.gz +0 -0
  393. codex/static_root/assets/group-tab-CQ_Qw6h8.css +1 -0
  394. codex/static_root/assets/group-tab-CQ_Qw6h8.css.br +0 -0
  395. codex/static_root/assets/group-tab-CQ_Qw6h8.css.gz +0 -0
  396. codex/static_root/assets/group-tab-DB4vz9MA.42dd130d0118.js +1 -0
  397. codex/static_root/assets/group-tab-DB4vz9MA.42dd130d0118.js.br +0 -0
  398. codex/static_root/assets/group-tab-DB4vz9MA.42dd130d0118.js.gz +0 -0
  399. codex/static_root/assets/group-tab-DB4vz9MA.js +1 -0
  400. codex/static_root/assets/group-tab-DB4vz9MA.js.br +0 -0
  401. codex/static_root/assets/group-tab-DB4vz9MA.js.gz +0 -0
  402. codex/static_root/assets/http-error-7Kkr0CW4.c16118f162ac.js +1 -0
  403. codex/static_root/assets/http-error-7Kkr0CW4.c16118f162ac.js.br +0 -0
  404. codex/static_root/assets/http-error-7Kkr0CW4.c16118f162ac.js.gz +0 -0
  405. codex/static_root/assets/http-error-7Kkr0CW4.js +1 -0
  406. codex/static_root/assets/http-error-7Kkr0CW4.js.br +0 -0
  407. codex/static_root/assets/http-error-7Kkr0CW4.js.gz +0 -0
  408. codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css +1 -0
  409. codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css.br +0 -0
  410. codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css.gz +0 -0
  411. codex/static_root/assets/http-error-CB3k5P-n.css +1 -0
  412. codex/static_root/assets/http-error-CB3k5P-n.css.br +0 -0
  413. codex/static_root/assets/http-error-CB3k5P-n.css.gz +0 -0
  414. codex/static_root/assets/index-yvfyzOV3.c886587fcfb6.js +1 -0
  415. codex/static_root/assets/index-yvfyzOV3.c886587fcfb6.js.br +0 -0
  416. codex/static_root/assets/index-yvfyzOV3.c886587fcfb6.js.gz +0 -0
  417. codex/static_root/assets/index-yvfyzOV3.js +1 -0
  418. codex/static_root/assets/index-yvfyzOV3.js.br +0 -0
  419. codex/static_root/assets/index-yvfyzOV3.js.gz +0 -0
  420. codex/static_root/assets/library-tab-5StL67ei.0fad8998a237.css +1 -0
  421. codex/static_root/assets/library-tab-5StL67ei.0fad8998a237.css.br +0 -0
  422. codex/static_root/assets/library-tab-5StL67ei.0fad8998a237.css.gz +0 -0
  423. codex/static_root/assets/library-tab-5StL67ei.css +1 -0
  424. codex/static_root/assets/library-tab-5StL67ei.css.br +0 -0
  425. codex/static_root/assets/library-tab-5StL67ei.css.gz +0 -0
  426. codex/static_root/assets/library-tab-BJM2q4YE.0eb19632c084.js +1 -0
  427. codex/static_root/assets/library-tab-BJM2q4YE.0eb19632c084.js.br +0 -0
  428. codex/static_root/assets/library-tab-BJM2q4YE.0eb19632c084.js.gz +0 -0
  429. codex/static_root/assets/library-tab-BJM2q4YE.js +1 -0
  430. codex/static_root/assets/library-tab-BJM2q4YE.js.br +0 -0
  431. codex/static_root/assets/library-tab-BJM2q4YE.js.gz +0 -0
  432. codex/static_root/assets/main-0gkU-bgy.475633238e98.js +39 -0
  433. codex/static_root/assets/main-0gkU-bgy.475633238e98.js.br +0 -0
  434. codex/static_root/assets/main-0gkU-bgy.475633238e98.js.gz +0 -0
  435. codex/static_root/assets/main-0gkU-bgy.js +39 -0
  436. codex/static_root/assets/main-0gkU-bgy.js.br +0 -0
  437. codex/static_root/assets/main-0gkU-bgy.js.gz +0 -0
  438. codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css +5 -0
  439. codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css.br +0 -0
  440. codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css.gz +0 -0
  441. codex/static_root/assets/main-B8_0rUnw.css +5 -0
  442. codex/static_root/assets/main-B8_0rUnw.css.br +0 -0
  443. codex/static_root/assets/main-B8_0rUnw.css.gz +0 -0
  444. codex/static_root/assets/pager-full-pdf-dMflY9TZ.14b64093d057.js +1 -0
  445. codex/static_root/assets/pager-full-pdf-dMflY9TZ.14b64093d057.js.br +0 -0
  446. codex/static_root/assets/pager-full-pdf-dMflY9TZ.14b64093d057.js.gz +0 -0
  447. codex/static_root/assets/pager-full-pdf-dMflY9TZ.js +1 -0
  448. codex/static_root/assets/pager-full-pdf-dMflY9TZ.js.br +0 -0
  449. codex/static_root/assets/pager-full-pdf-dMflY9TZ.js.gz +0 -0
  450. codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css +1 -0
  451. codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css.br +0 -0
  452. codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css.gz +0 -0
  453. codex/static_root/assets/pagination-toolbar-741OafNw.css +1 -0
  454. codex/static_root/assets/pagination-toolbar-741OafNw.css.br +0 -0
  455. codex/static_root/assets/pagination-toolbar-741OafNw.css.gz +0 -0
  456. codex/static_root/assets/pagination-toolbar-BzWY1XTi.b1fbe47f722d.js +1 -0
  457. codex/static_root/assets/pagination-toolbar-BzWY1XTi.b1fbe47f722d.js.br +0 -0
  458. codex/static_root/assets/pagination-toolbar-BzWY1XTi.b1fbe47f722d.js.gz +0 -0
  459. codex/static_root/assets/pagination-toolbar-BzWY1XTi.js +1 -0
  460. codex/static_root/assets/pagination-toolbar-BzWY1XTi.js.br +0 -0
  461. codex/static_root/assets/pagination-toolbar-BzWY1XTi.js.gz +0 -0
  462. codex/static_root/assets/pdf-doc-remlTMFH.4063b6ec0033.js +372 -0
  463. codex/static_root/assets/pdf-doc-remlTMFH.4063b6ec0033.js.br +0 -0
  464. codex/static_root/assets/pdf-doc-remlTMFH.4063b6ec0033.js.gz +0 -0
  465. codex/static_root/assets/pdf-doc-remlTMFH.js +372 -0
  466. codex/static_root/assets/pdf-doc-remlTMFH.js.br +0 -0
  467. codex/static_root/assets/pdf-doc-remlTMFH.js.gz +0 -0
  468. codex/static_root/assets/reader-CmiUt5h2.65e3cb07aac9.js +2 -0
  469. codex/static_root/assets/reader-CmiUt5h2.65e3cb07aac9.js.br +0 -0
  470. codex/static_root/assets/reader-CmiUt5h2.65e3cb07aac9.js.gz +0 -0
  471. codex/static_root/assets/reader-CmiUt5h2.js +2 -0
  472. codex/static_root/assets/reader-CmiUt5h2.js.br +0 -0
  473. codex/static_root/assets/reader-CmiUt5h2.js.gz +0 -0
  474. codex/static_root/assets/reader-HE07eoaG.8626eeb7c718.css +1 -0
  475. codex/static_root/assets/reader-HE07eoaG.8626eeb7c718.css.br +0 -0
  476. codex/static_root/assets/reader-HE07eoaG.8626eeb7c718.css.gz +0 -0
  477. codex/static_root/assets/reader-HE07eoaG.css +1 -0
  478. codex/static_root/assets/reader-HE07eoaG.css.br +0 -0
  479. codex/static_root/assets/reader-HE07eoaG.css.gz +0 -0
  480. codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css +1 -0
  481. codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css.br +0 -0
  482. codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css.gz +0 -0
  483. codex/static_root/assets/relation-chips-CcFgPQOM.css +1 -0
  484. codex/static_root/assets/relation-chips-CcFgPQOM.css.br +0 -0
  485. codex/static_root/assets/relation-chips-CcFgPQOM.css.gz +0 -0
  486. codex/static_root/assets/relation-chips-Dl0i3EP7.1f365f5c1e41.js +1 -0
  487. codex/static_root/assets/relation-chips-Dl0i3EP7.1f365f5c1e41.js.br +0 -0
  488. codex/static_root/assets/relation-chips-Dl0i3EP7.1f365f5c1e41.js.gz +0 -0
  489. codex/static_root/assets/relation-chips-Dl0i3EP7.js +1 -0
  490. codex/static_root/assets/relation-chips-Dl0i3EP7.js.br +0 -0
  491. codex/static_root/assets/relation-chips-Dl0i3EP7.js.gz +0 -0
  492. codex/static_root/assets/settings-drawer-CpKXWPSA.82625de924bb.js +2 -0
  493. codex/static_root/assets/settings-drawer-CpKXWPSA.82625de924bb.js.br +0 -0
  494. codex/static_root/assets/settings-drawer-CpKXWPSA.82625de924bb.js.gz +0 -0
  495. codex/static_root/assets/settings-drawer-CpKXWPSA.js +2 -0
  496. codex/static_root/assets/settings-drawer-CpKXWPSA.js.br +0 -0
  497. codex/static_root/assets/settings-drawer-CpKXWPSA.js.gz +0 -0
  498. codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css +1 -0
  499. codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css.br +0 -0
  500. codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css.gz +0 -0
  501. codex/static_root/assets/settings-drawer-CpS_aX4Z.css +1 -0
  502. codex/static_root/assets/settings-drawer-CpS_aX4Z.css.br +0 -0
  503. codex/static_root/assets/settings-drawer-CpS_aX4Z.css.gz +0 -0
  504. codex/static_root/assets/ssrBoot-D4fyL90J.0eef13056f93.js +1 -0
  505. codex/static_root/assets/ssrBoot-D4fyL90J.0eef13056f93.js.br +0 -0
  506. codex/static_root/assets/ssrBoot-D4fyL90J.0eef13056f93.js.gz +0 -0
  507. codex/static_root/assets/ssrBoot-D4fyL90J.js +1 -0
  508. codex/static_root/assets/ssrBoot-D4fyL90J.js.br +0 -0
  509. codex/static_root/assets/ssrBoot-D4fyL90J.js.gz +0 -0
  510. codex/static_root/assets/stats-tab-Cu7saNBy.8ad3f7a0995a.js +1 -0
  511. codex/static_root/assets/stats-tab-Cu7saNBy.8ad3f7a0995a.js.br +0 -0
  512. codex/static_root/assets/stats-tab-Cu7saNBy.8ad3f7a0995a.js.gz +0 -0
  513. codex/static_root/assets/stats-tab-Cu7saNBy.js +1 -0
  514. codex/static_root/assets/stats-tab-Cu7saNBy.js.br +0 -0
  515. codex/static_root/assets/stats-tab-Cu7saNBy.js.gz +0 -0
  516. codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css +1 -0
  517. codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css.br +0 -0
  518. codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css.gz +0 -0
  519. codex/static_root/assets/stats-tab-Dpqh5pF9.css +1 -0
  520. codex/static_root/assets/stats-tab-Dpqh5pF9.css.br +0 -0
  521. codex/static_root/assets/stats-tab-Dpqh5pF9.css.gz +0 -0
  522. codex/static_root/assets/task-tab-B66NRaoH.fdb8c98f0652.js +1 -0
  523. codex/static_root/assets/task-tab-B66NRaoH.fdb8c98f0652.js.br +0 -0
  524. codex/static_root/assets/task-tab-B66NRaoH.fdb8c98f0652.js.gz +0 -0
  525. codex/static_root/assets/task-tab-B66NRaoH.js +1 -0
  526. codex/static_root/assets/task-tab-B66NRaoH.js.br +0 -0
  527. codex/static_root/assets/task-tab-B66NRaoH.js.gz +0 -0
  528. codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css +1 -0
  529. codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css.br +0 -0
  530. codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css.gz +0 -0
  531. codex/static_root/assets/unauthorized-BBwsmi0O.css +1 -0
  532. codex/static_root/assets/unauthorized-BBwsmi0O.css.br +0 -0
  533. codex/static_root/assets/unauthorized-BBwsmi0O.css.gz +0 -0
  534. codex/static_root/assets/unauthorized-CLNP5Zx1.9f072de5e06c.js +1 -0
  535. codex/static_root/assets/unauthorized-CLNP5Zx1.9f072de5e06c.js.br +0 -0
  536. codex/static_root/assets/unauthorized-CLNP5Zx1.9f072de5e06c.js.gz +0 -0
  537. codex/static_root/assets/unauthorized-CLNP5Zx1.js +1 -0
  538. codex/static_root/assets/unauthorized-CLNP5Zx1.js.br +0 -0
  539. codex/static_root/assets/unauthorized-CLNP5Zx1.js.gz +0 -0
  540. codex/static_root/assets/user-tab-BqhQ3sls.cacf99be60fb.js +1 -0
  541. codex/static_root/assets/user-tab-BqhQ3sls.cacf99be60fb.js.br +0 -0
  542. codex/static_root/assets/user-tab-BqhQ3sls.cacf99be60fb.js.gz +0 -0
  543. codex/static_root/assets/user-tab-BqhQ3sls.js +1 -0
  544. codex/static_root/assets/user-tab-BqhQ3sls.js.br +0 -0
  545. codex/static_root/assets/user-tab-BqhQ3sls.js.gz +0 -0
  546. codex/static_root/img/folder.83168d8d3119.svg +1 -0
  547. codex/static_root/img/folder.83168d8d3119.svg.br +1 -0
  548. codex/static_root/img/folder.83168d8d3119.svg.gz +0 -0
  549. codex/static_root/img/folder.svg +1 -1
  550. codex/static_root/img/folder.svg.br +0 -0
  551. codex/static_root/img/folder.svg.gz +0 -0
  552. codex/static_root/img/imprint.3ca7a779b949.svg +1 -0
  553. codex/static_root/img/imprint.3ca7a779b949.svg.br +0 -0
  554. codex/static_root/img/imprint.3ca7a779b949.svg.gz +0 -0
  555. codex/static_root/img/imprint.svg +1 -1
  556. codex/static_root/img/imprint.svg.br +0 -0
  557. codex/static_root/img/imprint.svg.gz +0 -0
  558. codex/static_root/img/logo-maskable.aeef5c2fffc8.svg +1 -0
  559. codex/static_root/img/logo-maskable.aeef5c2fffc8.svg.br +0 -0
  560. codex/static_root/img/logo-maskable.aeef5c2fffc8.svg.gz +0 -0
  561. codex/static_root/img/logo-maskable.svg +1 -1
  562. codex/static_root/img/logo-maskable.svg.br +0 -0
  563. codex/static_root/img/logo-maskable.svg.gz +0 -0
  564. codex/static_root/img/logo.00c902973831.svg +1 -0
  565. codex/static_root/img/logo.00c902973831.svg.br +0 -0
  566. codex/static_root/img/logo.00c902973831.svg.gz +0 -0
  567. codex/static_root/img/logo.svg +1 -1
  568. codex/static_root/img/logo.svg.br +0 -0
  569. codex/static_root/img/logo.svg.gz +0 -0
  570. codex/static_root/img/missing-cover-165.f4bb7740084c.webp +0 -0
  571. codex/static_root/img/missing-cover-165.webp +0 -0
  572. codex/static_root/img/missing-cover.7329518c5972.svg +1 -0
  573. codex/static_root/img/missing-cover.7329518c5972.svg.br +0 -0
  574. codex/static_root/img/missing-cover.7329518c5972.svg.gz +0 -0
  575. codex/static_root/img/missing-cover.svg +1 -1
  576. codex/static_root/img/missing-cover.svg.br +0 -0
  577. codex/static_root/img/missing-cover.svg.gz +0 -0
  578. codex/static_root/img/series.b092bbac0c2a.svg +1 -0
  579. codex/static_root/img/series.b092bbac0c2a.svg.br +0 -0
  580. codex/static_root/img/series.b092bbac0c2a.svg.gz +0 -0
  581. codex/static_root/img/series.svg +1 -1
  582. codex/static_root/img/series.svg.br +0 -0
  583. codex/static_root/img/series.svg.gz +0 -0
  584. codex/static_root/img/story-arc.884f7b1d95bd.svg +1 -0
  585. codex/static_root/img/story-arc.884f7b1d95bd.svg.br +0 -0
  586. codex/static_root/img/story-arc.884f7b1d95bd.svg.gz +0 -0
  587. codex/static_root/img/story-arc.svg +1 -1
  588. codex/static_root/img/story-arc.svg.br +0 -0
  589. codex/static_root/img/story-arc.svg.gz +0 -0
  590. codex/static_root/img/volume.516ec0c3018d.svg +1 -0
  591. codex/static_root/img/volume.516ec0c3018d.svg.br +0 -0
  592. codex/static_root/img/volume.516ec0c3018d.svg.gz +0 -0
  593. codex/static_root/img/volume.svg +1 -1
  594. codex/static_root/img/volume.svg.br +0 -0
  595. codex/static_root/img/volume.svg.gz +0 -0
  596. codex/static_root/manifest.474fa7aff739.json +760 -0
  597. codex/static_root/manifest.474fa7aff739.json.br +0 -0
  598. codex/static_root/manifest.474fa7aff739.json.gz +0 -0
  599. codex/static_root/manifest.json +350 -347
  600. codex/static_root/manifest.json.br +0 -0
  601. codex/static_root/manifest.json.gz +0 -0
  602. codex/static_root/staticfiles.json +1 -1
  603. codex/templates/headers-script-globals.html +1 -0
  604. codex/urls/api/browser.py +10 -1
  605. codex/urls/converters.py +2 -5
  606. codex/urls/root.py +1 -1
  607. codex/util.py +14 -8
  608. codex/views/admin/api_key.py +1 -1
  609. codex/views/admin/flag.py +10 -9
  610. codex/views/admin/group.py +5 -3
  611. codex/views/admin/library.py +15 -9
  612. codex/views/admin/permissions.py +21 -0
  613. codex/views/admin/stats.py +6 -8
  614. codex/views/admin/tasks.py +48 -48
  615. codex/views/admin/user.py +5 -3
  616. codex/views/auth.py +29 -11
  617. codex/views/bookmark.py +25 -14
  618. codex/views/browser/annotate/bookmark.py +0 -3
  619. codex/views/browser/annotate/card.py +20 -5
  620. codex/views/browser/annotate/order.py +3 -7
  621. codex/views/browser/bookmark.py +10 -7
  622. codex/views/browser/breadcrumbs.py +8 -7
  623. codex/views/browser/browser.py +16 -16
  624. codex/views/browser/choices.py +81 -65
  625. codex/views/browser/cover.py +21 -19
  626. codex/views/browser/download.py +5 -5
  627. codex/views/browser/filters/bookmark.py +5 -0
  628. codex/views/browser/filters/field.py +3 -3
  629. codex/views/browser/filters/filter.py +3 -5
  630. codex/views/browser/filters/group.py +5 -5
  631. codex/views/browser/filters/search/field/column.py +13 -9
  632. codex/views/browser/filters/search/field/expression.py +1 -3
  633. codex/views/browser/filters/search/field/filter.py +2 -4
  634. codex/views/browser/filters/search/field/optimize.py +1 -1
  635. codex/views/browser/filters/search/field/parse.py +28 -7
  636. codex/views/browser/filters/search/fts.py +3 -4
  637. codex/views/browser/filters/search/parse.py +26 -26
  638. codex/views/browser/group_mtime.py +13 -10
  639. codex/views/browser/metadata/__init__.py +90 -1
  640. codex/views/browser/metadata/annotate.py +13 -27
  641. codex/views/browser/metadata/const.py +83 -0
  642. codex/views/browser/metadata/copy_intersections.py +14 -9
  643. codex/views/browser/metadata/query_intersections.py +67 -48
  644. codex/views/browser/mtime.py +4 -7
  645. codex/views/browser/order_by.py +4 -1
  646. codex/views/browser/page_in_bounds.py +6 -7
  647. codex/views/browser/paginate.py +3 -5
  648. codex/views/browser/params.py +23 -36
  649. codex/views/browser/settings.py +18 -4
  650. codex/views/browser/title.py +9 -5
  651. codex/views/browser/validate.py +6 -8
  652. codex/views/const.py +11 -9
  653. codex/views/download.py +2 -2
  654. codex/views/error.py +1 -1
  655. codex/views/exceptions.py +82 -0
  656. codex/views/frontend.py +8 -18
  657. codex/views/lazy_import.py +24 -0
  658. codex/views/mixins.py +34 -12
  659. codex/views/opds/auth.py +2 -2
  660. codex/views/opds/authentication_v1.py +2 -1
  661. codex/views/opds/const.py +1 -1
  662. codex/views/opds/urls.py +2 -1
  663. codex/views/opds/util.py +14 -41
  664. codex/views/opds/v1/entry/entry.py +12 -15
  665. codex/views/opds/v1/entry/links.py +15 -19
  666. codex/views/opds/v1/facets.py +8 -5
  667. codex/views/opds/v1/feed.py +23 -22
  668. codex/views/opds/v1/links.py +3 -7
  669. codex/views/opds/v1/opensearch_v1.py +7 -4
  670. codex/views/opds/v2/feed.py +14 -15
  671. codex/views/opds/v2/href.py +17 -12
  672. codex/views/opds/v2/links.py +3 -1
  673. codex/views/opds/v2/progression.py +31 -15
  674. codex/views/opds/v2/publications.py +18 -17
  675. codex/views/opds/v2/top_links.py +7 -2
  676. codex/views/public.py +12 -15
  677. codex/views/reader/arcs.py +153 -74
  678. codex/views/reader/books.py +72 -97
  679. codex/views/reader/page.py +13 -9
  680. codex/views/reader/params.py +33 -96
  681. codex/views/reader/reader.py +18 -73
  682. codex/views/reader/settings.py +4 -2
  683. codex/views/session.py +13 -19
  684. codex/views/settings.py +4 -9
  685. codex/views/template.py +8 -4
  686. codex/views/timezone.py +4 -5
  687. codex/views/util.py +3 -24
  688. codex/views/version.py +5 -3
  689. codex/websockets/consumers.py +7 -7
  690. codex/websockets/listener.py +4 -5
  691. codex-1.8.0.dist-info/METADATA +592 -0
  692. codex-1.8.0.dist-info/RECORD +1101 -0
  693. codex-1.8.0.dist-info/WHEEL +4 -0
  694. codex-1.8.0.dist-info/entry_points.txt +2 -0
  695. codex/db.py +0 -134
  696. codex/exceptions.py +0 -88
  697. codex/librarian/README.md +0 -4
  698. codex/librarian/delayed_taskd.py +0 -21
  699. codex/librarian/importer/__init__.py +0 -1
  700. codex/librarian/importer/aggregate.py +0 -256
  701. codex/librarian/importer/cache.py +0 -90
  702. codex/librarian/importer/const.py +0 -244
  703. codex/librarian/importer/create_comics.py +0 -139
  704. codex/librarian/importer/create_covers.py +0 -96
  705. codex/librarian/importer/create_fks.py +0 -346
  706. codex/librarian/importer/deleted.py +0 -138
  707. codex/librarian/importer/extract.py +0 -284
  708. codex/librarian/importer/failed_imports.py +0 -165
  709. codex/librarian/importer/importer.py +0 -101
  710. codex/librarian/importer/importerd.py +0 -122
  711. codex/librarian/importer/init.py +0 -264
  712. codex/librarian/importer/link_comics.py +0 -270
  713. codex/librarian/importer/link_covers.py +0 -73
  714. codex/librarian/importer/moved.py +0 -368
  715. codex/librarian/importer/query_covers.py +0 -53
  716. codex/librarian/importer/query_fks.py +0 -653
  717. codex/librarian/importer/status.py +0 -29
  718. codex/librarian/importer/tasks.py +0 -55
  719. codex/librarian/janitor/__init__.py +0 -1
  720. codex/librarian/janitor/cleanup.py +0 -167
  721. codex/librarian/janitor/failed_imports.py +0 -27
  722. codex/librarian/janitor/integrity.py +0 -378
  723. codex/librarian/janitor/janitor.py +0 -161
  724. codex/librarian/janitor/latest_version.py +0 -55
  725. codex/librarian/janitor/scheduled_time.py +0 -12
  726. codex/librarian/janitor/status.py +0 -22
  727. codex/librarian/janitor/tasks.py +0 -109
  728. codex/librarian/janitor/update.py +0 -109
  729. codex/librarian/janitor/vacuum.py +0 -51
  730. codex/librarian/search/__init__.py +0 -1
  731. codex/librarian/search/optimize.py +0 -43
  732. codex/librarian/search/remove.py +0 -53
  733. codex/librarian/search/searchd.py +0 -28
  734. codex/librarian/search/status.py +0 -13
  735. codex/librarian/search/tasks.py +0 -37
  736. codex/librarian/search/update.py +0 -305
  737. codex/librarian/watchdog/README.md +0 -11
  738. codex/logger/__init__.py +0 -1
  739. codex/logger/formatter.py +0 -36
  740. codex/logger/logger.py +0 -46
  741. codex/logger/loggerd.py +0 -102
  742. codex/logger/mp_queue.py +0 -5
  743. codex/logger_base.py +0 -12
  744. codex/memory.py +0 -56
  745. codex/permissions.py +0 -19
  746. codex/registration.py +0 -16
  747. codex/serializers/README.md +0 -4
  748. codex/settings/README.md +0 -4
  749. codex/settings/settings.py +0 -389
  750. codex/startup.py +0 -182
  751. codex/static_root/assets/VCheckbox-BP93zyXK.a1358c39a5fc.js +0 -1
  752. codex/static_root/assets/VCheckbox-BP93zyXK.a1358c39a5fc.js.br +0 -0
  753. codex/static_root/assets/VCheckbox-BP93zyXK.a1358c39a5fc.js.gz +0 -0
  754. codex/static_root/assets/VCheckbox-BP93zyXK.js +0 -1
  755. codex/static_root/assets/VCheckbox-BP93zyXK.js.br +0 -0
  756. codex/static_root/assets/VCheckbox-BP93zyXK.js.gz +0 -0
  757. codex/static_root/assets/VCheckboxBtn-CRHYDPms.a17a831d104a.js +0 -1
  758. codex/static_root/assets/VCheckboxBtn-CRHYDPms.a17a831d104a.js.br +0 -0
  759. codex/static_root/assets/VCheckboxBtn-CRHYDPms.a17a831d104a.js.gz +0 -0
  760. codex/static_root/assets/VCheckboxBtn-CRHYDPms.js +0 -1
  761. codex/static_root/assets/VCheckboxBtn-CRHYDPms.js.br +0 -0
  762. codex/static_root/assets/VCheckboxBtn-CRHYDPms.js.gz +0 -0
  763. codex/static_root/assets/VCombobox-BMwdQ72S.106aafc35928.js +0 -1
  764. codex/static_root/assets/VCombobox-BMwdQ72S.106aafc35928.js.br +0 -0
  765. codex/static_root/assets/VCombobox-BMwdQ72S.106aafc35928.js.gz +0 -0
  766. codex/static_root/assets/VCombobox-BMwdQ72S.js +0 -1
  767. codex/static_root/assets/VCombobox-BMwdQ72S.js.br +0 -0
  768. codex/static_root/assets/VCombobox-BMwdQ72S.js.gz +0 -0
  769. codex/static_root/assets/VDialog-BScRe1ug.c1e3368e7223.js +0 -1
  770. codex/static_root/assets/VDialog-BScRe1ug.c1e3368e7223.js.br +0 -0
  771. codex/static_root/assets/VDialog-BScRe1ug.c1e3368e7223.js.gz +0 -0
  772. codex/static_root/assets/VDialog-BScRe1ug.js +0 -1
  773. codex/static_root/assets/VDialog-BScRe1ug.js.br +0 -0
  774. codex/static_root/assets/VDialog-BScRe1ug.js.gz +0 -0
  775. codex/static_root/assets/VDialog-y9QOVA5M.627a99a930c7.css +0 -1
  776. codex/static_root/assets/VDialog-y9QOVA5M.627a99a930c7.css.br +0 -0
  777. codex/static_root/assets/VDialog-y9QOVA5M.627a99a930c7.css.gz +0 -0
  778. codex/static_root/assets/VDialog-y9QOVA5M.css +0 -1
  779. codex/static_root/assets/VDialog-y9QOVA5M.css.br +0 -0
  780. codex/static_root/assets/VDialog-y9QOVA5M.css.gz +0 -0
  781. codex/static_root/assets/VDivider-tFagM0PC.3cc0ce822729.js +0 -1
  782. codex/static_root/assets/VDivider-tFagM0PC.3cc0ce822729.js.br +0 -0
  783. codex/static_root/assets/VDivider-tFagM0PC.3cc0ce822729.js.gz +0 -0
  784. codex/static_root/assets/VDivider-tFagM0PC.js +0 -1
  785. codex/static_root/assets/VDivider-tFagM0PC.js.br +0 -0
  786. codex/static_root/assets/VDivider-tFagM0PC.js.gz +0 -0
  787. codex/static_root/assets/VExpansionPanels-DGHiJ89C.b60a171f4cde.js +0 -1
  788. codex/static_root/assets/VExpansionPanels-DGHiJ89C.b60a171f4cde.js.br +0 -0
  789. codex/static_root/assets/VExpansionPanels-DGHiJ89C.b60a171f4cde.js.gz +0 -0
  790. codex/static_root/assets/VExpansionPanels-DGHiJ89C.js +0 -1
  791. codex/static_root/assets/VExpansionPanels-DGHiJ89C.js.br +0 -0
  792. codex/static_root/assets/VExpansionPanels-DGHiJ89C.js.gz +0 -0
  793. codex/static_root/assets/VForm-B__yH-Y4.63f4a1e9770b.js +0 -1
  794. codex/static_root/assets/VForm-B__yH-Y4.63f4a1e9770b.js.br +0 -0
  795. codex/static_root/assets/VForm-B__yH-Y4.63f4a1e9770b.js.gz +0 -0
  796. codex/static_root/assets/VForm-B__yH-Y4.js +0 -1
  797. codex/static_root/assets/VForm-B__yH-Y4.js.br +0 -0
  798. codex/static_root/assets/VForm-B__yH-Y4.js.gz +0 -0
  799. codex/static_root/assets/VRadioGroup-CPOGOEPv.20e361436bc6.js +0 -1
  800. codex/static_root/assets/VRadioGroup-CPOGOEPv.20e361436bc6.js.br +0 -0
  801. codex/static_root/assets/VRadioGroup-CPOGOEPv.20e361436bc6.js.gz +0 -0
  802. codex/static_root/assets/VRadioGroup-CPOGOEPv.js +0 -1
  803. codex/static_root/assets/VRadioGroup-CPOGOEPv.js.br +0 -0
  804. codex/static_root/assets/VRadioGroup-CPOGOEPv.js.gz +0 -0
  805. codex/static_root/assets/VSelect-B_F15uRm.a7297ec26f7a.js +0 -1
  806. codex/static_root/assets/VSelect-B_F15uRm.a7297ec26f7a.js.br +0 -0
  807. codex/static_root/assets/VSelect-B_F15uRm.a7297ec26f7a.js.gz +0 -0
  808. codex/static_root/assets/VSelect-B_F15uRm.js +0 -1
  809. codex/static_root/assets/VSelect-B_F15uRm.js.br +0 -0
  810. codex/static_root/assets/VSelect-B_F15uRm.js.gz +0 -0
  811. codex/static_root/assets/VSelect-CKXqRkBF.a8be1e193eba.css +0 -1
  812. codex/static_root/assets/VSelect-CKXqRkBF.a8be1e193eba.css.br +0 -0
  813. codex/static_root/assets/VSelect-CKXqRkBF.a8be1e193eba.css.gz +0 -0
  814. codex/static_root/assets/VSelect-CKXqRkBF.css +0 -1
  815. codex/static_root/assets/VSelect-CKXqRkBF.css.br +0 -0
  816. codex/static_root/assets/VSelect-CKXqRkBF.css.gz +0 -0
  817. codex/static_root/assets/VSelectionControl-CjjwyQ-Y.db7787ff7c1d.js +0 -1
  818. codex/static_root/assets/VSelectionControl-CjjwyQ-Y.db7787ff7c1d.js.br +0 -0
  819. codex/static_root/assets/VSelectionControl-CjjwyQ-Y.db7787ff7c1d.js.gz +0 -0
  820. codex/static_root/assets/VSelectionControl-CjjwyQ-Y.js +0 -1
  821. codex/static_root/assets/VSelectionControl-CjjwyQ-Y.js.br +0 -0
  822. codex/static_root/assets/VSelectionControl-CjjwyQ-Y.js.gz +0 -0
  823. codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css +0 -1
  824. codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css.br +0 -0
  825. codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css.gz +0 -0
  826. codex/static_root/assets/VTable-CHRVGI94.css +0 -1
  827. codex/static_root/assets/VTable-CHRVGI94.css.br +0 -0
  828. codex/static_root/assets/VTable-CHRVGI94.css.gz +0 -0
  829. codex/static_root/assets/VTable-DuRw3_Nt.d9e0088b79d2.js +0 -1
  830. codex/static_root/assets/VTable-DuRw3_Nt.d9e0088b79d2.js.br +0 -0
  831. codex/static_root/assets/VTable-DuRw3_Nt.d9e0088b79d2.js.gz +0 -0
  832. codex/static_root/assets/VTable-DuRw3_Nt.js +0 -1
  833. codex/static_root/assets/VTable-DuRw3_Nt.js.br +0 -0
  834. codex/static_root/assets/VTable-DuRw3_Nt.js.gz +0 -0
  835. codex/static_root/assets/VWindowItem-CBh8U6qD.49437fb41631.js +0 -1
  836. codex/static_root/assets/VWindowItem-CBh8U6qD.49437fb41631.js.br +0 -0
  837. codex/static_root/assets/VWindowItem-CBh8U6qD.49437fb41631.js.gz +0 -0
  838. codex/static_root/assets/VWindowItem-CBh8U6qD.js +0 -1
  839. codex/static_root/assets/VWindowItem-CBh8U6qD.js.br +0 -0
  840. codex/static_root/assets/VWindowItem-CBh8U6qD.js.gz +0 -0
  841. codex/static_root/assets/VWindowItem-CWBhiE_Y.css +0 -1
  842. codex/static_root/assets/VWindowItem-CWBhiE_Y.css.br +0 -0
  843. codex/static_root/assets/VWindowItem-CWBhiE_Y.css.gz +0 -0
  844. codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css +0 -1
  845. codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css.br +0 -0
  846. codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css.gz +0 -0
  847. codex/static_root/assets/admin-BiuZANLl.249b6c087031.js +0 -1
  848. codex/static_root/assets/admin-BiuZANLl.249b6c087031.js.br +0 -0
  849. codex/static_root/assets/admin-BiuZANLl.249b6c087031.js.gz +0 -0
  850. codex/static_root/assets/admin-BiuZANLl.js +0 -1
  851. codex/static_root/assets/admin-BiuZANLl.js.br +0 -0
  852. codex/static_root/assets/admin-BiuZANLl.js.gz +0 -0
  853. codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css +0 -1
  854. codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css.br +0 -0
  855. codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css.gz +0 -0
  856. codex/static_root/assets/admin-klMr_GZK.css +0 -1
  857. codex/static_root/assets/admin-klMr_GZK.css.br +0 -0
  858. codex/static_root/assets/admin-klMr_GZK.css.gz +0 -0
  859. codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css +0 -1
  860. codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css.br +0 -0
  861. codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css.gz +0 -0
  862. codex/static_root/assets/admin-menu-CKlcsy9S.css +0 -1
  863. codex/static_root/assets/admin-menu-CKlcsy9S.css.br +0 -0
  864. codex/static_root/assets/admin-menu-CKlcsy9S.css.gz +0 -0
  865. codex/static_root/assets/admin-menu-DqBUjKk4.96d3ee51d1ee.js +0 -1
  866. codex/static_root/assets/admin-menu-DqBUjKk4.96d3ee51d1ee.js.br +0 -0
  867. codex/static_root/assets/admin-menu-DqBUjKk4.96d3ee51d1ee.js.gz +0 -0
  868. codex/static_root/assets/admin-menu-DqBUjKk4.js +0 -1
  869. codex/static_root/assets/admin-menu-DqBUjKk4.js.br +0 -0
  870. codex/static_root/assets/admin-menu-DqBUjKk4.js.gz +0 -0
  871. codex/static_root/assets/admin-rFfBszpt.fe7fc34dcff9.js +0 -1
  872. codex/static_root/assets/admin-rFfBszpt.fe7fc34dcff9.js.br +0 -0
  873. codex/static_root/assets/admin-rFfBszpt.fe7fc34dcff9.js.gz +0 -0
  874. codex/static_root/assets/admin-rFfBszpt.js +0 -1
  875. codex/static_root/assets/admin-rFfBszpt.js.br +0 -0
  876. codex/static_root/assets/admin-rFfBszpt.js.gz +0 -0
  877. codex/static_root/assets/admin-settings-button-progress-OU_loI8p.87ac446b1a6a.js +0 -1
  878. codex/static_root/assets/admin-settings-button-progress-OU_loI8p.87ac446b1a6a.js.br +0 -0
  879. codex/static_root/assets/admin-settings-button-progress-OU_loI8p.87ac446b1a6a.js.gz +0 -0
  880. codex/static_root/assets/admin-settings-button-progress-OU_loI8p.js +0 -1
  881. codex/static_root/assets/admin-settings-button-progress-OU_loI8p.js.br +0 -0
  882. codex/static_root/assets/admin-settings-button-progress-OU_loI8p.js.gz +0 -0
  883. codex/static_root/assets/admin-settings-button-progress-XVi7SeHr.435dc945daf1.css +0 -1
  884. codex/static_root/assets/admin-settings-button-progress-XVi7SeHr.css +0 -1
  885. codex/static_root/assets/browser-D0QppR66.501322534a7c.js +0 -1
  886. codex/static_root/assets/browser-D0QppR66.501322534a7c.js.br +0 -0
  887. codex/static_root/assets/browser-D0QppR66.501322534a7c.js.gz +0 -0
  888. codex/static_root/assets/browser-D0QppR66.js +0 -1
  889. codex/static_root/assets/browser-D0QppR66.js.br +0 -0
  890. codex/static_root/assets/browser-D0QppR66.js.gz +0 -0
  891. codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css +0 -1
  892. codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css.br +0 -0
  893. codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css.gz +0 -0
  894. codex/static_root/assets/browser-sNm790x9.css +0 -1
  895. codex/static_root/assets/browser-sNm790x9.css.br +0 -0
  896. codex/static_root/assets/browser-sNm790x9.css.gz +0 -0
  897. codex/static_root/assets/change-password-dialog-DQ_0TaFN.5faa73705235.js +0 -1
  898. codex/static_root/assets/change-password-dialog-DQ_0TaFN.5faa73705235.js.br +0 -0
  899. codex/static_root/assets/change-password-dialog-DQ_0TaFN.5faa73705235.js.gz +0 -0
  900. codex/static_root/assets/change-password-dialog-DQ_0TaFN.js +0 -1
  901. codex/static_root/assets/change-password-dialog-DQ_0TaFN.js.br +0 -0
  902. codex/static_root/assets/change-password-dialog-DQ_0TaFN.js.gz +0 -0
  903. codex/static_root/assets/confirm-dialog-BI5kQLy_.1b5309ad95ec.css +0 -1
  904. codex/static_root/assets/confirm-dialog-BI5kQLy_.1b5309ad95ec.css.br +0 -0
  905. codex/static_root/assets/confirm-dialog-BI5kQLy_.css +0 -1
  906. codex/static_root/assets/confirm-dialog-BI5kQLy_.css.br +0 -0
  907. codex/static_root/assets/confirm-dialog-Bkr6kSge.f41952e0b099.js +0 -1
  908. codex/static_root/assets/confirm-dialog-Bkr6kSge.f41952e0b099.js.br +0 -0
  909. codex/static_root/assets/confirm-dialog-Bkr6kSge.f41952e0b099.js.gz +0 -0
  910. codex/static_root/assets/confirm-dialog-Bkr6kSge.js +0 -1
  911. codex/static_root/assets/confirm-dialog-Bkr6kSge.js.br +0 -0
  912. codex/static_root/assets/confirm-dialog-Bkr6kSge.js.gz +0 -0
  913. codex/static_root/assets/datetime-column-BavtvLnf.1f3bf499e063.css +0 -1
  914. codex/static_root/assets/datetime-column-BavtvLnf.css +0 -1
  915. codex/static_root/assets/datetime-column-DN4pF5Fz.eef663675e36.js +0 -1
  916. codex/static_root/assets/datetime-column-DN4pF5Fz.eef663675e36.js.br +0 -2
  917. codex/static_root/assets/datetime-column-DN4pF5Fz.eef663675e36.js.gz +0 -0
  918. codex/static_root/assets/datetime-column-DN4pF5Fz.js +0 -1
  919. codex/static_root/assets/datetime-column-DN4pF5Fz.js.br +0 -2
  920. codex/static_root/assets/datetime-column-DN4pF5Fz.js.gz +0 -0
  921. codex/static_root/assets/filter-C84dddvE.1f40ef69fc98.js +0 -1
  922. codex/static_root/assets/filter-C84dddvE.1f40ef69fc98.js.br +0 -0
  923. codex/static_root/assets/filter-C84dddvE.1f40ef69fc98.js.gz +0 -0
  924. codex/static_root/assets/filter-C84dddvE.js +0 -1
  925. codex/static_root/assets/filter-C84dddvE.js.br +0 -0
  926. codex/static_root/assets/filter-C84dddvE.js.gz +0 -0
  927. codex/static_root/assets/flag-tab-kXJbxWWt.afd96e3b065a.js +0 -1
  928. codex/static_root/assets/flag-tab-kXJbxWWt.afd96e3b065a.js.br +0 -0
  929. codex/static_root/assets/flag-tab-kXJbxWWt.afd96e3b065a.js.gz +0 -0
  930. codex/static_root/assets/flag-tab-kXJbxWWt.js +0 -1
  931. codex/static_root/assets/flag-tab-kXJbxWWt.js.br +0 -0
  932. codex/static_root/assets/flag-tab-kXJbxWWt.js.gz +0 -0
  933. codex/static_root/assets/forwardRefs-Dbjzugu8.a95409be3194.css +0 -1
  934. codex/static_root/assets/forwardRefs-Dbjzugu8.a95409be3194.css.br +0 -0
  935. codex/static_root/assets/forwardRefs-Dbjzugu8.a95409be3194.css.gz +0 -0
  936. codex/static_root/assets/forwardRefs-Dbjzugu8.css +0 -1
  937. codex/static_root/assets/forwardRefs-Dbjzugu8.css.br +0 -0
  938. codex/static_root/assets/forwardRefs-Dbjzugu8.css.gz +0 -0
  939. codex/static_root/assets/forwardRefs-DkWUbz_i.6267360fb97d.js +0 -1
  940. codex/static_root/assets/forwardRefs-DkWUbz_i.6267360fb97d.js.br +0 -0
  941. codex/static_root/assets/forwardRefs-DkWUbz_i.6267360fb97d.js.gz +0 -0
  942. codex/static_root/assets/forwardRefs-DkWUbz_i.js +0 -1
  943. codex/static_root/assets/forwardRefs-DkWUbz_i.js.br +0 -0
  944. codex/static_root/assets/forwardRefs-DkWUbz_i.js.gz +0 -0
  945. codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css +0 -1
  946. codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css.br +0 -0
  947. codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css.gz +0 -0
  948. codex/static_root/assets/group-tab-Bi681uR0.css +0 -1
  949. codex/static_root/assets/group-tab-Bi681uR0.css.br +0 -0
  950. codex/static_root/assets/group-tab-Bi681uR0.css.gz +0 -0
  951. codex/static_root/assets/group-tab-jH91_dZ-.4e96931a3f26.js +0 -1
  952. codex/static_root/assets/group-tab-jH91_dZ-.4e96931a3f26.js.br +0 -0
  953. codex/static_root/assets/group-tab-jH91_dZ-.4e96931a3f26.js.gz +0 -0
  954. codex/static_root/assets/group-tab-jH91_dZ-.js +0 -1
  955. codex/static_root/assets/group-tab-jH91_dZ-.js.br +0 -0
  956. codex/static_root/assets/group-tab-jH91_dZ-.js.gz +0 -0
  957. codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css +0 -1
  958. codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css.br +0 -0
  959. codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css.gz +0 -0
  960. codex/static_root/assets/http-error-CODU7jcH.css +0 -1
  961. codex/static_root/assets/http-error-CODU7jcH.css.br +0 -0
  962. codex/static_root/assets/http-error-CODU7jcH.css.gz +0 -0
  963. codex/static_root/assets/http-error-CrojtCix.9d0501bde853.js +0 -1
  964. codex/static_root/assets/http-error-CrojtCix.9d0501bde853.js.br +0 -0
  965. codex/static_root/assets/http-error-CrojtCix.9d0501bde853.js.gz +0 -0
  966. codex/static_root/assets/http-error-CrojtCix.js +0 -1
  967. codex/static_root/assets/http-error-CrojtCix.js.br +0 -0
  968. codex/static_root/assets/http-error-CrojtCix.js.gz +0 -0
  969. codex/static_root/assets/index-DHunaD9D.c820322b9e49.js +0 -1
  970. codex/static_root/assets/index-DHunaD9D.c820322b9e49.js.br +0 -0
  971. codex/static_root/assets/index-DHunaD9D.c820322b9e49.js.gz +0 -0
  972. codex/static_root/assets/index-DHunaD9D.js +0 -1
  973. codex/static_root/assets/index-DHunaD9D.js.br +0 -0
  974. codex/static_root/assets/index-DHunaD9D.js.gz +0 -0
  975. codex/static_root/assets/library-tab-BzOyajRi.6c8c04906eec.js +0 -1
  976. codex/static_root/assets/library-tab-BzOyajRi.6c8c04906eec.js.br +0 -0
  977. codex/static_root/assets/library-tab-BzOyajRi.6c8c04906eec.js.gz +0 -0
  978. codex/static_root/assets/library-tab-BzOyajRi.js +0 -1
  979. codex/static_root/assets/library-tab-BzOyajRi.js.br +0 -0
  980. codex/static_root/assets/library-tab-BzOyajRi.js.gz +0 -0
  981. codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css +0 -1
  982. codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css.br +0 -0
  983. codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css.gz +0 -0
  984. codex/static_root/assets/library-tab-DLpvMqPW.css +0 -1
  985. codex/static_root/assets/library-tab-DLpvMqPW.css.br +0 -0
  986. codex/static_root/assets/library-tab-DLpvMqPW.css.gz +0 -0
  987. codex/static_root/assets/main-Dl2Lrwga.e767cd79bb5e.js +0 -39
  988. codex/static_root/assets/main-Dl2Lrwga.e767cd79bb5e.js.br +0 -0
  989. codex/static_root/assets/main-Dl2Lrwga.e767cd79bb5e.js.gz +0 -0
  990. codex/static_root/assets/main-Dl2Lrwga.js +0 -39
  991. codex/static_root/assets/main-Dl2Lrwga.js.br +0 -0
  992. codex/static_root/assets/main-Dl2Lrwga.js.gz +0 -0
  993. codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css +0 -5
  994. codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css.br +0 -0
  995. codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css.gz +0 -0
  996. codex/static_root/assets/main-Of3aYkZ7.css +0 -5
  997. codex/static_root/assets/main-Of3aYkZ7.css.br +0 -0
  998. codex/static_root/assets/main-Of3aYkZ7.css.gz +0 -0
  999. codex/static_root/assets/pager-full-pdf-DKdyHoRL.a504cc00db7c.js +0 -1
  1000. codex/static_root/assets/pager-full-pdf-DKdyHoRL.a504cc00db7c.js.br +0 -0
  1001. codex/static_root/assets/pager-full-pdf-DKdyHoRL.a504cc00db7c.js.gz +0 -0
  1002. codex/static_root/assets/pager-full-pdf-DKdyHoRL.js +0 -1
  1003. codex/static_root/assets/pager-full-pdf-DKdyHoRL.js.br +0 -0
  1004. codex/static_root/assets/pager-full-pdf-DKdyHoRL.js.gz +0 -0
  1005. codex/static_root/assets/pagination-toolbar-T0N6Ubp7.1f07380772ae.js +0 -1
  1006. codex/static_root/assets/pagination-toolbar-T0N6Ubp7.1f07380772ae.js.br +0 -0
  1007. codex/static_root/assets/pagination-toolbar-T0N6Ubp7.1f07380772ae.js.gz +0 -0
  1008. codex/static_root/assets/pagination-toolbar-T0N6Ubp7.js +0 -1
  1009. codex/static_root/assets/pagination-toolbar-T0N6Ubp7.js.br +0 -0
  1010. codex/static_root/assets/pagination-toolbar-T0N6Ubp7.js.gz +0 -0
  1011. codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css +0 -1
  1012. codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css.br +0 -0
  1013. codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css.gz +0 -0
  1014. codex/static_root/assets/pagination-toolbar-aHRrdz48.css +0 -1
  1015. codex/static_root/assets/pagination-toolbar-aHRrdz48.css.br +0 -0
  1016. codex/static_root/assets/pagination-toolbar-aHRrdz48.css.gz +0 -0
  1017. codex/static_root/assets/pdf-doc-CBiUfHpD.9e3e989242e7.js +0 -372
  1018. codex/static_root/assets/pdf-doc-CBiUfHpD.9e3e989242e7.js.br +0 -0
  1019. codex/static_root/assets/pdf-doc-CBiUfHpD.9e3e989242e7.js.gz +0 -0
  1020. codex/static_root/assets/pdf-doc-CBiUfHpD.js +0 -372
  1021. codex/static_root/assets/pdf-doc-CBiUfHpD.js.br +0 -0
  1022. codex/static_root/assets/pdf-doc-CBiUfHpD.js.gz +0 -0
  1023. codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css +0 -1
  1024. codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css.br +0 -0
  1025. codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css.gz +0 -0
  1026. codex/static_root/assets/reader-BwgJtbgj.css +0 -1
  1027. codex/static_root/assets/reader-BwgJtbgj.css.br +0 -0
  1028. codex/static_root/assets/reader-BwgJtbgj.css.gz +0 -0
  1029. codex/static_root/assets/reader-D3uSXJi4.6bf741d0ed65.js +0 -2
  1030. codex/static_root/assets/reader-D3uSXJi4.6bf741d0ed65.js.br +0 -0
  1031. codex/static_root/assets/reader-D3uSXJi4.6bf741d0ed65.js.gz +0 -0
  1032. codex/static_root/assets/reader-D3uSXJi4.js +0 -2
  1033. codex/static_root/assets/reader-D3uSXJi4.js.br +0 -0
  1034. codex/static_root/assets/reader-D3uSXJi4.js.gz +0 -0
  1035. codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css +0 -1
  1036. codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css.br +0 -0
  1037. codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css.gz +0 -0
  1038. codex/static_root/assets/relation-chips-BuShhy1e.css +0 -1
  1039. codex/static_root/assets/relation-chips-BuShhy1e.css.br +0 -0
  1040. codex/static_root/assets/relation-chips-BuShhy1e.css.gz +0 -0
  1041. codex/static_root/assets/relation-chips-DWjWPY3v.d76db684e8a8.js +0 -1
  1042. codex/static_root/assets/relation-chips-DWjWPY3v.d76db684e8a8.js.br +0 -0
  1043. codex/static_root/assets/relation-chips-DWjWPY3v.d76db684e8a8.js.gz +0 -0
  1044. codex/static_root/assets/relation-chips-DWjWPY3v.js +0 -1
  1045. codex/static_root/assets/relation-chips-DWjWPY3v.js.br +0 -0
  1046. codex/static_root/assets/relation-chips-DWjWPY3v.js.gz +0 -0
  1047. codex/static_root/assets/settings-drawer-Bu83HJ70.a7672fb29169.js +0 -2
  1048. codex/static_root/assets/settings-drawer-Bu83HJ70.a7672fb29169.js.br +0 -0
  1049. codex/static_root/assets/settings-drawer-Bu83HJ70.a7672fb29169.js.gz +0 -0
  1050. codex/static_root/assets/settings-drawer-Bu83HJ70.js +0 -2
  1051. codex/static_root/assets/settings-drawer-Bu83HJ70.js.br +0 -0
  1052. codex/static_root/assets/settings-drawer-Bu83HJ70.js.gz +0 -0
  1053. codex/static_root/assets/settings-drawer-WyG6HLH-.css +0 -1
  1054. codex/static_root/assets/settings-drawer-WyG6HLH-.css.br +0 -0
  1055. codex/static_root/assets/settings-drawer-WyG6HLH-.css.gz +0 -0
  1056. codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css +0 -1
  1057. codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css.br +0 -0
  1058. codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css.gz +0 -0
  1059. codex/static_root/assets/ssrBoot-CYaxTeZo.308983ed6c53.js +0 -1
  1060. codex/static_root/assets/ssrBoot-CYaxTeZo.308983ed6c53.js.br +0 -0
  1061. codex/static_root/assets/ssrBoot-CYaxTeZo.308983ed6c53.js.gz +0 -0
  1062. codex/static_root/assets/ssrBoot-CYaxTeZo.js +0 -1
  1063. codex/static_root/assets/ssrBoot-CYaxTeZo.js.br +0 -0
  1064. codex/static_root/assets/ssrBoot-CYaxTeZo.js.gz +0 -0
  1065. codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css +0 -1
  1066. codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css.br +0 -0
  1067. codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css.gz +0 -0
  1068. codex/static_root/assets/stats-tab-CGY8r-es.css +0 -1
  1069. codex/static_root/assets/stats-tab-CGY8r-es.css.br +0 -0
  1070. codex/static_root/assets/stats-tab-CGY8r-es.css.gz +0 -0
  1071. codex/static_root/assets/stats-tab-aWxmJFqf.ef7a1a878842.js +0 -1
  1072. codex/static_root/assets/stats-tab-aWxmJFqf.ef7a1a878842.js.br +0 -0
  1073. codex/static_root/assets/stats-tab-aWxmJFqf.ef7a1a878842.js.gz +0 -0
  1074. codex/static_root/assets/stats-tab-aWxmJFqf.js +0 -1
  1075. codex/static_root/assets/stats-tab-aWxmJFqf.js.br +0 -0
  1076. codex/static_root/assets/stats-tab-aWxmJFqf.js.gz +0 -0
  1077. codex/static_root/assets/task-tab-fAvDZsSF.607dda8657e0.js +0 -1
  1078. codex/static_root/assets/task-tab-fAvDZsSF.607dda8657e0.js.br +0 -0
  1079. codex/static_root/assets/task-tab-fAvDZsSF.607dda8657e0.js.gz +0 -0
  1080. codex/static_root/assets/task-tab-fAvDZsSF.js +0 -1
  1081. codex/static_root/assets/task-tab-fAvDZsSF.js.br +0 -0
  1082. codex/static_root/assets/task-tab-fAvDZsSF.js.gz +0 -0
  1083. codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css +0 -1
  1084. codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css.br +0 -0
  1085. codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css.gz +0 -0
  1086. codex/static_root/assets/unauthorized-DE63n2Pi.css +0 -1
  1087. codex/static_root/assets/unauthorized-DE63n2Pi.css.br +0 -0
  1088. codex/static_root/assets/unauthorized-DE63n2Pi.css.gz +0 -0
  1089. codex/static_root/assets/unauthorized-T8UCTUHd.16d825eec49d.js +0 -1
  1090. codex/static_root/assets/unauthorized-T8UCTUHd.16d825eec49d.js.br +0 -0
  1091. codex/static_root/assets/unauthorized-T8UCTUHd.16d825eec49d.js.gz +0 -0
  1092. codex/static_root/assets/unauthorized-T8UCTUHd.js +0 -1
  1093. codex/static_root/assets/unauthorized-T8UCTUHd.js.br +0 -0
  1094. codex/static_root/assets/unauthorized-T8UCTUHd.js.gz +0 -0
  1095. codex/static_root/assets/user-tab-CI1MB3ic.ed8693e40a0b.js +0 -1
  1096. codex/static_root/assets/user-tab-CI1MB3ic.ed8693e40a0b.js.br +0 -0
  1097. codex/static_root/assets/user-tab-CI1MB3ic.ed8693e40a0b.js.gz +0 -0
  1098. codex/static_root/assets/user-tab-CI1MB3ic.js +0 -1
  1099. codex/static_root/assets/user-tab-CI1MB3ic.js.br +0 -0
  1100. codex/static_root/assets/user-tab-CI1MB3ic.js.gz +0 -0
  1101. codex/static_root/img/folder.f28936a3701d.svg +0 -1
  1102. codex/static_root/img/folder.f28936a3701d.svg.br +0 -0
  1103. codex/static_root/img/folder.f28936a3701d.svg.gz +0 -0
  1104. codex/static_root/img/imprint.7c2adebb76d6.svg +0 -1
  1105. codex/static_root/img/imprint.7c2adebb76d6.svg.br +0 -0
  1106. codex/static_root/img/imprint.7c2adebb76d6.svg.gz +0 -0
  1107. codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg +0 -1
  1108. codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.br +0 -0
  1109. codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.gz +0 -0
  1110. codex/static_root/img/logo.0f5344a028ca.svg +0 -1
  1111. codex/static_root/img/logo.0f5344a028ca.svg.br +0 -0
  1112. codex/static_root/img/logo.0f5344a028ca.svg.gz +0 -0
  1113. codex/static_root/img/missing-cover-165.0743171f2148.webp +0 -0
  1114. codex/static_root/img/missing-cover.ddb038cc2c56.svg +0 -1
  1115. codex/static_root/img/missing-cover.ddb038cc2c56.svg.br +0 -0
  1116. codex/static_root/img/missing-cover.ddb038cc2c56.svg.gz +0 -0
  1117. codex/static_root/img/series.ec8a889b8f95.svg +0 -1
  1118. codex/static_root/img/series.ec8a889b8f95.svg.br +0 -0
  1119. codex/static_root/img/series.ec8a889b8f95.svg.gz +0 -0
  1120. codex/static_root/img/story-arc.ca10014355ef.svg +0 -1
  1121. codex/static_root/img/story-arc.ca10014355ef.svg.br +0 -1
  1122. codex/static_root/img/story-arc.ca10014355ef.svg.gz +0 -0
  1123. codex/static_root/img/volume.814e4c79461a.svg +0 -1
  1124. codex/static_root/img/volume.814e4c79461a.svg.br +0 -0
  1125. codex/static_root/img/volume.814e4c79461a.svg.gz +0 -0
  1126. codex/static_root/manifest.b23c14b76074.json +0 -757
  1127. codex/static_root/manifest.b23c14b76074.json.br +0 -0
  1128. codex/static_root/manifest.b23c14b76074.json.gz +0 -0
  1129. codex/status.py +0 -35
  1130. codex/status_controller.py +0 -153
  1131. codex/templates/README.md +0 -3
  1132. codex/threads.py +0 -130
  1133. codex/views/README.md +0 -4
  1134. codex/views/browser/filters/search/aliases.py +0 -81
  1135. codex/views/browser/metadata/metadata.py +0 -83
  1136. codex/websockets/README.md +0 -4
  1137. codex/worker_base.py +0 -14
  1138. codex-1.7.14.dist-info/METADATA +0 -599
  1139. codex-1.7.14.dist-info/RECORD +0 -1052
  1140. codex-1.7.14.dist-info/WHEEL +0 -4
  1141. codex-1.7.14.dist-info/entry_points.txt +0 -3
  1142. {codex-1.7.14.dist-info → codex-1.8.0.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1 @@
1
+ import{cv as q,p as y,g as N,bX as ft,f as Ee,c as b,h as C,cp as Ie,cn as W,cw as we,cx as vt,cy as mt,cz as gt,cd as $,cA as le,j as ue,c9 as ht,bq as Le,m as X,cB as bt,ca as yt,cl as Te,t as g,b as S,d as k,F as pt,aA as M,J as G,az as K,u as D,a as _,n as L,bP as J,bt as Ct,aV as Re,i as wt,bl as Ne,aU as ge,ct as ce,e as $e,bk as St,cC as xt,bE as ze,bD as _t,cD as kt,bZ as Bt,aT as Oe,cE as Vt,cF as Pt,cG as Et,cH as It,K as de,r as Ae,bn as De,be as Lt,b7 as fe,bi as Tt,aC as We,bs as Fe,H as Rt,cI as Se,aW as He,S as Nt,A as $t}from"./main-0gkU-bgy.js";const Me=["top","bottom"],zt=["start","end","left","right"];function Ot(e,t){let[n,s]=e.split(" ");return s||(s=q(Me,n)?"start":q(zt,n)?"top":"center"),{side:xe(n,t),align:xe(s,t)}}function xe(e,t){return e==="start"?t?"right":"left":e==="end"?t?"left":"right":e}function xn(e){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.side],align:e.align}}function _n(e){return{side:e.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.align]}}function kn(e){return{side:e.align,align:e.side}}function Bn(e){return q(Me,e.side)?"y":"x"}class R{constructor(t){let{x:n,y:s,width:i,height:a}=t;this.x=n,this.y=s,this.width=i,this.height=a}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function Vn(e,t){return{x:{before:Math.max(0,t.left-e.left),after:Math.max(0,e.right-t.right)},y:{before:Math.max(0,t.top-e.top),after:Math.max(0,e.bottom-t.bottom)}}}function Pn(e){return Array.isArray(e)?new R({x:e[0],y:e[1],width:0,height:0}):e.getBoundingClientRect()}function En(e){if(e===document.documentElement)return visualViewport?new R({x:visualViewport.scale>1?0:visualViewport.offsetLeft,y:visualViewport.scale>1?0:visualViewport.offsetTop,width:visualViewport.width*visualViewport.scale,height:visualViewport.height*visualViewport.scale}):new R({x:0,y:0,width:document.documentElement.clientWidth,height:document.documentElement.clientHeight});{const t=e.getBoundingClientRect();return new R({x:t.x,y:t.y,width:e.clientWidth,height:e.clientHeight})}}function In(e){const t=e.getBoundingClientRect(),n=getComputedStyle(e),s=n.transform;if(s){let i,a,r,o,l;if(s.startsWith("matrix3d("))i=s.slice(9,-1).split(/, /),a=Number(i[0]),r=Number(i[5]),o=Number(i[12]),l=Number(i[13]);else if(s.startsWith("matrix("))i=s.slice(7,-1).split(/, /),a=Number(i[0]),r=Number(i[3]),o=Number(i[4]),l=Number(i[5]);else return new R(t);const c=n.transformOrigin,f=t.x-o-(1-a)*parseFloat(c),m=t.y-l-(1-r)*parseFloat(c.slice(c.indexOf(" ")+1)),u=a?t.width/a:e.offsetWidth+1,v=r?t.height/r:e.offsetHeight+1;return new R({x:f,y:m,width:u,height:v})}else return new R(t)}function Ln(e,t,n){if(typeof e.animate>"u")return{finished:Promise.resolve()};let s;try{s=e.animate(t,n)}catch{return{finished:Promise.resolve()}}return typeof s.finished>"u"&&(s.finished=new Promise(i=>{s.onfinish=()=>{i(s)}})),s}const Tn="cubic-bezier(0.4, 0, 0.2, 1)",Rn="cubic-bezier(0.0, 0, 0.2, 1)",Nn="cubic-bezier(0.4, 0, 1, 1)",j=y({tag:{type:[String,Object,Function],default:"div"}},"tag"),At=y({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),ne=N(!1)({name:"VDefaultsProvider",props:At(),setup(e,t){let{slots:n}=t;const{defaults:s,disabled:i,reset:a,root:r,scoped:o}=ft(e);return Ee(s,{reset:a,root:r,scoped:o,disabled:i}),()=>n.default?.()}}),Dt=y({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function Wt(e){return{dimensionStyles:b(()=>{const n={},s=C(e.height),i=C(e.maxHeight),a=C(e.maxWidth),r=C(e.minHeight),o=C(e.minWidth),l=C(e.width);return s!=null&&(n.height=s),i!=null&&(n.maxHeight=i),a!=null&&(n.maxWidth=a),r!=null&&(n.minHeight=r),o!=null&&(n.minWidth=o),l!=null&&(n.width=l),n})}}function he(e){return Ie(()=>{const t=W(e),n=[],s={};if(t.background)if(we(t.background)){if(s.backgroundColor=t.background,!t.text&&vt(t.background)){const i=mt(t.background);if(i.a==null||i.a===1){const a=gt(i);s.color=a,s.caretColor=a}}}else n.push(`bg-${t.background}`);return t.text&&(we(t.text)?(s.color=t.text,s.caretColor=t.text):n.push(`text-${t.text}`)),{colorClasses:n,colorStyles:s}})}function U(e){const{colorClasses:t,colorStyles:n}=he(()=>({text:W(e)}));return{textColorClasses:t,textColorStyles:n}}function se(e){const{colorClasses:t,colorStyles:n}=he(()=>({background:W(e)}));return{backgroundColorClasses:t,backgroundColorStyles:n}}const be=y({rounded:{type:[Boolean,Number,String],default:void 0},tile:Boolean},"rounded");function ye(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{roundedClasses:b(()=>{const s=le(e)?e.value:e.rounded,i=le(e)?e.value:e.tile,a=[];if(s===!0||s==="")a.push(`${t}--rounded`);else if(typeof s=="string"||s===0)for(const r of String(s).split(" "))a.push(`rounded-${r}`);else(i||s===!1)&&a.push("rounded-0");return a})}}const $n=y({transition:{type:null,default:"fade-transition",validator:e=>e!==!0}},"transition"),zn=(e,t)=>{let{slots:n}=t;const{transition:s,disabled:i,group:a,...r}=e,{component:o=a?ht:Le,...l}=ue(s)?s:{};let c;return ue(s)?c=X(l,bt({disabled:i,group:a}),r):c=X({name:i||!s?"":s},r),yt(o,c,n)};function Ft(e,t){if(!Te)return;const n=t.modifiers||{},s=t.value,{handler:i,options:a}=typeof s=="object"?s:{handler:s,options:{}},r=new IntersectionObserver(function(){let o=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],l=arguments.length>1?arguments[1]:void 0;const c=e._observe?.[t.instance.$.uid];if(!c)return;const f=o.some(m=>m.isIntersecting);i&&(!n.quiet||c.init)&&(!n.once||f||c.init)&&i(f,o,l),f&&n.once?Ge(e,t):c.init=!0},a);e._observe=Object(e._observe),e._observe[t.instance.$.uid]={init:!1,observer:r},r.observe(e)}function Ge(e,t){const n=e._observe?.[t.instance.$.uid];n&&(n.observer.unobserve(e),delete e._observe[t.instance.$.uid])}const On={mounted:Ft,unmounted:Ge},je=y({border:[Boolean,Number,String]},"border");function qe(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{borderClasses:b(()=>{const s=e.border;return s===!0||s===""?`${t}--border`:typeof s=="string"||s===0?String(s).split(" ").map(i=>`border-${i}`):[]})}}const Xe=y({elevation:{type:[Number,String],validator(e){const t=parseInt(e);return!isNaN(t)&&t>=0&&t<=24}}},"elevation");function Ue(e){return{elevationClasses:g(()=>{const n=le(e)?e.value:e.elevation;return n==null?[]:[`elevation-${n}`]})}}const Ht=["elevated","flat","tonal","outlined","text","plain"];function Mt(e,t){return S(pt,null,[e&&S("span",{key:"overlay",class:k(`${t}__overlay`)},null),S("span",{key:"underlay",class:k(`${t}__underlay`)},null)])}const Ye=y({color:String,variant:{type:String,default:"elevated",validator:e=>Ht.includes(e)}},"variant");function Gt(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();const n=g(()=>{const{variant:a}=W(e);return`${t}--variant-${a}`}),{colorClasses:s,colorStyles:i}=he(()=>{const{variant:a,color:r}=W(e);return{[["elevated","flat"].includes(a)?"background":"text"]:r}});return{colorClasses:s,colorStyles:i,variantClasses:n}}const jt=[null,"default","comfortable","compact"],Ke=y({density:{type:String,default:"default",validator:e=>jt.includes(e)}},"density");function Je(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{densityClasses:g(()=>`${t}--density-${e.density}`)}}const Ze=y({baseColor:String,divided:Boolean,direction:{type:String,default:"horizontal"},...je(),...G(),...Ke(),...Xe(),...be(),...j(),...M(),...Ye()},"VBtnGroup"),_e=N()({name:"VBtnGroup",props:Ze(),setup(e,t){let{slots:n}=t;const{themeClasses:s}=K(e),{densityClasses:i}=Je(e),{borderClasses:a}=qe(e),{elevationClasses:r}=Ue(e),{roundedClasses:o}=ye(e);Ee({VBtn:{height:g(()=>e.direction==="horizontal"?"auto":null),baseColor:g(()=>e.baseColor),color:g(()=>e.color),density:g(()=>e.density),flat:!0,variant:g(()=>e.variant)}}),D(()=>_(e.tag,{class:k(["v-btn-group",`v-btn-group--${e.direction}`,{"v-btn-group--divided":e.divided},s.value,a.value,i.value,r.value,o.value,e.class]),style:L(e.style)},n))}}),qt=y({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),Xt=y({value:null,disabled:Boolean,selectedClass:String},"group-item");function Ut(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;const s=J("useGroupItem");if(!s)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const i=Ct();Re(Symbol.for(`${t.description}:id`),i);const a=wt(t,null);if(!a){if(!n)return a;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${t.description}`)}const r=g(()=>e.value),o=b(()=>!!(a.disabled.value||e.disabled));a.register({id:i,value:r,disabled:o},s),Ne(()=>{a.unregister(i)});const l=b(()=>a.isSelected(i)),c=b(()=>a.items.value[0].id===i),f=b(()=>a.items.value[a.items.value.length-1].id===i),m=b(()=>l.value&&[a.selectedClass.value,e.selectedClass]);return ge(l,u=>{s.emit("group:selected",{value:u})},{flush:"sync"}),{id:i,isSelected:l,isFirst:c,isLast:f,toggle:()=>a.select(i,!l.value),select:u=>a.select(i,u),selectedClass:m,value:r,disabled:o,group:a}}function Yt(e,t){let n=!1;const s=ce([]),i=$e(e,"modelValue",[],u=>u==null?[]:Qe(s,_t(u)),u=>{const v=Jt(s,u);return e.multiple?v:v[0]}),a=J("useGroup");function r(u,v){const p=u,d=Symbol.for(`${t.description}:id`),w=kt(d,a?.vnode).indexOf(v);Bt(p.value)==null&&(p.value=w,p.useIndexAsValue=!0),w>-1?s.splice(w,0,p):s.push(p)}function o(u){if(n)return;l();const v=s.findIndex(p=>p.id===u);s.splice(v,1)}function l(){const u=s.find(v=>!v.disabled);u&&e.mandatory==="force"&&!i.value.length&&(i.value=[u.id])}St(()=>{l()}),Ne(()=>{n=!0}),xt(()=>{for(let u=0;u<s.length;u++)s[u].useIndexAsValue&&(s[u].value=u)});function c(u,v){const p=s.find(d=>d.id===u);if(!(v&&p?.disabled))if(e.multiple){const d=i.value.slice(),h=d.findIndex(P=>P===u),w=~h;if(v=v??!w,w&&e.mandatory&&d.length<=1||!w&&e.max!=null&&d.length+1>e.max)return;h<0&&v?d.push(u):h>=0&&!v&&d.splice(h,1),i.value=d}else{const d=i.value.includes(u);if(e.mandatory&&d||!d&&!v)return;i.value=v??!d?[u]:[]}}function f(u){if(e.multiple,i.value.length){const v=i.value[0],p=s.findIndex(w=>w.id===v);let d=(p+u)%s.length,h=s[d];for(;h.disabled&&d!==p;)d=(d+u)%s.length,h=s[d];if(h.disabled)return;i.value=[s[d].id]}else{const v=s.find(p=>!p.disabled);v&&(i.value=[v.id])}}const m={register:r,unregister:o,selected:i,select:c,disabled:g(()=>e.disabled),prev:()=>f(s.length-1),next:()=>f(1),isSelected:u=>i.value.includes(u),selectedClass:g(()=>e.selectedClass),items:g(()=>s),getItemIndex:u=>Kt(s,u)};return Re(t,m),m}function Kt(e,t){const n=Qe(e,[t]);return n.length?e.findIndex(s=>s.id===n[0]):-1}function Qe(e,t){const n=[];return t.forEach(s=>{const i=e.find(r=>ze(s,r.value)),a=e[s];i?.value!=null?n.push(i.id):a?.useIndexAsValue&&n.push(a.id)}),n}function Jt(e,t){const n=[];return t.forEach(s=>{const i=e.findIndex(a=>a.id===s);if(~i){const a=e[i];n.push(a.value!=null?a.value:i)}}),n}const et=Symbol.for("vuetify:v-btn-toggle"),Zt=y({...Ze(),...qt()},"VBtnToggle");N()({name:"VBtnToggle",props:Zt(),emits:{"update:modelValue":e=>!0},setup(e,t){let{slots:n}=t;const{isSelected:s,next:i,prev:a,select:r,selected:o}=Yt(e,et);return D(()=>{const l=_e.filterProps(e);return _(_e,X({class:["v-btn-toggle",e.class]},l,{style:e.style}),{default:()=>[n.default?.({isSelected:s,next:i,prev:a,select:r,selected:o})]})}),{next:i,prev:a,select:r}}});const Qt=["x-small","small","default","large","x-large"],pe=y({size:{type:[String,Number],default:"default"}},"size");function Ce(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return Ie(()=>{const n=e.size;let s,i;return q(Qt,n)?s=`${t}--size-${n}`:n&&(i={width:C(n),height:C(n)}),{sizeClasses:s,sizeStyles:i}})}const en=y({color:String,disabled:Boolean,start:Boolean,end:Boolean,icon:de,opacity:[String,Number],...G(),...pe(),...j({tag:"i"}),...M()},"VIcon"),ae=N()({name:"VIcon",props:en(),setup(e,t){let{attrs:n,slots:s}=t;const i=Oe(),{themeClasses:a}=Vt(),{iconData:r}=Pt(()=>i.value||e.icon),{sizeClasses:o}=Ce(e),{textColorClasses:l,textColorStyles:c}=U(()=>e.color);return D(()=>{const f=s.default?.();f&&(i.value=Et(f).filter(u=>u.type===It&&u.children&&typeof u.children=="string")[0]?.children);const m=!!(n.onClick||n.onClickOnce);return _(r.value.component,{tag:e.tag,icon:r.value.icon,class:k(["v-icon","notranslate",a.value,o.value,l.value,{"v-icon--clickable":m,"v-icon--disabled":e.disabled,"v-icon--start":e.start,"v-icon--end":e.end},e.class]),style:L([{"--v-icon-opacity":e.opacity},o.value?void 0:{fontSize:C(e.size),height:C(e.size),width:C(e.size)},c.value,e.style]),role:m?"button":void 0,"aria-hidden":!m,tabindex:m?e.disabled?-1:0:void 0},{default:()=>[f]})}),{}}});function tt(e,t){const n=Ae(),s=Oe(!1);if(Te){const i=new IntersectionObserver(a=>{s.value=!!a.find(r=>r.isIntersecting)},t);De(()=>{i.disconnect()}),ge(n,(a,r)=>{r&&(i.unobserve(r),s.value=!1),a&&i.observe(a)},{flush:"post"})}return{intersectionRef:n,isIntersecting:s}}const tn=y({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...G(),...pe(),...j({tag:"div"}),...M()},"VProgressCircular"),nn=N()({name:"VProgressCircular",props:tn(),setup(e,t){let{slots:n}=t;const s=20,i=2*Math.PI*s,a=Ae(),{themeClasses:r}=K(e),{sizeClasses:o,sizeStyles:l}=Ce(e),{textColorClasses:c,textColorStyles:f}=U(()=>e.color),{textColorClasses:m,textColorStyles:u}=U(()=>e.bgColor),{intersectionRef:v,isIntersecting:p}=tt(),{resizeRef:d,contentRect:h}=Lt(),w=g(()=>fe(parseFloat(e.modelValue),0,100)),P=g(()=>Number(e.width)),E=g(()=>l.value?Number(e.size):h.value?h.value.width:Math.max(P.value,32)),V=g(()=>s/(1-P.value/E.value)*2),T=g(()=>P.value/E.value*V.value),z=g(()=>C((100-w.value)/100*i));return Tt(()=>{v.value=a.value,d.value=a.value}),D(()=>_(e.tag,{ref:a,class:k(["v-progress-circular",{"v-progress-circular--indeterminate":!!e.indeterminate,"v-progress-circular--visible":p.value,"v-progress-circular--disable-shrink":e.indeterminate==="disable-shrink"},r.value,o.value,c.value,e.class]),style:L([l.value,f.value,e.style]),role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":e.indeterminate?void 0:w.value},{default:()=>[S("svg",{style:{transform:`rotate(calc(-90deg + ${Number(e.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${V.value} ${V.value}`},[S("circle",{class:k(["v-progress-circular__underlay",m.value]),style:L(u.value),fill:"transparent",cx:"50%",cy:"50%",r:s,"stroke-width":T.value,"stroke-dasharray":i,"stroke-dashoffset":0},null),S("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:s,"stroke-width":T.value,"stroke-dasharray":i,"stroke-dashoffset":z.value},null)]),n.default&&S("div",{class:"v-progress-circular__content"},[n.default({value:w.value})])]})),{}}}),ke={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},nt=y({location:String},"location");function st(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,n=arguments.length>2?arguments[2]:void 0;const{isRtl:s}=We();return{locationStyles:b(()=>{if(!e.location)return{};const{side:a,align:r}=Ot(e.location.split(" ").length>1?e.location:`${e.location} center`,s.value);function o(c){return n?n(c):0}const l={};return a!=="center"&&(t?l[ke[a]]=`calc(100% - ${o(a)}px)`:l[a]=0),r!=="center"?t?l[ke[r]]=`calc(100% - ${o(r)}px)`:l[r]=0:(a==="center"?l.top=l.left="50%":l[{top:"left",bottom:"left",left:"top",right:"top"}[a]]="50%",l.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[a]),l})}}const sn=y({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},bufferColor:String,bufferOpacity:[Number,String],clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},opacity:[Number,String],reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...G(),...nt({location:"top"}),...be(),...j(),...M()},"VProgressLinear"),an=N()({name:"VProgressLinear",props:sn(),emits:{"update:modelValue":e=>!0},setup(e,t){let{slots:n}=t;const s=$e(e,"modelValue"),{isRtl:i,rtlClasses:a}=We(),{themeClasses:r}=K(e),{locationStyles:o}=st(e),{textColorClasses:l,textColorStyles:c}=U(()=>e.color),{backgroundColorClasses:f,backgroundColorStyles:m}=se(()=>e.bgColor||e.color),{backgroundColorClasses:u,backgroundColorStyles:v}=se(()=>e.bufferColor||e.bgColor||e.color),{backgroundColorClasses:p,backgroundColorStyles:d}=se(()=>e.color),{roundedClasses:h}=ye(e),{intersectionRef:w,isIntersecting:P}=tt(),E=b(()=>parseFloat(e.max)),V=b(()=>parseFloat(e.height)),T=b(()=>fe(parseFloat(e.bufferValue)/E.value*100,0,100)),z=b(()=>fe(parseFloat(s.value)/E.value*100,0,100)),I=b(()=>i.value!==e.reverse),Z=b(()=>e.indeterminate?"fade-transition":"slide-x-transition"),O=Fe&&window.matchMedia?.("(forced-colors: active)").matches;function Q(x){if(!w.value)return;const{left:ee,right:te,width:A}=w.value.getBoundingClientRect(),dt=I.value?A-x.clientX+(te-A):x.clientX-ee;s.value=Math.round(dt/A*E.value)}return D(()=>_(e.tag,{ref:w,class:k(["v-progress-linear",{"v-progress-linear--absolute":e.absolute,"v-progress-linear--active":e.active&&P.value,"v-progress-linear--reverse":I.value,"v-progress-linear--rounded":e.rounded,"v-progress-linear--rounded-bar":e.roundedBar,"v-progress-linear--striped":e.striped},h.value,r.value,a.value,e.class]),style:L([{bottom:e.location==="bottom"?0:void 0,top:e.location==="top"?0:void 0,height:e.active?C(V.value):0,"--v-progress-linear-height":C(V.value),...e.absolute?o.value:{}},e.style]),role:"progressbar","aria-hidden":e.active?"false":"true","aria-valuemin":"0","aria-valuemax":e.max,"aria-valuenow":e.indeterminate?void 0:Math.min(parseFloat(s.value),E.value),onClick:e.clickable&&Q},{default:()=>[e.stream&&S("div",{key:"stream",class:k(["v-progress-linear__stream",l.value]),style:{...c.value,[I.value?"left":"right"]:C(-V.value),borderTop:`${C(V.value/2)} dotted`,opacity:parseFloat(e.bufferOpacity),top:`calc(50% - ${C(V.value/4)})`,width:C(100-T.value,"%"),"--v-progress-linear-stream-to":C(V.value*(I.value?1:-1))}},null),S("div",{class:k(["v-progress-linear__background",O?void 0:f.value]),style:L([m.value,{opacity:parseFloat(e.bgOpacity),width:e.stream?0:void 0}])},null),S("div",{class:k(["v-progress-linear__buffer",O?void 0:u.value]),style:L([v.value,{opacity:parseFloat(e.bufferOpacity),width:C(T.value,"%")}])},null),_(Le,{name:Z.value},{default:()=>[e.indeterminate?S("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(x=>S("div",{key:x,class:k(["v-progress-linear__indeterminate",x,O?void 0:p.value]),style:L(d.value)},null))]):S("div",{class:k(["v-progress-linear__determinate",O?void 0:p.value]),style:L([d.value,{width:C(z.value,"%")}])},null)]}),n.default&&S("div",{class:"v-progress-linear__content"},[n.default({value:z.value,buffer:T.value})])]})),{}}}),rn=y({loading:[Boolean,String]},"loader");function on(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{loaderClasses:g(()=>({[`${t}--loading`]:e.loading}))}}function An(e,t){let{slots:n}=t;return S("div",{class:k(`${e.name}__loader`)},[n.default?.({color:e.color,isActive:e.active})||_(an,{absolute:e.absolute,active:e.active,color:e.color,height:"2",indeterminate:!0},null)])}const ln=["static","relative","fixed","absolute","sticky"],un=y({position:{type:String,validator:e=>ln.includes(e)}},"position");function cn(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{positionClasses:g(()=>e.position?`${t}--${e.position}`:void 0)}}function dn(){const e=J("useRoute");return b(()=>e?.proxy?.$route)}function Dn(){return J("useRouter")?.proxy?.$router}function fn(e,t){const n=Rt("RouterLink"),s=g(()=>!!(e.href||e.to)),i=b(()=>s?.value||Se(t,"click")||Se(e,"click"));if(typeof n=="string"||!("useLink"in n)){const f=g(()=>e.href);return{isLink:s,isClickable:i,href:f,linkProps:ce({href:f})}}const a=n.useLink({to:g(()=>e.to||""),replace:g(()=>e.replace)}),r=b(()=>e.to?a:void 0),o=dn(),l=b(()=>r.value?e.exact?o.value?r.value.isExactActive?.value&&ze(r.value.route.value.query,o.value.query):r.value.isExactActive?.value??!1:r.value.isActive?.value??!1:!1),c=b(()=>e.to?r.value?.route.value.href:e.href);return{isLink:s,isClickable:i,isActive:l,route:r.value?.route,navigate:r.value?.navigate,href:c,linkProps:ce({href:c,"aria-current":g(()=>l.value?"page":void 0)})}}const vn=y({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let ie=!1;function Wn(e,t){let n=!1,s,i;Fe&&e?.beforeEach&&(He(()=>{window.addEventListener("popstate",a),s=e.beforeEach((r,o,l)=>{ie?n?t(l):l():setTimeout(()=>n?t(l):l()),ie=!0}),i=e?.afterEach(()=>{ie=!1})}),De(()=>{window.removeEventListener("popstate",a),s?.(),i?.()}));function a(r){r.state?.replaced||(n=!0,setTimeout(()=>n=!1))}}function mn(e,t){ge(()=>e.isActive?.value,n=>{e.isLink.value&&n!=null&&t&&He(()=>{t(n)})},{immediate:!0})}const ve=Symbol("rippleStop"),gn=80;function Be(e,t){e.style.transform=t,e.style.webkitTransform=t}function me(e){return e.constructor.name==="TouchEvent"}function at(e){return e.constructor.name==="KeyboardEvent"}const hn=function(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},s=0,i=0;if(!at(e)){const m=t.getBoundingClientRect(),u=me(e)?e.touches[e.touches.length-1]:e;s=u.clientX-m.left,i=u.clientY-m.top}let a=0,r=.3;t._ripple?.circle?(r=.15,a=t.clientWidth/2,a=n.center?a:a+Math.sqrt((s-a)**2+(i-a)**2)/4):a=Math.sqrt(t.clientWidth**2+t.clientHeight**2)/2;const o=`${(t.clientWidth-a*2)/2}px`,l=`${(t.clientHeight-a*2)/2}px`,c=n.center?o:`${s-a}px`,f=n.center?l:`${i-a}px`;return{radius:a,scale:r,x:c,y:f,centerX:o,centerY:l}},Y={show(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!t?._ripple?.enabled)return;const s=document.createElement("span"),i=document.createElement("span");s.appendChild(i),s.className="v-ripple__container",n.class&&(s.className+=` ${n.class}`);const{radius:a,scale:r,x:o,y:l,centerX:c,centerY:f}=hn(e,t,n),m=`${a*2}px`;i.className="v-ripple__animation",i.style.width=m,i.style.height=m,t.appendChild(s);const u=window.getComputedStyle(t);u&&u.position==="static"&&(t.style.position="relative",t.dataset.previousPosition="static"),i.classList.add("v-ripple__animation--enter"),i.classList.add("v-ripple__animation--visible"),Be(i,`translate(${o}, ${l}) scale3d(${r},${r},${r})`),i.dataset.activated=String(performance.now()),requestAnimationFrame(()=>{requestAnimationFrame(()=>{i.classList.remove("v-ripple__animation--enter"),i.classList.add("v-ripple__animation--in"),Be(i,`translate(${c}, ${f}) scale3d(1,1,1)`)})})},hide(e){if(!e?._ripple?.enabled)return;const t=e.getElementsByClassName("v-ripple__animation");if(t.length===0)return;const n=t[t.length-1];if(n.dataset.isHiding)return;n.dataset.isHiding="true";const s=performance.now()-Number(n.dataset.activated),i=Math.max(250-s,0);setTimeout(()=>{n.classList.remove("v-ripple__animation--in"),n.classList.add("v-ripple__animation--out"),setTimeout(()=>{e.getElementsByClassName("v-ripple__animation").length===1&&e.dataset.previousPosition&&(e.style.position=e.dataset.previousPosition,delete e.dataset.previousPosition),n.parentNode?.parentNode===e&&e.removeChild(n.parentNode)},300)},i)}};function it(e){return typeof e>"u"||!!e}function F(e){const t={},n=e.currentTarget;if(!(!n?._ripple||n._ripple.touched||e[ve])){if(e[ve]=!0,me(e))n._ripple.touched=!0,n._ripple.isTouch=!0;else if(n._ripple.isTouch)return;if(t.center=n._ripple.centered||at(e),n._ripple.class&&(t.class=n._ripple.class),me(e)){if(n._ripple.showTimerCommit)return;n._ripple.showTimerCommit=()=>{Y.show(e,n,t)},n._ripple.showTimer=window.setTimeout(()=>{n?._ripple?.showTimerCommit&&(n._ripple.showTimerCommit(),n._ripple.showTimerCommit=null)},gn)}else Y.show(e,n,t)}}function Ve(e){e[ve]=!0}function B(e){const t=e.currentTarget;if(t?._ripple){if(window.clearTimeout(t._ripple.showTimer),e.type==="touchend"&&t._ripple.showTimerCommit){t._ripple.showTimerCommit(),t._ripple.showTimerCommit=null,t._ripple.showTimer=window.setTimeout(()=>{B(e)});return}window.setTimeout(()=>{t._ripple&&(t._ripple.touched=!1)}),Y.hide(t)}}function rt(e){const t=e.currentTarget;t?._ripple&&(t._ripple.showTimerCommit&&(t._ripple.showTimerCommit=null),window.clearTimeout(t._ripple.showTimer))}let H=!1;function Pe(e,t){!H&&t.includes(e.key)&&(H=!0,F(e))}function ot(e){H=!1,B(e)}function lt(e){H&&(H=!1,B(e))}function ut(e,t,n){const{value:s,modifiers:i}=t,a=it(s);a||Y.hide(e),e._ripple=e._ripple??{},e._ripple.enabled=a,e._ripple.centered=i.center,e._ripple.circle=i.circle;const r=ue(s)?s:{};r.class&&(e._ripple.class=r.class);const o=r.keys??["Enter","Space"];if(e._ripple.keyDownHandler=l=>Pe(l,o),a&&!n){if(i.stop){e.addEventListener("touchstart",Ve,{passive:!0}),e.addEventListener("mousedown",Ve);return}e.addEventListener("touchstart",F,{passive:!0}),e.addEventListener("touchend",B,{passive:!0}),e.addEventListener("touchmove",rt,{passive:!0}),e.addEventListener("touchcancel",B),e.addEventListener("mousedown",F),e.addEventListener("mouseup",B),e.addEventListener("mouseleave",B),e.addEventListener("keydown",l=>Pe(l,o)),e.addEventListener("keyup",ot),e.addEventListener("blur",lt),e.addEventListener("dragstart",B,{passive:!0})}else!a&&n&&ct(e)}function ct(e){e.removeEventListener("mousedown",F),e.removeEventListener("touchstart",F),e.removeEventListener("touchend",B),e.removeEventListener("touchmove",rt),e.removeEventListener("touchcancel",B),e.removeEventListener("mouseup",B),e.removeEventListener("mouseleave",B),e._ripple?.keyDownHandler&&e.removeEventListener("keydown",e._ripple.keyDownHandler),e.removeEventListener("keyup",ot),e.removeEventListener("dragstart",B),e.removeEventListener("blur",lt)}function bn(e,t){ut(e,t,!1)}function yn(e){ct(e),delete e._ripple}function pn(e,t){if(t.value===t.oldValue)return;const n=it(t.oldValue);ut(e,t,n)}const Cn={mounted:bn,unmounted:yn,updated:pn},wn=y({active:{type:Boolean,default:void 0},activeColor:String,baseColor:String,symbol:{type:null,default:et},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:de,appendIcon:de,block:Boolean,readonly:Boolean,slim:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:{type:[String,Number,Boolean],default:void 0},...je(),...G(),...Ke(),...Dt(),...Xe(),...Xt(),...rn(),...nt(),...un(),...be(),...vn(),...pe(),...j({tag:"button"}),...M(),...Ye({variant:"elevated"})},"VBtn"),Fn=N()({name:"VBtn",props:wn(),emits:{"group:selected":e=>!0},setup(e,t){let{attrs:n,slots:s}=t;const{themeClasses:i}=K(e),{borderClasses:a}=qe(e),{densityClasses:r}=Je(e),{dimensionStyles:o}=Wt(e),{elevationClasses:l}=Ue(e),{loaderClasses:c}=on(e),{locationStyles:f}=st(e),{positionClasses:m}=cn(e),{roundedClasses:u}=ye(e),{sizeClasses:v,sizeStyles:p}=Ce(e),d=Ut(e,e.symbol,!1),h=fn(e,n),w=b(()=>e.active!==void 0?e.active:h.isLink.value?h.isActive?.value:d?.isSelected.value),P=g(()=>w.value?e.activeColor??e.color:e.color),E=b(()=>({color:d?.isSelected.value&&(!h.isLink.value||h.isActive?.value)||!d||h.isActive?.value?P.value??e.baseColor:e.baseColor,variant:e.variant})),{colorClasses:V,colorStyles:T,variantClasses:z}=Gt(E),I=b(()=>d?.disabled.value||e.disabled),Z=g(()=>e.variant==="elevated"&&!(e.disabled||e.flat||e.border)),O=b(()=>{if(!(e.value===void 0||typeof e.value=="symbol"))return Object(e.value)===e.value?JSON.stringify(e.value,null,0):e.value});function Q(x){I.value||h.isLink.value&&(x.metaKey||x.ctrlKey||x.shiftKey||x.button!==0||n.target==="_blank")||(h.navigate?.(x),d?.toggle())}return mn(h,d?.select),D(()=>{const x=h.isLink.value?"a":e.tag,ee=!!(e.prependIcon||s.prepend),te=!!(e.appendIcon||s.append),A=!!(e.icon&&e.icon!==!0);return Nt(_(x,X({type:x==="a"?void 0:"button",class:["v-btn",d?.selectedClass.value,{"v-btn--active":w.value,"v-btn--block":e.block,"v-btn--disabled":I.value,"v-btn--elevated":Z.value,"v-btn--flat":e.flat,"v-btn--icon":!!e.icon,"v-btn--loading":e.loading,"v-btn--readonly":e.readonly,"v-btn--slim":e.slim,"v-btn--stacked":e.stacked},i.value,a.value,V.value,r.value,l.value,c.value,m.value,u.value,v.value,z.value,e.class],style:[T.value,o.value,f.value,p.value,e.style],"aria-busy":e.loading?!0:void 0,disabled:I.value||void 0,tabindex:e.loading||e.readonly?-1:void 0,onClick:Q,value:O.value},h.linkProps),{default:()=>[Mt(!0,"v-btn"),!e.icon&&ee&&S("span",{key:"prepend",class:"v-btn__prepend"},[s.prepend?_(ne,{key:"prepend-defaults",disabled:!e.prependIcon,defaults:{VIcon:{icon:e.prependIcon}}},s.prepend):_(ae,{key:"prepend-icon",icon:e.prependIcon},null)]),S("span",{class:"v-btn__content","data-no-activator":""},[!s.default&&A?_(ae,{key:"content-icon",icon:e.icon},null):_(ne,{key:"content-defaults",disabled:!A,defaults:{VIcon:{icon:e.icon}}},{default:()=>[s.default?.()??$t(e.text)]})]),!e.icon&&te&&S("span",{key:"append",class:"v-btn__append"},[s.append?_(ne,{key:"append-defaults",disabled:!e.appendIcon,defaults:{VIcon:{icon:e.appendIcon}}},s.append):_(ae,{key:"append-icon",icon:e.appendIcon},null)]),!!e.loading&&S("span",{key:"loader",class:"v-btn__loader"},[s.loader?.()??_(nn,{color:typeof e.loading=="boolean"?void 0:e.loading,indeterminate:!0,width:"2"},null)])]}),[[Cn,!I.value&&e.ripple,"",{center:!!e.icon}]])}),{group:d}}}),re=Symbol("Forwarded refs");function oe(e,t){let n=e;for(;n;){const s=Reflect.getOwnPropertyDescriptor(n,t);if(s)return s;n=Object.getPrototypeOf(n)}}function Hn(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),s=1;s<t;s++)n[s-1]=arguments[s];return e[re]=n,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 n)if(r.value&&Reflect.has(r.value,a)){const o=Reflect.get(r.value,a);return typeof o=="function"?o.bind(r.value):o}}},has(i,a){if(Reflect.has(i,a))return!0;if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const r of n)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 o of n)if(o.value&&Reflect.has(o.value,a))return Reflect.set(o.value,a,r);return!1},getOwnPropertyDescriptor(i,a){const r=Reflect.getOwnPropertyDescriptor(i,a);if(r)return r;if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const o of n){if(!o.value)continue;const l=oe(o.value,a)??("_"in o.value?oe(o.value._?.setupState,a):void 0);if(l)return l}for(const o of n){const l=o.value&&o.value[re];if(!l)continue;const c=l.slice();for(;c.length;){const f=c.shift(),m=oe(f.value,a);if(m)return m;const u=f.value&&f.value[re];u&&c.push(...u)}}}}})}export{Vn as $,Xt as A,Ye as B,Dn as C,xe as D,on as E,nn as F,pe as G,qt as H,On as I,rn as J,Ce as K,An as L,zn as M,Mt as N,In as O,Nn as P,Rn as Q,Cn as R,Pn as S,Ot as T,xn as U,Fn as V,_n as W,kn as X,R as Y,En as Z,Bn as _,Ln as a,Wn as a0,Je as b,se as c,j as d,Ke as e,Hn as f,fn as g,vn as h,ye as i,be as j,ae as k,ne as l,wn as m,an as n,Wt as o,$n as p,Dt as q,qe as r,Tn as s,Ue as t,U as u,Xe as v,je as w,Gt as x,Yt as y,Ut as z};
@@ -0,0 +1 @@
1
+ import{cv as q,p as y,g as N,bX as ft,f as Ee,c as b,h as C,cp as Ie,cn as W,cw as we,cx as vt,cy as mt,cz as gt,cd as $,cA as le,j as ue,c9 as ht,bq as Le,m as X,cB as bt,ca as yt,cl as Te,t as g,b as S,d as k,F as pt,aA as M,J as G,az as K,u as D,a as _,n as L,bP as J,bt as Ct,aV as Re,i as wt,bl as Ne,aU as ge,ct as ce,e as $e,bk as St,cC as xt,bE as ze,bD as _t,cD as kt,bZ as Bt,aT as Oe,cE as Vt,cF as Pt,cG as Et,cH as It,K as de,r as Ae,bn as De,be as Lt,b7 as fe,bi as Tt,aC as We,bs as Fe,H as Rt,cI as Se,aW as He,S as Nt,A as $t}from"./main-0gkU-bgy.js";const Me=["top","bottom"],zt=["start","end","left","right"];function Ot(e,t){let[n,s]=e.split(" ");return s||(s=q(Me,n)?"start":q(zt,n)?"top":"center"),{side:xe(n,t),align:xe(s,t)}}function xe(e,t){return e==="start"?t?"right":"left":e==="end"?t?"left":"right":e}function xn(e){return{side:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.side],align:e.align}}function _n(e){return{side:e.side,align:{center:"center",top:"bottom",bottom:"top",left:"right",right:"left"}[e.align]}}function kn(e){return{side:e.align,align:e.side}}function Bn(e){return q(Me,e.side)?"y":"x"}class R{constructor(t){let{x:n,y:s,width:i,height:a}=t;this.x=n,this.y=s,this.width=i,this.height=a}get top(){return this.y}get bottom(){return this.y+this.height}get left(){return this.x}get right(){return this.x+this.width}}function Vn(e,t){return{x:{before:Math.max(0,t.left-e.left),after:Math.max(0,e.right-t.right)},y:{before:Math.max(0,t.top-e.top),after:Math.max(0,e.bottom-t.bottom)}}}function Pn(e){return Array.isArray(e)?new R({x:e[0],y:e[1],width:0,height:0}):e.getBoundingClientRect()}function En(e){if(e===document.documentElement)return visualViewport?new R({x:visualViewport.scale>1?0:visualViewport.offsetLeft,y:visualViewport.scale>1?0:visualViewport.offsetTop,width:visualViewport.width*visualViewport.scale,height:visualViewport.height*visualViewport.scale}):new R({x:0,y:0,width:document.documentElement.clientWidth,height:document.documentElement.clientHeight});{const t=e.getBoundingClientRect();return new R({x:t.x,y:t.y,width:e.clientWidth,height:e.clientHeight})}}function In(e){const t=e.getBoundingClientRect(),n=getComputedStyle(e),s=n.transform;if(s){let i,a,r,o,l;if(s.startsWith("matrix3d("))i=s.slice(9,-1).split(/, /),a=Number(i[0]),r=Number(i[5]),o=Number(i[12]),l=Number(i[13]);else if(s.startsWith("matrix("))i=s.slice(7,-1).split(/, /),a=Number(i[0]),r=Number(i[3]),o=Number(i[4]),l=Number(i[5]);else return new R(t);const c=n.transformOrigin,f=t.x-o-(1-a)*parseFloat(c),m=t.y-l-(1-r)*parseFloat(c.slice(c.indexOf(" ")+1)),u=a?t.width/a:e.offsetWidth+1,v=r?t.height/r:e.offsetHeight+1;return new R({x:f,y:m,width:u,height:v})}else return new R(t)}function Ln(e,t,n){if(typeof e.animate>"u")return{finished:Promise.resolve()};let s;try{s=e.animate(t,n)}catch{return{finished:Promise.resolve()}}return typeof s.finished>"u"&&(s.finished=new Promise(i=>{s.onfinish=()=>{i(s)}})),s}const Tn="cubic-bezier(0.4, 0, 0.2, 1)",Rn="cubic-bezier(0.0, 0, 0.2, 1)",Nn="cubic-bezier(0.4, 0, 1, 1)",j=y({tag:{type:[String,Object,Function],default:"div"}},"tag"),At=y({defaults:Object,disabled:Boolean,reset:[Number,String],root:[Boolean,String],scoped:Boolean},"VDefaultsProvider"),ne=N(!1)({name:"VDefaultsProvider",props:At(),setup(e,t){let{slots:n}=t;const{defaults:s,disabled:i,reset:a,root:r,scoped:o}=ft(e);return Ee(s,{reset:a,root:r,scoped:o,disabled:i}),()=>n.default?.()}}),Dt=y({height:[Number,String],maxHeight:[Number,String],maxWidth:[Number,String],minHeight:[Number,String],minWidth:[Number,String],width:[Number,String]},"dimension");function Wt(e){return{dimensionStyles:b(()=>{const n={},s=C(e.height),i=C(e.maxHeight),a=C(e.maxWidth),r=C(e.minHeight),o=C(e.minWidth),l=C(e.width);return s!=null&&(n.height=s),i!=null&&(n.maxHeight=i),a!=null&&(n.maxWidth=a),r!=null&&(n.minHeight=r),o!=null&&(n.minWidth=o),l!=null&&(n.width=l),n})}}function he(e){return Ie(()=>{const t=W(e),n=[],s={};if(t.background)if(we(t.background)){if(s.backgroundColor=t.background,!t.text&&vt(t.background)){const i=mt(t.background);if(i.a==null||i.a===1){const a=gt(i);s.color=a,s.caretColor=a}}}else n.push(`bg-${t.background}`);return t.text&&(we(t.text)?(s.color=t.text,s.caretColor=t.text):n.push(`text-${t.text}`)),{colorClasses:n,colorStyles:s}})}function U(e){const{colorClasses:t,colorStyles:n}=he(()=>({text:W(e)}));return{textColorClasses:t,textColorStyles:n}}function se(e){const{colorClasses:t,colorStyles:n}=he(()=>({background:W(e)}));return{backgroundColorClasses:t,backgroundColorStyles:n}}const be=y({rounded:{type:[Boolean,Number,String],default:void 0},tile:Boolean},"rounded");function ye(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{roundedClasses:b(()=>{const s=le(e)?e.value:e.rounded,i=le(e)?e.value:e.tile,a=[];if(s===!0||s==="")a.push(`${t}--rounded`);else if(typeof s=="string"||s===0)for(const r of String(s).split(" "))a.push(`rounded-${r}`);else(i||s===!1)&&a.push("rounded-0");return a})}}const $n=y({transition:{type:null,default:"fade-transition",validator:e=>e!==!0}},"transition"),zn=(e,t)=>{let{slots:n}=t;const{transition:s,disabled:i,group:a,...r}=e,{component:o=a?ht:Le,...l}=ue(s)?s:{};let c;return ue(s)?c=X(l,bt({disabled:i,group:a}),r):c=X({name:i||!s?"":s},r),yt(o,c,n)};function Ft(e,t){if(!Te)return;const n=t.modifiers||{},s=t.value,{handler:i,options:a}=typeof s=="object"?s:{handler:s,options:{}},r=new IntersectionObserver(function(){let o=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],l=arguments.length>1?arguments[1]:void 0;const c=e._observe?.[t.instance.$.uid];if(!c)return;const f=o.some(m=>m.isIntersecting);i&&(!n.quiet||c.init)&&(!n.once||f||c.init)&&i(f,o,l),f&&n.once?Ge(e,t):c.init=!0},a);e._observe=Object(e._observe),e._observe[t.instance.$.uid]={init:!1,observer:r},r.observe(e)}function Ge(e,t){const n=e._observe?.[t.instance.$.uid];n&&(n.observer.unobserve(e),delete e._observe[t.instance.$.uid])}const On={mounted:Ft,unmounted:Ge},je=y({border:[Boolean,Number,String]},"border");function qe(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{borderClasses:b(()=>{const s=e.border;return s===!0||s===""?`${t}--border`:typeof s=="string"||s===0?String(s).split(" ").map(i=>`border-${i}`):[]})}}const Xe=y({elevation:{type:[Number,String],validator(e){const t=parseInt(e);return!isNaN(t)&&t>=0&&t<=24}}},"elevation");function Ue(e){return{elevationClasses:g(()=>{const n=le(e)?e.value:e.elevation;return n==null?[]:[`elevation-${n}`]})}}const Ht=["elevated","flat","tonal","outlined","text","plain"];function Mt(e,t){return S(pt,null,[e&&S("span",{key:"overlay",class:k(`${t}__overlay`)},null),S("span",{key:"underlay",class:k(`${t}__underlay`)},null)])}const Ye=y({color:String,variant:{type:String,default:"elevated",validator:e=>Ht.includes(e)}},"variant");function Gt(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();const n=g(()=>{const{variant:a}=W(e);return`${t}--variant-${a}`}),{colorClasses:s,colorStyles:i}=he(()=>{const{variant:a,color:r}=W(e);return{[["elevated","flat"].includes(a)?"background":"text"]:r}});return{colorClasses:s,colorStyles:i,variantClasses:n}}const jt=[null,"default","comfortable","compact"],Ke=y({density:{type:String,default:"default",validator:e=>jt.includes(e)}},"density");function Je(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{densityClasses:g(()=>`${t}--density-${e.density}`)}}const Ze=y({baseColor:String,divided:Boolean,direction:{type:String,default:"horizontal"},...je(),...G(),...Ke(),...Xe(),...be(),...j(),...M(),...Ye()},"VBtnGroup"),_e=N()({name:"VBtnGroup",props:Ze(),setup(e,t){let{slots:n}=t;const{themeClasses:s}=K(e),{densityClasses:i}=Je(e),{borderClasses:a}=qe(e),{elevationClasses:r}=Ue(e),{roundedClasses:o}=ye(e);Ee({VBtn:{height:g(()=>e.direction==="horizontal"?"auto":null),baseColor:g(()=>e.baseColor),color:g(()=>e.color),density:g(()=>e.density),flat:!0,variant:g(()=>e.variant)}}),D(()=>_(e.tag,{class:k(["v-btn-group",`v-btn-group--${e.direction}`,{"v-btn-group--divided":e.divided},s.value,a.value,i.value,r.value,o.value,e.class]),style:L(e.style)},n))}}),qt=y({modelValue:{type:null,default:void 0},multiple:Boolean,mandatory:[Boolean,String],max:Number,selectedClass:String,disabled:Boolean},"group"),Xt=y({value:null,disabled:Boolean,selectedClass:String},"group-item");function Ut(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;const s=J("useGroupItem");if(!s)throw new Error("[Vuetify] useGroupItem composable must be used inside a component setup function");const i=Ct();Re(Symbol.for(`${t.description}:id`),i);const a=wt(t,null);if(!a){if(!n)return a;throw new Error(`[Vuetify] Could not find useGroup injection with symbol ${t.description}`)}const r=g(()=>e.value),o=b(()=>!!(a.disabled.value||e.disabled));a.register({id:i,value:r,disabled:o},s),Ne(()=>{a.unregister(i)});const l=b(()=>a.isSelected(i)),c=b(()=>a.items.value[0].id===i),f=b(()=>a.items.value[a.items.value.length-1].id===i),m=b(()=>l.value&&[a.selectedClass.value,e.selectedClass]);return ge(l,u=>{s.emit("group:selected",{value:u})},{flush:"sync"}),{id:i,isSelected:l,isFirst:c,isLast:f,toggle:()=>a.select(i,!l.value),select:u=>a.select(i,u),selectedClass:m,value:r,disabled:o,group:a}}function Yt(e,t){let n=!1;const s=ce([]),i=$e(e,"modelValue",[],u=>u==null?[]:Qe(s,_t(u)),u=>{const v=Jt(s,u);return e.multiple?v:v[0]}),a=J("useGroup");function r(u,v){const p=u,d=Symbol.for(`${t.description}:id`),w=kt(d,a?.vnode).indexOf(v);Bt(p.value)==null&&(p.value=w,p.useIndexAsValue=!0),w>-1?s.splice(w,0,p):s.push(p)}function o(u){if(n)return;l();const v=s.findIndex(p=>p.id===u);s.splice(v,1)}function l(){const u=s.find(v=>!v.disabled);u&&e.mandatory==="force"&&!i.value.length&&(i.value=[u.id])}St(()=>{l()}),Ne(()=>{n=!0}),xt(()=>{for(let u=0;u<s.length;u++)s[u].useIndexAsValue&&(s[u].value=u)});function c(u,v){const p=s.find(d=>d.id===u);if(!(v&&p?.disabled))if(e.multiple){const d=i.value.slice(),h=d.findIndex(P=>P===u),w=~h;if(v=v??!w,w&&e.mandatory&&d.length<=1||!w&&e.max!=null&&d.length+1>e.max)return;h<0&&v?d.push(u):h>=0&&!v&&d.splice(h,1),i.value=d}else{const d=i.value.includes(u);if(e.mandatory&&d||!d&&!v)return;i.value=v??!d?[u]:[]}}function f(u){if(e.multiple,i.value.length){const v=i.value[0],p=s.findIndex(w=>w.id===v);let d=(p+u)%s.length,h=s[d];for(;h.disabled&&d!==p;)d=(d+u)%s.length,h=s[d];if(h.disabled)return;i.value=[s[d].id]}else{const v=s.find(p=>!p.disabled);v&&(i.value=[v.id])}}const m={register:r,unregister:o,selected:i,select:c,disabled:g(()=>e.disabled),prev:()=>f(s.length-1),next:()=>f(1),isSelected:u=>i.value.includes(u),selectedClass:g(()=>e.selectedClass),items:g(()=>s),getItemIndex:u=>Kt(s,u)};return Re(t,m),m}function Kt(e,t){const n=Qe(e,[t]);return n.length?e.findIndex(s=>s.id===n[0]):-1}function Qe(e,t){const n=[];return t.forEach(s=>{const i=e.find(r=>ze(s,r.value)),a=e[s];i?.value!=null?n.push(i.id):a?.useIndexAsValue&&n.push(a.id)}),n}function Jt(e,t){const n=[];return t.forEach(s=>{const i=e.findIndex(a=>a.id===s);if(~i){const a=e[i];n.push(a.value!=null?a.value:i)}}),n}const et=Symbol.for("vuetify:v-btn-toggle"),Zt=y({...Ze(),...qt()},"VBtnToggle");N()({name:"VBtnToggle",props:Zt(),emits:{"update:modelValue":e=>!0},setup(e,t){let{slots:n}=t;const{isSelected:s,next:i,prev:a,select:r,selected:o}=Yt(e,et);return D(()=>{const l=_e.filterProps(e);return _(_e,X({class:["v-btn-toggle",e.class]},l,{style:e.style}),{default:()=>[n.default?.({isSelected:s,next:i,prev:a,select:r,selected:o})]})}),{next:i,prev:a,select:r}}});const Qt=["x-small","small","default","large","x-large"],pe=y({size:{type:[String,Number],default:"default"}},"size");function Ce(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return Ie(()=>{const n=e.size;let s,i;return q(Qt,n)?s=`${t}--size-${n}`:n&&(i={width:C(n),height:C(n)}),{sizeClasses:s,sizeStyles:i}})}const en=y({color:String,disabled:Boolean,start:Boolean,end:Boolean,icon:de,opacity:[String,Number],...G(),...pe(),...j({tag:"i"}),...M()},"VIcon"),ae=N()({name:"VIcon",props:en(),setup(e,t){let{attrs:n,slots:s}=t;const i=Oe(),{themeClasses:a}=Vt(),{iconData:r}=Pt(()=>i.value||e.icon),{sizeClasses:o}=Ce(e),{textColorClasses:l,textColorStyles:c}=U(()=>e.color);return D(()=>{const f=s.default?.();f&&(i.value=Et(f).filter(u=>u.type===It&&u.children&&typeof u.children=="string")[0]?.children);const m=!!(n.onClick||n.onClickOnce);return _(r.value.component,{tag:e.tag,icon:r.value.icon,class:k(["v-icon","notranslate",a.value,o.value,l.value,{"v-icon--clickable":m,"v-icon--disabled":e.disabled,"v-icon--start":e.start,"v-icon--end":e.end},e.class]),style:L([{"--v-icon-opacity":e.opacity},o.value?void 0:{fontSize:C(e.size),height:C(e.size),width:C(e.size)},c.value,e.style]),role:m?"button":void 0,"aria-hidden":!m,tabindex:m?e.disabled?-1:0:void 0},{default:()=>[f]})}),{}}});function tt(e,t){const n=Ae(),s=Oe(!1);if(Te){const i=new IntersectionObserver(a=>{s.value=!!a.find(r=>r.isIntersecting)},t);De(()=>{i.disconnect()}),ge(n,(a,r)=>{r&&(i.unobserve(r),s.value=!1),a&&i.observe(a)},{flush:"post"})}return{intersectionRef:n,isIntersecting:s}}const tn=y({bgColor:String,color:String,indeterminate:[Boolean,String],modelValue:{type:[Number,String],default:0},rotate:{type:[Number,String],default:0},width:{type:[Number,String],default:4},...G(),...pe(),...j({tag:"div"}),...M()},"VProgressCircular"),nn=N()({name:"VProgressCircular",props:tn(),setup(e,t){let{slots:n}=t;const s=20,i=2*Math.PI*s,a=Ae(),{themeClasses:r}=K(e),{sizeClasses:o,sizeStyles:l}=Ce(e),{textColorClasses:c,textColorStyles:f}=U(()=>e.color),{textColorClasses:m,textColorStyles:u}=U(()=>e.bgColor),{intersectionRef:v,isIntersecting:p}=tt(),{resizeRef:d,contentRect:h}=Lt(),w=g(()=>fe(parseFloat(e.modelValue),0,100)),P=g(()=>Number(e.width)),E=g(()=>l.value?Number(e.size):h.value?h.value.width:Math.max(P.value,32)),V=g(()=>s/(1-P.value/E.value)*2),T=g(()=>P.value/E.value*V.value),z=g(()=>C((100-w.value)/100*i));return Tt(()=>{v.value=a.value,d.value=a.value}),D(()=>_(e.tag,{ref:a,class:k(["v-progress-circular",{"v-progress-circular--indeterminate":!!e.indeterminate,"v-progress-circular--visible":p.value,"v-progress-circular--disable-shrink":e.indeterminate==="disable-shrink"},r.value,o.value,c.value,e.class]),style:L([l.value,f.value,e.style]),role:"progressbar","aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":e.indeterminate?void 0:w.value},{default:()=>[S("svg",{style:{transform:`rotate(calc(-90deg + ${Number(e.rotate)}deg))`},xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${V.value} ${V.value}`},[S("circle",{class:k(["v-progress-circular__underlay",m.value]),style:L(u.value),fill:"transparent",cx:"50%",cy:"50%",r:s,"stroke-width":T.value,"stroke-dasharray":i,"stroke-dashoffset":0},null),S("circle",{class:"v-progress-circular__overlay",fill:"transparent",cx:"50%",cy:"50%",r:s,"stroke-width":T.value,"stroke-dasharray":i,"stroke-dashoffset":z.value},null)]),n.default&&S("div",{class:"v-progress-circular__content"},[n.default({value:w.value})])]})),{}}}),ke={center:"center",top:"bottom",bottom:"top",left:"right",right:"left"},nt=y({location:String},"location");function st(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,n=arguments.length>2?arguments[2]:void 0;const{isRtl:s}=We();return{locationStyles:b(()=>{if(!e.location)return{};const{side:a,align:r}=Ot(e.location.split(" ").length>1?e.location:`${e.location} center`,s.value);function o(c){return n?n(c):0}const l={};return a!=="center"&&(t?l[ke[a]]=`calc(100% - ${o(a)}px)`:l[a]=0),r!=="center"?t?l[ke[r]]=`calc(100% - ${o(r)}px)`:l[r]=0:(a==="center"?l.top=l.left="50%":l[{top:"left",bottom:"left",left:"top",right:"top"}[a]]="50%",l.transform={top:"translateX(-50%)",bottom:"translateX(-50%)",left:"translateY(-50%)",right:"translateY(-50%)",center:"translate(-50%, -50%)"}[a]),l})}}const sn=y({absolute:Boolean,active:{type:Boolean,default:!0},bgColor:String,bgOpacity:[Number,String],bufferValue:{type:[Number,String],default:0},bufferColor:String,bufferOpacity:[Number,String],clickable:Boolean,color:String,height:{type:[Number,String],default:4},indeterminate:Boolean,max:{type:[Number,String],default:100},modelValue:{type:[Number,String],default:0},opacity:[Number,String],reverse:Boolean,stream:Boolean,striped:Boolean,roundedBar:Boolean,...G(),...nt({location:"top"}),...be(),...j(),...M()},"VProgressLinear"),an=N()({name:"VProgressLinear",props:sn(),emits:{"update:modelValue":e=>!0},setup(e,t){let{slots:n}=t;const s=$e(e,"modelValue"),{isRtl:i,rtlClasses:a}=We(),{themeClasses:r}=K(e),{locationStyles:o}=st(e),{textColorClasses:l,textColorStyles:c}=U(()=>e.color),{backgroundColorClasses:f,backgroundColorStyles:m}=se(()=>e.bgColor||e.color),{backgroundColorClasses:u,backgroundColorStyles:v}=se(()=>e.bufferColor||e.bgColor||e.color),{backgroundColorClasses:p,backgroundColorStyles:d}=se(()=>e.color),{roundedClasses:h}=ye(e),{intersectionRef:w,isIntersecting:P}=tt(),E=b(()=>parseFloat(e.max)),V=b(()=>parseFloat(e.height)),T=b(()=>fe(parseFloat(e.bufferValue)/E.value*100,0,100)),z=b(()=>fe(parseFloat(s.value)/E.value*100,0,100)),I=b(()=>i.value!==e.reverse),Z=b(()=>e.indeterminate?"fade-transition":"slide-x-transition"),O=Fe&&window.matchMedia?.("(forced-colors: active)").matches;function Q(x){if(!w.value)return;const{left:ee,right:te,width:A}=w.value.getBoundingClientRect(),dt=I.value?A-x.clientX+(te-A):x.clientX-ee;s.value=Math.round(dt/A*E.value)}return D(()=>_(e.tag,{ref:w,class:k(["v-progress-linear",{"v-progress-linear--absolute":e.absolute,"v-progress-linear--active":e.active&&P.value,"v-progress-linear--reverse":I.value,"v-progress-linear--rounded":e.rounded,"v-progress-linear--rounded-bar":e.roundedBar,"v-progress-linear--striped":e.striped},h.value,r.value,a.value,e.class]),style:L([{bottom:e.location==="bottom"?0:void 0,top:e.location==="top"?0:void 0,height:e.active?C(V.value):0,"--v-progress-linear-height":C(V.value),...e.absolute?o.value:{}},e.style]),role:"progressbar","aria-hidden":e.active?"false":"true","aria-valuemin":"0","aria-valuemax":e.max,"aria-valuenow":e.indeterminate?void 0:Math.min(parseFloat(s.value),E.value),onClick:e.clickable&&Q},{default:()=>[e.stream&&S("div",{key:"stream",class:k(["v-progress-linear__stream",l.value]),style:{...c.value,[I.value?"left":"right"]:C(-V.value),borderTop:`${C(V.value/2)} dotted`,opacity:parseFloat(e.bufferOpacity),top:`calc(50% - ${C(V.value/4)})`,width:C(100-T.value,"%"),"--v-progress-linear-stream-to":C(V.value*(I.value?1:-1))}},null),S("div",{class:k(["v-progress-linear__background",O?void 0:f.value]),style:L([m.value,{opacity:parseFloat(e.bgOpacity),width:e.stream?0:void 0}])},null),S("div",{class:k(["v-progress-linear__buffer",O?void 0:u.value]),style:L([v.value,{opacity:parseFloat(e.bufferOpacity),width:C(T.value,"%")}])},null),_(Le,{name:Z.value},{default:()=>[e.indeterminate?S("div",{class:"v-progress-linear__indeterminate"},[["long","short"].map(x=>S("div",{key:x,class:k(["v-progress-linear__indeterminate",x,O?void 0:p.value]),style:L(d.value)},null))]):S("div",{class:k(["v-progress-linear__determinate",O?void 0:p.value]),style:L([d.value,{width:C(z.value,"%")}])},null)]}),n.default&&S("div",{class:"v-progress-linear__content"},[n.default({value:z.value,buffer:T.value})])]})),{}}}),rn=y({loading:[Boolean,String]},"loader");function on(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{loaderClasses:g(()=>({[`${t}--loading`]:e.loading}))}}function An(e,t){let{slots:n}=t;return S("div",{class:k(`${e.name}__loader`)},[n.default?.({color:e.color,isActive:e.active})||_(an,{absolute:e.absolute,active:e.active,color:e.color,height:"2",indeterminate:!0},null)])}const ln=["static","relative","fixed","absolute","sticky"],un=y({position:{type:String,validator:e=>ln.includes(e)}},"position");function cn(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:$();return{positionClasses:g(()=>e.position?`${t}--${e.position}`:void 0)}}function dn(){const e=J("useRoute");return b(()=>e?.proxy?.$route)}function Dn(){return J("useRouter")?.proxy?.$router}function fn(e,t){const n=Rt("RouterLink"),s=g(()=>!!(e.href||e.to)),i=b(()=>s?.value||Se(t,"click")||Se(e,"click"));if(typeof n=="string"||!("useLink"in n)){const f=g(()=>e.href);return{isLink:s,isClickable:i,href:f,linkProps:ce({href:f})}}const a=n.useLink({to:g(()=>e.to||""),replace:g(()=>e.replace)}),r=b(()=>e.to?a:void 0),o=dn(),l=b(()=>r.value?e.exact?o.value?r.value.isExactActive?.value&&ze(r.value.route.value.query,o.value.query):r.value.isExactActive?.value??!1:r.value.isActive?.value??!1:!1),c=b(()=>e.to?r.value?.route.value.href:e.href);return{isLink:s,isClickable:i,isActive:l,route:r.value?.route,navigate:r.value?.navigate,href:c,linkProps:ce({href:c,"aria-current":g(()=>l.value?"page":void 0)})}}const vn=y({href:String,replace:Boolean,to:[String,Object],exact:Boolean},"router");let ie=!1;function Wn(e,t){let n=!1,s,i;Fe&&e?.beforeEach&&(He(()=>{window.addEventListener("popstate",a),s=e.beforeEach((r,o,l)=>{ie?n?t(l):l():setTimeout(()=>n?t(l):l()),ie=!0}),i=e?.afterEach(()=>{ie=!1})}),De(()=>{window.removeEventListener("popstate",a),s?.(),i?.()}));function a(r){r.state?.replaced||(n=!0,setTimeout(()=>n=!1))}}function mn(e,t){ge(()=>e.isActive?.value,n=>{e.isLink.value&&n!=null&&t&&He(()=>{t(n)})},{immediate:!0})}const ve=Symbol("rippleStop"),gn=80;function Be(e,t){e.style.transform=t,e.style.webkitTransform=t}function me(e){return e.constructor.name==="TouchEvent"}function at(e){return e.constructor.name==="KeyboardEvent"}const hn=function(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},s=0,i=0;if(!at(e)){const m=t.getBoundingClientRect(),u=me(e)?e.touches[e.touches.length-1]:e;s=u.clientX-m.left,i=u.clientY-m.top}let a=0,r=.3;t._ripple?.circle?(r=.15,a=t.clientWidth/2,a=n.center?a:a+Math.sqrt((s-a)**2+(i-a)**2)/4):a=Math.sqrt(t.clientWidth**2+t.clientHeight**2)/2;const o=`${(t.clientWidth-a*2)/2}px`,l=`${(t.clientHeight-a*2)/2}px`,c=n.center?o:`${s-a}px`,f=n.center?l:`${i-a}px`;return{radius:a,scale:r,x:c,y:f,centerX:o,centerY:l}},Y={show(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!t?._ripple?.enabled)return;const s=document.createElement("span"),i=document.createElement("span");s.appendChild(i),s.className="v-ripple__container",n.class&&(s.className+=` ${n.class}`);const{radius:a,scale:r,x:o,y:l,centerX:c,centerY:f}=hn(e,t,n),m=`${a*2}px`;i.className="v-ripple__animation",i.style.width=m,i.style.height=m,t.appendChild(s);const u=window.getComputedStyle(t);u&&u.position==="static"&&(t.style.position="relative",t.dataset.previousPosition="static"),i.classList.add("v-ripple__animation--enter"),i.classList.add("v-ripple__animation--visible"),Be(i,`translate(${o}, ${l}) scale3d(${r},${r},${r})`),i.dataset.activated=String(performance.now()),requestAnimationFrame(()=>{requestAnimationFrame(()=>{i.classList.remove("v-ripple__animation--enter"),i.classList.add("v-ripple__animation--in"),Be(i,`translate(${c}, ${f}) scale3d(1,1,1)`)})})},hide(e){if(!e?._ripple?.enabled)return;const t=e.getElementsByClassName("v-ripple__animation");if(t.length===0)return;const n=t[t.length-1];if(n.dataset.isHiding)return;n.dataset.isHiding="true";const s=performance.now()-Number(n.dataset.activated),i=Math.max(250-s,0);setTimeout(()=>{n.classList.remove("v-ripple__animation--in"),n.classList.add("v-ripple__animation--out"),setTimeout(()=>{e.getElementsByClassName("v-ripple__animation").length===1&&e.dataset.previousPosition&&(e.style.position=e.dataset.previousPosition,delete e.dataset.previousPosition),n.parentNode?.parentNode===e&&e.removeChild(n.parentNode)},300)},i)}};function it(e){return typeof e>"u"||!!e}function F(e){const t={},n=e.currentTarget;if(!(!n?._ripple||n._ripple.touched||e[ve])){if(e[ve]=!0,me(e))n._ripple.touched=!0,n._ripple.isTouch=!0;else if(n._ripple.isTouch)return;if(t.center=n._ripple.centered||at(e),n._ripple.class&&(t.class=n._ripple.class),me(e)){if(n._ripple.showTimerCommit)return;n._ripple.showTimerCommit=()=>{Y.show(e,n,t)},n._ripple.showTimer=window.setTimeout(()=>{n?._ripple?.showTimerCommit&&(n._ripple.showTimerCommit(),n._ripple.showTimerCommit=null)},gn)}else Y.show(e,n,t)}}function Ve(e){e[ve]=!0}function B(e){const t=e.currentTarget;if(t?._ripple){if(window.clearTimeout(t._ripple.showTimer),e.type==="touchend"&&t._ripple.showTimerCommit){t._ripple.showTimerCommit(),t._ripple.showTimerCommit=null,t._ripple.showTimer=window.setTimeout(()=>{B(e)});return}window.setTimeout(()=>{t._ripple&&(t._ripple.touched=!1)}),Y.hide(t)}}function rt(e){const t=e.currentTarget;t?._ripple&&(t._ripple.showTimerCommit&&(t._ripple.showTimerCommit=null),window.clearTimeout(t._ripple.showTimer))}let H=!1;function Pe(e,t){!H&&t.includes(e.key)&&(H=!0,F(e))}function ot(e){H=!1,B(e)}function lt(e){H&&(H=!1,B(e))}function ut(e,t,n){const{value:s,modifiers:i}=t,a=it(s);a||Y.hide(e),e._ripple=e._ripple??{},e._ripple.enabled=a,e._ripple.centered=i.center,e._ripple.circle=i.circle;const r=ue(s)?s:{};r.class&&(e._ripple.class=r.class);const o=r.keys??["Enter","Space"];if(e._ripple.keyDownHandler=l=>Pe(l,o),a&&!n){if(i.stop){e.addEventListener("touchstart",Ve,{passive:!0}),e.addEventListener("mousedown",Ve);return}e.addEventListener("touchstart",F,{passive:!0}),e.addEventListener("touchend",B,{passive:!0}),e.addEventListener("touchmove",rt,{passive:!0}),e.addEventListener("touchcancel",B),e.addEventListener("mousedown",F),e.addEventListener("mouseup",B),e.addEventListener("mouseleave",B),e.addEventListener("keydown",l=>Pe(l,o)),e.addEventListener("keyup",ot),e.addEventListener("blur",lt),e.addEventListener("dragstart",B,{passive:!0})}else!a&&n&&ct(e)}function ct(e){e.removeEventListener("mousedown",F),e.removeEventListener("touchstart",F),e.removeEventListener("touchend",B),e.removeEventListener("touchmove",rt),e.removeEventListener("touchcancel",B),e.removeEventListener("mouseup",B),e.removeEventListener("mouseleave",B),e._ripple?.keyDownHandler&&e.removeEventListener("keydown",e._ripple.keyDownHandler),e.removeEventListener("keyup",ot),e.removeEventListener("dragstart",B),e.removeEventListener("blur",lt)}function bn(e,t){ut(e,t,!1)}function yn(e){ct(e),delete e._ripple}function pn(e,t){if(t.value===t.oldValue)return;const n=it(t.oldValue);ut(e,t,n)}const Cn={mounted:bn,unmounted:yn,updated:pn},wn=y({active:{type:Boolean,default:void 0},activeColor:String,baseColor:String,symbol:{type:null,default:et},flat:Boolean,icon:[Boolean,String,Function,Object],prependIcon:de,appendIcon:de,block:Boolean,readonly:Boolean,slim:Boolean,stacked:Boolean,ripple:{type:[Boolean,Object],default:!0},text:{type:[String,Number,Boolean],default:void 0},...je(),...G(),...Ke(),...Dt(),...Xe(),...Xt(),...rn(),...nt(),...un(),...be(),...vn(),...pe(),...j({tag:"button"}),...M(),...Ye({variant:"elevated"})},"VBtn"),Fn=N()({name:"VBtn",props:wn(),emits:{"group:selected":e=>!0},setup(e,t){let{attrs:n,slots:s}=t;const{themeClasses:i}=K(e),{borderClasses:a}=qe(e),{densityClasses:r}=Je(e),{dimensionStyles:o}=Wt(e),{elevationClasses:l}=Ue(e),{loaderClasses:c}=on(e),{locationStyles:f}=st(e),{positionClasses:m}=cn(e),{roundedClasses:u}=ye(e),{sizeClasses:v,sizeStyles:p}=Ce(e),d=Ut(e,e.symbol,!1),h=fn(e,n),w=b(()=>e.active!==void 0?e.active:h.isLink.value?h.isActive?.value:d?.isSelected.value),P=g(()=>w.value?e.activeColor??e.color:e.color),E=b(()=>({color:d?.isSelected.value&&(!h.isLink.value||h.isActive?.value)||!d||h.isActive?.value?P.value??e.baseColor:e.baseColor,variant:e.variant})),{colorClasses:V,colorStyles:T,variantClasses:z}=Gt(E),I=b(()=>d?.disabled.value||e.disabled),Z=g(()=>e.variant==="elevated"&&!(e.disabled||e.flat||e.border)),O=b(()=>{if(!(e.value===void 0||typeof e.value=="symbol"))return Object(e.value)===e.value?JSON.stringify(e.value,null,0):e.value});function Q(x){I.value||h.isLink.value&&(x.metaKey||x.ctrlKey||x.shiftKey||x.button!==0||n.target==="_blank")||(h.navigate?.(x),d?.toggle())}return mn(h,d?.select),D(()=>{const x=h.isLink.value?"a":e.tag,ee=!!(e.prependIcon||s.prepend),te=!!(e.appendIcon||s.append),A=!!(e.icon&&e.icon!==!0);return Nt(_(x,X({type:x==="a"?void 0:"button",class:["v-btn",d?.selectedClass.value,{"v-btn--active":w.value,"v-btn--block":e.block,"v-btn--disabled":I.value,"v-btn--elevated":Z.value,"v-btn--flat":e.flat,"v-btn--icon":!!e.icon,"v-btn--loading":e.loading,"v-btn--readonly":e.readonly,"v-btn--slim":e.slim,"v-btn--stacked":e.stacked},i.value,a.value,V.value,r.value,l.value,c.value,m.value,u.value,v.value,z.value,e.class],style:[T.value,o.value,f.value,p.value,e.style],"aria-busy":e.loading?!0:void 0,disabled:I.value||void 0,tabindex:e.loading||e.readonly?-1:void 0,onClick:Q,value:O.value},h.linkProps),{default:()=>[Mt(!0,"v-btn"),!e.icon&&ee&&S("span",{key:"prepend",class:"v-btn__prepend"},[s.prepend?_(ne,{key:"prepend-defaults",disabled:!e.prependIcon,defaults:{VIcon:{icon:e.prependIcon}}},s.prepend):_(ae,{key:"prepend-icon",icon:e.prependIcon},null)]),S("span",{class:"v-btn__content","data-no-activator":""},[!s.default&&A?_(ae,{key:"content-icon",icon:e.icon},null):_(ne,{key:"content-defaults",disabled:!A,defaults:{VIcon:{icon:e.icon}}},{default:()=>[s.default?.()??$t(e.text)]})]),!e.icon&&te&&S("span",{key:"append",class:"v-btn__append"},[s.append?_(ne,{key:"append-defaults",disabled:!e.appendIcon,defaults:{VIcon:{icon:e.appendIcon}}},s.append):_(ae,{key:"append-icon",icon:e.appendIcon},null)]),!!e.loading&&S("span",{key:"loader",class:"v-btn__loader"},[s.loader?.()??_(nn,{color:typeof e.loading=="boolean"?void 0:e.loading,indeterminate:!0,width:"2"},null)])]}),[[Cn,!I.value&&e.ripple,"",{center:!!e.icon}]])}),{group:d}}}),re=Symbol("Forwarded refs");function oe(e,t){let n=e;for(;n;){const s=Reflect.getOwnPropertyDescriptor(n,t);if(s)return s;n=Object.getPrototypeOf(n)}}function Hn(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),s=1;s<t;s++)n[s-1]=arguments[s];return e[re]=n,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 n)if(r.value&&Reflect.has(r.value,a)){const o=Reflect.get(r.value,a);return typeof o=="function"?o.bind(r.value):o}}},has(i,a){if(Reflect.has(i,a))return!0;if(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))return!1;for(const r of n)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 o of n)if(o.value&&Reflect.has(o.value,a))return Reflect.set(o.value,a,r);return!1},getOwnPropertyDescriptor(i,a){const r=Reflect.getOwnPropertyDescriptor(i,a);if(r)return r;if(!(typeof a=="symbol"||a.startsWith("$")||a.startsWith("__"))){for(const o of n){if(!o.value)continue;const l=oe(o.value,a)??("_"in o.value?oe(o.value._?.setupState,a):void 0);if(l)return l}for(const o of n){const l=o.value&&o.value[re];if(!l)continue;const c=l.slice();for(;c.length;){const f=c.shift(),m=oe(f.value,a);if(m)return m;const u=f.value&&f.value[re];u&&c.push(...u)}}}}})}export{Vn as $,Xt as A,Ye as B,Dn as C,xe as D,on as E,nn as F,pe as G,qt as H,On as I,rn as J,Ce as K,An as L,zn as M,Mt as N,In as O,Nn as P,Rn as Q,Cn as R,Pn as S,Ot as T,xn as U,Fn as V,_n as W,kn as X,R as Y,En as Z,Bn as _,Ln as a,Wn as a0,Je as b,se as c,j as d,Ke as e,Hn as f,fn as g,vn as h,ye as i,be as j,ae as k,ne as l,wn as m,an as n,Wt as o,$n as p,Dt as q,qe as r,Tn as s,Ue as t,U as u,Xe as v,je as w,Gt as x,Yt as y,Ut as z};
@@ -0,0 +1 @@
1
+ #groupHelp[data-v-84dde1bc]{margin-top:2em;margin-bottom:2em;color:rgb(var(--v-theme-textSecondary))}#groupTable[data-v-84dde1bc]{border:solid thin;margin-top:1em}#groupTable th[data-v-84dde1bc],#groupTable td[data-v-84dde1bc]{padding:.25em}.see[data-v-84dde1bc]{background-color:rgb(var(--v-theme-includeGroup))}.hidden[data-v-84dde1bc]{background-color:rgb(var(--v-theme-excludeGroup))}
@@ -0,0 +1 @@
1
+ #groupHelp[data-v-84dde1bc]{margin-top:2em;margin-bottom:2em;color:rgb(var(--v-theme-textSecondary))}#groupTable[data-v-84dde1bc]{border:solid thin;margin-top:1em}#groupTable th[data-v-84dde1bc],#groupTable td[data-v-84dde1bc]{padding:.25em}.see[data-v-84dde1bc]{background-color:rgb(var(--v-theme-includeGroup))}.hidden[data-v-84dde1bc]{background-color:rgb(var(--v-theme-excludeGroup))}
@@ -0,0 +1 @@
1
+ import{_ as k,B as G,D as b,q as h,v as A,a as o,w as a,s as i,L as f,b as t,y as m,an as T}from"./main-0gkU-bgy.js";import{G as C,A as v,R as I,a as V,b as D,c as j}from"./relation-chips-Dl0i3EP7.js";import{useAdminStore as d}from"./admin-CJauEn2X.js";import{c as E}from"./VSelectionControl-BUBBamEF.js";import{a as w,V as L}from"./VRadioGroup-IJTnZQT5.js";import"./forwardRefs-BjkhALLr.js";import"./VForm-Bhq1UjFg.js";import"./VDialog-N7erUTvb.js";import"./VSelect-C857NCMc.js";import"./ssrBoot-D4fyL90J.js";import"./VDivider-DFsQRi0x.js";import"./VCheckboxBtn-BwlWS4y9.js";import"./VTable-CwYzcGki.js";import"./filter-OaiDOf0D.js";import"./confirm-dialog-Dy-4G4rU.js";const S=["name","userSet","librarySet","exclude"];Object.freeze(S);const y={name:"",userSet:[],librarySet:[],exclude:!1};Object.freeze(y);const N={name:"AdminGroupCreateUpdateInputs",components:{AdminRelationPicker:v,GroupChip:C},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{name:[l=>!!l||"Name is required",l=>!!l&&!this.names.has(l.trim())||"Name already used"]},row:{...y,...f(this.oldRow)}}},computed:{...b(d,["normalLibraries"]),...b(d,{groups:l=>l.groups,users:l=>l.users}),names(){return this.nameSet(this.groups,"name",this.oldRow,!0)}},watch:{row:{handler(l){this.$emit("change",l)},deep:!0},oldRow:{handler(l){this.row=f(l)},deep:!0}},methods:{...G(d,["nameSet"])},UPDATE_KEYS:S,EMPTY_ROW:y};function H(l,e,c,x,s,g){const p=i("GroupChip"),u=i("AdminRelationPicker");return A(),h("div",null,[o(E,{modelValue:s.row.name,"onUpdate:modelValue":e[0]||(e[0]=r=>s.row.name=r),label:"Group Name",rules:s.rules.name,clearable:"",autofocus:""},null,8,["modelValue","rules"]),o(L,{inline:"",label:"Type","model-value":s.row.exclude,"hide-details":"auto","onUpdate:modelValue":e[1]||(e[1]=r=>s.row.exclude=r)},{default:a(()=>[o(w,{value:!1},{label:a(()=>[o(p,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),_:1}),o(w,{value:!0},{label:a(()=>[o(p,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),_:1})]),_:1},8,["model-value"]),o(u,{"model-value":s.row.userSet,label:"Users",objs:l.users,"title-key":"username","onUpdate:modelValue":e[2]||(e[2]=r=>s.row.userSet=r)},null,8,["model-value","objs"]),o(u,{"model-value":s.row.librarySet,label:"Libraries",objs:l.normalLibraries,"title-key":"path","onUpdate:modelValue":e[3]||(e[3]=r=>s.row.librarySet=r)},null,8,["model-value","objs"])])}const P=k(N,[["render",H]]),O=180,B={name:"AdminGroupsTab",components:{AdminTable:j,AdminDeleteRowDialog:D,AdminCreateUpdateDialog:V,RelationChips:I,GroupChip:C},data(){return{lastUpdate:{pk:0,field:void 0},AdminGroupCreateUpdateInputs:T(P),GROUP_HELP_HEIGHT:O,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:{...b(d,["normalLibraries"]),...b(d,{groups:l=>l.groups,users:l=>l.users})},mounted(){this.loadTables(["User","Library","Group"])},methods:{...G(d,["loadTables"]),groupType(l){const e=l.exclude;return{name:e?"Exclude ":"Include",exclude:e}}}},z={class:"tabHeader"},_={id:"groupHelp"},q={id:"groupTable"};function Y(l,e,c,x,s,g){const p=i("AdminCreateUpdateDialog"),u=i("GroupChip"),r=i("RelationChips"),U=i("AdminDeleteRowDialog"),R=i("AdminTable");return A(),h("div",null,[t("header",z,[o(p,{table:"Group","max-width":"20em",inputs:s.AdminGroupCreateUpdateInputs},null,8,["inputs"])]),o(R,{"item-title":"name",headers:s.headers,items:l.groups},{"no-data":a(()=>e[0]||(e[0]=[t("td",{class:"adminNoData",colspan:"100%"},"No groups",-1)])),"item.exclude":a(({item:n})=>[o(u,{"group-type":"",item:g.groupType(n),"title-key":"name"},null,8,["item"])]),"item.userSet":a(({item:n})=>[o(r,{pks:n.userSet,objs:l.users,"title-key":"username"},null,8,["pks","objs"])]),"item.librarySet":a(({item:n})=>[o(r,{pks:n.librarySet,objs:l.normalLibraries,"title-key":"path"},null,8,["pks","objs"])]),"item.actions":a(({item:n})=>[o(p,{table:"Group","old-row":n,"max-width":"20em",inputs:s.AdminGroupCreateUpdateInputs,size:"small",density:"compact"},null,8,["old-row","inputs"]),o(U,{table:"Group",pk:n.pk,name:n.name,size:"small",density:"compact"},null,8,["pk","name"])]),_:2},1032,["headers","items"]),t("div",_,[e[9]||(e[9]=t("h3",null,"Group Logic",-1)),e[10]||(e[10]=t("p",null," A library in no groups is accessible to every user and non-users if those are enabled. ",-1)),e[11]||(e[11]=t("p",null,[m(" A library with "),t("em",null,"any"),m(" Include groups is accessible "),t("em",null,"only"),m(" to users who are in those groups. ")],-1)),e[12]||(e[12]=t("p",null,[m(" A library with "),t("em",null,"any"),m(" Exclude groups is not accessible to Guest users but is acccessable to any logged in users that are not in the Exclude groups. ")],-1)),e[13]||(e[13]=t("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)),t("table",q,[e[8]||(e[8]=t("thead",null,[t("tr",null,[t("th",null,"Library in Group Type"),t("th",null,"Guest"),t("th",null,"User Out of Group"),t("th",null,"User In Group")])],-1)),t("tbody",null,[e[7]||(e[7]=t("tr",null,[t("td",null,"Not in a Group"),t("td",{class:"see"},"Can See"),t("td",{class:"see"},"Can See"),t("td",{class:"see"},"Can See")],-1)),t("tr",null,[t("td",null,[o(u,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),e[1]||(e[1]=t("td",{class:"hidden"},"Hidden",-1)),e[2]||(e[2]=t("td",{class:"hidden"},"Hidden",-1)),e[3]||(e[3]=t("td",{class:"see"},"Can See",-1))]),t("tr",null,[t("td",null,[o(u,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),e[4]||(e[4]=t("td",{class:"hidden"},"Hidden",-1)),e[5]||(e[5]=t("td",{class:"see"},"Can See",-1)),e[6]||(e[6]=t("td",{class:"hidden"},"Hidden",-1))])])])])])}const ne=k(B,[["render",Y],["__scopeId","data-v-84dde1bc"]]);export{ne as default};
@@ -0,0 +1 @@
1
+ import{_ as k,B as G,D as b,q as h,v as A,a as o,w as a,s as i,L as f,b as t,y as m,an as T}from"./main-0gkU-bgy.js";import{G as C,A as v,R as I,a as V,b as D,c as j}from"./relation-chips-Dl0i3EP7.js";import{useAdminStore as d}from"./admin-CJauEn2X.js";import{c as E}from"./VSelectionControl-BUBBamEF.js";import{a as w,V as L}from"./VRadioGroup-IJTnZQT5.js";import"./forwardRefs-BjkhALLr.js";import"./VForm-Bhq1UjFg.js";import"./VDialog-N7erUTvb.js";import"./VSelect-C857NCMc.js";import"./ssrBoot-D4fyL90J.js";import"./VDivider-DFsQRi0x.js";import"./VCheckboxBtn-BwlWS4y9.js";import"./VTable-CwYzcGki.js";import"./filter-OaiDOf0D.js";import"./confirm-dialog-Dy-4G4rU.js";const S=["name","userSet","librarySet","exclude"];Object.freeze(S);const y={name:"",userSet:[],librarySet:[],exclude:!1};Object.freeze(y);const N={name:"AdminGroupCreateUpdateInputs",components:{AdminRelationPicker:v,GroupChip:C},props:{oldRow:{type:[Object,Boolean],default:!1}},emits:["change"],data(){return{rules:{name:[l=>!!l||"Name is required",l=>!!l&&!this.names.has(l.trim())||"Name already used"]},row:{...y,...f(this.oldRow)}}},computed:{...b(d,["normalLibraries"]),...b(d,{groups:l=>l.groups,users:l=>l.users}),names(){return this.nameSet(this.groups,"name",this.oldRow,!0)}},watch:{row:{handler(l){this.$emit("change",l)},deep:!0},oldRow:{handler(l){this.row=f(l)},deep:!0}},methods:{...G(d,["nameSet"])},UPDATE_KEYS:S,EMPTY_ROW:y};function H(l,e,c,x,s,g){const p=i("GroupChip"),u=i("AdminRelationPicker");return A(),h("div",null,[o(E,{modelValue:s.row.name,"onUpdate:modelValue":e[0]||(e[0]=r=>s.row.name=r),label:"Group Name",rules:s.rules.name,clearable:"",autofocus:""},null,8,["modelValue","rules"]),o(L,{inline:"",label:"Type","model-value":s.row.exclude,"hide-details":"auto","onUpdate:modelValue":e[1]||(e[1]=r=>s.row.exclude=r)},{default:a(()=>[o(w,{value:!1},{label:a(()=>[o(p,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),_:1}),o(w,{value:!0},{label:a(()=>[o(p,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),_:1})]),_:1},8,["model-value"]),o(u,{"model-value":s.row.userSet,label:"Users",objs:l.users,"title-key":"username","onUpdate:modelValue":e[2]||(e[2]=r=>s.row.userSet=r)},null,8,["model-value","objs"]),o(u,{"model-value":s.row.librarySet,label:"Libraries",objs:l.normalLibraries,"title-key":"path","onUpdate:modelValue":e[3]||(e[3]=r=>s.row.librarySet=r)},null,8,["model-value","objs"])])}const P=k(N,[["render",H]]),O=180,B={name:"AdminGroupsTab",components:{AdminTable:j,AdminDeleteRowDialog:D,AdminCreateUpdateDialog:V,RelationChips:I,GroupChip:C},data(){return{lastUpdate:{pk:0,field:void 0},AdminGroupCreateUpdateInputs:T(P),GROUP_HELP_HEIGHT:O,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:{...b(d,["normalLibraries"]),...b(d,{groups:l=>l.groups,users:l=>l.users})},mounted(){this.loadTables(["User","Library","Group"])},methods:{...G(d,["loadTables"]),groupType(l){const e=l.exclude;return{name:e?"Exclude ":"Include",exclude:e}}}},z={class:"tabHeader"},_={id:"groupHelp"},q={id:"groupTable"};function Y(l,e,c,x,s,g){const p=i("AdminCreateUpdateDialog"),u=i("GroupChip"),r=i("RelationChips"),U=i("AdminDeleteRowDialog"),R=i("AdminTable");return A(),h("div",null,[t("header",z,[o(p,{table:"Group","max-width":"20em",inputs:s.AdminGroupCreateUpdateInputs},null,8,["inputs"])]),o(R,{"item-title":"name",headers:s.headers,items:l.groups},{"no-data":a(()=>e[0]||(e[0]=[t("td",{class:"adminNoData",colspan:"100%"},"No groups",-1)])),"item.exclude":a(({item:n})=>[o(u,{"group-type":"",item:g.groupType(n),"title-key":"name"},null,8,["item"])]),"item.userSet":a(({item:n})=>[o(r,{pks:n.userSet,objs:l.users,"title-key":"username"},null,8,["pks","objs"])]),"item.librarySet":a(({item:n})=>[o(r,{pks:n.librarySet,objs:l.normalLibraries,"title-key":"path"},null,8,["pks","objs"])]),"item.actions":a(({item:n})=>[o(p,{table:"Group","old-row":n,"max-width":"20em",inputs:s.AdminGroupCreateUpdateInputs,size:"small",density:"compact"},null,8,["old-row","inputs"]),o(U,{table:"Group",pk:n.pk,name:n.name,size:"small",density:"compact"},null,8,["pk","name"])]),_:2},1032,["headers","items"]),t("div",_,[e[9]||(e[9]=t("h3",null,"Group Logic",-1)),e[10]||(e[10]=t("p",null," A library in no groups is accessible to every user and non-users if those are enabled. ",-1)),e[11]||(e[11]=t("p",null,[m(" A library with "),t("em",null,"any"),m(" Include groups is accessible "),t("em",null,"only"),m(" to users who are in those groups. ")],-1)),e[12]||(e[12]=t("p",null,[m(" A library with "),t("em",null,"any"),m(" Exclude groups is not accessible to Guest users but is acccessable to any logged in users that are not in the Exclude groups. ")],-1)),e[13]||(e[13]=t("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)),t("table",q,[e[8]||(e[8]=t("thead",null,[t("tr",null,[t("th",null,"Library in Group Type"),t("th",null,"Guest"),t("th",null,"User Out of Group"),t("th",null,"User In Group")])],-1)),t("tbody",null,[e[7]||(e[7]=t("tr",null,[t("td",null,"Not in a Group"),t("td",{class:"see"},"Can See"),t("td",{class:"see"},"Can See"),t("td",{class:"see"},"Can See")],-1)),t("tr",null,[t("td",null,[o(u,{item:{name:"Include",exclude:!1},"title-key":"name","group-type":""})]),e[1]||(e[1]=t("td",{class:"hidden"},"Hidden",-1)),e[2]||(e[2]=t("td",{class:"hidden"},"Hidden",-1)),e[3]||(e[3]=t("td",{class:"see"},"Can See",-1))]),t("tr",null,[t("td",null,[o(u,{item:{name:"Exclude",exclude:!0},"title-key":"name","group-type":""})]),e[4]||(e[4]=t("td",{class:"hidden"},"Hidden",-1)),e[5]||(e[5]=t("td",{class:"see"},"Can See",-1)),e[6]||(e[6]=t("td",{class:"hidden"},"Hidden",-1))])])])])])}const ne=k(B,[["render",Y],["__scopeId","data-v-84dde1bc"]]);export{ne as default};
@@ -0,0 +1 @@
1
+ import{_ as h,D as l,x as a,w as s,s as e,E as f,v as i,a as d,b as o,A as p}from"./main-0gkU-bgy.js";import{U as k,A,c as B}from"./unauthorized-CLNP5Zx1.js";import"./VDialog-N7erUTvb.js";import"./forwardRefs-BjkhALLr.js";import"./change-password-dialog-DE8R9FId.js";import"./VForm-Bhq1UjFg.js";import"./VSelectionControl-BUBBamEF.js";import"./admin-CJauEn2X.js";import"./ssrBoot-D4fyL90J.js";const c={400:"Bad Request",403:"Forbidden",404:"Page Not Found",500:"Server Error"};Object.freeze(c);const E={name:"HttpError",components:{AppBanner:A,Unauthorized:k},data(){return{}},computed:{...l(f,["isAuthorized"]),code:function(){return+this.$route.params.code},title:function(){let t=c[this.code];return t||(t="Unknown Error"),t}}},z={id:"httpCode"},x={id:"title"};function S(t,r,U,v,C,n){const u=e("AppBanner"),m=e("router-link"),_=e("Unauthorized");return t.isAuthorized?(i(),a(B,{key:0,id:"httpError"},{default:s(()=>[d(u),o("h1",z,p(n.code),1),o("h1",x,p(n.title),1),d(m,{id:"link",to:{name:"home"}},{default:s(()=>r[0]||(r[0]=[o("h2",null,"Codex Home",-1)])),_:1,__:[0]})]),_:1})):(i(),a(_,{key:1}))}const H=h(E,[["render",S],["__scopeId","data-v-1cd9a888"]]);export{H as default};
@@ -0,0 +1 @@
1
+ import{_ as h,D as l,x as a,w as s,s as e,E as f,v as i,a as d,b as o,A as p}from"./main-0gkU-bgy.js";import{U as k,A,c as B}from"./unauthorized-CLNP5Zx1.js";import"./VDialog-N7erUTvb.js";import"./forwardRefs-BjkhALLr.js";import"./change-password-dialog-DE8R9FId.js";import"./VForm-Bhq1UjFg.js";import"./VSelectionControl-BUBBamEF.js";import"./admin-CJauEn2X.js";import"./ssrBoot-D4fyL90J.js";const c={400:"Bad Request",403:"Forbidden",404:"Page Not Found",500:"Server Error"};Object.freeze(c);const E={name:"HttpError",components:{AppBanner:A,Unauthorized:k},data(){return{}},computed:{...l(f,["isAuthorized"]),code:function(){return+this.$route.params.code},title:function(){let t=c[this.code];return t||(t="Unknown Error"),t}}},z={id:"httpCode"},x={id:"title"};function S(t,r,U,v,C,n){const u=e("AppBanner"),m=e("router-link"),_=e("Unauthorized");return t.isAuthorized?(i(),a(B,{key:0,id:"httpError"},{default:s(()=>[d(u),o("h1",z,p(n.code),1),o("h1",x,p(n.title),1),d(m,{id:"link",to:{name:"home"}},{default:s(()=>r[0]||(r[0]=[o("h2",null,"Codex Home",-1)])),_:1,__:[0]})]),_:1})):(i(),a(_,{key:1}))}const H=h(E,[["render",S],["__scopeId","data-v-1cd9a888"]]);export{H as default};
@@ -0,0 +1 @@
1
+ #httpError[data-v-1cd9a888]{padding-top:max(20px,env(safe-area-inset-top));padding-left:max(20px,env(safe-area-inset-left));padding-right:max(20px,env(safe-area-inset-right));padding-bottom:max(20px,env(safe-area-inset-bottom))}#httpCode[data-v-1cd9a888],#title[data-v-1cd9a888],#link[data-v-1cd9a888]{position:absolute;left:50%;transform:translate(-50%) translateY(-25%)}#httpCode[data-v-1cd9a888],#title[data-v-1cd9a888]{top:25%}#httpCode[data-v-1cd9a888]{z-index:100;padding-top:1em}#title[data-v-1cd9a888]{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-1cd9a888]{bottom:50%}@media (max-width: 959.98px){#title[data-v-1cd9a888]{font-size:32vw}}
@@ -0,0 +1 @@
1
+ #httpError[data-v-1cd9a888]{padding-top:max(20px,env(safe-area-inset-top));padding-left:max(20px,env(safe-area-inset-left));padding-right:max(20px,env(safe-area-inset-right));padding-bottom:max(20px,env(safe-area-inset-bottom))}#httpCode[data-v-1cd9a888],#title[data-v-1cd9a888],#link[data-v-1cd9a888]{position:absolute;left:50%;transform:translate(-50%) translateY(-25%)}#httpCode[data-v-1cd9a888],#title[data-v-1cd9a888]{top:25%}#httpCode[data-v-1cd9a888]{z-index:100;padding-top:1em}#title[data-v-1cd9a888]{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-1cd9a888]{bottom:50%}@media (max-width: 959.98px){#title[data-v-1cd9a888]{font-size:32vw}}
@@ -0,0 +1 @@
1
+ import{p as V,o as P,g as O,e as T,bt as S,t as g,r as k,c as d,m,u as A,a as $,cN as x,j,ca as w,s as b}from"./main-0gkU-bgy.js";import{q as I,u as R,p as y}from"./VDialog-N7erUTvb.js";import{f as B}from"./forwardRefs-BjkhALLr.js";const N=V({id:String,interactive:Boolean,text:String,...P(I({closeOnBack:!1,location:"end",locationStrategy:"connected",eager:!0,minWidth:0,offset:10,openOnClick:!1,openOnHover:!0,origin:"auto",scrim:!1,scrollStrategy:"reposition",transition:null}),["absolute","persistent"])},"VTooltip"),q=O()({name:"VTooltip",props:N(),emits:{"update:modelValue":t=>!0},setup(t,n){let{slots:a}=n;const e=T(t,"modelValue"),{scopeId:s}=R(),i=S(),o=g(()=>t.id||`v-tooltip-${i}`),r=k(),f=d(()=>t.location.split(" ").length>1?t.location:t.location+" center"),v=d(()=>t.origin==="auto"||t.origin==="overlap"||t.origin.split(" ").length>1||t.location.split(" ").length>1?t.origin:t.origin+" center"),l=g(()=>t.transition!=null?t.transition:e.value?"scale-transition":"fade-transition"),h=d(()=>m({"aria-describedby":o.value},t.activatorProps));return A(()=>{const C=y.filterProps(t);return $(y,m({ref:r,class:["v-tooltip",{"v-tooltip--interactive":t.interactive},t.class],style:t.style,id:o.value},C,{modelValue:e.value,"onUpdate:modelValue":c=>e.value=c,transition:l.value,absolute:!0,location:f.value,origin:v.value,persistent:!0,role:"tooltip",activatorProps:h.value,_disableGlobalStack:!0},s),{activator:a.activator,default:function(){for(var c=arguments.length,p=new Array(c),u=0;u<c;u++)p[u]=arguments[u];return a.default?.(...p)??t.text}})}),B({},r)}});function D(t,n){const a=typeof t=="string"?b(t):t,e=F(a,n);return{mounted:e,updated:e,unmounted(s){x(null,s)}}}function F(t,n){return function(a,e,s){const i=typeof n=="function"?n(e):n,o=e.value?.text??e.value??i?.text,r=j(e.value)?e.value:{},f=()=>o??a.textContent,v=(s.ctx===e.instance.$?G(s,e.instance.$)?.provides:s.ctx?.provides)??e.instance.$.provides,l=w(t,m(i,r),f);l.appContext=Object.assign(Object.create(null),e.instance.$.appContext,{provides:v}),x(l,a)}}function G(t,n){const a=new Set,e=i=>{for(const o of i){if(!o)continue;if(o===t||o.el&&t.el&&o.el===t.el)return!0;a.add(o);let r;if(o.suspense?r=e([o.ssContent]):Array.isArray(o.children)?r=e(o.children):o.component?.vnode&&(r=e([o.component?.subTree])),r)return r;a.delete(o)}return!1};if(!e([n.subTree]))return n;const s=Array.from(a).reverse();for(const i of s)if(i.component)return i.component;return n}const W=D(q,t=>({activator:"parent",location:t.arg?.replace("-"," "),text:typeof t.value=="boolean"?void 0:t.value}));export{W as T};
@@ -0,0 +1 @@
1
+ import{p as V,o as P,g as O,e as T,bt as S,t as g,r as k,c as d,m,u as A,a as $,cN as x,j,ca as w,s as b}from"./main-0gkU-bgy.js";import{q as I,u as R,p as y}from"./VDialog-N7erUTvb.js";import{f as B}from"./forwardRefs-BjkhALLr.js";const N=V({id:String,interactive:Boolean,text:String,...P(I({closeOnBack:!1,location:"end",locationStrategy:"connected",eager:!0,minWidth:0,offset:10,openOnClick:!1,openOnHover:!0,origin:"auto",scrim:!1,scrollStrategy:"reposition",transition:null}),["absolute","persistent"])},"VTooltip"),q=O()({name:"VTooltip",props:N(),emits:{"update:modelValue":t=>!0},setup(t,n){let{slots:a}=n;const e=T(t,"modelValue"),{scopeId:s}=R(),i=S(),o=g(()=>t.id||`v-tooltip-${i}`),r=k(),f=d(()=>t.location.split(" ").length>1?t.location:t.location+" center"),v=d(()=>t.origin==="auto"||t.origin==="overlap"||t.origin.split(" ").length>1||t.location.split(" ").length>1?t.origin:t.origin+" center"),l=g(()=>t.transition!=null?t.transition:e.value?"scale-transition":"fade-transition"),h=d(()=>m({"aria-describedby":o.value},t.activatorProps));return A(()=>{const C=y.filterProps(t);return $(y,m({ref:r,class:["v-tooltip",{"v-tooltip--interactive":t.interactive},t.class],style:t.style,id:o.value},C,{modelValue:e.value,"onUpdate:modelValue":c=>e.value=c,transition:l.value,absolute:!0,location:f.value,origin:v.value,persistent:!0,role:"tooltip",activatorProps:h.value,_disableGlobalStack:!0},s),{activator:a.activator,default:function(){for(var c=arguments.length,p=new Array(c),u=0;u<c;u++)p[u]=arguments[u];return a.default?.(...p)??t.text}})}),B({},r)}});function D(t,n){const a=typeof t=="string"?b(t):t,e=F(a,n);return{mounted:e,updated:e,unmounted(s){x(null,s)}}}function F(t,n){return function(a,e,s){const i=typeof n=="function"?n(e):n,o=e.value?.text??e.value??i?.text,r=j(e.value)?e.value:{},f=()=>o??a.textContent,v=(s.ctx===e.instance.$?G(s,e.instance.$)?.provides:s.ctx?.provides)??e.instance.$.provides,l=w(t,m(i,r),f);l.appContext=Object.assign(Object.create(null),e.instance.$.appContext,{provides:v}),x(l,a)}}function G(t,n){const a=new Set,e=i=>{for(const o of i){if(!o)continue;if(o===t||o.el&&t.el&&o.el===t.el)return!0;a.add(o);let r;if(o.suspense?r=e([o.ssContent]):Array.isArray(o.children)?r=e(o.children):o.component?.vnode&&(r=e([o.component?.subTree])),r)return r;a.delete(o)}return!1};if(!e([n.subTree]))return n;const s=Array.from(a).reverse();for(const i of s)if(i.component)return i.component;return n}const W=D(q,t=>({activator:"parent",location:t.arg?.replace("-"," "),text:typeof t.value=="boolean"?void 0:t.value}));export{W as T};
@@ -0,0 +1 @@
1
+ #folderPicker[data-v-61ca3769]{border-radius:5px;background-color:rgb(var(--v-theme-surface))}.showHidden[data-v-61ca3769] .v-label{color:rgb(var(--v-theme-textSecondary))}.disabled[data-v-e99f2f5e]{color:rgb(var(--v-theme-textDisabled))!important}.actionButtonCell[data-v-e99f2f5e]>button{opacity:.7}.actionButtonCell[data-v-e99f2f5e]>button:hover{opacity:1}.failedComics[data-v-e99f2f5e]{color:rgb(var(--v-theme-error))}#customCoversHelp[data-v-268927b7]{color:rgb(var(--v-theme-textSecondary))}#customCoversHelp[data-v-268927b7] .v-expansion-panel-text h4{margin-top:.5em}a[data-v-827c9a0b],a>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-primary))!important}a[data-v-827c9a0b]:hover,a:hover>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-textPrimary))!important}a.v-btn>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-textPrimary))}.cli[data-v-827c9a0b]{display:block;margin-left:2em}#failedImportsPanel[data-v-827c9a0b]{padding-top:10px}#failedImportsIcon[data-v-827c9a0b]{padding-left:.25em;color:rgb(var(--v-theme-error))!important}#failedImportsHelp[data-v-827c9a0b]{color:rgb(var(--v-theme-textSecondary))}h4[data-v-827c9a0b]{padding-top:.5em}#customCovers[data-v-66bb908f]{margin-top:60px}#libraryHelp[data-v-66bb908f]{margin-top:2em;font-size:smaller;color:rgb(var(--v-theme-textDisabled))}
@@ -0,0 +1 @@
1
+ #folderPicker[data-v-61ca3769]{border-radius:5px;background-color:rgb(var(--v-theme-surface))}.showHidden[data-v-61ca3769] .v-label{color:rgb(var(--v-theme-textSecondary))}.disabled[data-v-e99f2f5e]{color:rgb(var(--v-theme-textDisabled))!important}.actionButtonCell[data-v-e99f2f5e]>button{opacity:.7}.actionButtonCell[data-v-e99f2f5e]>button:hover{opacity:1}.failedComics[data-v-e99f2f5e]{color:rgb(var(--v-theme-error))}#customCoversHelp[data-v-268927b7]{color:rgb(var(--v-theme-textSecondary))}#customCoversHelp[data-v-268927b7] .v-expansion-panel-text h4{margin-top:.5em}a[data-v-827c9a0b],a>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-primary))!important}a[data-v-827c9a0b]:hover,a:hover>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-textPrimary))!important}a.v-btn>.v-icon[data-v-827c9a0b]{color:rgb(var(--v-theme-textPrimary))}.cli[data-v-827c9a0b]{display:block;margin-left:2em}#failedImportsPanel[data-v-827c9a0b]{padding-top:10px}#failedImportsIcon[data-v-827c9a0b]{padding-left:.25em;color:rgb(var(--v-theme-error))!important}#failedImportsHelp[data-v-827c9a0b]{color:rgb(var(--v-theme-textSecondary))}h4[data-v-827c9a0b]{padding-top:.5em}#customCovers[data-v-66bb908f]{margin-top:60px}#libraryHelp[data-v-66bb908f]{margin-top:2em;font-size:smaller;color:rgb(var(--v-theme-textDisabled))}
@@ -0,0 +1 @@
1
+ import{_,B as k,D as y,C as T,q as C,v as p,a as r,w as s,m as L,X as q,x as w,G as F,s as u,A as v,L as E,ad as X,M as J,an as H,$ as B,bz as Q,bA as Z,bB as ee,V as te,b as o,d as oe,y as a,k as re,bC as le,F as se,z as ie}from"./main-0gkU-bgy.js";import{A as ne,R as ae,a as $,b as de,c as me}from"./relation-chips-Dl0i3EP7.js";import{useAdminStore as h}from"./admin-CJauEn2X.js";import{a as ue}from"./VDialog-N7erUTvb.js";import{V as pe}from"./VCombobox-DyLCrBiS.js";import{V as D}from"./VCheckbox-BD4eUg4g.js";import{c as ce,d as U}from"./VSelectionControl-BUBBamEF.js";import{D as N}from"./datetime-column-C86OiFxS.js";import{C as he}from"./confirm-dialog-Dy-4G4rU.js";import{V as z}from"./VCheckboxBtn-BwlWS4y9.js";import{V as A,a as x,b as I,c as P}from"./VExpansionPanels-D_1ryJs5.js";import{k as R}from"./forwardRefs-BjkhALLr.js";import{V as fe}from"./VTable-CwYzcGki.js";import"./VForm-Bhq1UjFg.js";import"./VSelect-C857NCMc.js";import"./ssrBoot-D4fyL90J.js";import"./VDivider-DFsQRi0x.js";import"./filter-OaiDOf0D.js";const be={name:"AdminServerFolderPicker",emits:["change","menu"],data(){return{path:"",originalPath:"",showHidden:!1,menuOpen:!1}},computed:{...y(h,{folders:e=>e.folderPicker.folders,rootFolder:e=>e.folderPicker.rootFolder}),...y(T,{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:{...k(h,["clearFolders","loadFolders"]),...k(T,["clearErrors"]),change(e){let t;e?t=e.startsWith("/")||e.startsWith("\\")?e:[this.rootFolder,e].join("/"):t=this.rootFolder;const m=this.menuOpen;this.clearErrors(),this.loadFolders(t,this.showHidden).then(()=>{this.menuOpen=m;let b="";return this.formErrors.length===0&&(this.path=b=this.rootFolder),this.$emit("change",b)}).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)}}},ye={id:"folderPicker"};function ve(e,t,m,b,l,i){return p(),C("div",ye,[r(pe,L({modelValue:l.path,"onUpdate:modelValue":t[0]||(t[0]=d=>l.path=d),menu:l.menuOpen,"onUpdate:menu":t[1]||(t[1]=d=>l.menuOpen=d)},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:i.onBlur,"onClick:clear":i.onClear,onKeydown:q(i.onKeyDownEnter,["enter"])}),{item:s(({item:d,props:f})=>[r(ue,L(f,{title:d.title,value:d.value,onClick:g=>i.onItemClick(d.value)}),null,16,["title","value","onClick"])]),_:1},16,["modelValue","menu","error-messages","items","onBlur","onClick:clear","onKeydown"]),r(D,{modelValue:l.showHidden,"onUpdate:modelValue":t[2]||(t[2]=d=>l.showHidden=d),density:"compact",class:"showHidden","hide-details":"auto",label:"Show Hidden Folders"},null,8,["modelValue"])])}const ge=_(be,[["render",ve],["__scopeId","data-v-61ca3769"]]),O="DDD HH:mm:SS",Ce=/^(?:[0-3]?\d?\d\s)?(?:[01]?\d|2[0-3])(?::[0-5]\d){2}$/,we={name:"TimeTextField",data(){return{FORMAT:O,timeRules:[e=>Ce.test(e)||`Invalid time format ${O}`]}}};function _e(e,t,m,b,l,i){return p(),w(ce,L({ref:"timeField",density:"compact",filled:"",hint:l.FORMAT,round:"",rules:l.timeRules},e.$attrs),null,16,["hint","rules"])}const ke=_(we,[["render",_e]]),j=["events","poll","pollEvery","groups"];Object.freeze(j);const V={path:"",events:!0,poll:!0,pollEvery:"01:00:00",groups:[]};Object.freeze(V);const S=(e,t)=>(e=e.replaceAll("\\","/"),t=t.replaceAll("\\","/"),e.endsWith("/")||(e+="/"),t.endsWith("/")||(t+="/"),t.startsWith(e)),Fe={name:"AdminLibraryCreateUpdateInputs",components:{AdminRelationPicker:ne,AdminServerFolderPicker:ge,TimeTextField:ke},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(S(t,e))return"Path is a child of an existing library";if(S(e,t))return"Path is a parent of an existing library"}return!0}]},row:E(this.oldRow||V)}},computed:{...y(h,["normalLibraries"]),...y(h,{groups:e=>e.groups}),paths(){return this.nameSet(this.normalLibraries,"path",this.oldRow,!1)}},watch:{row:{handler(e){this.$emit("change",e)},deep:!0},oldRow:{handler(e){this.row=E(e)},deep:!0}},methods:{...k(h,["nameSet"])},UPDATE_KEYS:j,EMPTY_ROW:V},Ae={key:1};function xe(e,t,m,b,l,i){const d=u("AdminServerFolderPicker"),f=u("TimeTextField"),g=u("AdminRelationPicker");return p(),C("section",null,[m.oldRow?(p(),C("div",Ae,v(m.oldRow.path),1)):(p(),w(d,{key:0,rules:l.rules.path,autofocus:"",label:"Library Folder",onChange:t[0]||(t[0]=c=>l.row.path=c)},null,8,["rules"])),r(D,{modelValue:l.row.events,"onUpdate:modelValue":t[1]||(t[1]=c=>l.row.events=c),"hide-details":"auto",hint:"Update Codex instantly when the filesystem changes",label:"Watch Filesystem Events","persistent-hint":!0},null,8,["modelValue"]),r(D,{modelValue:l.row.poll,"onUpdate:modelValue":t[2]||(t[2]=c=>l.row.poll=c),label:"Poll Filesystem Periodically","hide-details":"auto",hint:"Periodically poll the library for changes","persistent-hint":!0},null,8,["modelValue"]),r(f,{modelValue:l.row.pollEvery,"onUpdate:modelValue":t[3]||(t[3]=c=>l.row.pollEvery=c),label:"Poll Every",disabled:!l.row.poll},null,8,["modelValue","disabled"]),l.row.coversOnly?F("",!0):(p(),w(g,{key:2,modelValue:l.row.groups,"onUpdate:modelValue":t[4]||(t[4]=c=>l.row.groups=c),label:"Groups",objs:e.groups,"group-type":"","title-key":"name"},null,8,["modelValue","objs"]))])}const G=_(Fe,[["render",xe]]),Ie={name:"AdminLibrariesTab",components:{AdminTable:me,AdminDeleteRowDialog:de,AdminCreateUpdateDialog:$,RelationChips:ae,ConfirmDialog:he,DateTimeColumn:N},props:{coversDir:{type:Boolean,default:!1}},data(){return{lastUpdate:{pk:0,field:void 0},mdiCircleOffOutline:ee,mdiDatabaseClockOutline:Z,mdiDatabaseSyncOutline:Q,mdiOpenInNew:B,AdminLibraryCreateUpdateInputs:H(G)}},computed:{...y(h,["normalLibraries","customCoverLibraries"]),...y(h,{groups:e=>e.groups,isFailedImports:e=>!!e?.failedImports?.length}),...y(T,{formErrors:e=>e.form?.errors}),...y(J,{twentyFourHourTime:e=>e.settings.twentyFourHourTime}),headers(){const e=this.coversDir?"Covers":"Comics",t=[{title:"Path",key:"path",align:"start"},{title:e,key:"comicCount"}];return this.isFailedImports&&t.push({title:"Failed",key:"failedCount"}),t.push({title:"Watch File Events",key:"events"},{title:"Poll Files Periodically",key:"poll"},{title:"Poll Every",key:"pollEvery"},{title:"Last Poll",key:"lastPoll"}),!this.coversDir&&this.isGroups&&t.push({title:"Groups",key:"groups"}),t.push({title:"Actions",key:"actions",sortable:!1}),t},items(){return globalThis.coversDir?this.customCoverLibraries:this.normalLibraries},updateLabel(){return this.coversDir?"Cover Dir":""},itemName(){return this.coversDir?"custom covers":"comics"},iconSize(){const e=this.$vuetify.display;return e.xlAndUp?"x-large":e.lgAndUp?"large":e.mdAndUp?"default":"small"},isGroups(){return!!this.groups?.length}},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...k(h,["updateRow","clearErrors","librarianTask","loadTables"]),formatNumber(e){return X.format(e)},changeCol(e,t,m){this.lastUpdate.pk=e,this.lastUpdate.field=t;const b={[t]:m};this.updateRow("Library",e,b)},getFormErrors(e,t){if(e===this.lastUpdate.pk&&t===this.lastUpdate.field)return this.formErrors},libraryLabel(e,t=!0){let m="";return e.coversOnly?(t&&(m+="Custom Group "),m+="Cover Dir"):m+="Library",m},poll(e){const t=this.libraryLabel(e);this.librarianTask("poll",`Poll ${t} ${e.pk}`,e.pk)},forcePoll(e){const t=this.libraryLabel(e);this.librarianTask("poll_force",`Force Poll ${t} ${e.pk}`,e.pk)},pollConfirmText(e){return`Poll ${this.libraryLabel(e,!1)}`}}},Pe={class:"failedComics"},Te={class:"actionButtonCell"};function Le(e,t,m,b,l,i){const d=u("DateTimeColumn"),f=u("RelationChips"),g=u("ConfirmDialog"),c=u("AdminCreateUpdateDialog"),M=u("AdminDeleteRowDialog"),K=u("AdminTable");return p(),w(K,{headers:i.headers},te({"no-data":s(()=>[t[0]||(t[0]=o("td",{class:"adminNoData",colspan:"100%"}," Add a Library to start using Codex ",-1))]),"item.comicCount":s(({item:n})=>[a(v(i.formatNumber(n.comicCount)),1)]),"item.events":s(({item:n})=>[r(z,{"model-value":n.events,disabled:""},null,8,["model-value"])]),"item.poll":s(({item:n})=>[r(z,{"model-value":n.poll,disabled:""},null,8,["model-value"])]),"item.pollEvery":s(({item:n})=>[o("span",{class:oe({disabled:!n.poll})},v(n.pollEvery),3)]),"item.lastPoll":s(({item:n})=>[r(d,{dttm:n.lastPoll},null,8,["dttm"])]),"item.actions":s(({item:n})=>[o("span",Te,[r(g,{icon:l.mdiDatabaseClockOutline,"title-text":`Poll for updated ${i.itemName}`,text:n.path,"confirm-text":i.pollConfirmText(n),size:i.iconSize,density:"compact",onConfirm:Y=>i.poll(n)},null,8,["icon","title-text","text","confirm-text","size","onConfirm"]),r(g,{icon:l.mdiDatabaseSyncOutline,"title-text":`Force update ${i.itemName}`,text:n.path,"confirm-text":"Force Update",size:i.iconSize,density:"compact",onConfirm:Y=>i.forcePoll(n)},null,8,["icon","title-text","text","size","onConfirm"]),r(c,{table:"Library","old-row":n,inputs:l.AdminLibraryCreateUpdateInputs,label:i.updateLabel,"max-width":"22em",size:i.iconSize,density:"compact"},null,8,["old-row","inputs","label","size"]),n.coversOnly?F("",!0):(p(),w(M,{key:0,table:"Library",pk:n.pk,name:n.path,size:i.iconSize,density:"compact"},null,8,["pk","name","size"]))])]),_:2},[e.isFailedImports?{name:"item.failedCount",fn:s(({item:n})=>[o("span",Pe,v(i.formatNumber(n.failedCount)),1)]),key:"0"}:void 0,i.isGroups?{name:"item.groups",fn:s(({item:n})=>[r(f,{pks:n.groups,objs:e.groups,"group-type":"","title-key":"name"},null,8,["pks","objs"])]),key:"1"}:void 0]),1032,["headers"])}const W=_(Ie,[["render",Le],["__scopeId","data-v-e99f2f5e"]]),De={name:"AdminCustomCoversPanel",components:{AdminLibraryTable:W},computed:{...y(h,["customCoverLibraries"])}};function Ve(e,t,m,b,l,i){const d=u("AdminLibraryTable");return p(),w(A,null,{default:s(()=>[r(x,null,{default:s(()=>[r(I,null,{default:s(()=>t[0]||(t[0]=[o("h4",{id:"coverDirHeader"},"Custom Covers",-1)])),_:1,__:[0]}),r(P,null,{default:s(()=>[r(d,{items:e.customCoverLibraries,"disable-sort":"","covers-dir":!0},null,8,["items"]),r(A,null,{default:s(()=>[r(x,{id:"customCoversHelp"},{default:s(()=>[r(I,null,{default:s(()=>t[1]||(t[1]=[o("h4",null,"Custom Covers Help",-1)])),_:1,__:[1]}),r(P,null,{default:s(()=>t[2]||(t[2]=[o("p",null,"Custom covers may be added to the browser in two locations:",-1),o("h4",null,"Folders",-1),o("p",null,[a(" A library folder with a file named "),o("code",null,".codex-cover.jpg"),a(" will show a custom cover for that folder in Folder view. The addition and removal of these covers by watching filesystem events and polling is handled by the library that folder belongs to. ")],-1),o("h4",null,"Custom Covers Dir",-1),o("p",null,[a(" The Codex config directory has a special folder named "),o("code",null,"custom-covers"),a(" under which are subdirectories for each of the browser groups that may adopt custom covers. Images in these subdirectories that match the name of the browser group will be used as custom covers. For instance: "),o("code",null,".../custom-covers/publishers/American Comics Group.webp"),a(' would be used as the cover for the publisher "American Comics Group". '),o("code",null,".../custom-covers/series/arrow.png"),a(' would be used as the cover for every series named "Arrow", for '),o("em",null,"every"),a(" publisher. Similar to a comic library, the "),o("code",null,"custom-covers"),a(" directory may be watched and polled for changes. By default it is neither watched nor polled and must be enabled by the admin. ")],-1),o("h4",null,"Image Formats & Size",-1),o("p",null,[a(" Custom covers are detected only for files with the extensions: "),o("code",null,".bmp, .gif, .jpeg, .jpg, .png, .webp"),a(". ")],-1),o("p",null," Browser covers are transformed from their sources to 165px x 254px thumbnails. Custom covers will transform most aesthetically the closer to that ratio they are. ",-1),o("h4",null,"Priority",-1),o("p",null," Custom covers supersede covers set by the user's individual browser settings. ",-1)])),_:1,__:[2]})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})}const Ee=_(De,[["render",Ve],["__scopeId","data-v-268927b7"]]),Ue={name:"AdminFailedImportsPanel",components:{DateTimeColumn:N},data(){return{mdiBookAlert:le,mdiOpenInNew:B}},computed:{...y(h,{failedImports:e=>e.failedImports,showFailedImports:e=>e.failedImports&&e.failedImports.length>0}),...re(h,["unseenFailedImports"])}},ze={key:0},Re={class:"dateCol"},Oe={href:"https://github.com/ajslater/codex/issues/",target:"_blank"};function Se(e,t,m,b,l,i){const d=u("DateTimeColumn");return e.showFailedImports?(p(),C("div",ze,[r(A,null,{default:s(()=>[r(x,{id:"failedImportsPanel",onClick:t[0]||(t[0]=f=>e.unseenFailedImports=!1)},{default:s(()=>[r(I,null,{default:s(()=>[o("h4",null,"Failed Imports: "+v(e.failedImports.length),1),e.unseenFailedImports?(p(),w(R,{key:0,id:"failedImportsIcon",title:"New Failed Imports"},{default:s(()=>[a(v(l.mdiBookAlert),1)]),_:1})):F("",!0)]),_:1}),r(P,null,{default:s(()=>[r(fe,{class:"highlight-table"},{default:s(()=>[t[1]||(t[1]=o("thead",null,[o("tr",null,[o("th",null,"Path"),o("th",null,"Created")])],-1)),o("tbody",null,[(p(!0),C(se,null,ie(e.failedImports,f=>(p(),C("tr",{key:`fi:${f.path}`},[o("td",null,v(f.path),1),o("td",Re,[r(d,{dttm:f.createdAt},null,8,["dttm"])])]))),128))])]),_:1}),r(A,null,{default:s(()=>[r(x,{id:"failedImportsHelp"},{default:s(()=>[r(I,null,{default:s(()=>t[2]||(t[2]=[o("h4",null,"Failed Imports Help",-1)])),_:1,__:[2]}),r(P,null,{default:s(()=>[t[8]||(t[8]=o("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)),t[9]||(t[9]=o("h4",null,"Fixing comics",-1)),t[10]||(t[10]=o("p",null,[a(" Try using the zip fixer to fix comics: "),o("code",{class:"cli"},[a(" cp problem-comic.cbz /somewhere/safe/problem-comic.cbz.backup"),o("br"),a(" zip -F problem-comic.cbz --out fixed.zip"),o("br"),a(" mv fixed.zip problem-comic.cbz ")]),a(" You may also try "),o("code",null,"zip -FF"),a(" 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)),t[11]||(t[11]=o("h4",null,"Reporting Issues",-1)),o("p",null,[t[4]||(t[4]=a(" 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 ")),o("a",Oe,[t[3]||(t[3]=a("Issue Report")),r(R,{size:"small"},{default:s(()=>[a(v(l.mdiOpenInNew),1)]),_:1})]),t[5]||(t[5]=a(" and include the stack trace from the logs at ")),t[6]||(t[6]=o("code",null,"config/logs/codex.log",-1)),t[7]||(t[7]=a(" if you can. "))])]),_:1,__:[8,9,10,11]})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])):F("",!0)}const He=_(Ue,[["render",Se],["__scopeId","data-v-827c9a0b"]]),Be={name:"AdminLibrariesTab",components:{AdminFailedImportsPanel:He,AdminLibraryTable:W,AdminCreateUpdateDialog:$,AdminCustomCoversPanel:Ee},data(){return{AdminLibraryCreateUpdateInputs:H(G)}},computed:{...y(h,["normalLibraries"])},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...k(h,["loadTables"])}},$e={class:"tabHeader"};function Ne(e,t,m,b,l,i){const d=u("AdminCreateUpdateDialog"),f=u("AdminLibraryTable"),g=u("AdminFailedImportsPanel"),c=u("AdminCustomCoversPanel");return p(),C("div",null,[o("header",$e,[r(d,{table:"Library",inputs:l.AdminLibraryCreateUpdateInputs},null,8,["inputs"])]),r(f,{items:e.normalLibraries,"sort-by":[{key:"path",order:"asc"}]},null,8,["items"]),r(U,null,{default:s(()=>[r(g,{id:"failedImports"})]),_:1}),r(U,null,{default:s(()=>[r(c,{id:"customCovers"})]),_:1}),t[0]||(t[0]=o("p",{id:"libraryHelp"}," Each Watched File Events box checked creates a thread to monitor the Library. An large number of watching threads may exceed the limits of your operating system or container. ",-1))])}const nt=_(Be,[["render",Ne],["__scopeId","data-v-66bb908f"]]);export{nt as default};
@@ -0,0 +1 @@
1
+ import{_,B as k,D as y,C as T,q as C,v as p,a as r,w as s,m as L,X as q,x as w,G as F,s as u,A as v,L as E,ad as X,M as J,an as H,$ as B,bz as Q,bA as Z,bB as ee,V as te,b as o,d as oe,y as a,k as re,bC as le,F as se,z as ie}from"./main-0gkU-bgy.js";import{A as ne,R as ae,a as $,b as de,c as me}from"./relation-chips-Dl0i3EP7.js";import{useAdminStore as h}from"./admin-CJauEn2X.js";import{a as ue}from"./VDialog-N7erUTvb.js";import{V as pe}from"./VCombobox-DyLCrBiS.js";import{V as D}from"./VCheckbox-BD4eUg4g.js";import{c as ce,d as U}from"./VSelectionControl-BUBBamEF.js";import{D as N}from"./datetime-column-C86OiFxS.js";import{C as he}from"./confirm-dialog-Dy-4G4rU.js";import{V as z}from"./VCheckboxBtn-BwlWS4y9.js";import{V as A,a as x,b as I,c as P}from"./VExpansionPanels-D_1ryJs5.js";import{k as R}from"./forwardRefs-BjkhALLr.js";import{V as fe}from"./VTable-CwYzcGki.js";import"./VForm-Bhq1UjFg.js";import"./VSelect-C857NCMc.js";import"./ssrBoot-D4fyL90J.js";import"./VDivider-DFsQRi0x.js";import"./filter-OaiDOf0D.js";const be={name:"AdminServerFolderPicker",emits:["change","menu"],data(){return{path:"",originalPath:"",showHidden:!1,menuOpen:!1}},computed:{...y(h,{folders:e=>e.folderPicker.folders,rootFolder:e=>e.folderPicker.rootFolder}),...y(T,{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:{...k(h,["clearFolders","loadFolders"]),...k(T,["clearErrors"]),change(e){let t;e?t=e.startsWith("/")||e.startsWith("\\")?e:[this.rootFolder,e].join("/"):t=this.rootFolder;const m=this.menuOpen;this.clearErrors(),this.loadFolders(t,this.showHidden).then(()=>{this.menuOpen=m;let b="";return this.formErrors.length===0&&(this.path=b=this.rootFolder),this.$emit("change",b)}).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)}}},ye={id:"folderPicker"};function ve(e,t,m,b,l,i){return p(),C("div",ye,[r(pe,L({modelValue:l.path,"onUpdate:modelValue":t[0]||(t[0]=d=>l.path=d),menu:l.menuOpen,"onUpdate:menu":t[1]||(t[1]=d=>l.menuOpen=d)},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:i.onBlur,"onClick:clear":i.onClear,onKeydown:q(i.onKeyDownEnter,["enter"])}),{item:s(({item:d,props:f})=>[r(ue,L(f,{title:d.title,value:d.value,onClick:g=>i.onItemClick(d.value)}),null,16,["title","value","onClick"])]),_:1},16,["modelValue","menu","error-messages","items","onBlur","onClick:clear","onKeydown"]),r(D,{modelValue:l.showHidden,"onUpdate:modelValue":t[2]||(t[2]=d=>l.showHidden=d),density:"compact",class:"showHidden","hide-details":"auto",label:"Show Hidden Folders"},null,8,["modelValue"])])}const ge=_(be,[["render",ve],["__scopeId","data-v-61ca3769"]]),O="DDD HH:mm:SS",Ce=/^(?:[0-3]?\d?\d\s)?(?:[01]?\d|2[0-3])(?::[0-5]\d){2}$/,we={name:"TimeTextField",data(){return{FORMAT:O,timeRules:[e=>Ce.test(e)||`Invalid time format ${O}`]}}};function _e(e,t,m,b,l,i){return p(),w(ce,L({ref:"timeField",density:"compact",filled:"",hint:l.FORMAT,round:"",rules:l.timeRules},e.$attrs),null,16,["hint","rules"])}const ke=_(we,[["render",_e]]),j=["events","poll","pollEvery","groups"];Object.freeze(j);const V={path:"",events:!0,poll:!0,pollEvery:"01:00:00",groups:[]};Object.freeze(V);const S=(e,t)=>(e=e.replaceAll("\\","/"),t=t.replaceAll("\\","/"),e.endsWith("/")||(e+="/"),t.endsWith("/")||(t+="/"),t.startsWith(e)),Fe={name:"AdminLibraryCreateUpdateInputs",components:{AdminRelationPicker:ne,AdminServerFolderPicker:ge,TimeTextField:ke},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(S(t,e))return"Path is a child of an existing library";if(S(e,t))return"Path is a parent of an existing library"}return!0}]},row:E(this.oldRow||V)}},computed:{...y(h,["normalLibraries"]),...y(h,{groups:e=>e.groups}),paths(){return this.nameSet(this.normalLibraries,"path",this.oldRow,!1)}},watch:{row:{handler(e){this.$emit("change",e)},deep:!0},oldRow:{handler(e){this.row=E(e)},deep:!0}},methods:{...k(h,["nameSet"])},UPDATE_KEYS:j,EMPTY_ROW:V},Ae={key:1};function xe(e,t,m,b,l,i){const d=u("AdminServerFolderPicker"),f=u("TimeTextField"),g=u("AdminRelationPicker");return p(),C("section",null,[m.oldRow?(p(),C("div",Ae,v(m.oldRow.path),1)):(p(),w(d,{key:0,rules:l.rules.path,autofocus:"",label:"Library Folder",onChange:t[0]||(t[0]=c=>l.row.path=c)},null,8,["rules"])),r(D,{modelValue:l.row.events,"onUpdate:modelValue":t[1]||(t[1]=c=>l.row.events=c),"hide-details":"auto",hint:"Update Codex instantly when the filesystem changes",label:"Watch Filesystem Events","persistent-hint":!0},null,8,["modelValue"]),r(D,{modelValue:l.row.poll,"onUpdate:modelValue":t[2]||(t[2]=c=>l.row.poll=c),label:"Poll Filesystem Periodically","hide-details":"auto",hint:"Periodically poll the library for changes","persistent-hint":!0},null,8,["modelValue"]),r(f,{modelValue:l.row.pollEvery,"onUpdate:modelValue":t[3]||(t[3]=c=>l.row.pollEvery=c),label:"Poll Every",disabled:!l.row.poll},null,8,["modelValue","disabled"]),l.row.coversOnly?F("",!0):(p(),w(g,{key:2,modelValue:l.row.groups,"onUpdate:modelValue":t[4]||(t[4]=c=>l.row.groups=c),label:"Groups",objs:e.groups,"group-type":"","title-key":"name"},null,8,["modelValue","objs"]))])}const G=_(Fe,[["render",xe]]),Ie={name:"AdminLibrariesTab",components:{AdminTable:me,AdminDeleteRowDialog:de,AdminCreateUpdateDialog:$,RelationChips:ae,ConfirmDialog:he,DateTimeColumn:N},props:{coversDir:{type:Boolean,default:!1}},data(){return{lastUpdate:{pk:0,field:void 0},mdiCircleOffOutline:ee,mdiDatabaseClockOutline:Z,mdiDatabaseSyncOutline:Q,mdiOpenInNew:B,AdminLibraryCreateUpdateInputs:H(G)}},computed:{...y(h,["normalLibraries","customCoverLibraries"]),...y(h,{groups:e=>e.groups,isFailedImports:e=>!!e?.failedImports?.length}),...y(T,{formErrors:e=>e.form?.errors}),...y(J,{twentyFourHourTime:e=>e.settings.twentyFourHourTime}),headers(){const e=this.coversDir?"Covers":"Comics",t=[{title:"Path",key:"path",align:"start"},{title:e,key:"comicCount"}];return this.isFailedImports&&t.push({title:"Failed",key:"failedCount"}),t.push({title:"Watch File Events",key:"events"},{title:"Poll Files Periodically",key:"poll"},{title:"Poll Every",key:"pollEvery"},{title:"Last Poll",key:"lastPoll"}),!this.coversDir&&this.isGroups&&t.push({title:"Groups",key:"groups"}),t.push({title:"Actions",key:"actions",sortable:!1}),t},items(){return globalThis.coversDir?this.customCoverLibraries:this.normalLibraries},updateLabel(){return this.coversDir?"Cover Dir":""},itemName(){return this.coversDir?"custom covers":"comics"},iconSize(){const e=this.$vuetify.display;return e.xlAndUp?"x-large":e.lgAndUp?"large":e.mdAndUp?"default":"small"},isGroups(){return!!this.groups?.length}},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...k(h,["updateRow","clearErrors","librarianTask","loadTables"]),formatNumber(e){return X.format(e)},changeCol(e,t,m){this.lastUpdate.pk=e,this.lastUpdate.field=t;const b={[t]:m};this.updateRow("Library",e,b)},getFormErrors(e,t){if(e===this.lastUpdate.pk&&t===this.lastUpdate.field)return this.formErrors},libraryLabel(e,t=!0){let m="";return e.coversOnly?(t&&(m+="Custom Group "),m+="Cover Dir"):m+="Library",m},poll(e){const t=this.libraryLabel(e);this.librarianTask("poll",`Poll ${t} ${e.pk}`,e.pk)},forcePoll(e){const t=this.libraryLabel(e);this.librarianTask("poll_force",`Force Poll ${t} ${e.pk}`,e.pk)},pollConfirmText(e){return`Poll ${this.libraryLabel(e,!1)}`}}},Pe={class:"failedComics"},Te={class:"actionButtonCell"};function Le(e,t,m,b,l,i){const d=u("DateTimeColumn"),f=u("RelationChips"),g=u("ConfirmDialog"),c=u("AdminCreateUpdateDialog"),M=u("AdminDeleteRowDialog"),K=u("AdminTable");return p(),w(K,{headers:i.headers},te({"no-data":s(()=>[t[0]||(t[0]=o("td",{class:"adminNoData",colspan:"100%"}," Add a Library to start using Codex ",-1))]),"item.comicCount":s(({item:n})=>[a(v(i.formatNumber(n.comicCount)),1)]),"item.events":s(({item:n})=>[r(z,{"model-value":n.events,disabled:""},null,8,["model-value"])]),"item.poll":s(({item:n})=>[r(z,{"model-value":n.poll,disabled:""},null,8,["model-value"])]),"item.pollEvery":s(({item:n})=>[o("span",{class:oe({disabled:!n.poll})},v(n.pollEvery),3)]),"item.lastPoll":s(({item:n})=>[r(d,{dttm:n.lastPoll},null,8,["dttm"])]),"item.actions":s(({item:n})=>[o("span",Te,[r(g,{icon:l.mdiDatabaseClockOutline,"title-text":`Poll for updated ${i.itemName}`,text:n.path,"confirm-text":i.pollConfirmText(n),size:i.iconSize,density:"compact",onConfirm:Y=>i.poll(n)},null,8,["icon","title-text","text","confirm-text","size","onConfirm"]),r(g,{icon:l.mdiDatabaseSyncOutline,"title-text":`Force update ${i.itemName}`,text:n.path,"confirm-text":"Force Update",size:i.iconSize,density:"compact",onConfirm:Y=>i.forcePoll(n)},null,8,["icon","title-text","text","size","onConfirm"]),r(c,{table:"Library","old-row":n,inputs:l.AdminLibraryCreateUpdateInputs,label:i.updateLabel,"max-width":"22em",size:i.iconSize,density:"compact"},null,8,["old-row","inputs","label","size"]),n.coversOnly?F("",!0):(p(),w(M,{key:0,table:"Library",pk:n.pk,name:n.path,size:i.iconSize,density:"compact"},null,8,["pk","name","size"]))])]),_:2},[e.isFailedImports?{name:"item.failedCount",fn:s(({item:n})=>[o("span",Pe,v(i.formatNumber(n.failedCount)),1)]),key:"0"}:void 0,i.isGroups?{name:"item.groups",fn:s(({item:n})=>[r(f,{pks:n.groups,objs:e.groups,"group-type":"","title-key":"name"},null,8,["pks","objs"])]),key:"1"}:void 0]),1032,["headers"])}const W=_(Ie,[["render",Le],["__scopeId","data-v-e99f2f5e"]]),De={name:"AdminCustomCoversPanel",components:{AdminLibraryTable:W},computed:{...y(h,["customCoverLibraries"])}};function Ve(e,t,m,b,l,i){const d=u("AdminLibraryTable");return p(),w(A,null,{default:s(()=>[r(x,null,{default:s(()=>[r(I,null,{default:s(()=>t[0]||(t[0]=[o("h4",{id:"coverDirHeader"},"Custom Covers",-1)])),_:1,__:[0]}),r(P,null,{default:s(()=>[r(d,{items:e.customCoverLibraries,"disable-sort":"","covers-dir":!0},null,8,["items"]),r(A,null,{default:s(()=>[r(x,{id:"customCoversHelp"},{default:s(()=>[r(I,null,{default:s(()=>t[1]||(t[1]=[o("h4",null,"Custom Covers Help",-1)])),_:1,__:[1]}),r(P,null,{default:s(()=>t[2]||(t[2]=[o("p",null,"Custom covers may be added to the browser in two locations:",-1),o("h4",null,"Folders",-1),o("p",null,[a(" A library folder with a file named "),o("code",null,".codex-cover.jpg"),a(" will show a custom cover for that folder in Folder view. The addition and removal of these covers by watching filesystem events and polling is handled by the library that folder belongs to. ")],-1),o("h4",null,"Custom Covers Dir",-1),o("p",null,[a(" The Codex config directory has a special folder named "),o("code",null,"custom-covers"),a(" under which are subdirectories for each of the browser groups that may adopt custom covers. Images in these subdirectories that match the name of the browser group will be used as custom covers. For instance: "),o("code",null,".../custom-covers/publishers/American Comics Group.webp"),a(' would be used as the cover for the publisher "American Comics Group". '),o("code",null,".../custom-covers/series/arrow.png"),a(' would be used as the cover for every series named "Arrow", for '),o("em",null,"every"),a(" publisher. Similar to a comic library, the "),o("code",null,"custom-covers"),a(" directory may be watched and polled for changes. By default it is neither watched nor polled and must be enabled by the admin. ")],-1),o("h4",null,"Image Formats & Size",-1),o("p",null,[a(" Custom covers are detected only for files with the extensions: "),o("code",null,".bmp, .gif, .jpeg, .jpg, .png, .webp"),a(". ")],-1),o("p",null," Browser covers are transformed from their sources to 165px x 254px thumbnails. Custom covers will transform most aesthetically the closer to that ratio they are. ",-1),o("h4",null,"Priority",-1),o("p",null," Custom covers supersede covers set by the user's individual browser settings. ",-1)])),_:1,__:[2]})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})}const Ee=_(De,[["render",Ve],["__scopeId","data-v-268927b7"]]),Ue={name:"AdminFailedImportsPanel",components:{DateTimeColumn:N},data(){return{mdiBookAlert:le,mdiOpenInNew:B}},computed:{...y(h,{failedImports:e=>e.failedImports,showFailedImports:e=>e.failedImports&&e.failedImports.length>0}),...re(h,["unseenFailedImports"])}},ze={key:0},Re={class:"dateCol"},Oe={href:"https://github.com/ajslater/codex/issues/",target:"_blank"};function Se(e,t,m,b,l,i){const d=u("DateTimeColumn");return e.showFailedImports?(p(),C("div",ze,[r(A,null,{default:s(()=>[r(x,{id:"failedImportsPanel",onClick:t[0]||(t[0]=f=>e.unseenFailedImports=!1)},{default:s(()=>[r(I,null,{default:s(()=>[o("h4",null,"Failed Imports: "+v(e.failedImports.length),1),e.unseenFailedImports?(p(),w(R,{key:0,id:"failedImportsIcon",title:"New Failed Imports"},{default:s(()=>[a(v(l.mdiBookAlert),1)]),_:1})):F("",!0)]),_:1}),r(P,null,{default:s(()=>[r(fe,{class:"highlight-table"},{default:s(()=>[t[1]||(t[1]=o("thead",null,[o("tr",null,[o("th",null,"Path"),o("th",null,"Created")])],-1)),o("tbody",null,[(p(!0),C(se,null,ie(e.failedImports,f=>(p(),C("tr",{key:`fi:${f.path}`},[o("td",null,v(f.path),1),o("td",Re,[r(d,{dttm:f.createdAt},null,8,["dttm"])])]))),128))])]),_:1}),r(A,null,{default:s(()=>[r(x,{id:"failedImportsHelp"},{default:s(()=>[r(I,null,{default:s(()=>t[2]||(t[2]=[o("h4",null,"Failed Imports Help",-1)])),_:1,__:[2]}),r(P,null,{default:s(()=>[t[8]||(t[8]=o("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)),t[9]||(t[9]=o("h4",null,"Fixing comics",-1)),t[10]||(t[10]=o("p",null,[a(" Try using the zip fixer to fix comics: "),o("code",{class:"cli"},[a(" cp problem-comic.cbz /somewhere/safe/problem-comic.cbz.backup"),o("br"),a(" zip -F problem-comic.cbz --out fixed.zip"),o("br"),a(" mv fixed.zip problem-comic.cbz ")]),a(" You may also try "),o("code",null,"zip -FF"),a(" 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)),t[11]||(t[11]=o("h4",null,"Reporting Issues",-1)),o("p",null,[t[4]||(t[4]=a(" 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 ")),o("a",Oe,[t[3]||(t[3]=a("Issue Report")),r(R,{size:"small"},{default:s(()=>[a(v(l.mdiOpenInNew),1)]),_:1})]),t[5]||(t[5]=a(" and include the stack trace from the logs at ")),t[6]||(t[6]=o("code",null,"config/logs/codex.log",-1)),t[7]||(t[7]=a(" if you can. "))])]),_:1,__:[8,9,10,11]})]),_:1})]),_:1})]),_:1})]),_:1})]),_:1})])):F("",!0)}const He=_(Ue,[["render",Se],["__scopeId","data-v-827c9a0b"]]),Be={name:"AdminLibrariesTab",components:{AdminFailedImportsPanel:He,AdminLibraryTable:W,AdminCreateUpdateDialog:$,AdminCustomCoversPanel:Ee},data(){return{AdminLibraryCreateUpdateInputs:H(G)}},computed:{...y(h,["normalLibraries"])},mounted(){this.loadTables(["Group","Library","FailedImport"])},methods:{...k(h,["loadTables"])}},$e={class:"tabHeader"};function Ne(e,t,m,b,l,i){const d=u("AdminCreateUpdateDialog"),f=u("AdminLibraryTable"),g=u("AdminFailedImportsPanel"),c=u("AdminCustomCoversPanel");return p(),C("div",null,[o("header",$e,[r(d,{table:"Library",inputs:l.AdminLibraryCreateUpdateInputs},null,8,["inputs"])]),r(f,{items:e.normalLibraries,"sort-by":[{key:"path",order:"asc"}]},null,8,["items"]),r(U,null,{default:s(()=>[r(g,{id:"failedImports"})]),_:1}),r(U,null,{default:s(()=>[r(c,{id:"customCovers"})]),_:1}),t[0]||(t[0]=o("p",{id:"libraryHelp"}," Each Watched File Events box checked creates a thread to monitor the Library. An large number of watching threads may exceed the limits of your operating system or container. ",-1))])}const nt=_(Be,[["render",Ne],["__scopeId","data-v-66bb908f"]]);export{nt as default};