cnhis-design-vue 3.1.33-beta.4 → 3.1.33-beta.6
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/fabric-chart/index.d.ts +219 -187
- package/es/components/fabric-chart/src/BirthProcessChart.vue.d.ts +49 -0
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +220 -188
- package/es/components/fabric-chart/src/FabricChart.vue.js +20 -327
- package/es/components/fabric-chart/src/TemperatureChart.vue.d.ts +215 -0
- package/es/components/fabric-chart/src/TemperatureChart.vue.js +347 -0
- package/es/components/fabric-chart/src/constants/index.d.ts +4 -0
- package/es/components/fabric-chart/src/constants/index.js +4 -0
- package/es/components/fabric-chart/src/hooks/useGrid.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/useGrid.js +27 -1
- package/es/components/fabric-chart/src/interface.d.ts +23 -6
- package/es/components/fabric-chart/src/interface.js +0 -3
- package/es/components/form-render/src/hooks/useFormRenderOptions.d.ts +2 -4
- package/es/components/form-render/src/hooks/useFormRenderOptions.js +14 -8
- package/es/components/iho-table/index.d.ts +37 -36
- package/es/components/iho-table/index.js +1 -1
- package/es/components/iho-table/src/IhoTable.vue.d.ts +37 -36
- package/es/components/iho-table/src/IhoTable.vue.js +7 -1
- package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +1 -0
- package/es/components/iho-table/src/hooks/tapHooks/index.js +3 -1
- package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.d.ts +11 -0
- package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.js +26 -0
- package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.d.ts +2 -1
- package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.js +9 -5
- package/es/components/iho-table/src/plugins/filterPlugin/index.js +16 -5
- package/es/components/iho-table/src/types/index.d.ts +6 -1
- package/es/components/iho-table/src/types/index.js +1 -1
- package/es/components/iho-table/src/types/pluginType.d.ts +4 -0
- package/es/components/iho-table/src/types/pluginType.js +3 -1
- package/es/components/iho-table/style/index.css +1 -1
- package/es/components/index.css +1 -1
- package/es/components/index.js +1 -1
- package/es/components/info-header/src/InfoHeader.vue.js +14 -10
- package/es/components/info-header/style/index.css +1 -1
- package/es/components/shortcut-provider/src/utils/index.d.ts +0 -1
- package/es/components/shortcut-provider/src/utils/index.js +26 -3
- package/es/components/shortcut-setter/src/ShortcutSetterItem.vue.js +3 -0
- package/package.json +2 -2
|
@@ -1,208 +1,240 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
import {
|
|
2
|
+
import { IMode } from './interface';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{
|
|
4
|
-
|
|
5
|
-
type:
|
|
6
|
-
|
|
7
|
-
};
|
|
8
|
-
addRenderItem: {
|
|
9
|
-
type: FunctionConstructor;
|
|
10
|
-
required: false;
|
|
4
|
+
mode: {
|
|
5
|
+
type: PropType<IMode>;
|
|
6
|
+
default: string;
|
|
11
7
|
};
|
|
12
8
|
}, {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
canvas: import("vue").Ref<any>;
|
|
22
|
-
dateHeight: import("vue").ComputedRef<number>;
|
|
23
|
-
hospitalDaysHeight: import("vue").ComputedRef<number>;
|
|
24
|
-
operationDaysHeight: import("vue").ComputedRef<number>;
|
|
25
|
-
xScalevalueHeight: import("vue").ComputedRef<number>;
|
|
26
|
-
breathingHeight: import("vue").ComputedRef<any>;
|
|
27
|
-
gridXNumber: import("vue").ComputedRef<number>;
|
|
28
|
-
gridYNumber: import("vue").ComputedRef<number>;
|
|
29
|
-
endX: import("vue").ComputedRef<number>;
|
|
30
|
-
endXLimit: import("vue").ComputedRef<number>;
|
|
31
|
-
originX: import("vue").ComputedRef<any>;
|
|
32
|
-
endY: import("vue").ComputedRef<number>;
|
|
33
|
-
originY: import("vue").ComputedRef<number>;
|
|
34
|
-
originYLimit: import("vue").ComputedRef<number>;
|
|
35
|
-
xCellWidth: import("vue").ComputedRef<number>;
|
|
36
|
-
yCellHeight: import("vue").ComputedRef<number>;
|
|
37
|
-
iconsWidth: import("vue").ComputedRef<any>;
|
|
38
|
-
xScaleList: import("vue").ComputedRef<any[]>;
|
|
39
|
-
breatheYCell: import("vue").ComputedRef<number>;
|
|
40
|
-
pulseYCell: import("vue").ComputedRef<number>;
|
|
41
|
-
temperatureYCell: import("vue").ComputedRef<number>;
|
|
42
|
-
painYCell: import("vue").ComputedRef<number>;
|
|
43
|
-
event: import("vue").ComputedRef<any>;
|
|
44
|
-
itemList: import("vue").ComputedRef<any[]>;
|
|
45
|
-
painIndex: import("vue").ComputedRef<number>;
|
|
46
|
-
painHeight: import("vue").ComputedRef<number>;
|
|
47
|
-
painOriginY: import("vue").ComputedRef<{
|
|
48
|
-
originY: number;
|
|
49
|
-
endY: number;
|
|
50
|
-
}>;
|
|
51
|
-
vitalSignsOriginY: import("vue").ComputedRef<{
|
|
52
|
-
originY: number;
|
|
53
|
-
endY: number;
|
|
54
|
-
}>;
|
|
55
|
-
topList: import("vue").ComputedRef<IDate[]>;
|
|
56
|
-
getRightInfo: import("vue").ComputedRef<any>;
|
|
57
|
-
propItems: any;
|
|
58
|
-
computedYCell: (type: IPointType) => number;
|
|
59
|
-
cumputedX: (value: string | number, setAllCenter?: boolean) => any;
|
|
60
|
-
cumputedY: (type: IPointType, scaleValueList: number[], value: string | number) => number;
|
|
61
|
-
getXValue: (pointX: number) => string | undefined;
|
|
62
|
-
getYValue: (type: IPointType, pointY: number) => number;
|
|
63
|
-
pointTipProps: {
|
|
64
|
-
show: boolean;
|
|
65
|
-
point: {
|
|
66
|
-
x: number;
|
|
67
|
-
y: number;
|
|
68
|
-
};
|
|
69
|
-
list: string[];
|
|
70
|
-
};
|
|
71
|
-
pointMenuProps: {
|
|
72
|
-
show: boolean;
|
|
73
|
-
point: {
|
|
74
|
-
x: number;
|
|
75
|
-
y: number;
|
|
76
|
-
};
|
|
77
|
-
list: any[];
|
|
78
|
-
target: any;
|
|
79
|
-
};
|
|
80
|
-
clickMenu: ({ item, target }: {
|
|
81
|
-
item: any;
|
|
82
|
-
target: any;
|
|
83
|
-
}) => void;
|
|
84
|
-
setPopup: (point: any) => void;
|
|
85
|
-
getEqualXTypes: (pointX: number) => IPointType[];
|
|
86
|
-
isAddPoint: (x: number) => boolean;
|
|
87
|
-
updateData: (params: any, mode?: string) => void;
|
|
9
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
mode: {
|
|
11
|
+
type: PropType<IMode>;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
}>> & {}>>;
|
|
15
|
+
isTemperature: import("vue").ComputedRef<boolean>;
|
|
16
|
+
fabricChartRef: import("vue").Ref<any>;
|
|
88
17
|
redrawPoints: () => void;
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
default: boolean;
|
|
95
|
-
};
|
|
96
|
-
point: {
|
|
97
|
-
type: null;
|
|
18
|
+
select: (key: string) => void;
|
|
19
|
+
canvas: any;
|
|
20
|
+
TemperatureChart: import("vue").DefineComponent<{
|
|
21
|
+
data: {
|
|
22
|
+
type: PropType<import("./interface").IData>;
|
|
98
23
|
required: true;
|
|
99
24
|
};
|
|
100
|
-
|
|
101
|
-
type:
|
|
102
|
-
required: false;
|
|
103
|
-
default: () => never[];
|
|
104
|
-
};
|
|
105
|
-
propItems: {
|
|
106
|
-
type: null;
|
|
107
|
-
required: true;
|
|
25
|
+
addRenderItem: {
|
|
26
|
+
type: FunctionConstructor;
|
|
108
27
|
};
|
|
109
28
|
}, {
|
|
110
|
-
|
|
29
|
+
defaultHeight: number;
|
|
30
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
data: {
|
|
32
|
+
type: PropType<import("./interface").IData>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
addRenderItem: {
|
|
36
|
+
type: FunctionConstructor;
|
|
37
|
+
};
|
|
38
|
+
}>> & {
|
|
39
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
onAdd?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
}>>;
|
|
43
|
+
emits: (event: "change" | "add" | "select", ...args: any[]) => void;
|
|
44
|
+
select: import("vue").Ref<any>;
|
|
45
|
+
canvasRef: any;
|
|
46
|
+
canvas: import("vue").Ref<any>;
|
|
47
|
+
dateHeight: import("vue").ComputedRef<number>;
|
|
48
|
+
hospitalDaysHeight: import("vue").ComputedRef<number>;
|
|
49
|
+
operationDaysHeight: import("vue").ComputedRef<number>;
|
|
50
|
+
xScalevalueHeight: import("vue").ComputedRef<number>;
|
|
51
|
+
breathingHeight: import("vue").ComputedRef<any>;
|
|
52
|
+
gridXNumber: import("vue").ComputedRef<number>;
|
|
53
|
+
gridYNumber: import("vue").ComputedRef<number>;
|
|
54
|
+
endX: import("vue").ComputedRef<number>;
|
|
55
|
+
endXLimit: import("vue").ComputedRef<number>;
|
|
56
|
+
originX: import("vue").ComputedRef<any>;
|
|
57
|
+
endY: import("vue").ComputedRef<number>;
|
|
58
|
+
originY: import("vue").ComputedRef<number>;
|
|
59
|
+
originYLimit: import("vue").ComputedRef<number>;
|
|
60
|
+
xCellWidth: import("vue").ComputedRef<number>;
|
|
61
|
+
yCellHeight: import("vue").ComputedRef<number>;
|
|
62
|
+
iconsWidth: import("vue").ComputedRef<any>;
|
|
63
|
+
xScaleList: import("vue").ComputedRef<any[]>;
|
|
64
|
+
breatheYCell: import("vue").ComputedRef<number>;
|
|
65
|
+
pulseYCell: import("vue").ComputedRef<number>;
|
|
66
|
+
temperatureYCell: import("vue").ComputedRef<number>;
|
|
67
|
+
painYCell: import("vue").ComputedRef<number>;
|
|
68
|
+
event: import("vue").ComputedRef<any>;
|
|
69
|
+
itemList: import("vue").ComputedRef<any[]>;
|
|
70
|
+
painIndex: import("vue").ComputedRef<number>;
|
|
71
|
+
painHeight: import("vue").ComputedRef<number>;
|
|
72
|
+
painOriginY: import("vue").ComputedRef<{
|
|
73
|
+
originY: number;
|
|
74
|
+
endY: number;
|
|
75
|
+
}>;
|
|
76
|
+
vitalSignsOriginY: import("vue").ComputedRef<{
|
|
77
|
+
originY: number;
|
|
78
|
+
endY: number;
|
|
79
|
+
}>;
|
|
80
|
+
topList: import("vue").ComputedRef<import("./interface").IDate[]>;
|
|
81
|
+
getRightInfo: import("vue").ComputedRef<any>;
|
|
82
|
+
propItems: any;
|
|
83
|
+
computedYCell: (type: import("./interface").IPointType) => number;
|
|
84
|
+
cumputedX: (value: string | number, setAllCenter?: boolean) => any;
|
|
85
|
+
cumputedY: (type: import("./interface").IPointType, scaleValueList: number[], value: string | number) => number;
|
|
86
|
+
getXValue: (pointX: number) => string | undefined;
|
|
87
|
+
getYValue: (type: import("./interface").IPointType, pointY: number) => number;
|
|
88
|
+
setPopup: (point: any) => void;
|
|
89
|
+
getEqualXTypes: (pointX: number) => import("./interface").IPointType[];
|
|
90
|
+
isAddPoint: (x: number) => boolean;
|
|
91
|
+
updateData: (params: any, mode?: string) => void;
|
|
92
|
+
redrawPoints: () => void;
|
|
93
|
+
pointTipProps: {
|
|
111
94
|
show: boolean;
|
|
112
|
-
point:
|
|
95
|
+
point: {
|
|
96
|
+
x: number;
|
|
97
|
+
y: number;
|
|
98
|
+
};
|
|
113
99
|
list: string[];
|
|
114
|
-
propItems: IPropItems;
|
|
115
100
|
};
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
101
|
+
pointMenuProps: {
|
|
102
|
+
show: boolean;
|
|
103
|
+
point: {
|
|
104
|
+
x: number;
|
|
105
|
+
y: number;
|
|
106
|
+
};
|
|
107
|
+
list: any[];
|
|
108
|
+
target: any;
|
|
109
|
+
};
|
|
110
|
+
clickMenu: ({ item, target }: {
|
|
111
|
+
item: any;
|
|
112
|
+
target: any;
|
|
113
|
+
}) => void;
|
|
114
|
+
drawScaleValue: (yScaleValueList: any[]) => void;
|
|
115
|
+
PopupTip: import("vue").DefineComponent<{
|
|
116
|
+
show: {
|
|
117
|
+
type: BooleanConstructor;
|
|
118
|
+
required: true;
|
|
119
|
+
default: boolean;
|
|
120
|
+
};
|
|
121
|
+
point: {
|
|
122
|
+
type: null;
|
|
123
|
+
required: true;
|
|
124
|
+
};
|
|
125
|
+
list: {
|
|
126
|
+
type: ArrayConstructor;
|
|
127
|
+
required: false;
|
|
128
|
+
default: () => never[];
|
|
129
|
+
};
|
|
130
|
+
propItems: {
|
|
131
|
+
type: null;
|
|
132
|
+
required: true;
|
|
133
|
+
};
|
|
134
|
+
}, {
|
|
135
|
+
props: {
|
|
136
|
+
show: boolean;
|
|
137
|
+
point: import("./interface").ICoordinateValue;
|
|
138
|
+
list: string[];
|
|
139
|
+
propItems: import("./interface").IPropItems;
|
|
140
|
+
};
|
|
141
|
+
pointStyle: import("vue").ComputedRef<{
|
|
142
|
+
top: string;
|
|
143
|
+
bottom: string;
|
|
144
|
+
left: string;
|
|
145
|
+
right: string;
|
|
146
|
+
'transform-origin': string;
|
|
147
|
+
}>;
|
|
148
|
+
Teleport: {
|
|
149
|
+
new (): {
|
|
150
|
+
$props: import("vue").VNodeProps & import("vue").TeleportProps;
|
|
151
|
+
};
|
|
152
|
+
__isTeleport: true;
|
|
153
|
+
};
|
|
154
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
155
|
+
show: {
|
|
156
|
+
type: BooleanConstructor;
|
|
157
|
+
required: true;
|
|
158
|
+
default: boolean;
|
|
159
|
+
};
|
|
160
|
+
point: {
|
|
161
|
+
type: null;
|
|
162
|
+
required: true;
|
|
163
|
+
};
|
|
164
|
+
list: {
|
|
165
|
+
type: ArrayConstructor;
|
|
166
|
+
required: false;
|
|
167
|
+
default: () => never[];
|
|
168
|
+
};
|
|
169
|
+
propItems: {
|
|
170
|
+
type: null;
|
|
171
|
+
required: true;
|
|
172
|
+
};
|
|
173
|
+
}>>, {
|
|
174
|
+
list: unknown[];
|
|
122
175
|
}>;
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
176
|
+
PopupMenu: import("vue").DefineComponent<{
|
|
177
|
+
show: {
|
|
178
|
+
type: BooleanConstructor;
|
|
179
|
+
default: boolean;
|
|
126
180
|
};
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
181
|
+
list: {
|
|
182
|
+
type: ArrayConstructor;
|
|
183
|
+
default: () => never[];
|
|
184
|
+
};
|
|
185
|
+
point: {
|
|
186
|
+
type: PropType<import("./interface").ICoordinateValue>;
|
|
187
|
+
};
|
|
188
|
+
propItems: {
|
|
189
|
+
type: PropType<import("./interface").IPropItems>;
|
|
190
|
+
};
|
|
191
|
+
target: {
|
|
192
|
+
type: PropType<any>;
|
|
193
|
+
};
|
|
194
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:show" | "clickMenu")[], "clickMenu" | "update:show", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
195
|
+
show: {
|
|
196
|
+
type: BooleanConstructor;
|
|
197
|
+
default: boolean;
|
|
198
|
+
};
|
|
199
|
+
list: {
|
|
200
|
+
type: ArrayConstructor;
|
|
201
|
+
default: () => never[];
|
|
202
|
+
};
|
|
203
|
+
point: {
|
|
204
|
+
type: PropType<import("./interface").ICoordinateValue>;
|
|
205
|
+
};
|
|
206
|
+
propItems: {
|
|
207
|
+
type: PropType<import("./interface").IPropItems>;
|
|
208
|
+
};
|
|
209
|
+
target: {
|
|
210
|
+
type: PropType<any>;
|
|
211
|
+
};
|
|
212
|
+
}>> & {
|
|
213
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
214
|
+
onClickMenu?: ((...args: any[]) => any) | undefined;
|
|
215
|
+
}, {
|
|
216
|
+
show: boolean;
|
|
217
|
+
list: unknown[];
|
|
218
|
+
}>;
|
|
219
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "add" | "select")[], "change" | "add" | "select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
220
|
+
data: {
|
|
221
|
+
type: PropType<import("./interface").IData>;
|
|
146
222
|
required: true;
|
|
147
223
|
};
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
}>;
|
|
151
|
-
PopupMenu: import("vue").DefineComponent<{
|
|
152
|
-
show: {
|
|
153
|
-
type: BooleanConstructor;
|
|
154
|
-
default: boolean;
|
|
155
|
-
};
|
|
156
|
-
list: {
|
|
157
|
-
type: ArrayConstructor;
|
|
158
|
-
default: () => never[];
|
|
159
|
-
};
|
|
160
|
-
point: {
|
|
161
|
-
type: PropType<import("./interface").ICoordinateValue>;
|
|
162
|
-
};
|
|
163
|
-
propItems: {
|
|
164
|
-
type: PropType<IPropItems>;
|
|
165
|
-
};
|
|
166
|
-
target: {
|
|
167
|
-
type: PropType<any>;
|
|
168
|
-
};
|
|
169
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:show" | "clickMenu")[], "clickMenu" | "update:show", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
170
|
-
show: {
|
|
171
|
-
type: BooleanConstructor;
|
|
172
|
-
default: boolean;
|
|
173
|
-
};
|
|
174
|
-
list: {
|
|
175
|
-
type: ArrayConstructor;
|
|
176
|
-
default: () => never[];
|
|
177
|
-
};
|
|
178
|
-
point: {
|
|
179
|
-
type: PropType<import("./interface").ICoordinateValue>;
|
|
180
|
-
};
|
|
181
|
-
propItems: {
|
|
182
|
-
type: PropType<IPropItems>;
|
|
183
|
-
};
|
|
184
|
-
target: {
|
|
185
|
-
type: PropType<any>;
|
|
224
|
+
addRenderItem: {
|
|
225
|
+
type: FunctionConstructor;
|
|
186
226
|
};
|
|
187
227
|
}>> & {
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
type: null;
|
|
197
|
-
required: true;
|
|
198
|
-
};
|
|
199
|
-
addRenderItem: {
|
|
200
|
-
type: FunctionConstructor;
|
|
201
|
-
required: false;
|
|
228
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
229
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
230
|
+
onAdd?: ((...args: any[]) => any) | undefined;
|
|
231
|
+
}, {}>;
|
|
232
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
233
|
+
mode: {
|
|
234
|
+
type: PropType<IMode>;
|
|
235
|
+
default: string;
|
|
202
236
|
};
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
onAdd?: ((...args: any[]) => any) | undefined;
|
|
207
|
-
}, {}>;
|
|
237
|
+
}>>, {
|
|
238
|
+
mode: IMode;
|
|
239
|
+
}>;
|
|
208
240
|
export default _default;
|