@maxtropy/v-components 0.1.15-beta.11 → 0.1.15-beta.12
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 +11702 -10619
- package/dist/style.css +1 -1
- package/dist/types/components/cascader/MxCascader.vue.d.ts +12 -0
- package/dist/types/components/cascader/index.d.ts +7 -0
- package/dist/types/components/checkbox/MxCheckbox.vue.d.ts +1 -1
- package/dist/types/components/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
|
|
2
|
+
getCheckedNodes: (leafOnly: boolean) => any;
|
|
3
|
+
cascaderPanelRef: () => any;
|
|
4
|
+
togglePopperVisible: (visible?: boolean | undefined) => any;
|
|
5
|
+
contentRef: () => any;
|
|
6
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, Partial<Record<NonNullable<string | number>, (_: any) => any>>>;
|
|
7
|
+
export default _default;
|
|
8
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
9
|
+
new (): {
|
|
10
|
+
$slots: S;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -88,13 +88,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
88
88
|
id: string;
|
|
89
89
|
name: string;
|
|
90
90
|
disabled: boolean;
|
|
91
|
+
validateEvent: boolean;
|
|
91
92
|
indeterminate: boolean;
|
|
92
93
|
checked: boolean;
|
|
93
94
|
trueLabel: string | number;
|
|
94
95
|
falseLabel: string | number;
|
|
95
96
|
controls: string;
|
|
96
97
|
border: boolean;
|
|
97
|
-
validateEvent: boolean;
|
|
98
98
|
}, {}>, Partial<Record<NonNullable<string | number>, (_: {}) => any>>>;
|
|
99
99
|
export default _default;
|
|
100
100
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -34,7 +34,8 @@ import MxTable, { MxTableColumn } from './table';
|
|
|
34
34
|
import MxPagination from './pagination';
|
|
35
35
|
import MxForm, { MxFormItem } from './form';
|
|
36
36
|
import MxTimeSelect from './timeselect';
|
|
37
|
-
|
|
37
|
+
import MxCascader from './cascader';
|
|
38
|
+
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, };
|
|
38
39
|
declare const _default: {
|
|
39
40
|
install: any;
|
|
40
41
|
};
|