@ecan-bi/datav 1.5.16 → 1.5.18
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 +1103 -1067
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +15 -15
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +16 -0
- package/types/container/border/index.d.ts +16 -0
- package/types/container/border/props.d.ts +10 -0
- 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
|
@@ -87,6 +87,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
87
87
|
type?: import("vue").PropType<boolean>;
|
|
88
88
|
default?: boolean;
|
|
89
89
|
};
|
|
90
|
+
isFlowGrid: {
|
|
91
|
+
type?: import("vue").PropType<boolean>;
|
|
92
|
+
default?: boolean;
|
|
93
|
+
};
|
|
94
|
+
gridInterval: {
|
|
95
|
+
type?: import("vue").PropType<number>;
|
|
96
|
+
default?: number;
|
|
97
|
+
};
|
|
90
98
|
id: {
|
|
91
99
|
type?: import("vue").PropType<string>;
|
|
92
100
|
default?: string;
|
|
@@ -329,6 +337,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
329
337
|
type?: import("vue").PropType<boolean>;
|
|
330
338
|
default?: boolean;
|
|
331
339
|
};
|
|
340
|
+
isFlowGrid: {
|
|
341
|
+
type?: import("vue").PropType<boolean>;
|
|
342
|
+
default?: boolean;
|
|
343
|
+
};
|
|
344
|
+
gridInterval: {
|
|
345
|
+
type?: import("vue").PropType<number>;
|
|
346
|
+
default?: number;
|
|
347
|
+
};
|
|
332
348
|
id: {
|
|
333
349
|
type?: import("vue").PropType<string>;
|
|
334
350
|
default?: string;
|
|
@@ -87,6 +87,14 @@ export declare const EcanBorder: import('../../utils/withInstall').SFCWithInstal
|
|
|
87
87
|
type?: import("vue").PropType<boolean>;
|
|
88
88
|
default?: boolean;
|
|
89
89
|
};
|
|
90
|
+
isFlowGrid: {
|
|
91
|
+
type?: import("vue").PropType<boolean>;
|
|
92
|
+
default?: boolean;
|
|
93
|
+
};
|
|
94
|
+
gridInterval: {
|
|
95
|
+
type?: import("vue").PropType<number>;
|
|
96
|
+
default?: number;
|
|
97
|
+
};
|
|
90
98
|
id: {
|
|
91
99
|
type?: import("vue").PropType<string>;
|
|
92
100
|
default?: string;
|
|
@@ -329,6 +337,14 @@ export declare const EcanBorder: import('../../utils/withInstall').SFCWithInstal
|
|
|
329
337
|
type?: import("vue").PropType<boolean>;
|
|
330
338
|
default?: boolean;
|
|
331
339
|
};
|
|
340
|
+
isFlowGrid: {
|
|
341
|
+
type?: import("vue").PropType<boolean>;
|
|
342
|
+
default?: boolean;
|
|
343
|
+
};
|
|
344
|
+
gridInterval: {
|
|
345
|
+
type?: import("vue").PropType<number>;
|
|
346
|
+
default?: number;
|
|
347
|
+
};
|
|
332
348
|
id: {
|
|
333
349
|
type?: import("vue").PropType<string>;
|
|
334
350
|
default?: string;
|
|
@@ -23,6 +23,8 @@ export interface BorderProps extends Props {
|
|
|
23
23
|
titleMode: 'type-1' | 'type-2';
|
|
24
24
|
isTransparent: boolean;
|
|
25
25
|
isFixed: boolean;
|
|
26
|
+
isFlowGrid: boolean;
|
|
27
|
+
gridInterval: number;
|
|
26
28
|
}
|
|
27
29
|
export declare const borderProps: BorderProps;
|
|
28
30
|
export declare const borderComponentProps: {
|
|
@@ -114,6 +116,14 @@ export declare const borderComponentProps: {
|
|
|
114
116
|
type?: import("vue").PropType<boolean>;
|
|
115
117
|
default?: boolean;
|
|
116
118
|
};
|
|
119
|
+
isFlowGrid: {
|
|
120
|
+
type?: import("vue").PropType<boolean>;
|
|
121
|
+
default?: boolean;
|
|
122
|
+
};
|
|
123
|
+
gridInterval: {
|
|
124
|
+
type?: import("vue").PropType<number>;
|
|
125
|
+
default?: number;
|
|
126
|
+
};
|
|
117
127
|
id: {
|
|
118
128
|
type?: import("vue").PropType<string>;
|
|
119
129
|
default?: string;
|
|
@@ -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;
|