@morghulis/core 0.0.7 → 1.0.0

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.
Files changed (310) hide show
  1. package/README.md +11 -2
  2. package/dist/index.css +1 -1
  3. package/dist/morghulis-core.es.js +20912 -30557
  4. package/dist/morghulis-core.es.js.map +1 -1
  5. package/dist/morghulis-core.umd.js +21 -173
  6. package/dist/morghulis-core.umd.js.map +1 -1
  7. package/dist/tsconfig.build.tsbuildinfo +1 -0
  8. package/dist/types/app/MApp.vue.d.ts +21 -0
  9. package/dist/types/app/admin/MAdmin.vue.d.ts +17 -0
  10. package/dist/types/app/admin/components/MChannelHub.vue.d.ts +3 -0
  11. package/dist/types/app/admin/components/dialogs/AccountDialog.vue.d.ts +6 -0
  12. package/dist/types/app/admin/components/dialogs/ChannelDialog.vue.d.ts +5 -0
  13. package/dist/types/app/admin/components/dialogs/PasswordDialog.vue.d.ts +5 -0
  14. package/dist/types/app/admin/components/dialogs/ProfileDialog.vue.d.ts +9 -0
  15. package/dist/types/app/admin/components/dialogs/forms/AccountForm.vue.d.ts +7 -0
  16. package/dist/types/app/admin/components/dialogs/forms/PasswordForm.vue.d.ts +13 -0
  17. package/dist/types/app/admin/components/dialogs/forms/index.d.ts +3 -0
  18. package/dist/types/app/admin/components/dialogs/index.d.ts +9 -0
  19. package/dist/types/app/admin/contents/auth/AdminAuth.vue.d.ts +3 -0
  20. package/dist/types/app/admin/contents/auth/index.d.ts +2 -0
  21. package/dist/types/app/admin/contents/auth/login/LoginDialog.vue.d.ts +5 -0
  22. package/dist/types/app/admin/contents/auth/login/forms/LoginForm.vue.d.ts +9 -0
  23. package/dist/types/app/admin/contents/auth/login/forms/SignInForm.vue.d.ts +9 -0
  24. package/dist/types/app/admin/contents/auth/login/forms/SignUpForm.vue.d.ts +10 -0
  25. package/dist/types/app/admin/contents/auth/login/forms/index.d.ts +7 -0
  26. package/dist/types/app/admin/contents/auth/login/index.d.ts +3 -0
  27. package/dist/types/app/admin/contents/auth/login/retrieve/RetrieveDialog.vue.d.ts +5 -0
  28. package/dist/types/app/admin/contents/auth/login/retrieve/index.d.ts +3 -0
  29. package/dist/types/app/admin/contents/auth/login/validator.d.ts +2 -0
  30. package/dist/types/app/admin/contents/auth/widgets/AuthDropdown.vue.d.ts +3 -0
  31. package/dist/types/app/admin/contents/hooks.d.ts +174 -0
  32. package/dist/types/app/admin/contents/index.d.ts +0 -0
  33. package/dist/types/app/admin/contents/menu/AdminMenu.vue.d.ts +11 -0
  34. package/dist/types/app/admin/contents/menu/MenuTreeNode.vue.d.ts +9 -0
  35. package/dist/types/app/admin/contents/navigate/AdminNavigate.vue.d.ts +7 -0
  36. package/dist/types/app/admin/contents/system/MAccount.vue.d.ts +3 -0
  37. package/dist/types/app/admin/contents/system/MMenu.vue.d.ts +3 -0
  38. package/dist/types/app/admin/contents/system/MRole.vue.d.ts +3 -0
  39. package/dist/types/app/admin/contents/system/MUser.vue.d.ts +3 -0
  40. package/dist/types/app/admin/contents/system/feedbacks/AccountRoleDialog.vue.d.ts +11 -0
  41. package/dist/types/app/admin/contents/system/feedbacks/MenuAddDialog.vue.d.ts +15 -0
  42. package/dist/types/app/admin/contents/system/feedbacks/MenuPathPopover.vue.d.ts +14 -0
  43. package/dist/types/app/admin/contents/system/feedbacks/MenuRoleDialog.vue.d.ts +11 -0
  44. package/dist/types/app/admin/contents/system/feedbacks/MenuViewDialog.vue.d.ts +6 -0
  45. package/dist/types/app/admin/contents/system/feedbacks/RoleAccountDialog.vue.d.ts +11 -0
  46. package/dist/types/app/admin/contents/system/feedbacks/RoleMenuDialog.vue.d.ts +11 -0
  47. package/dist/types/app/admin/contents/system/feedbacks/hooks.d.ts +13 -0
  48. package/dist/types/app/admin/contents/system/feedbacks/index.d.ts +15 -0
  49. package/dist/types/app/admin/contents/system/widgets/MenuLabel.vue.d.ts +7 -0
  50. package/dist/types/app/admin/contents/system/widgets/MenuRolePlugin.vue.d.ts +7 -0
  51. package/dist/types/app/admin/contents/system/widgets/index.d.ts +3 -0
  52. package/dist/types/app/admin/hooks.d.ts +4 -0
  53. package/dist/types/app/admin/pages/AdminMain.vue.d.ts +3 -0
  54. package/dist/types/app/admin/pages/MSystem.vue.d.ts +3 -0
  55. package/dist/types/app/admin/pages/NoPermission.vue.d.ts +3 -0
  56. package/dist/types/app/admin/pages/NotFound.vue.d.ts +3 -0
  57. package/dist/types/app/admin/pages/index.d.ts +7 -0
  58. package/dist/types/app/admin/stores/index.d.ts +2 -0
  59. package/dist/types/app/admin/stores/options.d.ts +15 -0
  60. package/dist/types/app/admin/stores/user.d.ts +149 -0
  61. package/dist/types/app/index.d.ts +2 -0
  62. package/dist/types/app/install.d.ts +3 -0
  63. package/dist/types/components.d.ts +5 -0
  64. package/dist/types/data/cell/FieldTransfer.vue.d.ts +14 -0
  65. package/dist/types/data/cell/MCell.vue.d.ts +14 -0
  66. package/dist/types/data/cell/hooks.d.ts +15 -0
  67. package/dist/types/data/cell/index.d.ts +3 -0
  68. package/dist/types/data/cell/instances/char/CharCell.vue.d.ts +4 -0
  69. package/dist/types/data/cell/instances/char/ColorCell.vue.d.ts +4 -0
  70. package/dist/types/data/cell/instances/char/IconCell.vue.d.ts +4 -0
  71. package/dist/types/data/cell/instances/char/MultiSetCell.vue.d.ts +4 -0
  72. package/dist/types/data/cell/instances/char/SetCell.vue.d.ts +4 -0
  73. package/dist/types/data/cell/instances/char/index.d.ts +6 -0
  74. package/dist/types/data/cell/instances/date/DateArrayCell.vue.d.ts +4 -0
  75. package/dist/types/data/cell/instances/date/DateCell.vue.d.ts +4 -0
  76. package/dist/types/data/cell/instances/date/DateRangeCell.vue.d.ts +4 -0
  77. package/dist/types/data/cell/instances/date/TimeCell.vue.d.ts +4 -0
  78. package/dist/types/data/cell/instances/date/TimeRangeCell.vue.d.ts +4 -0
  79. package/dist/types/data/cell/instances/date/index.d.ts +6 -0
  80. package/dist/types/data/cell/instances/hooks.d.ts +46 -0
  81. package/dist/types/data/cell/instances/index.d.ts +5 -0
  82. package/dist/types/data/cell/instances/refer/AutoCell.vue.d.ts +4 -0
  83. package/dist/types/data/cell/instances/refer/CascadeCell.vue.d.ts +4 -0
  84. package/dist/types/data/cell/instances/refer/SelectCell.vue.d.ts +4 -0
  85. package/dist/types/data/cell/instances/refer/TransferCell.vue.d.ts +4 -0
  86. package/dist/types/data/cell/instances/refer/TreeCell.vue.d.ts +4 -0
  87. package/dist/types/data/cell/instances/refer/index.d.ts +6 -0
  88. package/dist/types/data/cell/instances/simple/BooleanCell.vue.d.ts +4 -0
  89. package/dist/types/data/cell/instances/simple/DefaultCell.vue.d.ts +4 -0
  90. package/dist/types/data/cell/instances/simple/NumberCell.vue.d.ts +4 -0
  91. package/dist/types/data/cell/instances/simple/index.d.ts +4 -0
  92. package/dist/types/data/cell/instances/special/FileCell.vue.d.ts +7 -0
  93. package/dist/types/data/cell/instances/special/ObjectCell.vue.d.ts +4 -0
  94. package/dist/types/data/cell/instances/special/RichCell.vue.d.ts +4 -0
  95. package/dist/types/data/cell/instances/special/index.d.ts +4 -0
  96. package/dist/types/data/cell/types.d.ts +13 -0
  97. package/dist/types/data/form/MForm.vue.d.ts +12 -0
  98. package/dist/types/data/form/hooks.d.ts +36 -0
  99. package/dist/types/data/form/index.d.ts +3 -0
  100. package/dist/types/data/form/types.d.ts +19 -0
  101. package/dist/types/data/form/widgets/MFormLabel.vue.d.ts +14 -0
  102. package/dist/types/data/index.d.ts +6 -0
  103. package/dist/types/data/plugin/MPluginButtons.vue.d.ts +11 -0
  104. package/dist/types/data/plugin/MPluginColumn.vue.d.ts +11 -0
  105. package/dist/types/data/plugin/index.d.ts +4 -0
  106. package/dist/types/data/plugin/types.d.ts +58 -0
  107. package/dist/types/data/table/MTable.vue.d.ts +28 -0
  108. package/dist/types/data/table/components/columns/ButtonsColumn.vue.d.ts +10 -0
  109. package/dist/types/data/table/components/columns/CustomColumn.vue.d.ts +10 -0
  110. package/dist/types/data/table/components/columns/FieldColumn.vue.d.ts +18 -0
  111. package/dist/types/data/table/components/columns/IndexColumn.vue.d.ts +14 -0
  112. package/dist/types/data/table/components/columns/cells/MTableCell.vue.d.ts +15 -0
  113. package/dist/types/data/table/components/columns/cells/MTableHeaderCell.vue.d.ts +12 -0
  114. package/dist/types/data/table/components/columns/cells/MTableIndexCell.vue.d.ts +10 -0
  115. package/dist/types/data/table/components/control/MTableControl.vue.d.ts +21 -0
  116. package/dist/types/data/table/components/control/MTableControlButtons.vue.d.ts +24 -0
  117. package/dist/types/data/table/components/control/index.d.ts +4 -0
  118. package/dist/types/data/table/components/feedback/CellDialog.vue.d.ts +11 -0
  119. package/dist/types/data/table/components/feedback/CellPopover.vue.d.ts +14 -0
  120. package/dist/types/data/table/components/feedback/IndexPopover.vue.d.ts +14 -0
  121. package/dist/types/data/table/components/feedback/LookupPopover.vue.d.ts +8 -0
  122. package/dist/types/data/table/components/feedback/UploadDialog.vue.d.ts +11 -0
  123. package/dist/types/data/table/components/feedback/index.d.ts +11 -0
  124. package/dist/types/data/table/components/finder/MTableFinder.vue.d.ts +21 -0
  125. package/dist/types/data/table/components/finder/index.d.ts +3 -0
  126. package/dist/types/data/table/components/tools/MTablePage.vue.d.ts +13 -0
  127. package/dist/types/data/table/components/tools/MTableSelection.vue.d.ts +10 -0
  128. package/dist/types/data/table/components/tools/MTableSize.vue.d.ts +11 -0
  129. package/dist/types/data/table/components/tools/index.d.ts +4 -0
  130. package/dist/types/data/table/hooks/index.d.ts +4 -0
  131. package/dist/types/data/table/hooks/selection.d.ts +9 -0
  132. package/dist/types/data/table/hooks/sortable.d.ts +7 -0
  133. package/dist/types/data/table/hooks/style.d.ts +22 -0
  134. package/dist/types/data/table/index.d.ts +3 -0
  135. package/dist/types/data/table/types.d.ts +36 -0
  136. package/dist/types/data/tree/MTree.vue.d.ts +59 -0
  137. package/dist/types/data/tree/components/control/MTreeControl.vue.d.ts +18 -0
  138. package/dist/types/data/tree/components/feedback/BatchDialog.vue.d.ts +11 -0
  139. package/dist/types/data/tree/components/feedback/NodePopover.vue.d.ts +19 -0
  140. package/dist/types/data/tree/components/feedback/TableDialog.vue.d.ts +7 -0
  141. package/dist/types/data/tree/components/feedback/index.d.ts +5 -0
  142. package/dist/types/data/tree/components/feedback/widgets/BatchForm.vue.d.ts +15 -0
  143. package/dist/types/data/tree/components/feedback/widgets/NodeButtons.vue.d.ts +20 -0
  144. package/dist/types/data/tree/components/feedback/widgets/index.d.ts +3 -0
  145. package/dist/types/data/tree/components/index.d.ts +3 -0
  146. package/dist/types/data/tree/components/node/MTreeNode.vue.d.ts +9 -0
  147. package/dist/types/data/tree/components/node/MTreePlugin.vue.d.ts +9 -0
  148. package/dist/types/data/tree/components/tools/ButtonsNodeTool.vue.d.ts +3 -0
  149. package/dist/types/data/tree/components/tools/CustomNodeTool.vue.d.ts +3 -0
  150. package/dist/types/data/tree/components/tools/ToggleNodeTool.vue.d.ts +17 -0
  151. package/dist/types/data/tree/hooks/disclosure.d.ts +15 -0
  152. package/dist/types/data/tree/hooks/selection.d.ts +9 -0
  153. package/dist/types/data/tree/index.d.ts +3 -0
  154. package/dist/types/data/tree/types.d.ts +24 -0
  155. package/dist/types/data/types.d.ts +23 -0
  156. package/dist/types/data/upload/MUpload.vue.d.ts +8 -0
  157. package/dist/types/data/upload/components/control/UploadButtons.vue.d.ts +14 -0
  158. package/dist/types/data/upload/components/control/UploadControl.vue.d.ts +14 -0
  159. package/dist/types/data/upload/components/control/index.d.ts +3 -0
  160. package/dist/types/data/upload/components/dictiionary/UploadDictionary.vue.d.ts +7 -0
  161. package/dist/types/data/upload/components/dictiionary/index.d.ts +2 -0
  162. package/dist/types/data/upload/components/form/UploadForm.vue.d.ts +8 -0
  163. package/dist/types/data/upload/components/impoter/UploadImporter.vue.d.ts +13 -0
  164. package/dist/types/data/upload/components/impoter/components/FileImporter.vue.d.ts +9 -0
  165. package/dist/types/data/upload/components/impoter/components/ImporterTemplate.vue.d.ts +7 -0
  166. package/dist/types/data/upload/components/impoter/components/PasterImporter.vue.d.ts +9 -0
  167. package/dist/types/data/upload/components/impoter/index.d.ts +2 -0
  168. package/dist/types/data/upload/components/index.d.ts +3 -0
  169. package/dist/types/data/upload/components/table/UploadTable.vue.d.ts +16 -0
  170. package/dist/types/data/upload/components/table/components/cells/UploadTableCell.vue.d.ts +8 -0
  171. package/dist/types/data/upload/components/table/components/valid/UploadTableValidation.vue.d.ts +7 -0
  172. package/dist/types/data/upload/components/table/index.d.ts +2 -0
  173. package/dist/types/data/upload/hooks.d.ts +70 -0
  174. package/dist/types/data/upload/index.d.ts +3 -0
  175. package/dist/types/data/upload/types.d.ts +14 -0
  176. package/dist/types/hooks/index.d.ts +2 -0
  177. package/dist/types/hooks/requests.d.ts +4 -0
  178. package/dist/types/hooks/sizes.d.ts +8 -0
  179. package/dist/types/index.d.ts +31 -28
  180. package/dist/types/meta/MetaPopover.vue.d.ts +19 -0
  181. package/dist/types/meta/feedbacks/CopyDialog.vue.d.ts +3 -0
  182. package/dist/types/meta/feedbacks/FieldDialog.vue.d.ts +14 -0
  183. package/dist/types/meta/feedbacks/ListDialog.vue.d.ts +13 -0
  184. package/dist/types/meta/feedbacks/MetaDialog.vue.d.ts +16 -0
  185. package/dist/types/meta/feedbacks/ViewDialog.vue.d.ts +13 -0
  186. package/dist/types/meta/feedbacks/index.d.ts +17 -0
  187. package/dist/types/meta/feedbacks/list/AddFieldDialog.vue.d.ts +14 -0
  188. package/dist/types/meta/feedbacks/list/CustomFieldDialog.vue.d.ts +14 -0
  189. package/dist/types/meta/feedbacks/list/FormatDialog.vue.d.ts +14 -0
  190. package/dist/types/meta/feedbacks/list/ReferDialog.vue.d.ts +12 -0
  191. package/dist/types/meta/forms/CustomForm.vue.d.ts +17 -0
  192. package/dist/types/meta/forms/FieldForm.vue.d.ts +11 -0
  193. package/dist/types/meta/forms/FormatForm.vue.d.ts +33 -0
  194. package/dist/types/meta/forms/ReferForm.vue.d.ts +25 -0
  195. package/dist/types/meta/forms/ViewForm.vue.d.ts +9 -0
  196. package/dist/types/meta/forms/field/FieldFormBtn.vue.d.ts +11 -0
  197. package/dist/types/meta/forms/formats/DateFormats.vue.d.ts +13 -0
  198. package/dist/types/meta/forms/formats/FileFormats.vue.d.ts +13 -0
  199. package/dist/types/meta/forms/formats/NumberFormats.vue.d.ts +13 -0
  200. package/dist/types/meta/forms/formats/SetFormats.vue.d.ts +13 -0
  201. package/dist/types/meta/forms/formats/TextFormats.vue.d.ts +13 -0
  202. package/dist/types/meta/forms/formats/index.d.ts +6 -0
  203. package/dist/types/meta/forms/index.d.ts +11 -0
  204. package/dist/types/meta/index.d.ts +3 -0
  205. package/dist/types/meta/labels/FieldLabel.vue.d.ts +7 -0
  206. package/dist/types/meta/labels/ViewLabel.vue.d.ts +8 -0
  207. package/dist/types/meta/labels/index.d.ts +3 -0
  208. package/dist/types/meta/panels/ListPanel.vue.d.ts +7 -0
  209. package/dist/types/meta/panels/ViewPanel.vue.d.ts +11 -0
  210. package/dist/types/meta/panels/index.d.ts +3 -0
  211. package/dist/types/meta/panels/list-custom/FieldPropCustom.vue.d.ts +4 -0
  212. package/dist/types/meta/panels/list-custom/FieldWidgets.d.ts +20 -0
  213. package/dist/types/meta/panels/list-custom/FieldWidgetsCustom.vue.d.ts +4 -0
  214. package/dist/types/meta/panels/view-custom/CurrentView.vue.d.ts +4 -0
  215. package/dist/types/meta/tools/MetaSelect.vue.d.ts +20 -0
  216. package/dist/types/meta/tools/TreeRootSelection.vue.d.ts +13 -0
  217. package/dist/types/meta/tools/index.d.ts +3 -0
  218. package/dist/types/meta/tools/types.d.ts +6 -0
  219. package/dist/types/types.d.ts +17 -0
  220. package/dist/types/usages/form-codes/CodesForm.vue.d.ts +96 -0
  221. package/dist/types/usages/form-codes/hooks.d.ts +143 -0
  222. package/dist/types/usages/form-codes/index.d.ts +3 -0
  223. package/dist/types/usages/form-codes/types.d.ts +8 -0
  224. package/dist/types/usages/index.d.ts +5 -0
  225. package/dist/types/usages/table-codes/CodesTable.vue.d.ts +21 -0
  226. package/dist/types/usages/table-codes/index.d.ts +3 -0
  227. package/dist/types/usages/table-codes/types.d.ts +12 -0
  228. package/dist/types/usages/table-data/DTable.vue.d.ts +21 -0
  229. package/dist/types/usages/table-data/hooks.d.ts +244 -0
  230. package/dist/types/usages/table-data/index.d.ts +3 -0
  231. package/dist/types/usages/table-data/types.d.ts +8 -0
  232. package/dist/types/usages/table-plain/@hooks/data.d.ts +65 -0
  233. package/dist/types/usages/table-plain/@hooks/view.d.ts +129 -0
  234. package/dist/types/usages/table-plain/PTable.vue.d.ts +23 -0
  235. package/dist/types/usages/table-plain/hooks.d.ts +207 -0
  236. package/dist/types/usages/table-plain/index.d.ts +3 -0
  237. package/dist/types/usages/table-plain/types.d.ts +14 -0
  238. package/dist/types/usages/tree-data/DTree.vue.d.ts +53 -0
  239. package/dist/types/usages/tree-data/hooks.d.ts +164 -0
  240. package/dist/types/usages/tree-data/index.d.ts +3 -0
  241. package/dist/types/usages/tree-data/types.d.ts +8 -0
  242. package/dist/types/widgets/depands/MCharts.vue.d.ts +12 -0
  243. package/dist/types/widgets/depands/MObjectEditor.vue.d.ts +14 -0
  244. package/dist/types/widgets/depands/MPdfViewer.vue.d.ts +7 -0
  245. package/dist/types/widgets/depands/MRichEditor.vue.d.ts +11 -0
  246. package/dist/types/widgets/depands/index.d.ts +5 -0
  247. package/dist/types/widgets/extensions/CtrlButton.vue.d.ts +31 -0
  248. package/dist/types/widgets/extensions/MOption.vue.d.ts +24 -0
  249. package/dist/types/widgets/extensions/index.d.ts +3 -0
  250. package/dist/types/widgets/feedbacks/dialog/MDialog.vue.d.ts +58 -0
  251. package/dist/types/widgets/feedbacks/dialog/types.d.ts +25 -0
  252. package/dist/types/widgets/feedbacks/dialog/widgets/MDialogFooter.vue.d.ts +22 -0
  253. package/dist/types/widgets/feedbacks/dialog/widgets/MDialogHeader.vue.d.ts +24 -0
  254. package/dist/types/widgets/feedbacks/functions.d.ts +21 -0
  255. package/dist/types/widgets/feedbacks/index.d.ts +8 -0
  256. package/dist/types/widgets/feedbacks/popover/MPopover.vue.d.ts +41 -0
  257. package/dist/types/widgets/feedbacks/popover/types.d.ts +6 -0
  258. package/dist/types/widgets/file/MFileView.vue.d.ts +9 -0
  259. package/dist/types/widgets/file/index.d.ts +2 -0
  260. package/dist/types/widgets/file/viewer/VCsv.vue.d.ts +6 -0
  261. package/dist/types/widgets/file/viewer/VExcel.vue.d.ts +6 -0
  262. package/dist/types/widgets/file/viewer/VImage.vue.d.ts +6 -0
  263. package/dist/types/widgets/file/viewer/VPdf.vue.d.ts +6 -0
  264. package/dist/types/widgets/file/viewer/VTxt.vue.d.ts +6 -0
  265. package/dist/types/widgets/file/viewer/index.d.ts +6 -0
  266. package/dist/types/widgets/icon/MIcon.vue.d.ts +21 -0
  267. package/dist/types/widgets/icon/index.d.ts +2 -0
  268. package/dist/types/widgets/icon/install.d.ts +2 -0
  269. package/dist/types/widgets/icon/names.d.ts +1 -0
  270. package/dist/types/widgets/icon/types.d.ts +30 -0
  271. package/dist/types/widgets/index.d.ts +6 -0
  272. package/dist/types/widgets/wrap/MShrink.vue.d.ts +25 -0
  273. package/dist/types/widgets/wrap/MWrap.vue.d.ts +37 -0
  274. package/dist/types/widgets/wrap/index.d.ts +4 -0
  275. package/dist/types/widgets/wrap/types.d.ts +5 -0
  276. package/package.json +36 -18
  277. package/dist/types/hooks/core/use-channel/Channel.d.ts +0 -18
  278. package/dist/types/hooks/core/use-channel/ChannelHub.d.ts +0 -12
  279. package/dist/types/hooks/core/use-channel/config.d.ts +0 -18
  280. package/dist/types/hooks/core/use-channel/index.d.ts +0 -50
  281. package/dist/types/hooks/core/use-channel/types.d.ts +0 -10
  282. package/dist/types/hooks/core/use-core/index.d.ts +0 -2
  283. package/dist/types/hooks/core/use-core/types.d.ts +0 -17
  284. package/dist/types/hooks/core/use-request/index.d.ts +0 -17
  285. package/dist/types/hooks/core/use-socket/index.d.ts +0 -5
  286. package/dist/types/hooks/data/use-dao/index.d.ts +0 -17
  287. package/dist/types/hooks/data/use-dao/types.d.ts +0 -18
  288. package/dist/types/hooks/data/use-data/index.d.ts +0 -118
  289. package/dist/types/hooks/data/use-data/types.d.ts +0 -4
  290. package/dist/types/hooks/data/use-meta/MetaField.d.ts +0 -73
  291. package/dist/types/hooks/data/use-meta/MetaFormat.d.ts +0 -39
  292. package/dist/types/hooks/data/use-meta/MetaRefer.d.ts +0 -27
  293. package/dist/types/hooks/data/use-meta/MetaView.d.ts +0 -58
  294. package/dist/types/hooks/data/use-meta/frame.d.ts +0 -9
  295. package/dist/types/hooks/data/use-meta/types.d.ts +0 -11
  296. package/dist/types/hooks/data/use-model/DataModel.d.ts +0 -13
  297. package/dist/types/hooks/data/use-model/TableModel.d.ts +0 -17
  298. package/dist/types/hooks/data/use-model/TreeModel.d.ts +0 -25
  299. package/dist/types/hooks/data/use-query/Finder.d.ts +0 -12
  300. package/dist/types/hooks/data/use-query/Lookup.d.ts +0 -26
  301. package/dist/types/hooks/data/use-query/index.d.ts +0 -99
  302. package/dist/types/hooks/data/use-query/types.d.ts +0 -32
  303. package/dist/types/hooks/utils/use-aoa/index.d.ts +0 -5
  304. package/dist/types/hooks/utils/use-aoa/types.d.ts +0 -8
  305. package/dist/types/hooks/utils/use-auth/index.d.ts +0 -13
  306. package/dist/types/hooks/utils/use-cookie/index.d.ts +0 -6
  307. package/dist/types/hooks/utils/use-icon/types.d.ts +0 -2
  308. package/dist/types/hooks/utils/use-paster/index.d.ts +0 -5
  309. package/dist/types/hooks/utils/use-xlsx/index.d.ts +0 -6
  310. package/dist/types/hooks/utils/use-xlsx/types.d.ts +0 -17
@@ -0,0 +1,7 @@
1
+ import type { DataItem } from "@morghulis/lib";
2
+ type __VLS_Props = {
3
+ account?: DataItem;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare function getData(): {
2
+ old_password: string;
3
+ new_password: string;
4
+ } | undefined;
5
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
6
+ getData: typeof getData;
7
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ confirm: (...args: any[]) => void;
9
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
10
+ onConfirm?: ((...args: any[]) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import PasswordForm from "./PasswordForm.vue";
2
+ export { PasswordForm };
3
+ export type PasswordFormInstance = InstanceType<typeof PasswordForm> | undefined;
@@ -0,0 +1,9 @@
1
+ import AccountDialog from "./AccountDialog.vue";
2
+ import ChannelDialog from "./ChannelDialog.vue";
3
+ import PasswordDialog from "./PasswordDialog.vue";
4
+ import ProfileDialog from "./ProfileDialog.vue";
5
+ export { AccountDialog, ChannelDialog, PasswordDialog, ProfileDialog };
6
+ export type AccountDialogInstance = InstanceType<typeof AccountDialog> | undefined;
7
+ export type ChannelDialogInstance = InstanceType<typeof ChannelDialog> | undefined;
8
+ export type PasswordDialogInstance = InstanceType<typeof PasswordDialog> | undefined;
9
+ export type ProfileDialogInstance = InstanceType<typeof ProfileDialog> | undefined;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import AdminAuth from "./AdminAuth.vue";
2
+ export { AdminAuth };
@@ -0,0 +1,5 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
2
+ open: () => void | undefined;
3
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
4
+ declare const _default: typeof __VLS_export;
5
+ export default _default;
@@ -0,0 +1,9 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
2
+ getData: () => {
3
+ username: string;
4
+ password: string;
5
+ signin: boolean;
6
+ } | undefined;
7
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ declare const _default: typeof __VLS_export;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
2
+ getData: () => {
3
+ username: string;
4
+ password: string;
5
+ signin: boolean;
6
+ } | undefined;
7
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ declare const _default: typeof __VLS_export;
9
+ export default _default;
@@ -0,0 +1,10 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
2
+ getData: () => {
3
+ username: string;
4
+ password: string;
5
+ email: string;
6
+ signin: boolean;
7
+ } | undefined;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import SignInForm from "./SignInForm.vue";
2
+ import SignUpForm from "./SignUpForm.vue";
3
+ import LoginForm from "./LoginForm.vue";
4
+ export { SignInForm, SignUpForm, LoginForm };
5
+ export type SignInFormInstance = InstanceType<typeof SignInForm> | undefined;
6
+ export type SignUpFormInstance = InstanceType<typeof SignUpForm> | undefined;
7
+ export type LoginFormInstance = InstanceType<typeof LoginForm> | undefined;
@@ -0,0 +1,3 @@
1
+ import LoginDialog from "./LoginDialog.vue";
2
+ export { LoginDialog };
3
+ export type LoginDialogInstance = InstanceType<typeof LoginDialog> | undefined;
@@ -0,0 +1,5 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
2
+ open: () => void | undefined;
3
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
4
+ declare const _default: typeof __VLS_export;
5
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import RetrieveDialog from "./RetrieveDialog.vue";
2
+ export { RetrieveDialog };
3
+ export type RetrieveDialogInstance = InstanceType<typeof RetrieveDialog> | undefined;
@@ -0,0 +1,2 @@
1
+ export declare function validateEmail(email: string): boolean;
2
+ export declare function validatePassword(password: string, $password?: string): boolean;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,174 @@
1
+ import type { DataItemId } from "@morghulis/lib";
2
+ export declare function useUser(): {
3
+ userStore: import("pinia").Store<"user", {
4
+ token: string;
5
+ name: null;
6
+ username: null;
7
+ user_entity: string;
8
+ user_accessor: string;
9
+ user_key: null;
10
+ response: string;
11
+ email: null;
12
+ }, {
13
+ isLogin: (state: {
14
+ token: string;
15
+ name: null;
16
+ username: null;
17
+ user_entity: string;
18
+ user_accessor: string;
19
+ user_key: null;
20
+ response: string;
21
+ email: null;
22
+ } & import("pinia").PiniaCustomStateProperties<{
23
+ token: string;
24
+ name: null;
25
+ username: null;
26
+ user_entity: string;
27
+ user_accessor: string;
28
+ user_key: null;
29
+ response: string;
30
+ email: null;
31
+ }>) => boolean;
32
+ client: () => string;
33
+ account: (state: {
34
+ token: string;
35
+ name: null;
36
+ username: null;
37
+ user_entity: string;
38
+ user_accessor: string;
39
+ user_key: null;
40
+ response: string;
41
+ email: null;
42
+ } & import("pinia").PiniaCustomStateProperties<{
43
+ token: string;
44
+ name: null;
45
+ username: null;
46
+ user_entity: string;
47
+ user_accessor: string;
48
+ user_key: null;
49
+ response: string;
50
+ email: null;
51
+ }>) => any;
52
+ admin: (state: {
53
+ token: string;
54
+ name: null;
55
+ username: null;
56
+ user_entity: string;
57
+ user_accessor: string;
58
+ user_key: null;
59
+ response: string;
60
+ email: null;
61
+ } & import("pinia").PiniaCustomStateProperties<{
62
+ token: string;
63
+ name: null;
64
+ username: null;
65
+ user_entity: string;
66
+ user_accessor: string;
67
+ user_key: null;
68
+ response: string;
69
+ email: null;
70
+ }>) => any;
71
+ roles: (state: {
72
+ token: string;
73
+ name: null;
74
+ username: null;
75
+ user_entity: string;
76
+ user_accessor: string;
77
+ user_key: null;
78
+ response: string;
79
+ email: null;
80
+ } & import("pinia").PiniaCustomStateProperties<{
81
+ token: string;
82
+ name: null;
83
+ username: null;
84
+ user_entity: string;
85
+ user_accessor: string;
86
+ user_key: null;
87
+ response: string;
88
+ email: null;
89
+ }>) => any;
90
+ active: (state: {
91
+ token: string;
92
+ name: null;
93
+ username: null;
94
+ user_entity: string;
95
+ user_accessor: string;
96
+ user_key: null;
97
+ response: string;
98
+ email: null;
99
+ } & import("pinia").PiniaCustomStateProperties<{
100
+ token: string;
101
+ name: null;
102
+ username: null;
103
+ user_entity: string;
104
+ user_accessor: string;
105
+ user_key: null;
106
+ response: string;
107
+ email: null;
108
+ }>) => any;
109
+ temporary: (state: {
110
+ token: string;
111
+ name: null;
112
+ username: null;
113
+ user_entity: string;
114
+ user_accessor: string;
115
+ user_key: null;
116
+ response: string;
117
+ email: null;
118
+ } & import("pinia").PiniaCustomStateProperties<{
119
+ token: string;
120
+ name: null;
121
+ username: null;
122
+ user_entity: string;
123
+ user_accessor: string;
124
+ user_key: null;
125
+ response: string;
126
+ email: null;
127
+ }>) => any;
128
+ permissions: (state: {
129
+ token: string;
130
+ name: null;
131
+ username: null;
132
+ user_entity: string;
133
+ user_accessor: string;
134
+ user_key: null;
135
+ response: string;
136
+ email: null;
137
+ } & import("pinia").PiniaCustomStateProperties<{
138
+ token: string;
139
+ name: null;
140
+ username: null;
141
+ user_entity: string;
142
+ user_accessor: string;
143
+ user_key: null;
144
+ response: string;
145
+ email: null;
146
+ }>) => any;
147
+ }, {
148
+ login(token: string): void;
149
+ register(response: string): void;
150
+ logout(): void;
151
+ }>;
152
+ optionStore: import("pinia").Store<"core", {
153
+ baseURL: string;
154
+ title: string;
155
+ scope: string;
156
+ signInOnly: boolean;
157
+ account: {
158
+ label: string;
159
+ validateRegExp: RegExp;
160
+ validateMessage: string;
161
+ };
162
+ }, {}, {
163
+ validate(username: string): boolean;
164
+ init(options?: import("../../..").Options): void;
165
+ }>;
166
+ handler: {
167
+ signOut: () => void;
168
+ signIn: (user: any) => void;
169
+ userInfo: () => void;
170
+ retrieve: (includes: any) => void;
171
+ sendPassword: (account_id: DataItemId) => void;
172
+ changePassword: (old_password: string, new_password: string) => Promise<unknown>;
173
+ };
174
+ };
File without changes
@@ -0,0 +1,11 @@
1
+ import type { TreeItem } from "@morghulis/lib";
2
+ type __VLS_Props = {
3
+ options: TreeItem[];
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ click: (...args: any[]) => void;
7
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ onClick?: ((...args: any[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import type { TreeItem, TreeNode } from "@morghulis/lib";
2
+ type __VLS_Props = {
3
+ item: TreeItem;
4
+ node: TreeNode;
5
+ path?: string;
6
+ };
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
+ declare const _default: typeof __VLS_export;
9
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type { TreeMapping } from "@morghulis/lib";
2
+ type __VLS_Props = {
3
+ mapping: TreeMapping;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import { type DataItem } from "@morghulis/lib";
2
+ declare function open(account: DataItem): void;
3
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
4
+ open: typeof open;
5
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ confirm: (...args: any[]) => void;
7
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
8
+ onConfirm?: ((...args: any[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
@@ -0,0 +1,15 @@
1
+ import type { DataItem, DataItemId } from "@morghulis/lib";
2
+ type __VLS_Props = {
3
+ vacant: DataItem[];
4
+ pid: DataItemId | null;
5
+ };
6
+ declare function open(): void;
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
8
+ open: typeof open;
9
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ confirm: (...args: any[]) => void;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ onConfirm?: ((...args: any[]) => any) | undefined;
13
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import type { DataItem } from "@morghulis/lib";
2
+ type __VLS_Props = {
3
+ vacant: DataItem[];
4
+ };
5
+ declare function open(event: PointerEvent, menu: DataItem): void;
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
7
+ open: typeof open;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ confirm: (...args: any[]) => void;
10
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
11
+ onConfirm?: ((...args: any[]) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const _default: typeof __VLS_export;
14
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import { type DataItem } from "@morghulis/lib";
2
+ declare function open(menu: DataItem): void;
3
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
4
+ open: typeof open;
5
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ confirm: (...args: any[]) => void;
7
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
8
+ onConfirm?: ((...args: any[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare function open(): void;
2
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
3
+ open: typeof open;
4
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import { type DataItem } from "@morghulis/lib";
2
+ declare function open(role: DataItem): void;
3
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
4
+ open: typeof open;
5
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ confirm: (...args: any[]) => void;
7
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
8
+ onConfirm?: ((...args: any[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import { type DataItem } from "@morghulis/lib";
2
+ declare function open(role: DataItem): void;
3
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
4
+ open: typeof open;
5
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ confirm: (...args: any[]) => void;
7
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
8
+ onConfirm?: ((...args: any[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
@@ -0,0 +1,13 @@
1
+ import { type Model } from "@morghulis/lib";
2
+ export declare function useSystemControl(): {
3
+ load_roles: () => Promise<import("@morghulis/lib").DataItem[]>;
4
+ load_accounts: () => Promise<import("@morghulis/lib").DataItem[]>;
5
+ load_menus: () => Promise<Model>;
6
+ accountInfo: import("vue").ComputedRef<{
7
+ accessor: string;
8
+ property: {
9
+ key: string;
10
+ label: string;
11
+ };
12
+ }>;
13
+ };
@@ -0,0 +1,15 @@
1
+ import AccountRoleDialog from "./AccountRoleDialog.vue";
2
+ import RoleAccountDialog from "./RoleAccountDialog.vue";
3
+ import RoleMenuDialog from "./RoleMenuDialog.vue";
4
+ import MenuRoleDialog from "./MenuRoleDialog.vue";
5
+ import MenuAddDialog from "./MenuAddDialog.vue";
6
+ import MenuPathPopover from "./MenuPathPopover.vue";
7
+ import MenuViewDialog from "./MenuViewDialog.vue";
8
+ export { MenuAddDialog, MenuPathPopover, AccountRoleDialog, RoleAccountDialog, RoleMenuDialog, MenuRoleDialog, MenuViewDialog };
9
+ export type MenuAddDialogInstance = InstanceType<typeof MenuAddDialog> | undefined;
10
+ export type MenuPathPopoverInstance = InstanceType<typeof MenuPathPopover> | undefined;
11
+ export type AccountRoleDialogInstance = InstanceType<typeof AccountRoleDialog> | undefined;
12
+ export type RoleAccountDialogInstance = InstanceType<typeof RoleAccountDialog> | undefined;
13
+ export type RoleMenuDialogInstance = InstanceType<typeof RoleMenuDialog> | undefined;
14
+ export type MenuRoleDialogInstance = InstanceType<typeof MenuRoleDialog> | undefined;
15
+ export type MenuViewDialogInstance = InstanceType<typeof MenuViewDialog> | undefined;
@@ -0,0 +1,7 @@
1
+ type __VLS_Props = {
2
+ mapping: any;
3
+ data: any;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type { DataItem } from "@morghulis/lib";
2
+ type __VLS_Props = {
3
+ data: DataItem;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import MenuLabel from "./MenuLabel.vue";
2
+ import MenuRolePlugin from "./MenuRolePlugin.vue";
3
+ export { MenuLabel, MenuRolePlugin };
@@ -0,0 +1,4 @@
1
+ export declare function useAdminMenu(): {
2
+ options: import("vue").ComputedRef<import("@morghulis/lib").TreeItem[]>;
3
+ mapping: import("vue").Ref<import("@morghulis/lib").TreeMapping, import("@morghulis/lib").TreeMapping>;
4
+ };
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import AdminMain from "./AdminMain.vue";
2
+ import MSystem from "./MSystem.vue";
3
+ import NotFound from "./NotFound.vue";
4
+ import NoPermission from "./NoPermission.vue";
5
+ import type { RouteRecordRaw } from "vue-router";
6
+ export { AdminMain, MSystem, NotFound, NoPermission };
7
+ export declare const admin_routers: RouteRecordRaw[];
@@ -0,0 +1,2 @@
1
+ export { useUserStore } from './user';
2
+ export { useOptionStore } from './options';
@@ -0,0 +1,15 @@
1
+ import type { Options } from "../../../types";
2
+ export declare const useOptionStore: import("pinia").StoreDefinition<"core", {
3
+ baseURL: string;
4
+ title: string;
5
+ scope: string;
6
+ signInOnly: boolean;
7
+ account: {
8
+ label: string;
9
+ validateRegExp: RegExp;
10
+ validateMessage: string;
11
+ };
12
+ }, {}, {
13
+ validate(username: string): boolean;
14
+ init(options?: Options): void;
15
+ }>;