cnhis-design-vue 3.1.50-beta.10 → 3.1.50-beta.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/fabric-chart/src/FabricChart.vue2.js +1 -1
- package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcess.js +1 -1
- package/es/components/fabric-chart/src/hooks/index.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useCenter.d.ts +3 -0
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useCenter.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useLeft.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useOther.d.ts +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useOther.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useSurgicalAnesthesiaChart.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useTop.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useBottom.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useCenter.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useLeft.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useOther.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useTop.js +1 -1
- package/es/components/fabric-chart/src/hooks/useEvent.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/useEvent.js +1 -1
- package/es/components/form-config/index.d.ts +188 -8
- package/es/components/form-config/src/FormConfig.vue.d.ts +188 -8
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +91 -4
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +94 -4
- package/es/components/form-config/src/hooks/useConfigurationField.js +1 -1
- package/es/components/form-render/index.d.ts +91 -4
- package/es/components/form-render/src/FormRender.vue.d.ts +91 -4
- package/es/components/form-render/src/FormRender.vue2.js +1 -1
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +91 -4
- package/es/components/form-render/src/components/renderer/select.d.ts +3 -0
- package/es/components/form-render/src/components/renderer/select.js +1 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.d.ts +2 -5
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
- package/es/components/form-render/src/hooks/useFieldNormalize.d.ts +173 -4
- package/es/components/form-render/src/hooks/useFieldNormalize.js +1 -1
- package/es/components/form-render/src/hooks/useLowCodeReactions.d.ts +1 -1
- package/es/components/form-render/src/hooks/useLowCodeReactions.js +1 -1
- package/es/components/form-render/src/types/index.d.ts +2 -0
- package/es/components/iho-table/index.d.ts +26 -0
- package/es/components/iho-table/src/IhoTable.vue.d.ts +26 -0
- package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.d.ts +3 -1
- package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/defaultRendererPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/varialbleHeightPlugin/index.js +1 -1
- package/es/components/iho-table/src/types/index.d.ts +4 -0
- package/es/components/info-header/index.d.ts +272 -11
- package/es/components/info-header/src/InfoHeader.vue.d.ts +272 -11
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.d.ts +86 -3
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +86 -3
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +177 -7
- package/es/components/info-header/src/components/patientInfo/index.vue.d.ts +91 -4
- package/es/components/shortcut-setter/index.d.ts +91 -4
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +91 -4
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +28 -0
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.js +1 -1
- package/es/shared/package.json.js +1 -1
- package/es/shared/utils/business.d.ts +3 -1
- package/es/shared/utils/business.js +1 -1
- package/es/shared/utils/index.js +1 -1
- package/package.json +1 -1
|
@@ -193,10 +193,93 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
193
193
|
edit: boolean;
|
|
194
194
|
}>) => Promise<void>;
|
|
195
195
|
collector: import("../../../../../../es/components/form-render").BusinessCollector | undefined;
|
|
196
|
-
schemaAdaptor: (fieldList: import("../../../../../../es/components/form-render").FieldItem[], options?: {
|
|
196
|
+
schemaAdaptor: (fieldList: import("../../../../../../es/components/form-render").FieldItem[], options?: Partial<{
|
|
197
|
+
fieldList: import("../../../../../../es/components/form-render").FieldItem[];
|
|
198
|
+
initialData: import("../../../../../../es/shared/types").AnyObject;
|
|
199
|
+
fieldVisitor: import("../../../../../../es/components/form-render").FieldVisitor;
|
|
197
200
|
column: number;
|
|
198
|
-
|
|
199
|
-
|
|
201
|
+
maxHeight: string | number;
|
|
202
|
+
anchor: boolean;
|
|
203
|
+
parallelism: number;
|
|
204
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
205
|
+
[key: symbol]: any;
|
|
206
|
+
[key: `x-${string}`]: any;
|
|
207
|
+
[key: `x-${number}`]: any;
|
|
208
|
+
version?: string | undefined;
|
|
209
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
210
|
+
title?: any;
|
|
211
|
+
description?: any;
|
|
212
|
+
default?: any;
|
|
213
|
+
readOnly?: boolean | undefined;
|
|
214
|
+
writeOnly?: boolean | undefined;
|
|
215
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
216
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
217
|
+
const?: any;
|
|
218
|
+
multipleOf?: number | undefined;
|
|
219
|
+
maximum?: number | undefined;
|
|
220
|
+
exclusiveMaximum?: number | undefined;
|
|
221
|
+
minimum?: number | undefined;
|
|
222
|
+
exclusiveMinimum?: number | undefined;
|
|
223
|
+
maxLength?: number | undefined;
|
|
224
|
+
minLength?: number | undefined;
|
|
225
|
+
pattern?: string | RegExp | undefined;
|
|
226
|
+
maxItems?: number | undefined;
|
|
227
|
+
minItems?: number | undefined;
|
|
228
|
+
uniqueItems?: boolean | undefined;
|
|
229
|
+
maxProperties?: number | undefined;
|
|
230
|
+
minProperties?: number | undefined;
|
|
231
|
+
required?: string | boolean | string[] | undefined;
|
|
232
|
+
format?: string | undefined;
|
|
233
|
+
$ref?: string | undefined;
|
|
234
|
+
$namespace?: string | undefined;
|
|
235
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
236
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
237
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
238
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
239
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
240
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
241
|
+
"x-value"?: any;
|
|
242
|
+
"x-index"?: number | undefined;
|
|
243
|
+
"x-pattern"?: any;
|
|
244
|
+
"x-display"?: any;
|
|
245
|
+
"x-validator"?: any;
|
|
246
|
+
"x-decorator"?: any;
|
|
247
|
+
"x-decorator-props"?: any;
|
|
248
|
+
"x-component"?: any;
|
|
249
|
+
"x-component-props"?: any;
|
|
250
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
251
|
+
"x-content"?: any;
|
|
252
|
+
"x-data"?: any;
|
|
253
|
+
"x-visible"?: boolean | undefined;
|
|
254
|
+
"x-hidden"?: boolean | undefined;
|
|
255
|
+
"x-disabled"?: boolean | undefined;
|
|
256
|
+
"x-editable"?: boolean | undefined;
|
|
257
|
+
"x-read-only"?: boolean | undefined;
|
|
258
|
+
"x-read-pretty"?: boolean | undefined;
|
|
259
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
260
|
+
}>;
|
|
261
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
262
|
+
scope: import("../../../../../../es/shared/types").AnyObject;
|
|
263
|
+
annotation: import("../../../../../../es/shared/types").AnyObject;
|
|
264
|
+
consumer: boolean;
|
|
265
|
+
uuid: string;
|
|
266
|
+
lifeCycle: Partial<{
|
|
267
|
+
onSetup(): void;
|
|
268
|
+
beforeRequest(fieldKey: string, params?: import("../../../../../../es/shared/types").AnyObject | undefined, payload?: import("../../../../../../es/shared/types").AnyObject | undefined): void | import("../../../../../../es/shared/types").UndefinedAble<import("../../../../../../es/shared/types").AnyObject>;
|
|
269
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../../../../es/shared/types").AnyObject | undefined): import("../../../../../../es/shared/types").AnyObject[];
|
|
270
|
+
afterOptionInit(fieldKey: string, options: import("../../../../../../es/shared/types").AnyObject[], payload?: import("../../../../../../es/shared/types").AnyObject | undefined): void;
|
|
271
|
+
}>;
|
|
272
|
+
businessFormatter: import("../../../../../../es/components/form-render").FormBusinessFormatter;
|
|
273
|
+
requestInstance: import("../../../../../../es/components/form-render").RequestInstance;
|
|
274
|
+
enterToNextWidget: boolean | ((fieldItem: import("../../../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
275
|
+
lowCodeReactions: import("../../../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
276
|
+
linebarAutoHidden: boolean;
|
|
277
|
+
bordered: string | boolean;
|
|
278
|
+
uniqueCacheData: boolean;
|
|
279
|
+
operationalForm: import("../../../../../../es/shared/types").FormOperationalConfig[];
|
|
280
|
+
outBordered: boolean;
|
|
281
|
+
forceClearable: boolean;
|
|
282
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
200
283
|
[key: symbol]: any;
|
|
201
284
|
[key: `x-${string}`]: any;
|
|
202
285
|
[key: `x-${number}`]: any;
|
|
@@ -2188,6 +2271,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2188
2271
|
type: BooleanConstructor;
|
|
2189
2272
|
default: boolean;
|
|
2190
2273
|
};
|
|
2274
|
+
forceClearable: BooleanConstructor;
|
|
2191
2275
|
}, {
|
|
2192
2276
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
2193
2277
|
fieldList: {
|
|
@@ -2332,6 +2416,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2332
2416
|
type: BooleanConstructor;
|
|
2333
2417
|
default: boolean;
|
|
2334
2418
|
};
|
|
2419
|
+
forceClearable: BooleanConstructor;
|
|
2335
2420
|
}>> & {
|
|
2336
2421
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
2337
2422
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -2376,15 +2461,98 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2376
2461
|
formModel: import("../../../../../../es/components/form-render").Form<{
|
|
2377
2462
|
[x: string]: any;
|
|
2378
2463
|
}>;
|
|
2379
|
-
lowCodeReactionsHandler: (field: string
|
|
2464
|
+
lowCodeReactionsHandler: (field: string) => void;
|
|
2380
2465
|
triggerAllReactionsHandler: () => void;
|
|
2381
2466
|
operationalFormHandler: (field: string) => void;
|
|
2382
2467
|
triggerAllOperationalFormHandler: () => void;
|
|
2383
2468
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
2384
|
-
schemaAdaptor: (fieldList: import("../../../../../../es/components/form-render").FieldItem[], options?: {
|
|
2469
|
+
schemaAdaptor: (fieldList: import("../../../../../../es/components/form-render").FieldItem[], options?: Partial<{
|
|
2470
|
+
fieldList: import("../../../../../../es/components/form-render").FieldItem[];
|
|
2471
|
+
initialData: import("../../../../../../es/shared/types").AnyObject;
|
|
2472
|
+
fieldVisitor: import("../../../../../../es/components/form-render").FieldVisitor;
|
|
2385
2473
|
column: number;
|
|
2386
|
-
|
|
2387
|
-
|
|
2474
|
+
maxHeight: string | number;
|
|
2475
|
+
anchor: boolean;
|
|
2476
|
+
parallelism: number;
|
|
2477
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
2478
|
+
[key: symbol]: any;
|
|
2479
|
+
[key: `x-${string}`]: any;
|
|
2480
|
+
[key: `x-${number}`]: any;
|
|
2481
|
+
version?: string | undefined;
|
|
2482
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
2483
|
+
title?: any;
|
|
2484
|
+
description?: any;
|
|
2485
|
+
default?: any;
|
|
2486
|
+
readOnly?: boolean | undefined;
|
|
2487
|
+
writeOnly?: boolean | undefined;
|
|
2488
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
2489
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
2490
|
+
const?: any;
|
|
2491
|
+
multipleOf?: number | undefined;
|
|
2492
|
+
maximum?: number | undefined;
|
|
2493
|
+
exclusiveMaximum?: number | undefined;
|
|
2494
|
+
minimum?: number | undefined;
|
|
2495
|
+
exclusiveMinimum?: number | undefined;
|
|
2496
|
+
maxLength?: number | undefined;
|
|
2497
|
+
minLength?: number | undefined;
|
|
2498
|
+
pattern?: string | RegExp | undefined;
|
|
2499
|
+
maxItems?: number | undefined;
|
|
2500
|
+
minItems?: number | undefined;
|
|
2501
|
+
uniqueItems?: boolean | undefined;
|
|
2502
|
+
maxProperties?: number | undefined;
|
|
2503
|
+
minProperties?: number | undefined;
|
|
2504
|
+
required?: string | boolean | string[] | undefined;
|
|
2505
|
+
format?: string | undefined;
|
|
2506
|
+
$ref?: string | undefined;
|
|
2507
|
+
$namespace?: string | undefined;
|
|
2508
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2509
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2510
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
2511
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2512
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2513
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2514
|
+
"x-value"?: any;
|
|
2515
|
+
"x-index"?: number | undefined;
|
|
2516
|
+
"x-pattern"?: any;
|
|
2517
|
+
"x-display"?: any;
|
|
2518
|
+
"x-validator"?: any;
|
|
2519
|
+
"x-decorator"?: any;
|
|
2520
|
+
"x-decorator-props"?: any;
|
|
2521
|
+
"x-component"?: any;
|
|
2522
|
+
"x-component-props"?: any;
|
|
2523
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
2524
|
+
"x-content"?: any;
|
|
2525
|
+
"x-data"?: any;
|
|
2526
|
+
"x-visible"?: boolean | undefined;
|
|
2527
|
+
"x-hidden"?: boolean | undefined;
|
|
2528
|
+
"x-disabled"?: boolean | undefined;
|
|
2529
|
+
"x-editable"?: boolean | undefined;
|
|
2530
|
+
"x-read-only"?: boolean | undefined;
|
|
2531
|
+
"x-read-pretty"?: boolean | undefined;
|
|
2532
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
2533
|
+
}>;
|
|
2534
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
2535
|
+
scope: import("../../../../../../es/shared/types").AnyObject;
|
|
2536
|
+
annotation: import("../../../../../../es/shared/types").AnyObject;
|
|
2537
|
+
consumer: boolean;
|
|
2538
|
+
uuid: string;
|
|
2539
|
+
lifeCycle: Partial<{
|
|
2540
|
+
onSetup(): void;
|
|
2541
|
+
beforeRequest(fieldKey: string, params?: import("../../../../../../es/shared/types").AnyObject | undefined, payload?: import("../../../../../../es/shared/types").AnyObject | undefined): void | import("../../../../../../es/shared/types").UndefinedAble<import("../../../../../../es/shared/types").AnyObject>;
|
|
2542
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../../../../es/shared/types").AnyObject | undefined): import("../../../../../../es/shared/types").AnyObject[];
|
|
2543
|
+
afterOptionInit(fieldKey: string, options: import("../../../../../../es/shared/types").AnyObject[], payload?: import("../../../../../../es/shared/types").AnyObject | undefined): void;
|
|
2544
|
+
}>;
|
|
2545
|
+
businessFormatter: import("../../../../../../es/components/form-render").FormBusinessFormatter;
|
|
2546
|
+
requestInstance: import("../../../../../../es/components/form-render").RequestInstance;
|
|
2547
|
+
enterToNextWidget: boolean | ((fieldItem: import("../../../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
2548
|
+
lowCodeReactions: import("../../../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
2549
|
+
linebarAutoHidden: boolean;
|
|
2550
|
+
bordered: string | boolean;
|
|
2551
|
+
uniqueCacheData: boolean;
|
|
2552
|
+
operationalForm: import("../../../../../../es/shared/types").FormOperationalConfig[];
|
|
2553
|
+
outBordered: boolean;
|
|
2554
|
+
forceClearable: boolean;
|
|
2555
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
2388
2556
|
[key: symbol]: any;
|
|
2389
2557
|
[key: `x-${string}`]: any;
|
|
2390
2558
|
[key: `x-${number}`]: any;
|
|
@@ -2808,6 +2976,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2808
2976
|
type: BooleanConstructor;
|
|
2809
2977
|
default: boolean;
|
|
2810
2978
|
};
|
|
2979
|
+
forceClearable: BooleanConstructor;
|
|
2811
2980
|
}>> & {
|
|
2812
2981
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
2813
2982
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -2816,6 +2985,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2816
2985
|
anchor: boolean;
|
|
2817
2986
|
maxHeight: string | number;
|
|
2818
2987
|
column: number;
|
|
2988
|
+
forceClearable: boolean;
|
|
2819
2989
|
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
2820
2990
|
initialData: import("../../../../../../es/shared/types").AnyObject;
|
|
2821
2991
|
parallelism: number;
|
|
@@ -197,6 +197,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
197
197
|
type: BooleanConstructor;
|
|
198
198
|
default: boolean;
|
|
199
199
|
};
|
|
200
|
+
forceClearable: BooleanConstructor;
|
|
200
201
|
}, {
|
|
201
202
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
202
203
|
fieldList: {
|
|
@@ -341,6 +342,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
341
342
|
type: BooleanConstructor;
|
|
342
343
|
default: boolean;
|
|
343
344
|
};
|
|
345
|
+
forceClearable: BooleanConstructor;
|
|
344
346
|
}>> & {
|
|
345
347
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
346
348
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -385,15 +387,98 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
385
387
|
formModel: import("../../../../../../es/components/form-render").Form<{
|
|
386
388
|
[x: string]: any;
|
|
387
389
|
}>;
|
|
388
|
-
lowCodeReactionsHandler: (field: string
|
|
390
|
+
lowCodeReactionsHandler: (field: string) => void;
|
|
389
391
|
triggerAllReactionsHandler: () => void;
|
|
390
392
|
operationalFormHandler: (field: string) => void;
|
|
391
393
|
triggerAllOperationalFormHandler: () => void;
|
|
392
394
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
393
|
-
schemaAdaptor: (fieldList: FieldItem[], options?: {
|
|
395
|
+
schemaAdaptor: (fieldList: FieldItem[], options?: Partial<{
|
|
396
|
+
fieldList: FieldItem[];
|
|
397
|
+
initialData: import("../../../..").AnyObject;
|
|
398
|
+
fieldVisitor: import("../../../../../../es/components/form-render").FieldVisitor;
|
|
394
399
|
column: number;
|
|
395
|
-
|
|
396
|
-
|
|
400
|
+
maxHeight: string | number;
|
|
401
|
+
anchor: boolean;
|
|
402
|
+
parallelism: number;
|
|
403
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
404
|
+
[key: symbol]: any;
|
|
405
|
+
[key: `x-${string}`]: any;
|
|
406
|
+
[key: `x-${number}`]: any;
|
|
407
|
+
version?: string | undefined;
|
|
408
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
409
|
+
title?: any;
|
|
410
|
+
description?: any;
|
|
411
|
+
default?: any;
|
|
412
|
+
readOnly?: boolean | undefined;
|
|
413
|
+
writeOnly?: boolean | undefined;
|
|
414
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
415
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
416
|
+
const?: any;
|
|
417
|
+
multipleOf?: number | undefined;
|
|
418
|
+
maximum?: number | undefined;
|
|
419
|
+
exclusiveMaximum?: number | undefined;
|
|
420
|
+
minimum?: number | undefined;
|
|
421
|
+
exclusiveMinimum?: number | undefined;
|
|
422
|
+
maxLength?: number | undefined;
|
|
423
|
+
minLength?: number | undefined;
|
|
424
|
+
pattern?: string | RegExp | undefined;
|
|
425
|
+
maxItems?: number | undefined;
|
|
426
|
+
minItems?: number | undefined;
|
|
427
|
+
uniqueItems?: boolean | undefined;
|
|
428
|
+
maxProperties?: number | undefined;
|
|
429
|
+
minProperties?: number | undefined;
|
|
430
|
+
required?: string | boolean | string[] | undefined;
|
|
431
|
+
format?: string | undefined;
|
|
432
|
+
$ref?: string | undefined;
|
|
433
|
+
$namespace?: string | undefined;
|
|
434
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
435
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
436
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
437
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
438
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
439
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
440
|
+
"x-value"?: any;
|
|
441
|
+
"x-index"?: number | undefined;
|
|
442
|
+
"x-pattern"?: any;
|
|
443
|
+
"x-display"?: any;
|
|
444
|
+
"x-validator"?: any;
|
|
445
|
+
"x-decorator"?: any;
|
|
446
|
+
"x-decorator-props"?: any;
|
|
447
|
+
"x-component"?: any;
|
|
448
|
+
"x-component-props"?: any;
|
|
449
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
450
|
+
"x-content"?: any;
|
|
451
|
+
"x-data"?: any;
|
|
452
|
+
"x-visible"?: boolean | undefined;
|
|
453
|
+
"x-hidden"?: boolean | undefined;
|
|
454
|
+
"x-disabled"?: boolean | undefined;
|
|
455
|
+
"x-editable"?: boolean | undefined;
|
|
456
|
+
"x-read-only"?: boolean | undefined;
|
|
457
|
+
"x-read-pretty"?: boolean | undefined;
|
|
458
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
459
|
+
}>;
|
|
460
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
461
|
+
scope: import("../../../..").AnyObject;
|
|
462
|
+
annotation: import("../../../..").AnyObject;
|
|
463
|
+
consumer: boolean;
|
|
464
|
+
uuid: string;
|
|
465
|
+
lifeCycle: Partial<{
|
|
466
|
+
onSetup(): void;
|
|
467
|
+
beforeRequest(fieldKey: string, params?: import("../../../..").AnyObject | undefined, payload?: import("../../../..").AnyObject | undefined): void | import("../../../..").UndefinedAble<import("../../../..").AnyObject>;
|
|
468
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../..").AnyObject | undefined): import("../../../..").AnyObject[];
|
|
469
|
+
afterOptionInit(fieldKey: string, options: import("../../../..").AnyObject[], payload?: import("../../../..").AnyObject | undefined): void;
|
|
470
|
+
}>;
|
|
471
|
+
businessFormatter: import("../../../../../../es/components/form-render").FormBusinessFormatter;
|
|
472
|
+
requestInstance: import("../../../../../../es/components/form-render").RequestInstance;
|
|
473
|
+
enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
|
|
474
|
+
lowCodeReactions: import("../../../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
475
|
+
linebarAutoHidden: boolean;
|
|
476
|
+
bordered: string | boolean;
|
|
477
|
+
uniqueCacheData: boolean;
|
|
478
|
+
operationalForm: import("../../../..").FormOperationalConfig[];
|
|
479
|
+
outBordered: boolean;
|
|
480
|
+
forceClearable: boolean;
|
|
481
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
397
482
|
[key: symbol]: any;
|
|
398
483
|
[key: `x-${string}`]: any;
|
|
399
484
|
[key: `x-${number}`]: any;
|
|
@@ -817,6 +902,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
817
902
|
type: BooleanConstructor;
|
|
818
903
|
default: boolean;
|
|
819
904
|
};
|
|
905
|
+
forceClearable: BooleanConstructor;
|
|
820
906
|
}>> & {
|
|
821
907
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
822
908
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -825,6 +911,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
825
911
|
anchor: boolean;
|
|
826
912
|
maxHeight: string | number;
|
|
827
913
|
column: number;
|
|
914
|
+
forceClearable: boolean;
|
|
828
915
|
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
829
916
|
initialData: import("../../../..").AnyObject;
|
|
830
917
|
parallelism: number;
|
|
@@ -1905,6 +1905,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1905
1905
|
type: BooleanConstructor;
|
|
1906
1906
|
default: boolean;
|
|
1907
1907
|
};
|
|
1908
|
+
forceClearable: BooleanConstructor;
|
|
1908
1909
|
}, {
|
|
1909
1910
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1910
1911
|
fieldList: {
|
|
@@ -2049,6 +2050,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2049
2050
|
type: BooleanConstructor;
|
|
2050
2051
|
default: boolean;
|
|
2051
2052
|
};
|
|
2053
|
+
forceClearable: BooleanConstructor;
|
|
2052
2054
|
}>> & {
|
|
2053
2055
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
2054
2056
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -2093,15 +2095,98 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2093
2095
|
formModel: import("@formily/core").Form<{
|
|
2094
2096
|
[x: string]: any;
|
|
2095
2097
|
}>;
|
|
2096
|
-
lowCodeReactionsHandler: (field: string
|
|
2098
|
+
lowCodeReactionsHandler: (field: string) => void;
|
|
2097
2099
|
triggerAllReactionsHandler: () => void;
|
|
2098
2100
|
operationalFormHandler: (field: string) => void;
|
|
2099
2101
|
triggerAllOperationalFormHandler: () => void;
|
|
2100
2102
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
2101
|
-
schemaAdaptor: (fieldList: import("..").FieldItem[], options?: {
|
|
2103
|
+
schemaAdaptor: (fieldList: import("..").FieldItem[], options?: Partial<{
|
|
2104
|
+
fieldList: import("..").FieldItem[];
|
|
2105
|
+
initialData: import("../../../es/shared/types").AnyObject;
|
|
2106
|
+
fieldVisitor: import("..").FieldVisitor;
|
|
2102
2107
|
column: number;
|
|
2103
|
-
|
|
2104
|
-
|
|
2108
|
+
maxHeight: string | number;
|
|
2109
|
+
anchor: boolean;
|
|
2110
|
+
parallelism: number;
|
|
2111
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
2112
|
+
[key: symbol]: any;
|
|
2113
|
+
[key: `x-${string}`]: any;
|
|
2114
|
+
[key: `x-${number}`]: any;
|
|
2115
|
+
version?: string | undefined;
|
|
2116
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
2117
|
+
title?: any;
|
|
2118
|
+
description?: any;
|
|
2119
|
+
default?: any;
|
|
2120
|
+
readOnly?: boolean | undefined;
|
|
2121
|
+
writeOnly?: boolean | undefined;
|
|
2122
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
2123
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
2124
|
+
const?: any;
|
|
2125
|
+
multipleOf?: number | undefined;
|
|
2126
|
+
maximum?: number | undefined;
|
|
2127
|
+
exclusiveMaximum?: number | undefined;
|
|
2128
|
+
minimum?: number | undefined;
|
|
2129
|
+
exclusiveMinimum?: number | undefined;
|
|
2130
|
+
maxLength?: number | undefined;
|
|
2131
|
+
minLength?: number | undefined;
|
|
2132
|
+
pattern?: string | RegExp | undefined;
|
|
2133
|
+
maxItems?: number | undefined;
|
|
2134
|
+
minItems?: number | undefined;
|
|
2135
|
+
uniqueItems?: boolean | undefined;
|
|
2136
|
+
maxProperties?: number | undefined;
|
|
2137
|
+
minProperties?: number | undefined;
|
|
2138
|
+
required?: string | boolean | string[] | undefined;
|
|
2139
|
+
format?: string | undefined;
|
|
2140
|
+
$ref?: string | undefined;
|
|
2141
|
+
$namespace?: string | undefined;
|
|
2142
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2143
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2144
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
2145
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2146
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2147
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2148
|
+
"x-value"?: any;
|
|
2149
|
+
"x-index"?: number | undefined;
|
|
2150
|
+
"x-pattern"?: any;
|
|
2151
|
+
"x-display"?: any;
|
|
2152
|
+
"x-validator"?: any;
|
|
2153
|
+
"x-decorator"?: any;
|
|
2154
|
+
"x-decorator-props"?: any;
|
|
2155
|
+
"x-component"?: any;
|
|
2156
|
+
"x-component-props"?: any;
|
|
2157
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
2158
|
+
"x-content"?: any;
|
|
2159
|
+
"x-data"?: any;
|
|
2160
|
+
"x-visible"?: boolean | undefined;
|
|
2161
|
+
"x-hidden"?: boolean | undefined;
|
|
2162
|
+
"x-disabled"?: boolean | undefined;
|
|
2163
|
+
"x-editable"?: boolean | undefined;
|
|
2164
|
+
"x-read-only"?: boolean | undefined;
|
|
2165
|
+
"x-read-pretty"?: boolean | undefined;
|
|
2166
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
2167
|
+
}>;
|
|
2168
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
2169
|
+
scope: import("../../../es/shared/types").AnyObject;
|
|
2170
|
+
annotation: import("../../../es/shared/types").AnyObject;
|
|
2171
|
+
consumer: boolean;
|
|
2172
|
+
uuid: string;
|
|
2173
|
+
lifeCycle: Partial<{
|
|
2174
|
+
onSetup(): void;
|
|
2175
|
+
beforeRequest(fieldKey: string, params?: import("../../../es/shared/types").AnyObject | undefined, payload?: import("../../../es/shared/types").AnyObject | undefined): void | import("../../../es/shared/types").UndefinedAble<import("../../../es/shared/types").AnyObject>;
|
|
2176
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../es/shared/types").AnyObject | undefined): import("../../../es/shared/types").AnyObject[];
|
|
2177
|
+
afterOptionInit(fieldKey: string, options: import("../../../es/shared/types").AnyObject[], payload?: import("../../../es/shared/types").AnyObject | undefined): void;
|
|
2178
|
+
}>;
|
|
2179
|
+
businessFormatter: import("..").FormBusinessFormatter;
|
|
2180
|
+
requestInstance: import("..").RequestInstance;
|
|
2181
|
+
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
2182
|
+
lowCodeReactions: import("..").FormLowCodeReactions.Config[];
|
|
2183
|
+
linebarAutoHidden: boolean;
|
|
2184
|
+
bordered: string | boolean;
|
|
2185
|
+
uniqueCacheData: boolean;
|
|
2186
|
+
operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
|
|
2187
|
+
outBordered: boolean;
|
|
2188
|
+
forceClearable: boolean;
|
|
2189
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
2105
2190
|
[key: symbol]: any;
|
|
2106
2191
|
[key: `x-${string}`]: any;
|
|
2107
2192
|
[key: `x-${number}`]: any;
|
|
@@ -2525,6 +2610,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2525
2610
|
type: BooleanConstructor;
|
|
2526
2611
|
default: boolean;
|
|
2527
2612
|
};
|
|
2613
|
+
forceClearable: BooleanConstructor;
|
|
2528
2614
|
}>> & {
|
|
2529
2615
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
2530
2616
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -2533,6 +2619,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2533
2619
|
anchor: boolean;
|
|
2534
2620
|
maxHeight: string | number;
|
|
2535
2621
|
column: number;
|
|
2622
|
+
forceClearable: boolean;
|
|
2536
2623
|
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
2537
2624
|
initialData: import("../../../es/shared/types").AnyObject;
|
|
2538
2625
|
parallelism: number;
|
|
@@ -1907,6 +1907,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1907
1907
|
type: BooleanConstructor;
|
|
1908
1908
|
default: boolean;
|
|
1909
1909
|
};
|
|
1910
|
+
forceClearable: BooleanConstructor;
|
|
1910
1911
|
}, {
|
|
1911
1912
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
1912
1913
|
fieldList: {
|
|
@@ -2051,6 +2052,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2051
2052
|
type: BooleanConstructor;
|
|
2052
2053
|
default: boolean;
|
|
2053
2054
|
};
|
|
2055
|
+
forceClearable: BooleanConstructor;
|
|
2054
2056
|
}>> & {
|
|
2055
2057
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
2056
2058
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -2095,15 +2097,98 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2095
2097
|
formModel: import("../../../../es/components/form-render").Form<{
|
|
2096
2098
|
[x: string]: any;
|
|
2097
2099
|
}>;
|
|
2098
|
-
lowCodeReactionsHandler: (field: string
|
|
2100
|
+
lowCodeReactionsHandler: (field: string) => void;
|
|
2099
2101
|
triggerAllReactionsHandler: () => void;
|
|
2100
2102
|
operationalFormHandler: (field: string) => void;
|
|
2101
2103
|
triggerAllOperationalFormHandler: () => void;
|
|
2102
2104
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
2103
|
-
schemaAdaptor: (fieldList: FieldItem[], options?: {
|
|
2105
|
+
schemaAdaptor: (fieldList: FieldItem[], options?: Partial<{
|
|
2106
|
+
fieldList: FieldItem[];
|
|
2107
|
+
initialData: import("../../../../es/shared/types").AnyObject;
|
|
2108
|
+
fieldVisitor: import("../../../../es/components/form-render").FieldVisitor;
|
|
2104
2109
|
column: number;
|
|
2105
|
-
|
|
2106
|
-
|
|
2110
|
+
maxHeight: string | number;
|
|
2111
|
+
anchor: boolean;
|
|
2112
|
+
parallelism: number;
|
|
2113
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
2114
|
+
[key: symbol]: any;
|
|
2115
|
+
[key: `x-${string}`]: any;
|
|
2116
|
+
[key: `x-${number}`]: any;
|
|
2117
|
+
version?: string | undefined;
|
|
2118
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
2119
|
+
title?: any;
|
|
2120
|
+
description?: any;
|
|
2121
|
+
default?: any;
|
|
2122
|
+
readOnly?: boolean | undefined;
|
|
2123
|
+
writeOnly?: boolean | undefined;
|
|
2124
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
2125
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
2126
|
+
const?: any;
|
|
2127
|
+
multipleOf?: number | undefined;
|
|
2128
|
+
maximum?: number | undefined;
|
|
2129
|
+
exclusiveMaximum?: number | undefined;
|
|
2130
|
+
minimum?: number | undefined;
|
|
2131
|
+
exclusiveMinimum?: number | undefined;
|
|
2132
|
+
maxLength?: number | undefined;
|
|
2133
|
+
minLength?: number | undefined;
|
|
2134
|
+
pattern?: string | RegExp | undefined;
|
|
2135
|
+
maxItems?: number | undefined;
|
|
2136
|
+
minItems?: number | undefined;
|
|
2137
|
+
uniqueItems?: boolean | undefined;
|
|
2138
|
+
maxProperties?: number | undefined;
|
|
2139
|
+
minProperties?: number | undefined;
|
|
2140
|
+
required?: string | boolean | string[] | undefined;
|
|
2141
|
+
format?: string | undefined;
|
|
2142
|
+
$ref?: string | undefined;
|
|
2143
|
+
$namespace?: string | undefined;
|
|
2144
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2145
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2146
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
2147
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2148
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2149
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2150
|
+
"x-value"?: any;
|
|
2151
|
+
"x-index"?: number | undefined;
|
|
2152
|
+
"x-pattern"?: any;
|
|
2153
|
+
"x-display"?: any;
|
|
2154
|
+
"x-validator"?: any;
|
|
2155
|
+
"x-decorator"?: any;
|
|
2156
|
+
"x-decorator-props"?: any;
|
|
2157
|
+
"x-component"?: any;
|
|
2158
|
+
"x-component-props"?: any;
|
|
2159
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
2160
|
+
"x-content"?: any;
|
|
2161
|
+
"x-data"?: any;
|
|
2162
|
+
"x-visible"?: boolean | undefined;
|
|
2163
|
+
"x-hidden"?: boolean | undefined;
|
|
2164
|
+
"x-disabled"?: boolean | undefined;
|
|
2165
|
+
"x-editable"?: boolean | undefined;
|
|
2166
|
+
"x-read-only"?: boolean | undefined;
|
|
2167
|
+
"x-read-pretty"?: boolean | undefined;
|
|
2168
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
2169
|
+
}>;
|
|
2170
|
+
components: Record<string, Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
2171
|
+
scope: import("../../../../es/shared/types").AnyObject;
|
|
2172
|
+
annotation: import("../../../../es/shared/types").AnyObject;
|
|
2173
|
+
consumer: boolean;
|
|
2174
|
+
uuid: string;
|
|
2175
|
+
lifeCycle: Partial<{
|
|
2176
|
+
onSetup(): void;
|
|
2177
|
+
beforeRequest(fieldKey: string, params?: import("../../../../es/shared/types").AnyObject | undefined, payload?: import("../../../../es/shared/types").AnyObject | undefined): void | import("../../../../es/shared/types").UndefinedAble<import("../../../../es/shared/types").AnyObject>;
|
|
2178
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../../es/shared/types").AnyObject | undefined): import("../../../../es/shared/types").AnyObject[];
|
|
2179
|
+
afterOptionInit(fieldKey: string, options: import("../../../../es/shared/types").AnyObject[], payload?: import("../../../../es/shared/types").AnyObject | undefined): void;
|
|
2180
|
+
}>;
|
|
2181
|
+
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
2182
|
+
requestInstance: import("../../../../es/components/form-render").RequestInstance;
|
|
2183
|
+
enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
|
|
2184
|
+
lowCodeReactions: import("../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
2185
|
+
linebarAutoHidden: boolean;
|
|
2186
|
+
bordered: string | boolean;
|
|
2187
|
+
uniqueCacheData: boolean;
|
|
2188
|
+
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
2189
|
+
outBordered: boolean;
|
|
2190
|
+
forceClearable: boolean;
|
|
2191
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
2107
2192
|
[key: symbol]: any;
|
|
2108
2193
|
[key: `x-${string}`]: any;
|
|
2109
2194
|
[key: `x-${number}`]: any;
|
|
@@ -2527,6 +2612,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2527
2612
|
type: BooleanConstructor;
|
|
2528
2613
|
default: boolean;
|
|
2529
2614
|
};
|
|
2615
|
+
forceClearable: BooleanConstructor;
|
|
2530
2616
|
}>> & {
|
|
2531
2617
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
2532
2618
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -2535,6 +2621,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2535
2621
|
anchor: boolean;
|
|
2536
2622
|
maxHeight: string | number;
|
|
2537
2623
|
column: number;
|
|
2624
|
+
forceClearable: boolean;
|
|
2538
2625
|
components: Record<string, Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
2539
2626
|
initialData: import("../../../../es/shared/types").AnyObject;
|
|
2540
2627
|
parallelism: number;
|