cnhis-design-vue 3.1.33-beta.2 → 3.1.33-beta.21

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.
Files changed (114) hide show
  1. package/README.md +123 -123
  2. package/es/components/big-table/index.d.ts +2 -2
  3. package/es/components/big-table/src/BigTable.vue.d.ts +2 -2
  4. package/es/components/big-table/src/BigTable.vue2.js +11 -14
  5. package/es/components/big-table/src/components/edit-form/edit-input.js +1 -1
  6. package/es/components/big-table/src/components/edit-form/edit-select.js +1 -1
  7. package/es/components/big-table/src/components/edit-form/edit-time.js +7 -4
  8. package/es/components/big-table/src/components/edit-form/useCommon.d.ts +2 -1
  9. package/es/components/big-table/src/components/edit-form/useCommon.js +7 -3
  10. package/es/components/big-table/src/hooks/useFormat.js +1 -1
  11. package/es/components/button-print/index.d.ts +13 -0
  12. package/es/components/button-print/src/ButtonPrint.vue.d.ts +13 -0
  13. package/es/components/button-print/src/ButtonPrint.vue2.js +6 -1
  14. package/es/components/button-print/src/utils/print.d.ts +2 -2
  15. package/es/components/button-print/src/utils/print.js +7 -4
  16. package/es/components/fabric-chart/index.d.ts +392 -180
  17. package/es/components/fabric-chart/src/BirthProcessChart.vue.d.ts +181 -0
  18. package/es/components/fabric-chart/src/BirthProcessChart.vue.js +172 -0
  19. package/es/components/fabric-chart/src/FabricChart.vue.d.ts +395 -182
  20. package/es/components/fabric-chart/src/FabricChart.vue.js +33 -324
  21. package/es/components/fabric-chart/src/TemperatureChart.vue.d.ts +214 -0
  22. package/es/components/fabric-chart/src/TemperatureChart.vue.js +359 -0
  23. package/es/components/fabric-chart/src/components/PopupMenu.js +3 -3
  24. package/es/components/fabric-chart/src/components/PopupTip.vue.d.ts +3 -2
  25. package/es/components/fabric-chart/src/components/PopupTip.vue.js +1 -1
  26. package/es/components/fabric-chart/src/hooks/index.d.ts +1 -0
  27. package/es/components/fabric-chart/src/hooks/index.js +2 -1
  28. package/es/components/fabric-chart/src/hooks/useBirthProcess.d.ts +26 -0
  29. package/es/components/fabric-chart/src/hooks/useBirthProcess.js +419 -0
  30. package/es/components/fabric-chart/src/hooks/useCenter.d.ts +0 -2
  31. package/es/components/fabric-chart/src/hooks/useCenter.js +26 -45
  32. package/es/components/fabric-chart/src/hooks/useCommon.d.ts +8 -0
  33. package/es/components/fabric-chart/src/hooks/useCommon.js +31 -0
  34. package/es/components/fabric-chart/src/hooks/useCumputedPoint.d.ts +9 -2
  35. package/es/components/fabric-chart/src/hooks/useCumputedPoint.js +34 -1
  36. package/es/components/fabric-chart/src/hooks/useGrid.d.ts +2 -2
  37. package/es/components/fabric-chart/src/hooks/useGrid.js +28 -18
  38. package/es/components/fabric-chart/src/hooks/useLeft.d.ts +1 -1
  39. package/es/components/fabric-chart/src/hooks/useLeft.js +11 -7
  40. package/es/components/fabric-chart/src/interface.d.ts +24 -6
  41. package/es/components/fabric-chart/src/interface.js +0 -3
  42. package/es/components/fabric-chart/src/utils/utils.d.ts +11 -0
  43. package/es/components/fabric-chart/src/utils/utils.js +27 -0
  44. package/es/components/form-render/src/hooks/useFormRenderOptions.d.ts +2 -4
  45. package/es/components/form-render/src/hooks/useFormRenderOptions.js +14 -8
  46. package/es/components/iho-table/index.d.ts +1 -0
  47. package/es/components/iho-table/index.js +1 -1
  48. package/es/components/iho-table/src/IhoTable.vue.d.ts +1 -0
  49. package/es/components/iho-table/src/IhoTable.vue.js +7 -1
  50. package/es/components/iho-table/src/components/IhoTableColumn.js +1 -1
  51. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +1 -0
  52. package/es/components/iho-table/src/hooks/tapHooks/index.js +3 -1
  53. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.d.ts +11 -0
  54. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.js +26 -0
  55. package/es/components/iho-table/src/hooks/useColumnConfigAdaptor.js +5 -1
  56. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.d.ts +2 -1
  57. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.js +17 -12
  58. package/es/components/iho-table/src/plugins/filterPlugin/index.js +16 -5
  59. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +1 -0
  60. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/index.js +8 -22
  61. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +8 -16
  62. package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils.js +7 -4
  63. package/es/components/iho-table/src/types/index.d.ts +9 -1
  64. package/es/components/iho-table/src/types/index.js +1 -1
  65. package/es/components/iho-table/src/types/pluginType.d.ts +4 -0
  66. package/es/components/iho-table/src/types/pluginType.js +3 -1
  67. package/es/components/iho-table/style/index.css +1 -1
  68. package/es/components/index.css +1 -1
  69. package/es/components/index.js +1 -1
  70. package/es/components/info-header/index.d.ts +2 -0
  71. package/es/components/info-header/src/InfoHeader.vue.d.ts +2 -0
  72. package/es/components/info-header/src/InfoHeader.vue.js +72 -56
  73. package/es/components/info-header/style/index.css +1 -1
  74. package/es/components/keyboard/index.d.ts +62 -1
  75. package/es/components/keyboard/src/Keyboard.vue.d.ts +62 -1
  76. package/es/components/keyboard/src/Keyboard.vue.js +4 -1
  77. package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +67 -5
  78. package/es/components/keyboard/src/components/NumberPanel.vue.js +48 -26
  79. package/es/components/keyboard/style/index.css +1 -1
  80. package/es/components/shortcut-provider/src/utils/index.d.ts +0 -1
  81. package/es/components/shortcut-provider/src/utils/index.js +26 -3
  82. package/es/components/shortcut-setter/src/ShortcutSetterItem.vue.js +3 -0
  83. package/es/shared/assets/img/failure.js +1 -1
  84. package/es/shared/assets/img/failure.png.js +1 -1
  85. package/es/shared/assets/img/icon-asc.js +1 -1
  86. package/es/shared/assets/img/icon-desc.js +1 -1
  87. package/es/shared/assets/img/no-permission.js +1 -1
  88. package/es/shared/assets/img/no-permission.png.js +1 -1
  89. package/es/shared/assets/img/nodata.js +1 -1
  90. package/es/shared/assets/img/nodata.png.js +1 -1
  91. package/es/shared/assets/img/notfound.js +1 -1
  92. package/es/shared/assets/img/notfound.png.js +1 -1
  93. package/es/shared/assets/img/qr.js +1 -1
  94. package/es/shared/assets/img/qr.png.js +1 -1
  95. package/es/shared/assets/img/success.js +1 -1
  96. package/es/shared/assets/img/success.png.js +1 -1
  97. package/es/shared/assets/img/video.js +1 -1
  98. package/es/shared/assets/img/video.png.js +1 -1
  99. package/es/shared/assets/img/video_default_cover.js +1 -1
  100. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  101. package/es/shared/assets/img/video_hover.js +1 -1
  102. package/es/shared/assets/img/video_play_hover.js +1 -1
  103. package/es/shared/assets/img/xb_big.js +1 -1
  104. package/es/shared/assets/img/xb_big.png.js +1 -1
  105. package/es/shared/assets/img/xb_small.js +1 -1
  106. package/es/shared/assets/img/xb_small.png.js +1 -1
  107. package/package.json +2 -2
  108. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  109. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
  110. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
  111. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
  112. package/es/components/fabric-chart/src/utils/index.d.ts +0 -6823
  113. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
  114. package/es/shared/utils/tapable/index.d.ts +0 -139
@@ -1,208 +1,421 @@
1
- import { PropType } from 'vue';
2
- import { IData, IDate, IPointType, IPropItems } from './interface';
1
+ import { PropType, CSSProperties } from 'vue';
2
+ import { AnyObject } from '../../../../es/shared/types';
3
+ import { IMode } from './interface';
3
4
  declare const _default: import("vue").DefineComponent<{
4
- data: {
5
- type: null;
6
- required: true;
7
- };
8
- addRenderItem: {
9
- type: FunctionConstructor;
10
- required: false;
5
+ mode: {
6
+ type: PropType<IMode>;
7
+ default: string;
11
8
  };
12
9
  }, {
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[];
10
+ attrs: {
11
+ [x: string]: unknown;
70
12
  };
71
- pointMenuProps: {
72
- show: boolean;
73
- point: {
74
- x: number;
75
- y: number;
13
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
14
+ mode: {
15
+ type: PropType<IMode>;
16
+ default: string;
76
17
  };
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;
18
+ }>> & {}>>;
19
+ isTemperature: import("vue").ComputedRef<boolean>;
20
+ style: import("vue").ComputedRef<CSSProperties>;
21
+ fabricChartRef: import("vue").Ref<any>;
88
22
  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;
23
+ select: (key: string) => void;
24
+ canvas: any;
25
+ TemperatureChart: import("vue").DefineComponent<{
26
+ data: {
27
+ type: PropType<import("./interface").IData>;
98
28
  required: true;
99
29
  };
100
- list: {
101
- type: ArrayConstructor;
102
- required: false;
103
- default: () => never[];
104
- };
105
- propItems: {
106
- type: null;
107
- required: true;
30
+ addRenderItem: {
31
+ type: FunctionConstructor;
108
32
  };
109
33
  }, {
110
- props: {
34
+ defaultHeight: number;
35
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
36
+ data: {
37
+ type: PropType<import("./interface").IData>;
38
+ required: true;
39
+ };
40
+ addRenderItem: {
41
+ type: FunctionConstructor;
42
+ };
43
+ }>> & {
44
+ onChange?: ((...args: any[]) => any) | undefined;
45
+ onSelect?: ((...args: any[]) => any) | undefined;
46
+ onAdd?: ((...args: any[]) => any) | undefined;
47
+ }>>;
48
+ emits: (event: "change" | "add" | "select", ...args: any[]) => void;
49
+ select: import("vue").Ref<any>;
50
+ canvasRef: any;
51
+ canvas: import("vue").Ref<any>;
52
+ dateHeight: import("vue").ComputedRef<number>;
53
+ hospitalDaysHeight: import("vue").ComputedRef<number>;
54
+ operationDaysHeight: import("vue").ComputedRef<number>;
55
+ xScalevalueHeight: import("vue").ComputedRef<number>;
56
+ breathingHeight: import("vue").ComputedRef<any>;
57
+ gridXNumber: import("vue").ComputedRef<number>;
58
+ gridYNumber: import("vue").ComputedRef<number>;
59
+ endX: import("vue").ComputedRef<number>;
60
+ endXLimit: import("vue").ComputedRef<number>;
61
+ originX: import("vue").ComputedRef<any>;
62
+ endY: import("vue").ComputedRef<number>;
63
+ originY: import("vue").ComputedRef<number>;
64
+ originYLimit: import("vue").ComputedRef<number>;
65
+ xCellWidth: import("vue").ComputedRef<number>;
66
+ yCellHeight: import("vue").ComputedRef<number>;
67
+ iconsWidth: import("vue").ComputedRef<any>;
68
+ xScaleList: import("vue").ComputedRef<any[]>;
69
+ breatheYCell: import("vue").ComputedRef<number>;
70
+ pulseYCell: import("vue").ComputedRef<number>;
71
+ temperatureYCell: import("vue").ComputedRef<number>;
72
+ painYCell: import("vue").ComputedRef<number>;
73
+ event: import("vue").ComputedRef<any>;
74
+ itemList: import("vue").ComputedRef<any[]>;
75
+ painIndex: import("vue").ComputedRef<number>;
76
+ painHeight: import("vue").ComputedRef<number>;
77
+ painOriginY: import("vue").ComputedRef<{
78
+ originY: number;
79
+ endY: number;
80
+ }>;
81
+ vitalSignsOriginY: import("vue").ComputedRef<{
82
+ originY: number;
83
+ endY: number;
84
+ }>;
85
+ topList: import("vue").ComputedRef<import("./interface").IDate[]>;
86
+ getRightInfo: import("vue").ComputedRef<any>;
87
+ propItems: any;
88
+ computedYCell: (type: import("./interface").IPointType) => number;
89
+ cumputedX: (value: string | number, setAllCenter?: boolean) => any;
90
+ cumputedY: (type: import("./interface").IPointType, scaleValueList: number[], value: string | number) => number;
91
+ getXValue: (pointX: number) => string | undefined;
92
+ getYValue: (type: import("./interface").IPointType, pointY: number) => number;
93
+ setPopup: (point: any) => void;
94
+ isAddPoint: (x: number) => boolean;
95
+ updateData: (params: any, mode?: string) => void;
96
+ redrawPoints: () => void;
97
+ pointTipProps: {
111
98
  show: boolean;
112
- point: import("./interface").ICoordinateValue;
99
+ point: {
100
+ x: number;
101
+ y: number;
102
+ };
113
103
  list: string[];
114
- propItems: IPropItems;
115
104
  };
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;
105
+ pointMenuProps: {
106
+ show: boolean;
107
+ point: {
108
+ x: number;
109
+ y: number;
126
110
  };
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;
111
+ list: any[];
112
+ target: any;
134
113
  };
135
- point: {
136
- type: null;
114
+ clickMenu: ({ item, target }: {
115
+ item: any;
116
+ target: any;
117
+ }) => void;
118
+ drawScaleValue: (yScaleValueList: any[]) => void;
119
+ PopupTip: import("vue").DefineComponent<{
120
+ show: {
121
+ type: BooleanConstructor;
122
+ required: true;
123
+ default: boolean;
124
+ };
125
+ point: {
126
+ type: null;
127
+ required: true;
128
+ };
129
+ list: {
130
+ type: ArrayConstructor;
131
+ required: false;
132
+ default: () => never[];
133
+ };
134
+ propItems: {
135
+ type: null;
136
+ required: true;
137
+ };
138
+ }, {
139
+ props: {
140
+ show: boolean;
141
+ point: import("./interface").ICoordinateValue;
142
+ list: string[];
143
+ propItems: AnyObject;
144
+ };
145
+ pointStyle: import("vue").ComputedRef<{
146
+ top: string;
147
+ bottom: string;
148
+ left: string;
149
+ right: string;
150
+ 'transform-origin': string;
151
+ }>;
152
+ Teleport: {
153
+ new (): {
154
+ $props: import("vue").VNodeProps & import("vue").TeleportProps;
155
+ };
156
+ __isTeleport: true;
157
+ };
158
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
159
+ show: {
160
+ type: BooleanConstructor;
161
+ required: true;
162
+ default: boolean;
163
+ };
164
+ point: {
165
+ type: null;
166
+ required: true;
167
+ };
168
+ list: {
169
+ type: ArrayConstructor;
170
+ required: false;
171
+ default: () => never[];
172
+ };
173
+ propItems: {
174
+ type: null;
175
+ required: true;
176
+ };
177
+ }>>, {
178
+ list: unknown[];
179
+ }>;
180
+ PopupMenu: import("vue").DefineComponent<{
181
+ show: {
182
+ type: BooleanConstructor;
183
+ default: boolean;
184
+ };
185
+ list: {
186
+ type: ArrayConstructor;
187
+ default: () => never[];
188
+ };
189
+ point: {
190
+ type: PropType<import("./interface").ICoordinateValue>;
191
+ };
192
+ propItems: {
193
+ type: PropType<import("./interface").IPropItems>;
194
+ };
195
+ target: {
196
+ type: PropType<any>;
197
+ };
198
+ }, () => 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<{
199
+ show: {
200
+ type: BooleanConstructor;
201
+ default: boolean;
202
+ };
203
+ list: {
204
+ type: ArrayConstructor;
205
+ default: () => never[];
206
+ };
207
+ point: {
208
+ type: PropType<import("./interface").ICoordinateValue>;
209
+ };
210
+ propItems: {
211
+ type: PropType<import("./interface").IPropItems>;
212
+ };
213
+ target: {
214
+ type: PropType<any>;
215
+ };
216
+ }>> & {
217
+ "onUpdate:show"?: ((...args: any[]) => any) | undefined;
218
+ onClickMenu?: ((...args: any[]) => any) | undefined;
219
+ }, {
220
+ show: boolean;
221
+ list: unknown[];
222
+ }>;
223
+ }, 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<{
224
+ data: {
225
+ type: PropType<import("./interface").IData>;
137
226
  required: true;
138
227
  };
139
- list: {
140
- type: ArrayConstructor;
141
- required: false;
142
- default: () => never[];
228
+ addRenderItem: {
229
+ type: FunctionConstructor;
143
230
  };
144
- propItems: {
145
- type: null;
231
+ }>> & {
232
+ onChange?: ((...args: any[]) => any) | undefined;
233
+ onSelect?: ((...args: any[]) => any) | undefined;
234
+ onAdd?: ((...args: any[]) => any) | undefined;
235
+ }, {}>;
236
+ BirthProcessChart: import("vue").DefineComponent<{
237
+ data: {
238
+ type: PropType<import("./interface").IBirthProcessData>;
146
239
  required: true;
147
240
  };
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<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>;
241
+ }, {
242
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
243
+ data: {
244
+ type: PropType<import("./interface").IBirthProcessData>;
245
+ required: true;
246
+ };
247
+ }>> & {
248
+ onChange?: ((...args: any[]) => any) | undefined;
249
+ onSelect?: ((...args: any[]) => any) | undefined;
250
+ onAdd?: ((...args: any[]) => any) | undefined;
251
+ onDelete?: ((...args: any[]) => any) | undefined;
252
+ }>>;
253
+ emits: (event: "delete" | "change" | "add" | "select", ...args: any[]) => void;
254
+ leftScales: import("vue").ComputedRef<AnyObject[]>;
255
+ rightScales: import("vue").ComputedRef<AnyObject[]>;
256
+ leftAddAreaWidth: number;
257
+ rightAddAreaWidth: import("vue").ComputedRef<0 | 30>;
258
+ originX: import("vue").ComputedRef<number>;
259
+ endX: import("vue").ComputedRef<number>;
260
+ gridXNumber: import("vue").ComputedRef<any>;
261
+ gridYNumber: import("vue").ComputedRef<any>;
262
+ xCellWidth: import("vue").ComputedRef<number>;
263
+ yCellHeight: import("vue").ComputedRef<number>;
264
+ originY: import("vue").ComputedRef<number>;
265
+ originYCervix: import("vue").ComputedRef<number>;
266
+ endY: import("vue").ComputedRef<number>;
267
+ startTime: import("vue").ComputedRef<number>;
268
+ timeXCell: import("vue").ComputedRef<number>;
269
+ cervixYCell: import("vue").ComputedRef<number>;
270
+ FHRYCell: import("vue").ComputedRef<number>;
271
+ fetalPresentationYCell: import("vue").ComputedRef<number>;
272
+ event: import("vue").ComputedRef<any>;
273
+ select: import("vue").Ref<any>;
274
+ canvasRef: any;
275
+ canvas: import("vue").Ref<any>;
276
+ propItems: any;
277
+ pointTipProps: {
278
+ show: boolean;
279
+ point: {
280
+ x: number;
281
+ y: number;
282
+ };
283
+ list: string[];
180
284
  };
181
- propItems: {
182
- type: PropType<IPropItems>;
285
+ pointMenuProps: {
286
+ show: boolean;
287
+ point: {
288
+ x: number;
289
+ y: number;
290
+ };
291
+ list: any[];
292
+ target: any;
183
293
  };
184
- target: {
185
- type: PropType<any>;
294
+ clickMenu: ({ item, target }: {
295
+ item: any;
296
+ target: any;
297
+ }) => void;
298
+ PopupTip: import("vue").DefineComponent<{
299
+ show: {
300
+ type: BooleanConstructor;
301
+ required: true;
302
+ default: boolean;
303
+ };
304
+ point: {
305
+ type: null;
306
+ required: true;
307
+ };
308
+ list: {
309
+ type: ArrayConstructor;
310
+ required: false;
311
+ default: () => never[];
312
+ };
313
+ propItems: {
314
+ type: null;
315
+ required: true;
316
+ };
317
+ }, {
318
+ props: {
319
+ show: boolean;
320
+ point: import("./interface").ICoordinateValue;
321
+ list: string[];
322
+ propItems: AnyObject;
323
+ };
324
+ pointStyle: import("vue").ComputedRef<{
325
+ top: string;
326
+ bottom: string;
327
+ left: string;
328
+ right: string;
329
+ 'transform-origin': string;
330
+ }>;
331
+ Teleport: {
332
+ new (): {
333
+ $props: import("vue").VNodeProps & import("vue").TeleportProps;
334
+ };
335
+ __isTeleport: true;
336
+ };
337
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
338
+ show: {
339
+ type: BooleanConstructor;
340
+ required: true;
341
+ default: boolean;
342
+ };
343
+ point: {
344
+ type: null;
345
+ required: true;
346
+ };
347
+ list: {
348
+ type: ArrayConstructor;
349
+ required: false;
350
+ default: () => never[];
351
+ };
352
+ propItems: {
353
+ type: null;
354
+ required: true;
355
+ };
356
+ }>>, {
357
+ list: unknown[];
358
+ }>;
359
+ PopupMenu: import("vue").DefineComponent<{
360
+ show: {
361
+ type: BooleanConstructor;
362
+ default: boolean;
363
+ };
364
+ list: {
365
+ type: ArrayConstructor;
366
+ default: () => never[];
367
+ };
368
+ point: {
369
+ type: PropType<import("./interface").ICoordinateValue>;
370
+ };
371
+ propItems: {
372
+ type: PropType<import("./interface").IPropItems>;
373
+ };
374
+ target: {
375
+ type: PropType<any>;
376
+ };
377
+ }, () => 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<{
378
+ show: {
379
+ type: BooleanConstructor;
380
+ default: boolean;
381
+ };
382
+ list: {
383
+ type: ArrayConstructor;
384
+ default: () => never[];
385
+ };
386
+ point: {
387
+ type: PropType<import("./interface").ICoordinateValue>;
388
+ };
389
+ propItems: {
390
+ type: PropType<import("./interface").IPropItems>;
391
+ };
392
+ target: {
393
+ type: PropType<any>;
394
+ };
395
+ }>> & {
396
+ "onUpdate:show"?: ((...args: any[]) => any) | undefined;
397
+ onClickMenu?: ((...args: any[]) => any) | undefined;
398
+ }, {
399
+ show: boolean;
400
+ list: unknown[];
401
+ }>;
402
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("delete" | "change" | "add" | "select")[], "delete" | "change" | "add" | "select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
403
+ data: {
404
+ type: PropType<import("./interface").IBirthProcessData>;
405
+ required: true;
186
406
  };
187
407
  }>> & {
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;
408
+ onChange?: ((...args: any[]) => any) | undefined;
409
+ onSelect?: ((...args: any[]) => any) | undefined;
410
+ onAdd?: ((...args: any[]) => any) | undefined;
411
+ onDelete?: ((...args: any[]) => any) | undefined;
412
+ }, {}>;
413
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
414
+ mode: {
415
+ type: PropType<IMode>;
416
+ default: string;
202
417
  };
203
- }>> & {
204
- onChange?: ((...args: any[]) => any) | undefined;
205
- onSelect?: ((...args: any[]) => any) | undefined;
206
- onAdd?: ((...args: any[]) => any) | undefined;
207
- }, {}>;
418
+ }>>, {
419
+ mode: IMode;
420
+ }>;
208
421
  export default _default;