cnhis-design-vue 3.1.50-beta.20 → 3.1.50-beta.21
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/README.md +87 -87
- package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
- package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
- package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
- package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
- package/es/components/expand-field/src/components/form.vue2.js +1 -1
- package/es/components/expand-field/src/index.vue2.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useOther.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useTop.js +1 -1
- package/es/components/form-config/index.d.ts +159 -17
- package/es/components/form-config/src/FormConfig.vue.d.ts +160 -18
- package/es/components/form-config/src/FormConfig.vue2.js +1 -1
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +4 -4
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +7 -7
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +121 -0
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.js +1 -0
- package/es/components/form-config/src/components/FormConfigEventSetting.vue2.js +1 -0
- package/es/components/form-config/src/constants/index.d.ts +19 -1
- package/es/components/form-config/src/constants/index.js +1 -1
- package/es/components/form-config/src/types/index.d.ts +7 -3
- package/es/components/form-config/style/index.css +1 -1
- package/es/components/form-render/index.d.ts +4 -4
- package/es/components/form-render/src/FormRender.vue.d.ts +2 -2
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +4 -4
- package/es/components/form-render/src/hooks/useFieldNormalize.d.ts +2 -2
- package/es/components/form-render/src/hooks/useLowCodeReactions.d.ts +1 -1
- package/es/components/form-render/src/types/index.d.ts +1 -19
- package/es/components/index.css +1 -1
- package/es/components/info-header/index.d.ts +13 -13
- package/es/components/info-header/src/InfoHeader.vue.d.ts +13 -13
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.d.ts +1 -1
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +1 -1
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +5 -5
- package/es/components/info-header/src/components/patientInfo/index.vue.d.ts +4 -4
- package/es/components/scale-view/src/ScaleView.vue2.js +1 -1
- package/es/components/select-label/src/LabelFormContent.vue2.js +1 -1
- package/es/components/select-person/src/SearchMultiple.vue.d.ts +0 -6
- package/es/components/shortcut-setter/index.d.ts +4 -4
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +4 -4
- package/es/components/table-export-field/src/components/ExportModal.vue.d.ts +3 -0
- package/es/env.d.ts +25 -25
- package/es/shared/assets/img/failure.png.js +1 -1
- package/es/shared/assets/img/no-permission.png.js +1 -1
- package/es/shared/assets/img/nodata.png.js +1 -1
- package/es/shared/assets/img/notfound.png.js +1 -1
- package/es/shared/assets/img/qr.png.js +1 -1
- package/es/shared/assets/img/success.png.js +1 -1
- package/es/shared/assets/img/video.png.js +1 -1
- package/es/shared/assets/img/video_default_cover.png.js +1 -1
- package/es/shared/assets/img/xb_big.png.js +1 -1
- package/es/shared/assets/img/xb_small.png.js +1 -1
- package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +86 -0
- package/es/shared/package.json.js +1 -1
- package/es/shared/types/business.d.ts +20 -0
- package/es/shared/utils/business.d.ts +1 -2
- package/es/shared/utils/fabricjs/index.d.ts +6823 -0
- package/es/shared/utils/index.d.ts +3 -3
- package/es/shared/utils/tapable/index.d.ts +139 -0
- package/package.json +2 -2
|
@@ -17,6 +17,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17
17
|
extraMaterialList: {
|
|
18
18
|
type: import("vue").PropType<import("./src/types").FormConfigItem[] | (() => import("./src/types").FormConfigItem[] | Promise<import("./src/types").FormConfigItem[]>)>;
|
|
19
19
|
};
|
|
20
|
+
showLowCodeReactions: BooleanConstructor;
|
|
20
21
|
formProps: {
|
|
21
22
|
type: import("vue").PropType<Partial<Partial<{
|
|
22
23
|
fieldList: import("..").FieldItem[];
|
|
@@ -97,7 +98,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
97
98
|
businessFormatter: import("..").FormBusinessFormatter;
|
|
98
99
|
requestInstance: import("..").RequestInstance;
|
|
99
100
|
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
100
|
-
lowCodeReactions: import("
|
|
101
|
+
lowCodeReactions: import("../../../es/shared/types").FormLowCodeReactions.Config[];
|
|
101
102
|
linebarAutoHidden: boolean;
|
|
102
103
|
bordered: string | boolean;
|
|
103
104
|
uniqueCacheData: boolean;
|
|
@@ -123,6 +124,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
123
124
|
extraMaterialList: {
|
|
124
125
|
type: import("vue").PropType<import("./src/types").FormConfigItem[] | (() => import("./src/types").FormConfigItem[] | Promise<import("./src/types").FormConfigItem[]>)>;
|
|
125
126
|
};
|
|
127
|
+
showLowCodeReactions: BooleanConstructor;
|
|
126
128
|
formProps: {
|
|
127
129
|
type: import("vue").PropType<Partial<Partial<{
|
|
128
130
|
fieldList: import("..").FieldItem[];
|
|
@@ -203,7 +205,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
203
205
|
businessFormatter: import("..").FormBusinessFormatter;
|
|
204
206
|
requestInstance: import("..").RequestInstance;
|
|
205
207
|
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
206
|
-
lowCodeReactions: import("
|
|
208
|
+
lowCodeReactions: import("../../../es/shared/types").FormLowCodeReactions.Config[];
|
|
207
209
|
linebarAutoHidden: boolean;
|
|
208
210
|
bordered: string | boolean;
|
|
209
211
|
uniqueCacheData: boolean;
|
|
@@ -215,8 +217,9 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
215
217
|
}>> & {
|
|
216
218
|
onAddItem?: ((...args: any[]) => any) | undefined;
|
|
217
219
|
onRemoveItem?: ((...args: any[]) => any) | undefined;
|
|
220
|
+
onReactionsValidateFailure?: ((...args: any[]) => any) | undefined;
|
|
218
221
|
}>>;
|
|
219
|
-
emit: (event: "addItem" | "removeItem", ...args: any[]) => void;
|
|
222
|
+
emit: (event: "addItem" | "removeItem" | "reactionsValidateFailure", ...args: any[]) => void;
|
|
220
223
|
uuid: string;
|
|
221
224
|
cssVars: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
222
225
|
getCommonConfig: (formConfig?: import("./src/types").FormConfigItem | undefined) => {
|
|
@@ -3695,6 +3698,22 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3695
3698
|
__isCombinationChild?: boolean | undefined;
|
|
3696
3699
|
__extra?: boolean | undefined;
|
|
3697
3700
|
}[]>;
|
|
3701
|
+
lowCodeReactionsRef: import("vue").Ref<{
|
|
3702
|
+
conObj: {
|
|
3703
|
+
con: import("../../../es/shared/types").LOW_CODE_VALUE_RELATION;
|
|
3704
|
+
field_key: string;
|
|
3705
|
+
value: unknown;
|
|
3706
|
+
}[];
|
|
3707
|
+
sqlExpression?: string | undefined;
|
|
3708
|
+
showField?: string[] | undefined;
|
|
3709
|
+
hideField?: string[] | undefined;
|
|
3710
|
+
requiredField?: string[] | undefined;
|
|
3711
|
+
notRequiredField?: string[] | undefined;
|
|
3712
|
+
enabledField?: string[] | undefined;
|
|
3713
|
+
disabledField?: string[] | undefined;
|
|
3714
|
+
__oppositeBindField?: any | undefined;
|
|
3715
|
+
__oppositeTargetField?: any | undefined;
|
|
3716
|
+
}[]>;
|
|
3698
3717
|
addItem: (formConfigItem: import("./src/types").FormConfigItem) => void;
|
|
3699
3718
|
parsedTextFormatter: import("./src/types").FormConfigTextFormatter;
|
|
3700
3719
|
currentEditField: import("vue").Ref<import("./src/types").FormConfigItem | undefined>;
|
|
@@ -7387,7 +7406,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7387
7406
|
default: boolean;
|
|
7388
7407
|
};
|
|
7389
7408
|
lowCodeReactions: {
|
|
7390
|
-
type: import("vue").PropType<import("
|
|
7409
|
+
type: import("vue").PropType<import("../../../es/shared/types").FormLowCodeReactions.Config[]>;
|
|
7391
7410
|
};
|
|
7392
7411
|
operationalForm: {
|
|
7393
7412
|
type: import("vue").PropType<import("../../../es/shared/types").FormOperationalConfig[]>;
|
|
@@ -7532,7 +7551,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7532
7551
|
default: boolean;
|
|
7533
7552
|
};
|
|
7534
7553
|
lowCodeReactions: {
|
|
7535
|
-
type: import("vue").PropType<import("
|
|
7554
|
+
type: import("vue").PropType<import("../../../es/shared/types").FormLowCodeReactions.Config[]>;
|
|
7536
7555
|
};
|
|
7537
7556
|
operationalForm: {
|
|
7538
7557
|
type: import("vue").PropType<import("../../../es/shared/types").FormOperationalConfig[]>;
|
|
@@ -7691,7 +7710,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7691
7710
|
businessFormatter: import("..").FormBusinessFormatter;
|
|
7692
7711
|
requestInstance: import("..").RequestInstance;
|
|
7693
7712
|
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
7694
|
-
lowCodeReactions: import("
|
|
7713
|
+
lowCodeReactions: import("../../../es/shared/types").FormLowCodeReactions.Config[];
|
|
7695
7714
|
linebarAutoHidden: boolean;
|
|
7696
7715
|
bordered: string | boolean;
|
|
7697
7716
|
uniqueCacheData: boolean;
|
|
@@ -8102,7 +8121,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8102
8121
|
default: boolean;
|
|
8103
8122
|
};
|
|
8104
8123
|
lowCodeReactions: {
|
|
8105
|
-
type: import("vue").PropType<import("
|
|
8124
|
+
type: import("vue").PropType<import("../../../es/shared/types").FormLowCodeReactions.Config[]>;
|
|
8106
8125
|
};
|
|
8107
8126
|
operationalForm: {
|
|
8108
8127
|
type: import("vue").PropType<import("../../../es/shared/types").FormOperationalConfig[]>;
|
|
@@ -8342,7 +8361,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8342
8361
|
businessFormatter: import("..").FormBusinessFormatter;
|
|
8343
8362
|
requestInstance: import("..").RequestInstance;
|
|
8344
8363
|
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
8345
|
-
lowCodeReactions: import("
|
|
8364
|
+
lowCodeReactions: import("../../../es/shared/types").FormLowCodeReactions.Config[];
|
|
8346
8365
|
linebarAutoHidden: boolean;
|
|
8347
8366
|
bordered: string | boolean;
|
|
8348
8367
|
uniqueCacheData: boolean;
|
|
@@ -8440,7 +8459,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8440
8459
|
businessFormatter: import("..").FormBusinessFormatter;
|
|
8441
8460
|
requestInstance: import("..").RequestInstance;
|
|
8442
8461
|
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
8443
|
-
lowCodeReactions: import("
|
|
8462
|
+
lowCodeReactions: import("../../../es/shared/types").FormLowCodeReactions.Config[];
|
|
8444
8463
|
linebarAutoHidden: boolean;
|
|
8445
8464
|
bordered: string | boolean;
|
|
8446
8465
|
uniqueCacheData: boolean;
|
|
@@ -13766,7 +13785,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13766
13785
|
default: boolean;
|
|
13767
13786
|
};
|
|
13768
13787
|
lowCodeReactions: {
|
|
13769
|
-
type: import("vue").PropType<import("
|
|
13788
|
+
type: import("vue").PropType<import("../../../es/shared/types").FormLowCodeReactions.Config[]>;
|
|
13770
13789
|
};
|
|
13771
13790
|
operationalForm: {
|
|
13772
13791
|
type: import("vue").PropType<import("../../../es/shared/types").FormOperationalConfig[]>;
|
|
@@ -13911,7 +13930,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13911
13930
|
default: boolean;
|
|
13912
13931
|
};
|
|
13913
13932
|
lowCodeReactions: {
|
|
13914
|
-
type: import("vue").PropType<import("
|
|
13933
|
+
type: import("vue").PropType<import("../../../es/shared/types").FormLowCodeReactions.Config[]>;
|
|
13915
13934
|
};
|
|
13916
13935
|
operationalForm: {
|
|
13917
13936
|
type: import("vue").PropType<import("../../../es/shared/types").FormOperationalConfig[]>;
|
|
@@ -14070,7 +14089,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14070
14089
|
businessFormatter: import("..").FormBusinessFormatter;
|
|
14071
14090
|
requestInstance: import("..").RequestInstance;
|
|
14072
14091
|
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
14073
|
-
lowCodeReactions: import("
|
|
14092
|
+
lowCodeReactions: import("../../../es/shared/types").FormLowCodeReactions.Config[];
|
|
14074
14093
|
linebarAutoHidden: boolean;
|
|
14075
14094
|
bordered: string | boolean;
|
|
14076
14095
|
uniqueCacheData: boolean;
|
|
@@ -14481,7 +14500,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14481
14500
|
default: boolean;
|
|
14482
14501
|
};
|
|
14483
14502
|
lowCodeReactions: {
|
|
14484
|
-
type: import("vue").PropType<import("
|
|
14503
|
+
type: import("vue").PropType<import("../../../es/shared/types").FormLowCodeReactions.Config[]>;
|
|
14485
14504
|
};
|
|
14486
14505
|
operationalForm: {
|
|
14487
14506
|
type: import("vue").PropType<import("../../../es/shared/types").FormOperationalConfig[]>;
|
|
@@ -14611,7 +14630,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14611
14630
|
businessFormatter: import("..").FormBusinessFormatter;
|
|
14612
14631
|
requestInstance: import("..").RequestInstance;
|
|
14613
14632
|
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
14614
|
-
lowCodeReactions: import("
|
|
14633
|
+
lowCodeReactions: import("../../../es/shared/types").FormLowCodeReactions.Config[];
|
|
14615
14634
|
linebarAutoHidden: boolean;
|
|
14616
14635
|
bordered: string | boolean;
|
|
14617
14636
|
uniqueCacheData: boolean;
|
|
@@ -14621,6 +14640,124 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14621
14640
|
}>>>;
|
|
14622
14641
|
};
|
|
14623
14642
|
}>>, {}>;
|
|
14643
|
+
FormConfigEventSetting: import("vue").DefineComponent<{
|
|
14644
|
+
modelValue: {
|
|
14645
|
+
type: ArrayConstructor;
|
|
14646
|
+
required: true;
|
|
14647
|
+
default: () => never[];
|
|
14648
|
+
};
|
|
14649
|
+
}, {
|
|
14650
|
+
props: {
|
|
14651
|
+
modelValue: import("../../../es/shared/types").FormLowCodeReactions.Config[];
|
|
14652
|
+
};
|
|
14653
|
+
emit: (event: "update:modelValue" | "validateFailure", ...args: any[]) => void;
|
|
14654
|
+
cssVars: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
14655
|
+
valueRef: import("vue").Ref<{
|
|
14656
|
+
conObj: {
|
|
14657
|
+
con: import("../../../es/shared/types").LOW_CODE_VALUE_RELATION;
|
|
14658
|
+
field_key: string;
|
|
14659
|
+
value: unknown;
|
|
14660
|
+
}[];
|
|
14661
|
+
sqlExpression?: string | undefined;
|
|
14662
|
+
showField?: string[] | undefined;
|
|
14663
|
+
hideField?: string[] | undefined;
|
|
14664
|
+
requiredField?: string[] | undefined;
|
|
14665
|
+
notRequiredField?: string[] | undefined;
|
|
14666
|
+
enabledField?: string[] | undefined;
|
|
14667
|
+
disabledField?: string[] | undefined;
|
|
14668
|
+
__oppositeBindField?: any | undefined;
|
|
14669
|
+
__oppositeTargetField?: any | undefined;
|
|
14670
|
+
}[]>;
|
|
14671
|
+
expandedName: import("vue").Ref<string>;
|
|
14672
|
+
addConnection: () => void;
|
|
14673
|
+
removeConnection: (index: number) => void;
|
|
14674
|
+
getOppositeBtnText: (item: import("../../../es/shared/types").FormLowCodeReactions.Config) => string | undefined;
|
|
14675
|
+
unBindOpposite: (item: import("../../../es/shared/types").FormLowCodeReactions.Config) => void;
|
|
14676
|
+
addOppositeCondition: (item: import("../../../es/shared/types").FormLowCodeReactions.Config) => void;
|
|
14677
|
+
getOppositeSqlExpression: (expression?: string | undefined) => string | undefined;
|
|
14678
|
+
createOppositeCondition: (config: import("../../../es/shared/types").FormLowCodeReactions.Config) => import("../../../es/shared/types").FormLowCodeReactions.Config;
|
|
14679
|
+
isOppositeConfig: (c1: import("../../../es/shared/types").FormLowCodeReactions.Config, c2: import("../../../es/shared/types").FormLowCodeReactions.Config) => boolean;
|
|
14680
|
+
onUpdateExpandedNames: (value: string[]) => void;
|
|
14681
|
+
getBinderFieldDesc: (index: number) => string;
|
|
14682
|
+
addCondition: (config: import("../../../es/shared/types").FormLowCodeReactions.Config) => void;
|
|
14683
|
+
removeCondition: (config: import("../../../es/shared/types").FormLowCodeReactions.Config, index: number) => void;
|
|
14684
|
+
onUpdateConditionType: (condition: import("../../../es/shared/types").FormLowCodeReactions.ConObj, type: import("../../../es/shared/types").LOW_CODE_VALUE_RELATION) => void;
|
|
14685
|
+
showRef: import("vue").Ref<boolean>;
|
|
14686
|
+
fieldListRef: import("vue").Ref<import("./src/types").FormConfigItem[]>;
|
|
14687
|
+
fieldOptions: import("vue").ComputedRef<import("./src/types").FormConfigItem[]>;
|
|
14688
|
+
currentTypeList: string[];
|
|
14689
|
+
dialog: import("naive-ui").DialogApi;
|
|
14690
|
+
onNegativeClick: () => Promise<void>;
|
|
14691
|
+
onPositiveClick: () => Promise<void>;
|
|
14692
|
+
configValidate: () => Promise<void>;
|
|
14693
|
+
HelpCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
14694
|
+
NButton: any;
|
|
14695
|
+
NModal: any;
|
|
14696
|
+
NSpace: any;
|
|
14697
|
+
NScrollbar: any;
|
|
14698
|
+
NThing: any;
|
|
14699
|
+
NInputGroup: import("vue").DefineComponent<{
|
|
14700
|
+
[x: string]: never;
|
|
14701
|
+
[x: number]: never;
|
|
14702
|
+
[x: symbol]: never;
|
|
14703
|
+
}, {
|
|
14704
|
+
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
14705
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14706
|
+
[x: string]: never;
|
|
14707
|
+
[x: number]: never;
|
|
14708
|
+
[x: symbol]: never;
|
|
14709
|
+
}>>, {}>;
|
|
14710
|
+
NSelect: any;
|
|
14711
|
+
NInput: any;
|
|
14712
|
+
NCollapse: any;
|
|
14713
|
+
NCollapseItem: import("vue").DefineComponent<{
|
|
14714
|
+
readonly title: StringConstructor;
|
|
14715
|
+
readonly name: import("vue").PropType<string | number>;
|
|
14716
|
+
readonly disabled: BooleanConstructor;
|
|
14717
|
+
readonly displayDirective: import("vue").PropType<"if" | "show">;
|
|
14718
|
+
}, {
|
|
14719
|
+
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
14720
|
+
collapseSlots: Readonly<{
|
|
14721
|
+
[name: string]: import("vue").Slot | undefined;
|
|
14722
|
+
}>;
|
|
14723
|
+
randomName: string;
|
|
14724
|
+
mergedClsPrefix: import("vue").Ref<string>;
|
|
14725
|
+
collapsed: import("vue").ComputedRef<boolean>;
|
|
14726
|
+
mergedDisplayDirective: import("vue").ComputedRef<"if" | "show">;
|
|
14727
|
+
arrowPlacement: import("vue").ComputedRef<"left" | "right">;
|
|
14728
|
+
handleClick(e: MouseEvent): void;
|
|
14729
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14730
|
+
readonly title: StringConstructor;
|
|
14731
|
+
readonly name: import("vue").PropType<string | number>;
|
|
14732
|
+
readonly disabled: BooleanConstructor;
|
|
14733
|
+
readonly displayDirective: import("vue").PropType<"if" | "show">;
|
|
14734
|
+
}>>, {
|
|
14735
|
+
readonly disabled: boolean;
|
|
14736
|
+
}>;
|
|
14737
|
+
NEllipsis: any;
|
|
14738
|
+
NEmpty: any;
|
|
14739
|
+
NTooltip: any;
|
|
14740
|
+
NIcon: any;
|
|
14741
|
+
conditionTypeOptions: {
|
|
14742
|
+
value: import("../../../es/shared/types").LOW_CODE_VALUE_RELATION;
|
|
14743
|
+
label: string;
|
|
14744
|
+
}[];
|
|
14745
|
+
connectionTypeOptions: {
|
|
14746
|
+
value: string;
|
|
14747
|
+
label: string;
|
|
14748
|
+
}[];
|
|
14749
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "validateFailure")[], "update:modelValue" | "validateFailure", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14750
|
+
modelValue: {
|
|
14751
|
+
type: ArrayConstructor;
|
|
14752
|
+
required: true;
|
|
14753
|
+
default: () => never[];
|
|
14754
|
+
};
|
|
14755
|
+
}>> & {
|
|
14756
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
14757
|
+
onValidateFailure?: ((...args: any[]) => any) | undefined;
|
|
14758
|
+
}, {
|
|
14759
|
+
modelValue: unknown[];
|
|
14760
|
+
}>;
|
|
14624
14761
|
FormConfigMaterialItem: import("vue").DefineComponent<{
|
|
14625
14762
|
formConfigItem: {
|
|
14626
14763
|
type: import("vue").PropType<import("./src/types").FormConfigItem>;
|
|
@@ -14652,7 +14789,8 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14652
14789
|
}>;
|
|
14653
14790
|
FORM_CONFIG_GROUP: string;
|
|
14654
14791
|
NSelect: any;
|
|
14655
|
-
|
|
14792
|
+
NSpace: any;
|
|
14793
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("addItem" | "removeItem" | "reactionsValidateFailure")[], "addItem" | "removeItem" | "reactionsValidateFailure", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14656
14794
|
maxHeight: {
|
|
14657
14795
|
type: StringConstructor;
|
|
14658
14796
|
};
|
|
@@ -14668,6 +14806,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14668
14806
|
extraMaterialList: {
|
|
14669
14807
|
type: import("vue").PropType<import("./src/types").FormConfigItem[] | (() => import("./src/types").FormConfigItem[] | Promise<import("./src/types").FormConfigItem[]>)>;
|
|
14670
14808
|
};
|
|
14809
|
+
showLowCodeReactions: BooleanConstructor;
|
|
14671
14810
|
formProps: {
|
|
14672
14811
|
type: import("vue").PropType<Partial<Partial<{
|
|
14673
14812
|
fieldList: import("..").FieldItem[];
|
|
@@ -14748,7 +14887,7 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14748
14887
|
businessFormatter: import("..").FormBusinessFormatter;
|
|
14749
14888
|
requestInstance: import("..").RequestInstance;
|
|
14750
14889
|
enterToNextWidget: boolean | ((fieldItem: import("..").FieldItem) => boolean | void);
|
|
14751
|
-
lowCodeReactions: import("
|
|
14890
|
+
lowCodeReactions: import("../../../es/shared/types").FormLowCodeReactions.Config[];
|
|
14752
14891
|
linebarAutoHidden: boolean;
|
|
14753
14892
|
bordered: string | boolean;
|
|
14754
14893
|
uniqueCacheData: boolean;
|
|
@@ -14760,5 +14899,8 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14760
14899
|
}>> & {
|
|
14761
14900
|
onAddItem?: ((...args: any[]) => any) | undefined;
|
|
14762
14901
|
onRemoveItem?: ((...args: any[]) => any) | undefined;
|
|
14763
|
-
|
|
14902
|
+
onReactionsValidateFailure?: ((...args: any[]) => any) | undefined;
|
|
14903
|
+
}, {
|
|
14904
|
+
showLowCodeReactions: boolean;
|
|
14905
|
+
}>>;
|
|
14764
14906
|
export default FormConfig;
|