@ecan-bi/datav 1.5.20 → 1.5.21
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/index.es.js +348 -345
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +10 -10
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/select/Select.vue.d.ts +8 -0
- package/types/control/select/index.d.ts +8 -0
- package/types/control/select/props.d.ts +5 -0
package/package.json
CHANGED
|
@@ -39,6 +39,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
39
39
|
type?: import("vue").PropType<boolean>;
|
|
40
40
|
default?: boolean;
|
|
41
41
|
};
|
|
42
|
+
selectAllOption: {
|
|
43
|
+
type?: import("vue").PropType<boolean>;
|
|
44
|
+
default?: boolean;
|
|
45
|
+
};
|
|
42
46
|
graphicConfig: {
|
|
43
47
|
type?: import("vue").PropType<{
|
|
44
48
|
[key: string]: any;
|
|
@@ -285,6 +289,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
285
289
|
type?: import("vue").PropType<boolean>;
|
|
286
290
|
default?: boolean;
|
|
287
291
|
};
|
|
292
|
+
selectAllOption: {
|
|
293
|
+
type?: import("vue").PropType<boolean>;
|
|
294
|
+
default?: boolean;
|
|
295
|
+
};
|
|
288
296
|
graphicConfig: {
|
|
289
297
|
type?: import("vue").PropType<{
|
|
290
298
|
[key: string]: any;
|
|
@@ -39,6 +39,10 @@ export declare const EcanSelect: import('../../utils/withInstall').SFCWithInstal
|
|
|
39
39
|
type?: import("vue").PropType<boolean>;
|
|
40
40
|
default?: boolean;
|
|
41
41
|
};
|
|
42
|
+
selectAllOption: {
|
|
43
|
+
type?: import("vue").PropType<boolean>;
|
|
44
|
+
default?: boolean;
|
|
45
|
+
};
|
|
42
46
|
graphicConfig: {
|
|
43
47
|
type?: import("vue").PropType<{
|
|
44
48
|
[key: string]: any;
|
|
@@ -285,6 +289,10 @@ export declare const EcanSelect: import('../../utils/withInstall').SFCWithInstal
|
|
|
285
289
|
type?: import("vue").PropType<boolean>;
|
|
286
290
|
default?: boolean;
|
|
287
291
|
};
|
|
292
|
+
selectAllOption: {
|
|
293
|
+
type?: import("vue").PropType<boolean>;
|
|
294
|
+
default?: boolean;
|
|
295
|
+
};
|
|
288
296
|
graphicConfig: {
|
|
289
297
|
type?: import("vue").PropType<{
|
|
290
298
|
[key: string]: any;
|
|
@@ -20,6 +20,7 @@ export interface SelectProps extends Props {
|
|
|
20
20
|
autoClearSearchValue: boolean;
|
|
21
21
|
placeholder: string;
|
|
22
22
|
selectFirstOption: boolean;
|
|
23
|
+
selectAllOption: boolean;
|
|
23
24
|
graphicConfig: {
|
|
24
25
|
[key: string]: any;
|
|
25
26
|
};
|
|
@@ -71,6 +72,10 @@ export declare const selectComponentProps: {
|
|
|
71
72
|
type?: import("vue").PropType<boolean>;
|
|
72
73
|
default?: boolean;
|
|
73
74
|
};
|
|
75
|
+
selectAllOption: {
|
|
76
|
+
type?: import("vue").PropType<boolean>;
|
|
77
|
+
default?: boolean;
|
|
78
|
+
};
|
|
74
79
|
graphicConfig: {
|
|
75
80
|
type?: import("vue").PropType<{
|
|
76
81
|
[key: string]: any;
|