@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.
- package/README.md +11 -2
- package/dist/index.css +1 -1
- package/dist/morghulis-core.es.js +20912 -30557
- package/dist/morghulis-core.es.js.map +1 -1
- package/dist/morghulis-core.umd.js +21 -173
- package/dist/morghulis-core.umd.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/types/app/MApp.vue.d.ts +21 -0
- package/dist/types/app/admin/MAdmin.vue.d.ts +17 -0
- package/dist/types/app/admin/components/MChannelHub.vue.d.ts +3 -0
- package/dist/types/app/admin/components/dialogs/AccountDialog.vue.d.ts +6 -0
- package/dist/types/app/admin/components/dialogs/ChannelDialog.vue.d.ts +5 -0
- package/dist/types/app/admin/components/dialogs/PasswordDialog.vue.d.ts +5 -0
- package/dist/types/app/admin/components/dialogs/ProfileDialog.vue.d.ts +9 -0
- package/dist/types/app/admin/components/dialogs/forms/AccountForm.vue.d.ts +7 -0
- package/dist/types/app/admin/components/dialogs/forms/PasswordForm.vue.d.ts +13 -0
- package/dist/types/app/admin/components/dialogs/forms/index.d.ts +3 -0
- package/dist/types/app/admin/components/dialogs/index.d.ts +9 -0
- package/dist/types/app/admin/contents/auth/AdminAuth.vue.d.ts +3 -0
- package/dist/types/app/admin/contents/auth/index.d.ts +2 -0
- package/dist/types/app/admin/contents/auth/login/LoginDialog.vue.d.ts +5 -0
- package/dist/types/app/admin/contents/auth/login/forms/LoginForm.vue.d.ts +9 -0
- package/dist/types/app/admin/contents/auth/login/forms/SignInForm.vue.d.ts +9 -0
- package/dist/types/app/admin/contents/auth/login/forms/SignUpForm.vue.d.ts +10 -0
- package/dist/types/app/admin/contents/auth/login/forms/index.d.ts +7 -0
- package/dist/types/app/admin/contents/auth/login/index.d.ts +3 -0
- package/dist/types/app/admin/contents/auth/login/retrieve/RetrieveDialog.vue.d.ts +5 -0
- package/dist/types/app/admin/contents/auth/login/retrieve/index.d.ts +3 -0
- package/dist/types/app/admin/contents/auth/login/validator.d.ts +2 -0
- package/dist/types/app/admin/contents/auth/widgets/AuthDropdown.vue.d.ts +3 -0
- package/dist/types/app/admin/contents/hooks.d.ts +174 -0
- package/dist/types/app/admin/contents/index.d.ts +0 -0
- package/dist/types/app/admin/contents/menu/AdminMenu.vue.d.ts +11 -0
- package/dist/types/app/admin/contents/menu/MenuTreeNode.vue.d.ts +9 -0
- package/dist/types/app/admin/contents/navigate/AdminNavigate.vue.d.ts +7 -0
- package/dist/types/app/admin/contents/system/MAccount.vue.d.ts +3 -0
- package/dist/types/app/admin/contents/system/MMenu.vue.d.ts +3 -0
- package/dist/types/app/admin/contents/system/MRole.vue.d.ts +3 -0
- package/dist/types/app/admin/contents/system/MUser.vue.d.ts +3 -0
- package/dist/types/app/admin/contents/system/feedbacks/AccountRoleDialog.vue.d.ts +11 -0
- package/dist/types/app/admin/contents/system/feedbacks/MenuAddDialog.vue.d.ts +15 -0
- package/dist/types/app/admin/contents/system/feedbacks/MenuPathPopover.vue.d.ts +14 -0
- package/dist/types/app/admin/contents/system/feedbacks/MenuRoleDialog.vue.d.ts +11 -0
- package/dist/types/app/admin/contents/system/feedbacks/MenuViewDialog.vue.d.ts +6 -0
- package/dist/types/app/admin/contents/system/feedbacks/RoleAccountDialog.vue.d.ts +11 -0
- package/dist/types/app/admin/contents/system/feedbacks/RoleMenuDialog.vue.d.ts +11 -0
- package/dist/types/app/admin/contents/system/feedbacks/hooks.d.ts +13 -0
- package/dist/types/app/admin/contents/system/feedbacks/index.d.ts +15 -0
- package/dist/types/app/admin/contents/system/widgets/MenuLabel.vue.d.ts +7 -0
- package/dist/types/app/admin/contents/system/widgets/MenuRolePlugin.vue.d.ts +7 -0
- package/dist/types/app/admin/contents/system/widgets/index.d.ts +3 -0
- package/dist/types/app/admin/hooks.d.ts +4 -0
- package/dist/types/app/admin/pages/AdminMain.vue.d.ts +3 -0
- package/dist/types/app/admin/pages/MSystem.vue.d.ts +3 -0
- package/dist/types/app/admin/pages/NoPermission.vue.d.ts +3 -0
- package/dist/types/app/admin/pages/NotFound.vue.d.ts +3 -0
- package/dist/types/app/admin/pages/index.d.ts +7 -0
- package/dist/types/app/admin/stores/index.d.ts +2 -0
- package/dist/types/app/admin/stores/options.d.ts +15 -0
- package/dist/types/app/admin/stores/user.d.ts +149 -0
- package/dist/types/app/index.d.ts +2 -0
- package/dist/types/app/install.d.ts +3 -0
- package/dist/types/components.d.ts +5 -0
- package/dist/types/data/cell/FieldTransfer.vue.d.ts +14 -0
- package/dist/types/data/cell/MCell.vue.d.ts +14 -0
- package/dist/types/data/cell/hooks.d.ts +15 -0
- package/dist/types/data/cell/index.d.ts +3 -0
- package/dist/types/data/cell/instances/char/CharCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/char/ColorCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/char/IconCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/char/MultiSetCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/char/SetCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/char/index.d.ts +6 -0
- package/dist/types/data/cell/instances/date/DateArrayCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/date/DateCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/date/DateRangeCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/date/TimeCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/date/TimeRangeCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/date/index.d.ts +6 -0
- package/dist/types/data/cell/instances/hooks.d.ts +46 -0
- package/dist/types/data/cell/instances/index.d.ts +5 -0
- package/dist/types/data/cell/instances/refer/AutoCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/refer/CascadeCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/refer/SelectCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/refer/TransferCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/refer/TreeCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/refer/index.d.ts +6 -0
- package/dist/types/data/cell/instances/simple/BooleanCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/simple/DefaultCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/simple/NumberCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/simple/index.d.ts +4 -0
- package/dist/types/data/cell/instances/special/FileCell.vue.d.ts +7 -0
- package/dist/types/data/cell/instances/special/ObjectCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/special/RichCell.vue.d.ts +4 -0
- package/dist/types/data/cell/instances/special/index.d.ts +4 -0
- package/dist/types/data/cell/types.d.ts +13 -0
- package/dist/types/data/form/MForm.vue.d.ts +12 -0
- package/dist/types/data/form/hooks.d.ts +36 -0
- package/dist/types/data/form/index.d.ts +3 -0
- package/dist/types/data/form/types.d.ts +19 -0
- package/dist/types/data/form/widgets/MFormLabel.vue.d.ts +14 -0
- package/dist/types/data/index.d.ts +6 -0
- package/dist/types/data/plugin/MPluginButtons.vue.d.ts +11 -0
- package/dist/types/data/plugin/MPluginColumn.vue.d.ts +11 -0
- package/dist/types/data/plugin/index.d.ts +4 -0
- package/dist/types/data/plugin/types.d.ts +58 -0
- package/dist/types/data/table/MTable.vue.d.ts +28 -0
- package/dist/types/data/table/components/columns/ButtonsColumn.vue.d.ts +10 -0
- package/dist/types/data/table/components/columns/CustomColumn.vue.d.ts +10 -0
- package/dist/types/data/table/components/columns/FieldColumn.vue.d.ts +18 -0
- package/dist/types/data/table/components/columns/IndexColumn.vue.d.ts +14 -0
- package/dist/types/data/table/components/columns/cells/MTableCell.vue.d.ts +15 -0
- package/dist/types/data/table/components/columns/cells/MTableHeaderCell.vue.d.ts +12 -0
- package/dist/types/data/table/components/columns/cells/MTableIndexCell.vue.d.ts +10 -0
- package/dist/types/data/table/components/control/MTableControl.vue.d.ts +21 -0
- package/dist/types/data/table/components/control/MTableControlButtons.vue.d.ts +24 -0
- package/dist/types/data/table/components/control/index.d.ts +4 -0
- package/dist/types/data/table/components/feedback/CellDialog.vue.d.ts +11 -0
- package/dist/types/data/table/components/feedback/CellPopover.vue.d.ts +14 -0
- package/dist/types/data/table/components/feedback/IndexPopover.vue.d.ts +14 -0
- package/dist/types/data/table/components/feedback/LookupPopover.vue.d.ts +8 -0
- package/dist/types/data/table/components/feedback/UploadDialog.vue.d.ts +11 -0
- package/dist/types/data/table/components/feedback/index.d.ts +11 -0
- package/dist/types/data/table/components/finder/MTableFinder.vue.d.ts +21 -0
- package/dist/types/data/table/components/finder/index.d.ts +3 -0
- package/dist/types/data/table/components/tools/MTablePage.vue.d.ts +13 -0
- package/dist/types/data/table/components/tools/MTableSelection.vue.d.ts +10 -0
- package/dist/types/data/table/components/tools/MTableSize.vue.d.ts +11 -0
- package/dist/types/data/table/components/tools/index.d.ts +4 -0
- package/dist/types/data/table/hooks/index.d.ts +4 -0
- package/dist/types/data/table/hooks/selection.d.ts +9 -0
- package/dist/types/data/table/hooks/sortable.d.ts +7 -0
- package/dist/types/data/table/hooks/style.d.ts +22 -0
- package/dist/types/data/table/index.d.ts +3 -0
- package/dist/types/data/table/types.d.ts +36 -0
- package/dist/types/data/tree/MTree.vue.d.ts +59 -0
- package/dist/types/data/tree/components/control/MTreeControl.vue.d.ts +18 -0
- package/dist/types/data/tree/components/feedback/BatchDialog.vue.d.ts +11 -0
- package/dist/types/data/tree/components/feedback/NodePopover.vue.d.ts +19 -0
- package/dist/types/data/tree/components/feedback/TableDialog.vue.d.ts +7 -0
- package/dist/types/data/tree/components/feedback/index.d.ts +5 -0
- package/dist/types/data/tree/components/feedback/widgets/BatchForm.vue.d.ts +15 -0
- package/dist/types/data/tree/components/feedback/widgets/NodeButtons.vue.d.ts +20 -0
- package/dist/types/data/tree/components/feedback/widgets/index.d.ts +3 -0
- package/dist/types/data/tree/components/index.d.ts +3 -0
- package/dist/types/data/tree/components/node/MTreeNode.vue.d.ts +9 -0
- package/dist/types/data/tree/components/node/MTreePlugin.vue.d.ts +9 -0
- package/dist/types/data/tree/components/tools/ButtonsNodeTool.vue.d.ts +3 -0
- package/dist/types/data/tree/components/tools/CustomNodeTool.vue.d.ts +3 -0
- package/dist/types/data/tree/components/tools/ToggleNodeTool.vue.d.ts +17 -0
- package/dist/types/data/tree/hooks/disclosure.d.ts +15 -0
- package/dist/types/data/tree/hooks/selection.d.ts +9 -0
- package/dist/types/data/tree/index.d.ts +3 -0
- package/dist/types/data/tree/types.d.ts +24 -0
- package/dist/types/data/types.d.ts +23 -0
- package/dist/types/data/upload/MUpload.vue.d.ts +8 -0
- package/dist/types/data/upload/components/control/UploadButtons.vue.d.ts +14 -0
- package/dist/types/data/upload/components/control/UploadControl.vue.d.ts +14 -0
- package/dist/types/data/upload/components/control/index.d.ts +3 -0
- package/dist/types/data/upload/components/dictiionary/UploadDictionary.vue.d.ts +7 -0
- package/dist/types/data/upload/components/dictiionary/index.d.ts +2 -0
- package/dist/types/data/upload/components/form/UploadForm.vue.d.ts +8 -0
- package/dist/types/data/upload/components/impoter/UploadImporter.vue.d.ts +13 -0
- package/dist/types/data/upload/components/impoter/components/FileImporter.vue.d.ts +9 -0
- package/dist/types/data/upload/components/impoter/components/ImporterTemplate.vue.d.ts +7 -0
- package/dist/types/data/upload/components/impoter/components/PasterImporter.vue.d.ts +9 -0
- package/dist/types/data/upload/components/impoter/index.d.ts +2 -0
- package/dist/types/data/upload/components/index.d.ts +3 -0
- package/dist/types/data/upload/components/table/UploadTable.vue.d.ts +16 -0
- package/dist/types/data/upload/components/table/components/cells/UploadTableCell.vue.d.ts +8 -0
- package/dist/types/data/upload/components/table/components/valid/UploadTableValidation.vue.d.ts +7 -0
- package/dist/types/data/upload/components/table/index.d.ts +2 -0
- package/dist/types/data/upload/hooks.d.ts +70 -0
- package/dist/types/data/upload/index.d.ts +3 -0
- package/dist/types/data/upload/types.d.ts +14 -0
- package/dist/types/hooks/index.d.ts +2 -0
- package/dist/types/hooks/requests.d.ts +4 -0
- package/dist/types/hooks/sizes.d.ts +8 -0
- package/dist/types/index.d.ts +31 -28
- package/dist/types/meta/MetaPopover.vue.d.ts +19 -0
- package/dist/types/meta/feedbacks/CopyDialog.vue.d.ts +3 -0
- package/dist/types/meta/feedbacks/FieldDialog.vue.d.ts +14 -0
- package/dist/types/meta/feedbacks/ListDialog.vue.d.ts +13 -0
- package/dist/types/meta/feedbacks/MetaDialog.vue.d.ts +16 -0
- package/dist/types/meta/feedbacks/ViewDialog.vue.d.ts +13 -0
- package/dist/types/meta/feedbacks/index.d.ts +17 -0
- package/dist/types/meta/feedbacks/list/AddFieldDialog.vue.d.ts +14 -0
- package/dist/types/meta/feedbacks/list/CustomFieldDialog.vue.d.ts +14 -0
- package/dist/types/meta/feedbacks/list/FormatDialog.vue.d.ts +14 -0
- package/dist/types/meta/feedbacks/list/ReferDialog.vue.d.ts +12 -0
- package/dist/types/meta/forms/CustomForm.vue.d.ts +17 -0
- package/dist/types/meta/forms/FieldForm.vue.d.ts +11 -0
- package/dist/types/meta/forms/FormatForm.vue.d.ts +33 -0
- package/dist/types/meta/forms/ReferForm.vue.d.ts +25 -0
- package/dist/types/meta/forms/ViewForm.vue.d.ts +9 -0
- package/dist/types/meta/forms/field/FieldFormBtn.vue.d.ts +11 -0
- package/dist/types/meta/forms/formats/DateFormats.vue.d.ts +13 -0
- package/dist/types/meta/forms/formats/FileFormats.vue.d.ts +13 -0
- package/dist/types/meta/forms/formats/NumberFormats.vue.d.ts +13 -0
- package/dist/types/meta/forms/formats/SetFormats.vue.d.ts +13 -0
- package/dist/types/meta/forms/formats/TextFormats.vue.d.ts +13 -0
- package/dist/types/meta/forms/formats/index.d.ts +6 -0
- package/dist/types/meta/forms/index.d.ts +11 -0
- package/dist/types/meta/index.d.ts +3 -0
- package/dist/types/meta/labels/FieldLabel.vue.d.ts +7 -0
- package/dist/types/meta/labels/ViewLabel.vue.d.ts +8 -0
- package/dist/types/meta/labels/index.d.ts +3 -0
- package/dist/types/meta/panels/ListPanel.vue.d.ts +7 -0
- package/dist/types/meta/panels/ViewPanel.vue.d.ts +11 -0
- package/dist/types/meta/panels/index.d.ts +3 -0
- package/dist/types/meta/panels/list-custom/FieldPropCustom.vue.d.ts +4 -0
- package/dist/types/meta/panels/list-custom/FieldWidgets.d.ts +20 -0
- package/dist/types/meta/panels/list-custom/FieldWidgetsCustom.vue.d.ts +4 -0
- package/dist/types/meta/panels/view-custom/CurrentView.vue.d.ts +4 -0
- package/dist/types/meta/tools/MetaSelect.vue.d.ts +20 -0
- package/dist/types/meta/tools/TreeRootSelection.vue.d.ts +13 -0
- package/dist/types/meta/tools/index.d.ts +3 -0
- package/dist/types/meta/tools/types.d.ts +6 -0
- package/dist/types/types.d.ts +17 -0
- package/dist/types/usages/form-codes/CodesForm.vue.d.ts +96 -0
- package/dist/types/usages/form-codes/hooks.d.ts +143 -0
- package/dist/types/usages/form-codes/index.d.ts +3 -0
- package/dist/types/usages/form-codes/types.d.ts +8 -0
- package/dist/types/usages/index.d.ts +5 -0
- package/dist/types/usages/table-codes/CodesTable.vue.d.ts +21 -0
- package/dist/types/usages/table-codes/index.d.ts +3 -0
- package/dist/types/usages/table-codes/types.d.ts +12 -0
- package/dist/types/usages/table-data/DTable.vue.d.ts +21 -0
- package/dist/types/usages/table-data/hooks.d.ts +244 -0
- package/dist/types/usages/table-data/index.d.ts +3 -0
- package/dist/types/usages/table-data/types.d.ts +8 -0
- package/dist/types/usages/table-plain/@hooks/data.d.ts +65 -0
- package/dist/types/usages/table-plain/@hooks/view.d.ts +129 -0
- package/dist/types/usages/table-plain/PTable.vue.d.ts +23 -0
- package/dist/types/usages/table-plain/hooks.d.ts +207 -0
- package/dist/types/usages/table-plain/index.d.ts +3 -0
- package/dist/types/usages/table-plain/types.d.ts +14 -0
- package/dist/types/usages/tree-data/DTree.vue.d.ts +53 -0
- package/dist/types/usages/tree-data/hooks.d.ts +164 -0
- package/dist/types/usages/tree-data/index.d.ts +3 -0
- package/dist/types/usages/tree-data/types.d.ts +8 -0
- package/dist/types/widgets/depands/MCharts.vue.d.ts +12 -0
- package/dist/types/widgets/depands/MObjectEditor.vue.d.ts +14 -0
- package/dist/types/widgets/depands/MPdfViewer.vue.d.ts +7 -0
- package/dist/types/widgets/depands/MRichEditor.vue.d.ts +11 -0
- package/dist/types/widgets/depands/index.d.ts +5 -0
- package/dist/types/widgets/extensions/CtrlButton.vue.d.ts +31 -0
- package/dist/types/widgets/extensions/MOption.vue.d.ts +24 -0
- package/dist/types/widgets/extensions/index.d.ts +3 -0
- package/dist/types/widgets/feedbacks/dialog/MDialog.vue.d.ts +58 -0
- package/dist/types/widgets/feedbacks/dialog/types.d.ts +25 -0
- package/dist/types/widgets/feedbacks/dialog/widgets/MDialogFooter.vue.d.ts +22 -0
- package/dist/types/widgets/feedbacks/dialog/widgets/MDialogHeader.vue.d.ts +24 -0
- package/dist/types/widgets/feedbacks/functions.d.ts +21 -0
- package/dist/types/widgets/feedbacks/index.d.ts +8 -0
- package/dist/types/widgets/feedbacks/popover/MPopover.vue.d.ts +41 -0
- package/dist/types/widgets/feedbacks/popover/types.d.ts +6 -0
- package/dist/types/widgets/file/MFileView.vue.d.ts +9 -0
- package/dist/types/widgets/file/index.d.ts +2 -0
- package/dist/types/widgets/file/viewer/VCsv.vue.d.ts +6 -0
- package/dist/types/widgets/file/viewer/VExcel.vue.d.ts +6 -0
- package/dist/types/widgets/file/viewer/VImage.vue.d.ts +6 -0
- package/dist/types/widgets/file/viewer/VPdf.vue.d.ts +6 -0
- package/dist/types/widgets/file/viewer/VTxt.vue.d.ts +6 -0
- package/dist/types/widgets/file/viewer/index.d.ts +6 -0
- package/dist/types/widgets/icon/MIcon.vue.d.ts +21 -0
- package/dist/types/widgets/icon/index.d.ts +2 -0
- package/dist/types/widgets/icon/install.d.ts +2 -0
- package/dist/types/widgets/icon/names.d.ts +1 -0
- package/dist/types/widgets/icon/types.d.ts +30 -0
- package/dist/types/widgets/index.d.ts +6 -0
- package/dist/types/widgets/wrap/MShrink.vue.d.ts +25 -0
- package/dist/types/widgets/wrap/MWrap.vue.d.ts +37 -0
- package/dist/types/widgets/wrap/index.d.ts +4 -0
- package/dist/types/widgets/wrap/types.d.ts +5 -0
- package/package.json +36 -18
- package/dist/types/hooks/core/use-channel/Channel.d.ts +0 -18
- package/dist/types/hooks/core/use-channel/ChannelHub.d.ts +0 -12
- package/dist/types/hooks/core/use-channel/config.d.ts +0 -18
- package/dist/types/hooks/core/use-channel/index.d.ts +0 -50
- package/dist/types/hooks/core/use-channel/types.d.ts +0 -10
- package/dist/types/hooks/core/use-core/index.d.ts +0 -2
- package/dist/types/hooks/core/use-core/types.d.ts +0 -17
- package/dist/types/hooks/core/use-request/index.d.ts +0 -17
- package/dist/types/hooks/core/use-socket/index.d.ts +0 -5
- package/dist/types/hooks/data/use-dao/index.d.ts +0 -17
- package/dist/types/hooks/data/use-dao/types.d.ts +0 -18
- package/dist/types/hooks/data/use-data/index.d.ts +0 -118
- package/dist/types/hooks/data/use-data/types.d.ts +0 -4
- package/dist/types/hooks/data/use-meta/MetaField.d.ts +0 -73
- package/dist/types/hooks/data/use-meta/MetaFormat.d.ts +0 -39
- package/dist/types/hooks/data/use-meta/MetaRefer.d.ts +0 -27
- package/dist/types/hooks/data/use-meta/MetaView.d.ts +0 -58
- package/dist/types/hooks/data/use-meta/frame.d.ts +0 -9
- package/dist/types/hooks/data/use-meta/types.d.ts +0 -11
- package/dist/types/hooks/data/use-model/DataModel.d.ts +0 -13
- package/dist/types/hooks/data/use-model/TableModel.d.ts +0 -17
- package/dist/types/hooks/data/use-model/TreeModel.d.ts +0 -25
- package/dist/types/hooks/data/use-query/Finder.d.ts +0 -12
- package/dist/types/hooks/data/use-query/Lookup.d.ts +0 -26
- package/dist/types/hooks/data/use-query/index.d.ts +0 -99
- package/dist/types/hooks/data/use-query/types.d.ts +0 -32
- package/dist/types/hooks/utils/use-aoa/index.d.ts +0 -5
- package/dist/types/hooks/utils/use-aoa/types.d.ts +0 -8
- package/dist/types/hooks/utils/use-auth/index.d.ts +0 -13
- package/dist/types/hooks/utils/use-cookie/index.d.ts +0 -6
- package/dist/types/hooks/utils/use-icon/types.d.ts +0 -2
- package/dist/types/hooks/utils/use-paster/index.d.ts +0 -5
- package/dist/types/hooks/utils/use-xlsx/index.d.ts +0 -6
- 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,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,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,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
|
+
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
|
+
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,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
|
+
}>;
|