cnhis-design-vue 3.1.54-beta.4 → 3.1.54-beta.6
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/callback/src/components/render/popupMaps.d.ts +17 -8
- package/es/components/fabric-chart/src/hooks/electrocardiogram/hooks/useDetailEvent.js +1 -1
- package/es/components/fabric-chart/src/hooks/electrocardiogram/useElectrocardiogram.js +1 -1
- package/es/components/fabric-chart/src/hooks/electrocardiogram/useElectrocardiogramChart.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useLeft.js +1 -1
- package/es/components/form-config/index.d.ts +72 -54
- package/es/components/form-config/src/FormConfig.vue.d.ts +73 -55
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +17 -8
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +29 -20
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +12 -12
- package/es/components/form-config/src/constants/index.d.ts +4 -4
- package/es/components/form-config/src/types/index.d.ts +3 -3
- package/es/components/form-render/index.d.ts +17 -8
- package/es/components/form-render/src/FormRender.vue.d.ts +18 -9
- package/es/components/form-render/src/FormRender.vue2.js +1 -1
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +17 -8
- package/es/components/form-render/src/components/renderer/date.js +1 -1
- package/es/components/form-render/src/hooks/useFieldNormalize.d.ts +4 -4
- package/es/components/form-render/src/hooks/useFormRenderOptions.d.ts +2 -2
- package/es/components/form-render/src/hooks/useLowCodeReactions.d.ts +2 -2
- package/es/components/form-render/src/hooks/useOperationalForm.d.ts +2 -2
- package/es/components/form-render/src/types/fieldItem.d.ts +3 -3
- package/es/components/form-render/src/types/index.d.ts +3 -3
- package/es/components/iho-table/src/types/index.d.ts +5 -5
- package/es/components/info-header/index.d.ts +44 -26
- package/es/components/info-header/src/InfoHeader.vue.d.ts +44 -26
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.d.ts +2 -2
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +2 -2
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +19 -10
- package/es/components/info-header/src/components/patientInfo/index.vue.d.ts +17 -8
- package/es/components/shortcut-setter/index.d.ts +19 -10
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +19 -10
- package/es/components/table-filter/src/hooks/useAdvanced.js +1 -1
- package/es/shared/hooks/useLevelSearchCascader.d.ts +2 -2
- package/es/shared/package.json.js +1 -1
- package/es/shared/types/business.d.ts +61 -53
- package/es/shared/utils/business.d.ts +7 -7
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="lodash" />
|
|
2
2
|
import { useVersion } from '../../../../es/shared/hooks';
|
|
3
|
-
import {
|
|
3
|
+
import { AnyFn, LowCodeTypes } from '../../../../es/shared/types';
|
|
4
4
|
import { PropType } from 'vue';
|
|
5
5
|
import { FormConfigItem, FormConfigTextFormatter, FormConfigVisitor } from '../../../../es/components/form-config/src/types';
|
|
6
6
|
import { FormRenderExpose } from '../../../../es/components/form-render';
|
|
@@ -105,11 +105,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
105
105
|
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
106
106
|
requestInstance: import("../../../../es/shared/hooks").FormRequestDefine.RequestInstance;
|
|
107
107
|
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
108
|
-
lowCodeReactions:
|
|
108
|
+
lowCodeReactions: LowCodeTypes.reactionsConfig[];
|
|
109
109
|
linebarAutoHidden: boolean;
|
|
110
110
|
bordered: string | boolean;
|
|
111
111
|
uniqueCacheData: boolean;
|
|
112
|
-
operationalForm:
|
|
112
|
+
operationalForm: LowCodeTypes.operationalConfig[];
|
|
113
113
|
outBordered: boolean;
|
|
114
114
|
forceClearable: boolean;
|
|
115
115
|
}>>>;
|
|
@@ -216,11 +216,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
216
216
|
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
217
217
|
requestInstance: import("../../../../es/shared/hooks").FormRequestDefine.RequestInstance;
|
|
218
218
|
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
219
|
-
lowCodeReactions:
|
|
219
|
+
lowCodeReactions: LowCodeTypes.reactionsConfig[];
|
|
220
220
|
linebarAutoHidden: boolean;
|
|
221
221
|
bordered: string | boolean;
|
|
222
222
|
uniqueCacheData: boolean;
|
|
223
|
-
operationalForm:
|
|
223
|
+
operationalForm: LowCodeTypes.operationalConfig[];
|
|
224
224
|
outBordered: boolean;
|
|
225
225
|
forceClearable: boolean;
|
|
226
226
|
}>>>;
|
|
@@ -379,12 +379,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
379
379
|
initialize_high?: number | undefined;
|
|
380
380
|
bindEventSetting?: {
|
|
381
381
|
[x: string]: unknown;
|
|
382
|
-
event_type:
|
|
382
|
+
event_type: LowCodeTypes.EVENT_TYPE;
|
|
383
383
|
event_field?: string | undefined;
|
|
384
384
|
params?: {
|
|
385
385
|
p_value?: string | undefined;
|
|
386
386
|
p_name: string;
|
|
387
|
-
p_select:
|
|
387
|
+
p_select: LowCodeTypes.VALUE_RELATION;
|
|
388
388
|
}[] | undefined;
|
|
389
389
|
results?: {
|
|
390
390
|
p_value: string;
|
|
@@ -2127,12 +2127,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2127
2127
|
initialize_high?: number | undefined;
|
|
2128
2128
|
bindEventSetting?: {
|
|
2129
2129
|
[x: string]: unknown;
|
|
2130
|
-
event_type:
|
|
2130
|
+
event_type: LowCodeTypes.EVENT_TYPE;
|
|
2131
2131
|
event_field?: string | undefined;
|
|
2132
2132
|
params?: {
|
|
2133
2133
|
p_value?: string | undefined;
|
|
2134
2134
|
p_name: string;
|
|
2135
|
-
p_select:
|
|
2135
|
+
p_select: LowCodeTypes.VALUE_RELATION;
|
|
2136
2136
|
}[] | undefined;
|
|
2137
2137
|
results?: {
|
|
2138
2138
|
p_value: string;
|
|
@@ -3741,7 +3741,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3741
3741
|
}[]>;
|
|
3742
3742
|
lowCodeReactionsRef: import("vue").Ref<{
|
|
3743
3743
|
conObj: {
|
|
3744
|
-
con:
|
|
3744
|
+
con: LowCodeTypes.VALUE_RELATION;
|
|
3745
3745
|
field_key: string;
|
|
3746
3746
|
value: unknown;
|
|
3747
3747
|
}[];
|
|
@@ -3912,12 +3912,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3912
3912
|
initialize_high?: number | undefined;
|
|
3913
3913
|
bindEventSetting?: {
|
|
3914
3914
|
[x: string]: unknown;
|
|
3915
|
-
event_type:
|
|
3915
|
+
event_type: LowCodeTypes.EVENT_TYPE;
|
|
3916
3916
|
event_field?: string | undefined;
|
|
3917
3917
|
params?: {
|
|
3918
3918
|
p_value?: string | undefined;
|
|
3919
3919
|
p_name: string;
|
|
3920
|
-
p_select:
|
|
3920
|
+
p_select: LowCodeTypes.VALUE_RELATION;
|
|
3921
3921
|
}[] | undefined;
|
|
3922
3922
|
results?: {
|
|
3923
3923
|
p_value: string;
|
|
@@ -5660,12 +5660,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5660
5660
|
initialize_high?: number | undefined;
|
|
5661
5661
|
bindEventSetting?: {
|
|
5662
5662
|
[x: string]: unknown;
|
|
5663
|
-
event_type:
|
|
5663
|
+
event_type: LowCodeTypes.EVENT_TYPE;
|
|
5664
5664
|
event_field?: string | undefined;
|
|
5665
5665
|
params?: {
|
|
5666
5666
|
p_value?: string | undefined;
|
|
5667
5667
|
p_name: string;
|
|
5668
|
-
p_select:
|
|
5668
|
+
p_select: LowCodeTypes.VALUE_RELATION;
|
|
5669
5669
|
}[] | undefined;
|
|
5670
5670
|
results?: {
|
|
5671
5671
|
p_value: string;
|
|
@@ -7494,10 +7494,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7494
7494
|
default: boolean;
|
|
7495
7495
|
};
|
|
7496
7496
|
lowCodeReactions: {
|
|
7497
|
-
type: PropType<
|
|
7497
|
+
type: PropType<LowCodeTypes.reactionsConfig[]>;
|
|
7498
7498
|
};
|
|
7499
7499
|
operationalForm: {
|
|
7500
|
-
type: PropType<
|
|
7500
|
+
type: PropType<LowCodeTypes.operationalConfig[]>;
|
|
7501
|
+
};
|
|
7502
|
+
dateOperationalForm: {
|
|
7503
|
+
type: ObjectConstructor;
|
|
7501
7504
|
};
|
|
7502
7505
|
linebarAutoHidden: {
|
|
7503
7506
|
type: BooleanConstructor;
|
|
@@ -7643,10 +7646,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7643
7646
|
default: boolean;
|
|
7644
7647
|
};
|
|
7645
7648
|
lowCodeReactions: {
|
|
7646
|
-
type: PropType<
|
|
7649
|
+
type: PropType<LowCodeTypes.reactionsConfig[]>;
|
|
7647
7650
|
};
|
|
7648
7651
|
operationalForm: {
|
|
7649
|
-
type: PropType<
|
|
7652
|
+
type: PropType<LowCodeTypes.operationalConfig[]>;
|
|
7653
|
+
};
|
|
7654
|
+
dateOperationalForm: {
|
|
7655
|
+
type: ObjectConstructor;
|
|
7650
7656
|
};
|
|
7651
7657
|
linebarAutoHidden: {
|
|
7652
7658
|
type: BooleanConstructor;
|
|
@@ -7817,11 +7823,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7817
7823
|
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
7818
7824
|
requestInstance: import("../../../../es/shared/hooks").FormRequestDefine.RequestInstance;
|
|
7819
7825
|
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
7820
|
-
lowCodeReactions:
|
|
7826
|
+
lowCodeReactions: LowCodeTypes.reactionsConfig[];
|
|
7821
7827
|
linebarAutoHidden: boolean;
|
|
7822
7828
|
bordered: string | boolean;
|
|
7823
7829
|
uniqueCacheData: boolean;
|
|
7824
|
-
operationalForm:
|
|
7830
|
+
operationalForm: LowCodeTypes.operationalConfig[];
|
|
7825
7831
|
outBordered: boolean;
|
|
7826
7832
|
forceClearable: boolean;
|
|
7827
7833
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
@@ -8235,10 +8241,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8235
8241
|
default: boolean;
|
|
8236
8242
|
};
|
|
8237
8243
|
lowCodeReactions: {
|
|
8238
|
-
type: PropType<
|
|
8244
|
+
type: PropType<LowCodeTypes.reactionsConfig[]>;
|
|
8239
8245
|
};
|
|
8240
8246
|
operationalForm: {
|
|
8241
|
-
type: PropType<
|
|
8247
|
+
type: PropType<LowCodeTypes.operationalConfig[]>;
|
|
8248
|
+
};
|
|
8249
|
+
dateOperationalForm: {
|
|
8250
|
+
type: ObjectConstructor;
|
|
8242
8251
|
};
|
|
8243
8252
|
linebarAutoHidden: {
|
|
8244
8253
|
type: BooleanConstructor;
|
|
@@ -8479,11 +8488,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8479
8488
|
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
8480
8489
|
requestInstance: import("../../../../es/shared/hooks").FormRequestDefine.RequestInstance;
|
|
8481
8490
|
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
8482
|
-
lowCodeReactions:
|
|
8491
|
+
lowCodeReactions: LowCodeTypes.reactionsConfig[];
|
|
8483
8492
|
linebarAutoHidden: boolean;
|
|
8484
8493
|
bordered: string | boolean;
|
|
8485
8494
|
uniqueCacheData: boolean;
|
|
8486
|
-
operationalForm:
|
|
8495
|
+
operationalForm: LowCodeTypes.operationalConfig[];
|
|
8487
8496
|
outBordered: boolean;
|
|
8488
8497
|
forceClearable: boolean;
|
|
8489
8498
|
}>>>;
|
|
@@ -8581,11 +8590,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8581
8590
|
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
8582
8591
|
requestInstance: import("../../../../es/shared/hooks").FormRequestDefine.RequestInstance;
|
|
8583
8592
|
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
8584
|
-
lowCodeReactions:
|
|
8593
|
+
lowCodeReactions: LowCodeTypes.reactionsConfig[];
|
|
8585
8594
|
linebarAutoHidden: boolean;
|
|
8586
8595
|
bordered: string | boolean;
|
|
8587
8596
|
uniqueCacheData: boolean;
|
|
8588
|
-
operationalForm:
|
|
8597
|
+
operationalForm: LowCodeTypes.operationalConfig[];
|
|
8589
8598
|
outBordered: boolean;
|
|
8590
8599
|
forceClearable: boolean;
|
|
8591
8600
|
}>>>;
|
|
@@ -8714,12 +8723,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8714
8723
|
initialize_high?: number | undefined;
|
|
8715
8724
|
bindEventSetting?: {
|
|
8716
8725
|
[x: string]: unknown;
|
|
8717
|
-
event_type:
|
|
8726
|
+
event_type: LowCodeTypes.EVENT_TYPE;
|
|
8718
8727
|
event_field?: string | undefined;
|
|
8719
8728
|
params?: {
|
|
8720
8729
|
p_value?: string | undefined;
|
|
8721
8730
|
p_name: string;
|
|
8722
|
-
p_select:
|
|
8731
|
+
p_select: LowCodeTypes.VALUE_RELATION;
|
|
8723
8732
|
}[] | undefined;
|
|
8724
8733
|
results?: {
|
|
8725
8734
|
p_value: string;
|
|
@@ -10473,12 +10482,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10473
10482
|
initialize_high?: number | undefined;
|
|
10474
10483
|
bindEventSetting?: {
|
|
10475
10484
|
[x: string]: unknown;
|
|
10476
|
-
event_type:
|
|
10485
|
+
event_type: LowCodeTypes.EVENT_TYPE;
|
|
10477
10486
|
event_field?: string | undefined;
|
|
10478
10487
|
params?: {
|
|
10479
10488
|
p_value?: string | undefined;
|
|
10480
10489
|
p_name: string;
|
|
10481
|
-
p_select:
|
|
10490
|
+
p_select: LowCodeTypes.VALUE_RELATION;
|
|
10482
10491
|
}[] | undefined;
|
|
10483
10492
|
results?: {
|
|
10484
10493
|
p_value: string;
|
|
@@ -12205,12 +12214,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12205
12214
|
initialize_high?: number | undefined;
|
|
12206
12215
|
bindEventSetting?: {
|
|
12207
12216
|
[x: string]: unknown;
|
|
12208
|
-
event_type:
|
|
12217
|
+
event_type: LowCodeTypes.EVENT_TYPE;
|
|
12209
12218
|
event_field?: string | undefined;
|
|
12210
12219
|
params?: {
|
|
12211
12220
|
p_value?: string | undefined;
|
|
12212
12221
|
p_name: string;
|
|
12213
|
-
p_select:
|
|
12222
|
+
p_select: LowCodeTypes.VALUE_RELATION;
|
|
12214
12223
|
}[] | undefined;
|
|
12215
12224
|
results?: {
|
|
12216
12225
|
p_value: string;
|
|
@@ -13956,10 +13965,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13956
13965
|
default: boolean;
|
|
13957
13966
|
};
|
|
13958
13967
|
lowCodeReactions: {
|
|
13959
|
-
type: PropType<
|
|
13968
|
+
type: PropType<LowCodeTypes.reactionsConfig[]>;
|
|
13960
13969
|
};
|
|
13961
13970
|
operationalForm: {
|
|
13962
|
-
type: PropType<
|
|
13971
|
+
type: PropType<LowCodeTypes.operationalConfig[]>;
|
|
13972
|
+
};
|
|
13973
|
+
dateOperationalForm: {
|
|
13974
|
+
type: ObjectConstructor;
|
|
13963
13975
|
};
|
|
13964
13976
|
linebarAutoHidden: {
|
|
13965
13977
|
type: BooleanConstructor;
|
|
@@ -14105,10 +14117,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14105
14117
|
default: boolean;
|
|
14106
14118
|
};
|
|
14107
14119
|
lowCodeReactions: {
|
|
14108
|
-
type: PropType<
|
|
14120
|
+
type: PropType<LowCodeTypes.reactionsConfig[]>;
|
|
14109
14121
|
};
|
|
14110
14122
|
operationalForm: {
|
|
14111
|
-
type: PropType<
|
|
14123
|
+
type: PropType<LowCodeTypes.operationalConfig[]>;
|
|
14124
|
+
};
|
|
14125
|
+
dateOperationalForm: {
|
|
14126
|
+
type: ObjectConstructor;
|
|
14112
14127
|
};
|
|
14113
14128
|
linebarAutoHidden: {
|
|
14114
14129
|
type: BooleanConstructor;
|
|
@@ -14279,11 +14294,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14279
14294
|
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
14280
14295
|
requestInstance: import("../../../../es/shared/hooks").FormRequestDefine.RequestInstance;
|
|
14281
14296
|
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
14282
|
-
lowCodeReactions:
|
|
14297
|
+
lowCodeReactions: LowCodeTypes.reactionsConfig[];
|
|
14283
14298
|
linebarAutoHidden: boolean;
|
|
14284
14299
|
bordered: string | boolean;
|
|
14285
14300
|
uniqueCacheData: boolean;
|
|
14286
|
-
operationalForm:
|
|
14301
|
+
operationalForm: LowCodeTypes.operationalConfig[];
|
|
14287
14302
|
outBordered: boolean;
|
|
14288
14303
|
forceClearable: boolean;
|
|
14289
14304
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
@@ -14697,10 +14712,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14697
14712
|
default: boolean;
|
|
14698
14713
|
};
|
|
14699
14714
|
lowCodeReactions: {
|
|
14700
|
-
type: PropType<
|
|
14715
|
+
type: PropType<LowCodeTypes.reactionsConfig[]>;
|
|
14701
14716
|
};
|
|
14702
14717
|
operationalForm: {
|
|
14703
|
-
type: PropType<
|
|
14718
|
+
type: PropType<LowCodeTypes.operationalConfig[]>;
|
|
14719
|
+
};
|
|
14720
|
+
dateOperationalForm: {
|
|
14721
|
+
type: ObjectConstructor;
|
|
14704
14722
|
};
|
|
14705
14723
|
linebarAutoHidden: {
|
|
14706
14724
|
type: BooleanConstructor;
|
|
@@ -14831,11 +14849,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14831
14849
|
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
14832
14850
|
requestInstance: import("../../../../es/shared/hooks").FormRequestDefine.RequestInstance;
|
|
14833
14851
|
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
14834
|
-
lowCodeReactions:
|
|
14852
|
+
lowCodeReactions: LowCodeTypes.reactionsConfig[];
|
|
14835
14853
|
linebarAutoHidden: boolean;
|
|
14836
14854
|
bordered: string | boolean;
|
|
14837
14855
|
uniqueCacheData: boolean;
|
|
14838
|
-
operationalForm:
|
|
14856
|
+
operationalForm: LowCodeTypes.operationalConfig[];
|
|
14839
14857
|
outBordered: boolean;
|
|
14840
14858
|
forceClearable: boolean;
|
|
14841
14859
|
}>>>;
|
|
@@ -14849,13 +14867,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14849
14867
|
};
|
|
14850
14868
|
}, {
|
|
14851
14869
|
props: {
|
|
14852
|
-
modelValue:
|
|
14870
|
+
modelValue: LowCodeTypes.reactionsConfig[];
|
|
14853
14871
|
};
|
|
14854
14872
|
emit: (event: "update:modelValue" | "validateFailure", ...args: any[]) => void;
|
|
14855
14873
|
cssVars: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
14856
14874
|
valueRef: import("vue").Ref<{
|
|
14857
14875
|
conObj: {
|
|
14858
|
-
con:
|
|
14876
|
+
con: LowCodeTypes.VALUE_RELATION;
|
|
14859
14877
|
field_key: string;
|
|
14860
14878
|
value: unknown;
|
|
14861
14879
|
}[];
|
|
@@ -14884,17 +14902,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14884
14902
|
expandedName: import("vue").Ref<string>;
|
|
14885
14903
|
addConnection: () => void;
|
|
14886
14904
|
removeConnection: (index: number) => void;
|
|
14887
|
-
getOppositeBtnText: (item:
|
|
14888
|
-
unBindOpposite: (item:
|
|
14889
|
-
addOppositeCondition: (item:
|
|
14905
|
+
getOppositeBtnText: (item: LowCodeTypes.reactionsConfig) => string | undefined;
|
|
14906
|
+
unBindOpposite: (item: LowCodeTypes.reactionsConfig) => void;
|
|
14907
|
+
addOppositeCondition: (item: LowCodeTypes.reactionsConfig) => void;
|
|
14890
14908
|
getOppositeSqlExpression: (expression?: string | undefined) => string | undefined;
|
|
14891
|
-
createOppositeCondition: (config:
|
|
14892
|
-
isOppositeConfig: (c1:
|
|
14909
|
+
createOppositeCondition: (config: LowCodeTypes.reactionsConfig) => LowCodeTypes.reactionsConfig;
|
|
14910
|
+
isOppositeConfig: (c1: LowCodeTypes.reactionsConfig, c2: LowCodeTypes.reactionsConfig) => boolean;
|
|
14893
14911
|
onUpdateExpandedNames: (value: string[]) => void;
|
|
14894
14912
|
getBinderFieldDesc: (index: number) => string;
|
|
14895
|
-
addCondition: (config:
|
|
14896
|
-
removeCondition: (config:
|
|
14897
|
-
onUpdateConditionType: (condition:
|
|
14913
|
+
addCondition: (config: LowCodeTypes.reactionsConfig) => void;
|
|
14914
|
+
removeCondition: (config: LowCodeTypes.reactionsConfig, index: number) => void;
|
|
14915
|
+
onUpdateConditionType: (condition: LowCodeTypes.reactionsConObj, type: LowCodeTypes.VALUE_RELATION) => void;
|
|
14898
14916
|
showRef: import("vue").Ref<boolean>;
|
|
14899
14917
|
fieldListRef: import("vue").Ref<FormConfigItem[]>;
|
|
14900
14918
|
fieldOptions: import("vue").ComputedRef<FormConfigItem[]>;
|
|
@@ -14952,7 +14970,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14952
14970
|
NTooltip: any;
|
|
14953
14971
|
NIcon: any;
|
|
14954
14972
|
conditionTypeOptions: {
|
|
14955
|
-
value:
|
|
14973
|
+
value: LowCodeTypes.VALUE_RELATION;
|
|
14956
14974
|
label: string;
|
|
14957
14975
|
}[];
|
|
14958
14976
|
connectionTypeOptions: {
|
|
@@ -15104,11 +15122,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15104
15122
|
businessFormatter: import("../../../../es/components/form-render").FormBusinessFormatter;
|
|
15105
15123
|
requestInstance: import("../../../../es/shared/hooks").FormRequestDefine.RequestInstance;
|
|
15106
15124
|
enterToNextWidget: boolean | ((fieldItem: import("../../../../es/components/form-render").FieldItem) => boolean | void);
|
|
15107
|
-
lowCodeReactions:
|
|
15125
|
+
lowCodeReactions: LowCodeTypes.reactionsConfig[];
|
|
15108
15126
|
linebarAutoHidden: boolean;
|
|
15109
15127
|
bordered: string | boolean;
|
|
15110
15128
|
uniqueCacheData: boolean;
|
|
15111
|
-
operationalForm:
|
|
15129
|
+
operationalForm: LowCodeTypes.operationalConfig[];
|
|
15112
15130
|
outBordered: boolean;
|
|
15113
15131
|
forceClearable: boolean;
|
|
15114
15132
|
}>>>;
|
|
@@ -148,10 +148,13 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
148
148
|
default: boolean;
|
|
149
149
|
};
|
|
150
150
|
lowCodeReactions: {
|
|
151
|
-
type: import("vue").PropType<import("../../..").
|
|
151
|
+
type: import("vue").PropType<import("../../..").LowCodeTypes.reactionsConfig[]>;
|
|
152
152
|
};
|
|
153
153
|
operationalForm: {
|
|
154
|
-
type: import("vue").PropType<import("../../..").
|
|
154
|
+
type: import("vue").PropType<import("../../..").LowCodeTypes.operationalConfig[]>;
|
|
155
|
+
};
|
|
156
|
+
dateOperationalForm: {
|
|
157
|
+
type: ObjectConstructor;
|
|
155
158
|
};
|
|
156
159
|
linebarAutoHidden: {
|
|
157
160
|
type: BooleanConstructor;
|
|
@@ -297,10 +300,13 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
297
300
|
default: boolean;
|
|
298
301
|
};
|
|
299
302
|
lowCodeReactions: {
|
|
300
|
-
type: import("vue").PropType<import("../../..").
|
|
303
|
+
type: import("vue").PropType<import("../../..").LowCodeTypes.reactionsConfig[]>;
|
|
301
304
|
};
|
|
302
305
|
operationalForm: {
|
|
303
|
-
type: import("vue").PropType<import("../../..").
|
|
306
|
+
type: import("vue").PropType<import("../../..").LowCodeTypes.operationalConfig[]>;
|
|
307
|
+
};
|
|
308
|
+
dateOperationalForm: {
|
|
309
|
+
type: ObjectConstructor;
|
|
304
310
|
};
|
|
305
311
|
linebarAutoHidden: {
|
|
306
312
|
type: BooleanConstructor;
|
|
@@ -471,11 +477,11 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
471
477
|
businessFormatter: import("../../../../../es/components/form-render").FormBusinessFormatter;
|
|
472
478
|
requestInstance: import("../../..").FormRequestDefine.RequestInstance;
|
|
473
479
|
enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
|
|
474
|
-
lowCodeReactions: import("../../..").
|
|
480
|
+
lowCodeReactions: import("../../..").LowCodeTypes.reactionsConfig[];
|
|
475
481
|
linebarAutoHidden: boolean;
|
|
476
482
|
bordered: string | boolean;
|
|
477
483
|
uniqueCacheData: boolean;
|
|
478
|
-
operationalForm: import("../../..").
|
|
484
|
+
operationalForm: import("../../..").LowCodeTypes.operationalConfig[];
|
|
479
485
|
outBordered: boolean;
|
|
480
486
|
forceClearable: boolean;
|
|
481
487
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
@@ -889,10 +895,13 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
889
895
|
default: boolean;
|
|
890
896
|
};
|
|
891
897
|
lowCodeReactions: {
|
|
892
|
-
type: import("vue").PropType<import("../../..").
|
|
898
|
+
type: import("vue").PropType<import("../../..").LowCodeTypes.reactionsConfig[]>;
|
|
893
899
|
};
|
|
894
900
|
operationalForm: {
|
|
895
|
-
type: import("vue").PropType<import("../../..").
|
|
901
|
+
type: import("vue").PropType<import("../../..").LowCodeTypes.operationalConfig[]>;
|
|
902
|
+
};
|
|
903
|
+
dateOperationalForm: {
|
|
904
|
+
type: ObjectConstructor;
|
|
896
905
|
};
|
|
897
906
|
linebarAutoHidden: {
|
|
898
907
|
type: BooleanConstructor;
|
|
@@ -93,11 +93,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
93
|
businessFormatter: import("../../../../../es/components/form-render").FormBusinessFormatter;
|
|
94
94
|
requestInstance: import("../../../../../es/components/index").FormRequestDefine.RequestInstance;
|
|
95
95
|
enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
|
|
96
|
-
lowCodeReactions: import("../../../../../es/shared/types").
|
|
96
|
+
lowCodeReactions: import("../../../../../es/shared/types").LowCodeTypes.reactionsConfig[];
|
|
97
97
|
linebarAutoHidden: boolean;
|
|
98
98
|
bordered: string | boolean;
|
|
99
99
|
uniqueCacheData: boolean;
|
|
100
|
-
operationalForm: import("../../../../../es/shared/types").
|
|
100
|
+
operationalForm: import("../../../../../es/shared/types").LowCodeTypes.operationalConfig[];
|
|
101
101
|
outBordered: boolean;
|
|
102
102
|
forceClearable: boolean;
|
|
103
103
|
}>>>;
|
|
@@ -195,11 +195,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
195
195
|
businessFormatter: import("../../../../../es/components/form-render").FormBusinessFormatter;
|
|
196
196
|
requestInstance: import("../../../../../es/components/index").FormRequestDefine.RequestInstance;
|
|
197
197
|
enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
|
|
198
|
-
lowCodeReactions: import("../../../../../es/shared/types").
|
|
198
|
+
lowCodeReactions: import("../../../../../es/shared/types").LowCodeTypes.reactionsConfig[];
|
|
199
199
|
linebarAutoHidden: boolean;
|
|
200
200
|
bordered: string | boolean;
|
|
201
201
|
uniqueCacheData: boolean;
|
|
202
|
-
operationalForm: import("../../../../../es/shared/types").
|
|
202
|
+
operationalForm: import("../../../../../es/shared/types").LowCodeTypes.operationalConfig[];
|
|
203
203
|
outBordered: boolean;
|
|
204
204
|
forceClearable: boolean;
|
|
205
205
|
}>>>;
|
|
@@ -328,12 +328,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
328
328
|
initialize_high?: number | undefined;
|
|
329
329
|
bindEventSetting?: {
|
|
330
330
|
[x: string]: unknown;
|
|
331
|
-
event_type: import("../../../../../es/shared/types").
|
|
331
|
+
event_type: import("../../../../../es/shared/types").LowCodeTypes.EVENT_TYPE;
|
|
332
332
|
event_field?: string | undefined;
|
|
333
333
|
params?: {
|
|
334
334
|
p_value?: string | undefined;
|
|
335
335
|
p_name: string;
|
|
336
|
-
p_select: import("../../../../../es/shared/types").
|
|
336
|
+
p_select: import("../../../../../es/shared/types").LowCodeTypes.VALUE_RELATION;
|
|
337
337
|
}[] | undefined;
|
|
338
338
|
results?: {
|
|
339
339
|
p_value: string;
|
|
@@ -2087,12 +2087,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2087
2087
|
initialize_high?: number | undefined;
|
|
2088
2088
|
bindEventSetting?: {
|
|
2089
2089
|
[x: string]: unknown;
|
|
2090
|
-
event_type: import("../../../../../es/shared/types").
|
|
2090
|
+
event_type: import("../../../../../es/shared/types").LowCodeTypes.EVENT_TYPE;
|
|
2091
2091
|
event_field?: string | undefined;
|
|
2092
2092
|
params?: {
|
|
2093
2093
|
p_value?: string | undefined;
|
|
2094
2094
|
p_name: string;
|
|
2095
|
-
p_select: import("../../../../../es/shared/types").
|
|
2095
|
+
p_select: import("../../../../../es/shared/types").LowCodeTypes.VALUE_RELATION;
|
|
2096
2096
|
}[] | undefined;
|
|
2097
2097
|
results?: {
|
|
2098
2098
|
p_value: string;
|
|
@@ -3819,12 +3819,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3819
3819
|
initialize_high?: number | undefined;
|
|
3820
3820
|
bindEventSetting?: {
|
|
3821
3821
|
[x: string]: unknown;
|
|
3822
|
-
event_type: import("../../../../../es/shared/types").
|
|
3822
|
+
event_type: import("../../../../../es/shared/types").LowCodeTypes.EVENT_TYPE;
|
|
3823
3823
|
event_field?: string | undefined;
|
|
3824
3824
|
params?: {
|
|
3825
3825
|
p_value?: string | undefined;
|
|
3826
3826
|
p_name: string;
|
|
3827
|
-
p_select: import("../../../../../es/shared/types").
|
|
3827
|
+
p_select: import("../../../../../es/shared/types").LowCodeTypes.VALUE_RELATION;
|
|
3828
3828
|
}[] | undefined;
|
|
3829
3829
|
results?: {
|
|
3830
3830
|
p_value: string;
|
|
@@ -5570,10 +5570,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5570
5570
|
default: boolean;
|
|
5571
5571
|
};
|
|
5572
5572
|
lowCodeReactions: {
|
|
5573
|
-
type: PropType<import("../../../../../es/shared/types").
|
|
5573
|
+
type: PropType<import("../../../../../es/shared/types").LowCodeTypes.reactionsConfig[]>;
|
|
5574
5574
|
};
|
|
5575
5575
|
operationalForm: {
|
|
5576
|
-
type: PropType<import("../../../../../es/shared/types").
|
|
5576
|
+
type: PropType<import("../../../../../es/shared/types").LowCodeTypes.operationalConfig[]>;
|
|
5577
|
+
};
|
|
5578
|
+
dateOperationalForm: {
|
|
5579
|
+
type: ObjectConstructor;
|
|
5577
5580
|
};
|
|
5578
5581
|
linebarAutoHidden: {
|
|
5579
5582
|
type: BooleanConstructor;
|
|
@@ -5719,10 +5722,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5719
5722
|
default: boolean;
|
|
5720
5723
|
};
|
|
5721
5724
|
lowCodeReactions: {
|
|
5722
|
-
type: PropType<import("../../../../../es/shared/types").
|
|
5725
|
+
type: PropType<import("../../../../../es/shared/types").LowCodeTypes.reactionsConfig[]>;
|
|
5723
5726
|
};
|
|
5724
5727
|
operationalForm: {
|
|
5725
|
-
type: PropType<import("../../../../../es/shared/types").
|
|
5728
|
+
type: PropType<import("../../../../../es/shared/types").LowCodeTypes.operationalConfig[]>;
|
|
5729
|
+
};
|
|
5730
|
+
dateOperationalForm: {
|
|
5731
|
+
type: ObjectConstructor;
|
|
5726
5732
|
};
|
|
5727
5733
|
linebarAutoHidden: {
|
|
5728
5734
|
type: BooleanConstructor;
|
|
@@ -5893,11 +5899,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5893
5899
|
businessFormatter: import("../../../../../es/components/form-render").FormBusinessFormatter;
|
|
5894
5900
|
requestInstance: import("../../../../../es/components/index").FormRequestDefine.RequestInstance;
|
|
5895
5901
|
enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
|
|
5896
|
-
lowCodeReactions: import("../../../../../es/shared/types").
|
|
5902
|
+
lowCodeReactions: import("../../../../../es/shared/types").LowCodeTypes.reactionsConfig[];
|
|
5897
5903
|
linebarAutoHidden: boolean;
|
|
5898
5904
|
bordered: string | boolean;
|
|
5899
5905
|
uniqueCacheData: boolean;
|
|
5900
|
-
operationalForm: import("../../../../../es/shared/types").
|
|
5906
|
+
operationalForm: import("../../../../../es/shared/types").LowCodeTypes.operationalConfig[];
|
|
5901
5907
|
outBordered: boolean;
|
|
5902
5908
|
forceClearable: boolean;
|
|
5903
5909
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
@@ -6311,10 +6317,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6311
6317
|
default: boolean;
|
|
6312
6318
|
};
|
|
6313
6319
|
lowCodeReactions: {
|
|
6314
|
-
type: PropType<import("../../../../../es/shared/types").
|
|
6320
|
+
type: PropType<import("../../../../../es/shared/types").LowCodeTypes.reactionsConfig[]>;
|
|
6315
6321
|
};
|
|
6316
6322
|
operationalForm: {
|
|
6317
|
-
type: PropType<import("../../../../../es/shared/types").
|
|
6323
|
+
type: PropType<import("../../../../../es/shared/types").LowCodeTypes.operationalConfig[]>;
|
|
6324
|
+
};
|
|
6325
|
+
dateOperationalForm: {
|
|
6326
|
+
type: ObjectConstructor;
|
|
6318
6327
|
};
|
|
6319
6328
|
linebarAutoHidden: {
|
|
6320
6329
|
type: BooleanConstructor;
|
|
@@ -6445,11 +6454,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6445
6454
|
businessFormatter: import("../../../../../es/components/form-render").FormBusinessFormatter;
|
|
6446
6455
|
requestInstance: import("../../../../../es/components/index").FormRequestDefine.RequestInstance;
|
|
6447
6456
|
enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
|
|
6448
|
-
lowCodeReactions: import("../../../../../es/shared/types").
|
|
6457
|
+
lowCodeReactions: import("../../../../../es/shared/types").LowCodeTypes.reactionsConfig[];
|
|
6449
6458
|
linebarAutoHidden: boolean;
|
|
6450
6459
|
bordered: string | boolean;
|
|
6451
6460
|
uniqueCacheData: boolean;
|
|
6452
|
-
operationalForm: import("../../../../../es/shared/types").
|
|
6461
|
+
operationalForm: import("../../../../../es/shared/types").LowCodeTypes.operationalConfig[];
|
|
6453
6462
|
outBordered: boolean;
|
|
6454
6463
|
forceClearable: boolean;
|
|
6455
6464
|
}>>>;
|