erp-plus 1.0.19 → 1.0.20
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/erp-plus.css +1 -1
- package/dist/erp-plus.es.js +408 -389
- package/dist/erp-plus.umd.js +2 -1
- package/dist/index.d.ts +0 -1
- package/dist/packages/Dialog/Dialog.vue.d.ts +2 -2
- package/dist/packages/SvgIcon/index.vue.d.ts +10 -1
- package/dist/types/index.d.ts +0 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -271,9 +271,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
271
271
|
}>, {
|
|
272
272
|
size: string;
|
|
273
273
|
title: string;
|
|
274
|
+
center: boolean;
|
|
274
275
|
top: string;
|
|
275
|
-
modelValue: boolean;
|
|
276
276
|
width: string | number;
|
|
277
|
+
modelValue: boolean;
|
|
277
278
|
appendTo: string;
|
|
278
279
|
fullscreen: boolean;
|
|
279
280
|
modal: boolean;
|
|
@@ -292,7 +293,6 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
292
293
|
beforeClose: (done: any) => void;
|
|
293
294
|
draggable: boolean;
|
|
294
295
|
overflow: boolean;
|
|
295
|
-
center: boolean;
|
|
296
296
|
alignCenter: boolean;
|
|
297
297
|
destroyOnClose: boolean;
|
|
298
298
|
closeIcon: () => VNode;
|
|
@@ -12,6 +12,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12
12
|
type: StringConstructor;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
|
+
size: {
|
|
16
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
15
19
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
16
20
|
iconClass: {
|
|
17
21
|
type: StringConstructor;
|
|
@@ -25,8 +29,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
25
29
|
type: StringConstructor;
|
|
26
30
|
default: string;
|
|
27
31
|
};
|
|
32
|
+
size: {
|
|
33
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
28
36
|
}>> & Readonly<{}>, {
|
|
37
|
+
size: string | number;
|
|
29
38
|
color: string;
|
|
30
39
|
className: string;
|
|
31
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
|
40
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLElement>;
|
|
32
41
|
export default _default;
|
package/dist/types/index.d.ts
CHANGED