cnhis-design-vue 3.2.5-beta.33 → 3.2.5-beta.36
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/biunique-chat/src/components/ChatFooter.vue2.js +1 -1
- package/es/components/button-print/index.d.ts +2 -2
- package/es/components/button-print/src/ButtonPrint.vue.d.ts +2 -2
- package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +2 -2
- package/es/components/button-print/src/components/OldPrintComponent.vue2.js +1 -1
- package/es/components/callback/src/components/render/popupMaps.d.ts +71 -0
- package/es/components/classification/src/components/table-modal/index.vue.d.ts +3 -0
- package/es/components/classification/src/index.vue.d.ts +3 -0
- package/es/components/form-config/index.d.ts +142 -0
- package/es/components/form-config/src/FormConfig.vue.d.ts +142 -0
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +71 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +71 -0
- package/es/components/form-render/index.d.ts +71 -0
- package/es/components/form-render/src/FormRender.vue.d.ts +71 -0
- package/es/components/form-render/src/FormRender.vue2.js +1 -1
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +71 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.js +1 -1
- 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 +142 -0
- package/es/components/info-header/src/InfoHeader.vue.d.ts +142 -0
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +71 -0
- package/es/components/info-header/src/components/patientInfo/index.vue.d.ts +71 -0
- package/es/components/shortcut-setter/index.d.ts +71 -0
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +71 -0
- package/es/env.d.ts +25 -25
- package/es/shared/hooks/index.js +1 -1
- package/es/shared/hooks/selectHooks/index.d.ts +1 -0
- package/es/shared/hooks/selectHooks/index.js +1 -1
- package/es/shared/hooks/selectHooks/useMenuWidthAuto.d.ts +12 -0
- package/es/shared/hooks/selectHooks/useMenuWidthAuto.js +1 -0
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
|
@@ -602,6 +602,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
602
602
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
603
603
|
default: boolean;
|
|
604
604
|
};
|
|
605
|
+
incrementalRender: {
|
|
606
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
607
|
+
default: boolean;
|
|
608
|
+
};
|
|
605
609
|
}, {
|
|
606
610
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
607
611
|
fieldList: {
|
|
@@ -793,6 +797,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
793
797
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
794
798
|
default: boolean;
|
|
795
799
|
};
|
|
800
|
+
incrementalRender: {
|
|
801
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
802
|
+
default: boolean;
|
|
803
|
+
};
|
|
796
804
|
}>> & {
|
|
797
805
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
798
806
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -1028,6 +1036,63 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1028
1036
|
"x-compile-omitted"?: string[] | undefined;
|
|
1029
1037
|
}>>;
|
|
1030
1038
|
_fieldList: import("../../../components/form-render").FieldItem[];
|
|
1039
|
+
incrementalRenderList: import("@formily/json-schema").Stringify<{
|
|
1040
|
+
[key: symbol]: any;
|
|
1041
|
+
[key: `x-${string}`]: any;
|
|
1042
|
+
[key: `x-${number}`]: any;
|
|
1043
|
+
version?: string | undefined;
|
|
1044
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
1045
|
+
title?: any;
|
|
1046
|
+
description?: any;
|
|
1047
|
+
default?: any;
|
|
1048
|
+
readOnly?: boolean | undefined;
|
|
1049
|
+
writeOnly?: boolean | undefined;
|
|
1050
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
1051
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
1052
|
+
const?: any;
|
|
1053
|
+
multipleOf?: number | undefined;
|
|
1054
|
+
maximum?: number | undefined;
|
|
1055
|
+
exclusiveMaximum?: number | undefined;
|
|
1056
|
+
minimum?: number | undefined;
|
|
1057
|
+
exclusiveMinimum?: number | undefined;
|
|
1058
|
+
maxLength?: number | undefined;
|
|
1059
|
+
minLength?: number | undefined;
|
|
1060
|
+
pattern?: string | RegExp | undefined;
|
|
1061
|
+
maxItems?: number | undefined;
|
|
1062
|
+
minItems?: number | undefined;
|
|
1063
|
+
uniqueItems?: boolean | undefined;
|
|
1064
|
+
maxProperties?: number | undefined;
|
|
1065
|
+
minProperties?: number | undefined;
|
|
1066
|
+
required?: string | boolean | string[] | undefined;
|
|
1067
|
+
format?: string | undefined;
|
|
1068
|
+
$ref?: string | undefined;
|
|
1069
|
+
$namespace?: string | undefined;
|
|
1070
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
1071
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
1072
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
1073
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
1074
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
1075
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
1076
|
+
"x-value"?: any;
|
|
1077
|
+
"x-index"?: number | undefined;
|
|
1078
|
+
"x-pattern"?: any;
|
|
1079
|
+
"x-display"?: any;
|
|
1080
|
+
"x-validator"?: any;
|
|
1081
|
+
"x-decorator"?: any;
|
|
1082
|
+
"x-decorator-props"?: any;
|
|
1083
|
+
"x-component"?: any;
|
|
1084
|
+
"x-component-props"?: any;
|
|
1085
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
1086
|
+
"x-content"?: any;
|
|
1087
|
+
"x-data"?: any;
|
|
1088
|
+
"x-visible"?: boolean | undefined;
|
|
1089
|
+
"x-hidden"?: boolean | undefined;
|
|
1090
|
+
"x-disabled"?: boolean | undefined;
|
|
1091
|
+
"x-editable"?: boolean | undefined;
|
|
1092
|
+
"x-read-only"?: boolean | undefined;
|
|
1093
|
+
"x-read-pretty"?: boolean | undefined;
|
|
1094
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
1095
|
+
}>[];
|
|
1031
1096
|
parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
|
|
1032
1097
|
[key: symbol]: any;
|
|
1033
1098
|
[key: `x-${string}`]: any;
|
|
@@ -1085,6 +1150,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1085
1150
|
"x-read-pretty"?: boolean | undefined;
|
|
1086
1151
|
"x-compile-omitted"?: string[] | undefined;
|
|
1087
1152
|
}>>;
|
|
1153
|
+
startIncrementalRender: () => void;
|
|
1088
1154
|
onKeydown: (event: KeyboardEvent) => Promise<void>;
|
|
1089
1155
|
clearSpan: (uuid: string) => void;
|
|
1090
1156
|
exposeEvent: Omit<FormRenderExpose, "getFieldList" | "formModel" | "reload">;
|
|
@@ -1337,6 +1403,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1337
1403
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
1338
1404
|
default: boolean;
|
|
1339
1405
|
};
|
|
1406
|
+
incrementalRender: {
|
|
1407
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
1408
|
+
default: boolean;
|
|
1409
|
+
};
|
|
1340
1410
|
}>> & {
|
|
1341
1411
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
1342
1412
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -1367,6 +1437,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1367
1437
|
linebarTextDirection: "horizontal" | "vertical";
|
|
1368
1438
|
autoWidth: number | boolean;
|
|
1369
1439
|
operationalFormInit: boolean;
|
|
1440
|
+
incrementalRender: number | boolean;
|
|
1370
1441
|
}>;
|
|
1371
1442
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
1372
1443
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -7169,6 +7240,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7169
7240
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
7170
7241
|
default: boolean;
|
|
7171
7242
|
};
|
|
7243
|
+
incrementalRender: {
|
|
7244
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
7245
|
+
default: boolean;
|
|
7246
|
+
};
|
|
7172
7247
|
}, {
|
|
7173
7248
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
7174
7249
|
fieldList: {
|
|
@@ -7360,6 +7435,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7360
7435
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
7361
7436
|
default: boolean;
|
|
7362
7437
|
};
|
|
7438
|
+
incrementalRender: {
|
|
7439
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
7440
|
+
default: boolean;
|
|
7441
|
+
};
|
|
7363
7442
|
}>> & {
|
|
7364
7443
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
7365
7444
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -7595,6 +7674,63 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7595
7674
|
"x-compile-omitted"?: string[] | undefined;
|
|
7596
7675
|
}>>;
|
|
7597
7676
|
_fieldList: import("../../../components/form-render").FieldItem[];
|
|
7677
|
+
incrementalRenderList: import("@formily/json-schema").Stringify<{
|
|
7678
|
+
[key: symbol]: any;
|
|
7679
|
+
[key: `x-${string}`]: any;
|
|
7680
|
+
[key: `x-${number}`]: any;
|
|
7681
|
+
version?: string | undefined;
|
|
7682
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
7683
|
+
title?: any;
|
|
7684
|
+
description?: any;
|
|
7685
|
+
default?: any;
|
|
7686
|
+
readOnly?: boolean | undefined;
|
|
7687
|
+
writeOnly?: boolean | undefined;
|
|
7688
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
7689
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
7690
|
+
const?: any;
|
|
7691
|
+
multipleOf?: number | undefined;
|
|
7692
|
+
maximum?: number | undefined;
|
|
7693
|
+
exclusiveMaximum?: number | undefined;
|
|
7694
|
+
minimum?: number | undefined;
|
|
7695
|
+
exclusiveMinimum?: number | undefined;
|
|
7696
|
+
maxLength?: number | undefined;
|
|
7697
|
+
minLength?: number | undefined;
|
|
7698
|
+
pattern?: string | RegExp | undefined;
|
|
7699
|
+
maxItems?: number | undefined;
|
|
7700
|
+
minItems?: number | undefined;
|
|
7701
|
+
uniqueItems?: boolean | undefined;
|
|
7702
|
+
maxProperties?: number | undefined;
|
|
7703
|
+
minProperties?: number | undefined;
|
|
7704
|
+
required?: string | boolean | string[] | undefined;
|
|
7705
|
+
format?: string | undefined;
|
|
7706
|
+
$ref?: string | undefined;
|
|
7707
|
+
$namespace?: string | undefined;
|
|
7708
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
7709
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
7710
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
7711
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
7712
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
7713
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
7714
|
+
"x-value"?: any;
|
|
7715
|
+
"x-index"?: number | undefined;
|
|
7716
|
+
"x-pattern"?: any;
|
|
7717
|
+
"x-display"?: any;
|
|
7718
|
+
"x-validator"?: any;
|
|
7719
|
+
"x-decorator"?: any;
|
|
7720
|
+
"x-decorator-props"?: any;
|
|
7721
|
+
"x-component"?: any;
|
|
7722
|
+
"x-component-props"?: any;
|
|
7723
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
7724
|
+
"x-content"?: any;
|
|
7725
|
+
"x-data"?: any;
|
|
7726
|
+
"x-visible"?: boolean | undefined;
|
|
7727
|
+
"x-hidden"?: boolean | undefined;
|
|
7728
|
+
"x-disabled"?: boolean | undefined;
|
|
7729
|
+
"x-editable"?: boolean | undefined;
|
|
7730
|
+
"x-read-only"?: boolean | undefined;
|
|
7731
|
+
"x-read-pretty"?: boolean | undefined;
|
|
7732
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
7733
|
+
}>[];
|
|
7598
7734
|
parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
|
|
7599
7735
|
[key: symbol]: any;
|
|
7600
7736
|
[key: `x-${string}`]: any;
|
|
@@ -7652,6 +7788,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7652
7788
|
"x-read-pretty"?: boolean | undefined;
|
|
7653
7789
|
"x-compile-omitted"?: string[] | undefined;
|
|
7654
7790
|
}>>;
|
|
7791
|
+
startIncrementalRender: () => void;
|
|
7655
7792
|
onKeydown: (event: KeyboardEvent) => Promise<void>;
|
|
7656
7793
|
clearSpan: (uuid: string) => void;
|
|
7657
7794
|
exposeEvent: Omit<FormRenderExpose, "getFieldList" | "formModel" | "reload">;
|
|
@@ -7904,6 +8041,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7904
8041
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
7905
8042
|
default: boolean;
|
|
7906
8043
|
};
|
|
8044
|
+
incrementalRender: {
|
|
8045
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
8046
|
+
default: boolean;
|
|
8047
|
+
};
|
|
7907
8048
|
}>> & {
|
|
7908
8049
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
7909
8050
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -7934,6 +8075,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7934
8075
|
linebarTextDirection: "horizontal" | "vertical";
|
|
7935
8076
|
autoWidth: number | boolean;
|
|
7936
8077
|
operationalFormInit: boolean;
|
|
8078
|
+
incrementalRender: number | boolean;
|
|
7937
8079
|
}>;
|
|
7938
8080
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
7939
8081
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -211,6 +211,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
211
211
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
212
212
|
default: boolean;
|
|
213
213
|
};
|
|
214
|
+
incrementalRender: {
|
|
215
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
216
|
+
default: boolean;
|
|
217
|
+
};
|
|
214
218
|
}, {
|
|
215
219
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
216
220
|
fieldList: {
|
|
@@ -402,6 +406,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
402
406
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
403
407
|
default: boolean;
|
|
404
408
|
};
|
|
409
|
+
incrementalRender: {
|
|
410
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
411
|
+
default: boolean;
|
|
412
|
+
};
|
|
405
413
|
}>> & {
|
|
406
414
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
407
415
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -637,6 +645,63 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
637
645
|
"x-compile-omitted"?: string[] | undefined;
|
|
638
646
|
}>>;
|
|
639
647
|
_fieldList: FieldItem[];
|
|
648
|
+
incrementalRenderList: import("@formily/json-schema").Stringify<{
|
|
649
|
+
[key: symbol]: any;
|
|
650
|
+
[key: `x-${string}`]: any;
|
|
651
|
+
[key: `x-${number}`]: any;
|
|
652
|
+
version?: string | undefined;
|
|
653
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
654
|
+
title?: any;
|
|
655
|
+
description?: any;
|
|
656
|
+
default?: any;
|
|
657
|
+
readOnly?: boolean | undefined;
|
|
658
|
+
writeOnly?: boolean | undefined;
|
|
659
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
660
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
661
|
+
const?: any;
|
|
662
|
+
multipleOf?: number | undefined;
|
|
663
|
+
maximum?: number | undefined;
|
|
664
|
+
exclusiveMaximum?: number | undefined;
|
|
665
|
+
minimum?: number | undefined;
|
|
666
|
+
exclusiveMinimum?: number | undefined;
|
|
667
|
+
maxLength?: number | undefined;
|
|
668
|
+
minLength?: number | undefined;
|
|
669
|
+
pattern?: string | RegExp | undefined;
|
|
670
|
+
maxItems?: number | undefined;
|
|
671
|
+
minItems?: number | undefined;
|
|
672
|
+
uniqueItems?: boolean | undefined;
|
|
673
|
+
maxProperties?: number | undefined;
|
|
674
|
+
minProperties?: number | undefined;
|
|
675
|
+
required?: string | boolean | string[] | undefined;
|
|
676
|
+
format?: string | undefined;
|
|
677
|
+
$ref?: string | undefined;
|
|
678
|
+
$namespace?: string | undefined;
|
|
679
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
680
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
681
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
682
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
683
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
684
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
685
|
+
"x-value"?: any;
|
|
686
|
+
"x-index"?: number | undefined;
|
|
687
|
+
"x-pattern"?: any;
|
|
688
|
+
"x-display"?: any;
|
|
689
|
+
"x-validator"?: any;
|
|
690
|
+
"x-decorator"?: any;
|
|
691
|
+
"x-decorator-props"?: any;
|
|
692
|
+
"x-component"?: any;
|
|
693
|
+
"x-component-props"?: any;
|
|
694
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
695
|
+
"x-content"?: any;
|
|
696
|
+
"x-data"?: any;
|
|
697
|
+
"x-visible"?: boolean | undefined;
|
|
698
|
+
"x-hidden"?: boolean | undefined;
|
|
699
|
+
"x-disabled"?: boolean | undefined;
|
|
700
|
+
"x-editable"?: boolean | undefined;
|
|
701
|
+
"x-read-only"?: boolean | undefined;
|
|
702
|
+
"x-read-pretty"?: boolean | undefined;
|
|
703
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
704
|
+
}>[];
|
|
640
705
|
parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
|
|
641
706
|
[key: symbol]: any;
|
|
642
707
|
[key: `x-${string}`]: any;
|
|
@@ -694,6 +759,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
694
759
|
"x-read-pretty"?: boolean | undefined;
|
|
695
760
|
"x-compile-omitted"?: string[] | undefined;
|
|
696
761
|
}>>;
|
|
762
|
+
startIncrementalRender: () => void;
|
|
697
763
|
onKeydown: (event: KeyboardEvent) => Promise<void>;
|
|
698
764
|
clearSpan: (uuid: string) => void;
|
|
699
765
|
exposeEvent: Omit<FormRenderExpose, "getFieldList" | "formModel" | "reload">;
|
|
@@ -946,6 +1012,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
946
1012
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
947
1013
|
default: boolean;
|
|
948
1014
|
};
|
|
1015
|
+
incrementalRender: {
|
|
1016
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
1017
|
+
default: boolean;
|
|
1018
|
+
};
|
|
949
1019
|
}>> & {
|
|
950
1020
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
951
1021
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -976,6 +1046,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
976
1046
|
linebarTextDirection: "horizontal" | "vertical";
|
|
977
1047
|
autoWidth: number | boolean;
|
|
978
1048
|
operationalFormInit: boolean;
|
|
1049
|
+
incrementalRender: number | boolean;
|
|
979
1050
|
}>;
|
|
980
1051
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
981
1052
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -5688,6 +5688,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5688
5688
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
5689
5689
|
default: boolean;
|
|
5690
5690
|
};
|
|
5691
|
+
incrementalRender: {
|
|
5692
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
5693
|
+
default: boolean;
|
|
5694
|
+
};
|
|
5691
5695
|
}, {
|
|
5692
5696
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
5693
5697
|
fieldList: {
|
|
@@ -5879,6 +5883,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5879
5883
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
5880
5884
|
default: boolean;
|
|
5881
5885
|
};
|
|
5886
|
+
incrementalRender: {
|
|
5887
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
5888
|
+
default: boolean;
|
|
5889
|
+
};
|
|
5882
5890
|
}>> & {
|
|
5883
5891
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
5884
5892
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -6114,6 +6122,63 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6114
6122
|
"x-compile-omitted"?: string[] | undefined;
|
|
6115
6123
|
}>>;
|
|
6116
6124
|
_fieldList: FieldItem[];
|
|
6125
|
+
incrementalRenderList: import("@formily/json-schema").Stringify<{
|
|
6126
|
+
[key: symbol]: any;
|
|
6127
|
+
[key: `x-${string}`]: any;
|
|
6128
|
+
[key: `x-${number}`]: any;
|
|
6129
|
+
version?: string | undefined;
|
|
6130
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
6131
|
+
title?: any;
|
|
6132
|
+
description?: any;
|
|
6133
|
+
default?: any;
|
|
6134
|
+
readOnly?: boolean | undefined;
|
|
6135
|
+
writeOnly?: boolean | undefined;
|
|
6136
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
6137
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
6138
|
+
const?: any;
|
|
6139
|
+
multipleOf?: number | undefined;
|
|
6140
|
+
maximum?: number | undefined;
|
|
6141
|
+
exclusiveMaximum?: number | undefined;
|
|
6142
|
+
minimum?: number | undefined;
|
|
6143
|
+
exclusiveMinimum?: number | undefined;
|
|
6144
|
+
maxLength?: number | undefined;
|
|
6145
|
+
minLength?: number | undefined;
|
|
6146
|
+
pattern?: string | RegExp | undefined;
|
|
6147
|
+
maxItems?: number | undefined;
|
|
6148
|
+
minItems?: number | undefined;
|
|
6149
|
+
uniqueItems?: boolean | undefined;
|
|
6150
|
+
maxProperties?: number | undefined;
|
|
6151
|
+
minProperties?: number | undefined;
|
|
6152
|
+
required?: string | boolean | string[] | undefined;
|
|
6153
|
+
format?: string | undefined;
|
|
6154
|
+
$ref?: string | undefined;
|
|
6155
|
+
$namespace?: string | undefined;
|
|
6156
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
6157
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
6158
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
6159
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
6160
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
6161
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
6162
|
+
"x-value"?: any;
|
|
6163
|
+
"x-index"?: number | undefined;
|
|
6164
|
+
"x-pattern"?: any;
|
|
6165
|
+
"x-display"?: any;
|
|
6166
|
+
"x-validator"?: any;
|
|
6167
|
+
"x-decorator"?: any;
|
|
6168
|
+
"x-decorator-props"?: any;
|
|
6169
|
+
"x-component"?: any;
|
|
6170
|
+
"x-component-props"?: any;
|
|
6171
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
6172
|
+
"x-content"?: any;
|
|
6173
|
+
"x-data"?: any;
|
|
6174
|
+
"x-visible"?: boolean | undefined;
|
|
6175
|
+
"x-hidden"?: boolean | undefined;
|
|
6176
|
+
"x-disabled"?: boolean | undefined;
|
|
6177
|
+
"x-editable"?: boolean | undefined;
|
|
6178
|
+
"x-read-only"?: boolean | undefined;
|
|
6179
|
+
"x-read-pretty"?: boolean | undefined;
|
|
6180
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
6181
|
+
}>[];
|
|
6117
6182
|
parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
|
|
6118
6183
|
[key: symbol]: any;
|
|
6119
6184
|
[key: `x-${string}`]: any;
|
|
@@ -6171,6 +6236,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6171
6236
|
"x-read-pretty"?: boolean | undefined;
|
|
6172
6237
|
"x-compile-omitted"?: string[] | undefined;
|
|
6173
6238
|
}>>;
|
|
6239
|
+
startIncrementalRender: () => void;
|
|
6174
6240
|
onKeydown: (event: KeyboardEvent) => Promise<void>;
|
|
6175
6241
|
clearSpan: (uuid: string) => void;
|
|
6176
6242
|
exposeEvent: Omit<FormRenderExpose, "getFieldList" | "formModel" | "reload">;
|
|
@@ -6423,6 +6489,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6423
6489
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
6424
6490
|
default: boolean;
|
|
6425
6491
|
};
|
|
6492
|
+
incrementalRender: {
|
|
6493
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
6494
|
+
default: boolean;
|
|
6495
|
+
};
|
|
6426
6496
|
}>> & {
|
|
6427
6497
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
6428
6498
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -6453,6 +6523,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6453
6523
|
linebarTextDirection: "horizontal" | "vertical";
|
|
6454
6524
|
autoWidth: number | boolean;
|
|
6455
6525
|
operationalFormInit: boolean;
|
|
6526
|
+
incrementalRender: number | boolean;
|
|
6456
6527
|
}>;
|
|
6457
6528
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
6458
6529
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -198,6 +198,10 @@ declare const FormRender: SFCWithInstall<import("vue").DefineComponent<{}, {
|
|
|
198
198
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
199
199
|
default: boolean;
|
|
200
200
|
};
|
|
201
|
+
incrementalRender: {
|
|
202
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
203
|
+
default: boolean;
|
|
204
|
+
};
|
|
201
205
|
}, {
|
|
202
206
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
203
207
|
fieldList: {
|
|
@@ -389,6 +393,10 @@ declare const FormRender: SFCWithInstall<import("vue").DefineComponent<{}, {
|
|
|
389
393
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
390
394
|
default: boolean;
|
|
391
395
|
};
|
|
396
|
+
incrementalRender: {
|
|
397
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
398
|
+
default: boolean;
|
|
399
|
+
};
|
|
392
400
|
}>> & {
|
|
393
401
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
394
402
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -624,6 +632,63 @@ declare const FormRender: SFCWithInstall<import("vue").DefineComponent<{}, {
|
|
|
624
632
|
"x-compile-omitted"?: string[] | undefined;
|
|
625
633
|
}>>;
|
|
626
634
|
_fieldList: import("./src/types").FieldItem[];
|
|
635
|
+
incrementalRenderList: import("@formily/json-schema").Stringify<{
|
|
636
|
+
[key: symbol]: any;
|
|
637
|
+
[key: `x-${string}`]: any;
|
|
638
|
+
[key: `x-${number}`]: any;
|
|
639
|
+
version?: string | undefined;
|
|
640
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
641
|
+
title?: any;
|
|
642
|
+
description?: any;
|
|
643
|
+
default?: any;
|
|
644
|
+
readOnly?: boolean | undefined;
|
|
645
|
+
writeOnly?: boolean | undefined;
|
|
646
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
647
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
648
|
+
const?: any;
|
|
649
|
+
multipleOf?: number | undefined;
|
|
650
|
+
maximum?: number | undefined;
|
|
651
|
+
exclusiveMaximum?: number | undefined;
|
|
652
|
+
minimum?: number | undefined;
|
|
653
|
+
exclusiveMinimum?: number | undefined;
|
|
654
|
+
maxLength?: number | undefined;
|
|
655
|
+
minLength?: number | undefined;
|
|
656
|
+
pattern?: string | RegExp | undefined;
|
|
657
|
+
maxItems?: number | undefined;
|
|
658
|
+
minItems?: number | undefined;
|
|
659
|
+
uniqueItems?: boolean | undefined;
|
|
660
|
+
maxProperties?: number | undefined;
|
|
661
|
+
minProperties?: number | undefined;
|
|
662
|
+
required?: string | boolean | string[] | undefined;
|
|
663
|
+
format?: string | undefined;
|
|
664
|
+
$ref?: string | undefined;
|
|
665
|
+
$namespace?: string | undefined;
|
|
666
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
667
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
668
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
669
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
670
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
671
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
672
|
+
"x-value"?: any;
|
|
673
|
+
"x-index"?: number | undefined;
|
|
674
|
+
"x-pattern"?: any;
|
|
675
|
+
"x-display"?: any;
|
|
676
|
+
"x-validator"?: any;
|
|
677
|
+
"x-decorator"?: any;
|
|
678
|
+
"x-decorator-props"?: any;
|
|
679
|
+
"x-component"?: any;
|
|
680
|
+
"x-component-props"?: any;
|
|
681
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
682
|
+
"x-content"?: any;
|
|
683
|
+
"x-data"?: any;
|
|
684
|
+
"x-visible"?: boolean | undefined;
|
|
685
|
+
"x-hidden"?: boolean | undefined;
|
|
686
|
+
"x-disabled"?: boolean | undefined;
|
|
687
|
+
"x-editable"?: boolean | undefined;
|
|
688
|
+
"x-read-only"?: boolean | undefined;
|
|
689
|
+
"x-read-pretty"?: boolean | undefined;
|
|
690
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
691
|
+
}>[];
|
|
627
692
|
parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
|
|
628
693
|
[key: symbol]: any;
|
|
629
694
|
[key: `x-${string}`]: any;
|
|
@@ -681,6 +746,7 @@ declare const FormRender: SFCWithInstall<import("vue").DefineComponent<{}, {
|
|
|
681
746
|
"x-read-pretty"?: boolean | undefined;
|
|
682
747
|
"x-compile-omitted"?: string[] | undefined;
|
|
683
748
|
}>>;
|
|
749
|
+
startIncrementalRender: () => void;
|
|
684
750
|
onKeydown: (event: KeyboardEvent) => Promise<void>;
|
|
685
751
|
clearSpan: (uuid: string) => void;
|
|
686
752
|
exposeEvent: Omit<import("./src/types").FormRenderExpose, "getFieldList" | "formModel" | "reload">;
|
|
@@ -933,6 +999,10 @@ declare const FormRender: SFCWithInstall<import("vue").DefineComponent<{}, {
|
|
|
933
999
|
type: (BooleanConstructor | NumberConstructor)[];
|
|
934
1000
|
default: boolean;
|
|
935
1001
|
};
|
|
1002
|
+
incrementalRender: {
|
|
1003
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
1004
|
+
default: boolean;
|
|
1005
|
+
};
|
|
936
1006
|
}>> & {
|
|
937
1007
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
938
1008
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -963,6 +1033,7 @@ declare const FormRender: SFCWithInstall<import("vue").DefineComponent<{}, {
|
|
|
963
1033
|
linebarTextDirection: "horizontal" | "vertical";
|
|
964
1034
|
autoWidth: number | boolean;
|
|
965
1035
|
operationalFormInit: boolean;
|
|
1036
|
+
incrementalRender: number | boolean;
|
|
966
1037
|
}>;
|
|
967
1038
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
968
1039
|
export default FormRender;
|