cnhis-design-vue 3.1.49-beta.22 → 3.1.49-beta.24

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.
Files changed (37) hide show
  1. package/README.md +87 -87
  2. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  3. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
  4. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
  5. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
  6. package/es/components/expand-field/src/components/form.vue2.js +1 -1
  7. package/es/components/expand-field/src/index.vue2.js +1 -1
  8. package/es/components/field-set/src/FieldSet.vue2.js +1 -1
  9. package/es/components/form-config/index.d.ts +531 -3
  10. package/es/components/form-config/src/FormConfig.vue.d.ts +531 -3
  11. package/es/components/form-config/src/FormConfig.vue2.js +1 -1
  12. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +267 -3
  13. package/es/components/form-config/src/components/FormConfigEdit.vue2.js +1 -1
  14. package/es/components/keyboard/index.d.ts +3 -3
  15. package/es/components/keyboard/src/Keyboard.vue.d.ts +3 -3
  16. package/es/components/keyboard/src/Keyboard.vue2.js +1 -1
  17. package/es/components/multi-chat/src/components/ChatMain.vue2.js +1 -1
  18. package/es/components/scale-view/src/ScaleView.vue2.js +1 -1
  19. package/es/components/select-label/src/LabelFormContent.vue2.js +1 -1
  20. package/es/components/select-person/src/SearchMultiple.vue.d.ts +0 -6
  21. package/es/components/table-export-field/src/components/ExportModal.vue.d.ts +3 -0
  22. package/es/env.d.ts +25 -25
  23. package/es/shared/assets/img/failure.png.js +1 -1
  24. package/es/shared/assets/img/no-permission.png.js +1 -1
  25. package/es/shared/assets/img/nodata.png.js +1 -1
  26. package/es/shared/assets/img/notfound.png.js +1 -1
  27. package/es/shared/assets/img/qr.png.js +1 -1
  28. package/es/shared/assets/img/success.png.js +1 -1
  29. package/es/shared/assets/img/video.png.js +1 -1
  30. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  31. package/es/shared/assets/img/xb_big.png.js +1 -1
  32. package/es/shared/assets/img/xb_small.png.js +1 -1
  33. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +86 -0
  34. package/es/shared/package.json.js +1 -1
  35. package/es/shared/utils/fabricjs/index.d.ts +6823 -0
  36. package/es/shared/utils/tapable/index.d.ts +139 -0
  37. package/package.json +2 -2
@@ -17,6 +17,94 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
17
17
  extraMaterialList: {
18
18
  type: import("vue").PropType<import("./src/types").FormConfigItem[] | (() => import("./src/types").FormConfigItem[] | Promise<import("./src/types").FormConfigItem[]>)>;
19
19
  };
20
+ formProps: {
21
+ type: import("vue").PropType<Partial<Partial<{
22
+ fieldList: import("..").FieldItem[];
23
+ initialData: import("../../../es/shared/types").AnyObject;
24
+ fieldVisitor: import("..").FieldVisitor;
25
+ column: number;
26
+ maxHeight: string | number;
27
+ anchor: boolean;
28
+ parallelism: number;
29
+ schema: import("@formily/json-schema").Stringify<{
30
+ [key: symbol]: any;
31
+ [key: `x-${string}`]: any;
32
+ [key: `x-${number}`]: any;
33
+ version?: string | undefined;
34
+ name?: import("@formily/json-schema").SchemaKey | undefined;
35
+ title?: any;
36
+ description?: any;
37
+ default?: any;
38
+ readOnly?: boolean | undefined;
39
+ writeOnly?: boolean | undefined;
40
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
41
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
42
+ const?: any;
43
+ multipleOf?: number | undefined;
44
+ maximum?: number | undefined;
45
+ exclusiveMaximum?: number | undefined;
46
+ minimum?: number | undefined;
47
+ exclusiveMinimum?: number | undefined;
48
+ maxLength?: number | undefined;
49
+ minLength?: number | undefined;
50
+ pattern?: string | RegExp | undefined;
51
+ maxItems?: number | undefined;
52
+ minItems?: number | undefined;
53
+ uniqueItems?: boolean | undefined;
54
+ maxProperties?: number | undefined;
55
+ minProperties?: number | undefined;
56
+ required?: string | boolean | string[] | undefined;
57
+ format?: string | undefined;
58
+ $ref?: string | undefined;
59
+ $namespace?: string | undefined;
60
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
61
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
62
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
63
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
64
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
65
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
66
+ "x-value"?: any;
67
+ "x-index"?: number | undefined;
68
+ "x-pattern"?: any;
69
+ "x-display"?: any;
70
+ "x-validator"?: any;
71
+ "x-decorator"?: any;
72
+ "x-decorator-props"?: any;
73
+ "x-component"?: any;
74
+ "x-component-props"?: any;
75
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
76
+ "x-content"?: any;
77
+ "x-data"?: any;
78
+ "x-visible"?: boolean | undefined;
79
+ "x-hidden"?: boolean | undefined;
80
+ "x-disabled"?: boolean | undefined;
81
+ "x-editable"?: boolean | undefined;
82
+ "x-read-only"?: boolean | undefined;
83
+ "x-read-pretty"?: boolean | undefined;
84
+ "x-compile-omitted"?: string[] | undefined;
85
+ }>;
86
+ components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
87
+ scope: import("../../../es/shared/types").AnyObject;
88
+ annotation: import("../../../es/shared/types").AnyObject;
89
+ consumer: boolean;
90
+ uuid: string;
91
+ lifeCycle: Partial<{
92
+ onSetup(): void;
93
+ beforeRequest(fieldKey: string, params?: import("../../../es/shared/types").AnyObject | undefined): void | import("../../../es/shared/types").UndefinedAble<import("../../../es/shared/types").AnyObject>;
94
+ afterRequest(fieldKey: string, payload?: any): import("../../../es/shared/types").AnyObject[];
95
+ afterOptionInit(fieldKey: string, options: import("../../../es/shared/types").AnyObject[]): void;
96
+ }>;
97
+ businessFormatter: import("..").FormBusinessFormatter;
98
+ requestInstance: import("..").RequestInstance;
99
+ enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
100
+ lowCodeReactions: import("..").FormLowCodeReactions.Config[];
101
+ linebarAutoHidden: boolean;
102
+ bordered: string | boolean;
103
+ uniqueCacheData: boolean;
104
+ operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
105
+ outBordered: boolean;
106
+ }>>>;
107
+ };
20
108
  }, {
21
109
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
22
110
  maxHeight: {
@@ -34,6 +122,94 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
34
122
  extraMaterialList: {
35
123
  type: import("vue").PropType<import("./src/types").FormConfigItem[] | (() => import("./src/types").FormConfigItem[] | Promise<import("./src/types").FormConfigItem[]>)>;
36
124
  };
125
+ formProps: {
126
+ type: import("vue").PropType<Partial<Partial<{
127
+ fieldList: import("..").FieldItem[];
128
+ initialData: import("../../../es/shared/types").AnyObject;
129
+ fieldVisitor: import("..").FieldVisitor;
130
+ column: number;
131
+ maxHeight: string | number;
132
+ anchor: boolean;
133
+ parallelism: number;
134
+ schema: import("@formily/json-schema").Stringify<{
135
+ [key: symbol]: any;
136
+ [key: `x-${string}`]: any;
137
+ [key: `x-${number}`]: any;
138
+ version?: string | undefined;
139
+ name?: import("@formily/json-schema").SchemaKey | undefined;
140
+ title?: any;
141
+ description?: any;
142
+ default?: any;
143
+ readOnly?: boolean | undefined;
144
+ writeOnly?: boolean | undefined;
145
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
146
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
147
+ const?: any;
148
+ multipleOf?: number | undefined;
149
+ maximum?: number | undefined;
150
+ exclusiveMaximum?: number | undefined;
151
+ minimum?: number | undefined;
152
+ exclusiveMinimum?: number | undefined;
153
+ maxLength?: number | undefined;
154
+ minLength?: number | undefined;
155
+ pattern?: string | RegExp | undefined;
156
+ maxItems?: number | undefined;
157
+ minItems?: number | undefined;
158
+ uniqueItems?: boolean | undefined;
159
+ maxProperties?: number | undefined;
160
+ minProperties?: number | undefined;
161
+ required?: string | boolean | string[] | undefined;
162
+ format?: string | undefined;
163
+ $ref?: string | undefined;
164
+ $namespace?: string | undefined;
165
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
166
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
167
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
168
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
169
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
170
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
171
+ "x-value"?: any;
172
+ "x-index"?: number | undefined;
173
+ "x-pattern"?: any;
174
+ "x-display"?: any;
175
+ "x-validator"?: any;
176
+ "x-decorator"?: any;
177
+ "x-decorator-props"?: any;
178
+ "x-component"?: any;
179
+ "x-component-props"?: any;
180
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
181
+ "x-content"?: any;
182
+ "x-data"?: any;
183
+ "x-visible"?: boolean | undefined;
184
+ "x-hidden"?: boolean | undefined;
185
+ "x-disabled"?: boolean | undefined;
186
+ "x-editable"?: boolean | undefined;
187
+ "x-read-only"?: boolean | undefined;
188
+ "x-read-pretty"?: boolean | undefined;
189
+ "x-compile-omitted"?: string[] | undefined;
190
+ }>;
191
+ components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
192
+ scope: import("../../../es/shared/types").AnyObject;
193
+ annotation: import("../../../es/shared/types").AnyObject;
194
+ consumer: boolean;
195
+ uuid: string;
196
+ lifeCycle: Partial<{
197
+ onSetup(): void;
198
+ beforeRequest(fieldKey: string, params?: import("../../../es/shared/types").AnyObject | undefined): void | import("../../../es/shared/types").UndefinedAble<import("../../../es/shared/types").AnyObject>;
199
+ afterRequest(fieldKey: string, payload?: any): import("../../../es/shared/types").AnyObject[];
200
+ afterOptionInit(fieldKey: string, options: import("../../../es/shared/types").AnyObject[]): void;
201
+ }>;
202
+ businessFormatter: import("..").FormBusinessFormatter;
203
+ requestInstance: import("..").RequestInstance;
204
+ enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
205
+ lowCodeReactions: import("..").FormLowCodeReactions.Config[];
206
+ linebarAutoHidden: boolean;
207
+ bordered: string | boolean;
208
+ uniqueCacheData: boolean;
209
+ operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
210
+ outBordered: boolean;
211
+ }>>>;
212
+ };
37
213
  }>> & {
38
214
  onAddItem?: ((...args: any[]) => any) | undefined;
39
215
  onRemoveItem?: ((...args: any[]) => any) | undefined;
@@ -7980,18 +8156,194 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
7980
8156
  type: StringConstructor;
7981
8157
  required: true;
7982
8158
  };
7983
- formRenderRef: {
8159
+ bindFormRenderRef: {
7984
8160
  type: import("vue").PropType<import("..").FormRenderExpose>;
7985
8161
  };
8162
+ formProps: {
8163
+ type: import("vue").PropType<Partial<Partial<{
8164
+ fieldList: import("..").FieldItem[];
8165
+ initialData: import("../../../es/shared/types").AnyObject;
8166
+ fieldVisitor: import("..").FieldVisitor;
8167
+ column: number;
8168
+ maxHeight: string | number;
8169
+ anchor: boolean;
8170
+ parallelism: number;
8171
+ schema: import("@formily/json-schema").Stringify<{
8172
+ [key: symbol]: any;
8173
+ [key: `x-${string}`]: any;
8174
+ [key: `x-${number}`]: any;
8175
+ version?: string | undefined;
8176
+ name?: import("@formily/json-schema").SchemaKey | undefined;
8177
+ title?: any;
8178
+ description?: any;
8179
+ default?: any;
8180
+ readOnly?: boolean | undefined;
8181
+ writeOnly?: boolean | undefined;
8182
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
8183
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
8184
+ const?: any;
8185
+ multipleOf?: number | undefined;
8186
+ maximum?: number | undefined;
8187
+ exclusiveMaximum?: number | undefined;
8188
+ minimum?: number | undefined;
8189
+ exclusiveMinimum?: number | undefined;
8190
+ maxLength?: number | undefined;
8191
+ minLength?: number | undefined;
8192
+ pattern?: string | RegExp | undefined;
8193
+ maxItems?: number | undefined;
8194
+ minItems?: number | undefined;
8195
+ uniqueItems?: boolean | undefined;
8196
+ maxProperties?: number | undefined;
8197
+ minProperties?: number | undefined;
8198
+ required?: string | boolean | string[] | undefined;
8199
+ format?: string | undefined;
8200
+ $ref?: string | undefined;
8201
+ $namespace?: string | undefined;
8202
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
8203
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
8204
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
8205
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
8206
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
8207
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
8208
+ "x-value"?: any;
8209
+ "x-index"?: number | undefined;
8210
+ "x-pattern"?: any;
8211
+ "x-display"?: any;
8212
+ "x-validator"?: any;
8213
+ "x-decorator"?: any;
8214
+ "x-decorator-props"?: any;
8215
+ "x-component"?: any;
8216
+ "x-component-props"?: any;
8217
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
8218
+ "x-content"?: any;
8219
+ "x-data"?: any;
8220
+ "x-visible"?: boolean | undefined;
8221
+ "x-hidden"?: boolean | undefined;
8222
+ "x-disabled"?: boolean | undefined;
8223
+ "x-editable"?: boolean | undefined;
8224
+ "x-read-only"?: boolean | undefined;
8225
+ "x-read-pretty"?: boolean | undefined;
8226
+ "x-compile-omitted"?: string[] | undefined;
8227
+ }>;
8228
+ components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
8229
+ scope: import("../../../es/shared/types").AnyObject;
8230
+ annotation: import("../../../es/shared/types").AnyObject;
8231
+ consumer: boolean;
8232
+ uuid: string;
8233
+ lifeCycle: Partial<{
8234
+ onSetup(): void;
8235
+ beforeRequest(fieldKey: string, params?: import("../../../es/shared/types").AnyObject | undefined): void | import("../../../es/shared/types").UndefinedAble<import("../../../es/shared/types").AnyObject>;
8236
+ afterRequest(fieldKey: string, payload?: any): import("../../../es/shared/types").AnyObject[];
8237
+ afterOptionInit(fieldKey: string, options: import("../../../es/shared/types").AnyObject[]): void;
8238
+ }>;
8239
+ businessFormatter: import("..").FormBusinessFormatter;
8240
+ requestInstance: import("..").RequestInstance;
8241
+ enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
8242
+ lowCodeReactions: import("..").FormLowCodeReactions.Config[];
8243
+ linebarAutoHidden: boolean;
8244
+ bordered: string | boolean;
8245
+ uniqueCacheData: boolean;
8246
+ operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
8247
+ outBordered: boolean;
8248
+ }>>>;
8249
+ };
7986
8250
  }, {
7987
8251
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
7988
8252
  uuid: {
7989
8253
  type: StringConstructor;
7990
8254
  required: true;
7991
8255
  };
7992
- formRenderRef: {
8256
+ bindFormRenderRef: {
7993
8257
  type: import("vue").PropType<import("..").FormRenderExpose>;
7994
8258
  };
8259
+ formProps: {
8260
+ type: import("vue").PropType<Partial<Partial<{
8261
+ fieldList: import("..").FieldItem[];
8262
+ initialData: import("../../../es/shared/types").AnyObject;
8263
+ fieldVisitor: import("..").FieldVisitor;
8264
+ column: number;
8265
+ maxHeight: string | number;
8266
+ anchor: boolean;
8267
+ parallelism: number;
8268
+ schema: import("@formily/json-schema").Stringify<{
8269
+ [key: symbol]: any;
8270
+ [key: `x-${string}`]: any;
8271
+ [key: `x-${number}`]: any;
8272
+ version?: string | undefined;
8273
+ name?: import("@formily/json-schema").SchemaKey | undefined;
8274
+ title?: any;
8275
+ description?: any;
8276
+ default?: any;
8277
+ readOnly?: boolean | undefined;
8278
+ writeOnly?: boolean | undefined;
8279
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
8280
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
8281
+ const?: any;
8282
+ multipleOf?: number | undefined;
8283
+ maximum?: number | undefined;
8284
+ exclusiveMaximum?: number | undefined;
8285
+ minimum?: number | undefined;
8286
+ exclusiveMinimum?: number | undefined;
8287
+ maxLength?: number | undefined;
8288
+ minLength?: number | undefined;
8289
+ pattern?: string | RegExp | undefined;
8290
+ maxItems?: number | undefined;
8291
+ minItems?: number | undefined;
8292
+ uniqueItems?: boolean | undefined;
8293
+ maxProperties?: number | undefined;
8294
+ minProperties?: number | undefined;
8295
+ required?: string | boolean | string[] | undefined;
8296
+ format?: string | undefined;
8297
+ $ref?: string | undefined;
8298
+ $namespace?: string | undefined;
8299
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
8300
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
8301
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
8302
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
8303
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
8304
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
8305
+ "x-value"?: any;
8306
+ "x-index"?: number | undefined;
8307
+ "x-pattern"?: any;
8308
+ "x-display"?: any;
8309
+ "x-validator"?: any;
8310
+ "x-decorator"?: any;
8311
+ "x-decorator-props"?: any;
8312
+ "x-component"?: any;
8313
+ "x-component-props"?: any;
8314
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
8315
+ "x-content"?: any;
8316
+ "x-data"?: any;
8317
+ "x-visible"?: boolean | undefined;
8318
+ "x-hidden"?: boolean | undefined;
8319
+ "x-disabled"?: boolean | undefined;
8320
+ "x-editable"?: boolean | undefined;
8321
+ "x-read-only"?: boolean | undefined;
8322
+ "x-read-pretty"?: boolean | undefined;
8323
+ "x-compile-omitted"?: string[] | undefined;
8324
+ }>;
8325
+ components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
8326
+ scope: import("../../../es/shared/types").AnyObject;
8327
+ annotation: import("../../../es/shared/types").AnyObject;
8328
+ consumer: boolean;
8329
+ uuid: string;
8330
+ lifeCycle: Partial<{
8331
+ onSetup(): void;
8332
+ beforeRequest(fieldKey: string, params?: import("../../../es/shared/types").AnyObject | undefined): void | import("../../../es/shared/types").UndefinedAble<import("../../../es/shared/types").AnyObject>;
8333
+ afterRequest(fieldKey: string, payload?: any): import("../../../es/shared/types").AnyObject[];
8334
+ afterOptionInit(fieldKey: string, options: import("../../../es/shared/types").AnyObject[]): void;
8335
+ }>;
8336
+ businessFormatter: import("..").FormBusinessFormatter;
8337
+ requestInstance: import("..").RequestInstance;
8338
+ enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
8339
+ lowCodeReactions: import("..").FormLowCodeReactions.Config[];
8340
+ linebarAutoHidden: boolean;
8341
+ bordered: string | boolean;
8342
+ uniqueCacheData: boolean;
8343
+ operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
8344
+ outBordered: boolean;
8345
+ }>>>;
8346
+ };
7995
8347
  }>> & {}>>;
7996
8348
  wrapperSelector: import("vue").ComputedRef<string>;
7997
8349
  formRenderRef: import("vue").Ref<import("..").FormRenderExpose | undefined>;
@@ -13971,9 +14323,97 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
13971
14323
  type: StringConstructor;
13972
14324
  required: true;
13973
14325
  };
13974
- formRenderRef: {
14326
+ bindFormRenderRef: {
13975
14327
  type: import("vue").PropType<import("..").FormRenderExpose>;
13976
14328
  };
14329
+ formProps: {
14330
+ type: import("vue").PropType<Partial<Partial<{
14331
+ fieldList: import("..").FieldItem[];
14332
+ initialData: import("../../../es/shared/types").AnyObject;
14333
+ fieldVisitor: import("..").FieldVisitor;
14334
+ column: number;
14335
+ maxHeight: string | number;
14336
+ anchor: boolean;
14337
+ parallelism: number;
14338
+ schema: import("@formily/json-schema").Stringify<{
14339
+ [key: symbol]: any;
14340
+ [key: `x-${string}`]: any;
14341
+ [key: `x-${number}`]: any;
14342
+ version?: string | undefined;
14343
+ name?: import("@formily/json-schema").SchemaKey | undefined;
14344
+ title?: any;
14345
+ description?: any;
14346
+ default?: any;
14347
+ readOnly?: boolean | undefined;
14348
+ writeOnly?: boolean | undefined;
14349
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
14350
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
14351
+ const?: any;
14352
+ multipleOf?: number | undefined;
14353
+ maximum?: number | undefined;
14354
+ exclusiveMaximum?: number | undefined;
14355
+ minimum?: number | undefined;
14356
+ exclusiveMinimum?: number | undefined;
14357
+ maxLength?: number | undefined;
14358
+ minLength?: number | undefined;
14359
+ pattern?: string | RegExp | undefined;
14360
+ maxItems?: number | undefined;
14361
+ minItems?: number | undefined;
14362
+ uniqueItems?: boolean | undefined;
14363
+ maxProperties?: number | undefined;
14364
+ minProperties?: number | undefined;
14365
+ required?: string | boolean | string[] | undefined;
14366
+ format?: string | undefined;
14367
+ $ref?: string | undefined;
14368
+ $namespace?: string | undefined;
14369
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
14370
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
14371
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
14372
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
14373
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
14374
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
14375
+ "x-value"?: any;
14376
+ "x-index"?: number | undefined;
14377
+ "x-pattern"?: any;
14378
+ "x-display"?: any;
14379
+ "x-validator"?: any;
14380
+ "x-decorator"?: any;
14381
+ "x-decorator-props"?: any;
14382
+ "x-component"?: any;
14383
+ "x-component-props"?: any;
14384
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
14385
+ "x-content"?: any;
14386
+ "x-data"?: any;
14387
+ "x-visible"?: boolean | undefined;
14388
+ "x-hidden"?: boolean | undefined;
14389
+ "x-disabled"?: boolean | undefined;
14390
+ "x-editable"?: boolean | undefined;
14391
+ "x-read-only"?: boolean | undefined;
14392
+ "x-read-pretty"?: boolean | undefined;
14393
+ "x-compile-omitted"?: string[] | undefined;
14394
+ }>;
14395
+ components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
14396
+ scope: import("../../../es/shared/types").AnyObject;
14397
+ annotation: import("../../../es/shared/types").AnyObject;
14398
+ consumer: boolean;
14399
+ uuid: string;
14400
+ lifeCycle: Partial<{
14401
+ onSetup(): void;
14402
+ beforeRequest(fieldKey: string, params?: import("../../../es/shared/types").AnyObject | undefined): void | import("../../../es/shared/types").UndefinedAble<import("../../../es/shared/types").AnyObject>;
14403
+ afterRequest(fieldKey: string, payload?: any): import("../../../es/shared/types").AnyObject[];
14404
+ afterOptionInit(fieldKey: string, options: import("../../../es/shared/types").AnyObject[]): void;
14405
+ }>;
14406
+ businessFormatter: import("..").FormBusinessFormatter;
14407
+ requestInstance: import("..").RequestInstance;
14408
+ enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
14409
+ lowCodeReactions: import("..").FormLowCodeReactions.Config[];
14410
+ linebarAutoHidden: boolean;
14411
+ bordered: string | boolean;
14412
+ uniqueCacheData: boolean;
14413
+ operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
14414
+ outBordered: boolean;
14415
+ }>>>;
14416
+ };
13977
14417
  }>>, {}>;
13978
14418
  FormConfigMaterialItem: import("vue").DefineComponent<{
13979
14419
  formConfigItem: {
@@ -14022,6 +14462,94 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
14022
14462
  extraMaterialList: {
14023
14463
  type: import("vue").PropType<import("./src/types").FormConfigItem[] | (() => import("./src/types").FormConfigItem[] | Promise<import("./src/types").FormConfigItem[]>)>;
14024
14464
  };
14465
+ formProps: {
14466
+ type: import("vue").PropType<Partial<Partial<{
14467
+ fieldList: import("..").FieldItem[];
14468
+ initialData: import("../../../es/shared/types").AnyObject;
14469
+ fieldVisitor: import("..").FieldVisitor;
14470
+ column: number;
14471
+ maxHeight: string | number;
14472
+ anchor: boolean;
14473
+ parallelism: number;
14474
+ schema: import("@formily/json-schema").Stringify<{
14475
+ [key: symbol]: any;
14476
+ [key: `x-${string}`]: any;
14477
+ [key: `x-${number}`]: any;
14478
+ version?: string | undefined;
14479
+ name?: import("@formily/json-schema").SchemaKey | undefined;
14480
+ title?: any;
14481
+ description?: any;
14482
+ default?: any;
14483
+ readOnly?: boolean | undefined;
14484
+ writeOnly?: boolean | undefined;
14485
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
14486
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
14487
+ const?: any;
14488
+ multipleOf?: number | undefined;
14489
+ maximum?: number | undefined;
14490
+ exclusiveMaximum?: number | undefined;
14491
+ minimum?: number | undefined;
14492
+ exclusiveMinimum?: number | undefined;
14493
+ maxLength?: number | undefined;
14494
+ minLength?: number | undefined;
14495
+ pattern?: string | RegExp | undefined;
14496
+ maxItems?: number | undefined;
14497
+ minItems?: number | undefined;
14498
+ uniqueItems?: boolean | undefined;
14499
+ maxProperties?: number | undefined;
14500
+ minProperties?: number | undefined;
14501
+ required?: string | boolean | string[] | undefined;
14502
+ format?: string | undefined;
14503
+ $ref?: string | undefined;
14504
+ $namespace?: string | undefined;
14505
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
14506
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
14507
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
14508
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
14509
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
14510
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
14511
+ "x-value"?: any;
14512
+ "x-index"?: number | undefined;
14513
+ "x-pattern"?: any;
14514
+ "x-display"?: any;
14515
+ "x-validator"?: any;
14516
+ "x-decorator"?: any;
14517
+ "x-decorator-props"?: any;
14518
+ "x-component"?: any;
14519
+ "x-component-props"?: any;
14520
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
14521
+ "x-content"?: any;
14522
+ "x-data"?: any;
14523
+ "x-visible"?: boolean | undefined;
14524
+ "x-hidden"?: boolean | undefined;
14525
+ "x-disabled"?: boolean | undefined;
14526
+ "x-editable"?: boolean | undefined;
14527
+ "x-read-only"?: boolean | undefined;
14528
+ "x-read-pretty"?: boolean | undefined;
14529
+ "x-compile-omitted"?: string[] | undefined;
14530
+ }>;
14531
+ components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
14532
+ scope: import("../../../es/shared/types").AnyObject;
14533
+ annotation: import("../../../es/shared/types").AnyObject;
14534
+ consumer: boolean;
14535
+ uuid: string;
14536
+ lifeCycle: Partial<{
14537
+ onSetup(): void;
14538
+ beforeRequest(fieldKey: string, params?: import("../../../es/shared/types").AnyObject | undefined): void | import("../../../es/shared/types").UndefinedAble<import("../../../es/shared/types").AnyObject>;
14539
+ afterRequest(fieldKey: string, payload?: any): import("../../../es/shared/types").AnyObject[];
14540
+ afterOptionInit(fieldKey: string, options: import("../../../es/shared/types").AnyObject[]): void;
14541
+ }>;
14542
+ businessFormatter: import("..").FormBusinessFormatter;
14543
+ requestInstance: import("..").RequestInstance;
14544
+ enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
14545
+ lowCodeReactions: import("..").FormLowCodeReactions.Config[];
14546
+ linebarAutoHidden: boolean;
14547
+ bordered: string | boolean;
14548
+ uniqueCacheData: boolean;
14549
+ operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
14550
+ outBordered: boolean;
14551
+ }>>>;
14552
+ };
14025
14553
  }>> & {
14026
14554
  onAddItem?: ((...args: any[]) => any) | undefined;
14027
14555
  onRemoveItem?: ((...args: any[]) => any) | undefined;