cnhis-design-vue 3.1.52-beta.32 → 3.1.52-beta.34
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/classification/index.d.ts +10 -10
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +10 -10
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +10 -10
- package/es/components/classification/src/index.vue.d.ts +10 -10
- package/es/components/date-picker/index.d.ts +5 -5
- package/es/components/date-picker/src/DatePicker.vue.d.ts +7 -5
- package/es/components/date-picker/src/DatePicker.vue2.js +1 -1
- package/es/components/form-config/index.d.ts +108 -0
- package/es/components/form-config/src/FormConfig.vue.d.ts +108 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +36 -0
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +12 -0
- package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +5 -5
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +5 -5
- package/es/components/shortcut-setter/index.d.ts +12 -0
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +12 -0
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +10 -10
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +6 -5
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +10 -10
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +10 -10
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +20 -20
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +20 -20
- package/es/shared/package.json.js +1 -1
- package/es/shared/types/business.d.ts +2 -0
- package/es/shared/utils/business.d.ts +1 -1
- package/es/shared/utils/business.js +1 -1
- package/package.json +2 -2
|
@@ -379,6 +379,18 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
379
379
|
p_value: string;
|
|
380
380
|
p_name: string;
|
|
381
381
|
}[] | undefined;
|
|
382
|
+
compareMap?: {
|
|
383
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
384
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
385
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
386
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
387
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
388
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
389
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
390
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
391
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
392
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
393
|
+
} | undefined;
|
|
382
394
|
}[] | undefined;
|
|
383
395
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
384
396
|
is_allow_check_mid?: import("..").FormCommonState | undefined;
|
|
@@ -2114,6 +2126,18 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2114
2126
|
p_value: string;
|
|
2115
2127
|
p_name: string;
|
|
2116
2128
|
}[] | undefined;
|
|
2129
|
+
compareMap?: {
|
|
2130
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2131
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2132
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2133
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2134
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2135
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2136
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2137
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2138
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2139
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2140
|
+
} | undefined;
|
|
2117
2141
|
}[] | undefined;
|
|
2118
2142
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
2119
2143
|
is_allow_check_mid?: import("..").FormCommonState | undefined;
|
|
@@ -3708,6 +3732,18 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3708
3732
|
field_key: string;
|
|
3709
3733
|
value: unknown;
|
|
3710
3734
|
}[];
|
|
3735
|
+
compareMap?: {
|
|
3736
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3737
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3738
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3739
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3740
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3741
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3742
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3743
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3744
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3745
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3746
|
+
} | undefined;
|
|
3711
3747
|
sqlExpression?: string | undefined;
|
|
3712
3748
|
showField?: string[] | undefined;
|
|
3713
3749
|
hideField?: string[] | undefined;
|
|
@@ -3874,6 +3910,18 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3874
3910
|
p_value: string;
|
|
3875
3911
|
p_name: string;
|
|
3876
3912
|
}[] | undefined;
|
|
3913
|
+
compareMap?: {
|
|
3914
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3915
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3916
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3917
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3918
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3919
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3920
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3921
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3922
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3923
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3924
|
+
} | undefined;
|
|
3877
3925
|
}[] | undefined;
|
|
3878
3926
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
3879
3927
|
is_allow_check_mid?: import("..").FormCommonState | undefined;
|
|
@@ -5609,6 +5657,18 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5609
5657
|
p_value: string;
|
|
5610
5658
|
p_name: string;
|
|
5611
5659
|
}[] | undefined;
|
|
5660
|
+
compareMap?: {
|
|
5661
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5662
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5663
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5664
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5665
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5666
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5667
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5668
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5669
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5670
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5671
|
+
} | undefined;
|
|
5612
5672
|
}[] | undefined;
|
|
5613
5673
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
5614
5674
|
is_allow_check_mid?: import("..").FormCommonState | undefined;
|
|
@@ -8616,6 +8676,18 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8616
8676
|
p_value: string;
|
|
8617
8677
|
p_name: string;
|
|
8618
8678
|
}[] | undefined;
|
|
8679
|
+
compareMap?: {
|
|
8680
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8681
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8682
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8683
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8684
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8685
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8686
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8687
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8688
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8689
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8690
|
+
} | undefined;
|
|
8619
8691
|
}[] | undefined;
|
|
8620
8692
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
8621
8693
|
is_allow_check_mid?: import("..").FormCommonState | undefined;
|
|
@@ -10362,6 +10434,18 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10362
10434
|
p_value: string;
|
|
10363
10435
|
p_name: string;
|
|
10364
10436
|
}[] | undefined;
|
|
10437
|
+
compareMap?: {
|
|
10438
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10439
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10440
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10441
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10442
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10443
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10444
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10445
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10446
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10447
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10448
|
+
} | undefined;
|
|
10365
10449
|
}[] | undefined;
|
|
10366
10450
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
10367
10451
|
is_allow_check_mid?: import("..").FormCommonState | undefined;
|
|
@@ -12081,6 +12165,18 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12081
12165
|
p_value: string;
|
|
12082
12166
|
p_name: string;
|
|
12083
12167
|
}[] | undefined;
|
|
12168
|
+
compareMap?: {
|
|
12169
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12170
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12171
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12172
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12173
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12174
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12175
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12176
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12177
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12178
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12179
|
+
} | undefined;
|
|
12084
12180
|
}[] | undefined;
|
|
12085
12181
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
12086
12182
|
is_allow_check_mid?: import("..").FormCommonState | undefined;
|
|
@@ -14682,6 +14778,18 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14682
14778
|
field_key: string;
|
|
14683
14779
|
value: unknown;
|
|
14684
14780
|
}[];
|
|
14781
|
+
compareMap?: {
|
|
14782
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14783
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14784
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14785
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14786
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14787
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14788
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14789
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14790
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14791
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14792
|
+
} | undefined;
|
|
14685
14793
|
sqlExpression?: string | undefined;
|
|
14686
14794
|
showField?: string[] | undefined;
|
|
14687
14795
|
hideField?: string[] | undefined;
|
|
@@ -381,6 +381,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
381
381
|
p_value: string;
|
|
382
382
|
p_name: string;
|
|
383
383
|
}[] | undefined;
|
|
384
|
+
compareMap?: {
|
|
385
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
386
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
387
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
388
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
389
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
390
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
391
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
392
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
393
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
394
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
395
|
+
} | undefined;
|
|
384
396
|
}[] | undefined;
|
|
385
397
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
386
398
|
is_allow_check_mid?: import("../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -2116,6 +2128,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2116
2128
|
p_value: string;
|
|
2117
2129
|
p_name: string;
|
|
2118
2130
|
}[] | undefined;
|
|
2131
|
+
compareMap?: {
|
|
2132
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2133
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2134
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2135
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2136
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2137
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2138
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2139
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2140
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2141
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2142
|
+
} | undefined;
|
|
2119
2143
|
}[] | undefined;
|
|
2120
2144
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
2121
2145
|
is_allow_check_mid?: import("../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -3710,6 +3734,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3710
3734
|
field_key: string;
|
|
3711
3735
|
value: unknown;
|
|
3712
3736
|
}[];
|
|
3737
|
+
compareMap?: {
|
|
3738
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3739
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3740
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3741
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3742
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3743
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3744
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3745
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3746
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3747
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3748
|
+
} | undefined;
|
|
3713
3749
|
sqlExpression?: string | undefined;
|
|
3714
3750
|
showField?: string[] | undefined;
|
|
3715
3751
|
hideField?: string[] | undefined;
|
|
@@ -3876,6 +3912,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3876
3912
|
p_value: string;
|
|
3877
3913
|
p_name: string;
|
|
3878
3914
|
}[] | undefined;
|
|
3915
|
+
compareMap?: {
|
|
3916
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3917
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3918
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3919
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3920
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3921
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3922
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3923
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3924
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3925
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3926
|
+
} | undefined;
|
|
3879
3927
|
}[] | undefined;
|
|
3880
3928
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
3881
3929
|
is_allow_check_mid?: import("../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -5611,6 +5659,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5611
5659
|
p_value: string;
|
|
5612
5660
|
p_name: string;
|
|
5613
5661
|
}[] | undefined;
|
|
5662
|
+
compareMap?: {
|
|
5663
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5664
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5665
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5666
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5667
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5668
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5669
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5670
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5671
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5672
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
5673
|
+
} | undefined;
|
|
5614
5674
|
}[] | undefined;
|
|
5615
5675
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
5616
5676
|
is_allow_check_mid?: import("../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -8618,6 +8678,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8618
8678
|
p_value: string;
|
|
8619
8679
|
p_name: string;
|
|
8620
8680
|
}[] | undefined;
|
|
8681
|
+
compareMap?: {
|
|
8682
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8683
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8684
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8685
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8686
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8687
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8688
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8689
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8690
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8691
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
8692
|
+
} | undefined;
|
|
8621
8693
|
}[] | undefined;
|
|
8622
8694
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
8623
8695
|
is_allow_check_mid?: import("../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -10364,6 +10436,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10364
10436
|
p_value: string;
|
|
10365
10437
|
p_name: string;
|
|
10366
10438
|
}[] | undefined;
|
|
10439
|
+
compareMap?: {
|
|
10440
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10441
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10442
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10443
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10444
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10445
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10446
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10447
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10448
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10449
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
10450
|
+
} | undefined;
|
|
10367
10451
|
}[] | undefined;
|
|
10368
10452
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
10369
10453
|
is_allow_check_mid?: import("../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -12083,6 +12167,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12083
12167
|
p_value: string;
|
|
12084
12168
|
p_name: string;
|
|
12085
12169
|
}[] | undefined;
|
|
12170
|
+
compareMap?: {
|
|
12171
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12172
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12173
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12174
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12175
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12176
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12177
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12178
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12179
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12180
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
12181
|
+
} | undefined;
|
|
12086
12182
|
}[] | undefined;
|
|
12087
12183
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
12088
12184
|
is_allow_check_mid?: import("../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -14684,6 +14780,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14684
14780
|
field_key: string;
|
|
14685
14781
|
value: unknown;
|
|
14686
14782
|
}[];
|
|
14783
|
+
compareMap?: {
|
|
14784
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14785
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14786
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14787
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14788
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14789
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14790
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14791
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14792
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14793
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
14794
|
+
} | undefined;
|
|
14687
14795
|
sqlExpression?: string | undefined;
|
|
14688
14796
|
showField?: string[] | undefined;
|
|
14689
14797
|
hideField?: string[] | undefined;
|
|
@@ -331,6 +331,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
331
331
|
p_value: string;
|
|
332
332
|
p_name: string;
|
|
333
333
|
}[] | undefined;
|
|
334
|
+
compareMap?: {
|
|
335
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
336
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
337
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
338
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
339
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
340
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
341
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
342
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
343
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
344
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
345
|
+
} | undefined;
|
|
334
346
|
}[] | undefined;
|
|
335
347
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
336
348
|
is_allow_check_mid?: import("../../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -2077,6 +2089,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2077
2089
|
p_value: string;
|
|
2078
2090
|
p_name: string;
|
|
2079
2091
|
}[] | undefined;
|
|
2092
|
+
compareMap?: {
|
|
2093
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2094
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2095
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2096
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2097
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2098
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2099
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2100
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2101
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2102
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
2103
|
+
} | undefined;
|
|
2080
2104
|
}[] | undefined;
|
|
2081
2105
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
2082
2106
|
is_allow_check_mid?: import("../../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -3796,6 +3820,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3796
3820
|
p_value: string;
|
|
3797
3821
|
p_name: string;
|
|
3798
3822
|
}[] | undefined;
|
|
3823
|
+
compareMap?: {
|
|
3824
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3825
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3826
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3827
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3828
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3829
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3830
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3831
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3832
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3833
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
3834
|
+
} | undefined;
|
|
3799
3835
|
}[] | undefined;
|
|
3800
3836
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
3801
3837
|
is_allow_check_mid?: import("../../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -18,6 +18,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
field_key: string;
|
|
19
19
|
value: unknown;
|
|
20
20
|
}[];
|
|
21
|
+
compareMap?: {
|
|
22
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
23
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
24
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
25
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
26
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
27
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
28
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
29
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
30
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
31
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
32
|
+
} | undefined;
|
|
21
33
|
sqlExpression?: string | undefined;
|
|
22
34
|
showField?: string[] | undefined;
|
|
23
35
|
hideField?: string[] | undefined;
|
|
@@ -33,7 +33,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
33
|
type: FunctionConstructor;
|
|
34
34
|
};
|
|
35
35
|
formattedValue: {
|
|
36
|
-
type:
|
|
36
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
37
37
|
};
|
|
38
38
|
placeholder: {
|
|
39
39
|
type: StringConstructor;
|
|
@@ -53,7 +53,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
53
53
|
type: FunctionConstructor;
|
|
54
54
|
};
|
|
55
55
|
formattedValue: {
|
|
56
|
-
type:
|
|
56
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
57
57
|
};
|
|
58
58
|
placeholder: {
|
|
59
59
|
type: StringConstructor;
|
|
@@ -68,7 +68,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
68
|
datePickerRef: import("vue").Ref<import("../../../../../../es/shared/types").AnyObject | null>;
|
|
69
69
|
panelInstRef: import("vue").Ref<null>;
|
|
70
70
|
placeholderRef: import("vue").Ref<any>;
|
|
71
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
71
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
72
72
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
73
73
|
formatRef: import("vue").ComputedRef<string>;
|
|
74
74
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -77,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
77
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
78
78
|
onUpdateShow: (show: boolean) => void;
|
|
79
79
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
80
|
-
isAllowedInvalidValue: (value
|
|
80
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
81
81
|
NDatePicker: any;
|
|
82
82
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
83
83
|
updateUnchangedValue: {
|
|
@@ -87,7 +87,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
87
|
type: FunctionConstructor;
|
|
88
88
|
};
|
|
89
89
|
formattedValue: {
|
|
90
|
-
type:
|
|
90
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
91
91
|
};
|
|
92
92
|
placeholder: {
|
|
93
93
|
type: StringConstructor;
|
|
@@ -77,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
77
|
type: FunctionConstructor;
|
|
78
78
|
};
|
|
79
79
|
formattedValue: {
|
|
80
|
-
type:
|
|
80
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
81
81
|
};
|
|
82
82
|
placeholder: {
|
|
83
83
|
type: StringConstructor;
|
|
@@ -97,7 +97,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
97
97
|
type: FunctionConstructor;
|
|
98
98
|
};
|
|
99
99
|
formattedValue: {
|
|
100
|
-
type:
|
|
100
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
101
101
|
};
|
|
102
102
|
placeholder: {
|
|
103
103
|
type: StringConstructor;
|
|
@@ -112,7 +112,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
112
112
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
113
113
|
panelInstRef: import("vue").Ref<null>;
|
|
114
114
|
placeholderRef: import("vue").Ref<any>;
|
|
115
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
115
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
116
116
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
117
117
|
formatRef: import("vue").ComputedRef<string>;
|
|
118
118
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -121,7 +121,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
121
121
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
122
122
|
onUpdateShow: (show: boolean) => void;
|
|
123
123
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
124
|
-
isAllowedInvalidValue: (value
|
|
124
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
125
125
|
NDatePicker: any;
|
|
126
126
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
127
127
|
updateUnchangedValue: {
|
|
@@ -131,7 +131,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
131
131
|
type: FunctionConstructor;
|
|
132
132
|
};
|
|
133
133
|
formattedValue: {
|
|
134
|
-
type:
|
|
134
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
135
135
|
};
|
|
136
136
|
placeholder: {
|
|
137
137
|
type: StringConstructor;
|
|
@@ -167,6 +167,18 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
167
167
|
p_value: string;
|
|
168
168
|
p_name: string;
|
|
169
169
|
}[] | undefined;
|
|
170
|
+
compareMap?: {
|
|
171
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
172
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
173
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
174
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
175
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
176
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
177
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
178
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
179
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
180
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
181
|
+
} | undefined;
|
|
170
182
|
}[] | undefined;
|
|
171
183
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
172
184
|
is_allow_check_mid?: import("..").FormCommonState | undefined;
|
|
@@ -169,6 +169,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
169
169
|
p_value: string;
|
|
170
170
|
p_name: string;
|
|
171
171
|
}[] | undefined;
|
|
172
|
+
compareMap?: {
|
|
173
|
+
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
174
|
+
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
175
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
176
|
+
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
177
|
+
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
|
178
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
|
179
|
+
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
|
180
|
+
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
181
|
+
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
|
182
|
+
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
|
183
|
+
} | undefined;
|
|
172
184
|
}[] | undefined;
|
|
173
185
|
show_mode?: ("DROPDOWN" | "H_TILE" | "V_TILE" | "TILE") | undefined;
|
|
174
186
|
is_allow_check_mid?: import("../../../../es/components/form-render").FormCommonState | undefined;
|
|
@@ -103,7 +103,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
103
103
|
type: FunctionConstructor;
|
|
104
104
|
};
|
|
105
105
|
formattedValue: {
|
|
106
|
-
type:
|
|
106
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
107
107
|
};
|
|
108
108
|
placeholder: {
|
|
109
109
|
type: StringConstructor;
|
|
@@ -123,7 +123,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
123
123
|
type: FunctionConstructor;
|
|
124
124
|
};
|
|
125
125
|
formattedValue: {
|
|
126
|
-
type:
|
|
126
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
127
127
|
};
|
|
128
128
|
placeholder: {
|
|
129
129
|
type: StringConstructor;
|
|
@@ -138,7 +138,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
138
138
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
139
139
|
panelInstRef: import("vue").Ref<null>;
|
|
140
140
|
placeholderRef: import("vue").Ref<any>;
|
|
141
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
141
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
142
142
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
143
143
|
formatRef: import("vue").ComputedRef<string>;
|
|
144
144
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -147,7 +147,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
147
147
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
148
148
|
onUpdateShow: (show: boolean) => void;
|
|
149
149
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
150
|
-
isAllowedInvalidValue: (value
|
|
150
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
151
151
|
NDatePicker: any;
|
|
152
152
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
153
153
|
updateUnchangedValue: {
|
|
@@ -157,7 +157,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
157
157
|
type: FunctionConstructor;
|
|
158
158
|
};
|
|
159
159
|
formattedValue: {
|
|
160
|
-
type:
|
|
160
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
161
161
|
};
|
|
162
162
|
placeholder: {
|
|
163
163
|
type: StringConstructor;
|
|
@@ -730,7 +730,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
730
730
|
type: FunctionConstructor;
|
|
731
731
|
};
|
|
732
732
|
formattedValue: {
|
|
733
|
-
type:
|
|
733
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
734
734
|
};
|
|
735
735
|
placeholder: {
|
|
736
736
|
type: StringConstructor;
|
|
@@ -750,7 +750,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
750
750
|
type: FunctionConstructor;
|
|
751
751
|
};
|
|
752
752
|
formattedValue: {
|
|
753
|
-
type:
|
|
753
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
754
754
|
};
|
|
755
755
|
placeholder: {
|
|
756
756
|
type: StringConstructor;
|
|
@@ -765,7 +765,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
765
765
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
766
766
|
panelInstRef: import("vue").Ref<null>;
|
|
767
767
|
placeholderRef: import("vue").Ref<any>;
|
|
768
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
768
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
769
769
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
770
770
|
formatRef: import("vue").ComputedRef<string>;
|
|
771
771
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -774,7 +774,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
774
774
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
775
775
|
onUpdateShow: (show: boolean) => void;
|
|
776
776
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
777
|
-
isAllowedInvalidValue: (value
|
|
777
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
778
778
|
NDatePicker: any;
|
|
779
779
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
780
780
|
updateUnchangedValue: {
|
|
@@ -784,7 +784,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
784
784
|
type: FunctionConstructor;
|
|
785
785
|
};
|
|
786
786
|
formattedValue: {
|
|
787
|
-
type:
|
|
787
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
788
788
|
};
|
|
789
789
|
placeholder: {
|
|
790
790
|
type: StringConstructor;
|