cnhis-design-vue 3.4.0-beta.46 → 3.4.0-beta.50
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/es/components/base-search/index.d.ts +34 -0
- package/es/components/base-search/src/index.vue.d.ts +34 -0
- package/es/components/base-search/src/index.vue2.js +9 -1
- package/es/components/classification/index.d.ts +36 -9
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +36 -9
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +36 -9
- package/es/components/classification/src/index.vue.d.ts +36 -9
- package/es/components/date-picker/index.d.ts +12 -3
- package/es/components/date-picker/src/DatePicker.vue.d.ts +12 -3
- package/es/components/date-picker/src/DatePicker.vue2.js +4 -1
- package/es/components/fabric-chart/src/hooks/electrocardiogram/useElectrocardiogram.d.ts +1 -1
- package/es/components/fabric-chart/src/hooks/electrocardiogram/useElectrocardiogram.js +10 -9
- package/es/components/field-set/src/FieldColor.vue.d.ts +25 -7
- package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
- package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
- package/es/components/field-set/src/components/condition.vue.d.ts +12 -3
- package/es/components/field-set/src/components/edit-dialog.vue.d.ts +24 -6
- package/es/components/field-set/src/components/edit-filter.vue.d.ts +12 -3
- package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
- package/es/components/iho-chat/index.d.ts +24 -6
- package/es/components/iho-chat/src/Index.vue.d.ts +24 -6
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +12 -3
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +12 -3
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +12 -3
- package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +12 -3
- package/es/components/iho-table/src/plugins/highLightSetPlugin.js +7 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +12 -3
- package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.d.ts +12 -3
- package/es/components/table-filter/src/components/bi-filter/components/Date.vue.d.ts +12 -3
- package/es/components/table-filter/src/components/bi-filter/components/index.d.ts +12 -3
- package/es/components/table-filter/src/components/bi-filter/index.vue.d.ts +12 -3
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +24 -6
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +12 -3
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +12 -3
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +24 -6
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +24 -6
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +12 -3
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +14 -3
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue2.js +10 -2
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +12 -3
- package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +14 -3
- package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue2.js +10 -2
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +52 -12
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +52 -12
- package/es/components/table-filter/src/constants/index.d.ts +1 -0
- package/es/components/table-filter/src/constants/index.js +4 -1
- package/es/shared/components/InputNumberSlash/InputNumberSlash.d.ts +15 -0
- package/es/shared/components/InputNumberSlash/InputNumberSlash.js +24 -10
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
|
@@ -966,10 +966,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
966
966
|
isDateDisabled: {
|
|
967
967
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
968
968
|
};
|
|
969
|
+
propKey: {
|
|
970
|
+
type: StringConstructor;
|
|
971
|
+
};
|
|
969
972
|
shortcutListenerConfig: {
|
|
970
973
|
type: PropType<{
|
|
971
974
|
enable: boolean;
|
|
972
|
-
callback: (
|
|
975
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
973
976
|
}>;
|
|
974
977
|
};
|
|
975
978
|
}>, {
|
|
@@ -1011,10 +1014,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1011
1014
|
isDateDisabled: {
|
|
1012
1015
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
1013
1016
|
};
|
|
1017
|
+
propKey: {
|
|
1018
|
+
type: StringConstructor;
|
|
1019
|
+
};
|
|
1014
1020
|
shortcutListenerConfig: {
|
|
1015
1021
|
type: PropType<{
|
|
1016
1022
|
enable: boolean;
|
|
1017
|
-
callback: (
|
|
1023
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
1018
1024
|
}>;
|
|
1019
1025
|
};
|
|
1020
1026
|
}>> & Readonly<{
|
|
@@ -1077,10 +1083,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1077
1083
|
isDateDisabled: {
|
|
1078
1084
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
1079
1085
|
};
|
|
1086
|
+
propKey: {
|
|
1087
|
+
type: StringConstructor;
|
|
1088
|
+
};
|
|
1080
1089
|
shortcutListenerConfig: {
|
|
1081
1090
|
type: PropType<{
|
|
1082
1091
|
enable: boolean;
|
|
1083
|
-
callback: (
|
|
1092
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
1084
1093
|
}>;
|
|
1085
1094
|
};
|
|
1086
1095
|
}>> & Readonly<{
|
|
@@ -1838,10 +1847,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1838
1847
|
isDateDisabled: {
|
|
1839
1848
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
1840
1849
|
};
|
|
1850
|
+
propKey: {
|
|
1851
|
+
type: StringConstructor;
|
|
1852
|
+
};
|
|
1841
1853
|
shortcutListenerConfig: {
|
|
1842
1854
|
type: PropType<{
|
|
1843
1855
|
enable: boolean;
|
|
1844
|
-
callback: (
|
|
1856
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
1845
1857
|
}>;
|
|
1846
1858
|
};
|
|
1847
1859
|
}>, {
|
|
@@ -1883,10 +1895,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1883
1895
|
isDateDisabled: {
|
|
1884
1896
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
1885
1897
|
};
|
|
1898
|
+
propKey: {
|
|
1899
|
+
type: StringConstructor;
|
|
1900
|
+
};
|
|
1886
1901
|
shortcutListenerConfig: {
|
|
1887
1902
|
type: PropType<{
|
|
1888
1903
|
enable: boolean;
|
|
1889
|
-
callback: (
|
|
1904
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
1890
1905
|
}>;
|
|
1891
1906
|
};
|
|
1892
1907
|
}>> & Readonly<{
|
|
@@ -1949,10 +1964,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1949
1964
|
isDateDisabled: {
|
|
1950
1965
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
1951
1966
|
};
|
|
1967
|
+
propKey: {
|
|
1968
|
+
type: StringConstructor;
|
|
1969
|
+
};
|
|
1952
1970
|
shortcutListenerConfig: {
|
|
1953
1971
|
type: PropType<{
|
|
1954
1972
|
enable: boolean;
|
|
1955
|
-
callback: (
|
|
1973
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
1956
1974
|
}>;
|
|
1957
1975
|
};
|
|
1958
1976
|
}>> & Readonly<{
|
|
@@ -2557,10 +2575,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2557
2575
|
isDateDisabled: {
|
|
2558
2576
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
2559
2577
|
};
|
|
2578
|
+
propKey: {
|
|
2579
|
+
type: StringConstructor;
|
|
2580
|
+
};
|
|
2560
2581
|
shortcutListenerConfig: {
|
|
2561
2582
|
type: PropType<{
|
|
2562
2583
|
enable: boolean;
|
|
2563
|
-
callback: (
|
|
2584
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
2564
2585
|
}>;
|
|
2565
2586
|
};
|
|
2566
2587
|
}>, {
|
|
@@ -2602,10 +2623,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2602
2623
|
isDateDisabled: {
|
|
2603
2624
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
2604
2625
|
};
|
|
2626
|
+
propKey: {
|
|
2627
|
+
type: StringConstructor;
|
|
2628
|
+
};
|
|
2605
2629
|
shortcutListenerConfig: {
|
|
2606
2630
|
type: PropType<{
|
|
2607
2631
|
enable: boolean;
|
|
2608
|
-
callback: (
|
|
2632
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
2609
2633
|
}>;
|
|
2610
2634
|
};
|
|
2611
2635
|
}>> & Readonly<{
|
|
@@ -2668,10 +2692,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2668
2692
|
isDateDisabled: {
|
|
2669
2693
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
2670
2694
|
};
|
|
2695
|
+
propKey: {
|
|
2696
|
+
type: StringConstructor;
|
|
2697
|
+
};
|
|
2671
2698
|
shortcutListenerConfig: {
|
|
2672
2699
|
type: PropType<{
|
|
2673
2700
|
enable: boolean;
|
|
2674
|
-
callback: (
|
|
2701
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
2675
2702
|
}>;
|
|
2676
2703
|
};
|
|
2677
2704
|
}>> & Readonly<{
|
|
@@ -34,10 +34,13 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<import("v
|
|
|
34
34
|
isDateDisabled: {
|
|
35
35
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
|
36
36
|
};
|
|
37
|
+
propKey: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
};
|
|
37
40
|
shortcutListenerConfig: {
|
|
38
41
|
type: import("vue").PropType<{
|
|
39
42
|
enable: boolean;
|
|
40
|
-
callback: (
|
|
43
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
41
44
|
}>;
|
|
42
45
|
};
|
|
43
46
|
}>, {
|
|
@@ -79,10 +82,13 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<import("v
|
|
|
79
82
|
isDateDisabled: {
|
|
80
83
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
|
81
84
|
};
|
|
85
|
+
propKey: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
};
|
|
82
88
|
shortcutListenerConfig: {
|
|
83
89
|
type: import("vue").PropType<{
|
|
84
90
|
enable: boolean;
|
|
85
|
-
callback: (
|
|
91
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
86
92
|
}>;
|
|
87
93
|
};
|
|
88
94
|
}>> & Readonly<{
|
|
@@ -145,10 +151,13 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<import("v
|
|
|
145
151
|
isDateDisabled: {
|
|
146
152
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
|
147
153
|
};
|
|
154
|
+
propKey: {
|
|
155
|
+
type: StringConstructor;
|
|
156
|
+
};
|
|
148
157
|
shortcutListenerConfig: {
|
|
149
158
|
type: import("vue").PropType<{
|
|
150
159
|
enable: boolean;
|
|
151
|
-
callback: (
|
|
160
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
152
161
|
}>;
|
|
153
162
|
};
|
|
154
163
|
}>> & Readonly<{
|
|
@@ -36,10 +36,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
36
36
|
isDateDisabled: {
|
|
37
37
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
38
38
|
};
|
|
39
|
+
propKey: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
};
|
|
39
42
|
shortcutListenerConfig: {
|
|
40
43
|
type: PropType<{
|
|
41
44
|
enable: boolean;
|
|
42
|
-
callback: (
|
|
45
|
+
callback: (value: string, propKey?: string) => void;
|
|
43
46
|
}>;
|
|
44
47
|
};
|
|
45
48
|
}>, {
|
|
@@ -81,10 +84,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
81
84
|
isDateDisabled: {
|
|
82
85
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
83
86
|
};
|
|
87
|
+
propKey: {
|
|
88
|
+
type: StringConstructor;
|
|
89
|
+
};
|
|
84
90
|
shortcutListenerConfig: {
|
|
85
91
|
type: PropType<{
|
|
86
92
|
enable: boolean;
|
|
87
|
-
callback: (
|
|
93
|
+
callback: (value: string, propKey?: string) => void;
|
|
88
94
|
}>;
|
|
89
95
|
};
|
|
90
96
|
}>> & Readonly<{
|
|
@@ -147,10 +153,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
147
153
|
isDateDisabled: {
|
|
148
154
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
149
155
|
};
|
|
156
|
+
propKey: {
|
|
157
|
+
type: StringConstructor;
|
|
158
|
+
};
|
|
150
159
|
shortcutListenerConfig: {
|
|
151
160
|
type: PropType<{
|
|
152
161
|
enable: boolean;
|
|
153
|
-
callback: (
|
|
162
|
+
callback: (value: string, propKey?: string) => void;
|
|
154
163
|
}>;
|
|
155
164
|
};
|
|
156
165
|
}>> & Readonly<{
|
|
@@ -49,6 +49,9 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
49
49
|
isDateDisabled: {
|
|
50
50
|
type: Function
|
|
51
51
|
},
|
|
52
|
+
propKey: {
|
|
53
|
+
type: String
|
|
54
|
+
},
|
|
52
55
|
shortcutListenerConfig: {
|
|
53
56
|
type: Object
|
|
54
57
|
}
|
|
@@ -130,7 +133,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
130
133
|
if (!actionsPanelEl)
|
|
131
134
|
return;
|
|
132
135
|
if (((_e = target.parentElement) == null ? void 0 : _e.className.includes("n-button--default-type")) && actionsPanelEl.contains(target)) {
|
|
133
|
-
(_f = props.shortcutListenerConfig) == null ? void 0 : _f.callback(target.innerText);
|
|
136
|
+
(_f = props.shortcutListenerConfig) == null ? void 0 : _f.callback(target.innerText, props.propKey);
|
|
134
137
|
}
|
|
135
138
|
}
|
|
136
139
|
onMounted(() => {
|
|
@@ -2,5 +2,5 @@ import { AnyObject } from '../../../../../shared/types';
|
|
|
2
2
|
import { fabric } from '../../../../../shared/utils/fabricjs';
|
|
3
3
|
import { type Ref } from 'vue';
|
|
4
4
|
export declare function useElectrocardiogram(canvas: Ref<fabric.Canvas>, propItems: AnyObject, flag: Ref<boolean>): {
|
|
5
|
-
updatePolyline: (
|
|
5
|
+
updatePolyline: (percent: number) => void;
|
|
6
6
|
};
|
|
@@ -59,17 +59,20 @@ function useElectrocardiogram(canvas, propItems, flag) {
|
|
|
59
59
|
drawPolyLine();
|
|
60
60
|
}
|
|
61
61
|
function getShowLength(list = []) {
|
|
62
|
-
const
|
|
62
|
+
const overflowIsScroll = config.overflow === "scroll";
|
|
63
|
+
const showLength = ~~(list.length / columnNumber / (overflowIsScroll ? 2 : 1));
|
|
63
64
|
return showLength * (config.mainXCellValue / ECG.DEFAULTMAINXCELLVALUE);
|
|
64
65
|
}
|
|
65
66
|
function drawPolyLine(startIdx = 0) {
|
|
67
|
+
const overflowIsScroll = config.overflow === "scroll";
|
|
66
68
|
dataList.forEach((lineItem, idx) => {
|
|
67
|
-
if (idx ===
|
|
69
|
+
if (idx === ECG.MAXLINENUMBER - 1 && arguments.length && !overflowIsScroll)
|
|
68
70
|
return;
|
|
69
71
|
const { x, y, rowIdx, limitX } = lineItem.origin;
|
|
70
|
-
const
|
|
72
|
+
const lineLength = lineItem.data.length;
|
|
73
|
+
const showLength = idx < ECG.MAXLINENUMBER - 1 ? getShowLength(lineItem.data) : lineLength;
|
|
71
74
|
const points = lineItem.data.reduce((res, value, _idx) => {
|
|
72
|
-
let _res =
|
|
75
|
+
let _res = _idx >= startIdx && _idx <= startIdx + showLength ? [{ x: computedX(res.length + 1), y: computedY(-+value) + y }] : [];
|
|
73
76
|
if (_res.length) {
|
|
74
77
|
if (idx < ECG.MAXLINENUMBER - 1 && _res[0].x > limitX) {
|
|
75
78
|
_res = [];
|
|
@@ -103,7 +106,7 @@ function useElectrocardiogram(canvas, propItems, flag) {
|
|
|
103
106
|
beforeEvent: () => flag.value && Promise.reject()
|
|
104
107
|
});
|
|
105
108
|
polyline.startIdx = startIdx;
|
|
106
|
-
if (idx < dataList.length - 1) {
|
|
109
|
+
if (idx < dataList.length - 1 || overflowIsScroll) {
|
|
107
110
|
gridPoints.add(polyline);
|
|
108
111
|
} else {
|
|
109
112
|
fixedPointsCache.add(polyline);
|
|
@@ -184,14 +187,12 @@ function useElectrocardiogram(canvas, propItems, flag) {
|
|
|
184
187
|
});
|
|
185
188
|
canvas.value.add(...lines);
|
|
186
189
|
}
|
|
187
|
-
const updatePolyline = useThrottleFn((
|
|
190
|
+
const updatePolyline = useThrottleFn((percent) => {
|
|
188
191
|
const showLength = getShowLength(dataList[dataList.length - 1].data);
|
|
189
192
|
if (showLength === dataList[0].data.length)
|
|
190
193
|
return;
|
|
191
194
|
const totalLength = dataList[dataList.length - 1].data.length;
|
|
192
|
-
const
|
|
193
|
-
const _startIdx = centerIdx - showLength / 2;
|
|
194
|
-
const startIdx = _startIdx + showLength > totalLength ? totalLength - showLength : Math.max(0, _startIdx);
|
|
195
|
+
const startIdx = ~~(percent * totalLength);
|
|
195
196
|
fabric.util.requestAnimFrame(() => {
|
|
196
197
|
if (gridPoints.size) {
|
|
197
198
|
const [firstPoint] = [...gridPoints];
|
|
@@ -553,9 +553,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
553
553
|
hide: boolean;
|
|
554
554
|
}>;
|
|
555
555
|
draggable: boolean;
|
|
556
|
+
isHighlightRow: boolean;
|
|
556
557
|
idx: number;
|
|
557
558
|
isHighlight: boolean;
|
|
558
|
-
isHighlightRow: boolean;
|
|
559
559
|
isFieldSet: boolean;
|
|
560
560
|
fieldDescribeMode: "column" | "tooltip";
|
|
561
561
|
hideExpressionOption: AnyObject[];
|
|
@@ -869,10 +869,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
869
869
|
isDateDisabled: {
|
|
870
870
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
871
871
|
};
|
|
872
|
+
propKey: {
|
|
873
|
+
type: StringConstructor;
|
|
874
|
+
};
|
|
872
875
|
shortcutListenerConfig: {
|
|
873
876
|
type: PropType<{
|
|
874
877
|
enable: boolean;
|
|
875
|
-
callback: (
|
|
878
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
876
879
|
}>;
|
|
877
880
|
};
|
|
878
881
|
}>, {
|
|
@@ -914,10 +917,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
914
917
|
isDateDisabled: {
|
|
915
918
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
916
919
|
};
|
|
920
|
+
propKey: {
|
|
921
|
+
type: StringConstructor;
|
|
922
|
+
};
|
|
917
923
|
shortcutListenerConfig: {
|
|
918
924
|
type: PropType<{
|
|
919
925
|
enable: boolean;
|
|
920
|
-
callback: (
|
|
926
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
921
927
|
}>;
|
|
922
928
|
};
|
|
923
929
|
}>> & Readonly<{
|
|
@@ -980,10 +986,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
980
986
|
isDateDisabled: {
|
|
981
987
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
982
988
|
};
|
|
989
|
+
propKey: {
|
|
990
|
+
type: StringConstructor;
|
|
991
|
+
};
|
|
983
992
|
shortcutListenerConfig: {
|
|
984
993
|
type: PropType<{
|
|
985
994
|
enable: boolean;
|
|
986
|
-
callback: (
|
|
995
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
987
996
|
}>;
|
|
988
997
|
};
|
|
989
998
|
}>> & Readonly<{
|
|
@@ -1252,10 +1261,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1252
1261
|
isDateDisabled: {
|
|
1253
1262
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
1254
1263
|
};
|
|
1264
|
+
propKey: {
|
|
1265
|
+
type: StringConstructor;
|
|
1266
|
+
};
|
|
1255
1267
|
shortcutListenerConfig: {
|
|
1256
1268
|
type: PropType<{
|
|
1257
1269
|
enable: boolean;
|
|
1258
|
-
callback: (
|
|
1270
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
1259
1271
|
}>;
|
|
1260
1272
|
};
|
|
1261
1273
|
}>, {
|
|
@@ -1297,10 +1309,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1297
1309
|
isDateDisabled: {
|
|
1298
1310
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
1299
1311
|
};
|
|
1312
|
+
propKey: {
|
|
1313
|
+
type: StringConstructor;
|
|
1314
|
+
};
|
|
1300
1315
|
shortcutListenerConfig: {
|
|
1301
1316
|
type: PropType<{
|
|
1302
1317
|
enable: boolean;
|
|
1303
|
-
callback: (
|
|
1318
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
1304
1319
|
}>;
|
|
1305
1320
|
};
|
|
1306
1321
|
}>> & Readonly<{
|
|
@@ -1363,10 +1378,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1363
1378
|
isDateDisabled: {
|
|
1364
1379
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
1365
1380
|
};
|
|
1381
|
+
propKey: {
|
|
1382
|
+
type: StringConstructor;
|
|
1383
|
+
};
|
|
1366
1384
|
shortcutListenerConfig: {
|
|
1367
1385
|
type: PropType<{
|
|
1368
1386
|
enable: boolean;
|
|
1369
|
-
callback: (
|
|
1387
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
1370
1388
|
}>;
|
|
1371
1389
|
};
|
|
1372
1390
|
}>> & Readonly<{
|
|
@@ -594,9 +594,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
594
594
|
hide: boolean;
|
|
595
595
|
}>;
|
|
596
596
|
draggable: boolean;
|
|
597
|
+
isHighlightRow: boolean;
|
|
597
598
|
idx: number;
|
|
598
599
|
isHighlight: boolean;
|
|
599
|
-
isHighlightRow: boolean;
|
|
600
600
|
isFieldSet: boolean;
|
|
601
601
|
fieldDescribeMode: "column" | "tooltip";
|
|
602
602
|
hideExpressionOption: AnyObject[];
|
|
@@ -773,9 +773,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
773
773
|
hide: boolean;
|
|
774
774
|
}>;
|
|
775
775
|
draggable: boolean;
|
|
776
|
+
isHighlightRow: boolean;
|
|
776
777
|
idx: number;
|
|
777
778
|
isHighlight: boolean;
|
|
778
|
-
isHighlightRow: boolean;
|
|
779
779
|
isFieldSet: boolean;
|
|
780
780
|
fieldDescribeMode: "column" | "tooltip";
|
|
781
781
|
hideExpressionOption: AnyObject[];
|
|
@@ -145,10 +145,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
145
145
|
isDateDisabled: {
|
|
146
146
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
147
147
|
};
|
|
148
|
+
propKey: {
|
|
149
|
+
type: StringConstructor;
|
|
150
|
+
};
|
|
148
151
|
shortcutListenerConfig: {
|
|
149
152
|
type: PropType<{
|
|
150
153
|
enable: boolean;
|
|
151
|
-
callback: (
|
|
154
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
152
155
|
}>;
|
|
153
156
|
};
|
|
154
157
|
}>, {
|
|
@@ -190,10 +193,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
190
193
|
isDateDisabled: {
|
|
191
194
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
192
195
|
};
|
|
196
|
+
propKey: {
|
|
197
|
+
type: StringConstructor;
|
|
198
|
+
};
|
|
193
199
|
shortcutListenerConfig: {
|
|
194
200
|
type: PropType<{
|
|
195
201
|
enable: boolean;
|
|
196
|
-
callback: (
|
|
202
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
197
203
|
}>;
|
|
198
204
|
};
|
|
199
205
|
}>> & Readonly<{
|
|
@@ -256,10 +262,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
256
262
|
isDateDisabled: {
|
|
257
263
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
258
264
|
};
|
|
265
|
+
propKey: {
|
|
266
|
+
type: StringConstructor;
|
|
267
|
+
};
|
|
259
268
|
shortcutListenerConfig: {
|
|
260
269
|
type: PropType<{
|
|
261
270
|
enable: boolean;
|
|
262
|
-
callback: (
|
|
271
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
263
272
|
}>;
|
|
264
273
|
};
|
|
265
274
|
}>> & Readonly<{
|
|
@@ -309,10 +309,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
309
309
|
isDateDisabled: {
|
|
310
310
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
311
311
|
};
|
|
312
|
+
propKey: {
|
|
313
|
+
type: StringConstructor;
|
|
314
|
+
};
|
|
312
315
|
shortcutListenerConfig: {
|
|
313
316
|
type: PropType<{
|
|
314
317
|
enable: boolean;
|
|
315
|
-
callback: (
|
|
318
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
316
319
|
}>;
|
|
317
320
|
};
|
|
318
321
|
}>, {
|
|
@@ -354,10 +357,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
354
357
|
isDateDisabled: {
|
|
355
358
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
356
359
|
};
|
|
360
|
+
propKey: {
|
|
361
|
+
type: StringConstructor;
|
|
362
|
+
};
|
|
357
363
|
shortcutListenerConfig: {
|
|
358
364
|
type: PropType<{
|
|
359
365
|
enable: boolean;
|
|
360
|
-
callback: (
|
|
366
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
361
367
|
}>;
|
|
362
368
|
};
|
|
363
369
|
}>> & Readonly<{
|
|
@@ -420,10 +426,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
420
426
|
isDateDisabled: {
|
|
421
427
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
422
428
|
};
|
|
429
|
+
propKey: {
|
|
430
|
+
type: StringConstructor;
|
|
431
|
+
};
|
|
423
432
|
shortcutListenerConfig: {
|
|
424
433
|
type: PropType<{
|
|
425
434
|
enable: boolean;
|
|
426
|
-
callback: (
|
|
435
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
427
436
|
}>;
|
|
428
437
|
};
|
|
429
438
|
}>> & Readonly<{
|
|
@@ -692,10 +701,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
692
701
|
isDateDisabled: {
|
|
693
702
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
694
703
|
};
|
|
704
|
+
propKey: {
|
|
705
|
+
type: StringConstructor;
|
|
706
|
+
};
|
|
695
707
|
shortcutListenerConfig: {
|
|
696
708
|
type: PropType<{
|
|
697
709
|
enable: boolean;
|
|
698
|
-
callback: (
|
|
710
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
699
711
|
}>;
|
|
700
712
|
};
|
|
701
713
|
}>, {
|
|
@@ -737,10 +749,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
737
749
|
isDateDisabled: {
|
|
738
750
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
739
751
|
};
|
|
752
|
+
propKey: {
|
|
753
|
+
type: StringConstructor;
|
|
754
|
+
};
|
|
740
755
|
shortcutListenerConfig: {
|
|
741
756
|
type: PropType<{
|
|
742
757
|
enable: boolean;
|
|
743
|
-
callback: (
|
|
758
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
744
759
|
}>;
|
|
745
760
|
};
|
|
746
761
|
}>> & Readonly<{
|
|
@@ -803,10 +818,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
803
818
|
isDateDisabled: {
|
|
804
819
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
805
820
|
};
|
|
821
|
+
propKey: {
|
|
822
|
+
type: StringConstructor;
|
|
823
|
+
};
|
|
806
824
|
shortcutListenerConfig: {
|
|
807
825
|
type: PropType<{
|
|
808
826
|
enable: boolean;
|
|
809
|
-
callback: (
|
|
827
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
810
828
|
}>;
|
|
811
829
|
};
|
|
812
830
|
}>> & Readonly<{
|
|
@@ -243,10 +243,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
243
243
|
isDateDisabled: {
|
|
244
244
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
245
245
|
};
|
|
246
|
+
propKey: {
|
|
247
|
+
type: StringConstructor;
|
|
248
|
+
};
|
|
246
249
|
shortcutListenerConfig: {
|
|
247
250
|
type: PropType<{
|
|
248
251
|
enable: boolean;
|
|
249
|
-
callback: (
|
|
252
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
250
253
|
}>;
|
|
251
254
|
};
|
|
252
255
|
}>, {
|
|
@@ -288,10 +291,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
288
291
|
isDateDisabled: {
|
|
289
292
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
290
293
|
};
|
|
294
|
+
propKey: {
|
|
295
|
+
type: StringConstructor;
|
|
296
|
+
};
|
|
291
297
|
shortcutListenerConfig: {
|
|
292
298
|
type: PropType<{
|
|
293
299
|
enable: boolean;
|
|
294
|
-
callback: (
|
|
300
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
295
301
|
}>;
|
|
296
302
|
};
|
|
297
303
|
}>> & Readonly<{
|
|
@@ -354,10 +360,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
354
360
|
isDateDisabled: {
|
|
355
361
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
|
356
362
|
};
|
|
363
|
+
propKey: {
|
|
364
|
+
type: StringConstructor;
|
|
365
|
+
};
|
|
357
366
|
shortcutListenerConfig: {
|
|
358
367
|
type: PropType<{
|
|
359
368
|
enable: boolean;
|
|
360
|
-
callback: (
|
|
369
|
+
callback: (value: string, propKey?: string | undefined) => void;
|
|
361
370
|
}>;
|
|
362
371
|
};
|
|
363
372
|
}>> & Readonly<{
|
|
@@ -384,9 +384,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
384
384
|
hide: boolean;
|
|
385
385
|
}>;
|
|
386
386
|
draggable: boolean;
|
|
387
|
+
isHighlightRow: boolean;
|
|
387
388
|
idx: number;
|
|
388
389
|
isHighlight: boolean;
|
|
389
|
-
isHighlightRow: boolean;
|
|
390
390
|
isFieldSet: boolean;
|
|
391
391
|
fieldDescribeMode: "column" | "tooltip";
|
|
392
392
|
hideExpressionOption: AnyObject[];
|