cnhis-design-vue 3.1.50-beta.11 → 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/form-config/index.d.ts +186 -6
- package/es/components/form-config/src/FormConfig.vue.d.ts +186 -6
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +90 -3
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +93 -3
- package/es/components/form-config/src/hooks/useConfigurationField.js +1 -1
- package/es/components/form-render/index.d.ts +90 -3
- package/es/components/form-render/src/FormRender.vue.d.ts +90 -3
- package/es/components/form-render/src/FormRender.vue2.js +1 -1
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +90 -3
- 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/types/index.d.ts +1 -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/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 +270 -9
- package/es/components/info-header/src/InfoHeader.vue.d.ts +270 -9
- 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 +176 -6
- package/es/components/info-header/src/components/patientInfo/index.vue.d.ts +90 -3
- package/es/components/shortcut-setter/index.d.ts +90 -3
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +90 -3
- 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/package.json +2 -2
|
@@ -103,6 +103,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
103
103
|
uniqueCacheData: boolean;
|
|
104
104
|
operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
|
|
105
105
|
outBordered: boolean;
|
|
106
|
+
forceClearable: boolean;
|
|
106
107
|
}>>>;
|
|
107
108
|
};
|
|
108
109
|
}, {
|
|
@@ -208,6 +209,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
208
209
|
uniqueCacheData: boolean;
|
|
209
210
|
operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
|
|
210
211
|
outBordered: boolean;
|
|
212
|
+
forceClearable: boolean;
|
|
211
213
|
}>>>;
|
|
212
214
|
};
|
|
213
215
|
}>> & {
|
|
@@ -7405,6 +7407,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7405
7407
|
type: BooleanConstructor;
|
|
7406
7408
|
default: boolean;
|
|
7407
7409
|
};
|
|
7410
|
+
forceClearable: BooleanConstructor;
|
|
7408
7411
|
}, {
|
|
7409
7412
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
7410
7413
|
fieldList: {
|
|
@@ -7549,6 +7552,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7549
7552
|
type: BooleanConstructor;
|
|
7550
7553
|
default: boolean;
|
|
7551
7554
|
};
|
|
7555
|
+
forceClearable: BooleanConstructor;
|
|
7552
7556
|
}>> & {
|
|
7553
7557
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
7554
7558
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -7598,10 +7602,93 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7598
7602
|
operationalFormHandler: (field: string) => void;
|
|
7599
7603
|
triggerAllOperationalFormHandler: () => void;
|
|
7600
7604
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
7601
|
-
schemaAdaptor: (fieldList: import("..").FieldItem[], options?: {
|
|
7605
|
+
schemaAdaptor: (fieldList: import("..").FieldItem[], options?: Partial<{
|
|
7606
|
+
fieldList: import("..").FieldItem[];
|
|
7607
|
+
initialData: import("../../../es/shared/types").AnyObject;
|
|
7608
|
+
fieldVisitor: import("..").FieldVisitor;
|
|
7602
7609
|
column: number;
|
|
7603
|
-
|
|
7604
|
-
|
|
7610
|
+
maxHeight: string | number;
|
|
7611
|
+
anchor: boolean;
|
|
7612
|
+
parallelism: number;
|
|
7613
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
7614
|
+
[key: symbol]: any;
|
|
7615
|
+
[key: `x-${string}`]: any;
|
|
7616
|
+
[key: `x-${number}`]: any;
|
|
7617
|
+
version?: string | undefined;
|
|
7618
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
7619
|
+
title?: any;
|
|
7620
|
+
description?: any;
|
|
7621
|
+
default?: any;
|
|
7622
|
+
readOnly?: boolean | undefined;
|
|
7623
|
+
writeOnly?: boolean | undefined;
|
|
7624
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
7625
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
7626
|
+
const?: any;
|
|
7627
|
+
multipleOf?: number | undefined;
|
|
7628
|
+
maximum?: number | undefined;
|
|
7629
|
+
exclusiveMaximum?: number | undefined;
|
|
7630
|
+
minimum?: number | undefined;
|
|
7631
|
+
exclusiveMinimum?: number | undefined;
|
|
7632
|
+
maxLength?: number | undefined;
|
|
7633
|
+
minLength?: number | undefined;
|
|
7634
|
+
pattern?: string | RegExp | undefined;
|
|
7635
|
+
maxItems?: number | undefined;
|
|
7636
|
+
minItems?: number | undefined;
|
|
7637
|
+
uniqueItems?: boolean | undefined;
|
|
7638
|
+
maxProperties?: number | undefined;
|
|
7639
|
+
minProperties?: number | undefined;
|
|
7640
|
+
required?: string | boolean | string[] | undefined;
|
|
7641
|
+
format?: string | undefined;
|
|
7642
|
+
$ref?: string | undefined;
|
|
7643
|
+
$namespace?: string | undefined;
|
|
7644
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
7645
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
7646
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
7647
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
7648
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
7649
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
7650
|
+
"x-value"?: any;
|
|
7651
|
+
"x-index"?: number | undefined;
|
|
7652
|
+
"x-pattern"?: any;
|
|
7653
|
+
"x-display"?: any;
|
|
7654
|
+
"x-validator"?: any;
|
|
7655
|
+
"x-decorator"?: any;
|
|
7656
|
+
"x-decorator-props"?: any;
|
|
7657
|
+
"x-component"?: any;
|
|
7658
|
+
"x-component-props"?: any;
|
|
7659
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
7660
|
+
"x-content"?: any;
|
|
7661
|
+
"x-data"?: any;
|
|
7662
|
+
"x-visible"?: boolean | undefined;
|
|
7663
|
+
"x-hidden"?: boolean | undefined;
|
|
7664
|
+
"x-disabled"?: boolean | undefined;
|
|
7665
|
+
"x-editable"?: boolean | undefined;
|
|
7666
|
+
"x-read-only"?: boolean | undefined;
|
|
7667
|
+
"x-read-pretty"?: boolean | undefined;
|
|
7668
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
7669
|
+
}>;
|
|
7670
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
7671
|
+
scope: import("../../../es/shared/types").AnyObject;
|
|
7672
|
+
annotation: import("../../../es/shared/types").AnyObject;
|
|
7673
|
+
consumer: boolean;
|
|
7674
|
+
uuid: string;
|
|
7675
|
+
lifeCycle: Partial<{
|
|
7676
|
+
onSetup(): void;
|
|
7677
|
+
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>;
|
|
7678
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../es/shared/types").AnyObject | undefined): import("../../../es/shared/types").AnyObject[];
|
|
7679
|
+
afterOptionInit(fieldKey: string, options: import("../../../es/shared/types").AnyObject[], payload?: import("../../../es/shared/types").AnyObject | undefined): void;
|
|
7680
|
+
}>;
|
|
7681
|
+
businessFormatter: import("..").FormBusinessFormatter;
|
|
7682
|
+
requestInstance: import("..").RequestInstance;
|
|
7683
|
+
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
7684
|
+
lowCodeReactions: import("..").FormLowCodeReactions.Config[];
|
|
7685
|
+
linebarAutoHidden: boolean;
|
|
7686
|
+
bordered: string | boolean;
|
|
7687
|
+
uniqueCacheData: boolean;
|
|
7688
|
+
operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
|
|
7689
|
+
outBordered: boolean;
|
|
7690
|
+
forceClearable: boolean;
|
|
7691
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
7605
7692
|
[key: symbol]: any;
|
|
7606
7693
|
[key: `x-${string}`]: any;
|
|
7607
7694
|
[key: `x-${number}`]: any;
|
|
@@ -8025,6 +8112,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8025
8112
|
type: BooleanConstructor;
|
|
8026
8113
|
default: boolean;
|
|
8027
8114
|
};
|
|
8115
|
+
forceClearable: BooleanConstructor;
|
|
8028
8116
|
}>> & {
|
|
8029
8117
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
8030
8118
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -8033,6 +8121,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8033
8121
|
anchor: boolean;
|
|
8034
8122
|
maxHeight: string | number;
|
|
8035
8123
|
column: number;
|
|
8124
|
+
forceClearable: boolean;
|
|
8036
8125
|
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
8037
8126
|
initialData: import("../../../es/shared/types").AnyObject;
|
|
8038
8127
|
parallelism: number;
|
|
@@ -8249,6 +8338,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8249
8338
|
uniqueCacheData: boolean;
|
|
8250
8339
|
operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
|
|
8251
8340
|
outBordered: boolean;
|
|
8341
|
+
forceClearable: boolean;
|
|
8252
8342
|
}>>>;
|
|
8253
8343
|
};
|
|
8254
8344
|
}, {
|
|
@@ -8346,6 +8436,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8346
8436
|
uniqueCacheData: boolean;
|
|
8347
8437
|
operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
|
|
8348
8438
|
outBordered: boolean;
|
|
8439
|
+
forceClearable: boolean;
|
|
8349
8440
|
}>>>;
|
|
8350
8441
|
};
|
|
8351
8442
|
}>> & {}>>;
|
|
@@ -13685,6 +13776,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13685
13776
|
type: BooleanConstructor;
|
|
13686
13777
|
default: boolean;
|
|
13687
13778
|
};
|
|
13779
|
+
forceClearable: BooleanConstructor;
|
|
13688
13780
|
}, {
|
|
13689
13781
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
13690
13782
|
fieldList: {
|
|
@@ -13829,6 +13921,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13829
13921
|
type: BooleanConstructor;
|
|
13830
13922
|
default: boolean;
|
|
13831
13923
|
};
|
|
13924
|
+
forceClearable: BooleanConstructor;
|
|
13832
13925
|
}>> & {
|
|
13833
13926
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
13834
13927
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -13878,10 +13971,93 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13878
13971
|
operationalFormHandler: (field: string) => void;
|
|
13879
13972
|
triggerAllOperationalFormHandler: () => void;
|
|
13880
13973
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
13881
|
-
schemaAdaptor: (fieldList: import("..").FieldItem[], options?: {
|
|
13974
|
+
schemaAdaptor: (fieldList: import("..").FieldItem[], options?: Partial<{
|
|
13975
|
+
fieldList: import("..").FieldItem[];
|
|
13976
|
+
initialData: import("../../../es/shared/types").AnyObject;
|
|
13977
|
+
fieldVisitor: import("..").FieldVisitor;
|
|
13882
13978
|
column: number;
|
|
13883
|
-
|
|
13884
|
-
|
|
13979
|
+
maxHeight: string | number;
|
|
13980
|
+
anchor: boolean;
|
|
13981
|
+
parallelism: number;
|
|
13982
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
13983
|
+
[key: symbol]: any;
|
|
13984
|
+
[key: `x-${string}`]: any;
|
|
13985
|
+
[key: `x-${number}`]: any;
|
|
13986
|
+
version?: string | undefined;
|
|
13987
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
13988
|
+
title?: any;
|
|
13989
|
+
description?: any;
|
|
13990
|
+
default?: any;
|
|
13991
|
+
readOnly?: boolean | undefined;
|
|
13992
|
+
writeOnly?: boolean | undefined;
|
|
13993
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
13994
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
13995
|
+
const?: any;
|
|
13996
|
+
multipleOf?: number | undefined;
|
|
13997
|
+
maximum?: number | undefined;
|
|
13998
|
+
exclusiveMaximum?: number | undefined;
|
|
13999
|
+
minimum?: number | undefined;
|
|
14000
|
+
exclusiveMinimum?: number | undefined;
|
|
14001
|
+
maxLength?: number | undefined;
|
|
14002
|
+
minLength?: number | undefined;
|
|
14003
|
+
pattern?: string | RegExp | undefined;
|
|
14004
|
+
maxItems?: number | undefined;
|
|
14005
|
+
minItems?: number | undefined;
|
|
14006
|
+
uniqueItems?: boolean | undefined;
|
|
14007
|
+
maxProperties?: number | undefined;
|
|
14008
|
+
minProperties?: number | undefined;
|
|
14009
|
+
required?: string | boolean | string[] | undefined;
|
|
14010
|
+
format?: string | undefined;
|
|
14011
|
+
$ref?: string | undefined;
|
|
14012
|
+
$namespace?: string | undefined;
|
|
14013
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
14014
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
14015
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
14016
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
14017
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
14018
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
14019
|
+
"x-value"?: any;
|
|
14020
|
+
"x-index"?: number | undefined;
|
|
14021
|
+
"x-pattern"?: any;
|
|
14022
|
+
"x-display"?: any;
|
|
14023
|
+
"x-validator"?: any;
|
|
14024
|
+
"x-decorator"?: any;
|
|
14025
|
+
"x-decorator-props"?: any;
|
|
14026
|
+
"x-component"?: any;
|
|
14027
|
+
"x-component-props"?: any;
|
|
14028
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
14029
|
+
"x-content"?: any;
|
|
14030
|
+
"x-data"?: any;
|
|
14031
|
+
"x-visible"?: boolean | undefined;
|
|
14032
|
+
"x-hidden"?: boolean | undefined;
|
|
14033
|
+
"x-disabled"?: boolean | undefined;
|
|
14034
|
+
"x-editable"?: boolean | undefined;
|
|
14035
|
+
"x-read-only"?: boolean | undefined;
|
|
14036
|
+
"x-read-pretty"?: boolean | undefined;
|
|
14037
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
14038
|
+
}>;
|
|
14039
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
14040
|
+
scope: import("../../../es/shared/types").AnyObject;
|
|
14041
|
+
annotation: import("../../../es/shared/types").AnyObject;
|
|
14042
|
+
consumer: boolean;
|
|
14043
|
+
uuid: string;
|
|
14044
|
+
lifeCycle: Partial<{
|
|
14045
|
+
onSetup(): void;
|
|
14046
|
+
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>;
|
|
14047
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../es/shared/types").AnyObject | undefined): import("../../../es/shared/types").AnyObject[];
|
|
14048
|
+
afterOptionInit(fieldKey: string, options: import("../../../es/shared/types").AnyObject[], payload?: import("../../../es/shared/types").AnyObject | undefined): void;
|
|
14049
|
+
}>;
|
|
14050
|
+
businessFormatter: import("..").FormBusinessFormatter;
|
|
14051
|
+
requestInstance: import("..").RequestInstance;
|
|
14052
|
+
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
14053
|
+
lowCodeReactions: import("..").FormLowCodeReactions.Config[];
|
|
14054
|
+
linebarAutoHidden: boolean;
|
|
14055
|
+
bordered: string | boolean;
|
|
14056
|
+
uniqueCacheData: boolean;
|
|
14057
|
+
operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
|
|
14058
|
+
outBordered: boolean;
|
|
14059
|
+
forceClearable: boolean;
|
|
14060
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
13885
14061
|
[key: symbol]: any;
|
|
13886
14062
|
[key: `x-${string}`]: any;
|
|
13887
14063
|
[key: `x-${number}`]: any;
|
|
@@ -14305,6 +14481,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14305
14481
|
type: BooleanConstructor;
|
|
14306
14482
|
default: boolean;
|
|
14307
14483
|
};
|
|
14484
|
+
forceClearable: BooleanConstructor;
|
|
14308
14485
|
}>> & {
|
|
14309
14486
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
14310
14487
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -14313,6 +14490,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14313
14490
|
anchor: boolean;
|
|
14314
14491
|
maxHeight: string | number;
|
|
14315
14492
|
column: number;
|
|
14493
|
+
forceClearable: boolean;
|
|
14316
14494
|
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
14317
14495
|
initialData: import("../../../es/shared/types").AnyObject;
|
|
14318
14496
|
parallelism: number;
|
|
@@ -14419,6 +14597,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14419
14597
|
uniqueCacheData: boolean;
|
|
14420
14598
|
operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
|
|
14421
14599
|
outBordered: boolean;
|
|
14600
|
+
forceClearable: boolean;
|
|
14422
14601
|
}>>>;
|
|
14423
14602
|
};
|
|
14424
14603
|
}>>, {}>;
|
|
@@ -14555,6 +14734,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14555
14734
|
uniqueCacheData: boolean;
|
|
14556
14735
|
operationalForm: import("../../../es/shared/types").FormOperationalConfig[];
|
|
14557
14736
|
outBordered: boolean;
|
|
14737
|
+
forceClearable: boolean;
|
|
14558
14738
|
}>>>;
|
|
14559
14739
|
};
|
|
14560
14740
|
}>> & {
|
|
@@ -105,6 +105,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
105
105
|
uniqueCacheData: boolean;
|
|
106
106
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
107
107
|
outBordered: boolean;
|
|
108
|
+
forceClearable: boolean;
|
|
108
109
|
}>>>;
|
|
109
110
|
};
|
|
110
111
|
}, {
|
|
@@ -210,6 +211,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
210
211
|
uniqueCacheData: boolean;
|
|
211
212
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
212
213
|
outBordered: boolean;
|
|
214
|
+
forceClearable: boolean;
|
|
213
215
|
}>>>;
|
|
214
216
|
};
|
|
215
217
|
}>> & {
|
|
@@ -7407,6 +7409,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7407
7409
|
type: BooleanConstructor;
|
|
7408
7410
|
default: boolean;
|
|
7409
7411
|
};
|
|
7412
|
+
forceClearable: BooleanConstructor;
|
|
7410
7413
|
}, {
|
|
7411
7414
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
7412
7415
|
fieldList: {
|
|
@@ -7551,6 +7554,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7551
7554
|
type: BooleanConstructor;
|
|
7552
7555
|
default: boolean;
|
|
7553
7556
|
};
|
|
7557
|
+
forceClearable: BooleanConstructor;
|
|
7554
7558
|
}>> & {
|
|
7555
7559
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
7556
7560
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -7600,10 +7604,93 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7600
7604
|
operationalFormHandler: (field: string) => void;
|
|
7601
7605
|
triggerAllOperationalFormHandler: () => void;
|
|
7602
7606
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
7603
|
-
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: {
|
|
7607
|
+
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: Partial<{
|
|
7608
|
+
fieldList: import("../../../../es/components/form-render").FieldItem[];
|
|
7609
|
+
initialData: import("../../../../es/shared/types").AnyObject;
|
|
7610
|
+
fieldVisitor: import("../../../../es/components/form-render").FieldVisitor;
|
|
7604
7611
|
column: number;
|
|
7605
|
-
|
|
7606
|
-
|
|
7612
|
+
maxHeight: string | number;
|
|
7613
|
+
anchor: boolean;
|
|
7614
|
+
parallelism: number;
|
|
7615
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
7616
|
+
[key: symbol]: any;
|
|
7617
|
+
[key: `x-${string}`]: any;
|
|
7618
|
+
[key: `x-${number}`]: any;
|
|
7619
|
+
version?: string | undefined;
|
|
7620
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
7621
|
+
title?: any;
|
|
7622
|
+
description?: any;
|
|
7623
|
+
default?: any;
|
|
7624
|
+
readOnly?: boolean | undefined;
|
|
7625
|
+
writeOnly?: boolean | undefined;
|
|
7626
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
7627
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
7628
|
+
const?: any;
|
|
7629
|
+
multipleOf?: number | undefined;
|
|
7630
|
+
maximum?: number | undefined;
|
|
7631
|
+
exclusiveMaximum?: number | undefined;
|
|
7632
|
+
minimum?: number | undefined;
|
|
7633
|
+
exclusiveMinimum?: number | undefined;
|
|
7634
|
+
maxLength?: number | undefined;
|
|
7635
|
+
minLength?: number | undefined;
|
|
7636
|
+
pattern?: string | RegExp | undefined;
|
|
7637
|
+
maxItems?: number | undefined;
|
|
7638
|
+
minItems?: number | undefined;
|
|
7639
|
+
uniqueItems?: boolean | undefined;
|
|
7640
|
+
maxProperties?: number | undefined;
|
|
7641
|
+
minProperties?: number | undefined;
|
|
7642
|
+
required?: string | boolean | string[] | undefined;
|
|
7643
|
+
format?: string | undefined;
|
|
7644
|
+
$ref?: string | undefined;
|
|
7645
|
+
$namespace?: string | undefined;
|
|
7646
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
7647
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
7648
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
7649
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
7650
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
7651
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
7652
|
+
"x-value"?: any;
|
|
7653
|
+
"x-index"?: number | undefined;
|
|
7654
|
+
"x-pattern"?: any;
|
|
7655
|
+
"x-display"?: any;
|
|
7656
|
+
"x-validator"?: any;
|
|
7657
|
+
"x-decorator"?: any;
|
|
7658
|
+
"x-decorator-props"?: any;
|
|
7659
|
+
"x-component"?: any;
|
|
7660
|
+
"x-component-props"?: any;
|
|
7661
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
7662
|
+
"x-content"?: any;
|
|
7663
|
+
"x-data"?: any;
|
|
7664
|
+
"x-visible"?: boolean | undefined;
|
|
7665
|
+
"x-hidden"?: boolean | undefined;
|
|
7666
|
+
"x-disabled"?: boolean | undefined;
|
|
7667
|
+
"x-editable"?: boolean | undefined;
|
|
7668
|
+
"x-read-only"?: boolean | undefined;
|
|
7669
|
+
"x-read-pretty"?: boolean | undefined;
|
|
7670
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
7671
|
+
}>;
|
|
7672
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
7673
|
+
scope: import("../../../../es/shared/types").AnyObject;
|
|
7674
|
+
annotation: import("../../../../es/shared/types").AnyObject;
|
|
7675
|
+
consumer: boolean;
|
|
7676
|
+
uuid: string;
|
|
7677
|
+
lifeCycle: Partial<{
|
|
7678
|
+
onSetup(): void;
|
|
7679
|
+
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>;
|
|
7680
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../../es/shared/types").AnyObject | undefined): import("../../../../es/shared/types").AnyObject[];
|
|
7681
|
+
afterOptionInit(fieldKey: string, options: import("../../../../es/shared/types").AnyObject[], payload?: import("../../../../es/shared/types").AnyObject | undefined): void;
|
|
7682
|
+
}>;
|
|
7683
|
+
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
7684
|
+
requestInstance: import("../../../../es/components/form-render").RequestInstance;
|
|
7685
|
+
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
7686
|
+
lowCodeReactions: import("../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
7687
|
+
linebarAutoHidden: boolean;
|
|
7688
|
+
bordered: string | boolean;
|
|
7689
|
+
uniqueCacheData: boolean;
|
|
7690
|
+
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
7691
|
+
outBordered: boolean;
|
|
7692
|
+
forceClearable: boolean;
|
|
7693
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
7607
7694
|
[key: symbol]: any;
|
|
7608
7695
|
[key: `x-${string}`]: any;
|
|
7609
7696
|
[key: `x-${number}`]: any;
|
|
@@ -8027,6 +8114,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8027
8114
|
type: BooleanConstructor;
|
|
8028
8115
|
default: boolean;
|
|
8029
8116
|
};
|
|
8117
|
+
forceClearable: BooleanConstructor;
|
|
8030
8118
|
}>> & {
|
|
8031
8119
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
8032
8120
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -8035,6 +8123,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8035
8123
|
anchor: boolean;
|
|
8036
8124
|
maxHeight: string | number;
|
|
8037
8125
|
column: number;
|
|
8126
|
+
forceClearable: boolean;
|
|
8038
8127
|
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
8039
8128
|
initialData: import("../../../../es/shared/types").AnyObject;
|
|
8040
8129
|
parallelism: number;
|
|
@@ -8251,6 +8340,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8251
8340
|
uniqueCacheData: boolean;
|
|
8252
8341
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
8253
8342
|
outBordered: boolean;
|
|
8343
|
+
forceClearable: boolean;
|
|
8254
8344
|
}>>>;
|
|
8255
8345
|
};
|
|
8256
8346
|
}, {
|
|
@@ -8348,6 +8438,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8348
8438
|
uniqueCacheData: boolean;
|
|
8349
8439
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
8350
8440
|
outBordered: boolean;
|
|
8441
|
+
forceClearable: boolean;
|
|
8351
8442
|
}>>>;
|
|
8352
8443
|
};
|
|
8353
8444
|
}>> & {}>>;
|
|
@@ -13687,6 +13778,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13687
13778
|
type: BooleanConstructor;
|
|
13688
13779
|
default: boolean;
|
|
13689
13780
|
};
|
|
13781
|
+
forceClearable: BooleanConstructor;
|
|
13690
13782
|
}, {
|
|
13691
13783
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
13692
13784
|
fieldList: {
|
|
@@ -13831,6 +13923,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13831
13923
|
type: BooleanConstructor;
|
|
13832
13924
|
default: boolean;
|
|
13833
13925
|
};
|
|
13926
|
+
forceClearable: BooleanConstructor;
|
|
13834
13927
|
}>> & {
|
|
13835
13928
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
13836
13929
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -13880,10 +13973,93 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13880
13973
|
operationalFormHandler: (field: string) => void;
|
|
13881
13974
|
triggerAllOperationalFormHandler: () => void;
|
|
13882
13975
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
13883
|
-
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: {
|
|
13976
|
+
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: Partial<{
|
|
13977
|
+
fieldList: import("../../../../es/components/form-render").FieldItem[];
|
|
13978
|
+
initialData: import("../../../../es/shared/types").AnyObject;
|
|
13979
|
+
fieldVisitor: import("../../../../es/components/form-render").FieldVisitor;
|
|
13884
13980
|
column: number;
|
|
13885
|
-
|
|
13886
|
-
|
|
13981
|
+
maxHeight: string | number;
|
|
13982
|
+
anchor: boolean;
|
|
13983
|
+
parallelism: number;
|
|
13984
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
13985
|
+
[key: symbol]: any;
|
|
13986
|
+
[key: `x-${string}`]: any;
|
|
13987
|
+
[key: `x-${number}`]: any;
|
|
13988
|
+
version?: string | undefined;
|
|
13989
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
13990
|
+
title?: any;
|
|
13991
|
+
description?: any;
|
|
13992
|
+
default?: any;
|
|
13993
|
+
readOnly?: boolean | undefined;
|
|
13994
|
+
writeOnly?: boolean | undefined;
|
|
13995
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
13996
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
13997
|
+
const?: any;
|
|
13998
|
+
multipleOf?: number | undefined;
|
|
13999
|
+
maximum?: number | undefined;
|
|
14000
|
+
exclusiveMaximum?: number | undefined;
|
|
14001
|
+
minimum?: number | undefined;
|
|
14002
|
+
exclusiveMinimum?: number | undefined;
|
|
14003
|
+
maxLength?: number | undefined;
|
|
14004
|
+
minLength?: number | undefined;
|
|
14005
|
+
pattern?: string | RegExp | undefined;
|
|
14006
|
+
maxItems?: number | undefined;
|
|
14007
|
+
minItems?: number | undefined;
|
|
14008
|
+
uniqueItems?: boolean | undefined;
|
|
14009
|
+
maxProperties?: number | undefined;
|
|
14010
|
+
minProperties?: number | undefined;
|
|
14011
|
+
required?: string | boolean | string[] | undefined;
|
|
14012
|
+
format?: string | undefined;
|
|
14013
|
+
$ref?: string | undefined;
|
|
14014
|
+
$namespace?: string | undefined;
|
|
14015
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
14016
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
14017
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
14018
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
14019
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
14020
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
14021
|
+
"x-value"?: any;
|
|
14022
|
+
"x-index"?: number | undefined;
|
|
14023
|
+
"x-pattern"?: any;
|
|
14024
|
+
"x-display"?: any;
|
|
14025
|
+
"x-validator"?: any;
|
|
14026
|
+
"x-decorator"?: any;
|
|
14027
|
+
"x-decorator-props"?: any;
|
|
14028
|
+
"x-component"?: any;
|
|
14029
|
+
"x-component-props"?: any;
|
|
14030
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
14031
|
+
"x-content"?: any;
|
|
14032
|
+
"x-data"?: any;
|
|
14033
|
+
"x-visible"?: boolean | undefined;
|
|
14034
|
+
"x-hidden"?: boolean | undefined;
|
|
14035
|
+
"x-disabled"?: boolean | undefined;
|
|
14036
|
+
"x-editable"?: boolean | undefined;
|
|
14037
|
+
"x-read-only"?: boolean | undefined;
|
|
14038
|
+
"x-read-pretty"?: boolean | undefined;
|
|
14039
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
14040
|
+
}>;
|
|
14041
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
14042
|
+
scope: import("../../../../es/shared/types").AnyObject;
|
|
14043
|
+
annotation: import("../../../../es/shared/types").AnyObject;
|
|
14044
|
+
consumer: boolean;
|
|
14045
|
+
uuid: string;
|
|
14046
|
+
lifeCycle: Partial<{
|
|
14047
|
+
onSetup(): void;
|
|
14048
|
+
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>;
|
|
14049
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../../es/shared/types").AnyObject | undefined): import("../../../../es/shared/types").AnyObject[];
|
|
14050
|
+
afterOptionInit(fieldKey: string, options: import("../../../../es/shared/types").AnyObject[], payload?: import("../../../../es/shared/types").AnyObject | undefined): void;
|
|
14051
|
+
}>;
|
|
14052
|
+
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
14053
|
+
requestInstance: import("../../../../es/components/form-render").RequestInstance;
|
|
14054
|
+
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
14055
|
+
lowCodeReactions: import("../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
14056
|
+
linebarAutoHidden: boolean;
|
|
14057
|
+
bordered: string | boolean;
|
|
14058
|
+
uniqueCacheData: boolean;
|
|
14059
|
+
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
14060
|
+
outBordered: boolean;
|
|
14061
|
+
forceClearable: boolean;
|
|
14062
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
13887
14063
|
[key: symbol]: any;
|
|
13888
14064
|
[key: `x-${string}`]: any;
|
|
13889
14065
|
[key: `x-${number}`]: any;
|
|
@@ -14307,6 +14483,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14307
14483
|
type: BooleanConstructor;
|
|
14308
14484
|
default: boolean;
|
|
14309
14485
|
};
|
|
14486
|
+
forceClearable: BooleanConstructor;
|
|
14310
14487
|
}>> & {
|
|
14311
14488
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
14312
14489
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -14315,6 +14492,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14315
14492
|
anchor: boolean;
|
|
14316
14493
|
maxHeight: string | number;
|
|
14317
14494
|
column: number;
|
|
14495
|
+
forceClearable: boolean;
|
|
14318
14496
|
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
14319
14497
|
initialData: import("../../../../es/shared/types").AnyObject;
|
|
14320
14498
|
parallelism: number;
|
|
@@ -14421,6 +14599,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14421
14599
|
uniqueCacheData: boolean;
|
|
14422
14600
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
14423
14601
|
outBordered: boolean;
|
|
14602
|
+
forceClearable: boolean;
|
|
14424
14603
|
}>>>;
|
|
14425
14604
|
};
|
|
14426
14605
|
}>>, {}>;
|
|
@@ -14557,6 +14736,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14557
14736
|
uniqueCacheData: boolean;
|
|
14558
14737
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
14559
14738
|
outBordered: boolean;
|
|
14739
|
+
forceClearable: boolean;
|
|
14560
14740
|
}>>>;
|
|
14561
14741
|
};
|
|
14562
14742
|
}>> & {
|