prizm-ui-vue 2.2.32 → 2.2.33
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/components/PrizmCheckbox/PrizmCheckbox.vue.d.ts +8 -8
- package/dist/components/PrizmCollapse/PrizmCollapseItem.vue.d.ts +2 -2
- package/dist/components/PrizmDialog.vue.d.ts +3 -3
- package/dist/components/PrizmDrawer.vue.d.ts +3 -3
- package/dist/components/PrizmInput.vue.d.ts +8 -8
- package/dist/components/index.d.ts +6 -0
- package/dist/prizm-ui.es.js +357 -46
- package/dist/prizm-ui.umd.js +2 -2
- package/package.json +1 -1
|
@@ -42,25 +42,25 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
42
42
|
falseLabel: string | number;
|
|
43
43
|
}> & Omit<{
|
|
44
44
|
readonly disabled: boolean;
|
|
45
|
-
readonly validateEvent: boolean;
|
|
46
45
|
readonly indeterminate: boolean;
|
|
47
46
|
readonly checked: boolean;
|
|
48
47
|
readonly border: boolean;
|
|
48
|
+
readonly validateEvent: boolean;
|
|
49
49
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
50
|
-
readonly label?: string | number | boolean | Record<string, any> | undefined;
|
|
51
|
-
readonly name?: string | undefined;
|
|
52
|
-
readonly modelValue?: string | number | boolean | undefined;
|
|
53
|
-
readonly tabindex?: string | number | undefined;
|
|
54
|
-
readonly id?: string | undefined;
|
|
55
50
|
readonly ariaControls?: string | undefined;
|
|
51
|
+
readonly modelValue?: string | number | boolean | undefined;
|
|
52
|
+
readonly label?: string | number | boolean | Record<string, any> | undefined;
|
|
56
53
|
readonly value?: string | number | boolean | Record<string, any> | undefined;
|
|
54
|
+
readonly name?: string | undefined;
|
|
57
55
|
readonly trueValue?: string | number | undefined;
|
|
58
56
|
readonly falseValue?: string | number | undefined;
|
|
59
57
|
readonly trueLabel?: string | number | undefined;
|
|
60
58
|
readonly falseLabel?: string | number | undefined;
|
|
59
|
+
readonly id?: string | undefined;
|
|
60
|
+
readonly tabindex?: string | number | undefined;
|
|
61
61
|
"onUpdate:modelValue"?: ((val: import("element-plus").CheckboxValueType) => any) | undefined | undefined;
|
|
62
62
|
onChange?: ((val: import("element-plus").CheckboxValueType) => any) | undefined | undefined;
|
|
63
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "
|
|
63
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "modelValue" | "label" | "value" | "indeterminate" | "checked" | "name" | "trueValue" | "falseValue" | "trueLabel" | "falseLabel" | "id" | "border" | "validateEvent">;
|
|
64
64
|
$attrs: {
|
|
65
65
|
[x: string]: unknown;
|
|
66
66
|
};
|
|
@@ -240,7 +240,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
240
240
|
}>> & {
|
|
241
241
|
"onUpdate:modelValue"?: ((val: import("element-plus").CheckboxValueType) => any) | undefined;
|
|
242
242
|
onChange?: ((val: import("element-plus").CheckboxValueType) => any) | undefined;
|
|
243
|
-
}, "disabled" | "
|
|
243
|
+
}, "disabled" | "modelValue" | "label" | "value" | "indeterminate" | "checked" | "name" | "trueValue" | "falseValue" | "trueLabel" | "falseLabel" | "id" | "border" | "validateEvent"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
244
244
|
$slots: {
|
|
245
245
|
default?(_: {}): any;
|
|
246
246
|
};
|
|
@@ -25,7 +25,7 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
|
25
25
|
readonly title: string;
|
|
26
26
|
readonly icon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
|
|
27
27
|
readonly name?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | ((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName))[], unknown, unknown> | undefined;
|
|
28
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "
|
|
28
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "name" | "title">;
|
|
29
29
|
$attrs: {
|
|
30
30
|
[x: string]: unknown;
|
|
31
31
|
};
|
|
@@ -90,7 +90,7 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
|
90
90
|
__epPropKey: true;
|
|
91
91
|
};
|
|
92
92
|
readonly disabled: BooleanConstructor;
|
|
93
|
-
}>>, "disabled" | "
|
|
93
|
+
}>>, "disabled" | "name" | "title" | "isActive"> & import("vue").ShallowUnwrapRef<{
|
|
94
94
|
isActive: import("vue").ComputedRef<boolean | undefined>;
|
|
95
95
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
96
96
|
$slots: {
|
|
@@ -42,8 +42,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
|
42
42
|
readonly destroyOnClose: boolean;
|
|
43
43
|
readonly trapFocus: boolean;
|
|
44
44
|
}> & Omit<{
|
|
45
|
-
readonly title: string;
|
|
46
45
|
readonly modelValue: boolean;
|
|
46
|
+
readonly title: string;
|
|
47
47
|
readonly appendToBody: boolean;
|
|
48
48
|
readonly appendTo: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>;
|
|
49
49
|
readonly destroyOnClose: boolean;
|
|
@@ -78,7 +78,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
|
78
78
|
onClosed?: (() => any) | undefined | undefined;
|
|
79
79
|
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
80
80
|
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
81
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
81
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "title" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "showClose" | "ariaLevel">;
|
|
82
82
|
$attrs: {
|
|
83
83
|
[x: string]: unknown;
|
|
84
84
|
};
|
|
@@ -293,7 +293,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
|
293
293
|
onClosed?: (() => any) | undefined;
|
|
294
294
|
onOpenAutoFocus?: (() => any) | undefined;
|
|
295
295
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
296
|
-
}, "
|
|
296
|
+
}, "modelValue" | "title" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "showClose" | "ariaLevel" | "visible" | "dialogContentRef" | "resetPosition"> & import("vue").ShallowUnwrapRef<{
|
|
297
297
|
visible: import("vue").Ref<boolean>;
|
|
298
298
|
dialogContentRef: import("vue").Ref<any>;
|
|
299
299
|
resetPosition: () => void;
|
|
@@ -71,8 +71,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
71
71
|
readonly modalFade: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
72
72
|
}> & Omit<{
|
|
73
73
|
readonly size: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
74
|
-
readonly title: string;
|
|
75
74
|
readonly modelValue: boolean;
|
|
75
|
+
readonly title: string;
|
|
76
76
|
readonly appendToBody: boolean;
|
|
77
77
|
readonly appendTo: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>;
|
|
78
78
|
readonly destroyOnClose: boolean;
|
|
@@ -110,7 +110,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
110
110
|
onClosed?: (() => any) | undefined | undefined;
|
|
111
111
|
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
112
112
|
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
113
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "
|
|
113
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "modelValue" | "title" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "showClose" | "ariaLevel" | "withHeader" | "direction" | "modalFade">;
|
|
114
114
|
$attrs: {
|
|
115
115
|
[x: string]: unknown;
|
|
116
116
|
};
|
|
@@ -341,7 +341,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
341
341
|
onClosed?: (() => any) | undefined;
|
|
342
342
|
onOpenAutoFocus?: (() => any) | undefined;
|
|
343
343
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
344
|
-
}, "size" | "
|
|
344
|
+
}, "size" | "modelValue" | "title" | "appendToBody" | "appendTo" | "destroyOnClose" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "showClose" | "ariaLevel" | "withHeader" | "direction" | "modalFade" | "handleClose" | "afterEnter" | "afterLeave"> & import("vue").ShallowUnwrapRef<{
|
|
345
345
|
handleClose: () => void;
|
|
346
346
|
afterEnter: () => void;
|
|
347
347
|
afterLeave: () => void;
|
|
@@ -64,29 +64,29 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
64
64
|
readonly disabled: boolean;
|
|
65
65
|
readonly type: string;
|
|
66
66
|
readonly autofocus: boolean;
|
|
67
|
-
readonly clearable: boolean;
|
|
68
67
|
readonly modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
69
68
|
readonly tabindex: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
70
69
|
readonly validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
71
|
-
readonly readonly: boolean;
|
|
72
70
|
readonly autosize: import("element-plus").InputAutoSize;
|
|
73
71
|
readonly autocomplete: string;
|
|
72
|
+
readonly readonly: boolean;
|
|
73
|
+
readonly clearable: boolean;
|
|
74
74
|
readonly showPassword: boolean;
|
|
75
75
|
readonly showWordLimit: boolean;
|
|
76
76
|
readonly inputStyle: import("vue").StyleValue;
|
|
77
77
|
readonly rows: number;
|
|
78
78
|
readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
|
|
79
79
|
readonly resize?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown> | undefined;
|
|
80
|
-
readonly form?: string | undefined;
|
|
81
|
-
readonly prefixIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
|
|
82
|
-
readonly placeholder?: string | undefined;
|
|
83
|
-
readonly ariaLabel?: string | undefined;
|
|
84
80
|
readonly id?: string | undefined;
|
|
81
|
+
readonly ariaLabel?: string | undefined;
|
|
85
82
|
readonly maxlength?: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
86
83
|
readonly minlength?: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
87
84
|
readonly formatter?: Function | undefined;
|
|
88
85
|
readonly parser?: Function | undefined;
|
|
86
|
+
readonly placeholder?: string | undefined;
|
|
87
|
+
readonly form?: string | undefined;
|
|
89
88
|
readonly suffixIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
|
|
89
|
+
readonly prefixIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
|
|
90
90
|
readonly containerRole?: string | undefined;
|
|
91
91
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
92
92
|
onChange?: ((value: string) => any) | undefined | undefined;
|
|
@@ -100,7 +100,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
100
100
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
101
101
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
102
102
|
onClear?: (() => any) | undefined | undefined;
|
|
103
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "type" | "autofocus" | "
|
|
103
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "id" | "tabindex" | "validateEvent" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
|
|
104
104
|
$attrs: {
|
|
105
105
|
[x: string]: unknown;
|
|
106
106
|
};
|
|
@@ -388,7 +388,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
388
388
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
389
389
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
390
390
|
onClear?: (() => any) | undefined;
|
|
391
|
-
}, "disabled" | "type" | "autofocus" | "clear" | "ref" | "blur" | "focus" | "input" | "select" | "
|
|
391
|
+
}, "disabled" | "type" | "autofocus" | "clear" | "ref" | "blur" | "focus" | "input" | "select" | "modelValue" | "id" | "tabindex" | "validateEvent" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows" | "textarea" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import("vue").ShallowUnwrapRef<{
|
|
392
392
|
input: import("vue").ShallowRef<HTMLInputElement | undefined>;
|
|
393
393
|
textarea: import("vue").ShallowRef<HTMLTextAreaElement | undefined>;
|
|
394
394
|
ref: import("vue").ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -1 +1,7 @@
|
|
|
1
1
|
export { default as PrizmButton } from './PrizmButton.vue';
|
|
2
|
+
export { default as PrizmCheckbox } from './PrizmCheckbox/PrizmCheckbox.vue';
|
|
3
|
+
export { default as PrizmCheckboxGroup } from './PrizmCheckbox/PrizmCheckboxGroup.vue';
|
|
4
|
+
export { default as PrizmTag } from './PrizmTag.vue';
|
|
5
|
+
export { default as PrizmInput } from './PrizmInput.vue';
|
|
6
|
+
export { default as PrizmIcon } from './PrizmIcon.vue';
|
|
7
|
+
export { default as PrizmDatePicker } from './PrizmDatePicker.vue';
|