@ecan-bi/datav 1.5.15 → 1.5.17
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 +4075 -4013
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +31 -31
- 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 +20 -0
- package/types/control/select/index.d.ts +20 -0
- package/types/control/select/props.d.ts +10 -0
package/package.json
CHANGED
|
@@ -59,6 +59,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
59
59
|
type?: import("vue").PropType<string>;
|
|
60
60
|
default?: string;
|
|
61
61
|
};
|
|
62
|
+
hasAllCheck: {
|
|
63
|
+
type?: import("vue").PropType<boolean>;
|
|
64
|
+
default?: boolean;
|
|
65
|
+
};
|
|
66
|
+
minTagCount: {
|
|
67
|
+
type?: import("vue").PropType<number>;
|
|
68
|
+
default?: number;
|
|
69
|
+
};
|
|
62
70
|
id: {
|
|
63
71
|
type?: import("vue").PropType<string>;
|
|
64
72
|
default?: string;
|
|
@@ -224,6 +232,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
224
232
|
mobileValue: import("vue").ComputedRef<string>;
|
|
225
233
|
openPicker: () => void;
|
|
226
234
|
mobileSelectValue: import("vue").Ref<any[]>;
|
|
235
|
+
isCheckAll: import("vue").Ref<boolean>;
|
|
236
|
+
indeterminate: import("vue").Ref<boolean>;
|
|
237
|
+
onOptionAll: (e: any) => void;
|
|
238
|
+
onDeselect: (value: any, option: any) => void;
|
|
227
239
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
228
240
|
data: {
|
|
229
241
|
type?: import("vue").PropType<import("./props").SelectOptions>;
|
|
@@ -285,6 +297,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
285
297
|
type?: import("vue").PropType<string>;
|
|
286
298
|
default?: string;
|
|
287
299
|
};
|
|
300
|
+
hasAllCheck: {
|
|
301
|
+
type?: import("vue").PropType<boolean>;
|
|
302
|
+
default?: boolean;
|
|
303
|
+
};
|
|
304
|
+
minTagCount: {
|
|
305
|
+
type?: import("vue").PropType<number>;
|
|
306
|
+
default?: number;
|
|
307
|
+
};
|
|
288
308
|
id: {
|
|
289
309
|
type?: import("vue").PropType<string>;
|
|
290
310
|
default?: string;
|
|
@@ -59,6 +59,14 @@ export declare const EcanSelect: import('../../utils/withInstall').SFCWithInstal
|
|
|
59
59
|
type?: import("vue").PropType<string>;
|
|
60
60
|
default?: string;
|
|
61
61
|
};
|
|
62
|
+
hasAllCheck: {
|
|
63
|
+
type?: import("vue").PropType<boolean>;
|
|
64
|
+
default?: boolean;
|
|
65
|
+
};
|
|
66
|
+
minTagCount: {
|
|
67
|
+
type?: import("vue").PropType<number>;
|
|
68
|
+
default?: number;
|
|
69
|
+
};
|
|
62
70
|
id: {
|
|
63
71
|
type?: import("vue").PropType<string>;
|
|
64
72
|
default?: string;
|
|
@@ -224,6 +232,10 @@ export declare const EcanSelect: import('../../utils/withInstall').SFCWithInstal
|
|
|
224
232
|
mobileValue: import("vue").ComputedRef<string>;
|
|
225
233
|
openPicker: () => void;
|
|
226
234
|
mobileSelectValue: import("vue").Ref<any[]>;
|
|
235
|
+
isCheckAll: import("vue").Ref<boolean>;
|
|
236
|
+
indeterminate: import("vue").Ref<boolean>;
|
|
237
|
+
onOptionAll: (e: any) => void;
|
|
238
|
+
onDeselect: (value: any, option: any) => void;
|
|
227
239
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
228
240
|
data: {
|
|
229
241
|
type?: import("vue").PropType<import("./props").SelectOptions>;
|
|
@@ -285,6 +297,14 @@ export declare const EcanSelect: import('../../utils/withInstall').SFCWithInstal
|
|
|
285
297
|
type?: import("vue").PropType<string>;
|
|
286
298
|
default?: string;
|
|
287
299
|
};
|
|
300
|
+
hasAllCheck: {
|
|
301
|
+
type?: import("vue").PropType<boolean>;
|
|
302
|
+
default?: boolean;
|
|
303
|
+
};
|
|
304
|
+
minTagCount: {
|
|
305
|
+
type?: import("vue").PropType<number>;
|
|
306
|
+
default?: number;
|
|
307
|
+
};
|
|
288
308
|
id: {
|
|
289
309
|
type?: import("vue").PropType<string>;
|
|
290
310
|
default?: string;
|
|
@@ -26,6 +26,8 @@ export interface SelectProps extends Props {
|
|
|
26
26
|
valueType: 'label' | 'value';
|
|
27
27
|
isAllowClear: boolean;
|
|
28
28
|
optionFontSize: string;
|
|
29
|
+
hasAllCheck: boolean;
|
|
30
|
+
minTagCount: number;
|
|
29
31
|
}
|
|
30
32
|
export declare const selectProps: SelectProps;
|
|
31
33
|
export declare const selectComponentProps: {
|
|
@@ -89,6 +91,14 @@ export declare const selectComponentProps: {
|
|
|
89
91
|
type?: import("vue").PropType<string>;
|
|
90
92
|
default?: string;
|
|
91
93
|
};
|
|
94
|
+
hasAllCheck: {
|
|
95
|
+
type?: import("vue").PropType<boolean>;
|
|
96
|
+
default?: boolean;
|
|
97
|
+
};
|
|
98
|
+
minTagCount: {
|
|
99
|
+
type?: import("vue").PropType<number>;
|
|
100
|
+
default?: number;
|
|
101
|
+
};
|
|
92
102
|
id: {
|
|
93
103
|
type?: import("vue").PropType<string>;
|
|
94
104
|
default?: string;
|