@ecan-bi/datav 1.2.41 → 1.2.43
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 +3293 -3164
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +26 -26
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/date-picker/DatePicker.vue.d.ts +33 -8
- package/types/control/date-picker/index.d.ts +33 -8
- package/types/control/radio/Radio.vue.d.ts +1 -2
- package/types/control/radio/index.d.ts +1 -2
- package/types/control/range-picker/RangePicker.vue.d.ts +74 -16
- package/types/control/range-picker/index.d.ts +74 -16
- package/types/control/range-picker/props.d.ts +5 -0
- package/types/table/table/Table.vue.d.ts +8 -0
- package/types/table/table/index.d.ts +8 -0
- package/types/table/table/props.d.ts +5 -0
|
@@ -11,6 +11,7 @@ export interface RangePickerProps extends Props {
|
|
|
11
11
|
interval: number;
|
|
12
12
|
intervalUnit: ManipulateType;
|
|
13
13
|
operate: DateOperate;
|
|
14
|
+
associated: string;
|
|
14
15
|
}
|
|
15
16
|
export declare const rangePickerProps: RangePickerProps;
|
|
16
17
|
export declare const rangePickerComponentProps: {
|
|
@@ -54,6 +55,10 @@ export declare const rangePickerComponentProps: {
|
|
|
54
55
|
type?: import("vue").PropType<DateOperate>;
|
|
55
56
|
default?: DateOperate;
|
|
56
57
|
};
|
|
58
|
+
associated: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
57
62
|
id: {
|
|
58
63
|
type?: import("vue").PropType<string>;
|
|
59
64
|
default?: string;
|
|
@@ -131,6 +131,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
131
131
|
type?: import("vue").PropType<string>;
|
|
132
132
|
default?: string;
|
|
133
133
|
};
|
|
134
|
+
isGroupTable: {
|
|
135
|
+
type?: import("vue").PropType<boolean>;
|
|
136
|
+
default?: boolean;
|
|
137
|
+
};
|
|
134
138
|
id: {
|
|
135
139
|
type?: import("vue").PropType<string>;
|
|
136
140
|
default?: string;
|
|
@@ -403,6 +407,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
403
407
|
type?: import("vue").PropType<string>;
|
|
404
408
|
default?: string;
|
|
405
409
|
};
|
|
410
|
+
isGroupTable: {
|
|
411
|
+
type?: import("vue").PropType<boolean>;
|
|
412
|
+
default?: boolean;
|
|
413
|
+
};
|
|
406
414
|
id: {
|
|
407
415
|
type?: import("vue").PropType<string>;
|
|
408
416
|
default?: string;
|
|
@@ -131,6 +131,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
131
131
|
type?: import("vue").PropType<string>;
|
|
132
132
|
default?: string;
|
|
133
133
|
};
|
|
134
|
+
isGroupTable: {
|
|
135
|
+
type?: import("vue").PropType<boolean>;
|
|
136
|
+
default?: boolean;
|
|
137
|
+
};
|
|
134
138
|
id: {
|
|
135
139
|
type?: import("vue").PropType<string>;
|
|
136
140
|
default?: string;
|
|
@@ -403,6 +407,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
403
407
|
type?: import("vue").PropType<string>;
|
|
404
408
|
default?: string;
|
|
405
409
|
};
|
|
410
|
+
isGroupTable: {
|
|
411
|
+
type?: import("vue").PropType<boolean>;
|
|
412
|
+
default?: boolean;
|
|
413
|
+
};
|
|
406
414
|
id: {
|
|
407
415
|
type?: import("vue").PropType<string>;
|
|
408
416
|
default?: string;
|
|
@@ -37,6 +37,7 @@ export interface TableProps extends Props {
|
|
|
37
37
|
headerBackgroundColor: string;
|
|
38
38
|
stripedShow: boolean;
|
|
39
39
|
stripedColor: string;
|
|
40
|
+
isGroupTable: boolean;
|
|
40
41
|
}
|
|
41
42
|
export declare const tableProps: TableProps;
|
|
42
43
|
export declare const tableComponentProps: {
|
|
@@ -172,6 +173,10 @@ export declare const tableComponentProps: {
|
|
|
172
173
|
type?: import("vue").PropType<string>;
|
|
173
174
|
default?: string;
|
|
174
175
|
};
|
|
176
|
+
isGroupTable: {
|
|
177
|
+
type?: import("vue").PropType<boolean>;
|
|
178
|
+
default?: boolean;
|
|
179
|
+
};
|
|
175
180
|
id: {
|
|
176
181
|
type?: import("vue").PropType<string>;
|
|
177
182
|
default?: string;
|