cnhis-design-vue 3.1.31-beta.7 → 3.1.31-beta.9
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/README.md +123 -123
- package/es/components/button-print/index.d.ts +64 -45
- package/es/components/button-print/src/ButtonPrint.vue.d.ts +64 -45
- package/es/components/button-print/src/components/EditFormat.vue.d.ts +65 -46
- package/es/components/button-print/src/components/EditFormat.vue.js +108 -88
- package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +64 -45
- package/es/components/button-print/src/components/IdentityVerification.vue.js +7 -4
- package/es/components/button-print/style/index.css +1 -1
- package/es/components/fabric-chart/src/hooks/useCenter.js +5 -6
- package/es/components/fabric-chart/src/hooks/useGrid.js +3 -3
- package/es/components/fabric-chart/src/interface.d.ts +1 -1
- package/es/components/form-render/index.js +1 -1
- package/es/components/form-render/src/components/renderer/select.js +3 -3
- package/es/components/form-render/src/hooks/useAutographOptions.js +2 -2
- package/es/components/form-render/src/utils/index.d.ts +2 -2
- package/es/components/form-render/src/utils/index.js +27 -3
- package/es/components/index.css +1 -1
- package/es/components/index.js +1 -1
- package/es/components/keyboard/index.d.ts +26 -16
- package/es/components/keyboard/src/Keyboard.vue.d.ts +27 -8
- package/es/components/keyboard/src/Keyboard.vue.js +8 -2
- package/es/components/steps-wheel/index.d.ts +3 -0
- package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +3 -0
- package/es/components/steps-wheel/src/StepsWheel.vue.js +38 -9
- package/es/components/steps-wheel/style/index.css +1 -1
- package/es/shared/assets/img/failure.js +1 -1
- package/es/shared/assets/img/failure.png.js +1 -1
- package/es/shared/assets/img/icon-asc.js +1 -1
- package/es/shared/assets/img/icon-desc.js +1 -1
- package/es/shared/assets/img/no-permission.js +1 -1
- package/es/shared/assets/img/no-permission.png.js +1 -1
- package/es/shared/assets/img/nodata.js +1 -1
- package/es/shared/assets/img/nodata.png.js +1 -1
- package/es/shared/assets/img/notfound.js +1 -1
- package/es/shared/assets/img/notfound.png.js +1 -1
- package/es/shared/assets/img/qr.js +1 -1
- package/es/shared/assets/img/qr.png.js +1 -1
- package/es/shared/assets/img/success.js +1 -1
- package/es/shared/assets/img/success.png.js +1 -1
- package/es/shared/assets/img/video.js +1 -1
- package/es/shared/assets/img/video.png.js +1 -1
- package/es/shared/assets/img/video_default_cover.js +1 -1
- package/es/shared/assets/img/video_default_cover.png.js +1 -1
- package/es/shared/assets/img/video_hover.js +1 -1
- package/es/shared/assets/img/video_play_hover.js +1 -1
- package/es/shared/assets/img/xb_big.js +1 -1
- package/es/shared/assets/img/xb_big.png.js +1 -1
- package/es/shared/assets/img/xb_small.js +1 -1
- package/es/shared/assets/img/xb_small.png.js +1 -1
- package/package.json +2 -2
- package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
- package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
- package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
- package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
- package/es/components/fabric-chart/index.d.ts +0 -207
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +0 -208
- package/es/components/fabric-chart/src/utils/index.d.ts +0 -6823
- package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
- package/es/shared/utils/tapable/index.d.ts +0 -139
|
@@ -1,208 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
import { IData, IDate, IPointType } from './interface';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<{
|
|
4
|
-
data: {
|
|
5
|
-
type: null;
|
|
6
|
-
required: true;
|
|
7
|
-
};
|
|
8
|
-
addRenderItem: {
|
|
9
|
-
type: FunctionConstructor;
|
|
10
|
-
required: false;
|
|
11
|
-
};
|
|
12
|
-
}, {
|
|
13
|
-
defaultHeight: number;
|
|
14
|
-
props: {
|
|
15
|
-
data: IData;
|
|
16
|
-
addRenderItem?: Function | undefined;
|
|
17
|
-
};
|
|
18
|
-
emits: (event: "change" | "add" | "select", ...args: any[]) => void;
|
|
19
|
-
select: import("vue").Ref<any>;
|
|
20
|
-
canvasRef: any;
|
|
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;
|
|
88
|
-
redrawPoints: () => void;
|
|
89
|
-
drawScaleValue: (yScaleValueList: any[]) => void;
|
|
90
|
-
PopupTip: import("vue").DefineComponent<{
|
|
91
|
-
show: {
|
|
92
|
-
type: BooleanConstructor;
|
|
93
|
-
required: true;
|
|
94
|
-
default: boolean;
|
|
95
|
-
};
|
|
96
|
-
point: {
|
|
97
|
-
type: null;
|
|
98
|
-
required: true;
|
|
99
|
-
};
|
|
100
|
-
list: {
|
|
101
|
-
type: ArrayConstructor;
|
|
102
|
-
required: false;
|
|
103
|
-
default: () => never[];
|
|
104
|
-
};
|
|
105
|
-
propItems: {
|
|
106
|
-
type: null;
|
|
107
|
-
required: true;
|
|
108
|
-
};
|
|
109
|
-
}, {
|
|
110
|
-
props: {
|
|
111
|
-
show: boolean;
|
|
112
|
-
point: import("./interface").ICoordinateValue;
|
|
113
|
-
list: string[];
|
|
114
|
-
propItems: import("./interface").IPropItems;
|
|
115
|
-
};
|
|
116
|
-
pointStyle: import("vue").ComputedRef<{
|
|
117
|
-
top: string;
|
|
118
|
-
bottom: string;
|
|
119
|
-
left: string;
|
|
120
|
-
right: string;
|
|
121
|
-
'transform-origin': string;
|
|
122
|
-
}>;
|
|
123
|
-
Teleport: {
|
|
124
|
-
new (): {
|
|
125
|
-
$props: import("vue").VNodeProps & import("vue").TeleportProps;
|
|
126
|
-
};
|
|
127
|
-
__isTeleport: true;
|
|
128
|
-
};
|
|
129
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
130
|
-
show: {
|
|
131
|
-
type: BooleanConstructor;
|
|
132
|
-
required: true;
|
|
133
|
-
default: boolean;
|
|
134
|
-
};
|
|
135
|
-
point: {
|
|
136
|
-
type: null;
|
|
137
|
-
required: true;
|
|
138
|
-
};
|
|
139
|
-
list: {
|
|
140
|
-
type: ArrayConstructor;
|
|
141
|
-
required: false;
|
|
142
|
-
default: () => never[];
|
|
143
|
-
};
|
|
144
|
-
propItems: {
|
|
145
|
-
type: null;
|
|
146
|
-
required: true;
|
|
147
|
-
};
|
|
148
|
-
}>>, {
|
|
149
|
-
list: unknown[];
|
|
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<import("./interface").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<import("./interface").IPropItems>;
|
|
183
|
-
};
|
|
184
|
-
target: {
|
|
185
|
-
type: PropType<any>;
|
|
186
|
-
};
|
|
187
|
-
}>> & {
|
|
188
|
-
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
189
|
-
onClickMenu?: ((...args: any[]) => any) | undefined;
|
|
190
|
-
}, {
|
|
191
|
-
show: boolean;
|
|
192
|
-
list: unknown[];
|
|
193
|
-
}>;
|
|
194
|
-
}, 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<{
|
|
195
|
-
data: {
|
|
196
|
-
type: null;
|
|
197
|
-
required: true;
|
|
198
|
-
};
|
|
199
|
-
addRenderItem: {
|
|
200
|
-
type: FunctionConstructor;
|
|
201
|
-
required: false;
|
|
202
|
-
};
|
|
203
|
-
}>> & {
|
|
204
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
205
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
206
|
-
onAdd?: ((...args: any[]) => any) | undefined;
|
|
207
|
-
}, {}>;
|
|
208
|
-
export default _default;
|