@maxtropy/v-components 0.1.12-beta.10 → 0.1.12-beta.11
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/dist/mx-vcomponents.es.js +4001 -3990
- package/dist/mx-vcomponents.umd.js +60 -0
- package/dist/types/components/tag/MxTag.vue.d.ts +3 -3
- package/dist/types/components/upload/MxUpload.vue.d.ts +1 -1
- package/dist/types/utils/micro.d.ts +3 -0
- package/es/api/staff.d.ts +3 -0
- package/es/api/staff.js +11 -0
- package/es/api/tenant.d.ts +4 -0
- package/es/api/tenant.js +15 -0
- package/es/api/user.d.ts +24 -0
- package/es/api/user.js +20 -0
- package/es/assets/images/notAuthorized.png +0 -0
- package/es/assets/images/tableNoData.png +0 -0
- package/es/assets/svg/ContainerSvg.vue.d.ts +2 -0
- package/es/assets/svg/ContainerSvg.vue.js +29 -0
- package/es/assets/svg/InfoCircleSvg.vue.d.ts +2 -0
- package/es/assets/svg/InfoCircleSvg.vue.js +31 -0
- package/es/assets/svg/InfoSvg.vue.d.ts +2 -0
- package/es/assets/svg/InfoSvg.vue.js +30 -0
- package/es/assets/svg/UploadSvg.vue.d.ts +2 -0
- package/es/assets/svg/UploadSvg.vue.js +29 -0
- package/es/common/const.d.ts +34 -0
- package/es/common/const.js +55 -0
- package/es/common/entity.d.ts +118 -0
- package/es/common/entity.js +32 -0
- package/es/common/fetch.d.ts +13 -0
- package/es/common/fetch.js +95 -0
- package/es/common/request.d.ts +30 -0
- package/es/common/request.js +107 -0
- package/es/common/subject.d.ts +20 -0
- package/es/common/subject.js +62 -0
- package/es/components/alert/MxAlert.css +47 -0
- package/es/components/alert/MxAlert.vue.d.ts +63 -0
- package/es/components/alert/MxAlert.vue.js +82 -0
- package/es/components/alert/index.d.ts +7 -0
- package/es/components/alert/index.js +8 -0
- package/es/components/authorizedpermission/AuthorizedPermission.css +14 -0
- package/es/components/authorizedpermission/AuthorizedPermission.vue.d.ts +10 -0
- package/es/components/authorizedpermission/AuthorizedPermission.vue.js +51 -0
- package/es/components/authorizedpermission/index.d.ts +7 -0
- package/es/components/authorizedpermission/index.js +8 -0
- package/es/components/basiclayout/BasicLayout.css +44 -0
- package/es/components/basiclayout/BasicLayout.vue.d.ts +45 -0
- package/es/components/basiclayout/BasicLayout.vue.js +64 -0
- package/es/components/basiclayout/index.d.ts +7 -0
- package/es/components/basiclayout/index.js +8 -0
- package/es/components/breadcrumb/BreadCrumb.css +20 -0
- package/es/components/breadcrumb/BreadCrumb.vue.d.ts +53 -0
- package/es/components/breadcrumb/BreadCrumb.vue.js +124 -0
- package/es/components/breadcrumb/index.d.ts +7 -0
- package/es/components/breadcrumb/index.js +8 -0
- package/es/components/button/MxButton.css +149 -0
- package/es/components/button/MxButton.vue.d.ts +107 -0
- package/es/components/button/MxButton.vue.js +76 -0
- package/es/components/button/index.d.ts +7 -0
- package/es/components/button/index.js +8 -0
- package/es/components/checkbox/MxCheckbox.css +35 -0
- package/es/components/checkbox/MxCheckbox.vue.d.ts +104 -0
- package/es/components/checkbox/MxCheckbox.vue.js +35 -0
- package/es/components/checkbox/MxCheckboxGroup.vue.d.ts +43 -0
- package/es/components/checkbox/MxCheckboxGroup.vue.js +26 -0
- package/es/components/checkbox/index.d.ts +351 -0
- package/es/components/checkbox/index.js +17 -0
- package/es/components/datePicker/MxDatePicker.css +586 -0
- package/es/components/datePicker/MxDatePicker.vue.d.ts +49 -0
- package/es/components/datePicker/MxDatePicker.vue.js +79 -0
- package/es/components/datePicker/index.d.ts +7 -0
- package/es/components/datePicker/index.js +8 -0
- package/es/components/dialog/MxDialog.css +62 -0
- package/es/components/dialog/MxDialog.vue.d.ts +164 -0
- package/es/components/dialog/MxDialog.vue.js +90 -0
- package/es/components/dialog/index.d.ts +7 -0
- package/es/components/dialog/index.js +8 -0
- package/es/components/dropdown/MxDropdown.css +30 -0
- package/es/components/dropdown/MxDropdown.vue.d.ts +71 -0
- package/es/components/dropdown/MxDropdown.vue.js +97 -0
- package/es/components/dropdown/index.d.ts +7 -0
- package/es/components/dropdown/index.js +8 -0
- package/es/components/ellipsisSpan/MxEllipsisSpan.css +3 -0
- package/es/components/ellipsisSpan/MxEllipsisSpan.vue.d.ts +42 -0
- package/es/components/ellipsisSpan/MxEllipsisSpan.vue.js +70 -0
- package/es/components/ellipsisSpan/index.d.ts +7 -0
- package/es/components/ellipsisSpan/index.js +8 -0
- package/es/components/empty/MxEmpty.css +10 -0
- package/es/components/empty/MxEmpty.vue.d.ts +7 -0
- package/es/components/empty/MxEmpty.vue.js +36 -0
- package/es/components/empty/index.d.ts +7 -0
- package/es/components/empty/index.js +8 -0
- package/es/components/empty/no-data.png +0 -0
- package/es/components/form/MxForm.css +26 -0
- package/es/components/form/MxForm.vue.d.ts +123 -0
- package/es/components/form/MxForm.vue.js +99 -0
- package/es/components/form/MxFormItem.css +23 -0
- package/es/components/form/MxFormItem.vue.d.ts +94 -0
- package/es/components/form/MxFormItem.vue.js +63 -0
- package/es/components/form/index.d.ts +242 -0
- package/es/components/form/index.js +12 -0
- package/es/components/headnavigation/HeadNavigation.css +144 -0
- package/es/components/headnavigation/HeadNavigation.vue.d.ts +45 -0
- package/es/components/headnavigation/HeadNavigation.vue.js +201 -0
- package/es/components/headnavigation/MenuBar.css +113 -0
- package/es/components/headnavigation/MenuBar.vue.d.ts +35 -0
- package/es/components/headnavigation/MenuBar.vue.js +31 -0
- package/es/components/headnavigation/index.d.ts +7 -0
- package/es/components/headnavigation/index.js +8 -0
- package/es/components/index.d.ts +38 -0
- package/es/components/index.js +171 -0
- package/es/components/input/MxInput.css +54 -0
- package/es/components/input/MxInput.vue.d.ts +7 -0
- package/es/components/input/MxInput.vue.js +24 -0
- package/es/components/input/index.d.ts +7 -0
- package/es/components/input/index.js +8 -0
- package/es/components/message/index.d.ts +7 -0
- package/es/components/message/index.js +12 -0
- package/es/components/message/message.css +31 -0
- package/es/components/message/message.d.ts +4 -0
- package/es/components/message/message.js +42 -0
- package/es/components/messageBox/index.d.ts +7 -0
- package/es/components/messageBox/index.js +13 -0
- package/es/components/messageBox/message.vue.d.ts +48 -0
- package/es/components/messageBox/message.vue.js +58 -0
- package/es/components/messageBox/messageBox.css +160 -0
- package/es/components/messageBox/messageBox.d.ts +4 -0
- package/es/components/messageBox/messageBox.js +39 -0
- package/es/components/notification/index.d.ts +3 -0
- package/es/components/notification/index.js +7 -0
- package/es/components/notification/notification.css +58 -0
- package/es/components/notification/notification.d.ts +4 -0
- package/es/components/notification/notification.js +28 -0
- package/es/components/pagination/MxPagination.css +110 -0
- package/es/components/pagination/MxPagination.vue.d.ts +38 -0
- package/es/components/pagination/MxPagination.vue.js +53 -0
- package/es/components/pagination/index.d.ts +7 -0
- package/es/components/pagination/index.js +8 -0
- package/es/components/popconfirm/MxPopconfirm.css +26 -0
- package/es/components/popconfirm/MxPopconfirm.vue.d.ts +51 -0
- package/es/components/popconfirm/MxPopconfirm.vue.js +92 -0
- package/es/components/popconfirm/index.d.ts +7 -0
- package/es/components/popconfirm/index.js +8 -0
- package/es/components/radio/MxRadio.css +33 -0
- package/es/components/radio/MxRadio.vue.d.ts +36 -0
- package/es/components/radio/MxRadio.vue.js +35 -0
- package/es/components/radio/MxRadioButton.css +37 -0
- package/es/components/radio/MxRadioButton.vue.d.ts +31 -0
- package/es/components/radio/MxRadioButton.vue.js +33 -0
- package/es/components/radio/MxRadioGroup.vue.d.ts +45 -0
- package/es/components/radio/MxRadioGroup.vue.js +26 -0
- package/es/components/radio/index.d.ts +302 -0
- package/es/components/radio/index.js +16 -0
- package/es/components/select/MxOption.vue.d.ts +7 -0
- package/es/components/select/MxOption.vue.js +26 -0
- package/es/components/select/MxOptionGroup.vue.d.ts +7 -0
- package/es/components/select/MxOptionGroup.vue.js +23 -0
- package/es/components/select/MxSelect.css +91 -0
- package/es/components/select/MxSelect.vue.d.ts +7 -0
- package/es/components/select/MxSelect.vue.js +43 -0
- package/es/components/select/index.d.ts +191 -0
- package/es/components/select/index.js +16 -0
- package/es/components/sidermenu/HambShow.css +65 -0
- package/es/components/sidermenu/HambShow.vue.d.ts +16 -0
- package/es/components/sidermenu/HambShow.vue.js +76 -0
- package/es/components/sidermenu/SiderMenu.css +94 -0
- package/es/components/sidermenu/SiderMenu.vue.d.ts +46 -0
- package/es/components/sidermenu/SiderMenu.vue.js +246 -0
- package/es/components/sidermenu/index.d.ts +7 -0
- package/es/components/sidermenu/index.js +8 -0
- package/es/components/slider/MxSlider.css +54 -0
- package/es/components/slider/MxSlider.vue.d.ts +32 -0
- package/es/components/slider/MxSlider.vue.js +39 -0
- package/es/components/slider/index.d.ts +7 -0
- package/es/components/slider/index.js +8 -0
- package/es/components/steps/MxStep.css +572 -0
- package/es/components/steps/MxStep.vue.d.ts +7 -0
- package/es/components/steps/MxStep.vue.js +30 -0
- package/es/components/steps/MxSteps.vue.d.ts +29 -0
- package/es/components/steps/MxSteps.vue.js +40 -0
- package/es/components/steps/index.d.ts +99 -0
- package/es/components/steps/index.js +12 -0
- package/es/components/switch/MxSwitch.css +49 -0
- package/es/components/switch/MxSwitch.vue.d.ts +2 -0
- package/es/components/switch/MxSwitch.vue.js +23 -0
- package/es/components/switch/index.d.ts +7 -0
- package/es/components/switch/index.js +8 -0
- package/es/components/switchstaff/CustomSvg.vue.d.ts +2 -0
- package/es/components/switchstaff/CustomSvg.vue.js +28 -0
- package/es/components/switchstaff/SwitchStaff.css +132 -0
- package/es/components/switchstaff/SwitchStaff.vue.d.ts +32 -0
- package/es/components/switchstaff/SwitchStaff.vue.js +121 -0
- package/es/components/switchstaff/WarnSvg.vue.d.ts +2 -0
- package/es/components/switchstaff/WarnSvg.vue.js +28 -0
- package/es/components/switchstaff/index.d.ts +7 -0
- package/es/components/switchstaff/index.js +8 -0
- package/es/components/systemcontent/SystemContent.css +28 -0
- package/es/components/systemcontent/SystemContent.vue.d.ts +51 -0
- package/es/components/systemcontent/SystemContent.vue.js +91 -0
- package/es/components/systemcontent/index.d.ts +7 -0
- package/es/components/systemcontent/index.js +8 -0
- package/es/components/systemcontent/logo.png +0 -0
- package/es/components/table/MxTable.css +190 -0
- package/es/components/table/MxTable.vue.d.ts +37 -0
- package/es/components/table/MxTable.vue.js +63 -0
- package/es/components/table/MxTableColumn.css +31 -0
- package/es/components/table/MxTableColumn.vue.d.ts +11 -0
- package/es/components/table/MxTableColumn.vue.js +28 -0
- package/es/components/table/index.d.ts +103 -0
- package/es/components/table/index.js +12 -0
- package/es/components/tabs/MxTabPane.vue.d.ts +7 -0
- package/es/components/tabs/MxTabPane.vue.js +26 -0
- package/es/components/tabs/MxTabs.css +132 -0
- package/es/components/tabs/MxTabs.vue.d.ts +37 -0
- package/es/components/tabs/MxTabs.vue.js +44 -0
- package/es/components/tag/MxTag.css +84 -0
- package/es/components/tag/MxTag.vue.d.ts +40 -0
- package/es/components/tag/MxTag.vue.js +96 -0
- package/es/components/tag/index.d.ts +7 -0
- package/es/components/tag/index.js +8 -0
- package/es/components/timePicker/MxTimePicker.css +180 -0
- package/es/components/timePicker/MxTimePicker.vue.d.ts +49 -0
- package/es/components/timePicker/MxTimePicker.vue.js +79 -0
- package/es/components/timePicker/index.d.ts +7 -0
- package/es/components/timePicker/index.js +8 -0
- package/es/components/tooltip/MxTooltip.css +17 -0
- package/es/components/tooltip/MxTooltip.vue.d.ts +7 -0
- package/es/components/tooltip/MxTooltip.vue.js +24 -0
- package/es/components/tooltip/index.d.ts +7 -0
- package/es/components/tooltip/index.js +8 -0
- package/es/components/tree/MxTree.css +56 -0
- package/es/components/tree/MxTree.vue.d.ts +7 -0
- package/es/components/tree/MxTree.vue.js +27 -0
- package/es/components/tree/index.d.ts +7 -0
- package/es/components/tree/index.js +8 -0
- package/es/components/treeselect/MxTreeSelect.css +111 -0
- package/es/components/treeselect/MxTreeSelect.vue.d.ts +7 -0
- package/es/components/treeselect/MxTreeSelect.vue.js +35 -0
- package/es/components/treeselect/index.d.ts +7 -0
- package/es/components/treeselect/index.js +8 -0
- package/es/components/upload/MxUpload.css +111 -0
- package/es/components/upload/MxUpload.vue.d.ts +111 -0
- package/es/components/upload/MxUpload.vue.js +310 -0
- package/es/components/upload/index.d.ts +7 -0
- package/es/components/upload/index.js +8 -0
- package/es/components/upload/upload.d.ts +139 -0
- package/es/components/upload/upload.js +11 -0
- package/es/components/upload/uploadList.css +70 -0
- package/es/components/upload/uploadList.vue.d.ts +15 -0
- package/es/components/upload/uploadList.vue.js +118 -0
- package/es/components/upload/use-handlers.d.ts +13 -0
- package/es/components/upload/use-handlers.js +54 -0
- package/es/components/usercontent/ArrowSvg.vue.d.ts +2 -0
- package/es/components/usercontent/ArrowSvg.vue.js +28 -0
- package/es/components/usercontent/UserContent.css +53 -0
- package/es/components/usercontent/UserContent.vue.d.ts +28 -0
- package/es/components/usercontent/UserContent.vue.js +134 -0
- package/es/components/usercontent/UserSvg.vue.d.ts +2 -0
- package/es/components/usercontent/UserSvg.vue.js +29 -0
- package/es/components/usercontent/index.d.ts +7 -0
- package/es/components/usercontent/index.js +8 -0
- package/es/constants/const.d.ts +1 -0
- package/es/constants/const.js +4 -0
- package/es/constants/index.d.ts +2 -0
- package/es/constants/index.js +4 -0
- package/es/env.d.ts +30 -0
- package/es/index.d.ts +13 -0
- package/es/index.js +17 -0
- package/es/utils/hooks.d.ts +23 -0
- package/es/utils/hooks.js +126 -0
- package/es/utils/index.d.ts +3 -0
- package/es/utils/index.js +6 -0
- package/es/utils/lib.d.ts +9 -0
- package/es/utils/lib.js +102 -0
- package/es/utils/micro.d.ts +12 -0
- package/es/utils/micro.js +128 -0
- package/lib/api/staff.d.ts +3 -0
- package/lib/api/staff.js +11 -0
- package/lib/api/tenant.d.ts +4 -0
- package/lib/api/tenant.js +15 -0
- package/lib/api/user.d.ts +24 -0
- package/lib/api/user.js +20 -0
- package/lib/assets/images/notAuthorized.png +0 -0
- package/lib/assets/images/tableNoData.png +0 -0
- package/lib/assets/svg/ContainerSvg.vue.d.ts +2 -0
- package/lib/assets/svg/ContainerSvg.vue.js +28 -0
- package/lib/assets/svg/InfoCircleSvg.vue.d.ts +2 -0
- package/lib/assets/svg/InfoCircleSvg.vue.js +30 -0
- package/lib/assets/svg/InfoSvg.vue.d.ts +2 -0
- package/lib/assets/svg/InfoSvg.vue.js +29 -0
- package/lib/assets/svg/UploadSvg.vue.d.ts +2 -0
- package/lib/assets/svg/UploadSvg.vue.js +28 -0
- package/lib/common/const.d.ts +34 -0
- package/lib/common/const.js +55 -0
- package/lib/common/entity.d.ts +118 -0
- package/lib/common/entity.js +32 -0
- package/lib/common/fetch.d.ts +13 -0
- package/lib/common/fetch.js +95 -0
- package/lib/common/request.d.ts +30 -0
- package/lib/common/request.js +107 -0
- package/lib/common/subject.d.ts +20 -0
- package/lib/common/subject.js +62 -0
- package/lib/components/alert/MxAlert.css +47 -0
- package/lib/components/alert/MxAlert.vue.d.ts +63 -0
- package/lib/components/alert/MxAlert.vue.js +82 -0
- package/lib/components/alert/index.d.ts +7 -0
- package/lib/components/alert/index.js +6 -0
- package/lib/components/authorizedpermission/AuthorizedPermission.css +14 -0
- package/lib/components/authorizedpermission/AuthorizedPermission.vue.d.ts +10 -0
- package/lib/components/authorizedpermission/AuthorizedPermission.vue.js +50 -0
- package/lib/components/authorizedpermission/index.d.ts +7 -0
- package/lib/components/authorizedpermission/index.js +6 -0
- package/lib/components/basiclayout/BasicLayout.css +44 -0
- package/lib/components/basiclayout/BasicLayout.vue.d.ts +45 -0
- package/lib/components/basiclayout/BasicLayout.vue.js +63 -0
- package/lib/components/basiclayout/index.d.ts +7 -0
- package/lib/components/basiclayout/index.js +6 -0
- package/lib/components/breadcrumb/BreadCrumb.css +20 -0
- package/lib/components/breadcrumb/BreadCrumb.vue.d.ts +53 -0
- package/lib/components/breadcrumb/BreadCrumb.vue.js +123 -0
- package/lib/components/breadcrumb/index.d.ts +7 -0
- package/lib/components/breadcrumb/index.js +6 -0
- package/lib/components/button/MxButton.css +149 -0
- package/lib/components/button/MxButton.vue.d.ts +107 -0
- package/lib/components/button/MxButton.vue.js +75 -0
- package/lib/components/button/index.d.ts +7 -0
- package/lib/components/button/index.js +6 -0
- package/lib/components/checkbox/MxCheckbox.css +35 -0
- package/lib/components/checkbox/MxCheckbox.vue.d.ts +104 -0
- package/lib/components/checkbox/MxCheckbox.vue.js +34 -0
- package/lib/components/checkbox/MxCheckboxGroup.vue.d.ts +43 -0
- package/lib/components/checkbox/MxCheckboxGroup.vue.js +25 -0
- package/lib/components/checkbox/index.d.ts +351 -0
- package/lib/components/checkbox/index.js +16 -0
- package/lib/components/datePicker/MxDatePicker.css +586 -0
- package/lib/components/datePicker/MxDatePicker.vue.d.ts +49 -0
- package/lib/components/datePicker/MxDatePicker.vue.js +78 -0
- package/lib/components/datePicker/index.d.ts +7 -0
- package/lib/components/datePicker/index.js +6 -0
- package/lib/components/dialog/MxDialog.css +62 -0
- package/lib/components/dialog/MxDialog.vue.d.ts +164 -0
- package/lib/components/dialog/MxDialog.vue.js +89 -0
- package/lib/components/dialog/index.d.ts +7 -0
- package/lib/components/dialog/index.js +6 -0
- package/lib/components/dropdown/MxDropdown.css +30 -0
- package/lib/components/dropdown/MxDropdown.vue.d.ts +71 -0
- package/lib/components/dropdown/MxDropdown.vue.js +96 -0
- package/lib/components/dropdown/index.d.ts +7 -0
- package/lib/components/dropdown/index.js +6 -0
- package/lib/components/ellipsisSpan/MxEllipsisSpan.css +3 -0
- package/lib/components/ellipsisSpan/MxEllipsisSpan.vue.d.ts +42 -0
- package/lib/components/ellipsisSpan/MxEllipsisSpan.vue.js +69 -0
- package/lib/components/ellipsisSpan/index.d.ts +7 -0
- package/lib/components/ellipsisSpan/index.js +6 -0
- package/lib/components/empty/MxEmpty.css +10 -0
- package/lib/components/empty/MxEmpty.vue.d.ts +7 -0
- package/lib/components/empty/MxEmpty.vue.js +35 -0
- package/lib/components/empty/index.d.ts +7 -0
- package/lib/components/empty/index.js +6 -0
- package/lib/components/empty/no-data.png +0 -0
- package/lib/components/form/MxForm.css +26 -0
- package/lib/components/form/MxForm.vue.d.ts +123 -0
- package/lib/components/form/MxForm.vue.js +98 -0
- package/lib/components/form/MxFormItem.css +23 -0
- package/lib/components/form/MxFormItem.vue.d.ts +94 -0
- package/lib/components/form/MxFormItem.vue.js +63 -0
- package/lib/components/form/index.d.ts +242 -0
- package/lib/components/form/index.js +11 -0
- package/lib/components/headnavigation/HeadNavigation.css +144 -0
- package/lib/components/headnavigation/HeadNavigation.vue.d.ts +45 -0
- package/lib/components/headnavigation/HeadNavigation.vue.js +200 -0
- package/lib/components/headnavigation/MenuBar.css +113 -0
- package/lib/components/headnavigation/MenuBar.vue.d.ts +35 -0
- package/lib/components/headnavigation/MenuBar.vue.js +30 -0
- package/lib/components/headnavigation/index.d.ts +7 -0
- package/lib/components/headnavigation/index.js +6 -0
- package/lib/components/index.d.ts +38 -0
- package/lib/components/index.js +175 -0
- package/lib/components/input/MxInput.css +54 -0
- package/lib/components/input/MxInput.vue.d.ts +7 -0
- package/lib/components/input/MxInput.vue.js +23 -0
- package/lib/components/input/index.d.ts +7 -0
- package/lib/components/input/index.js +6 -0
- package/lib/components/message/index.d.ts +7 -0
- package/lib/components/message/index.js +12 -0
- package/lib/components/message/message.css +31 -0
- package/lib/components/message/message.d.ts +4 -0
- package/lib/components/message/message.js +41 -0
- package/lib/components/messageBox/index.d.ts +7 -0
- package/lib/components/messageBox/index.js +13 -0
- package/lib/components/messageBox/message.vue.d.ts +48 -0
- package/lib/components/messageBox/message.vue.js +57 -0
- package/lib/components/messageBox/messageBox.css +160 -0
- package/lib/components/messageBox/messageBox.d.ts +4 -0
- package/lib/components/messageBox/messageBox.js +38 -0
- package/lib/components/notification/index.d.ts +3 -0
- package/lib/components/notification/index.js +6 -0
- package/lib/components/notification/notification.css +58 -0
- package/lib/components/notification/notification.d.ts +4 -0
- package/lib/components/notification/notification.js +27 -0
- package/lib/components/pagination/MxPagination.css +110 -0
- package/lib/components/pagination/MxPagination.vue.d.ts +38 -0
- package/lib/components/pagination/MxPagination.vue.js +52 -0
- package/lib/components/pagination/index.d.ts +7 -0
- package/lib/components/pagination/index.js +6 -0
- package/lib/components/popconfirm/MxPopconfirm.css +26 -0
- package/lib/components/popconfirm/MxPopconfirm.vue.d.ts +51 -0
- package/lib/components/popconfirm/MxPopconfirm.vue.js +91 -0
- package/lib/components/popconfirm/index.d.ts +7 -0
- package/lib/components/popconfirm/index.js +6 -0
- package/lib/components/radio/MxRadio.css +33 -0
- package/lib/components/radio/MxRadio.vue.d.ts +36 -0
- package/lib/components/radio/MxRadio.vue.js +34 -0
- package/lib/components/radio/MxRadioButton.css +37 -0
- package/lib/components/radio/MxRadioButton.vue.d.ts +31 -0
- package/lib/components/radio/MxRadioButton.vue.js +32 -0
- package/lib/components/radio/MxRadioGroup.vue.d.ts +45 -0
- package/lib/components/radio/MxRadioGroup.vue.js +25 -0
- package/lib/components/radio/index.d.ts +302 -0
- package/lib/components/radio/index.js +15 -0
- package/lib/components/select/MxOption.vue.d.ts +7 -0
- package/lib/components/select/MxOption.vue.js +25 -0
- package/lib/components/select/MxOptionGroup.vue.d.ts +7 -0
- package/lib/components/select/MxOptionGroup.vue.js +22 -0
- package/lib/components/select/MxSelect.css +91 -0
- package/lib/components/select/MxSelect.vue.d.ts +7 -0
- package/lib/components/select/MxSelect.vue.js +42 -0
- package/lib/components/select/index.d.ts +191 -0
- package/lib/components/select/index.js +15 -0
- package/lib/components/sidermenu/HambShow.css +65 -0
- package/lib/components/sidermenu/HambShow.vue.d.ts +16 -0
- package/lib/components/sidermenu/HambShow.vue.js +75 -0
- package/lib/components/sidermenu/SiderMenu.css +94 -0
- package/lib/components/sidermenu/SiderMenu.vue.d.ts +46 -0
- package/lib/components/sidermenu/SiderMenu.vue.js +245 -0
- package/lib/components/sidermenu/index.d.ts +7 -0
- package/lib/components/sidermenu/index.js +6 -0
- package/lib/components/slider/MxSlider.css +54 -0
- package/lib/components/slider/MxSlider.vue.d.ts +32 -0
- package/lib/components/slider/MxSlider.vue.js +38 -0
- package/lib/components/slider/index.d.ts +7 -0
- package/lib/components/slider/index.js +6 -0
- package/lib/components/steps/MxStep.css +572 -0
- package/lib/components/steps/MxStep.vue.d.ts +7 -0
- package/lib/components/steps/MxStep.vue.js +29 -0
- package/lib/components/steps/MxSteps.vue.d.ts +29 -0
- package/lib/components/steps/MxSteps.vue.js +39 -0
- package/lib/components/steps/index.d.ts +99 -0
- package/lib/components/steps/index.js +11 -0
- package/lib/components/switch/MxSwitch.css +49 -0
- package/lib/components/switch/MxSwitch.vue.d.ts +2 -0
- package/lib/components/switch/MxSwitch.vue.js +22 -0
- package/lib/components/switch/index.d.ts +7 -0
- package/lib/components/switch/index.js +6 -0
- package/lib/components/switchstaff/CustomSvg.vue.d.ts +2 -0
- package/lib/components/switchstaff/CustomSvg.vue.js +27 -0
- package/lib/components/switchstaff/SwitchStaff.css +132 -0
- package/lib/components/switchstaff/SwitchStaff.vue.d.ts +32 -0
- package/lib/components/switchstaff/SwitchStaff.vue.js +120 -0
- package/lib/components/switchstaff/WarnSvg.vue.d.ts +2 -0
- package/lib/components/switchstaff/WarnSvg.vue.js +27 -0
- package/lib/components/switchstaff/index.d.ts +7 -0
- package/lib/components/switchstaff/index.js +6 -0
- package/lib/components/systemcontent/SystemContent.css +28 -0
- package/lib/components/systemcontent/SystemContent.vue.d.ts +51 -0
- package/lib/components/systemcontent/SystemContent.vue.js +90 -0
- package/lib/components/systemcontent/index.d.ts +7 -0
- package/lib/components/systemcontent/index.js +6 -0
- package/lib/components/systemcontent/logo.png +0 -0
- package/lib/components/table/MxTable.css +190 -0
- package/lib/components/table/MxTable.vue.d.ts +37 -0
- package/lib/components/table/MxTable.vue.js +62 -0
- package/lib/components/table/MxTableColumn.css +31 -0
- package/lib/components/table/MxTableColumn.vue.d.ts +11 -0
- package/lib/components/table/MxTableColumn.vue.js +27 -0
- package/lib/components/table/index.d.ts +103 -0
- package/lib/components/table/index.js +11 -0
- package/lib/components/tabs/MxTabPane.vue.d.ts +7 -0
- package/lib/components/tabs/MxTabPane.vue.js +25 -0
- package/lib/components/tabs/MxTabs.css +132 -0
- package/lib/components/tabs/MxTabs.vue.d.ts +37 -0
- package/lib/components/tabs/MxTabs.vue.js +43 -0
- package/lib/components/tag/MxTag.css +84 -0
- package/lib/components/tag/MxTag.vue.d.ts +40 -0
- package/lib/components/tag/MxTag.vue.js +95 -0
- package/lib/components/tag/index.d.ts +7 -0
- package/lib/components/tag/index.js +6 -0
- package/lib/components/timePicker/MxTimePicker.css +180 -0
- package/lib/components/timePicker/MxTimePicker.vue.d.ts +49 -0
- package/lib/components/timePicker/MxTimePicker.vue.js +78 -0
- package/lib/components/timePicker/index.d.ts +7 -0
- package/lib/components/timePicker/index.js +6 -0
- package/lib/components/tooltip/MxTooltip.css +17 -0
- package/lib/components/tooltip/MxTooltip.vue.d.ts +7 -0
- package/lib/components/tooltip/MxTooltip.vue.js +23 -0
- package/lib/components/tooltip/index.d.ts +7 -0
- package/lib/components/tooltip/index.js +6 -0
- package/lib/components/tree/MxTree.css +56 -0
- package/lib/components/tree/MxTree.vue.d.ts +7 -0
- package/lib/components/tree/MxTree.vue.js +26 -0
- package/lib/components/tree/index.d.ts +7 -0
- package/lib/components/tree/index.js +6 -0
- package/lib/components/treeselect/MxTreeSelect.css +111 -0
- package/lib/components/treeselect/MxTreeSelect.vue.d.ts +7 -0
- package/lib/components/treeselect/MxTreeSelect.vue.js +34 -0
- package/lib/components/treeselect/index.d.ts +7 -0
- package/lib/components/treeselect/index.js +6 -0
- package/lib/components/upload/MxUpload.css +111 -0
- package/lib/components/upload/MxUpload.vue.d.ts +111 -0
- package/lib/components/upload/MxUpload.vue.js +309 -0
- package/lib/components/upload/index.d.ts +7 -0
- package/lib/components/upload/index.js +6 -0
- package/lib/components/upload/upload.d.ts +139 -0
- package/lib/components/upload/upload.js +11 -0
- package/lib/components/upload/uploadList.css +70 -0
- package/lib/components/upload/uploadList.vue.d.ts +15 -0
- package/lib/components/upload/uploadList.vue.js +117 -0
- package/lib/components/upload/use-handlers.d.ts +13 -0
- package/lib/components/upload/use-handlers.js +54 -0
- package/lib/components/usercontent/ArrowSvg.vue.d.ts +2 -0
- package/lib/components/usercontent/ArrowSvg.vue.js +27 -0
- package/lib/components/usercontent/UserContent.css +53 -0
- package/lib/components/usercontent/UserContent.vue.d.ts +28 -0
- package/lib/components/usercontent/UserContent.vue.js +133 -0
- package/lib/components/usercontent/UserSvg.vue.d.ts +2 -0
- package/lib/components/usercontent/UserSvg.vue.js +28 -0
- package/lib/components/usercontent/index.d.ts +7 -0
- package/lib/components/usercontent/index.js +6 -0
- package/lib/constants/const.d.ts +1 -0
- package/lib/constants/const.js +4 -0
- package/lib/constants/index.d.ts +2 -0
- package/lib/constants/index.js +21 -0
- package/lib/env.d.ts +30 -0
- package/lib/index.d.ts +13 -0
- package/lib/index.js +82 -0
- package/lib/utils/hooks.d.ts +23 -0
- package/lib/utils/hooks.js +126 -0
- package/lib/utils/index.d.ts +3 -0
- package/lib/utils/index.js +6 -0
- package/lib/utils/lib.d.ts +9 -0
- package/lib/utils/lib.js +102 -0
- package/lib/utils/micro.d.ts +12 -0
- package/lib/utils/micro.js +128 -0
- package/package.json +9 -11
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
.mx-tabs[data-v-810cdef6] {
|
|
2
|
+
--el-border-color-light: rgba(255, 255, 255, 0.2);
|
|
3
|
+
}
|
|
4
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__nav-wrap.is-top::after {
|
|
5
|
+
height: 1px;
|
|
6
|
+
}
|
|
7
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header {
|
|
8
|
+
--el-color-primary: #4a90e2;
|
|
9
|
+
--el-text-color-primary: rgba(255, 255, 255, 0.65);
|
|
10
|
+
--el-disabled-text-color: rgba(255, 255, 255, 0.3);
|
|
11
|
+
--el-border-color: rgba(255, 255, 255, 0.2);
|
|
12
|
+
--el-tabs-header-height: 46px;
|
|
13
|
+
}
|
|
14
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header.is-top .el-tabs__active-bar {
|
|
15
|
+
display: none;
|
|
16
|
+
}
|
|
17
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header .el-tabs__item,
|
|
18
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header .el-tabs__new-tab {
|
|
19
|
+
padding: 12px 16px;
|
|
20
|
+
font-size: 14px;
|
|
21
|
+
font-weight: 400;
|
|
22
|
+
line-height: 22px;
|
|
23
|
+
height: 46px;
|
|
24
|
+
}
|
|
25
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header .el-tabs__item:not(.is-left, .is-right):not(:nth-child(1), :nth-child(2)),
|
|
26
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header .el-tabs__new-tab:not(.is-left, .is-right):not(:nth-child(1), :nth-child(2)) {
|
|
27
|
+
margin-left: 16px;
|
|
28
|
+
}
|
|
29
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header.is-top .el-tabs__item.is-active {
|
|
30
|
+
border-bottom: 2px solid #4a90e2;
|
|
31
|
+
font-weight: 500;
|
|
32
|
+
}
|
|
33
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header .el-tabs__new-tab {
|
|
34
|
+
margin: 0;
|
|
35
|
+
font-size: 16px;
|
|
36
|
+
}
|
|
37
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header .el-tabs__nav-next,
|
|
38
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__header .el-tabs__nav-prev {
|
|
39
|
+
font-size: 14px;
|
|
40
|
+
line-height: 22px;
|
|
41
|
+
padding: 12px 0;
|
|
42
|
+
}
|
|
43
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__item.is-left {
|
|
44
|
+
padding: 8px 24px 8px 32px;
|
|
45
|
+
height: 38px;
|
|
46
|
+
}
|
|
47
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__item.is-left:not(:nth-child(1), :nth-child(2)) {
|
|
48
|
+
margin-top: 16px;
|
|
49
|
+
}
|
|
50
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__item.is-right {
|
|
51
|
+
padding: 8px 32px 8px 24px;
|
|
52
|
+
height: 38px;
|
|
53
|
+
}
|
|
54
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__item.is-right:not(:nth-child(1), :nth-child(2)) {
|
|
55
|
+
margin-top: 16px;
|
|
56
|
+
}
|
|
57
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__nav-wrap.is-left::after,
|
|
58
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__nav-wrap.is-right::after {
|
|
59
|
+
width: 1px;
|
|
60
|
+
}
|
|
61
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__nav-wrap.is-left .el-tabs__nav-next,
|
|
62
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__nav-wrap.is-left .el-tabs__nav-prev,
|
|
63
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__nav-wrap.is-right .el-tabs__nav-next,
|
|
64
|
+
.mx-tabs[data-v-810cdef6] .el-tabs__nav-wrap.is-right .el-tabs__nav-prev {
|
|
65
|
+
padding: 8px 24px 8px 32px;
|
|
66
|
+
}
|
|
67
|
+
.mx-tabs.mx-tabs-selected-line-top[data-v-810cdef6] :not(.el-tabs--card) .el-tabs__active-bar {
|
|
68
|
+
top: 0;
|
|
69
|
+
}
|
|
70
|
+
.mx-tabs.mx-tabs-selected-line-top[data-v-810cdef6] :not(.el-tabs--card) .el-tabs__item.is-active {
|
|
71
|
+
border-bottom: 0;
|
|
72
|
+
border-top: 2px solid #4a90e2;
|
|
73
|
+
}
|
|
74
|
+
.mx-tabs.mx-tabs-display-bordered[data-v-810cdef6] :not(.el-tabs--card) .el-tabs__nav-wrap::after {
|
|
75
|
+
display: none;
|
|
76
|
+
}.mx-tabs.el-tabs--card > .el-tabs__header.is-top {
|
|
77
|
+
--el-tabs-header-height: 40px;
|
|
78
|
+
}
|
|
79
|
+
.mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__nav {
|
|
80
|
+
border: none;
|
|
81
|
+
}
|
|
82
|
+
.mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__item {
|
|
83
|
+
padding: 9px 16px;
|
|
84
|
+
height: 40px;
|
|
85
|
+
background: rgba(255, 255, 255, 0.05);
|
|
86
|
+
border-radius: 2px 2px 0px 0px;
|
|
87
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
88
|
+
border-bottom: none;
|
|
89
|
+
margin-left: 2px !important;
|
|
90
|
+
}
|
|
91
|
+
.mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__item:first-child {
|
|
92
|
+
margin-left: 0 !important;
|
|
93
|
+
}
|
|
94
|
+
.mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__item.is-active {
|
|
95
|
+
border-bottom: 1px solid #232324;
|
|
96
|
+
background: transparent;
|
|
97
|
+
}
|
|
98
|
+
.mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__item.is-closable, .mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__item.is-closable:hover {
|
|
99
|
+
padding: 9px 16px !important;
|
|
100
|
+
}
|
|
101
|
+
.mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__item.is-closable .is-icon-close, .mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__item.is-closable:hover .is-icon-close {
|
|
102
|
+
width: 16px;
|
|
103
|
+
}
|
|
104
|
+
.mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__item .is-icon-close {
|
|
105
|
+
font-size: 16px;
|
|
106
|
+
margin-left: 8px;
|
|
107
|
+
height: 16px;
|
|
108
|
+
width: 16px;
|
|
109
|
+
color: rgba(255, 255, 255, 0.45);
|
|
110
|
+
}
|
|
111
|
+
.mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__item .is-icon-close:hover {
|
|
112
|
+
color: rgba(255, 255, 255, 0.85);
|
|
113
|
+
background-color: transparent;
|
|
114
|
+
}
|
|
115
|
+
.mx-tabs.el-tabs--card > .el-tabs__header.is-top .el-tabs__new-tab {
|
|
116
|
+
padding: 9px 16px;
|
|
117
|
+
height: 40px;
|
|
118
|
+
border-style: dashed;
|
|
119
|
+
background: transparent;
|
|
120
|
+
}
|
|
121
|
+
.mx-tabs.el-tabs--bottom .el-tabs__item.is-bottom:nth-child(2),
|
|
122
|
+
.mx-tabs.el-tabs--bottom .el-tabs__item.is-top:nth-child(2),
|
|
123
|
+
.mx-tabs.el-tabs--top .el-tabs__item.is-bottom:nth-child(2),
|
|
124
|
+
.mx-tabs.el-tabs--top .el-tabs__item.is-top:nth-child(2) {
|
|
125
|
+
padding-left: 12px;
|
|
126
|
+
}
|
|
127
|
+
.mx-tabs.el-tabs--bottom .el-tabs__item.is-bottom:last-child,
|
|
128
|
+
.mx-tabs.el-tabs--bottom .el-tabs__item.is-top:last-child,
|
|
129
|
+
.mx-tabs.el-tabs--top .el-tabs__item.is-bottom:last-child,
|
|
130
|
+
.mx-tabs.el-tabs--top .el-tabs__item.is-top:last-child {
|
|
131
|
+
padding-right: 12px;
|
|
132
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
bordered?: boolean;
|
|
3
|
+
selectedLinePlacement?: 'top' | 'bottom';
|
|
4
|
+
};
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
6
|
+
bordered: boolean;
|
|
7
|
+
selectedLinePlacement: string;
|
|
8
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
9
|
+
bordered: boolean;
|
|
10
|
+
selectedLinePlacement: string;
|
|
11
|
+
}>>>, {
|
|
12
|
+
bordered: boolean;
|
|
13
|
+
selectedLinePlacement: "top" | "bottom";
|
|
14
|
+
}, {}>, Partial<Record<NonNullable<string | number>, (_: {}) => any>>>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
19
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
20
|
+
} : {
|
|
21
|
+
type: import('vue').PropType<T[K]>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
type __VLS_WithDefaults<P, D> = {
|
|
26
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
27
|
+
default: D[K];
|
|
28
|
+
}> : P[K];
|
|
29
|
+
};
|
|
30
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
type __VLS_Prettify<T> = {
|
|
36
|
+
[K in keyof T]: T[K];
|
|
37
|
+
} & {};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const vue = require("vue");
|
|
3
|
+
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
4
|
+
__name: "MxTabs",
|
|
5
|
+
props: {
|
|
6
|
+
bordered: { type: Boolean, default: true },
|
|
7
|
+
selectedLinePlacement: { default: "bottom" }
|
|
8
|
+
},
|
|
9
|
+
setup(__props) {
|
|
10
|
+
const props = __props;
|
|
11
|
+
const classObject = vue.reactive({
|
|
12
|
+
"mx-tabs": true
|
|
13
|
+
});
|
|
14
|
+
vue.watchEffect(() => {
|
|
15
|
+
classObject["mx-tabs-display-bordered"] = !props.bordered;
|
|
16
|
+
classObject["mx-tabs-selected-line-top"] = props.selectedLinePlacement === "top";
|
|
17
|
+
});
|
|
18
|
+
return (_ctx, _cache) => {
|
|
19
|
+
const _component_ElTabs = vue.resolveComponent("ElTabs");
|
|
20
|
+
return vue.openBlock(), vue.createBlock(_component_ElTabs, vue.mergeProps({ class: classObject }, _ctx.$attrs), vue.createSlots({ _: 2 }, [
|
|
21
|
+
vue.renderList(_ctx.$slots, (item, key, index) => {
|
|
22
|
+
return {
|
|
23
|
+
name: key,
|
|
24
|
+
fn: vue.withCtx(() => [
|
|
25
|
+
vue.renderSlot(_ctx.$slots, key, {}, void 0, true)
|
|
26
|
+
])
|
|
27
|
+
};
|
|
28
|
+
})
|
|
29
|
+
]), 1040, ["class"]);
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
const MxTabs_vue_vue_type_style_index_0_scoped_810cdef6_lang = "";
|
|
34
|
+
const MxTabs_vue_vue_type_style_index_1_lang = "";
|
|
35
|
+
const _export_sfc = (sfc, props) => {
|
|
36
|
+
const target = sfc.__vccOpts || sfc;
|
|
37
|
+
for (const [key, val] of props) {
|
|
38
|
+
target[key] = val;
|
|
39
|
+
}
|
|
40
|
+
return target;
|
|
41
|
+
};
|
|
42
|
+
const MxTabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-810cdef6"]]);
|
|
43
|
+
module.exports = MxTabs;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
.mx-tag.el-tag {
|
|
2
|
+
border-radius: 2px;
|
|
3
|
+
background: rgba(255, 255, 255, 0.1);
|
|
4
|
+
border: none;
|
|
5
|
+
padding: 0 8px;
|
|
6
|
+
height: 22px;
|
|
7
|
+
}
|
|
8
|
+
.mx-tag.el-tag .el-tag__content {
|
|
9
|
+
font-weight: 400;
|
|
10
|
+
font-size: 12px;
|
|
11
|
+
color: rgba(255, 255, 255, 0.65);
|
|
12
|
+
line-height: 20px;
|
|
13
|
+
}
|
|
14
|
+
.mx-tag.el-tag .el-icon.el-tag__close {
|
|
15
|
+
color: rgba(255, 255, 255, 0.45);
|
|
16
|
+
}
|
|
17
|
+
.mx-tag.el-tag .el-icon.el-tag__close:hover {
|
|
18
|
+
background-color: transparent;
|
|
19
|
+
color: rgba(255, 255, 255, 0.65);
|
|
20
|
+
}
|
|
21
|
+
.mx-tag.el-tag.el-tag--success {
|
|
22
|
+
border: 1px solid rgba(82, 196, 26, 0.5);
|
|
23
|
+
background-color: rgba(82, 196, 26, 0.1);
|
|
24
|
+
}
|
|
25
|
+
.mx-tag.el-tag.el-tag--success .el-tag__content {
|
|
26
|
+
color: #52c41a;
|
|
27
|
+
}
|
|
28
|
+
.mx-tag.el-tag.el-tag--info {
|
|
29
|
+
background: rgba(74, 144, 226, 0.1);
|
|
30
|
+
border: 1px solid rgba(74, 144, 226, 0.5);
|
|
31
|
+
}
|
|
32
|
+
.mx-tag.el-tag.el-tag--info .el-tag__content {
|
|
33
|
+
color: #4a90e2;
|
|
34
|
+
}
|
|
35
|
+
.mx-tag.el-tag.el-tag--warning {
|
|
36
|
+
background: rgba(250, 173, 20, 0.1);
|
|
37
|
+
border: 1px solid rgba(250, 173, 20, 0.5);
|
|
38
|
+
}
|
|
39
|
+
.mx-tag.el-tag.el-tag--warning .el-tag__content {
|
|
40
|
+
color: #faad14;
|
|
41
|
+
}
|
|
42
|
+
.mx-tag.el-tag.el-tag--danger {
|
|
43
|
+
background: rgba(230, 66, 66, 0.1);
|
|
44
|
+
border: 1px solid rgba(230, 66, 66, 0.5);
|
|
45
|
+
}
|
|
46
|
+
.mx-tag.el-tag.el-tag--danger .el-tag__content {
|
|
47
|
+
color: #e64242;
|
|
48
|
+
}
|
|
49
|
+
.mx-tag.el-tag.mx-tag-primary {
|
|
50
|
+
background: rgba(255, 255, 255, 0.05);
|
|
51
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
52
|
+
}
|
|
53
|
+
.mx-tag.el-tag.mx-tag-primary .el-tag__content {
|
|
54
|
+
color: rgba(255, 255, 255, 0.65);
|
|
55
|
+
}
|
|
56
|
+
.mx-tag.el-tag.mx-tag-invalid {
|
|
57
|
+
background: rgba(255, 255, 255, 0.05);
|
|
58
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
59
|
+
}
|
|
60
|
+
.mx-tag.el-tag.mx-tag-invalid .el-tag__content {
|
|
61
|
+
color: rgba(255, 255, 255, 0.3);
|
|
62
|
+
}
|
|
63
|
+
.mx-tag.el-tag.mx-tag-dashed {
|
|
64
|
+
background: none;
|
|
65
|
+
border: 1px dashed rgba(255, 255, 255, 0.2);
|
|
66
|
+
}
|
|
67
|
+
.mx-tag.el-tag.mx-tag-dashed .el-tag__content {
|
|
68
|
+
color: rgba(255, 255, 255, 0.65);
|
|
69
|
+
}
|
|
70
|
+
.mx-tag.el-tag.el-tag--small {
|
|
71
|
+
height: 18px;
|
|
72
|
+
}
|
|
73
|
+
.mx-tag.el-tag.el-tag--small .el-tag__content {
|
|
74
|
+
line-height: 16px;
|
|
75
|
+
}
|
|
76
|
+
.mx-tag.el-tag.mx-tag-disabled .el-tag__content {
|
|
77
|
+
color: rgba(255, 255, 255, 0.3);
|
|
78
|
+
}
|
|
79
|
+
.mx-tag.el-tag.mx-tag-color {
|
|
80
|
+
border: 1px solid;
|
|
81
|
+
}
|
|
82
|
+
.mx-tag.el-tag.mx-tag-color .el-tag__content {
|
|
83
|
+
color: inherit;
|
|
84
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
+
type: {
|
|
4
|
+
type: PropType<"" | "success" | "warning" | "info" | "invalid" | "primary" | "danger" | "dashed">;
|
|
5
|
+
validator: (value: string) => boolean;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
disabled: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
color: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
type: {
|
|
18
|
+
type: PropType<"" | "success" | "warning" | "info" | "invalid" | "primary" | "danger" | "dashed">;
|
|
19
|
+
validator: (value: string) => boolean;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
disabled: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
color: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
}>>, {
|
|
31
|
+
color: string;
|
|
32
|
+
type: "" | "success" | "warning" | "info" | "invalid" | "primary" | "danger" | "dashed";
|
|
33
|
+
disabled: boolean;
|
|
34
|
+
}, {}>, Partial<Record<NonNullable<string | number>, (_: {}) => any>>>;
|
|
35
|
+
export default _default;
|
|
36
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
37
|
+
new (): {
|
|
38
|
+
$slots: S;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const vue = require("vue");
|
|
3
|
+
const elementPlus = require("element-plus");
|
|
4
|
+
require("element-plus/es/components/tag/style/css");
|
|
5
|
+
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
6
|
+
__name: "MxTag",
|
|
7
|
+
props: {
|
|
8
|
+
type: {
|
|
9
|
+
type: String,
|
|
10
|
+
validator: (value) => ["", "success", "warning", "info", "primary", "danger", "dashed", "invalid"].includes(value),
|
|
11
|
+
default: ""
|
|
12
|
+
},
|
|
13
|
+
disabled: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false
|
|
16
|
+
},
|
|
17
|
+
color: {
|
|
18
|
+
type: String,
|
|
19
|
+
default: ""
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
setup(__props) {
|
|
23
|
+
const props = __props;
|
|
24
|
+
function extractRGBAValues(rgbaString) {
|
|
25
|
+
const rgbaRegex = /rgba?\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*([\d.]+)\)/;
|
|
26
|
+
const matches = rgbaString.match(rgbaRegex);
|
|
27
|
+
if (matches) {
|
|
28
|
+
const [, red, green, blue, alpha] = matches;
|
|
29
|
+
return {
|
|
30
|
+
red: parseInt(red, 10),
|
|
31
|
+
green: parseInt(green, 10),
|
|
32
|
+
blue: parseInt(blue, 10),
|
|
33
|
+
alpha: parseFloat(alpha)
|
|
34
|
+
};
|
|
35
|
+
} else {
|
|
36
|
+
return null;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
const colorType = vue.ref("hex");
|
|
40
|
+
const rNum = vue.ref(0);
|
|
41
|
+
const gNum = vue.ref(0);
|
|
42
|
+
const bNum = vue.ref(0);
|
|
43
|
+
const aNum = vue.ref(0);
|
|
44
|
+
vue.watch(
|
|
45
|
+
() => props.color,
|
|
46
|
+
(val) => {
|
|
47
|
+
if (val && val.startsWith("rgba")) {
|
|
48
|
+
const rgbaValues = extractRGBAValues(val);
|
|
49
|
+
if (rgbaValues) {
|
|
50
|
+
rNum.value = rgbaValues.red;
|
|
51
|
+
gNum.value = rgbaValues.green;
|
|
52
|
+
bNum.value = rgbaValues.blue;
|
|
53
|
+
aNum.value = rgbaValues.alpha;
|
|
54
|
+
colorType.value = "rgba";
|
|
55
|
+
} else {
|
|
56
|
+
colorType.value = "hex";
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{ immediate: true }
|
|
61
|
+
);
|
|
62
|
+
const tagType = props.type === "primary" || props.type === "dashed" || props.type === "invalid" ? "" : props.type;
|
|
63
|
+
return (_ctx, _cache) => {
|
|
64
|
+
return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTag), vue.mergeProps({
|
|
65
|
+
color: props.color,
|
|
66
|
+
type: vue.unref(tagType),
|
|
67
|
+
class: {
|
|
68
|
+
"mx-tag": true,
|
|
69
|
+
"mx-tag-dashed": props.type === "dashed",
|
|
70
|
+
"mx-tag-primary": props.type === "primary",
|
|
71
|
+
"mx-tag-invalid": props.type === "invalid",
|
|
72
|
+
"mx-tag-disabled": props.disabled,
|
|
73
|
+
"mx-tag-color": props.color
|
|
74
|
+
}
|
|
75
|
+
}, _ctx.$attrs, {
|
|
76
|
+
style: props.color ? colorType.value === "hex" ? { backgroundColor: `${props.color}1A`, color: props.color, borderColor: `${__props.color}80` } : {
|
|
77
|
+
backgroundColor: `rgba(${rNum.value},${gNum.value},${bNum.value},${aNum.value * 0.1})`,
|
|
78
|
+
color: props.color,
|
|
79
|
+
borderColor: `rgba(${rNum.value},${gNum.value},${bNum.value},${aNum.value * 0.5})`
|
|
80
|
+
} : {}
|
|
81
|
+
}), vue.createSlots({ _: 2 }, [
|
|
82
|
+
vue.renderList(_ctx.$slots, (item, key, index) => {
|
|
83
|
+
return {
|
|
84
|
+
name: key,
|
|
85
|
+
fn: vue.withCtx(() => [
|
|
86
|
+
vue.renderSlot(_ctx.$slots, key)
|
|
87
|
+
])
|
|
88
|
+
};
|
|
89
|
+
})
|
|
90
|
+
]), 1040, ["color", "type", "class", "style"]);
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
});
|
|
94
|
+
const MxTag_vue_vue_type_style_index_0_lang = "";
|
|
95
|
+
module.exports = _sfc_main;
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
.mx-time-picker.el-date-editor .el-input__wrapper {
|
|
2
|
+
border: 1px solid rgba(0, 173, 255, 0.5);
|
|
3
|
+
border-radius: 2px;
|
|
4
|
+
background: rgba(74, 144, 226, 0.16);
|
|
5
|
+
box-shadow: none;
|
|
6
|
+
}
|
|
7
|
+
.mx-time-picker.el-date-editor .el-input__wrapper:hover {
|
|
8
|
+
border-color: rgba(0, 173, 255, 0.8);
|
|
9
|
+
background-color: rgba(74, 144, 226, 0.16);
|
|
10
|
+
}
|
|
11
|
+
.mx-time-picker.el-date-editor .el-input__wrapper .el-input__inner {
|
|
12
|
+
font-size: 14px;
|
|
13
|
+
font-weight: 400;
|
|
14
|
+
color: rgba(255, 255, 255, 0.85);
|
|
15
|
+
line-height: 22px;
|
|
16
|
+
}
|
|
17
|
+
.mx-time-picker.el-date-editor .el-input__wrapper .el-input__prefix {
|
|
18
|
+
order: 1;
|
|
19
|
+
}
|
|
20
|
+
.mx-time-picker.el-date-editor .el-input__wrapper .el-input__prefix .el-input__prefix-inner .el-icon.el-input__icon {
|
|
21
|
+
margin-right: 0px;
|
|
22
|
+
}
|
|
23
|
+
.mx-time-picker.el-date-editor .el-input__wrapper .el-input__suffix .el-input__suffix-inner .clear-icon {
|
|
24
|
+
position: absolute;
|
|
25
|
+
top: 8px;
|
|
26
|
+
right: 11px;
|
|
27
|
+
border-radius: 50%;
|
|
28
|
+
background-color: #232324;
|
|
29
|
+
color: rgba(255, 255, 255, 0.45);
|
|
30
|
+
}
|
|
31
|
+
.mx-time-picker.el-date-editor .el-input__wrapper .el-input__suffix .el-input__suffix-inner .clear-icon:hover {
|
|
32
|
+
color: rgba(255, 255, 255, 0.55);
|
|
33
|
+
}
|
|
34
|
+
.mx-time-picker.el-date-editor .el-icon.el-input__icon.el-range__icon {
|
|
35
|
+
order: 1;
|
|
36
|
+
}
|
|
37
|
+
.mx-time-picker.el-date-editor .el-icon.el-input__icon.el-range__close-icon {
|
|
38
|
+
position: absolute;
|
|
39
|
+
top: 8px;
|
|
40
|
+
right: 12px;
|
|
41
|
+
background-color: #232324;
|
|
42
|
+
border-radius: 50%;
|
|
43
|
+
height: 14px;
|
|
44
|
+
color: rgba(255, 255, 255, 0.45);
|
|
45
|
+
z-index: 2;
|
|
46
|
+
}
|
|
47
|
+
.mx-time-picker.el-date-editor .el-icon.el-input__icon.el-range__close-icon:hover {
|
|
48
|
+
color: rgba(255, 255, 255, 0.55);
|
|
49
|
+
}
|
|
50
|
+
.mx-time-picker.el-date-editor.is-disabled .el-input__wrapper {
|
|
51
|
+
background: rgba(255, 255, 255, 0.1);
|
|
52
|
+
box-shadow: none;
|
|
53
|
+
}
|
|
54
|
+
.mx-time-picker.el-date-editor.is-disabled .el-input__wrapper:hover {
|
|
55
|
+
border: 1px solid rgba(0, 173, 255, 0.5);
|
|
56
|
+
}
|
|
57
|
+
.mx-time-picker.el-date-editor.is-disabled .el-input__wrapper .el-input__inner {
|
|
58
|
+
color: rgba(255, 255, 255, 0.3);
|
|
59
|
+
}
|
|
60
|
+
.mx-time-picker.el-date-editor.el-input__wrapper {
|
|
61
|
+
border: 1px solid rgba(0, 173, 255, 0.5);
|
|
62
|
+
border-radius: 2px;
|
|
63
|
+
background: rgba(74, 144, 226, 0.16);
|
|
64
|
+
box-shadow: none;
|
|
65
|
+
padding: 0px 12px;
|
|
66
|
+
}
|
|
67
|
+
.mx-time-picker.el-date-editor.el-input__wrapper:hover {
|
|
68
|
+
border-color: rgba(0, 173, 255, 0.8);
|
|
69
|
+
background-color: rgba(74, 144, 226, 0.16);
|
|
70
|
+
box-shadow: none;
|
|
71
|
+
}
|
|
72
|
+
.mx-time-picker.el-date-editor.el-input__wrapper .el-range-input {
|
|
73
|
+
font-size: 14px;
|
|
74
|
+
font-weight: 400;
|
|
75
|
+
color: rgba(255, 255, 255, 0.85);
|
|
76
|
+
line-height: 22px;
|
|
77
|
+
text-align: start;
|
|
78
|
+
width: 42%;
|
|
79
|
+
}
|
|
80
|
+
.mx-time-picker.el-date-editor.el-input__wrapper .el-range-separator {
|
|
81
|
+
color: rgba(255, 255, 255, 0.45);
|
|
82
|
+
padding: 0;
|
|
83
|
+
}
|
|
84
|
+
.mx-time-picker.el-date-editor.el-input__wrapper.is-disabled {
|
|
85
|
+
background: rgba(255, 255, 255, 0.1);
|
|
86
|
+
border: 1px solid rgba(0, 173, 255, 0.5);
|
|
87
|
+
}
|
|
88
|
+
.mx-time-picker.el-date-editor.el-input__wrapper.is-disabled .el-range-input {
|
|
89
|
+
color: rgba(255, 255, 255, 0.3);
|
|
90
|
+
}
|
|
91
|
+
.mx-time-picker.el-date-editor.el-input__wrapper.is-disabled input {
|
|
92
|
+
background: transparent;
|
|
93
|
+
}
|
|
94
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light {
|
|
95
|
+
border: none;
|
|
96
|
+
}
|
|
97
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-popper__arrow {
|
|
98
|
+
display: none;
|
|
99
|
+
}
|
|
100
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker,
|
|
101
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel {
|
|
102
|
+
background: #1f1f1f;
|
|
103
|
+
border: none;
|
|
104
|
+
box-shadow: none;
|
|
105
|
+
}
|
|
106
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-range-picker__header,
|
|
107
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-range-picker__header {
|
|
108
|
+
color: rgba(255, 255, 255, 0.85);
|
|
109
|
+
}
|
|
110
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-range-picker__body,
|
|
111
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-range-picker__body {
|
|
112
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
113
|
+
border-radius: 2px;
|
|
114
|
+
}
|
|
115
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-panel__content::before,
|
|
116
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-panel__content::before {
|
|
117
|
+
border-top: 1px solid rgba(255, 255, 255, 0);
|
|
118
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0);
|
|
119
|
+
background: #111d2c;
|
|
120
|
+
margin-left: 0;
|
|
121
|
+
margin-right: 0;
|
|
122
|
+
}
|
|
123
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-spinner__item,
|
|
124
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-spinner__item {
|
|
125
|
+
font-size: 14px;
|
|
126
|
+
font-weight: 400;
|
|
127
|
+
color: rgba(255, 255, 255, 0.65);
|
|
128
|
+
line-height: 22px;
|
|
129
|
+
padding-top: 5px;
|
|
130
|
+
}
|
|
131
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-spinner__item.is-active,
|
|
132
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-spinner__item.is-active {
|
|
133
|
+
color: rgba(255, 255, 255, 0.85);
|
|
134
|
+
}
|
|
135
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-spinner__item.is-disabled,
|
|
136
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-spinner__item.is-disabled {
|
|
137
|
+
color: rgba(255, 255, 255, 0.3);
|
|
138
|
+
}
|
|
139
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-spinner__item:hover,
|
|
140
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-spinner__item:hover {
|
|
141
|
+
background: rgba(255, 255, 255, 0.05);
|
|
142
|
+
border-radius: 2px;
|
|
143
|
+
color: rgba(255, 255, 255, 0.85);
|
|
144
|
+
}
|
|
145
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-panel__footer,
|
|
146
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-panel__footer {
|
|
147
|
+
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
148
|
+
}
|
|
149
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-panel__footer .el-time-panel__btn,
|
|
150
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-panel__footer .el-time-panel__btn {
|
|
151
|
+
color: #4a90e2;
|
|
152
|
+
}
|
|
153
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-panel__footer .el-time-panel__btn:hover,
|
|
154
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-panel__footer .el-time-panel__btn:hover {
|
|
155
|
+
color: #75b3f0;
|
|
156
|
+
background-color: #1f1f1f;
|
|
157
|
+
}
|
|
158
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-range-picker .el-time-panel__footer .el-time-panel__btn.confirm,
|
|
159
|
+
.mx-time-picker-popper.el-popper.el-picker__popper.is-pure.is-light .el-time-panel .el-time-panel__footer .el-time-panel__btn.confirm {
|
|
160
|
+
font-weight: 500;
|
|
161
|
+
}
|
|
162
|
+
.el-button.mx-time-picker-range-switch-btn {
|
|
163
|
+
width: 32px;
|
|
164
|
+
margin-left: 8px !important;
|
|
165
|
+
--el-button-font-weight: 400;
|
|
166
|
+
--el-button-bg-color: rgba(255, 255, 255, 0.05);
|
|
167
|
+
--el-button-hover-text-color: #6ba3da;
|
|
168
|
+
--el-button-hover-border-color: #4a90e2;
|
|
169
|
+
--el-button-active-text-color: #37659a;
|
|
170
|
+
--el-button-active-border-color: #3570bd;
|
|
171
|
+
--el-button-border-color: rgba(255, 255, 255, 0.2);
|
|
172
|
+
--el-button-text-color: rgba(255, 255, 255, 0.85);
|
|
173
|
+
--el-fill-color-blank: #232324;
|
|
174
|
+
--el-button-hover-bg-color: rgba(255, 255, 255, 0.1);
|
|
175
|
+
padding: 5px 16px;
|
|
176
|
+
box-shadow: 0 2px 0 rgba(255, 255, 255, 0.04);
|
|
177
|
+
--el-border-radius-base: 2px;
|
|
178
|
+
--el-button-disabled-text-color: rgba(255, 255, 255, 0.3);
|
|
179
|
+
--el-button-disabled-border-color: rgba(255, 255, 255, 0.2);
|
|
180
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
placeholder: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
startPlaceholder: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
endPlaceholder: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
showSwitch: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click-left" | "click-right")[], "click-left" | "click-right", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
placeholder: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
startPlaceholder: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
endPlaceholder: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
showSwitch: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
}>> & {
|
|
36
|
+
"onClick-left"?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
"onClick-right"?: ((...args: any[]) => any) | undefined;
|
|
38
|
+
}, {
|
|
39
|
+
placeholder: string;
|
|
40
|
+
showSwitch: boolean;
|
|
41
|
+
startPlaceholder: string;
|
|
42
|
+
endPlaceholder: string;
|
|
43
|
+
}, {}>, Partial<Record<NonNullable<string | number>, (_: {}) => any>>>;
|
|
44
|
+
export default _default;
|
|
45
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
46
|
+
new (): {
|
|
47
|
+
$slots: S;
|
|
48
|
+
};
|
|
49
|
+
};
|