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
|
@@ -156,6 +156,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
156
156
|
uniqueCacheData: boolean;
|
|
157
157
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
158
158
|
outBordered: boolean;
|
|
159
|
+
forceClearable: boolean;
|
|
159
160
|
}>>>;
|
|
160
161
|
};
|
|
161
162
|
}, {
|
|
@@ -314,6 +315,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
314
315
|
uniqueCacheData: boolean;
|
|
315
316
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
316
317
|
outBordered: boolean;
|
|
318
|
+
forceClearable: boolean;
|
|
317
319
|
}>>>;
|
|
318
320
|
};
|
|
319
321
|
}>> & {
|
|
@@ -476,6 +478,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
476
478
|
uniqueCacheData: boolean;
|
|
477
479
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
478
480
|
outBordered: boolean;
|
|
481
|
+
forceClearable: boolean;
|
|
479
482
|
}>>;
|
|
480
483
|
};
|
|
481
484
|
themeOverrides: import("naive-ui").GlobalThemeOverrides;
|
|
@@ -631,10 +634,93 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
631
634
|
edit: boolean;
|
|
632
635
|
}>) => Promise<void>;
|
|
633
636
|
collector: import("../../../../es/components/form-render").BusinessCollector | undefined;
|
|
634
|
-
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: {
|
|
637
|
+
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: Partial<{
|
|
638
|
+
fieldList: import("../../../../es/components/form-render").FieldItem[];
|
|
639
|
+
initialData: AnyObject;
|
|
640
|
+
fieldVisitor: import("../../../../es/components/form-render").FieldVisitor;
|
|
635
641
|
column: number;
|
|
636
|
-
|
|
637
|
-
|
|
642
|
+
maxHeight: string | number;
|
|
643
|
+
anchor: boolean;
|
|
644
|
+
parallelism: number;
|
|
645
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
646
|
+
[key: symbol]: any;
|
|
647
|
+
[key: `x-${string}`]: any;
|
|
648
|
+
[key: `x-${number}`]: any;
|
|
649
|
+
version?: string | undefined;
|
|
650
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
651
|
+
title?: any;
|
|
652
|
+
description?: any;
|
|
653
|
+
default?: any;
|
|
654
|
+
readOnly?: boolean | undefined;
|
|
655
|
+
writeOnly?: boolean | undefined;
|
|
656
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
657
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
658
|
+
const?: any;
|
|
659
|
+
multipleOf?: number | undefined;
|
|
660
|
+
maximum?: number | undefined;
|
|
661
|
+
exclusiveMaximum?: number | undefined;
|
|
662
|
+
minimum?: number | undefined;
|
|
663
|
+
exclusiveMinimum?: number | undefined;
|
|
664
|
+
maxLength?: number | undefined;
|
|
665
|
+
minLength?: number | undefined;
|
|
666
|
+
pattern?: string | RegExp | undefined;
|
|
667
|
+
maxItems?: number | undefined;
|
|
668
|
+
minItems?: number | undefined;
|
|
669
|
+
uniqueItems?: boolean | undefined;
|
|
670
|
+
maxProperties?: number | undefined;
|
|
671
|
+
minProperties?: number | undefined;
|
|
672
|
+
required?: string | boolean | string[] | undefined;
|
|
673
|
+
format?: string | undefined;
|
|
674
|
+
$ref?: string | undefined;
|
|
675
|
+
$namespace?: string | undefined;
|
|
676
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
677
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
678
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
679
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
680
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
681
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
682
|
+
"x-value"?: any;
|
|
683
|
+
"x-index"?: number | undefined;
|
|
684
|
+
"x-pattern"?: any;
|
|
685
|
+
"x-display"?: any;
|
|
686
|
+
"x-validator"?: any;
|
|
687
|
+
"x-decorator"?: any;
|
|
688
|
+
"x-decorator-props"?: any;
|
|
689
|
+
"x-component"?: any;
|
|
690
|
+
"x-component-props"?: any;
|
|
691
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
692
|
+
"x-content"?: any;
|
|
693
|
+
"x-data"?: any;
|
|
694
|
+
"x-visible"?: boolean | undefined;
|
|
695
|
+
"x-hidden"?: boolean | undefined;
|
|
696
|
+
"x-disabled"?: boolean | undefined;
|
|
697
|
+
"x-editable"?: boolean | undefined;
|
|
698
|
+
"x-read-only"?: boolean | undefined;
|
|
699
|
+
"x-read-pretty"?: boolean | undefined;
|
|
700
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
701
|
+
}>;
|
|
702
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
703
|
+
scope: AnyObject;
|
|
704
|
+
annotation: AnyObject;
|
|
705
|
+
consumer: boolean;
|
|
706
|
+
uuid: string;
|
|
707
|
+
lifeCycle: Partial<{
|
|
708
|
+
onSetup(): void;
|
|
709
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../es/shared/types").UndefinedAble<AnyObject>;
|
|
710
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[];
|
|
711
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
|
712
|
+
}>;
|
|
713
|
+
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
714
|
+
requestInstance: import("../../../../es/components/form-render").RequestInstance;
|
|
715
|
+
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
716
|
+
lowCodeReactions: import("../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
717
|
+
linebarAutoHidden: boolean;
|
|
718
|
+
bordered: string | boolean;
|
|
719
|
+
uniqueCacheData: boolean;
|
|
720
|
+
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
721
|
+
outBordered: boolean;
|
|
722
|
+
forceClearable: boolean;
|
|
723
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
638
724
|
[key: symbol]: any;
|
|
639
725
|
[key: `x-${string}`]: any;
|
|
640
726
|
[key: `x-${number}`]: any;
|
|
@@ -2626,6 +2712,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2626
2712
|
type: BooleanConstructor;
|
|
2627
2713
|
default: boolean;
|
|
2628
2714
|
};
|
|
2715
|
+
forceClearable: BooleanConstructor;
|
|
2629
2716
|
}, {
|
|
2630
2717
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
2631
2718
|
fieldList: {
|
|
@@ -2770,6 +2857,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2770
2857
|
type: BooleanConstructor;
|
|
2771
2858
|
default: boolean;
|
|
2772
2859
|
};
|
|
2860
|
+
forceClearable: BooleanConstructor;
|
|
2773
2861
|
}>> & {
|
|
2774
2862
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
2775
2863
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -2819,10 +2907,93 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2819
2907
|
operationalFormHandler: (field: string) => void;
|
|
2820
2908
|
triggerAllOperationalFormHandler: () => void;
|
|
2821
2909
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
2822
|
-
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: {
|
|
2910
|
+
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: Partial<{
|
|
2911
|
+
fieldList: import("../../../../es/components/form-render").FieldItem[];
|
|
2912
|
+
initialData: AnyObject;
|
|
2913
|
+
fieldVisitor: import("../../../../es/components/form-render").FieldVisitor;
|
|
2823
2914
|
column: number;
|
|
2824
|
-
|
|
2825
|
-
|
|
2915
|
+
maxHeight: string | number;
|
|
2916
|
+
anchor: boolean;
|
|
2917
|
+
parallelism: number;
|
|
2918
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
2919
|
+
[key: symbol]: any;
|
|
2920
|
+
[key: `x-${string}`]: any;
|
|
2921
|
+
[key: `x-${number}`]: any;
|
|
2922
|
+
version?: string | undefined;
|
|
2923
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
2924
|
+
title?: any;
|
|
2925
|
+
description?: any;
|
|
2926
|
+
default?: any;
|
|
2927
|
+
readOnly?: boolean | undefined;
|
|
2928
|
+
writeOnly?: boolean | undefined;
|
|
2929
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
2930
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
2931
|
+
const?: any;
|
|
2932
|
+
multipleOf?: number | undefined;
|
|
2933
|
+
maximum?: number | undefined;
|
|
2934
|
+
exclusiveMaximum?: number | undefined;
|
|
2935
|
+
minimum?: number | undefined;
|
|
2936
|
+
exclusiveMinimum?: number | undefined;
|
|
2937
|
+
maxLength?: number | undefined;
|
|
2938
|
+
minLength?: number | undefined;
|
|
2939
|
+
pattern?: string | RegExp | undefined;
|
|
2940
|
+
maxItems?: number | undefined;
|
|
2941
|
+
minItems?: number | undefined;
|
|
2942
|
+
uniqueItems?: boolean | undefined;
|
|
2943
|
+
maxProperties?: number | undefined;
|
|
2944
|
+
minProperties?: number | undefined;
|
|
2945
|
+
required?: string | boolean | string[] | undefined;
|
|
2946
|
+
format?: string | undefined;
|
|
2947
|
+
$ref?: string | undefined;
|
|
2948
|
+
$namespace?: string | undefined;
|
|
2949
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2950
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2951
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
2952
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2953
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2954
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2955
|
+
"x-value"?: any;
|
|
2956
|
+
"x-index"?: number | undefined;
|
|
2957
|
+
"x-pattern"?: any;
|
|
2958
|
+
"x-display"?: any;
|
|
2959
|
+
"x-validator"?: any;
|
|
2960
|
+
"x-decorator"?: any;
|
|
2961
|
+
"x-decorator-props"?: any;
|
|
2962
|
+
"x-component"?: any;
|
|
2963
|
+
"x-component-props"?: any;
|
|
2964
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
2965
|
+
"x-content"?: any;
|
|
2966
|
+
"x-data"?: any;
|
|
2967
|
+
"x-visible"?: boolean | undefined;
|
|
2968
|
+
"x-hidden"?: boolean | undefined;
|
|
2969
|
+
"x-disabled"?: boolean | undefined;
|
|
2970
|
+
"x-editable"?: boolean | undefined;
|
|
2971
|
+
"x-read-only"?: boolean | undefined;
|
|
2972
|
+
"x-read-pretty"?: boolean | undefined;
|
|
2973
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
2974
|
+
}>;
|
|
2975
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
2976
|
+
scope: AnyObject;
|
|
2977
|
+
annotation: AnyObject;
|
|
2978
|
+
consumer: boolean;
|
|
2979
|
+
uuid: string;
|
|
2980
|
+
lifeCycle: Partial<{
|
|
2981
|
+
onSetup(): void;
|
|
2982
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../es/shared/types").UndefinedAble<AnyObject>;
|
|
2983
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[];
|
|
2984
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
|
2985
|
+
}>;
|
|
2986
|
+
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
2987
|
+
requestInstance: import("../../../../es/components/form-render").RequestInstance;
|
|
2988
|
+
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
2989
|
+
lowCodeReactions: import("../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
2990
|
+
linebarAutoHidden: boolean;
|
|
2991
|
+
bordered: string | boolean;
|
|
2992
|
+
uniqueCacheData: boolean;
|
|
2993
|
+
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
2994
|
+
outBordered: boolean;
|
|
2995
|
+
forceClearable: boolean;
|
|
2996
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
2826
2997
|
[key: symbol]: any;
|
|
2827
2998
|
[key: `x-${string}`]: any;
|
|
2828
2999
|
[key: `x-${number}`]: any;
|
|
@@ -3246,6 +3417,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3246
3417
|
type: BooleanConstructor;
|
|
3247
3418
|
default: boolean;
|
|
3248
3419
|
};
|
|
3420
|
+
forceClearable: BooleanConstructor;
|
|
3249
3421
|
}>> & {
|
|
3250
3422
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
3251
3423
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -3254,6 +3426,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3254
3426
|
anchor: boolean;
|
|
3255
3427
|
maxHeight: string | number;
|
|
3256
3428
|
column: number;
|
|
3429
|
+
forceClearable: boolean;
|
|
3257
3430
|
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
3258
3431
|
initialData: AnyObject;
|
|
3259
3432
|
parallelism: number;
|
|
@@ -3530,6 +3703,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3530
3703
|
type: BooleanConstructor;
|
|
3531
3704
|
default: boolean;
|
|
3532
3705
|
};
|
|
3706
|
+
forceClearable: BooleanConstructor;
|
|
3533
3707
|
}, {
|
|
3534
3708
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
3535
3709
|
fieldList: {
|
|
@@ -3674,6 +3848,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3674
3848
|
type: BooleanConstructor;
|
|
3675
3849
|
default: boolean;
|
|
3676
3850
|
};
|
|
3851
|
+
forceClearable: BooleanConstructor;
|
|
3677
3852
|
}>> & {
|
|
3678
3853
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
3679
3854
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -3723,10 +3898,93 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3723
3898
|
operationalFormHandler: (field: string) => void;
|
|
3724
3899
|
triggerAllOperationalFormHandler: () => void;
|
|
3725
3900
|
wordbookSettingHandler: (fieldKey: string, value: unknown) => void;
|
|
3726
|
-
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: {
|
|
3901
|
+
schemaAdaptor: (fieldList: import("../../../../es/components/form-render").FieldItem[], options?: Partial<{
|
|
3902
|
+
fieldList: import("../../../../es/components/form-render").FieldItem[];
|
|
3903
|
+
initialData: AnyObject;
|
|
3904
|
+
fieldVisitor: import("../../../../es/components/form-render").FieldVisitor;
|
|
3727
3905
|
column: number;
|
|
3728
|
-
|
|
3729
|
-
|
|
3906
|
+
maxHeight: string | number;
|
|
3907
|
+
anchor: boolean;
|
|
3908
|
+
parallelism: number;
|
|
3909
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
3910
|
+
[key: symbol]: any;
|
|
3911
|
+
[key: `x-${string}`]: any;
|
|
3912
|
+
[key: `x-${number}`]: any;
|
|
3913
|
+
version?: string | undefined;
|
|
3914
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
3915
|
+
title?: any;
|
|
3916
|
+
description?: any;
|
|
3917
|
+
default?: any;
|
|
3918
|
+
readOnly?: boolean | undefined;
|
|
3919
|
+
writeOnly?: boolean | undefined;
|
|
3920
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
3921
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
3922
|
+
const?: any;
|
|
3923
|
+
multipleOf?: number | undefined;
|
|
3924
|
+
maximum?: number | undefined;
|
|
3925
|
+
exclusiveMaximum?: number | undefined;
|
|
3926
|
+
minimum?: number | undefined;
|
|
3927
|
+
exclusiveMinimum?: number | undefined;
|
|
3928
|
+
maxLength?: number | undefined;
|
|
3929
|
+
minLength?: number | undefined;
|
|
3930
|
+
pattern?: string | RegExp | undefined;
|
|
3931
|
+
maxItems?: number | undefined;
|
|
3932
|
+
minItems?: number | undefined;
|
|
3933
|
+
uniqueItems?: boolean | undefined;
|
|
3934
|
+
maxProperties?: number | undefined;
|
|
3935
|
+
minProperties?: number | undefined;
|
|
3936
|
+
required?: string | boolean | string[] | undefined;
|
|
3937
|
+
format?: string | undefined;
|
|
3938
|
+
$ref?: string | undefined;
|
|
3939
|
+
$namespace?: string | undefined;
|
|
3940
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
3941
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
3942
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
3943
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
3944
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
3945
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
3946
|
+
"x-value"?: any;
|
|
3947
|
+
"x-index"?: number | undefined;
|
|
3948
|
+
"x-pattern"?: any;
|
|
3949
|
+
"x-display"?: any;
|
|
3950
|
+
"x-validator"?: any;
|
|
3951
|
+
"x-decorator"?: any;
|
|
3952
|
+
"x-decorator-props"?: any;
|
|
3953
|
+
"x-component"?: any;
|
|
3954
|
+
"x-component-props"?: any;
|
|
3955
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
3956
|
+
"x-content"?: any;
|
|
3957
|
+
"x-data"?: any;
|
|
3958
|
+
"x-visible"?: boolean | undefined;
|
|
3959
|
+
"x-hidden"?: boolean | undefined;
|
|
3960
|
+
"x-disabled"?: boolean | undefined;
|
|
3961
|
+
"x-editable"?: boolean | undefined;
|
|
3962
|
+
"x-read-only"?: boolean | undefined;
|
|
3963
|
+
"x-read-pretty"?: boolean | undefined;
|
|
3964
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
3965
|
+
}>;
|
|
3966
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
3967
|
+
scope: AnyObject;
|
|
3968
|
+
annotation: AnyObject;
|
|
3969
|
+
consumer: boolean;
|
|
3970
|
+
uuid: string;
|
|
3971
|
+
lifeCycle: Partial<{
|
|
3972
|
+
onSetup(): void;
|
|
3973
|
+
beforeRequest(fieldKey: string, params?: AnyObject | undefined, payload?: AnyObject | undefined): void | import("../../../../es/shared/types").UndefinedAble<AnyObject>;
|
|
3974
|
+
afterRequest(fieldKey: string, res?: any, payload?: AnyObject | undefined): AnyObject[];
|
|
3975
|
+
afterOptionInit(fieldKey: string, options: AnyObject[], payload?: AnyObject | undefined): void;
|
|
3976
|
+
}>;
|
|
3977
|
+
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
3978
|
+
requestInstance: import("../../../../es/components/form-render").RequestInstance;
|
|
3979
|
+
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
3980
|
+
lowCodeReactions: import("../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
3981
|
+
linebarAutoHidden: boolean;
|
|
3982
|
+
bordered: string | boolean;
|
|
3983
|
+
uniqueCacheData: boolean;
|
|
3984
|
+
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
3985
|
+
outBordered: boolean;
|
|
3986
|
+
forceClearable: boolean;
|
|
3987
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
3730
3988
|
[key: symbol]: any;
|
|
3731
3989
|
[key: `x-${string}`]: any;
|
|
3732
3990
|
[key: `x-${number}`]: any;
|
|
@@ -4150,6 +4408,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4150
4408
|
type: BooleanConstructor;
|
|
4151
4409
|
default: boolean;
|
|
4152
4410
|
};
|
|
4411
|
+
forceClearable: BooleanConstructor;
|
|
4153
4412
|
}>> & {
|
|
4154
4413
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
4155
4414
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
@@ -4158,6 +4417,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4158
4417
|
anchor: boolean;
|
|
4159
4418
|
maxHeight: string | number;
|
|
4160
4419
|
column: number;
|
|
4420
|
+
forceClearable: boolean;
|
|
4161
4421
|
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
4162
4422
|
initialData: AnyObject;
|
|
4163
4423
|
parallelism: number;
|
|
@@ -4338,6 +4598,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4338
4598
|
uniqueCacheData: boolean;
|
|
4339
4599
|
operationalForm: import("../../../../es/shared/types").FormOperationalConfig[];
|
|
4340
4600
|
outBordered: boolean;
|
|
4601
|
+
forceClearable: boolean;
|
|
4341
4602
|
}>>>;
|
|
4342
4603
|
};
|
|
4343
4604
|
}>> & {
|
|
@@ -38,10 +38,93 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
38
|
onItemDblclick: (item: InfoHeaderTypes.InfoItem) => Promise<void>;
|
|
39
39
|
onItemClick: (item: InfoHeaderTypes.InfoItem) => Promise<void>;
|
|
40
40
|
collector: import("../../../../../../es/components/form-render").BusinessCollector | undefined;
|
|
41
|
-
schemaAdaptor: (fieldList: FieldItem[], options?: {
|
|
41
|
+
schemaAdaptor: (fieldList: FieldItem[], options?: Partial<{
|
|
42
|
+
fieldList: FieldItem[];
|
|
43
|
+
initialData: import("../../../..").AnyObject;
|
|
44
|
+
fieldVisitor: import("../../../../../../es/components/form-render").FieldVisitor;
|
|
42
45
|
column: number;
|
|
43
|
-
|
|
44
|
-
|
|
46
|
+
maxHeight: string | number;
|
|
47
|
+
anchor: boolean;
|
|
48
|
+
parallelism: number;
|
|
49
|
+
schema: import("@formily/vue").Stringify<{
|
|
50
|
+
[key: symbol]: any;
|
|
51
|
+
[key: `x-${string}`]: any;
|
|
52
|
+
[key: `x-${number}`]: any;
|
|
53
|
+
version?: string | undefined;
|
|
54
|
+
name?: import("@formily/vue").SchemaKey | undefined;
|
|
55
|
+
title?: any;
|
|
56
|
+
description?: any;
|
|
57
|
+
default?: any;
|
|
58
|
+
readOnly?: boolean | undefined;
|
|
59
|
+
writeOnly?: boolean | undefined;
|
|
60
|
+
type?: import("@formily/vue").SchemaTypes | undefined;
|
|
61
|
+
enum?: import("@formily/vue").SchemaEnum<any> | undefined;
|
|
62
|
+
const?: any;
|
|
63
|
+
multipleOf?: number | undefined;
|
|
64
|
+
maximum?: number | undefined;
|
|
65
|
+
exclusiveMaximum?: number | undefined;
|
|
66
|
+
minimum?: number | undefined;
|
|
67
|
+
exclusiveMinimum?: number | undefined;
|
|
68
|
+
maxLength?: number | undefined;
|
|
69
|
+
minLength?: number | undefined;
|
|
70
|
+
pattern?: string | RegExp | undefined;
|
|
71
|
+
maxItems?: number | undefined;
|
|
72
|
+
minItems?: number | undefined;
|
|
73
|
+
uniqueItems?: boolean | undefined;
|
|
74
|
+
maxProperties?: number | undefined;
|
|
75
|
+
minProperties?: number | undefined;
|
|
76
|
+
required?: string | boolean | string[] | undefined;
|
|
77
|
+
format?: string | undefined;
|
|
78
|
+
$ref?: string | undefined;
|
|
79
|
+
$namespace?: string | undefined;
|
|
80
|
+
definitions?: import("@formily/vue").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
81
|
+
properties?: import("@formily/vue").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
82
|
+
items?: import("@formily/vue").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
83
|
+
additionalItems?: import("@formily/vue").Stringify<any> | undefined;
|
|
84
|
+
patternProperties?: import("@formily/vue").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
85
|
+
additionalProperties?: import("@formily/vue").Stringify<any> | undefined;
|
|
86
|
+
"x-value"?: any;
|
|
87
|
+
"x-index"?: number | undefined;
|
|
88
|
+
"x-pattern"?: any;
|
|
89
|
+
"x-display"?: any;
|
|
90
|
+
"x-validator"?: any;
|
|
91
|
+
"x-decorator"?: any;
|
|
92
|
+
"x-decorator-props"?: any;
|
|
93
|
+
"x-component"?: any;
|
|
94
|
+
"x-component-props"?: any;
|
|
95
|
+
"x-reactions"?: import("@formily/vue").SchemaReactions<any> | undefined;
|
|
96
|
+
"x-content"?: any;
|
|
97
|
+
"x-data"?: any;
|
|
98
|
+
"x-visible"?: boolean | undefined;
|
|
99
|
+
"x-hidden"?: boolean | undefined;
|
|
100
|
+
"x-disabled"?: boolean | undefined;
|
|
101
|
+
"x-editable"?: boolean | undefined;
|
|
102
|
+
"x-read-only"?: boolean | undefined;
|
|
103
|
+
"x-read-pretty"?: boolean | undefined;
|
|
104
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
105
|
+
}>;
|
|
106
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
107
|
+
scope: import("../../../..").AnyObject;
|
|
108
|
+
annotation: import("../../../..").AnyObject;
|
|
109
|
+
consumer: boolean;
|
|
110
|
+
uuid: string;
|
|
111
|
+
lifeCycle: Partial<{
|
|
112
|
+
onSetup(): void;
|
|
113
|
+
beforeRequest(fieldKey: string, params?: import("../../../..").AnyObject | undefined, payload?: import("../../../..").AnyObject | undefined): void | import("../../../..").UndefinedAble<import("../../../..").AnyObject>;
|
|
114
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../..").AnyObject | undefined): import("../../../..").AnyObject[];
|
|
115
|
+
afterOptionInit(fieldKey: string, options: import("../../../..").AnyObject[], payload?: import("../../../..").AnyObject | undefined): void;
|
|
116
|
+
}>;
|
|
117
|
+
businessFormatter: import("../../../../../../es/components/form-render").FormBusinessFormatter;
|
|
118
|
+
requestInstance: import("../../../../../../es/components/form-render").RequestInstance;
|
|
119
|
+
enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
|
|
120
|
+
lowCodeReactions: import("../../../../../../es/components/form-render").FormLowCodeReactions.Config[];
|
|
121
|
+
linebarAutoHidden: boolean;
|
|
122
|
+
bordered: string | boolean;
|
|
123
|
+
uniqueCacheData: boolean;
|
|
124
|
+
operationalForm: import("../../../..").FormOperationalConfig[];
|
|
125
|
+
outBordered: boolean;
|
|
126
|
+
forceClearable: boolean;
|
|
127
|
+
}>) => Record<string, import("@formily/vue").Stringify<{
|
|
45
128
|
[key: symbol]: any;
|
|
46
129
|
[key: `x-${string}`]: any;
|
|
47
130
|
[key: `x-${number}`]: any;
|
|
@@ -126,10 +126,93 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
126
126
|
edit: boolean;
|
|
127
127
|
}>) => Promise<void>;
|
|
128
128
|
collector: import("../../../..").BusinessCollector | undefined;
|
|
129
|
-
schemaAdaptor: (fieldList: import("../../../..").FieldItem[], options?: {
|
|
129
|
+
schemaAdaptor: (fieldList: import("../../../..").FieldItem[], options?: Partial<{
|
|
130
|
+
fieldList: import("../../../..").FieldItem[];
|
|
131
|
+
initialData: import("../../../../../../es/shared/types").AnyObject;
|
|
132
|
+
fieldVisitor: import("../../../..").FieldVisitor;
|
|
130
133
|
column: number;
|
|
131
|
-
|
|
132
|
-
|
|
134
|
+
maxHeight: string | number;
|
|
135
|
+
anchor: boolean;
|
|
136
|
+
parallelism: number;
|
|
137
|
+
schema: import("@formily/json-schema").Stringify<{
|
|
138
|
+
[key: symbol]: any;
|
|
139
|
+
[key: `x-${string}`]: any;
|
|
140
|
+
[key: `x-${number}`]: any;
|
|
141
|
+
version?: string | undefined;
|
|
142
|
+
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
143
|
+
title?: any;
|
|
144
|
+
description?: any;
|
|
145
|
+
default?: any;
|
|
146
|
+
readOnly?: boolean | undefined;
|
|
147
|
+
writeOnly?: boolean | undefined;
|
|
148
|
+
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
149
|
+
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
150
|
+
const?: any;
|
|
151
|
+
multipleOf?: number | undefined;
|
|
152
|
+
maximum?: number | undefined;
|
|
153
|
+
exclusiveMaximum?: number | undefined;
|
|
154
|
+
minimum?: number | undefined;
|
|
155
|
+
exclusiveMinimum?: number | undefined;
|
|
156
|
+
maxLength?: number | undefined;
|
|
157
|
+
minLength?: number | undefined;
|
|
158
|
+
pattern?: string | RegExp | undefined;
|
|
159
|
+
maxItems?: number | undefined;
|
|
160
|
+
minItems?: number | undefined;
|
|
161
|
+
uniqueItems?: boolean | undefined;
|
|
162
|
+
maxProperties?: number | undefined;
|
|
163
|
+
minProperties?: number | undefined;
|
|
164
|
+
required?: string | boolean | string[] | undefined;
|
|
165
|
+
format?: string | undefined;
|
|
166
|
+
$ref?: string | undefined;
|
|
167
|
+
$namespace?: string | undefined;
|
|
168
|
+
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
169
|
+
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
170
|
+
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
171
|
+
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
172
|
+
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
173
|
+
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
174
|
+
"x-value"?: any;
|
|
175
|
+
"x-index"?: number | undefined;
|
|
176
|
+
"x-pattern"?: any;
|
|
177
|
+
"x-display"?: any;
|
|
178
|
+
"x-validator"?: any;
|
|
179
|
+
"x-decorator"?: any;
|
|
180
|
+
"x-decorator-props"?: any;
|
|
181
|
+
"x-component"?: any;
|
|
182
|
+
"x-component-props"?: any;
|
|
183
|
+
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
184
|
+
"x-content"?: any;
|
|
185
|
+
"x-data"?: any;
|
|
186
|
+
"x-visible"?: boolean | undefined;
|
|
187
|
+
"x-hidden"?: boolean | undefined;
|
|
188
|
+
"x-disabled"?: boolean | undefined;
|
|
189
|
+
"x-editable"?: boolean | undefined;
|
|
190
|
+
"x-read-only"?: boolean | undefined;
|
|
191
|
+
"x-read-pretty"?: boolean | undefined;
|
|
192
|
+
"x-compile-omitted"?: string[] | undefined;
|
|
193
|
+
}>;
|
|
194
|
+
components: Record<string, import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
|
|
195
|
+
scope: import("../../../../../../es/shared/types").AnyObject;
|
|
196
|
+
annotation: import("../../../../../../es/shared/types").AnyObject;
|
|
197
|
+
consumer: boolean;
|
|
198
|
+
uuid: string;
|
|
199
|
+
lifeCycle: Partial<{
|
|
200
|
+
onSetup(): void;
|
|
201
|
+
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>;
|
|
202
|
+
afterRequest(fieldKey: string, res?: any, payload?: import("../../../../../../es/shared/types").AnyObject | undefined): import("../../../../../../es/shared/types").AnyObject[];
|
|
203
|
+
afterOptionInit(fieldKey: string, options: import("../../../../../../es/shared/types").AnyObject[], payload?: import("../../../../../../es/shared/types").AnyObject | undefined): void;
|
|
204
|
+
}>;
|
|
205
|
+
businessFormatter: import("../../../..").FormBusinessFormatter;
|
|
206
|
+
requestInstance: import("../../../..").RequestInstance;
|
|
207
|
+
enterToNextWidget: boolean | ((fieldItem: import("../../../..").FieldItem) => boolean | void);
|
|
208
|
+
lowCodeReactions: import("../../../..").FormLowCodeReactions.Config[];
|
|
209
|
+
linebarAutoHidden: boolean;
|
|
210
|
+
bordered: string | boolean;
|
|
211
|
+
uniqueCacheData: boolean;
|
|
212
|
+
operationalForm: import("../../../../../../es/shared/types").FormOperationalConfig[];
|
|
213
|
+
outBordered: boolean;
|
|
214
|
+
forceClearable: boolean;
|
|
215
|
+
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
133
216
|
[key: symbol]: any;
|
|
134
217
|
[key: `x-${string}`]: any;
|
|
135
218
|
[key: `x-${number}`]: any;
|