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