cnhis-design-vue 3.2.11-release.3 → 3.2.12-release.0
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/ai-chat/index.d.ts +36 -1
- package/es/components/ai-chat/src/Index.vue.d.ts +37 -2
- package/es/components/ai-chat/src/Index.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatFooter.vue.d.ts +28 -1
- package/es/components/ai-chat/src/components/ChatFooter.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatMain.js +1 -1
- package/es/components/ai-chat/src/types/index.d.ts +7 -0
- package/es/components/ai-chat/style/index.css +1 -1
- package/es/components/button-print/index.d.ts +3 -0
- package/es/components/button-print/src/ButtonPrint.vue.d.ts +3 -0
- package/es/components/button-print/src/components/IdentityVerification.vue2.js +1 -1
- package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +1 -0
- package/es/components/button-print/src/components/NewPrintComponent.vue2.js +1 -1
- package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +2 -0
- package/es/components/button-print/src/components/OldPrintComponent.vue2.js +1 -1
- package/es/components/callback/src/components/render/popupMaps.d.ts +4 -0
- package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcess.js +1 -1
- package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcessChart.js +1 -1
- package/es/components/fabric-chart/src/hooks/useDraw.js +1 -1
- package/es/components/field-set/src/FieldColor.vue.d.ts +1 -1
- package/es/components/field-set/src/components/edit-dialog.vue.d.ts +1 -1
- package/es/components/form-config/index.d.ts +233 -0
- package/es/components/form-config/src/FormConfig.vue.d.ts +233 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +319 -85
- package/es/components/form-config/src/components/FormConfigEdit.vue2.js +1 -1
- package/es/components/form-config/src/types/index.d.ts +4 -0
- package/es/components/iho-table/index.d.ts +4 -0
- package/es/components/iho-table/src/IhoTable.vue.d.ts +4 -0
- package/es/components/iho-table/src/constants/index.d.ts +4 -0
- package/es/components/iho-table/src/constants/index.js +1 -1
- package/es/components/iho-table/src/plugins/defaultConfigPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +1 -1
- package/es/components/iho-table/src/types/index.d.ts +14 -0
- package/es/components/iho-table/src/utils/index.js +1 -1
- package/es/components/iho-table/style/index.css +1 -1
- package/es/components/index.css +1 -1
- package/es/components/scale-view/src/hooks/use-component.d.ts +2 -7
- package/es/components/select-label/index.d.ts +2 -7
- package/es/components/select-label/src/ihoLabel/IhoLabelFormContent.vue.d.ts +2 -7
- package/es/components/select-label/src/ihoLabel/IhoSelectLabel.vue.d.ts +2 -7
- package/es/components/select-label/src/ihoLabel/IhoSelectLabel.vue2.js +1 -1
- package/es/components/select-label/src/ihoLabel/iho-label-classify.vue.d.ts +2 -7
- package/es/components/select-label/src/ihoLabel/iho-label-classify.vue2.js +1 -1
- package/es/components/select-label/src/index.vue.d.ts +2 -7
- package/es/components/select-label/src/types/index.d.ts +2 -1
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
@@ -1,5 +1,6 @@
|
|
1
|
+
import { AnyObject } from '../../../../shared/types';
|
1
2
|
import { PropType } from 'vue';
|
2
|
-
import { FieldItem, FormChangePayload, FormRenderExpose } from '../../../../components/form-render';
|
3
|
+
import { FieldItem, FieldVisitor, FormChangePayload, FormRenderExpose } from '../../../../components/form-render';
|
3
4
|
import { FormConfigItem } from '../../../../components/index';
|
4
5
|
declare const _default: import("vue").DefineComponent<{
|
5
6
|
uuid: {
|
@@ -12,8 +13,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
12
13
|
formProps: {
|
13
14
|
type: PropType<Partial<Partial<{
|
14
15
|
fieldList: FieldItem[];
|
15
|
-
initialData:
|
16
|
-
fieldVisitor:
|
16
|
+
initialData: AnyObject;
|
17
|
+
fieldVisitor: FieldVisitor;
|
17
18
|
column: number;
|
18
19
|
maxHeight: string | number;
|
19
20
|
anchor: boolean;
|
@@ -76,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
76
77
|
"x-compile-omitted"?: string[] | undefined;
|
77
78
|
}>;
|
78
79
|
components: Record<string, import("vue").Component | import("vue").FunctionalComponent<{}, {}>>;
|
79
|
-
scope:
|
80
|
+
scope: AnyObject;
|
80
81
|
annotation: Record<string, import("../../../annotation-edit/src/type").AnnotationItem>;
|
81
82
|
annotationShortcuts: (string | {
|
82
83
|
label: string;
|
@@ -90,9 +91,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
90
91
|
field: import("@formily/core").GeneralField;
|
91
92
|
oldValue: unknown;
|
92
93
|
}): any;
|
93
|
-
beforeRequest(fieldKey: string, params?:
|
94
|
-
afterRequest(fieldKey: string, res?: any, payload?:
|
95
|
-
afterOptionInit(fieldKey: string, options:
|
94
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../shared/types").UndefinedAble<AnyObject>;
|
95
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[] | Promise<AnyObject[]>;
|
96
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
96
97
|
}>;
|
97
98
|
businessFormatter: import("../../../../components/form-render").FormBusinessFormatter;
|
98
99
|
requestInstance: import("../../../../components/index").FormRequestDefine.RequestInstance;
|
@@ -128,8 +129,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
128
129
|
formProps: {
|
129
130
|
type: PropType<Partial<Partial<{
|
130
131
|
fieldList: FieldItem[];
|
131
|
-
initialData:
|
132
|
-
fieldVisitor:
|
132
|
+
initialData: AnyObject;
|
133
|
+
fieldVisitor: FieldVisitor;
|
133
134
|
column: number;
|
134
135
|
maxHeight: string | number;
|
135
136
|
anchor: boolean;
|
@@ -192,7 +193,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
192
193
|
"x-compile-omitted"?: string[] | undefined;
|
193
194
|
}>;
|
194
195
|
components: Record<string, import("vue").Component | import("vue").FunctionalComponent<{}, {}>>;
|
195
|
-
scope:
|
196
|
+
scope: AnyObject;
|
196
197
|
annotation: Record<string, import("../../../annotation-edit/src/type").AnnotationItem>;
|
197
198
|
annotationShortcuts: (string | {
|
198
199
|
label: string;
|
@@ -206,9 +207,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
206
207
|
field: import("@formily/core").GeneralField;
|
207
208
|
oldValue: unknown;
|
208
209
|
}): any;
|
209
|
-
beforeRequest(fieldKey: string, params?:
|
210
|
-
afterRequest(fieldKey: string, res?: any, payload?:
|
211
|
-
afterOptionInit(fieldKey: string, options:
|
210
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../shared/types").UndefinedAble<AnyObject>;
|
211
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[] | Promise<AnyObject[]>;
|
212
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
212
213
|
}>;
|
213
214
|
businessFormatter: import("../../../../components/form-render").FormBusinessFormatter;
|
214
215
|
requestInstance: import("../../../../components/index").FormRequestDefine.RequestInstance;
|
@@ -311,8 +312,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
311
312
|
link_key?: string | undefined;
|
312
313
|
link_key_split?: string | undefined;
|
313
314
|
show_key?: string | string[] | undefined;
|
314
|
-
conObj?:
|
315
|
-
conObjFirstLevel?:
|
315
|
+
conObj?: AnyObject[] | undefined;
|
316
|
+
conObjFirstLevel?: AnyObject[] | undefined;
|
316
317
|
setting?: {
|
317
318
|
cascading?: {
|
318
319
|
'form.name': string;
|
@@ -339,7 +340,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
339
340
|
valueKey?: string | undefined;
|
340
341
|
showKey?: string | undefined;
|
341
342
|
searchKey?: string[] | undefined;
|
342
|
-
params?:
|
343
|
+
params?: AnyObject | undefined;
|
343
344
|
dependKey?: string | Record<string, string> | (string | {
|
344
345
|
paramName: string;
|
345
346
|
paramValue?: string | undefined;
|
@@ -386,8 +387,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
386
387
|
show_mode?: import("../../../../shared/types").LowCodeTypes.showModeType | undefined;
|
387
388
|
is_allow_check_mid?: import("../../../../components/form-render").FormCommonState | undefined;
|
388
389
|
allow_check_mid_level?: "1" | "2" | "3" | "4" | undefined;
|
389
|
-
prefix?: string |
|
390
|
-
suffix?: string |
|
390
|
+
prefix?: string | AnyObject | (() => any) | undefined;
|
391
|
+
suffix?: string | AnyObject | (() => any) | undefined;
|
391
392
|
allowSlash?: string | boolean | undefined;
|
392
393
|
allowModify?: import("../../../../components/form-render").FormCommonState | undefined;
|
393
394
|
show_key?: string | undefined;
|
@@ -410,8 +411,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
410
411
|
combinationItemDeletable?: boolean | import("../../../../components/form-render").CombinationItemDeletableFn | undefined;
|
411
412
|
children?: any[] | undefined;
|
412
413
|
properties?: any[] | undefined;
|
413
|
-
componentProps?:
|
414
|
-
decoratorProps?:
|
414
|
+
componentProps?: AnyObject | undefined;
|
415
|
+
decoratorProps?: AnyObject | undefined;
|
415
416
|
noDecorator?: {
|
416
417
|
valueOf: () => boolean;
|
417
418
|
} | undefined;
|
@@ -428,11 +429,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
428
429
|
effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
|
429
430
|
when?: string | boolean | undefined;
|
430
431
|
fulfill?: {
|
431
|
-
state?:
|
432
|
+
state?: AnyObject | undefined;
|
432
433
|
run?: string | undefined;
|
433
434
|
} | undefined;
|
434
435
|
otherwise?: {
|
435
|
-
state?:
|
436
|
+
state?: AnyObject | undefined;
|
436
437
|
run?: string | undefined;
|
437
438
|
} | undefined;
|
438
439
|
} | {
|
@@ -442,11 +443,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
442
443
|
effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
|
443
444
|
when?: string | boolean | undefined;
|
444
445
|
fulfill?: {
|
445
|
-
state?:
|
446
|
+
state?: AnyObject | undefined;
|
446
447
|
run?: string | undefined;
|
447
448
|
} | undefined;
|
448
449
|
otherwise?: {
|
449
|
-
state?:
|
450
|
+
state?: AnyObject | undefined;
|
450
451
|
run?: string | undefined;
|
451
452
|
} | undefined;
|
452
453
|
}[] | undefined;
|
@@ -559,8 +560,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
559
560
|
link_key?: string | undefined;
|
560
561
|
link_key_split?: string | undefined;
|
561
562
|
show_key?: string | string[] | undefined;
|
562
|
-
conObj?:
|
563
|
-
conObjFirstLevel?:
|
563
|
+
conObj?: AnyObject[] | undefined;
|
564
|
+
conObjFirstLevel?: AnyObject[] | undefined;
|
564
565
|
setting?: {
|
565
566
|
cascading?: {
|
566
567
|
'form.name': string;
|
@@ -587,7 +588,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
587
588
|
valueKey?: string | undefined;
|
588
589
|
showKey?: string | undefined;
|
589
590
|
searchKey?: string[] | undefined;
|
590
|
-
params?:
|
591
|
+
params?: AnyObject | undefined;
|
591
592
|
dependKey?: string | Record<string, string> | (string | {
|
592
593
|
paramName: string;
|
593
594
|
paramValue?: string | undefined;
|
@@ -634,8 +635,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
634
635
|
show_mode?: import("../../../../shared/types").LowCodeTypes.showModeType | undefined;
|
635
636
|
is_allow_check_mid?: import("../../../../components/form-render").FormCommonState | undefined;
|
636
637
|
allow_check_mid_level?: "1" | "2" | "3" | "4" | undefined;
|
637
|
-
prefix?: string |
|
638
|
-
suffix?: string |
|
638
|
+
prefix?: string | AnyObject | (() => any) | undefined;
|
639
|
+
suffix?: string | AnyObject | (() => any) | undefined;
|
639
640
|
allowSlash?: string | boolean | undefined;
|
640
641
|
allowModify?: import("../../../../components/form-render").FormCommonState | undefined;
|
641
642
|
show_key?: string | undefined;
|
@@ -658,8 +659,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
658
659
|
combinationItemDeletable?: boolean | import("../../../../components/form-render").CombinationItemDeletableFn | undefined;
|
659
660
|
children?: any[] | undefined;
|
660
661
|
properties?: any[] | undefined;
|
661
|
-
componentProps?:
|
662
|
-
decoratorProps?:
|
662
|
+
componentProps?: AnyObject | undefined;
|
663
|
+
decoratorProps?: AnyObject | undefined;
|
663
664
|
noDecorator?: {
|
664
665
|
valueOf: () => boolean;
|
665
666
|
} | undefined;
|
@@ -676,11 +677,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
676
677
|
effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
|
677
678
|
when?: string | boolean | undefined;
|
678
679
|
fulfill?: {
|
679
|
-
state?:
|
680
|
+
state?: AnyObject | undefined;
|
680
681
|
run?: string | undefined;
|
681
682
|
} | undefined;
|
682
683
|
otherwise?: {
|
683
|
-
state?:
|
684
|
+
state?: AnyObject | undefined;
|
684
685
|
run?: string | undefined;
|
685
686
|
} | undefined;
|
686
687
|
} | {
|
@@ -690,15 +691,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
690
691
|
effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
|
691
692
|
when?: string | boolean | undefined;
|
692
693
|
fulfill?: {
|
693
|
-
state?:
|
694
|
+
state?: AnyObject | undefined;
|
694
695
|
run?: string | undefined;
|
695
696
|
} | undefined;
|
696
697
|
otherwise?: {
|
697
|
-
state?:
|
698
|
+
state?: AnyObject | undefined;
|
698
699
|
run?: string | undefined;
|
699
700
|
} | undefined;
|
700
701
|
}[] | undefined;
|
701
702
|
} | undefined;
|
703
|
+
optionAliasList?: {
|
704
|
+
text: string;
|
705
|
+
value: string;
|
706
|
+
}[] | undefined;
|
702
707
|
__new?: boolean | undefined;
|
703
708
|
__isCombinationChild?: boolean | undefined;
|
704
709
|
__extra?: boolean | undefined;
|
@@ -778,8 +783,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
778
783
|
link_key?: string | undefined;
|
779
784
|
link_key_split?: string | undefined;
|
780
785
|
show_key?: string | string[] | undefined;
|
781
|
-
conObj?:
|
782
|
-
conObjFirstLevel?:
|
786
|
+
conObj?: AnyObject[] | undefined;
|
787
|
+
conObjFirstLevel?: AnyObject[] | undefined;
|
783
788
|
setting?: {
|
784
789
|
cascading?: {
|
785
790
|
'form.name': string;
|
@@ -806,7 +811,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
806
811
|
valueKey?: string | undefined;
|
807
812
|
showKey?: string | undefined;
|
808
813
|
searchKey?: string[] | undefined;
|
809
|
-
params?:
|
814
|
+
params?: AnyObject | undefined;
|
810
815
|
dependKey?: string | Record<string, string> | (string | {
|
811
816
|
paramName: string;
|
812
817
|
paramValue?: string | undefined;
|
@@ -853,8 +858,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
853
858
|
show_mode?: import("../../../../shared/types").LowCodeTypes.showModeType | undefined;
|
854
859
|
is_allow_check_mid?: import("../../../../components/form-render").FormCommonState | undefined;
|
855
860
|
allow_check_mid_level?: "1" | "2" | "3" | "4" | undefined;
|
856
|
-
prefix?: string |
|
857
|
-
suffix?: string |
|
861
|
+
prefix?: string | AnyObject | (() => any) | undefined;
|
862
|
+
suffix?: string | AnyObject | (() => any) | undefined;
|
858
863
|
allowSlash?: string | boolean | undefined;
|
859
864
|
allowModify?: import("../../../../components/form-render").FormCommonState | undefined;
|
860
865
|
show_key?: string | undefined;
|
@@ -877,8 +882,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
877
882
|
combinationItemDeletable?: boolean | import("../../../../components/form-render").CombinationItemDeletableFn | undefined;
|
878
883
|
children?: any[] | undefined;
|
879
884
|
properties?: any[] | undefined;
|
880
|
-
componentProps?:
|
881
|
-
decoratorProps?:
|
885
|
+
componentProps?: AnyObject | undefined;
|
886
|
+
decoratorProps?: AnyObject | undefined;
|
882
887
|
noDecorator?: {
|
883
888
|
valueOf: () => boolean;
|
884
889
|
} | undefined;
|
@@ -895,11 +900,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
895
900
|
effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
|
896
901
|
when?: string | boolean | undefined;
|
897
902
|
fulfill?: {
|
898
|
-
state?:
|
903
|
+
state?: AnyObject | undefined;
|
899
904
|
run?: string | undefined;
|
900
905
|
} | undefined;
|
901
906
|
otherwise?: {
|
902
|
-
state?:
|
907
|
+
state?: AnyObject | undefined;
|
903
908
|
run?: string | undefined;
|
904
909
|
} | undefined;
|
905
910
|
} | {
|
@@ -909,15 +914,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
909
914
|
effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
|
910
915
|
when?: string | boolean | undefined;
|
911
916
|
fulfill?: {
|
912
|
-
state?:
|
917
|
+
state?: AnyObject | undefined;
|
913
918
|
run?: string | undefined;
|
914
919
|
} | undefined;
|
915
920
|
otherwise?: {
|
916
|
-
state?:
|
921
|
+
state?: AnyObject | undefined;
|
917
922
|
run?: string | undefined;
|
918
923
|
} | undefined;
|
919
924
|
}[] | undefined;
|
920
925
|
} | undefined;
|
926
|
+
optionAliasList?: {
|
927
|
+
text: string;
|
928
|
+
value: string;
|
929
|
+
}[] | undefined;
|
921
930
|
__new?: boolean | undefined;
|
922
931
|
__isCombinationChild?: boolean | undefined;
|
923
932
|
__extra?: boolean | undefined;
|
@@ -927,7 +936,232 @@ declare const _default: import("vue").DefineComponent<{
|
|
927
936
|
onPositiveClick: () => Promise<void>;
|
928
937
|
prevOldField: null;
|
929
938
|
onFormChange: ({ fieldKey, value }: FormChangePayload) => void;
|
939
|
+
createLabelRender: (originOptions?: AnyObject[]) => (label: string) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
940
|
+
[key: string]: any;
|
941
|
+
}>;
|
942
|
+
applyOptionAlias: (options?: AnyObject[]) => AnyObject[] | undefined;
|
943
|
+
visitor: FieldVisitor;
|
944
|
+
showOptionModal: import("vue").Ref<boolean>;
|
945
|
+
editOptions: import("vue").Ref<{
|
946
|
+
[x: string]: any;
|
947
|
+
keyword?: string | undefined;
|
948
|
+
disabled?: boolean | undefined;
|
949
|
+
children?: any[] | undefined;
|
950
|
+
childrenFields?: {
|
951
|
+
[x: string]: any;
|
952
|
+
val_key: string;
|
953
|
+
html_type: "LINEBAR" | ({} & string) | "INPUT" | "TEXTAREA" | "SELECT" | "LINE_BREAKS" | "INPUT_NUMBER" | "REMOTE_SEARCH" | "DATE" | "LEVEL_SEARCH_CASCADER" | "SEARCH_CASCADER" | "COMBINATION" | "RADIO" | "CHECKBOX" | "SWITCH" | "SLIDER" | "COMPLEX" | "SEARCH" | "PHONE_TYPE" | "IDCARD_TYPE" | "SEARCH_MORE" | "DIGITAL" | "CHECKBOX_BLOCK" | "RADIO_BLOCK" | "DATE-INPUT" | "DATETIME-INPUT" | "SWITCH_COMPONENT" | "SLIDER_COMPONENT" | "LEVEL_SEARCH_CASCADE" | "SEARCH_CASCADE";
|
954
|
+
annotation?: boolean | undefined;
|
955
|
+
val_key_unit?: string | undefined;
|
956
|
+
is_edit?: import("../../../../components/form-render").FormCommonState | undefined;
|
957
|
+
elem_width?: number | undefined;
|
958
|
+
is_show?: import("../../../../components/form-render").FormCommonState | undefined;
|
959
|
+
is_null?: import("../../../../components/form-render").FormCommonState | undefined;
|
960
|
+
name?: string | undefined;
|
961
|
+
alias?: string | undefined;
|
962
|
+
default_val?: any;
|
963
|
+
is_empty?: import("../../../../components/form-render").FormCommonState | undefined;
|
964
|
+
hide_title?: import("../../../../components/form-render").FormCommonState | undefined;
|
965
|
+
placeholder?: string | undefined;
|
966
|
+
validate?: {
|
967
|
+
[x: string]: any;
|
968
|
+
obj_type?: ("password" | "sex" | "age" | "email" | "birthday" | "id_card" | "age_unit" | "mobile" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
|
969
|
+
vali_obj?: string | undefined;
|
970
|
+
max_value?: string | number | undefined;
|
971
|
+
min_value?: string | number | undefined;
|
972
|
+
min_date?: string | undefined;
|
973
|
+
max_date?: string | undefined;
|
974
|
+
min_length?: string | number | undefined;
|
975
|
+
max_length?: string | number | undefined;
|
976
|
+
decimal_length?: string | number | undefined;
|
977
|
+
regular_expression?: string | {
|
978
|
+
exec: (string: string) => RegExpExecArray | null;
|
979
|
+
test: (string: string) => boolean;
|
980
|
+
readonly source: string;
|
981
|
+
readonly global: boolean;
|
982
|
+
readonly ignoreCase: boolean;
|
983
|
+
readonly multiline: boolean;
|
984
|
+
lastIndex: number;
|
985
|
+
compile: (pattern: string, flags?: string | undefined) => RegExp;
|
986
|
+
readonly flags: string;
|
987
|
+
readonly sticky: boolean;
|
988
|
+
readonly unicode: boolean;
|
989
|
+
readonly dotAll: boolean;
|
990
|
+
[Symbol.match]: (string: string) => RegExpMatchArray | null;
|
991
|
+
[Symbol.replace]: {
|
992
|
+
(string: string, replaceValue: string): string;
|
993
|
+
(string: string, replacer: (substring: string, ...args: any[]) => string): string;
|
994
|
+
};
|
995
|
+
[Symbol.search]: (string: string) => number;
|
996
|
+
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
997
|
+
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
998
|
+
} | undefined;
|
999
|
+
regular_error_tip?: string | undefined;
|
1000
|
+
message?: string | undefined;
|
1001
|
+
} | undefined;
|
1002
|
+
option?: any[] | undefined;
|
1003
|
+
multi_select?: import("../../../../components/form-render").FormCommonState | undefined;
|
1004
|
+
multi_select_value?: string | number | undefined;
|
1005
|
+
wordbook?: {
|
1006
|
+
level_num?: number | undefined;
|
1007
|
+
id?: string | undefined;
|
1008
|
+
name?: string | undefined;
|
1009
|
+
render_key?: string[] | undefined;
|
1010
|
+
search_key?: string[] | undefined;
|
1011
|
+
value_key?: string | undefined;
|
1012
|
+
queryParams?: string[] | undefined;
|
1013
|
+
primary_key?: string | undefined;
|
1014
|
+
type?: string | undefined;
|
1015
|
+
level_key?: string | undefined;
|
1016
|
+
link_key?: string | undefined;
|
1017
|
+
link_key_split?: string | undefined;
|
1018
|
+
show_key?: string | string[] | undefined;
|
1019
|
+
conObj?: AnyObject[] | undefined;
|
1020
|
+
conObjFirstLevel?: AnyObject[] | undefined;
|
1021
|
+
setting?: {
|
1022
|
+
cascading?: {
|
1023
|
+
'form.name': string;
|
1024
|
+
value: string;
|
1025
|
+
}[] | undefined;
|
1026
|
+
} | undefined;
|
1027
|
+
} | undefined;
|
1028
|
+
open?: {
|
1029
|
+
value?: any;
|
1030
|
+
describe?: string | undefined;
|
1031
|
+
} | undefined;
|
1032
|
+
close?: {
|
1033
|
+
value?: any;
|
1034
|
+
describe?: string | undefined;
|
1035
|
+
} | undefined;
|
1036
|
+
requiredReminderContent?: string | undefined;
|
1037
|
+
date_format?: string | undefined;
|
1038
|
+
step_length?: string | number | undefined;
|
1039
|
+
urlConfig?: {
|
1040
|
+
[x: string]: any;
|
1041
|
+
url: string;
|
1042
|
+
method?: import("../../../../components/index").FormRequestDefine.RequestType | undefined;
|
1043
|
+
nameKey?: string | undefined;
|
1044
|
+
valueKey?: string | undefined;
|
1045
|
+
showKey?: string | undefined;
|
1046
|
+
searchKey?: string[] | undefined;
|
1047
|
+
params?: AnyObject | undefined;
|
1048
|
+
dependKey?: string | Record<string, string> | (string | {
|
1049
|
+
paramName: string;
|
1050
|
+
paramValue?: string | undefined;
|
1051
|
+
required?: boolean | undefined;
|
1052
|
+
keepValue?: boolean | undefined;
|
1053
|
+
})[] | undefined;
|
1054
|
+
} | undefined;
|
1055
|
+
suffixConfig?: any | any[] | undefined;
|
1056
|
+
prefixConfig?: any | any[] | undefined;
|
1057
|
+
autograph?: string | undefined;
|
1058
|
+
defined_error_msg?: string | undefined;
|
1059
|
+
extendKey?: string | undefined;
|
1060
|
+
is_not_fold?: string | undefined;
|
1061
|
+
remark?: string | undefined;
|
1062
|
+
free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
1063
|
+
save_free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
1064
|
+
initialize_high?: number | undefined;
|
1065
|
+
bindEventSetting?: {
|
1066
|
+
[x: string]: unknown;
|
1067
|
+
event_type: import("../../../../shared/types").LowCodeTypes.EVENT_TYPE;
|
1068
|
+
event_field?: string | undefined;
|
1069
|
+
params?: {
|
1070
|
+
p_value?: string | undefined;
|
1071
|
+
p_name: string;
|
1072
|
+
p_select: import("../../../../shared/types").LowCodeTypes.VALUE_RELATION;
|
1073
|
+
}[] | undefined;
|
1074
|
+
results?: {
|
1075
|
+
p_value: string;
|
1076
|
+
p_name: string;
|
1077
|
+
}[] | undefined;
|
1078
|
+
compareMap?: {
|
1079
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1080
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1081
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
1082
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
1083
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1084
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1085
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
1086
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
1087
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1088
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1089
|
+
} | undefined;
|
1090
|
+
}[] | undefined;
|
1091
|
+
show_mode?: import("../../../../shared/types").LowCodeTypes.showModeType | undefined;
|
1092
|
+
is_allow_check_mid?: import("../../../../components/form-render").FormCommonState | undefined;
|
1093
|
+
allow_check_mid_level?: "1" | "2" | "3" | "4" | undefined;
|
1094
|
+
prefix?: string | AnyObject | (() => any) | undefined;
|
1095
|
+
suffix?: string | AnyObject | (() => any) | undefined;
|
1096
|
+
allowSlash?: string | boolean | undefined;
|
1097
|
+
allowModify?: import("../../../../components/form-render").FormCommonState | undefined;
|
1098
|
+
show_key?: string | undefined;
|
1099
|
+
whiteList?: string[] | undefined;
|
1100
|
+
bordered?: string | boolean | undefined;
|
1101
|
+
displayMode?: "form" | "table" | undefined;
|
1102
|
+
editor_title?: string | undefined;
|
1103
|
+
editor_title_mode?: "EMBEDDED_FORM" | "HOVER_TOOLTIP" | "POPUP_ALERT" | undefined;
|
1104
|
+
linebarWidth?: string | undefined;
|
1105
|
+
linebarDirection?: "horizontal" | "vertical" | undefined;
|
1106
|
+
linebarTextDirection?: "horizontal" | "vertical" | undefined;
|
1107
|
+
labelColor?: string | undefined;
|
1108
|
+
fieldType?: import("@formily/json-schema").SchemaTypes | undefined;
|
1109
|
+
content?: string | import("../../../../components/form-render").FormRenderer | Record<string, import("../../../../components/form-render").FormRenderer> | undefined;
|
1110
|
+
lazyRequest?: boolean | undefined;
|
1111
|
+
requestCache?: boolean | undefined;
|
1112
|
+
maxGroupNum?: number | undefined;
|
1113
|
+
minGroupNum?: number | undefined;
|
1114
|
+
jsonCombination?: boolean | undefined;
|
1115
|
+
combinationItemDeletable?: boolean | import("../../../../components/form-render").CombinationItemDeletableFn | undefined;
|
1116
|
+
children?: any[] | undefined;
|
1117
|
+
properties?: any[] | undefined;
|
1118
|
+
componentProps?: AnyObject | undefined;
|
1119
|
+
decoratorProps?: AnyObject | undefined;
|
1120
|
+
noDecorator?: {
|
1121
|
+
valueOf: () => boolean;
|
1122
|
+
} | undefined;
|
1123
|
+
display?: "flex" | "grid" | undefined;
|
1124
|
+
slots?: Record<string, (...args: unknown[]) => unknown> | undefined;
|
1125
|
+
wrapperStyle?: Record<string, string | number> | undefined;
|
1126
|
+
childFieldStrategy?: "checked" | "all" | undefined;
|
1127
|
+
childWidthMode?: "inner" | "outer" | undefined;
|
1128
|
+
validator?: ((value: unknown, fieldItem: FieldItem, field: import("@formily/core").Field<any, any, any, any>) => string | void) | undefined;
|
1129
|
+
reactions?: {
|
1130
|
+
[x: string]: any;
|
1131
|
+
dependencies?: string[] | undefined;
|
1132
|
+
target?: string | undefined;
|
1133
|
+
effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
|
1134
|
+
when?: string | boolean | undefined;
|
1135
|
+
fulfill?: {
|
1136
|
+
state?: AnyObject | undefined;
|
1137
|
+
run?: string | undefined;
|
1138
|
+
} | undefined;
|
1139
|
+
otherwise?: {
|
1140
|
+
state?: AnyObject | undefined;
|
1141
|
+
run?: string | undefined;
|
1142
|
+
} | undefined;
|
1143
|
+
} | {
|
1144
|
+
[x: string]: any;
|
1145
|
+
dependencies?: string[] | undefined;
|
1146
|
+
target?: string | undefined;
|
1147
|
+
effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
|
1148
|
+
when?: string | boolean | undefined;
|
1149
|
+
fulfill?: {
|
1150
|
+
state?: AnyObject | undefined;
|
1151
|
+
run?: string | undefined;
|
1152
|
+
} | undefined;
|
1153
|
+
otherwise?: {
|
1154
|
+
state?: AnyObject | undefined;
|
1155
|
+
run?: string | undefined;
|
1156
|
+
} | undefined;
|
1157
|
+
}[] | undefined;
|
1158
|
+
}[] | undefined;
|
1159
|
+
}[]>;
|
1160
|
+
onOptionModalCancel: () => void;
|
1161
|
+
onOptionModalConfirm: () => void;
|
930
1162
|
NModal: any;
|
1163
|
+
NSpace: any;
|
1164
|
+
NInput: any;
|
931
1165
|
CFormRender: import("../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{}, {
|
932
1166
|
formRenderRef: import("vue").Ref<FormRenderExpose | undefined>;
|
933
1167
|
key: import("vue").Ref<number>;
|
@@ -939,11 +1173,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
939
1173
|
type: PropType<FieldItem[]>;
|
940
1174
|
};
|
941
1175
|
initialData: {
|
942
|
-
type: PropType<
|
1176
|
+
type: PropType<AnyObject>;
|
943
1177
|
default: () => {};
|
944
1178
|
};
|
945
1179
|
fieldVisitor: {
|
946
|
-
type: PropType<
|
1180
|
+
type: PropType<FieldVisitor>;
|
947
1181
|
};
|
948
1182
|
column: {
|
949
1183
|
type: NumberConstructor;
|
@@ -1028,7 +1262,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1028
1262
|
default: () => {};
|
1029
1263
|
};
|
1030
1264
|
scope: {
|
1031
|
-
type: PropType<
|
1265
|
+
type: PropType<AnyObject>;
|
1032
1266
|
default: () => {};
|
1033
1267
|
};
|
1034
1268
|
annotation: {
|
@@ -1054,9 +1288,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
1054
1288
|
field: import("@formily/core").GeneralField;
|
1055
1289
|
oldValue: unknown;
|
1056
1290
|
}): any;
|
1057
|
-
beforeRequest(fieldKey: string, params?:
|
1058
|
-
afterRequest(fieldKey: string, res?: any, payload?:
|
1059
|
-
afterOptionInit(fieldKey: string, options:
|
1291
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../shared/types").UndefinedAble<AnyObject>;
|
1292
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[] | Promise<AnyObject[]>;
|
1293
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
1060
1294
|
}>>;
|
1061
1295
|
};
|
1062
1296
|
requestInstance: {
|
@@ -1138,11 +1372,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
1138
1372
|
type: PropType<FieldItem[]>;
|
1139
1373
|
};
|
1140
1374
|
initialData: {
|
1141
|
-
type: PropType<
|
1375
|
+
type: PropType<AnyObject>;
|
1142
1376
|
default: () => {};
|
1143
1377
|
};
|
1144
1378
|
fieldVisitor: {
|
1145
|
-
type: PropType<
|
1379
|
+
type: PropType<FieldVisitor>;
|
1146
1380
|
};
|
1147
1381
|
column: {
|
1148
1382
|
type: NumberConstructor;
|
@@ -1227,7 +1461,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1227
1461
|
default: () => {};
|
1228
1462
|
};
|
1229
1463
|
scope: {
|
1230
|
-
type: PropType<
|
1464
|
+
type: PropType<AnyObject>;
|
1231
1465
|
default: () => {};
|
1232
1466
|
};
|
1233
1467
|
annotation: {
|
@@ -1253,9 +1487,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
1253
1487
|
field: import("@formily/core").GeneralField;
|
1254
1488
|
oldValue: unknown;
|
1255
1489
|
}): any;
|
1256
|
-
beforeRequest(fieldKey: string, params?:
|
1257
|
-
afterRequest(fieldKey: string, res?: any, payload?:
|
1258
|
-
afterOptionInit(fieldKey: string, options:
|
1490
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../shared/types").UndefinedAble<AnyObject>;
|
1491
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[] | Promise<AnyObject[]>;
|
1492
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
1259
1493
|
}>>;
|
1260
1494
|
};
|
1261
1495
|
requestInstance: {
|
@@ -1340,7 +1574,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1340
1574
|
onReady?: ((...args: any[]) => any) | undefined;
|
1341
1575
|
}>>;
|
1342
1576
|
emit: (event: "scroll" | "formChange" | "annotationChange" | "update:selectedFields" | "linebarChange" | "ready", ...args: any[]) => void;
|
1343
|
-
cssVars: import("vue").ComputedRef<
|
1577
|
+
cssVars: import("vue").ComputedRef<AnyObject>;
|
1344
1578
|
nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
|
1345
1579
|
formRenderRef: import("vue").Ref<HTMLElement | undefined>;
|
1346
1580
|
formWidth: import("vue").Ref<number>;
|
@@ -1372,18 +1606,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
1372
1606
|
field: import("@formily/core").GeneralField;
|
1373
1607
|
oldValue: unknown;
|
1374
1608
|
}): any;
|
1375
|
-
beforeRequest(fieldKey: string, params?:
|
1376
|
-
afterRequest(fieldKey: string, res?: any, payload?:
|
1377
|
-
afterOptionInit(fieldKey: string, options:
|
1609
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../shared/types").UndefinedAble<AnyObject>;
|
1610
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[] | Promise<AnyObject[]>;
|
1611
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
1378
1612
|
}>>[T]> | undefined) => import("../../../../shared/types").UndefinedAble<ReturnType<Required<Partial<{
|
1379
1613
|
onSetup(): void;
|
1380
1614
|
beforeSetValue(fieldKey: string, value: unknown, payload: {
|
1381
1615
|
field: import("@formily/core").GeneralField;
|
1382
1616
|
oldValue: unknown;
|
1383
1617
|
}): any;
|
1384
|
-
beforeRequest(fieldKey: string, params?:
|
1385
|
-
afterRequest(fieldKey: string, res?: any, payload?:
|
1386
|
-
afterOptionInit(fieldKey: string, options:
|
1618
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../shared/types").UndefinedAble<AnyObject>;
|
1619
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[] | Promise<AnyObject[]>;
|
1620
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
1387
1621
|
}>>[T]>>;
|
1388
1622
|
observeFormGraph: Record<string, import("@formily/core").GeneralField>;
|
1389
1623
|
setGraph: (field: import("@formily/core").GeneralField) => void;
|
@@ -1403,8 +1637,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
1403
1637
|
wordbookSettingHandler: import("../../../../components/form-render").wordbookSettingHandler;
|
1404
1638
|
schemaAdaptor: (fieldList: FieldItem[], options?: Partial<{
|
1405
1639
|
fieldList: FieldItem[];
|
1406
|
-
initialData:
|
1407
|
-
fieldVisitor:
|
1640
|
+
initialData: AnyObject;
|
1641
|
+
fieldVisitor: FieldVisitor;
|
1408
1642
|
column: number;
|
1409
1643
|
maxHeight: string | number;
|
1410
1644
|
anchor: boolean;
|
@@ -1467,7 +1701,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1467
1701
|
"x-compile-omitted"?: string[] | undefined;
|
1468
1702
|
}>;
|
1469
1703
|
components: Record<string, import("vue").Component | import("vue").FunctionalComponent<{}, {}>>;
|
1470
|
-
scope:
|
1704
|
+
scope: AnyObject;
|
1471
1705
|
annotation: Record<string, import("../../../annotation-edit/src/type").AnnotationItem>;
|
1472
1706
|
annotationShortcuts: (string | {
|
1473
1707
|
label: string;
|
@@ -1481,9 +1715,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
1481
1715
|
field: import("@formily/core").GeneralField;
|
1482
1716
|
oldValue: unknown;
|
1483
1717
|
}): any;
|
1484
|
-
beforeRequest(fieldKey: string, params?:
|
1485
|
-
afterRequest(fieldKey: string, res?: any, payload?:
|
1486
|
-
afterOptionInit(fieldKey: string, options:
|
1718
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../shared/types").UndefinedAble<AnyObject>;
|
1719
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[] | Promise<AnyObject[]>;
|
1720
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
1487
1721
|
}>;
|
1488
1722
|
businessFormatter: import("../../../../components/form-render").FormBusinessFormatter;
|
1489
1723
|
requestInstance: import("../../../../components/index").FormRequestDefine.RequestInstance;
|
@@ -1695,11 +1929,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
1695
1929
|
type: PropType<FieldItem[]>;
|
1696
1930
|
};
|
1697
1931
|
initialData: {
|
1698
|
-
type: PropType<
|
1932
|
+
type: PropType<AnyObject>;
|
1699
1933
|
default: () => {};
|
1700
1934
|
};
|
1701
1935
|
fieldVisitor: {
|
1702
|
-
type: PropType<
|
1936
|
+
type: PropType<FieldVisitor>;
|
1703
1937
|
};
|
1704
1938
|
column: {
|
1705
1939
|
type: NumberConstructor;
|
@@ -1784,7 +2018,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1784
2018
|
default: () => {};
|
1785
2019
|
};
|
1786
2020
|
scope: {
|
1787
|
-
type: PropType<
|
2021
|
+
type: PropType<AnyObject>;
|
1788
2022
|
default: () => {};
|
1789
2023
|
};
|
1790
2024
|
annotation: {
|
@@ -1810,9 +2044,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
1810
2044
|
field: import("@formily/core").GeneralField;
|
1811
2045
|
oldValue: unknown;
|
1812
2046
|
}): any;
|
1813
|
-
beforeRequest(fieldKey: string, params?:
|
1814
|
-
afterRequest(fieldKey: string, res?: any, payload?:
|
1815
|
-
afterOptionInit(fieldKey: string, options:
|
2047
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../shared/types").UndefinedAble<AnyObject>;
|
2048
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[] | Promise<AnyObject[]>;
|
2049
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
1816
2050
|
}>>;
|
1817
2051
|
};
|
1818
2052
|
requestInstance: {
|
@@ -1900,9 +2134,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
1900
2134
|
column: number;
|
1901
2135
|
maxHeight: string | number;
|
1902
2136
|
components: Record<string, import("vue").Component | import("vue").FunctionalComponent<{}, {}>>;
|
1903
|
-
initialData:
|
2137
|
+
initialData: AnyObject;
|
1904
2138
|
parallelism: number;
|
1905
|
-
scope:
|
2139
|
+
scope: AnyObject;
|
1906
2140
|
consumer: boolean;
|
1907
2141
|
enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
|
1908
2142
|
autoExpand: boolean;
|
@@ -1934,8 +2168,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
1934
2168
|
formProps: {
|
1935
2169
|
type: PropType<Partial<Partial<{
|
1936
2170
|
fieldList: FieldItem[];
|
1937
|
-
initialData:
|
1938
|
-
fieldVisitor:
|
2171
|
+
initialData: AnyObject;
|
2172
|
+
fieldVisitor: FieldVisitor;
|
1939
2173
|
column: number;
|
1940
2174
|
maxHeight: string | number;
|
1941
2175
|
anchor: boolean;
|
@@ -1998,7 +2232,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1998
2232
|
"x-compile-omitted"?: string[] | undefined;
|
1999
2233
|
}>;
|
2000
2234
|
components: Record<string, import("vue").Component | import("vue").FunctionalComponent<{}, {}>>;
|
2001
|
-
scope:
|
2235
|
+
scope: AnyObject;
|
2002
2236
|
annotation: Record<string, import("../../../annotation-edit/src/type").AnnotationItem>;
|
2003
2237
|
annotationShortcuts: (string | {
|
2004
2238
|
label: string;
|
@@ -2012,9 +2246,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
2012
2246
|
field: import("@formily/core").GeneralField;
|
2013
2247
|
oldValue: unknown;
|
2014
2248
|
}): any;
|
2015
|
-
beforeRequest(fieldKey: string, params?:
|
2016
|
-
afterRequest(fieldKey: string, res?: any, payload?:
|
2017
|
-
afterOptionInit(fieldKey: string, options:
|
2249
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../shared/types").UndefinedAble<AnyObject>;
|
2250
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[] | Promise<AnyObject[]>;
|
2251
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
2018
2252
|
}>;
|
2019
2253
|
businessFormatter: import("../../../../components/form-render").FormBusinessFormatter;
|
2020
2254
|
requestInstance: import("../../../../components/index").FormRequestDefine.RequestInstance;
|