cnhis-design-vue 3.1.37-beta.1 → 3.1.37
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/big-table/index.d.ts +66 -166
- package/es/components/big-table/src/BigTable.vue.d.ts +79 -194
- package/es/components/button-print/index.d.ts +24 -27
- package/es/components/button-print/src/ButtonPrint.vue.d.ts +101 -100
- package/es/components/button-print/src/components/EditFormat.vue.d.ts +4 -4
- package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +4 -4
- package/es/components/button-print/src/utils/print.js +1 -6
- package/es/components/fabric-chart/index.d.ts +34 -11
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +35 -12
- package/es/components/fabric-chart/src/FabricChart.vue.js +9 -9
- package/es/components/fabric-chart/src/hooks/useBirthProcess.d.ts +1 -18
- package/es/components/fabric-chart/src/hooks/useBirthProcess.js +129 -42
- package/es/components/fabric-chart/src/hooks/useBirthProcessChart.d.ts +25 -0
- package/es/components/fabric-chart/src/hooks/useBirthProcessChart.js +151 -0
- package/es/components/fabric-chart/src/hooks/useCenter.d.ts +1 -1
- package/es/components/fabric-chart/src/hooks/useCenter.js +6 -7
- package/es/components/fabric-chart/src/hooks/useOther.js +3 -2
- package/es/components/fabric-chart/src/hooks/useTemperatureChart.js +1 -1
- package/es/components/fabric-chart/src/interface.d.ts +3 -1
- package/es/components/fabric-chart/src/utils/utils.d.ts +1 -1
- package/es/components/fabric-chart/src/utils/utils.js +7 -4
- package/es/components/form-config/index.d.ts +2 -2
- package/es/components/form-config/src/FormConfig.vue.d.ts +2 -2
- package/es/components/form-config/src/components/FormConfigDragDisplay.vue.d.ts +1 -1
- package/es/components/form-config/src/components/FormConfigDragDisplay.vue.js +1 -1
- package/es/components/form-config/src/components/renderer/ComplexNode.vue.d.ts +1 -1
- package/es/components/form-config/src/hooks/useSortalbeConfig.d.ts +2 -1
- package/es/components/form-config/src/hooks/useSortalbeConfig.js +2 -2
- package/es/components/form-render/src/hooks/useLowCodeReactions.js +19 -18
- package/es/components/form-render/src/types/index.d.ts +2 -2
- package/es/components/iho-table/src/constants/index.d.ts +2 -2
- package/es/components/iho-table/style/index.css +1 -1
- package/es/components/index.css +1 -1
- package/es/components/index.d.ts +1 -2
- package/es/components/index.js +0 -3
- package/es/components/scale-view/src/hooks/use-component.d.ts +30 -81
- package/es/components/select-label/index.d.ts +30 -81
- package/es/components/select-label/src/SelectLabel.vue.d.ts +30 -81
- package/es/components/select-person/index.d.ts +113 -41
- package/es/components/select-person/src/SelectPerson.vue.d.ts +76 -45
- package/es/shared/utils/tapable/AsyncParallelBailHook.js +1 -1
- package/es/shared/utils/tapable/AsyncSeriesWaterfallHook.js +2 -3
- package/es/shared/utils/tapable/Hook.d.ts +1 -1
- package/es/shared/utils/tapable/Hook.js +1 -1
- package/es/shared/utils/tapable/HookCodeFactory.js +3 -6
- package/es/shared/utils/tapable/SyncWaterfallHook.js +1 -2
- package/package.json +2 -2
- package/es/components/drag-layout/index.d.ts +0 -606
- package/es/components/drag-layout/index.js +0 -11
- package/es/components/drag-layout/src/DragFormLeftItem.vue.d.ts +0 -21
- package/es/components/drag-layout/src/DragFormLeftItem.vue.js +0 -122
- package/es/components/drag-layout/src/DragFormRightItem.vue.d.ts +0 -125
- package/es/components/drag-layout/src/DragFormRightItem.vue.js +0 -267
- package/es/components/drag-layout/src/DragLayout.vue.d.ts +0 -606
- package/es/components/drag-layout/src/DragLayout.vue.js +0 -662
- package/es/components/drag-layout/style/index.css +0 -1
- package/es/components/fabric-chart/src/BirthProcessChart.vue.d.ts +0 -181
|
@@ -1,181 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
import { IBirthProcessData } from './interface';
|
|
3
|
-
import { AnyObject } from '../../../../es/shared/types';
|
|
4
|
-
declare const _default: import("vue").DefineComponent<{
|
|
5
|
-
data: {
|
|
6
|
-
type: PropType<IBirthProcessData>;
|
|
7
|
-
required: true;
|
|
8
|
-
};
|
|
9
|
-
}, {
|
|
10
|
-
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
-
data: {
|
|
12
|
-
type: PropType<IBirthProcessData>;
|
|
13
|
-
required: true;
|
|
14
|
-
};
|
|
15
|
-
}>> & {
|
|
16
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
18
|
-
onDelete?: ((...args: any[]) => any) | undefined;
|
|
19
|
-
onAdd?: ((...args: any[]) => any) | undefined;
|
|
20
|
-
}>>;
|
|
21
|
-
emits: (event: "delete" | "change" | "add" | "select", ...args: any[]) => void;
|
|
22
|
-
leftScales: import("vue").ComputedRef<AnyObject[]>;
|
|
23
|
-
rightScales: import("vue").ComputedRef<AnyObject[]>;
|
|
24
|
-
leftAddAreaWidth: number;
|
|
25
|
-
rightAddAreaWidth: import("vue").ComputedRef<0 | 30>;
|
|
26
|
-
originX: import("vue").ComputedRef<number>;
|
|
27
|
-
endX: import("vue").ComputedRef<number>;
|
|
28
|
-
gridXNumber: import("vue").ComputedRef<any>;
|
|
29
|
-
gridYNumber: import("vue").ComputedRef<any>;
|
|
30
|
-
xCellWidth: import("vue").ComputedRef<number>;
|
|
31
|
-
yCellHeight: import("vue").ComputedRef<number>;
|
|
32
|
-
originY: import("vue").ComputedRef<number>;
|
|
33
|
-
originYCervix: import("vue").ComputedRef<number>;
|
|
34
|
-
endY: import("vue").ComputedRef<number>;
|
|
35
|
-
startTime: import("vue").ComputedRef<number>;
|
|
36
|
-
timeXCell: import("vue").ComputedRef<number>;
|
|
37
|
-
cervixYCell: import("vue").ComputedRef<number>;
|
|
38
|
-
FHRYCell: import("vue").ComputedRef<number>;
|
|
39
|
-
fetalPresentationYCell: import("vue").ComputedRef<number>;
|
|
40
|
-
event: import("vue").ComputedRef<any>;
|
|
41
|
-
select: import("vue").Ref<any>;
|
|
42
|
-
canvasRef: any;
|
|
43
|
-
canvas: import("vue").Ref<any>;
|
|
44
|
-
propItems: any;
|
|
45
|
-
pointTipProps: {
|
|
46
|
-
show: boolean;
|
|
47
|
-
point: {
|
|
48
|
-
x: number;
|
|
49
|
-
y: number;
|
|
50
|
-
};
|
|
51
|
-
list: string[];
|
|
52
|
-
};
|
|
53
|
-
pointMenuProps: {
|
|
54
|
-
show: boolean;
|
|
55
|
-
point: {
|
|
56
|
-
x: number;
|
|
57
|
-
y: number;
|
|
58
|
-
};
|
|
59
|
-
list: any[];
|
|
60
|
-
target: any;
|
|
61
|
-
};
|
|
62
|
-
clickMenu: ({ item, target }: {
|
|
63
|
-
item: any;
|
|
64
|
-
target: any;
|
|
65
|
-
}) => void;
|
|
66
|
-
PopupTip: import("vue").DefineComponent<{
|
|
67
|
-
show: {
|
|
68
|
-
type: BooleanConstructor;
|
|
69
|
-
required: true;
|
|
70
|
-
default: boolean;
|
|
71
|
-
};
|
|
72
|
-
point: {
|
|
73
|
-
type: null;
|
|
74
|
-
required: true;
|
|
75
|
-
};
|
|
76
|
-
list: {
|
|
77
|
-
type: ArrayConstructor;
|
|
78
|
-
required: false;
|
|
79
|
-
default: () => never[];
|
|
80
|
-
};
|
|
81
|
-
propItems: {
|
|
82
|
-
type: null;
|
|
83
|
-
required: true;
|
|
84
|
-
};
|
|
85
|
-
}, {
|
|
86
|
-
props: {
|
|
87
|
-
show: boolean;
|
|
88
|
-
point: import("./interface").ICoordinateValue;
|
|
89
|
-
list: string[];
|
|
90
|
-
propItems: AnyObject;
|
|
91
|
-
};
|
|
92
|
-
pointStyle: import("vue").ComputedRef<{
|
|
93
|
-
top: string;
|
|
94
|
-
bottom: string;
|
|
95
|
-
left: string;
|
|
96
|
-
right: string;
|
|
97
|
-
'transform-origin': string;
|
|
98
|
-
}>;
|
|
99
|
-
Teleport: {
|
|
100
|
-
new (): {
|
|
101
|
-
$props: import("vue").VNodeProps & import("vue").TeleportProps;
|
|
102
|
-
};
|
|
103
|
-
__isTeleport: true;
|
|
104
|
-
};
|
|
105
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
106
|
-
show: {
|
|
107
|
-
type: BooleanConstructor;
|
|
108
|
-
required: true;
|
|
109
|
-
default: boolean;
|
|
110
|
-
};
|
|
111
|
-
point: {
|
|
112
|
-
type: null;
|
|
113
|
-
required: true;
|
|
114
|
-
};
|
|
115
|
-
list: {
|
|
116
|
-
type: ArrayConstructor;
|
|
117
|
-
required: false;
|
|
118
|
-
default: () => never[];
|
|
119
|
-
};
|
|
120
|
-
propItems: {
|
|
121
|
-
type: null;
|
|
122
|
-
required: true;
|
|
123
|
-
};
|
|
124
|
-
}>>, {
|
|
125
|
-
list: unknown[];
|
|
126
|
-
}>;
|
|
127
|
-
PopupMenu: import("vue").DefineComponent<{
|
|
128
|
-
show: {
|
|
129
|
-
type: BooleanConstructor;
|
|
130
|
-
default: boolean;
|
|
131
|
-
};
|
|
132
|
-
list: {
|
|
133
|
-
type: ArrayConstructor;
|
|
134
|
-
default: () => never[];
|
|
135
|
-
};
|
|
136
|
-
point: {
|
|
137
|
-
type: PropType<import("./interface").ICoordinateValue>;
|
|
138
|
-
};
|
|
139
|
-
propItems: {
|
|
140
|
-
type: PropType<import("./interface").IPropItems>;
|
|
141
|
-
};
|
|
142
|
-
target: {
|
|
143
|
-
type: PropType<any>;
|
|
144
|
-
};
|
|
145
|
-
}, () => 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<{
|
|
146
|
-
show: {
|
|
147
|
-
type: BooleanConstructor;
|
|
148
|
-
default: boolean;
|
|
149
|
-
};
|
|
150
|
-
list: {
|
|
151
|
-
type: ArrayConstructor;
|
|
152
|
-
default: () => never[];
|
|
153
|
-
};
|
|
154
|
-
point: {
|
|
155
|
-
type: PropType<import("./interface").ICoordinateValue>;
|
|
156
|
-
};
|
|
157
|
-
propItems: {
|
|
158
|
-
type: PropType<import("./interface").IPropItems>;
|
|
159
|
-
};
|
|
160
|
-
target: {
|
|
161
|
-
type: PropType<any>;
|
|
162
|
-
};
|
|
163
|
-
}>> & {
|
|
164
|
-
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
165
|
-
onClickMenu?: ((...args: any[]) => any) | undefined;
|
|
166
|
-
}, {
|
|
167
|
-
show: boolean;
|
|
168
|
-
list: unknown[];
|
|
169
|
-
}>;
|
|
170
|
-
}, 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<{
|
|
171
|
-
data: {
|
|
172
|
-
type: PropType<IBirthProcessData>;
|
|
173
|
-
required: true;
|
|
174
|
-
};
|
|
175
|
-
}>> & {
|
|
176
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
177
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
178
|
-
onDelete?: ((...args: any[]) => any) | undefined;
|
|
179
|
-
onAdd?: ((...args: any[]) => any) | undefined;
|
|
180
|
-
}, {}>;
|
|
181
|
-
export default _default;
|