@maxtropy/v-components 0.1.17-beta.4 → 0.1.17-beta.6
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 +5640 -5497
- package/dist/style.css +1 -1
- package/dist/types/components/dialog/MxDialog.vue.d.ts +2 -2
- package/dist/types/components/dropdown/index.d.ts +2 -2
- package/dist/types/components/index.d.ts +2 -1
- package/dist/types/components/popconfirm/MxPopconfirm.vue.d.ts +1 -1
- package/dist/types/components/popover/MxPopover.vue.d.ts +22 -0
- package/dist/types/components/popover/index.d.ts +7 -0
- package/dist/types/components/select/MxSelect.vue.d.ts +12500 -1
- package/dist/types/components/tree/MxTree.vue.d.ts +1 -1
- package/dist/types/components/treeselect/MxTreeSelect.vue.d.ts +74 -1
- package/dist/types/components/upload/MxUpload.vue.d.ts +1 -1
- package/dist/types/theme/index.d.ts +8 -4
- package/package.json +2 -2
|
@@ -68,7 +68,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
68
68
|
__epPropKey: true;
|
|
69
69
|
};
|
|
70
70
|
fullscreen: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
71
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
71
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "confirm")[], "cancel" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
72
72
|
size: {
|
|
73
73
|
type: PropType<ModalSizeType>;
|
|
74
74
|
default: string;
|
|
@@ -137,8 +137,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
137
137
|
};
|
|
138
138
|
fullscreen: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
139
139
|
}>> & {
|
|
140
|
-
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
141
140
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
141
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
142
142
|
}, {
|
|
143
143
|
title: string;
|
|
144
144
|
center: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import MxDropdown from './MxDropdown.vue';
|
|
2
|
-
import DropdownMenu from './
|
|
3
|
-
import DropdownItem from './
|
|
2
|
+
import DropdownMenu from './MxDropDownMenu.vue';
|
|
3
|
+
import DropdownItem from './MxDropDownItem.vue';
|
|
4
4
|
declare module 'vue' {
|
|
5
5
|
interface GlobalComponents {
|
|
6
6
|
MxDropdown: typeof MxDropdown;
|
|
@@ -15,6 +15,7 @@ import BasicLayout from './basiclayout';
|
|
|
15
15
|
import AuthorizedPermission from './authorizedpermission';
|
|
16
16
|
import { usePermission, useStaffTitle, useIntegratedAuthorityList } from '../utils/hooks';
|
|
17
17
|
import MxTooltip from './tooltip';
|
|
18
|
+
import MxPopover from './popover';
|
|
18
19
|
import MxDropdown, { MxDropdownItem, MxDropdownMenu } from './dropdown';
|
|
19
20
|
import MxDialog from './dialog';
|
|
20
21
|
import MxAlert from './alert';
|
|
@@ -41,7 +42,7 @@ import MxFormContent from './formContent';
|
|
|
41
42
|
import MxFormTitle from './formTitle';
|
|
42
43
|
import MxSubContent from './subContent';
|
|
43
44
|
import MxAutocomplete from './autocomplete';
|
|
44
|
-
export { MxInput, MxInputNumber, MxButton, MxSwitch, MxSelect, MxOption, MxOptionGroup, MxRadio, MxRadioGroup, MxRadioButton, MxCheckbox, MxCheckboxButton, MxCheckboxGroup, SwitchStaff, HeadNavigation, SiderMenu, UserContent, SystemContent, BreadCrumb, BasicLayout, AuthorizedPermission, usePermission, useStaffTitle, useIntegratedAuthorityList, MxTooltip, MxDropdown, MxDropdownItem, MxDropdownMenu, MxAlert, MxDialog, MxSlider, MxDatePicker, MxTimePicker, MxPopconfirm, MxTree, MxTreeSelect, MxUpload, MxEllipsisSpan, MxEmpty, MxSteps, MxStep, MxTag, MxTable, MxTableColumn, MxPagination, MxForm, MxFormItem, MxTabs, MxTabPane, MxTimeSelect, MxCascader, MxFilter, MxWrapper, MxFormContent, MxFormTitle, MxSubContent, MxAutocomplete, };
|
|
45
|
+
export { MxInput, MxInputNumber, MxButton, MxSwitch, MxSelect, MxOption, MxOptionGroup, MxRadio, MxRadioGroup, MxRadioButton, MxCheckbox, MxCheckboxButton, MxCheckboxGroup, SwitchStaff, HeadNavigation, SiderMenu, UserContent, SystemContent, BreadCrumb, BasicLayout, AuthorizedPermission, usePermission, useStaffTitle, useIntegratedAuthorityList, MxTooltip, MxPopover, MxDropdown, MxDropdownItem, MxDropdownMenu, MxAlert, MxDialog, MxSlider, MxDatePicker, MxTimePicker, MxPopconfirm, MxTree, MxTreeSelect, MxUpload, MxEllipsisSpan, MxEmpty, MxSteps, MxStep, MxTag, MxTable, MxTableColumn, MxPagination, MxForm, MxFormItem, MxTabs, MxTabPane, MxTimeSelect, MxCascader, MxFilter, MxWrapper, MxFormContent, MxFormTitle, MxSubContent, MxAutocomplete, };
|
|
45
46
|
declare const _default: {
|
|
46
47
|
install: any;
|
|
47
48
|
};
|
|
@@ -36,8 +36,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
36
36
|
persistent: BooleanConstructor;
|
|
37
37
|
width: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 150, boolean>;
|
|
38
38
|
}>> & {
|
|
39
|
-
onConfirm?: ((e: MouseEvent) => any) | undefined;
|
|
40
39
|
onCancel?: ((e: MouseEvent) => any) | undefined;
|
|
40
|
+
onConfirm?: ((e: MouseEvent) => any) | undefined;
|
|
41
41
|
}, {
|
|
42
42
|
width: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
43
43
|
icon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
popperClass: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
popperClass: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
popperClass: string;
|
|
13
|
+
}, {}>, {
|
|
14
|
+
reference?(_: {}): any;
|
|
15
|
+
default?(_: {}): any;
|
|
16
|
+
}>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|