cnhis-design-vue 3.1.41-beta.31 → 3.1.41-beta.33
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/src/hooks/useBirthProcess.js +1 -1
- package/es/components/fabric-chart/src/hooks/useBirthProcessChart.js +1 -1
- package/es/components/form-config/index.d.ts +27 -27
- package/es/components/form-config/src/FormConfig.vue.d.ts +27 -27
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +11 -11
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +14 -14
- package/es/components/form-render/index.d.ts +11 -11
- package/es/components/form-render/src/FormRender.vue.d.ts +11 -11
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +11 -11
- package/es/components/form-render/src/FormRenderWrapper.vue.js +1 -1
- package/es/components/form-render/src/components/renderer/radio&checkbox.d.ts +2 -2
- package/es/components/form-render/src/components/renderer/radio_checkbox.js +1 -1
- package/es/components/form-render/src/components/renderer/select.js +1 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.d.ts +1 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
- package/es/components/form-render/src/hooks/useFormRenderOptions.d.ts +4 -2
- package/es/components/form-render/src/hooks/useFormRenderOptions.js +1 -1
- package/es/components/index.css +1 -1
- package/es/components/info-header/index.d.ts +421 -141
- package/es/components/info-header/src/InfoHeader.vue.d.ts +422 -141
- package/es/components/info-header/src/InfoHeader.vue.js +1 -1
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.d.ts +320 -0
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.js +1 -0
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +447 -0
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.js +1 -0
- package/es/components/info-header/src/components/infoDescription/HiddenContent.vue.d.ts +2 -2
- package/es/components/info-header/src/components/infoDescription/InfoEllipsis.vue.d.ts +1 -1
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +412 -139
- package/es/components/info-header/src/components/infoDescription/index.vue.js +1 -1
- package/es/components/info-header/src/constants/index.d.ts +4 -0
- package/es/components/info-header/src/constants/index.js +1 -0
- package/es/components/info-header/src/hooks/useThemeOverrides.d.ts +4 -0
- package/es/components/info-header/src/hooks/useThemeOverrides.js +1 -0
- package/es/components/info-header/src/types/index.d.ts +12 -3
- package/es/components/info-header/style/index.css +1 -1
- package/es/components/shortcut-setter/index.d.ts +12 -12
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +12 -12
- package/package.json +2 -2
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AnyObject, Func } from '../../../../es/shared/types';
|
|
2
2
|
import { PropType, VNode } from 'vue';
|
|
3
|
+
import { FormRenderExpose } from '../../../../es/components/form-render';
|
|
3
4
|
declare const _default: import("vue").DefineComponent<{
|
|
4
5
|
compact: {
|
|
5
6
|
type: BooleanConstructor;
|
|
@@ -118,11 +119,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
118
119
|
default: () => string[];
|
|
119
120
|
};
|
|
120
121
|
}>> & {
|
|
122
|
+
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
121
123
|
onOpenPatientInfo?: ((...args: any[]) => any) | undefined;
|
|
122
124
|
onFieldSet?: ((...args: any[]) => any) | undefined;
|
|
123
125
|
"onUpdate:compact"?: ((...args: any[]) => any) | undefined;
|
|
124
126
|
}>>;
|
|
125
|
-
emit: (event: "openPatientInfo" | "fieldSet" | "update:compact", ...args: any[]) => void;
|
|
127
|
+
emit: (event: "openPatientInfo" | "fieldSet" | "update:compact" | "formChange", ...args: any[]) => void;
|
|
126
128
|
infoDescriptionRef: import("vue").Ref<{
|
|
127
129
|
updateColumn: Func;
|
|
128
130
|
} | undefined>;
|
|
@@ -138,12 +140,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
138
140
|
event: Func;
|
|
139
141
|
render: () => VNode[];
|
|
140
142
|
}[]>;
|
|
143
|
+
formRenderRef: import("vue").Ref<FormRenderExpose | undefined>;
|
|
141
144
|
InfoDescription: import("vue").DefineComponent<{
|
|
142
|
-
compact: {
|
|
143
|
-
type: BooleanConstructor;
|
|
144
|
-
required: false;
|
|
145
|
-
default: boolean;
|
|
146
|
-
};
|
|
147
145
|
infoList: {
|
|
148
146
|
type: ArrayConstructor;
|
|
149
147
|
required: false;
|
|
@@ -164,33 +162,33 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
164
162
|
required: false;
|
|
165
163
|
default: number;
|
|
166
164
|
};
|
|
167
|
-
rowHeight: {
|
|
168
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
169
|
-
required: false;
|
|
170
|
-
default: number;
|
|
171
|
-
};
|
|
172
165
|
rootSlot: {
|
|
173
166
|
type: ObjectConstructor;
|
|
174
167
|
required: true;
|
|
175
168
|
};
|
|
176
169
|
}, {
|
|
177
170
|
props: {
|
|
178
|
-
compact: boolean;
|
|
179
171
|
infoList: Partial<{
|
|
180
172
|
[K: string]: any;
|
|
181
|
-
slot: string | (
|
|
173
|
+
slot: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | ((payload: {
|
|
174
|
+
width: unknown;
|
|
175
|
+
item: Partial<any>;
|
|
176
|
+
}) => any);
|
|
182
177
|
tip: string;
|
|
183
|
-
formField: import("
|
|
178
|
+
formField: Partial<import("../../../../es/components/form-render").FieldItem>;
|
|
179
|
+
edit: boolean;
|
|
184
180
|
}>[];
|
|
185
181
|
labelField: string;
|
|
186
182
|
valueField: string;
|
|
187
183
|
minColumnWidth: string | number;
|
|
188
|
-
rowHeight: string | number;
|
|
189
184
|
rootSlot: Record<string, Func<any[], any>>;
|
|
190
185
|
};
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
186
|
+
themeOverrides: import("naive-ui").GlobalThemeOverrides;
|
|
187
|
+
globEmit: ((eventName: string, ...payload: any[]) => void) | undefined;
|
|
188
|
+
hasForm: import("vue").ComputedRef<boolean>;
|
|
189
|
+
initialData: import("vue").ComputedRef<Record<string, any>>;
|
|
190
|
+
onFormChange: (payload: import("../../../../es/components/form-render").FormChangePayload) => void;
|
|
191
|
+
formRenderRef: import("vue").Ref<FormRenderExpose | undefined> | undefined;
|
|
194
192
|
columnNum: import("vue").Ref<number>;
|
|
195
193
|
infoRef: import("vue").Ref<HTMLElement | undefined>;
|
|
196
194
|
maxColumnWidth: import("vue").Ref<number>;
|
|
@@ -209,165 +207,454 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
209
207
|
timer: any;
|
|
210
208
|
stopInterval: () => void;
|
|
211
209
|
startInterval: () => void;
|
|
212
|
-
NDescriptions: any;
|
|
213
|
-
NDescriptionsItem: import("vue").DefineComponent<{
|
|
214
|
-
readonly label: StringConstructor;
|
|
215
|
-
readonly span: {
|
|
216
|
-
readonly type: NumberConstructor;
|
|
217
|
-
readonly default: 1;
|
|
218
|
-
};
|
|
219
|
-
readonly labelStyle: PropType<string | import("vue").CSSProperties>;
|
|
220
|
-
readonly contentStyle: PropType<string | import("vue").CSSProperties>;
|
|
221
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
222
|
-
readonly label: StringConstructor;
|
|
223
|
-
readonly span: {
|
|
224
|
-
readonly type: NumberConstructor;
|
|
225
|
-
readonly default: 1;
|
|
226
|
-
};
|
|
227
|
-
readonly labelStyle: PropType<string | import("vue").CSSProperties>;
|
|
228
|
-
readonly contentStyle: PropType<string | import("vue").CSSProperties>;
|
|
229
|
-
}>>, {
|
|
230
|
-
readonly span: number;
|
|
231
|
-
}>;
|
|
232
210
|
NScrollbar: any;
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
type: PropType<Record<string, Func<any[], any>>>;
|
|
211
|
+
NConfigProvider: any;
|
|
212
|
+
DescriptionList: import("vue").DefineComponent<{
|
|
213
|
+
infoList: {
|
|
214
|
+
type: ArrayConstructor;
|
|
215
|
+
required: false;
|
|
216
|
+
default: () => never[];
|
|
240
217
|
};
|
|
241
|
-
|
|
242
|
-
renderer: {
|
|
243
|
-
type: PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | Func<any[], any>>;
|
|
244
|
-
required: true;
|
|
245
|
-
};
|
|
246
|
-
rootSlots: {
|
|
247
|
-
type: PropType<Record<string, Func<any[], any>>>;
|
|
248
|
-
};
|
|
249
|
-
}>>, {}>;
|
|
250
|
-
InfoEllipsis: import("vue").DefineComponent<{
|
|
251
|
-
content: {
|
|
218
|
+
labelField: {
|
|
252
219
|
type: StringConstructor;
|
|
220
|
+
required: false;
|
|
253
221
|
default: string;
|
|
254
222
|
};
|
|
255
|
-
|
|
256
|
-
type: StringConstructor;
|
|
257
|
-
};
|
|
258
|
-
contentStyle: {
|
|
259
|
-
type: PropType<import("vue").CSSProperties>;
|
|
260
|
-
default: () => {};
|
|
261
|
-
};
|
|
262
|
-
}, {
|
|
263
|
-
NEllipsis: any;
|
|
264
|
-
NTooltip: any;
|
|
265
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
266
|
-
content: {
|
|
223
|
+
valueField: {
|
|
267
224
|
type: StringConstructor;
|
|
225
|
+
required: false;
|
|
268
226
|
default: string;
|
|
269
227
|
};
|
|
270
|
-
|
|
271
|
-
type:
|
|
272
|
-
|
|
273
|
-
contentStyle: {
|
|
274
|
-
type: PropType<import("vue").CSSProperties>;
|
|
275
|
-
default: () => {};
|
|
228
|
+
rootSlot: {
|
|
229
|
+
type: ObjectConstructor;
|
|
230
|
+
required: true;
|
|
276
231
|
};
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
HiddenContent: import("vue").DefineComponent<{
|
|
282
|
-
content: {
|
|
283
|
-
type: StringConstructor;
|
|
284
|
-
default: string;
|
|
232
|
+
descriptionWidthList: {
|
|
233
|
+
type: ArrayConstructor;
|
|
234
|
+
required: true;
|
|
235
|
+
default: () => never[];
|
|
285
236
|
};
|
|
286
|
-
|
|
287
|
-
width: {
|
|
237
|
+
columnNum: {
|
|
288
238
|
type: NumberConstructor;
|
|
239
|
+
required: true;
|
|
240
|
+
default: number;
|
|
289
241
|
};
|
|
290
|
-
|
|
291
|
-
type:
|
|
292
|
-
|
|
242
|
+
inForm: {
|
|
243
|
+
type: BooleanConstructor;
|
|
244
|
+
required: false;
|
|
293
245
|
};
|
|
294
246
|
}, {
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
247
|
+
descriptionStyle: {
|
|
248
|
+
height: string;
|
|
249
|
+
display: string;
|
|
250
|
+
'align-items': string;
|
|
251
|
+
};
|
|
252
|
+
NDescriptions: any;
|
|
253
|
+
NDescriptionsItem: import("vue").DefineComponent<{
|
|
254
|
+
readonly label: StringConstructor;
|
|
255
|
+
readonly span: {
|
|
256
|
+
readonly type: NumberConstructor;
|
|
257
|
+
readonly default: 1;
|
|
299
258
|
};
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
259
|
+
readonly labelStyle: PropType<string | import("vue").CSSProperties>;
|
|
260
|
+
readonly contentStyle: PropType<string | import("vue").CSSProperties>;
|
|
261
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
262
|
+
readonly label: StringConstructor;
|
|
263
|
+
readonly span: {
|
|
264
|
+
readonly type: NumberConstructor;
|
|
265
|
+
readonly default: 1;
|
|
303
266
|
};
|
|
304
|
-
|
|
305
|
-
|
|
267
|
+
readonly labelStyle: PropType<string | import("vue").CSSProperties>;
|
|
268
|
+
readonly contentStyle: PropType<string | import("vue").CSSProperties>;
|
|
269
|
+
}>>, {
|
|
270
|
+
readonly span: number;
|
|
271
|
+
}>;
|
|
272
|
+
DescriptionItem: import("vue").DefineComponent<{
|
|
273
|
+
infoItem: {
|
|
274
|
+
type: null;
|
|
275
|
+
required: true;
|
|
306
276
|
default: () => {};
|
|
307
277
|
};
|
|
308
|
-
|
|
309
|
-
hidden: import("vue").Ref<boolean>;
|
|
310
|
-
toggleHidden: () => void;
|
|
311
|
-
wrapperStyle: import("vue").ComputedRef<{
|
|
312
|
-
maxWidth: string;
|
|
313
|
-
width: string;
|
|
314
|
-
}>;
|
|
315
|
-
parsedContentStyle: import("vue").ComputedRef<{}>;
|
|
316
|
-
displayContent: import("vue").ComputedRef<string>;
|
|
317
|
-
InfoEllipsis: import("vue").DefineComponent<{
|
|
318
|
-
content: {
|
|
278
|
+
labelField: {
|
|
319
279
|
type: StringConstructor;
|
|
280
|
+
required: false;
|
|
320
281
|
default: string;
|
|
321
282
|
};
|
|
322
|
-
|
|
283
|
+
valueField: {
|
|
323
284
|
type: StringConstructor;
|
|
285
|
+
required: false;
|
|
286
|
+
default: string;
|
|
324
287
|
};
|
|
325
|
-
|
|
326
|
-
type:
|
|
327
|
-
|
|
288
|
+
width: {
|
|
289
|
+
type: NumberConstructor;
|
|
290
|
+
required: false;
|
|
291
|
+
};
|
|
292
|
+
rootSlot: {
|
|
293
|
+
type: ObjectConstructor;
|
|
294
|
+
required: true;
|
|
328
295
|
};
|
|
329
296
|
}, {
|
|
330
|
-
|
|
331
|
-
|
|
297
|
+
props: {
|
|
298
|
+
infoItem: Partial<{
|
|
299
|
+
[K: string]: any;
|
|
300
|
+
slot: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | ((payload: {
|
|
301
|
+
width: unknown;
|
|
302
|
+
item: Partial<any>;
|
|
303
|
+
}) => any);
|
|
304
|
+
tip: string;
|
|
305
|
+
formField: Partial<import("../../../../es/components/form-render").FieldItem>;
|
|
306
|
+
edit: boolean;
|
|
307
|
+
}>;
|
|
308
|
+
labelField: string;
|
|
309
|
+
valueField: string;
|
|
310
|
+
width?: number | undefined;
|
|
311
|
+
rootSlot: Record<string, any>;
|
|
312
|
+
};
|
|
313
|
+
SchemaField: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
314
|
+
formRenderRef: import("vue").Ref<FormRenderExpose | undefined>;
|
|
315
|
+
onItemDblclick: (item: Partial<{
|
|
316
|
+
[K: string]: any;
|
|
317
|
+
slot: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | ((payload: {
|
|
318
|
+
width: unknown;
|
|
319
|
+
item: Partial<any>;
|
|
320
|
+
}) => any);
|
|
321
|
+
tip: string;
|
|
322
|
+
formField: Partial<import("../../../../es/components/form-render").FieldItem>;
|
|
323
|
+
edit: boolean;
|
|
324
|
+
}>) => Promise<void>;
|
|
325
|
+
onItemClick: (item: Partial<{
|
|
326
|
+
[K: string]: any;
|
|
327
|
+
slot: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | ((payload: {
|
|
328
|
+
width: unknown;
|
|
329
|
+
item: Partial<any>;
|
|
330
|
+
}) => any);
|
|
331
|
+
tip: string;
|
|
332
|
+
formField: Partial<import("../../../../es/components/form-render").FieldItem>;
|
|
333
|
+
edit: boolean;
|
|
334
|
+
}>) => Promise<void>;
|
|
335
|
+
collector: import("../../../../es/components/form-render").BusinessCollector | undefined;
|
|
336
|
+
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[]) => Record<string, import("@formily/json-schema").Stringify<{
|
|
337
|
+
[key: symbol]: any;
|
|
338
|
+
[key: `x-${string}`]: any;
|
|
339
|
+
[key: `x-${number}`]: any;
|
|
340
|
+
version?: string | undefined;
|
|
341
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
342
|
+
title?: any;
|
|
343
|
+
description?: any;
|
|
344
|
+
default?: any;
|
|
345
|
+
readOnly?: boolean | undefined;
|
|
346
|
+
writeOnly?: boolean | undefined;
|
|
347
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
348
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
349
|
+
const?: any;
|
|
350
|
+
multipleOf?: number | undefined;
|
|
351
|
+
maximum?: number | undefined;
|
|
352
|
+
exclusiveMaximum?: number | undefined;
|
|
353
|
+
minimum?: number | undefined;
|
|
354
|
+
exclusiveMinimum?: number | undefined;
|
|
355
|
+
maxLength?: number | undefined;
|
|
356
|
+
minLength?: number | undefined;
|
|
357
|
+
pattern?: string | RegExp | undefined;
|
|
358
|
+
maxItems?: number | undefined;
|
|
359
|
+
minItems?: number | undefined;
|
|
360
|
+
uniqueItems?: boolean | undefined;
|
|
361
|
+
maxProperties?: number | undefined;
|
|
362
|
+
minProperties?: number | undefined;
|
|
363
|
+
required?: string | boolean | string[] | undefined;
|
|
364
|
+
format?: string | undefined;
|
|
365
|
+
$ref?: string | undefined;
|
|
366
|
+
$namespace?: string | undefined;
|
|
367
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
368
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
369
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
370
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
371
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
372
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
373
|
+
"x-value"?: any;
|
|
374
|
+
"x-index"?: number | undefined;
|
|
375
|
+
"x-pattern"?: any;
|
|
376
|
+
"x-display"?: any;
|
|
377
|
+
"x-validator"?: any;
|
|
378
|
+
"x-decorator"?: any;
|
|
379
|
+
"x-decorator-props"?: any;
|
|
380
|
+
"x-component"?: any;
|
|
381
|
+
"x-component-props"?: any;
|
|
382
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
383
|
+
"x-content"?: any;
|
|
384
|
+
"x-data"?: any;
|
|
385
|
+
"x-visible"?: boolean | undefined;
|
|
386
|
+
"x-hidden"?: boolean | undefined;
|
|
387
|
+
"x-disabled"?: boolean | undefined;
|
|
388
|
+
"x-editable"?: boolean | undefined;
|
|
389
|
+
"x-read-only"?: boolean | undefined;
|
|
390
|
+
"x-read-pretty"?: boolean | undefined;
|
|
391
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
392
|
+
}>>;
|
|
393
|
+
formModel: import("vue").Ref<import("../../../../es/components/form-render").Form<any>>;
|
|
394
|
+
schema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
|
|
395
|
+
[key: symbol]: any;
|
|
396
|
+
[key: `x-${string}`]: any;
|
|
397
|
+
[key: `x-${number}`]: any;
|
|
398
|
+
version?: string | undefined;
|
|
399
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
400
|
+
title?: any;
|
|
401
|
+
description?: any;
|
|
402
|
+
default?: any;
|
|
403
|
+
readOnly?: boolean | undefined;
|
|
404
|
+
writeOnly?: boolean | undefined;
|
|
405
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
406
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
407
|
+
const?: any;
|
|
408
|
+
multipleOf?: number | undefined;
|
|
409
|
+
maximum?: number | undefined;
|
|
410
|
+
exclusiveMaximum?: number | undefined;
|
|
411
|
+
minimum?: number | undefined;
|
|
412
|
+
exclusiveMinimum?: number | undefined;
|
|
413
|
+
maxLength?: number | undefined;
|
|
414
|
+
minLength?: number | undefined;
|
|
415
|
+
pattern?: string | RegExp | undefined;
|
|
416
|
+
maxItems?: number | undefined;
|
|
417
|
+
minItems?: number | undefined;
|
|
418
|
+
uniqueItems?: boolean | undefined;
|
|
419
|
+
maxProperties?: number | undefined;
|
|
420
|
+
minProperties?: number | undefined;
|
|
421
|
+
required?: string | boolean | string[] | undefined;
|
|
422
|
+
format?: string | undefined;
|
|
423
|
+
$ref?: string | undefined;
|
|
424
|
+
$namespace?: string | undefined;
|
|
425
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
426
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
427
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
428
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
429
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
430
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
431
|
+
"x-value"?: any;
|
|
432
|
+
"x-index"?: number | undefined;
|
|
433
|
+
"x-pattern"?: any;
|
|
434
|
+
"x-display"?: any;
|
|
435
|
+
"x-validator"?: any;
|
|
436
|
+
"x-decorator"?: any;
|
|
437
|
+
"x-decorator-props"?: any;
|
|
438
|
+
"x-component"?: any;
|
|
439
|
+
"x-component-props"?: any;
|
|
440
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
441
|
+
"x-content"?: any;
|
|
442
|
+
"x-data"?: any;
|
|
443
|
+
"x-visible"?: boolean | undefined;
|
|
444
|
+
"x-hidden"?: boolean | undefined;
|
|
445
|
+
"x-disabled"?: boolean | undefined;
|
|
446
|
+
"x-editable"?: boolean | undefined;
|
|
447
|
+
"x-read-only"?: boolean | undefined;
|
|
448
|
+
"x-read-pretty"?: boolean | undefined;
|
|
449
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
450
|
+
}>>;
|
|
451
|
+
itemStyle: import("vue").ComputedRef<any>;
|
|
452
|
+
ellipsisStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
453
|
+
isHiddenContent: import("vue").ComputedRef<boolean>;
|
|
454
|
+
HiddenContent: import("vue").DefineComponent<{
|
|
455
|
+
content: {
|
|
456
|
+
type: StringConstructor;
|
|
457
|
+
default: string;
|
|
458
|
+
};
|
|
459
|
+
tip: StringConstructor;
|
|
460
|
+
width: {
|
|
461
|
+
type: NumberConstructor;
|
|
462
|
+
};
|
|
463
|
+
contentStyle: {
|
|
464
|
+
type: PropType<import("vue").CSSProperties>;
|
|
465
|
+
default: () => {};
|
|
466
|
+
};
|
|
467
|
+
}, {
|
|
468
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
469
|
+
content: {
|
|
470
|
+
type: StringConstructor;
|
|
471
|
+
default: string;
|
|
472
|
+
};
|
|
473
|
+
tip: StringConstructor;
|
|
474
|
+
width: {
|
|
475
|
+
type: NumberConstructor;
|
|
476
|
+
};
|
|
477
|
+
contentStyle: {
|
|
478
|
+
type: PropType<import("vue").CSSProperties>;
|
|
479
|
+
default: () => {};
|
|
480
|
+
};
|
|
481
|
+
}>> & {}>>;
|
|
482
|
+
hidden: import("vue").Ref<boolean>;
|
|
483
|
+
toggleHidden: () => void;
|
|
484
|
+
wrapperStyle: import("vue").ComputedRef<{
|
|
485
|
+
maxWidth: string;
|
|
486
|
+
width: string;
|
|
487
|
+
}>;
|
|
488
|
+
parsedContentStyle: import("vue").ComputedRef<{}>;
|
|
489
|
+
displayContent: import("vue").ComputedRef<string>;
|
|
490
|
+
InfoEllipsis: import("vue").DefineComponent<{
|
|
491
|
+
content: {
|
|
492
|
+
type: StringConstructor;
|
|
493
|
+
default: string;
|
|
494
|
+
};
|
|
495
|
+
tip: {
|
|
496
|
+
type: StringConstructor;
|
|
497
|
+
};
|
|
498
|
+
contentStyle: {
|
|
499
|
+
type: PropType<import("vue").CSSProperties>;
|
|
500
|
+
default: () => {};
|
|
501
|
+
};
|
|
502
|
+
}, {
|
|
503
|
+
NEllipsis: any;
|
|
504
|
+
NTooltip: any;
|
|
505
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
506
|
+
content: {
|
|
507
|
+
type: StringConstructor;
|
|
508
|
+
default: string;
|
|
509
|
+
};
|
|
510
|
+
tip: {
|
|
511
|
+
type: StringConstructor;
|
|
512
|
+
};
|
|
513
|
+
contentStyle: {
|
|
514
|
+
type: PropType<import("vue").CSSProperties>;
|
|
515
|
+
default: () => {};
|
|
516
|
+
};
|
|
517
|
+
}>>, {
|
|
518
|
+
content: string;
|
|
519
|
+
contentStyle: import("vue").CSSProperties;
|
|
520
|
+
}>;
|
|
521
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
522
|
+
content: {
|
|
523
|
+
type: StringConstructor;
|
|
524
|
+
default: string;
|
|
525
|
+
};
|
|
526
|
+
tip: StringConstructor;
|
|
527
|
+
width: {
|
|
528
|
+
type: NumberConstructor;
|
|
529
|
+
};
|
|
530
|
+
contentStyle: {
|
|
531
|
+
type: PropType<import("vue").CSSProperties>;
|
|
532
|
+
default: () => {};
|
|
533
|
+
};
|
|
534
|
+
}>>, {
|
|
535
|
+
content: string;
|
|
536
|
+
contentStyle: import("vue").CSSProperties;
|
|
537
|
+
}>;
|
|
538
|
+
InfoEllipsis: import("vue").DefineComponent<{
|
|
539
|
+
content: {
|
|
540
|
+
type: StringConstructor;
|
|
541
|
+
default: string;
|
|
542
|
+
};
|
|
543
|
+
tip: {
|
|
544
|
+
type: StringConstructor;
|
|
545
|
+
};
|
|
546
|
+
contentStyle: {
|
|
547
|
+
type: PropType<import("vue").CSSProperties>;
|
|
548
|
+
default: () => {};
|
|
549
|
+
};
|
|
550
|
+
}, {
|
|
551
|
+
NEllipsis: any;
|
|
552
|
+
NTooltip: any;
|
|
553
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
554
|
+
content: {
|
|
555
|
+
type: StringConstructor;
|
|
556
|
+
default: string;
|
|
557
|
+
};
|
|
558
|
+
tip: {
|
|
559
|
+
type: StringConstructor;
|
|
560
|
+
};
|
|
561
|
+
contentStyle: {
|
|
562
|
+
type: PropType<import("vue").CSSProperties>;
|
|
563
|
+
default: () => {};
|
|
564
|
+
};
|
|
565
|
+
}>>, {
|
|
566
|
+
content: string;
|
|
567
|
+
contentStyle: import("vue").CSSProperties;
|
|
568
|
+
}>;
|
|
569
|
+
SlotRender: import("vue").DefineComponent<{
|
|
570
|
+
renderer: {
|
|
571
|
+
type: PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | Func<any[], any>>;
|
|
572
|
+
required: true;
|
|
573
|
+
};
|
|
574
|
+
rootSlots: {
|
|
575
|
+
type: PropType<Record<string, Func<any[], any>>>;
|
|
576
|
+
};
|
|
577
|
+
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
578
|
+
renderer: {
|
|
579
|
+
type: PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | Func<any[], any>>;
|
|
580
|
+
required: true;
|
|
581
|
+
};
|
|
582
|
+
rootSlots: {
|
|
583
|
+
type: PropType<Record<string, Func<any[], any>>>;
|
|
584
|
+
};
|
|
585
|
+
}>>, {}>;
|
|
332
586
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
333
|
-
|
|
587
|
+
infoItem: {
|
|
588
|
+
type: null;
|
|
589
|
+
required: true;
|
|
590
|
+
default: () => {};
|
|
591
|
+
};
|
|
592
|
+
labelField: {
|
|
334
593
|
type: StringConstructor;
|
|
594
|
+
required: false;
|
|
335
595
|
default: string;
|
|
336
596
|
};
|
|
337
|
-
|
|
597
|
+
valueField: {
|
|
338
598
|
type: StringConstructor;
|
|
599
|
+
required: false;
|
|
600
|
+
default: string;
|
|
339
601
|
};
|
|
340
|
-
|
|
341
|
-
type:
|
|
342
|
-
|
|
602
|
+
width: {
|
|
603
|
+
type: NumberConstructor;
|
|
604
|
+
required: false;
|
|
605
|
+
};
|
|
606
|
+
rootSlot: {
|
|
607
|
+
type: ObjectConstructor;
|
|
608
|
+
required: true;
|
|
343
609
|
};
|
|
344
610
|
}>>, {
|
|
345
|
-
|
|
346
|
-
|
|
611
|
+
labelField: string;
|
|
612
|
+
valueField: string;
|
|
613
|
+
infoItem: any;
|
|
347
614
|
}>;
|
|
348
615
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
349
|
-
|
|
616
|
+
infoList: {
|
|
617
|
+
type: ArrayConstructor;
|
|
618
|
+
required: false;
|
|
619
|
+
default: () => never[];
|
|
620
|
+
};
|
|
621
|
+
labelField: {
|
|
350
622
|
type: StringConstructor;
|
|
623
|
+
required: false;
|
|
351
624
|
default: string;
|
|
352
625
|
};
|
|
353
|
-
|
|
354
|
-
|
|
626
|
+
valueField: {
|
|
627
|
+
type: StringConstructor;
|
|
628
|
+
required: false;
|
|
629
|
+
default: string;
|
|
630
|
+
};
|
|
631
|
+
rootSlot: {
|
|
632
|
+
type: ObjectConstructor;
|
|
633
|
+
required: true;
|
|
634
|
+
};
|
|
635
|
+
descriptionWidthList: {
|
|
636
|
+
type: ArrayConstructor;
|
|
637
|
+
required: true;
|
|
638
|
+
default: () => never[];
|
|
639
|
+
};
|
|
640
|
+
columnNum: {
|
|
355
641
|
type: NumberConstructor;
|
|
642
|
+
required: true;
|
|
643
|
+
default: number;
|
|
356
644
|
};
|
|
357
|
-
|
|
358
|
-
type:
|
|
359
|
-
|
|
645
|
+
inForm: {
|
|
646
|
+
type: BooleanConstructor;
|
|
647
|
+
required: false;
|
|
360
648
|
};
|
|
361
649
|
}>>, {
|
|
362
|
-
|
|
363
|
-
|
|
650
|
+
infoList: unknown[];
|
|
651
|
+
labelField: string;
|
|
652
|
+
valueField: string;
|
|
653
|
+
descriptionWidthList: unknown[];
|
|
654
|
+
columnNum: number;
|
|
655
|
+
inForm: boolean;
|
|
364
656
|
}>;
|
|
365
657
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
366
|
-
compact: {
|
|
367
|
-
type: BooleanConstructor;
|
|
368
|
-
required: false;
|
|
369
|
-
default: boolean;
|
|
370
|
-
};
|
|
371
658
|
infoList: {
|
|
372
659
|
type: ArrayConstructor;
|
|
373
660
|
required: false;
|
|
@@ -388,22 +675,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
388
675
|
required: false;
|
|
389
676
|
default: number;
|
|
390
677
|
};
|
|
391
|
-
rowHeight: {
|
|
392
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
393
|
-
required: false;
|
|
394
|
-
default: number;
|
|
395
|
-
};
|
|
396
678
|
rootSlot: {
|
|
397
679
|
type: ObjectConstructor;
|
|
398
680
|
required: true;
|
|
399
681
|
};
|
|
400
682
|
}>>, {
|
|
401
|
-
compact: boolean;
|
|
402
683
|
infoList: unknown[];
|
|
403
684
|
labelField: string;
|
|
404
685
|
valueField: string;
|
|
405
686
|
minColumnWidth: string | number;
|
|
406
|
-
rowHeight: string | number;
|
|
407
687
|
}>;
|
|
408
688
|
PatientInfo: import("vue").DefineComponent<{
|
|
409
689
|
patientInfo: {
|
|
@@ -467,7 +747,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
467
747
|
}>>, {
|
|
468
748
|
patientInfo: any;
|
|
469
749
|
}>;
|
|
470
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("openPatientInfo" | "fieldSet" | "update:compact")[], "openPatientInfo" | "fieldSet" | "update:compact", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
750
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("openPatientInfo" | "fieldSet" | "update:compact" | "formChange")[], "openPatientInfo" | "fieldSet" | "update:compact" | "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
471
751
|
compact: {
|
|
472
752
|
type: BooleanConstructor;
|
|
473
753
|
required: true;
|
|
@@ -526,6 +806,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
526
806
|
default: () => string[];
|
|
527
807
|
};
|
|
528
808
|
}>> & {
|
|
809
|
+
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
529
810
|
onOpenPatientInfo?: ((...args: any[]) => any) | undefined;
|
|
530
811
|
onFieldSet?: ((...args: any[]) => any) | undefined;
|
|
531
812
|
"onUpdate:compact"?: ((...args: any[]) => any) | undefined;
|