@morghulis/core 0.0.7 → 1.0.1
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,31 @@
|
|
|
1
|
+
import type { IconNames } from "@morghulis/lib";
|
|
2
|
+
import type { ButtonTypes, Sizes } from "../../types";
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
icon?: IconNames;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
title?: string;
|
|
7
|
+
bounce?: boolean;
|
|
8
|
+
shake?: boolean;
|
|
9
|
+
beatFade?: boolean;
|
|
10
|
+
type?: ButtonTypes;
|
|
11
|
+
size?: Sizes;
|
|
12
|
+
};
|
|
13
|
+
declare var __VLS_20: {};
|
|
14
|
+
type __VLS_Slots = {} & {
|
|
15
|
+
default?: (props: typeof __VLS_20) => any;
|
|
16
|
+
};
|
|
17
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
+
click: (...args: any[]) => void;
|
|
19
|
+
contextmenu: (...args: any[]) => void;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
22
|
+
onContextmenu?: ((...args: any[]) => any) | undefined;
|
|
23
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
25
|
+
declare const _default: typeof __VLS_export;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
|
+
new (): {
|
|
29
|
+
$slots: S;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { ButtonTypes } from "../../types";
|
|
2
|
+
import type { IconNames } from "@morghulis/lib";
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
icon?: IconNames;
|
|
5
|
+
type?: ButtonTypes;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
left?: any;
|
|
8
|
+
right?: any;
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_6: {}, __VLS_8: {};
|
|
11
|
+
type __VLS_Slots = {} & {
|
|
12
|
+
left?: (props: typeof __VLS_6) => any;
|
|
13
|
+
} & {
|
|
14
|
+
right?: (props: typeof __VLS_8) => any;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_base: 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>;
|
|
17
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import type { DialogConfig, DialogControl, DialogProps } from "./types";
|
|
2
|
+
declare function update(val: any): void;
|
|
3
|
+
declare function open(data?: any, config?: DialogConfig): void;
|
|
4
|
+
declare function close(): void;
|
|
5
|
+
declare function confirm(): void;
|
|
6
|
+
declare function load(): void;
|
|
7
|
+
declare function cancel(): void;
|
|
8
|
+
declare function getData(): any;
|
|
9
|
+
declare function expand(): void;
|
|
10
|
+
declare var __VLS_18: {
|
|
11
|
+
data: any;
|
|
12
|
+
raw: any;
|
|
13
|
+
controller: DialogControl;
|
|
14
|
+
update: typeof update;
|
|
15
|
+
}, __VLS_36: {
|
|
16
|
+
raw: any;
|
|
17
|
+
data: any;
|
|
18
|
+
controller: DialogControl;
|
|
19
|
+
update: typeof update;
|
|
20
|
+
}, __VLS_39: {
|
|
21
|
+
raw: any;
|
|
22
|
+
data: any;
|
|
23
|
+
controller: DialogControl;
|
|
24
|
+
update: typeof update;
|
|
25
|
+
};
|
|
26
|
+
type __VLS_Slots = {} & {
|
|
27
|
+
header?: (props: typeof __VLS_18) => any;
|
|
28
|
+
} & {
|
|
29
|
+
tool?: (props: typeof __VLS_36) => any;
|
|
30
|
+
} & {
|
|
31
|
+
default?: (props: typeof __VLS_39) => any;
|
|
32
|
+
};
|
|
33
|
+
declare const __VLS_base: import("vue").DefineComponent<DialogProps, {
|
|
34
|
+
open: typeof open;
|
|
35
|
+
close: typeof close;
|
|
36
|
+
confirm: typeof confirm;
|
|
37
|
+
cancel: typeof cancel;
|
|
38
|
+
getData: typeof getData;
|
|
39
|
+
expand: typeof expand;
|
|
40
|
+
load: typeof load;
|
|
41
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
42
|
+
closed: (...args: any[]) => void;
|
|
43
|
+
}, string, import("vue").PublicProps, Readonly<DialogProps> & Readonly<{
|
|
44
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
}>, {
|
|
46
|
+
cancel: (data: any, done: Function) => void;
|
|
47
|
+
top: string;
|
|
48
|
+
width: string | number;
|
|
49
|
+
loadingText: string;
|
|
50
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
51
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
52
|
+
declare const _default: typeof __VLS_export;
|
|
53
|
+
export default _default;
|
|
54
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
55
|
+
new (): {
|
|
56
|
+
$slots: S;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type DialogBase = {
|
|
2
|
+
width?: number | string;
|
|
3
|
+
title?: string;
|
|
4
|
+
info?: string;
|
|
5
|
+
};
|
|
6
|
+
export type DialogConfig = {
|
|
7
|
+
data?: any;
|
|
8
|
+
raw?: any;
|
|
9
|
+
} & DialogBase;
|
|
10
|
+
export type DialogControl = {
|
|
11
|
+
open: (data: any, config?: DialogConfig) => void;
|
|
12
|
+
close: () => void;
|
|
13
|
+
confirm: () => void;
|
|
14
|
+
cancel: () => void;
|
|
15
|
+
expand: () => void;
|
|
16
|
+
getData: () => void;
|
|
17
|
+
unload: () => void;
|
|
18
|
+
};
|
|
19
|
+
export type DialogProps = {
|
|
20
|
+
width?: string | number;
|
|
21
|
+
top?: string;
|
|
22
|
+
loadingText?: string;
|
|
23
|
+
confirm?: (data: any, done: Function) => void;
|
|
24
|
+
cancel?: (data: any, done: Function) => void;
|
|
25
|
+
} & DialogBase;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { DialogConfig, DialogControl } from "../types";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
config: DialogConfig;
|
|
4
|
+
control: DialogControl;
|
|
5
|
+
show: {
|
|
6
|
+
footer: boolean;
|
|
7
|
+
footerTool: boolean;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_1: {};
|
|
11
|
+
type __VLS_Slots = {} & {
|
|
12
|
+
tool?: (props: typeof __VLS_1) => any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_base: 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>;
|
|
15
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { DialogConfig, DialogControl } from "../types";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
config: DialogConfig;
|
|
4
|
+
control: DialogControl;
|
|
5
|
+
show: {
|
|
6
|
+
header: boolean;
|
|
7
|
+
headerTool: boolean;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_12: {}, __VLS_26: {};
|
|
11
|
+
type __VLS_Slots = {} & {
|
|
12
|
+
default?: (props: typeof __VLS_12) => any;
|
|
13
|
+
} & {
|
|
14
|
+
tool?: (props: typeof __VLS_26) => any;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_base: 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>;
|
|
17
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { type ElMessageBoxOptions } from 'element-plus';
|
|
2
|
+
import type { MessageFn } from "@morghulis/lib";
|
|
3
|
+
export declare const $message: {
|
|
4
|
+
info: (message: string) => import("element-plus").MessageHandler;
|
|
5
|
+
success: (message: string) => import("element-plus").MessageHandler;
|
|
6
|
+
warning: (message: string) => import("element-plus").MessageHandler;
|
|
7
|
+
error: (message: string) => import("element-plus").MessageHandler;
|
|
8
|
+
};
|
|
9
|
+
export declare const $$message: MessageFn;
|
|
10
|
+
export declare const $alert: {
|
|
11
|
+
info: (message: string, config?: ElMessageBoxOptions) => Promise<import("element-plus").MessageBoxData>;
|
|
12
|
+
success: (message: string, title?: string) => Promise<import("element-plus").MessageBoxData>;
|
|
13
|
+
warning: (message: string, title?: string) => Promise<import("element-plus").MessageBoxData>;
|
|
14
|
+
error: (message: string, title?: string) => Promise<import("element-plus").MessageBoxData>;
|
|
15
|
+
};
|
|
16
|
+
export declare const $confirm: {
|
|
17
|
+
info: (message: string, config?: ElMessageBoxOptions) => Promise<import("element-plus").MessageBoxData>;
|
|
18
|
+
success: (message: string, title?: string) => Promise<import("element-plus").MessageBoxData>;
|
|
19
|
+
warning: (message: string, title?: string) => Promise<import("element-plus").MessageBoxData>;
|
|
20
|
+
error: (message: string, title?: string) => Promise<import("element-plus").MessageBoxData>;
|
|
21
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import MDialog from "./dialog/MDialog.vue";
|
|
2
|
+
import MPopover from "./popover/MPopover.vue";
|
|
3
|
+
export { MDialog, MPopover };
|
|
4
|
+
export type MDialogInstance = InstanceType<typeof MDialog> | undefined;
|
|
5
|
+
export type MPopoverInstance = InstanceType<typeof MPopover> | undefined;
|
|
6
|
+
export type { DialogConfig, DialogControl } from './dialog/types';
|
|
7
|
+
export type { PopoverConfig } from './popover/types';
|
|
8
|
+
export { $alert, $$message, $message, $confirm } from './functions';
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { PopoverConfig } from "./types";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
title?: string;
|
|
4
|
+
hideHeader?: boolean;
|
|
5
|
+
width?: string;
|
|
6
|
+
};
|
|
7
|
+
declare function open(event: PointerEvent, $config?: PopoverConfig): void;
|
|
8
|
+
declare var __VLS_19: {
|
|
9
|
+
data: any;
|
|
10
|
+
control: {
|
|
11
|
+
open: typeof open;
|
|
12
|
+
close: () => void;
|
|
13
|
+
};
|
|
14
|
+
}, __VLS_29: {
|
|
15
|
+
data: any;
|
|
16
|
+
control: {
|
|
17
|
+
open: typeof open;
|
|
18
|
+
close: () => void;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
type __VLS_Slots = {} & {
|
|
22
|
+
tool?: (props: typeof __VLS_19) => any;
|
|
23
|
+
} & {
|
|
24
|
+
default?: (props: typeof __VLS_29) => any;
|
|
25
|
+
};
|
|
26
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
|
|
27
|
+
open: typeof open;
|
|
28
|
+
close: () => void;
|
|
29
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
+
hide: (...args: any[]) => void;
|
|
31
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
32
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
35
|
+
declare const _default: typeof __VLS_export;
|
|
36
|
+
export default _default;
|
|
37
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
38
|
+
new (): {
|
|
39
|
+
$slots: S;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { MetaField } from "@morghulis/lib";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
path?: string;
|
|
4
|
+
minio?: string;
|
|
5
|
+
field?: MetaField;
|
|
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,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
url: string;
|
|
3
|
+
};
|
|
4
|
+
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>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
url: string;
|
|
3
|
+
};
|
|
4
|
+
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>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
url: string;
|
|
3
|
+
};
|
|
4
|
+
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>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
url: string;
|
|
3
|
+
};
|
|
4
|
+
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>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
url: string;
|
|
3
|
+
};
|
|
4
|
+
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>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { FontAwsomeIconProps } from "./types";
|
|
2
|
+
import type { ButtonTypes } from "../../types";
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
type?: ButtonTypes;
|
|
5
|
+
truncate?: boolean;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
margin?: string;
|
|
8
|
+
} & FontAwsomeIconProps;
|
|
9
|
+
declare var __VLS_6: {};
|
|
10
|
+
type __VLS_Slots = {} & {
|
|
11
|
+
default?: (props: typeof __VLS_6) => any;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_base: 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>;
|
|
14
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const FontawesomeIconNames: string[];
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { IconNames } from "@morghulis/lib";
|
|
2
|
+
export type FontAwsomeIconProps = {
|
|
3
|
+
icon: IconNames;
|
|
4
|
+
border?: boolean;
|
|
5
|
+
fixedWidth?: boolean;
|
|
6
|
+
flip?: 'horizontal' | 'vertical' | 'both' | boolean;
|
|
7
|
+
mask?: object | Array<string> | string;
|
|
8
|
+
maskId?: string;
|
|
9
|
+
listItem?: boolean;
|
|
10
|
+
pull?: 'right' | 'left';
|
|
11
|
+
pulse?: boolean;
|
|
12
|
+
rotation?: 90 | 180 | 270 | '90' | '180' | '270';
|
|
13
|
+
rotateBy?: boolean;
|
|
14
|
+
swapOpacity?: boolean;
|
|
15
|
+
size?: '2xs' | 'xs' | 'sm' | 'lg' | 'xl' | '2xl' | '1x' | '2x' | '3x' | '4x' | '5x' | '6x' | '7x' | '8x' | '9x' | '10x';
|
|
16
|
+
spin?: boolean;
|
|
17
|
+
transform?: object | string;
|
|
18
|
+
symbol?: boolean | string;
|
|
19
|
+
title?: string;
|
|
20
|
+
titleId?: string;
|
|
21
|
+
inverse?: boolean;
|
|
22
|
+
bounce?: boolean;
|
|
23
|
+
shake?: boolean;
|
|
24
|
+
beat?: boolean;
|
|
25
|
+
fade?: boolean;
|
|
26
|
+
beatFade?: boolean;
|
|
27
|
+
spinPulse?: boolean;
|
|
28
|
+
spinReverse?: boolean;
|
|
29
|
+
widthAuto?: boolean;
|
|
30
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { IconNames } from "@morghulis/lib";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
width?: number;
|
|
4
|
+
icon?: IconNames;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_1: {
|
|
7
|
+
ref: string;
|
|
8
|
+
}, __VLS_15: {};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
default?: (props: typeof __VLS_1) => any;
|
|
11
|
+
} & {
|
|
12
|
+
default?: (props: typeof __VLS_15) => any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
15
|
+
icon: "" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "ad" | "add" | "address-book" | "address-card" | "adjust" | "air-freshener" | "align-center" | "align-justify" | "align-left" | "align-right" | "allergies" | "ambulance" | "american-sign-language-interpreting" | "anchor" | "anchor-circle-check" | "anchor-circle-exclamation" | "anchor-circle-xmark" | "anchor-lock" | "angle-double-down" | "angle-double-left" | "angle-double-right" | "angle-double-up" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "angles-down" | "angles-left" | "angles-right" | "angles-up" | "angry" | "ankh" | "apple-alt" | "apple-whole" | "archive" | "archway" | "area-chart" | "arrow-alt-circle-down" | "arrow-alt-circle-left" | "arrow-alt-circle-right" | "arrow-alt-circle-up" | "arrow-circle-down" | "arrow-circle-left" | "arrow-circle-right" | "arrow-circle-up" | "arrow-down" | "arrow-down-1-9" | "arrow-down-9-1" | "arrow-down-a-z" | "arrow-down-long" | "arrow-down-short-wide" | "arrow-down-up-across-line" | "arrow-down-up-lock" | "arrow-down-wide-short" | "arrow-down-z-a" | "arrow-left" | "arrow-left-long" | "arrow-left-rotate" | "arrow-pointer" | "arrow-right" | "arrow-right-arrow-left" | "arrow-right-from-bracket" | "arrow-right-from-file" | "arrow-right-long" | "arrow-right-rotate" | "arrow-right-to-bracket" | "arrow-right-to-city" | "arrow-right-to-file" | "arrow-rotate-back" | "arrow-rotate-backward" | "arrow-rotate-forward" | "arrow-rotate-left" | "arrow-rotate-right" | "arrow-trend-down" | "arrow-trend-up" | "arrow-turn-down" | "arrow-turn-up" | "arrow-up" | "arrow-up-1-9" | "arrow-up-9-1" | "arrow-up-a-z" | "arrow-up-from-bracket" | "arrow-up-from-ground-water" | "arrow-up-from-water-pump" | "arrow-up-long" | "arrow-up-right-dots" | "arrow-up-right-from-square" | "arrow-up-short-wide" | "arrow-up-wide-short" | "arrow-up-z-a" | "arrows" | "arrows-alt" | "arrows-alt-h" | "arrows-alt-v" | "arrows-down-to-line" | "arrows-down-to-people" | "arrows-h" | "arrows-left-right" | "arrows-left-right-to-line" | "arrows-rotate" | "arrows-spin" | "arrows-split-up-and-left" | "arrows-to-circle" | "arrows-to-dot" | "arrows-to-eye" | "arrows-turn-right" | "arrows-turn-to-dots" | "arrows-up-down" | "arrows-up-down-left-right" | "arrows-up-to-line" | "arrows-v" | "asl-interpreting" | "assistive-listening-systems" | "asterisk" | "at" | "atlas" | "atom" | "audio-description" | "austral-sign" | "automobile" | "award" | "b" | "baby" | "baby-carriage" | "backspace" | "backward" | "backward-fast" | "backward-step" | "bacon" | "bacteria" | "bacterium" | "bag-shopping" | "bahai" | "baht-sign" | "balance-scale" | "balance-scale-left" | "balance-scale-right" | "ban" | "ban-smoking" | "band-aid" | "bandage" | "bangladeshi-taka-sign" | "bank" | "bar-chart" | "barcode" | "bars" | "bars-progress" | "bars-staggered" | "baseball" | "baseball-ball" | "baseball-bat-ball" | "basket-shopping" | "basketball" | "basketball-ball" | "bath" | "bathtub" | "battery" | "battery-0" | "battery-2" | "battery-3" | "battery-4" | "battery-5" | "battery-car" | "battery-empty" | "battery-full" | "battery-half" | "battery-quarter" | "battery-three-quarters" | "bed" | "bed-pulse" | "beer" | "beer-mug-empty" | "bell" | "bell-concierge" | "bell-slash" | "bezier-curve" | "bible" | "bicycle" | "biking" | "binoculars" | "biohazard" | "birthday-cake" | "bitcoin-sign" | "blackboard" | "blender" | "blender-phone" | "blind" | "blog" | "bold" | "bolt" | "bolt-lightning" | "bomb" | "bone" | "bong" | "book" | "book-atlas" | "book-bible" | "book-bookmark" | "book-dead" | "book-journal-whills" | "book-medical" | "book-open" | "book-open-reader" | "book-quran" | "book-reader" | "book-skull" | "book-tanakh" | "bookmark" | "border-all" | "border-none" | "border-style" | "border-top-left" | "bore-hole" | "bottle-droplet" | "bottle-water" | "bowl-food" | "bowl-rice" | "bowling-ball" | "box" | "box-archive" | "box-open" | "box-tissue" | "boxes" | "boxes-alt" | "boxes-packing" | "boxes-stacked" | "braille" | "brain" | "brazilian-real-sign" | "bread-slice" | "bridge" | "bridge-circle-check" | "bridge-circle-exclamation" | "bridge-circle-xmark" | "bridge-lock" | "bridge-water" | "briefcase" | "briefcase-clock" | "briefcase-medical" | "broadcast-tower" | "broom" | "broom-ball" | "brush" | "bucket" | "bug" | "bug-slash" | "bugs" | "building" | "building-circle-arrow-right" | "building-circle-check" | "building-circle-exclamation" | "building-circle-xmark" | "building-columns" | "building-flag" | "building-lock" | "building-ngo" | "building-shield" | "building-un" | "building-user" | "building-wheat" | "bullhorn" | "bullseye" | "burger" | "burn" | "burst" | "bus" | "bus-alt" | "bus-simple" | "business-time" | "c" | "cab" | "cable-car" | "cake" | "cake-candles" | "calculator" | "calendar" | "calendar-alt" | "calendar-check" | "calendar-day" | "calendar-days" | "calendar-minus" | "calendar-plus" | "calendar-times" | "calendar-week" | "calendar-xmark" | "camera" | "camera-alt" | "camera-retro" | "camera-rotate" | "campground" | "cancel" | "candy-cane" | "cannabis" | "capsules" | "car" | "car-alt" | "car-battery" | "car-burst" | "car-crash" | "car-on" | "car-rear" | "car-side" | "car-tunnel" | "caravan" | "caret-down" | "caret-left" | "caret-right" | "caret-square-down" | "caret-square-left" | "caret-square-right" | "caret-square-up" | "caret-up" | "carriage-baby" | "carrot" | "cart-arrow-down" | "cart-flatbed" | "cart-flatbed-suitcase" | "cart-plus" | "cart-shopping" | "cash-register" | "cat" | "cedi-sign" | "cent-sign" | "certificate" | "chain" | "chain-broken" | "chain-slash" | "chair" | "chalkboard" | "chalkboard-teacher" | "chalkboard-user" | "champagne-glasses" | "charging-station" | "chart-area" | "chart-bar" | "chart-column" | "chart-diagram" | "chart-gantt" | "chart-line" | "chart-pie" | "chart-simple" | "check" | "check-circle" | "check-double" | "check-square" | "check-to-slot" | "cheese" | "chess" | "chess-bishop" | "chess-board" | "chess-king" | "chess-knight" | "chess-pawn" | "chess-queen" | "chess-rook" | "chevron-circle-down" | "chevron-circle-left" | "chevron-circle-right" | "chevron-circle-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "child" | "child-combatant" | "child-dress" | "child-reaching" | "child-rifle" | "children" | "church" | "circle" | "circle-arrow-down" | "circle-arrow-left" | "circle-arrow-right" | "circle-arrow-up" | "circle-check" | "circle-chevron-down" | "circle-chevron-left" | "circle-chevron-right" | "circle-chevron-up" | "circle-dollar-to-slot" | "circle-dot" | "circle-down" | "circle-exclamation" | "circle-h" | "circle-half-stroke" | "circle-info" | "circle-left" | "circle-minus" | "circle-nodes" | "circle-notch" | "circle-pause" | "circle-play" | "circle-plus" | "circle-question" | "circle-radiation" | "circle-right" | "circle-stop" | "circle-up" | "circle-user" | "circle-xmark" | "city" | "clapperboard" | "clinic-medical" | "clipboard" | "clipboard-check" | "clipboard-list" | "clipboard-question" | "clipboard-user" | "clock" | "clock-four" | "clock-rotate-left" | "clone" | "close" | "closed-captioning" | "cloud" | "cloud-arrow-down" | "cloud-arrow-up" | "cloud-bolt" | "cloud-download" | "cloud-download-alt" | "cloud-meatball" | "cloud-moon" | "cloud-moon-rain" | "cloud-rain" | "cloud-showers-heavy" | "cloud-showers-water" | "cloud-sun" | "cloud-sun-rain" | "cloud-upload" | "cloud-upload-alt" | "clover" | "cny" | "cocktail" | "code" | "code-branch" | "code-commit" | "code-compare" | "code-fork" | "code-merge" | "code-pull-request" | "coffee" | "cog" | "cogs" | "coins" | "colon-sign" | "columns" | "comment" | "comment-alt" | "comment-dollar" | "comment-dots" | "comment-medical" | "comment-nodes" | "comment-slash" | "comment-sms" | "commenting" | "comments" | "comments-dollar" | "compact-disc" | "compass" | "compass-drafting" | "compress" | "compress-alt" | "compress-arrows-alt" | "computer" | "computer-mouse" | "concierge-bell" | "contact-book" | "contact-card" | "cookie" | "cookie-bite" | "copy" | "copyright" | "couch" | "cow" | "credit-card" | "credit-card-alt" | "crop" | "crop-alt" | "crop-simple" | "cross" | "crosshairs" | "crow" | "crown" | "crutch" | "cruzeiro-sign" | "cube" | "cubes" | "cubes-stacked" | "cut" | "cutlery" | "d" | "dashboard" | "database" | "deaf" | "deafness" | "dedent" | "delete-left" | "democrat" | "desktop" | "desktop-alt" | "dharmachakra" | "diagnoses" | "diagram-next" | "diagram-predecessor" | "diagram-project" | "diagram-successor" | "diamond" | "diamond-turn-right" | "dice" | "dice-d20" | "dice-d6" | "dice-five" | "dice-four" | "dice-one" | "dice-six" | "dice-three" | "dice-two" | "digging" | "digital-tachograph" | "directions" | "disease" | "display" | "divide" | "dizzy" | "dna" | "dog" | "dollar" | "dollar-sign" | "dolly" | "dolly-box" | "dolly-flatbed" | "donate" | "dong-sign" | "door-closed" | "door-open" | "dot-circle" | "dove" | "down-left-and-up-right-to-center" | "down-long" | "download" | "drafting-compass" | "dragon" | "draw-polygon" | "drivers-license" | "droplet" | "droplet-slash" | "drum" | "drum-steelpan" | "drumstick-bite" | "dumbbell" | "dumpster" | "dumpster-fire" | "dungeon" | "e" | "ear-deaf" | "ear-listen" | "earth" | "earth-africa" | "earth-america" | "earth-americas" | "earth-asia" | "earth-europe" | "earth-oceania" | "edit" | "egg" | "eject" | "elevator" | "ellipsis" | "ellipsis-h" | "ellipsis-v" | "ellipsis-vertical" | "envelope" | "envelope-circle-check" | "envelope-open" | "envelope-open-text" | "envelope-square" | "envelopes-bulk" | "equals" | "eraser" | "ethernet" | "eur" | "euro" | "euro-sign" | "exchange" | "exchange-alt" | "exclamation" | "exclamation-circle" | "exclamation-triangle" | "expand" | "expand-alt" | "expand-arrows-alt" | "explosion" | "external-link" | "external-link-alt" | "external-link-square" | "external-link-square-alt" | "eye" | "eye-dropper" | "eye-dropper-empty" | "eye-low-vision" | "eye-slash" | "eyedropper" | "f" | "face-angry" | "face-dizzy" | "face-flushed" | "face-frown" | "face-frown-open" | "face-grimace" | "face-grin" | "face-grin-beam" | "face-grin-beam-sweat" | "face-grin-hearts" | "face-grin-squint" | "face-grin-squint-tears" | "face-grin-stars" | "face-grin-tears" | "face-grin-tongue" | "face-grin-tongue-squint" | "face-grin-tongue-wink" | "face-grin-wide" | "face-grin-wink" | "face-kiss" | "face-kiss-beam" | "face-kiss-wink-heart" | "face-laugh" | "face-laugh-beam" | "face-laugh-squint" | "face-laugh-wink" | "face-meh" | "face-meh-blank" | "face-rolling-eyes" | "face-sad-cry" | "face-sad-tear" | "face-smile" | "face-smile-beam" | "face-smile-wink" | "face-surprise" | "face-tired" | "fan" | "faucet" | "faucet-drip" | "fax" | "feather" | "feather-alt" | "feather-pointed" | "feed" | "female" | "ferry" | "fighter-jet" | "file" | "file-alt" | "file-archive" | "file-arrow-down" | "file-arrow-up" | "file-audio" | "file-circle-check" | "file-circle-exclamation" | "file-circle-minus" | "file-circle-plus" | "file-circle-question" | "file-circle-xmark" | "file-clipboard" | "file-code" | "file-contract" | "file-csv" | "file-download" | "file-edit" | "file-excel" | "file-export" | "file-fragment" | "file-half-dashed" | "file-image" | "file-import" | "file-invoice" | "file-invoice-dollar" | "file-lines" | "file-medical" | "file-medical-alt" | "file-pdf" | "file-pen" | "file-powerpoint" | "file-prescription" | "file-shield" | "file-signature" | "file-text" | "file-upload" | "file-video" | "file-waveform" | "file-word" | "file-zipper" | "fill" | "fill-drip" | "film" | "filter" | "filter-circle-dollar" | "filter-circle-xmark" | "fingerprint" | "fire" | "fire-alt" | "fire-burner" | "fire-extinguisher" | "fire-flame-curved" | "fire-flame-simple" | "first-aid" | "fish" | "fish-fins" | "fist-raised" | "flag" | "flag-checkered" | "flag-usa" | "flask" | "flask-vial" | "floppy-disk" | "florin-sign" | "flushed" | "folder" | "folder-blank" | "folder-closed" | "folder-minus" | "folder-open" | "folder-plus" | "folder-tree" | "font" | "font-awesome" | "font-awesome-flag" | "font-awesome-logo-full" | "football" | "football-ball" | "forward" | "forward-fast" | "forward-step" | "franc-sign" | "frog" | "frown" | "frown-open" | "funnel-dollar" | "futbol" | "futbol-ball" | "g" | "gamepad" | "gas-pump" | "gauge" | "gauge-high" | "gauge-med" | "gauge-simple" | "gauge-simple-high" | "gauge-simple-med" | "gavel" | "gbp" | "gear" | "gears" | "gem" | "genderless" | "ghost" | "gift" | "gifts" | "glass-cheers" | "glass-martini" | "glass-martini-alt" | "glass-water" | "glass-water-droplet" | "glass-whiskey" | "glasses" | "globe" | "globe-africa" | "globe-americas" | "globe-asia" | "globe-europe" | "globe-oceania" | "golf-ball" | "golf-ball-tee" | "gopuram" | "graduation-cap" | "greater-than" | "greater-than-equal" | "grimace" | "grin" | "grin-alt" | "grin-beam" | "grin-beam-sweat" | "grin-hearts" | "grin-squint" | "grin-squint-tears" | "grin-stars" | "grin-tears" | "grin-tongue" | "grin-tongue-squint" | "grin-tongue-wink" | "grin-wink" | "grip" | "grip-horizontal" | "grip-lines" | "grip-lines-vertical" | "grip-vertical" | "group-arrows-rotate" | "guarani-sign" | "guitar" | "gun" | "h" | "h-square" | "hamburger" | "hammer" | "hamsa" | "hand" | "hand-back-fist" | "hand-dots" | "hand-fist" | "hand-holding" | "hand-holding-dollar" | "hand-holding-droplet" | "hand-holding-hand" | "hand-holding-heart" | "hand-holding-medical" | "hand-holding-usd" | "hand-holding-water" | "hand-lizard" | "hand-middle-finger" | "hand-paper" | "hand-peace" | "hand-point-down" | "hand-point-left" | "hand-point-right" | "hand-point-up" | "hand-pointer" | "hand-rock" | "hand-scissors" | "hand-sparkles" | "hand-spock" | "handcuffs" | "hands" | "hands-american-sign-language-interpreting" | "hands-asl-interpreting" | "hands-bound" | "hands-bubbles" | "hands-clapping" | "hands-helping" | "hands-holding" | "hands-holding-child" | "hands-holding-circle" | "hands-praying" | "hands-wash" | "handshake" | "handshake-alt" | "handshake-alt-slash" | "handshake-angle" | "handshake-simple" | "handshake-simple-slash" | "handshake-slash" | "hanukiah" | "hard-drive" | "hard-hat" | "hard-of-hearing" | "hashtag" | "hat-cowboy" | "hat-cowboy-side" | "hat-hard" | "hat-wizard" | "haykal" | "hdd" | "head-side-cough" | "head-side-cough-slash" | "head-side-mask" | "head-side-virus" | "header" | "heading" | "headphones" | "headphones-alt" | "headphones-simple" | "headset" | "heart" | "heart-broken" | "heart-circle-bolt" | "heart-circle-check" | "heart-circle-exclamation" | "heart-circle-minus" | "heart-circle-plus" | "heart-circle-xmark" | "heart-crack" | "heart-music-camera-bolt" | "heart-pulse" | "heartbeat" | "helicopter" | "helicopter-symbol" | "helmet-safety" | "helmet-un" | "hexagon-nodes" | "hexagon-nodes-bolt" | "highlighter" | "hiking" | "hill-avalanche" | "hill-rockslide" | "hippo" | "history" | "hockey-puck" | "holly-berry" | "home" | "home-alt" | "home-lg" | "home-lg-alt" | "home-user" | "horse" | "horse-head" | "hospital" | "hospital-alt" | "hospital-symbol" | "hospital-user" | "hospital-wide" | "hot-tub" | "hot-tub-person" | "hotdog" | "hotel" | "hourglass" | "hourglass-1" | "hourglass-2" | "hourglass-3" | "hourglass-empty" | "hourglass-end" | "hourglass-half" | "hourglass-start" | "house" | "house-chimney" | "house-chimney-crack" | "house-chimney-medical" | "house-chimney-user" | "house-chimney-window" | "house-circle-check" | "house-circle-exclamation" | "house-circle-xmark" | "house-crack" | "house-damage" | "house-fire" | "house-flag" | "house-flood-water" | "house-flood-water-circle-arrow-right" | "house-laptop" | "house-lock" | "house-medical" | "house-medical-circle-check" | "house-medical-circle-exclamation" | "house-medical-circle-xmark" | "house-medical-flag" | "house-signal" | "house-tsunami" | "house-user" | "hryvnia" | "hryvnia-sign" | "hurricane" | "i" | "i-cursor" | "ice-cream" | "icicles" | "icons" | "id-badge" | "id-card" | "id-card-alt" | "id-card-clip" | "igloo" | "ils" | "image" | "image-portrait" | "images" | "inbox" | "indent" | "indian-rupee" | "indian-rupee-sign" | "industry" | "infinity" | "info" | "info-circle" | "inr" | "institution" | "italic" | "j" | "jar" | "jar-wheat" | "jedi" | "jet-fighter" | "jet-fighter-up" | "joint" | "journal-whills" | "jpy" | "jug-detergent" | "k" | "kaaba" | "key" | "keyboard" | "khanda" | "kip-sign" | "kiss" | "kiss-beam" | "kiss-wink-heart" | "kit-medical" | "kitchen-set" | "kiwi-bird" | "krw" | "l" | "ladder-water" | "land-mine-on" | "landmark" | "landmark-alt" | "landmark-dome" | "landmark-flag" | "language" | "laptop" | "laptop-code" | "laptop-file" | "laptop-house" | "laptop-medical" | "lari-sign" | "laugh" | "laugh-beam" | "laugh-squint" | "laugh-wink" | "layer-group" | "leaf" | "left-long" | "left-right" | "legal" | "lemon" | "less-than" | "less-than-equal" | "level-down" | "level-down-alt" | "level-up" | "level-up-alt" | "life-ring" | "lightbulb" | "line-chart" | "lines-leaning" | "link" | "link-slash" | "lira-sign" | "list" | "list-1-2" | "list-alt" | "list-check" | "list-dots" | "list-numeric" | "list-ol" | "list-squares" | "list-ul" | "litecoin-sign" | "location" | "location-arrow" | "location-crosshairs" | "location-dot" | "location-pin" | "location-pin-lock" | "lock" | "lock-open" | "locust" | "long-arrow-alt-down" | "long-arrow-alt-left" | "long-arrow-alt-right" | "long-arrow-alt-up" | "long-arrow-down" | "long-arrow-left" | "long-arrow-right" | "long-arrow-up" | "low-vision" | "luggage-cart" | "lungs" | "lungs-virus" | "m" | "magic" | "magic-wand-sparkles" | "magnet" | "magnifying-glass" | "magnifying-glass-arrow-right" | "magnifying-glass-chart" | "magnifying-glass-dollar" | "magnifying-glass-location" | "magnifying-glass-minus" | "magnifying-glass-plus" | "mail-bulk" | "mail-forward" | "mail-reply" | "mail-reply-all" | "male" | "manat-sign" | "map" | "map-location" | "map-location-dot" | "map-marked" | "map-marked-alt" | "map-marker" | "map-marker-alt" | "map-pin" | "map-signs" | "marker" | "mars" | "mars-and-venus" | "mars-and-venus-burst" | "mars-double" | "mars-stroke" | "mars-stroke-h" | "mars-stroke-right" | "mars-stroke-up" | "mars-stroke-v" | "martini-glass" | "martini-glass-citrus" | "martini-glass-empty" | "mask" | "mask-face" | "mask-ventilator" | "masks-theater" | "mattress-pillow" | "maximize" | "medal" | "medkit" | "meh" | "meh-blank" | "meh-rolling-eyes" | "memory" | "menorah" | "mercury" | "message" | "meteor" | "microchip" | "microphone" | "microphone-alt" | "microphone-alt-slash" | "microphone-lines" | "microphone-lines-slash" | "microphone-slash" | "microscope" | "mill-sign" | "minimize" | "minus" | "minus-circle" | "minus-square" | "mitten" | "mobile" | "mobile-alt" | "mobile-android" | "mobile-android-alt" | "mobile-button" | "mobile-phone" | "mobile-retro" | "mobile-screen" | "mobile-screen-button" | "money-bill" | "money-bill-1" | "money-bill-1-wave" | "money-bill-alt" | "money-bill-transfer" | "money-bill-trend-up" | "money-bill-wave" | "money-bill-wave-alt" | "money-bill-wheat" | "money-bills" | "money-check" | "money-check-alt" | "money-check-dollar" | "monument" | "moon" | "mortar-board" | "mortar-pestle" | "mosque" | "mosquito" | "mosquito-net" | "motorcycle" | "mound" | "mountain" | "mountain-city" | "mountain-sun" | "mouse" | "mouse-pointer" | "mug-hot" | "mug-saucer" | "multiply" | "museum" | "music" | "n" | "naira-sign" | "navicon" | "network-wired" | "neuter" | "newspaper" | "not-equal" | "notdef" | "note-sticky" | "notes-medical" | "o" | "object-group" | "object-ungroup" | "oil-can" | "oil-well" | "om" | "otter" | "outdent" | "p" | "pager" | "paint-brush" | "paint-roller" | "paintbrush" | "palette" | "pallet" | "panorama" | "paper-plane" | "paperclip" | "parachute-box" | "paragraph" | "parking" | "passport" | "pastafarianism" | "paste" | "pause" | "pause-circle" | "paw" | "peace" | "pen" | "pen-alt" | "pen-clip" | "pen-fancy" | "pen-nib" | "pen-ruler" | "pen-square" | "pen-to-square" | "pencil" | "pencil-alt" | "pencil-ruler" | "pencil-square" | "people-arrows" | "people-arrows-left-right" | "people-carry" | "people-carry-box" | "people-group" | "people-line" | "people-pulling" | "people-robbery" | "people-roof" | "pepper-hot" | "percent" | "percentage" | "person" | "person-arrow-down-to-line" | "person-arrow-up-from-line" | "person-biking" | "person-booth" | "person-breastfeeding" | "person-burst" | "person-cane" | "person-chalkboard" | "person-circle-check" | "person-circle-exclamation" | "person-circle-minus" | "person-circle-plus" | "person-circle-question" | "person-circle-xmark" | "person-digging" | "person-dots-from-line" | "person-dress" | "person-dress-burst" | "person-drowning" | "person-falling" | "person-falling-burst" | "person-half-dress" | "person-harassing" | "person-hiking" | "person-military-pointing" | "person-military-rifle" | "person-military-to-person" | "person-praying" | "person-pregnant" | "person-rays" | "person-rifle" | "person-running" | "person-shelter" | "person-skating" | "person-skiing" | "person-skiing-nordic" | "person-snowboarding" | "person-swimming" | "person-through-window" | "person-walking" | "person-walking-arrow-loop-left" | "person-walking-arrow-right" | "person-walking-dashed-line-arrow-right" | "person-walking-luggage" | "person-walking-with-cane" | "peseta-sign" | "peso-sign" | "phone" | "phone-alt" | "phone-flip" | "phone-slash" | "phone-square" | "phone-square-alt" | "phone-volume" | "photo-film" | "photo-video" | "pie-chart" | "piggy-bank" | "pills" | "ping-pong-paddle-ball" | "pizza-slice" | "place-of-worship" | "plane" | "plane-arrival" | "plane-circle-check" | "plane-circle-exclamation" | "plane-circle-xmark" | "plane-departure" | "plane-lock" | "plane-slash" | "plane-up" | "plant-wilt" | "plate-wheat" | "play" | "play-circle" | "plug" | "plug-circle-bolt" | "plug-circle-check" | "plug-circle-exclamation" | "plug-circle-minus" | "plug-circle-plus" | "plug-circle-xmark" | "plus" | "plus-circle" | "plus-minus" | "plus-square" | "podcast" | "poll" | "poll-h" | "poo" | "poo-bolt" | "poo-storm" | "poop" | "portrait" | "pound-sign" | "power-off" | "pray" | "praying-hands" | "prescription" | "prescription-bottle" | "prescription-bottle-alt" | "prescription-bottle-medical" | "print" | "procedures" | "project-diagram" | "pump-medical" | "pump-soap" | "puzzle-piece" | "q" | "qrcode" | "question" | "question-circle" | "quidditch" | "quidditch-broom-ball" | "quote-left" | "quote-left-alt" | "quote-right" | "quote-right-alt" | "quran" | "r" | "radiation" | "radiation-alt" | "radio" | "rainbow" | "random" | "ranking-star" | "receipt" | "record-vinyl" | "rectangle-ad" | "rectangle-list" | "rectangle-times" | "rectangle-xmark" | "recycle" | "redo" | "redo-alt" | "refresh" | "registered" | "remove" | "remove-format" | "reorder" | "repeat" | "reply" | "reply-all" | "republican" | "restroom" | "retweet" | "ribbon" | "right-from-bracket" | "right-left" | "right-long" | "right-to-bracket" | "ring" | "rmb" | "road" | "road-barrier" | "road-bridge" | "road-circle-check" | "road-circle-exclamation" | "road-circle-xmark" | "road-lock" | "road-spikes" | "robot" | "rocket" | "rod-asclepius" | "rod-snake" | "rotate" | "rotate-back" | "rotate-backward" | "rotate-forward" | "rotate-left" | "rotate-right" | "rouble" | "route" | "rss" | "rss-square" | "rub" | "ruble" | "ruble-sign" | "rug" | "ruler" | "ruler-combined" | "ruler-horizontal" | "ruler-vertical" | "running" | "rupee" | "rupee-sign" | "rupiah-sign" | "s" | "sack-dollar" | "sack-xmark" | "sad-cry" | "sad-tear" | "sailboat" | "satellite" | "satellite-dish" | "save" | "scale-balanced" | "scale-unbalanced" | "scale-unbalanced-flip" | "school" | "school-circle-check" | "school-circle-exclamation" | "school-circle-xmark" | "school-flag" | "school-lock" | "scissors" | "screwdriver" | "screwdriver-wrench" | "scroll" | "scroll-torah" | "sd-card" | "search" | "search-dollar" | "search-location" | "search-minus" | "search-plus" | "section" | "seedling" | "server" | "shapes" | "share" | "share-alt" | "share-alt-square" | "share-from-square" | "share-nodes" | "share-square" | "sheet-plastic" | "shekel" | "shekel-sign" | "sheqel" | "sheqel-sign" | "shield" | "shield-alt" | "shield-blank" | "shield-cat" | "shield-dog" | "shield-halved" | "shield-heart" | "shield-virus" | "ship" | "shipping-fast" | "shirt" | "shoe-prints" | "shop" | "shop-lock" | "shop-slash" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shower" | "shrimp" | "shuffle" | "shuttle-space" | "shuttle-van" | "sign" | "sign-hanging" | "sign-in" | "sign-in-alt" | "sign-language" | "sign-out" | "sign-out-alt" | "signal" | "signal-5" | "signal-perfect" | "signature" | "signing" | "signs-post" | "sim-card" | "sink" | "sitemap" | "skating" | "skiing" | "skiing-nordic" | "skull" | "skull-crossbones" | "slash" | "sleigh" | "sliders" | "sliders-h" | "smile" | "smile-beam" | "smile-wink" | "smog" | "smoking" | "smoking-ban" | "sms" | "snowboarding" | "snowflake" | "snowman" | "snowplow" | "soap" | "soccer-ball" | "socks" | "solar-panel" | "sort" | "sort-alpha-asc" | "sort-alpha-desc" | "sort-alpha-down" | "sort-alpha-down-alt" | "sort-alpha-up" | "sort-alpha-up-alt" | "sort-amount-asc" | "sort-amount-desc" | "sort-amount-down" | "sort-amount-down-alt" | "sort-amount-up" | "sort-amount-up-alt" | "sort-asc" | "sort-desc" | "sort-down" | "sort-numeric-asc" | "sort-numeric-desc" | "sort-numeric-down" | "sort-numeric-down-alt" | "sort-numeric-up" | "sort-numeric-up-alt" | "sort-up" | "spa" | "space-shuttle" | "spaghetti-monster-flying" | "spell-check" | "spider" | "spinner" | "splotch" | "spoon" | "spray-can" | "spray-can-sparkles" | "sprout" | "square" | "square-arrow-up-right" | "square-binary" | "square-caret-down" | "square-caret-left" | "square-caret-right" | "square-caret-up" | "square-check" | "square-envelope" | "square-full" | "square-h" | "square-minus" | "square-nfi" | "square-parking" | "square-pen" | "square-person-confined" | "square-phone" | "square-phone-flip" | "square-plus" | "square-poll-horizontal" | "square-poll-vertical" | "square-root-alt" | "square-root-variable" | "square-rss" | "square-share-nodes" | "square-up-right" | "square-virus" | "square-xmark" | "staff-aesculapius" | "staff-snake" | "stairs" | "stamp" | "stapler" | "star" | "star-and-crescent" | "star-half" | "star-half-alt" | "star-half-stroke" | "star-of-david" | "star-of-life" | "step-backward" | "step-forward" | "sterling-sign" | "stethoscope" | "sticky-note" | "stop" | "stop-circle" | "stopwatch" | "stopwatch-20" | "store" | "store-alt" | "store-alt-slash" | "store-slash" | "stream" | "street-view" | "strikethrough" | "stroopwafel" | "subscript" | "subtract" | "subway" | "suitcase" | "suitcase-medical" | "suitcase-rolling" | "sun" | "sun-plant-wilt" | "superscript" | "surprise" | "swatchbook" | "swimmer" | "swimming-pool" | "synagogue" | "sync" | "sync-alt" | "syringe" | "t" | "t-shirt" | "table" | "table-cells" | "table-cells-column-lock" | "table-cells-large" | "table-cells-row-lock" | "table-cells-row-unlock" | "table-columns" | "table-list" | "table-tennis" | "table-tennis-paddle-ball" | "tablet" | "tablet-alt" | "tablet-android" | "tablet-button" | "tablet-screen-button" | "tablets" | "tachograph-digital" | "tachometer" | "tachometer-alt" | "tachometer-alt-average" | "tachometer-alt-fast" | "tachometer-average" | "tachometer-fast" | "tag" | "tags" | "tanakh" | "tape" | "tarp" | "tarp-droplet" | "tasks" | "tasks-alt" | "taxi" | "teeth" | "teeth-open" | "teletype" | "television" | "temperature-0" | "temperature-1" | "temperature-2" | "temperature-3" | "temperature-4" | "temperature-arrow-down" | "temperature-arrow-up" | "temperature-down" | "temperature-empty" | "temperature-full" | "temperature-half" | "temperature-high" | "temperature-low" | "temperature-quarter" | "temperature-three-quarters" | "temperature-up" | "tenge" | "tenge-sign" | "tent" | "tent-arrow-down-to-line" | "tent-arrow-left-right" | "tent-arrow-turn-left" | "tent-arrows-down" | "tents" | "terminal" | "text-height" | "text-slash" | "text-width" | "th" | "th-large" | "th-list" | "theater-masks" | "thermometer" | "thermometer-0" | "thermometer-1" | "thermometer-2" | "thermometer-3" | "thermometer-4" | "thermometer-empty" | "thermometer-full" | "thermometer-half" | "thermometer-quarter" | "thermometer-three-quarters" | "thumb-tack" | "thumb-tack-slash" | "thumbs-down" | "thumbs-up" | "thumbtack" | "thumbtack-slash" | "thunderstorm" | "ticket" | "ticket-alt" | "ticket-simple" | "timeline" | "times" | "times-circle" | "times-rectangle" | "times-square" | "tint" | "tint-slash" | "tired" | "toggle-off" | "toggle-on" | "toilet" | "toilet-paper" | "toilet-paper-slash" | "toilet-portable" | "toilets-portable" | "toolbox" | "tools" | "tooth" | "torah" | "torii-gate" | "tornado" | "tower-broadcast" | "tower-cell" | "tower-observation" | "tractor" | "trademark" | "traffic-light" | "trailer" | "train" | "train-subway" | "train-tram" | "tram" | "transgender" | "transgender-alt" | "trash" | "trash-alt" | "trash-arrow-up" | "trash-can" | "trash-can-arrow-up" | "trash-restore" | "trash-restore-alt" | "tree" | "tree-city" | "triangle-circle-square" | "triangle-exclamation" | "trophy" | "trowel" | "trowel-bricks" | "truck" | "truck-arrow-right" | "truck-droplet" | "truck-fast" | "truck-field" | "truck-field-un" | "truck-front" | "truck-loading" | "truck-medical" | "truck-monster" | "truck-moving" | "truck-pickup" | "truck-plane" | "truck-ramp-box" | "try" | "tshirt" | "tty" | "turkish-lira" | "turkish-lira-sign" | "turn-down" | "turn-up" | "tv" | "tv-alt" | "u" | "umbrella" | "umbrella-beach" | "underline" | "undo" | "undo-alt" | "universal-access" | "university" | "unlink" | "unlock" | "unlock-alt" | "unlock-keyhole" | "unsorted" | "up-down" | "up-down-left-right" | "up-long" | "up-right-and-down-left-from-center" | "up-right-from-square" | "upload" | "usd" | "user" | "user-alt" | "user-alt-slash" | "user-astronaut" | "user-check" | "user-circle" | "user-clock" | "user-cog" | "user-doctor" | "user-edit" | "user-friends" | "user-gear" | "user-graduate" | "user-group" | "user-injured" | "user-large" | "user-large-slash" | "user-lock" | "user-md" | "user-minus" | "user-ninja" | "user-nurse" | "user-pen" | "user-plus" | "user-secret" | "user-shield" | "user-slash" | "user-tag" | "user-tie" | "user-times" | "user-xmark" | "users" | "users-between-lines" | "users-cog" | "users-gear" | "users-line" | "users-rays" | "users-rectangle" | "users-slash" | "users-viewfinder" | "utensil-spoon" | "utensils" | "v" | "van-shuttle" | "vault" | "vcard" | "vector-square" | "venus" | "venus-double" | "venus-mars" | "vest" | "vest-patches" | "vial" | "vial-circle-check" | "vial-virus" | "vials" | "video" | "video-camera" | "video-slash" | "vihara" | "virus" | "virus-covid" | "virus-covid-slash" | "virus-slash" | "viruses" | "voicemail" | "volcano" | "volleyball" | "volleyball-ball" | "volume-control-phone" | "volume-down" | "volume-high" | "volume-low" | "volume-mute" | "volume-off" | "volume-times" | "volume-up" | "volume-xmark" | "vote-yea" | "vr-cardboard" | "w" | "walkie-talkie" | "walking" | "wallet" | "wand-magic" | "wand-magic-sparkles" | "wand-sparkles" | "warehouse" | "warning" | "water" | "water-ladder" | "wave-square" | "web-awesome" | "weight" | "weight-hanging" | "weight-scale" | "wheat-alt" | "wheat-awn" | "wheat-awn-circle-exclamation" | "wheelchair" | "wheelchair-alt" | "wheelchair-move" | "whiskey-glass" | "wifi" | "wifi-3" | "wifi-strong" | "wind" | "window-close" | "window-maximize" | "window-minimize" | "window-restore" | "wine-bottle" | "wine-glass" | "wine-glass-alt" | "wine-glass-empty" | "won" | "won-sign" | "worm" | "wrench" | "x" | "x-ray" | "xmark" | "xmark-circle" | "xmark-square" | "xmarks-lines" | "y" | "yen" | "yen-sign" | "yin-yang" | "z" | "zap" | null;
|
|
16
|
+
width: number;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { Ticker } from "./types";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
loading?: boolean;
|
|
4
|
+
ticker?: Ticker;
|
|
5
|
+
height?: string;
|
|
6
|
+
};
|
|
7
|
+
declare var __VLS_13: {
|
|
8
|
+
width: number;
|
|
9
|
+
}, __VLS_31: {
|
|
10
|
+
width: number;
|
|
11
|
+
}, __VLS_33: {
|
|
12
|
+
width: number;
|
|
13
|
+
}, __VLS_47: {
|
|
14
|
+
width: number;
|
|
15
|
+
}, __VLS_56: {
|
|
16
|
+
width: number;
|
|
17
|
+
};
|
|
18
|
+
type __VLS_Slots = {} & {
|
|
19
|
+
header?: (props: typeof __VLS_13) => any;
|
|
20
|
+
} & {
|
|
21
|
+
'header-tool'?: (props: typeof __VLS_31) => any;
|
|
22
|
+
} & {
|
|
23
|
+
default?: (props: typeof __VLS_33) => any;
|
|
24
|
+
} & {
|
|
25
|
+
footer?: (props: typeof __VLS_47) => any;
|
|
26
|
+
} & {
|
|
27
|
+
'footer-tool'?: (props: typeof __VLS_56) => any;
|
|
28
|
+
};
|
|
29
|
+
declare const __VLS_base: 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>;
|
|
30
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
31
|
+
declare const _default: typeof __VLS_export;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
34
|
+
new (): {
|
|
35
|
+
$slots: S;
|
|
36
|
+
};
|
|
37
|
+
};
|