cnhis-design-vue 3.1.52-beta.10 → 3.1.52-beta.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/classification/index.d.ts +20 -2
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +20 -2
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +20 -2
- package/es/components/classification/src/index.vue.d.ts +20 -2
- package/es/components/date-picker/index.d.ts +10 -1
- package/es/components/date-picker/src/DatePicker.vue.d.ts +10 -1
- package/es/components/date-picker/src/DatePicker.vue2.js +1 -1
- package/es/components/form-config/src/hooks/useConfigurationField.js +1 -1
- package/es/components/form-render/src/components/renderer/date.js +1 -1
- package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +10 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +10 -1
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +20 -2
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +10 -1
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +10 -1
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +20 -2
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +20 -2
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +10 -1
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +10 -1
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +10 -1
- package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +10 -1
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +40 -4
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +40 -4
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
|
@@ -806,6 +806,9 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
806
806
|
formattedValue: {
|
|
807
807
|
type: StringConstructor;
|
|
808
808
|
};
|
|
809
|
+
placeholder: {
|
|
810
|
+
type: StringConstructor;
|
|
811
|
+
};
|
|
809
812
|
}, {
|
|
810
813
|
attrs: {
|
|
811
814
|
[x: string]: unknown;
|
|
@@ -820,13 +823,16 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
820
823
|
formattedValue: {
|
|
821
824
|
type: StringConstructor;
|
|
822
825
|
};
|
|
826
|
+
placeholder: {
|
|
827
|
+
type: StringConstructor;
|
|
828
|
+
};
|
|
823
829
|
}>> & {
|
|
824
830
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
825
831
|
}>>;
|
|
826
832
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
827
833
|
datePickerRef: import("vue").Ref<import("../../../es/shared/types").AnyObject | null>;
|
|
828
834
|
panelInstRef: import("vue").Ref<null>;
|
|
829
|
-
|
|
835
|
+
placeholderRef: import("vue").Ref<any>;
|
|
830
836
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
831
837
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
832
838
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -848,6 +854,9 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
848
854
|
formattedValue: {
|
|
849
855
|
type: StringConstructor;
|
|
850
856
|
};
|
|
857
|
+
placeholder: {
|
|
858
|
+
type: StringConstructor;
|
|
859
|
+
};
|
|
851
860
|
}>> & {
|
|
852
861
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
853
862
|
}, {
|
|
@@ -1416,6 +1425,9 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1416
1425
|
formattedValue: {
|
|
1417
1426
|
type: StringConstructor;
|
|
1418
1427
|
};
|
|
1428
|
+
placeholder: {
|
|
1429
|
+
type: StringConstructor;
|
|
1430
|
+
};
|
|
1419
1431
|
}, {
|
|
1420
1432
|
attrs: {
|
|
1421
1433
|
[x: string]: unknown;
|
|
@@ -1430,13 +1442,16 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1430
1442
|
formattedValue: {
|
|
1431
1443
|
type: StringConstructor;
|
|
1432
1444
|
};
|
|
1445
|
+
placeholder: {
|
|
1446
|
+
type: StringConstructor;
|
|
1447
|
+
};
|
|
1433
1448
|
}>> & {
|
|
1434
1449
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1435
1450
|
}>>;
|
|
1436
1451
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
1437
1452
|
datePickerRef: import("vue").Ref<import("../../../es/shared/types").AnyObject | null>;
|
|
1438
1453
|
panelInstRef: import("vue").Ref<null>;
|
|
1439
|
-
|
|
1454
|
+
placeholderRef: import("vue").Ref<any>;
|
|
1440
1455
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
1441
1456
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
1442
1457
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -1458,6 +1473,9 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1458
1473
|
formattedValue: {
|
|
1459
1474
|
type: StringConstructor;
|
|
1460
1475
|
};
|
|
1476
|
+
placeholder: {
|
|
1477
|
+
type: StringConstructor;
|
|
1478
|
+
};
|
|
1461
1479
|
}>> & {
|
|
1462
1480
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1463
1481
|
}, {
|
|
@@ -283,6 +283,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
283
283
|
formattedValue: {
|
|
284
284
|
type: StringConstructor;
|
|
285
285
|
};
|
|
286
|
+
placeholder: {
|
|
287
|
+
type: StringConstructor;
|
|
288
|
+
};
|
|
286
289
|
}, {
|
|
287
290
|
attrs: {
|
|
288
291
|
[x: string]: unknown;
|
|
@@ -297,13 +300,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
297
300
|
formattedValue: {
|
|
298
301
|
type: StringConstructor;
|
|
299
302
|
};
|
|
303
|
+
placeholder: {
|
|
304
|
+
type: StringConstructor;
|
|
305
|
+
};
|
|
300
306
|
}>> & {
|
|
301
307
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
302
308
|
}>>;
|
|
303
309
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
304
310
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
305
311
|
panelInstRef: import("vue").Ref<null>;
|
|
306
|
-
|
|
312
|
+
placeholderRef: import("vue").Ref<any>;
|
|
307
313
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
308
314
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
309
315
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -325,6 +331,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
325
331
|
formattedValue: {
|
|
326
332
|
type: StringConstructor;
|
|
327
333
|
};
|
|
334
|
+
placeholder: {
|
|
335
|
+
type: StringConstructor;
|
|
336
|
+
};
|
|
328
337
|
}>> & {
|
|
329
338
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
330
339
|
}, {
|
|
@@ -893,6 +902,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
893
902
|
formattedValue: {
|
|
894
903
|
type: StringConstructor;
|
|
895
904
|
};
|
|
905
|
+
placeholder: {
|
|
906
|
+
type: StringConstructor;
|
|
907
|
+
};
|
|
896
908
|
}, {
|
|
897
909
|
attrs: {
|
|
898
910
|
[x: string]: unknown;
|
|
@@ -907,13 +919,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
907
919
|
formattedValue: {
|
|
908
920
|
type: StringConstructor;
|
|
909
921
|
};
|
|
922
|
+
placeholder: {
|
|
923
|
+
type: StringConstructor;
|
|
924
|
+
};
|
|
910
925
|
}>> & {
|
|
911
926
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
912
927
|
}>>;
|
|
913
928
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
914
929
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
915
930
|
panelInstRef: import("vue").Ref<null>;
|
|
916
|
-
|
|
931
|
+
placeholderRef: import("vue").Ref<any>;
|
|
917
932
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
918
933
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
919
934
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -935,6 +950,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
935
950
|
formattedValue: {
|
|
936
951
|
type: StringConstructor;
|
|
937
952
|
};
|
|
953
|
+
placeholder: {
|
|
954
|
+
type: StringConstructor;
|
|
955
|
+
};
|
|
938
956
|
}>> & {
|
|
939
957
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
940
958
|
}, {
|
|
@@ -593,6 +593,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
593
593
|
formattedValue: {
|
|
594
594
|
type: StringConstructor;
|
|
595
595
|
};
|
|
596
|
+
placeholder: {
|
|
597
|
+
type: StringConstructor;
|
|
598
|
+
};
|
|
596
599
|
}, {
|
|
597
600
|
attrs: {
|
|
598
601
|
[x: string]: unknown;
|
|
@@ -607,13 +610,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
607
610
|
formattedValue: {
|
|
608
611
|
type: StringConstructor;
|
|
609
612
|
};
|
|
613
|
+
placeholder: {
|
|
614
|
+
type: StringConstructor;
|
|
615
|
+
};
|
|
610
616
|
}>> & {
|
|
611
617
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
612
618
|
}>>;
|
|
613
619
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
614
620
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
615
621
|
panelInstRef: import("vue").Ref<null>;
|
|
616
|
-
|
|
622
|
+
placeholderRef: import("vue").Ref<any>;
|
|
617
623
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
618
624
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
619
625
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -635,6 +641,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
635
641
|
formattedValue: {
|
|
636
642
|
type: StringConstructor;
|
|
637
643
|
};
|
|
644
|
+
placeholder: {
|
|
645
|
+
type: StringConstructor;
|
|
646
|
+
};
|
|
638
647
|
}>> & {
|
|
639
648
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
640
649
|
}, {
|
|
@@ -1203,6 +1212,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1203
1212
|
formattedValue: {
|
|
1204
1213
|
type: StringConstructor;
|
|
1205
1214
|
};
|
|
1215
|
+
placeholder: {
|
|
1216
|
+
type: StringConstructor;
|
|
1217
|
+
};
|
|
1206
1218
|
}, {
|
|
1207
1219
|
attrs: {
|
|
1208
1220
|
[x: string]: unknown;
|
|
@@ -1217,13 +1229,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1217
1229
|
formattedValue: {
|
|
1218
1230
|
type: StringConstructor;
|
|
1219
1231
|
};
|
|
1232
|
+
placeholder: {
|
|
1233
|
+
type: StringConstructor;
|
|
1234
|
+
};
|
|
1220
1235
|
}>> & {
|
|
1221
1236
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1222
1237
|
}>>;
|
|
1223
1238
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
1224
1239
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
1225
1240
|
panelInstRef: import("vue").Ref<null>;
|
|
1226
|
-
|
|
1241
|
+
placeholderRef: import("vue").Ref<any>;
|
|
1227
1242
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
1228
1243
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
1229
1244
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -1245,6 +1260,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1245
1260
|
formattedValue: {
|
|
1246
1261
|
type: StringConstructor;
|
|
1247
1262
|
};
|
|
1263
|
+
placeholder: {
|
|
1264
|
+
type: StringConstructor;
|
|
1265
|
+
};
|
|
1248
1266
|
}>> & {
|
|
1249
1267
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1250
1268
|
}, {
|
|
@@ -807,6 +807,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
807
807
|
formattedValue: {
|
|
808
808
|
type: StringConstructor;
|
|
809
809
|
};
|
|
810
|
+
placeholder: {
|
|
811
|
+
type: StringConstructor;
|
|
812
|
+
};
|
|
810
813
|
}, {
|
|
811
814
|
attrs: {
|
|
812
815
|
[x: string]: unknown;
|
|
@@ -821,13 +824,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
821
824
|
formattedValue: {
|
|
822
825
|
type: StringConstructor;
|
|
823
826
|
};
|
|
827
|
+
placeholder: {
|
|
828
|
+
type: StringConstructor;
|
|
829
|
+
};
|
|
824
830
|
}>> & {
|
|
825
831
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
826
832
|
}>>;
|
|
827
833
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
828
834
|
datePickerRef: import("vue").Ref<import("../..").AnyObject | null>;
|
|
829
835
|
panelInstRef: import("vue").Ref<null>;
|
|
830
|
-
|
|
836
|
+
placeholderRef: import("vue").Ref<any>;
|
|
831
837
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
832
838
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
833
839
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -849,6 +855,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
849
855
|
formattedValue: {
|
|
850
856
|
type: StringConstructor;
|
|
851
857
|
};
|
|
858
|
+
placeholder: {
|
|
859
|
+
type: StringConstructor;
|
|
860
|
+
};
|
|
852
861
|
}>> & {
|
|
853
862
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
854
863
|
}, {
|
|
@@ -1417,6 +1426,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1417
1426
|
formattedValue: {
|
|
1418
1427
|
type: StringConstructor;
|
|
1419
1428
|
};
|
|
1429
|
+
placeholder: {
|
|
1430
|
+
type: StringConstructor;
|
|
1431
|
+
};
|
|
1420
1432
|
}, {
|
|
1421
1433
|
attrs: {
|
|
1422
1434
|
[x: string]: unknown;
|
|
@@ -1431,13 +1443,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1431
1443
|
formattedValue: {
|
|
1432
1444
|
type: StringConstructor;
|
|
1433
1445
|
};
|
|
1446
|
+
placeholder: {
|
|
1447
|
+
type: StringConstructor;
|
|
1448
|
+
};
|
|
1434
1449
|
}>> & {
|
|
1435
1450
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1436
1451
|
}>>;
|
|
1437
1452
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
1438
1453
|
datePickerRef: import("vue").Ref<import("../..").AnyObject | null>;
|
|
1439
1454
|
panelInstRef: import("vue").Ref<null>;
|
|
1440
|
-
|
|
1455
|
+
placeholderRef: import("vue").Ref<any>;
|
|
1441
1456
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
1442
1457
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
1443
1458
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -1459,6 +1474,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1459
1474
|
formattedValue: {
|
|
1460
1475
|
type: StringConstructor;
|
|
1461
1476
|
};
|
|
1477
|
+
placeholder: {
|
|
1478
|
+
type: StringConstructor;
|
|
1479
|
+
};
|
|
1462
1480
|
}>> & {
|
|
1463
1481
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1464
1482
|
}, {
|
|
@@ -9,6 +9,9 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9
9
|
formattedValue: {
|
|
10
10
|
type: StringConstructor;
|
|
11
11
|
};
|
|
12
|
+
placeholder: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
12
15
|
}, {
|
|
13
16
|
attrs: {
|
|
14
17
|
[x: string]: unknown;
|
|
@@ -23,13 +26,16 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23
26
|
formattedValue: {
|
|
24
27
|
type: StringConstructor;
|
|
25
28
|
};
|
|
29
|
+
placeholder: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
};
|
|
26
32
|
}>> & {
|
|
27
33
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
28
34
|
}>>;
|
|
29
35
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
30
36
|
datePickerRef: import("vue").Ref<import("../../../es/shared/types").AnyObject | null>;
|
|
31
37
|
panelInstRef: import("vue").Ref<null>;
|
|
32
|
-
|
|
38
|
+
placeholderRef: import("vue").Ref<any>;
|
|
33
39
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
34
40
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
35
41
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -51,6 +57,9 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
51
57
|
formattedValue: {
|
|
52
58
|
type: StringConstructor;
|
|
53
59
|
};
|
|
60
|
+
placeholder: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
};
|
|
54
63
|
}>> & {
|
|
55
64
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
56
65
|
}, {
|
|
@@ -9,6 +9,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
formattedValue: {
|
|
10
10
|
type: StringConstructor;
|
|
11
11
|
};
|
|
12
|
+
placeholder: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
12
15
|
}, {
|
|
13
16
|
attrs: {
|
|
14
17
|
[x: string]: unknown;
|
|
@@ -23,13 +26,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
26
|
formattedValue: {
|
|
24
27
|
type: StringConstructor;
|
|
25
28
|
};
|
|
29
|
+
placeholder: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
};
|
|
26
32
|
}>> & {
|
|
27
33
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
28
34
|
}>>;
|
|
29
35
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
30
36
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
31
37
|
panelInstRef: import("vue").Ref<null>;
|
|
32
|
-
|
|
38
|
+
placeholderRef: import("vue").Ref<any>;
|
|
33
39
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
34
40
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
35
41
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -51,6 +57,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
57
|
formattedValue: {
|
|
52
58
|
type: StringConstructor;
|
|
53
59
|
};
|
|
60
|
+
placeholder: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
};
|
|
54
63
|
}>> & {
|
|
55
64
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
56
65
|
}, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{defineComponent as e,useAttrs as t,ref as a,computed as l,watch as n,openBlock as u,createBlock as r,unref as o,
|
|
1
|
+
import{defineComponent as e,useAttrs as t,ref as a,computed as l,watch as n,openBlock as u,createBlock as r,unref as o,isRef as i,createSlots as d,renderList as s,withCtx as f,renderSlot as m,nextTick as p}from"vue";import{NDatePicker as v}from"naive-ui";import"../../../shared/utils/index.js";import"lodash-es";import{useDateTime as c}from"../../../shared/hooks/useDateTime.js";import{format as y}from"date-fns";var h=e({__name:"DatePicker",props:{updateUnchangedValue:{type:Boolean},onConfirm:{type:Function},formattedValue:{type:String},placeholder:{type:String}},emits:["update:formatted-value"],setup(e,{expose:h,emit:g}){const R=e,M=t(),V=a(null),k=a(null),w=a(),C=l({get:()=>x(R.formattedValue)?void 0:R.formattedValue,set(e){g("update:formatted-value",e,e?Date.parse(e):null)}}),D=l((()=>{const e=Reflect.get(M,"type")||"";return["datetime","datetimerange"].includes(e)})),E=l((()=>{if(Reflect.get(M,"format"))return M.format;const e=M.type||"";return D.value?"yyyy-MM-dd HH:mm:ss":"month"===e?"yyyy-MM":"year"===e?"yyyy":"yyyy-MM-dd"})),I=l((()=>D.value?E.value.split(" "):"")),{focus:P,blur:U,handleConfirm:$}=c(V,{formatRef:E,attrs:M,emit:g});function _(e){e&&D.value&&p((()=>{var e;k.value=null==(e=V.value)?void 0:e.panelInstRef,c(k,{formatRef:I,attrs:M,isPanel:!0})}))}async function b(...e){var t,a,l,n,u,r;const o=Reflect.get(M,"type")||"",i=null==(n=null==(l=null==(a=null==(t=V.value)?void 0:t.inputInstRef)?void 0:a.$el)?void 0:l.querySelector)?void 0:n.call(l,"input");if(o.includes("range")?null==(u=R.onConfirm)||u.call(R,...e):(await p(),i.focus(),$(i),i.blur(),null==(r=R.onConfirm)||r.call(R,Date.parse(i.value),i.value)),!(null==i?void 0:i.value)||!R.updateUnchangedValue||o.includes("range"))return;const d=i.value;i.value=y(new Date,E.value),i.dispatchEvent(new InputEvent("input")),i.value=d,i.dispatchEvent(new InputEvent("input"))}function x(e=""){return["-"].includes(e)}return n((()=>R.formattedValue),(e=>{w.value=x(e)?e:R.placeholder?R.placeholder:"选择日期时间"}),{immediate:!0}),h({$datePicker:V,focus:P,blur:U}),(e,t)=>(u(),r(o(v),{ref_key:"datePickerRef",ref:V,"onUpdate:show":_,onConfirm:b,placeholder:w.value,"formatted-value":o(C),"onUpdate:formatted-value":t[0]||(t[0]=e=>i(C)?C.value=e:null)},d({_:2},[s(e.$slots,((t,a)=>({name:a,fn:f((()=>[m(e.$slots,a)]))})))]),1032,["placeholder","formatted-value"]))}});export{h as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{omit as e,pick as t}from"lodash-es";import{EditAbleField as l,widgetWidthOptionConfig as i,isShowOptionConfig as
|
|
1
|
+
import{omit as e,pick as t}from"lodash-es";import{EditAbleField as l,widgetWidthOptionConfig as i,isShowOptionConfig as a,isNotFoldOptionConfig as _,isEditOptionConfig as o,isNullOptionConfig as s,isVisibleOptionConfig as m,rowsOptionConfig as n}from"../constants/index.js";import"../../../form-render/index.js";import{useFieldNormalize as r}from"../../../form-render/src/hooks/useFieldNormalize.js";const{FieldNormalizeWaterfallHook:d}=r();function E(){const r=new Map([[l.NAME,()=>({alias:"名称",elem_width:6,is_null:"0",html_type:"INPUT"})],[l.NOTES,()=>({alias:"问号提示",elem_width:6,html_type:"INPUT",is_empty:"0"})],[l.DEFAULT_VALUE,(l,i)=>{const a=d.call(Object.assign({},null==l?void 0:l.originalSetting,i),{});return{alias:"默认值",elem_width:6,html_type:"INPUT",is_empty:"0",componentProps:e(a.componentProps,["class","style","disabled"]),...t(a,["html_type","validate","option","multi_select","multi_select_value","wordbook","open","close","date_format","step_length","urlConfig","autograph","defined_error_msg","free_entry","validator","allowSlash","is_allow_check_mid","allow_check_mid_level"])}}],[l.LAYOUT_WIDTH_ENUM,()=>({alias:"宽度",fieldType:"number",html_type:"SELECT",elem_width:6,...i()})],[l.DESC,()=>({alias:"说明文本",elem_width:6,html_type:"INPUT",is_empty:"0",validate:{max_length:30}})],[l.DEFAULT_EXPAND,()=>({alias:"是否默认展开",html_type:"SWITCH",elem_width:6,...a()})],[l.FOLD,()=>({alias:"是否可折叠",html_type:"SWITCH",elem_width:6,..._()})],[l.EDITABLE,e=>({alias:"是否可编辑",html_type:"SWITCH",elem_width:6,is_edit:(null==e?void 0:e.editableDisabled)?"0":"1",...o()})],[l.REQUIRED,e=>({alias:"是否必填",html_type:"SWITCH",elem_width:6,is_edit:(null==e?void 0:e.requiredDisabled)?"0":"1",...s()})],[l.SHOW,e=>({alias:"是否显示",html_type:"SWITCH",elem_width:6,is_show:(null==e?void 0:e.__isCombinationChild)?"1":"0",...m()})],[l.ROWS,()=>({alias:"高度",elem_width:6,remark:"默认为3行高度,可调整为1-10行高度",default_val:3,is_empty:"0",html_type:"SELECT",...n()})]]);function E(e,t,l){return e.map((e=>{var i,a;return{...null!=(a=null==(i=r.get(e))?void 0:i(t,l))?a:{},val_key:e}}))}const p=new Map([["LINE_BAR",[l.NAME,l.LAYOUT_WIDTH_ENUM,l.NOTES,l.DEFAULT_EXPAND,l.FOLD]],...["NEWLINE","COMPLEX","COMBINATION"].map((e=>[e,[l.NAME,l.LAYOUT_WIDTH_ENUM]]))]),h=[l.NAME,l.DEFAULT_VALUE,l.LAYOUT_WIDTH_ENUM,l.DESC,l.NOTES,l.EDITABLE,l.REQUIRED,l.SHOW];return{generateFieldListByKeys:E,generateFieldListByFormConfigItem:function(e,t){var i;const a=p.get(e.type)||h;return"TEXTAREA"===(t?t.html_type:null==(i=e.originalSetting)?void 0:i.html_type)&&a.splice(3,0,l.ROWS),E(a,e,t)}}}export{E as useConfigurationField};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{defineComponent as e,computed as t,watch as o,createVNode as a,mergeProps as r}from"vue";import{generateTimeFormat as i}from"../../../../../shared/utils/index.js";import{connect as n,mapProps as u}from"@formily/vue";import{isObject as s}from"@vueuse/core";import{format as m}from"date-fns";import l from"../../../../date-picker/index.js";import{useCommonInjection as d}from"../../hooks/useCommonInjection.js";import"@formily/core";import"@formily/path";import"@vicons/ionicons5";import"@vue/shared";import"lodash-es";import"naive-ui";import"../../../index.js";import{assignUpdateValue as v,assignClearBindVisited as c}from"../../utils/schema.js";const p=n(e({props:{onChange:{},value:{type:String},validate:{type:Object},valueFormat:{type:String,default:"yyyy-MM-dd"}},emits:["update:value"],setup(e,{emit:n}){const{injectValueValidate:u,injectValueBindKey:v}=d();function c(){var t;return"currTime"===(null==(t=e.validate)?void 0:t.min_date)}function p(){var t;return"currTime"===(null==(t=e.validate)?void 0:t.max_date)}function f(e){return c()&&e<Date.now()-864e5||p()&&e>Date.now()}function y(e){const t=new Date(e),o=new Date,a=new Date(t);a.setHours(0),a.setMinutes(0),a.setSeconds(0);const r=new Date(t);r.setHours(23),r.setMinutes(59),r.setSeconds(59);const i=a>o,n=r<o,u=t.getHours(),s=o.getHours(),m=o.getMinutes();return{isHourDisabled:function(e){return c()&&!i&&e<s||p()&&!n&&e>s},isMinuteDisabled:function(e){if(u===s)return c()&&!i&&e<m||p()&&!n&&e>m;return c()&&!i&&u<s||p()&&!n&&u>s}}}u((()=>e.value));const D=t((()=>{const t={};if(s(e.validate)){const{min_date:o,max_date:a}=e.validate;(o||a)&&(t.isDateDisabled=f,t.isTimeDisabled=y)}return t})),j=t((()=>({valueFormat:e.valueFormat,format:e.valueFormat,timePickerProps:{format:i(e.valueFormat)}})));function g(t){return
|
|
1
|
+
import{defineComponent as e,computed as t,watch as o,createVNode as a,mergeProps as r}from"vue";import{generateTimeFormat as i}from"../../../../../shared/utils/index.js";import{connect as n,mapProps as u}from"@formily/vue";import{isObject as s}from"@vueuse/core";import{format as m}from"date-fns";import l from"../../../../date-picker/index.js";import{useCommonInjection as d}from"../../hooks/useCommonInjection.js";import"@formily/core";import"@formily/path";import"@vicons/ionicons5";import"@vue/shared";import"lodash-es";import"naive-ui";import"../../../index.js";import{assignUpdateValue as v,assignClearBindVisited as c}from"../../utils/schema.js";const p=n(e({props:{onChange:{},value:{type:String},validate:{type:Object},valueFormat:{type:String,default:"yyyy-MM-dd"}},emits:["update:value"],setup(e,{emit:n}){const{injectValueValidate:u,injectValueBindKey:v}=d();function c(){var t;return"currTime"===(null==(t=e.validate)?void 0:t.min_date)}function p(){var t;return"currTime"===(null==(t=e.validate)?void 0:t.max_date)}function f(e){return c()&&e<Date.now()-864e5||p()&&e>Date.now()}function y(e){const t=new Date(e),o=new Date,a=new Date(t);a.setHours(0),a.setMinutes(0),a.setSeconds(0);const r=new Date(t);r.setHours(23),r.setMinutes(59),r.setSeconds(59);const i=a>o,n=r<o,u=t.getHours(),s=o.getHours(),m=o.getMinutes();return{isHourDisabled:function(e){return c()&&!i&&e<s||p()&&!n&&e>s},isMinuteDisabled:function(e){if(u===s)return c()&&!i&&e<m||p()&&!n&&e>m;return c()&&!i&&u<s||p()&&!n&&u>s}}}u((()=>e.value));const D=t((()=>{const t={};if(s(e.validate)){const{min_date:o,max_date:a}=e.validate;(o||a)&&(t.isDateDisabled=f,t.isTimeDisabled=y)}return t})),j=t((()=>({valueFormat:e.valueFormat,format:e.valueFormat,timePickerProps:{format:i(e.valueFormat)}})));function g(t){return"-"!==t&&t?m(new Date(t),e.valueFormat):t}o((()=>e.value),(e=>{e&&g(e)!==e&&n("update:value",g(e))}));const h=t({get:()=>g(e.value),set:e=>{n("update:value",e)}}),w=v(h);return()=>a(l,r({key:w.value},D.value,j.value,{"formatted-value":h.value,"onUpdate:formatted-value":e=>h.value=e}),null)}}),u(v,c));export{p as DATE};
|
|
@@ -35,6 +35,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
35
35
|
formattedValue: {
|
|
36
36
|
type: StringConstructor;
|
|
37
37
|
};
|
|
38
|
+
placeholder: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
};
|
|
38
41
|
}, {
|
|
39
42
|
attrs: {
|
|
40
43
|
[x: string]: unknown;
|
|
@@ -49,13 +52,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
52
|
formattedValue: {
|
|
50
53
|
type: StringConstructor;
|
|
51
54
|
};
|
|
55
|
+
placeholder: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
};
|
|
52
58
|
}>> & {
|
|
53
59
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
54
60
|
}>>;
|
|
55
61
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
56
62
|
datePickerRef: import("vue").Ref<import("../../../../../../es/shared/types").AnyObject | null>;
|
|
57
63
|
panelInstRef: import("vue").Ref<null>;
|
|
58
|
-
|
|
64
|
+
placeholderRef: import("vue").Ref<any>;
|
|
59
65
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
60
66
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
61
67
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -77,6 +83,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
83
|
formattedValue: {
|
|
78
84
|
type: StringConstructor;
|
|
79
85
|
};
|
|
86
|
+
placeholder: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
};
|
|
80
89
|
}>> & {
|
|
81
90
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
82
91
|
}, {
|
|
@@ -79,6 +79,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
79
79
|
formattedValue: {
|
|
80
80
|
type: StringConstructor;
|
|
81
81
|
};
|
|
82
|
+
placeholder: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
};
|
|
82
85
|
}, {
|
|
83
86
|
attrs: {
|
|
84
87
|
[x: string]: unknown;
|
|
@@ -93,13 +96,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
96
|
formattedValue: {
|
|
94
97
|
type: StringConstructor;
|
|
95
98
|
};
|
|
99
|
+
placeholder: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
};
|
|
96
102
|
}>> & {
|
|
97
103
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
98
104
|
}>>;
|
|
99
105
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
100
106
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
101
107
|
panelInstRef: import("vue").Ref<null>;
|
|
102
|
-
|
|
108
|
+
placeholderRef: import("vue").Ref<any>;
|
|
103
109
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
104
110
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
105
111
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -121,6 +127,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
121
127
|
formattedValue: {
|
|
122
128
|
type: StringConstructor;
|
|
123
129
|
};
|
|
130
|
+
placeholder: {
|
|
131
|
+
type: StringConstructor;
|
|
132
|
+
};
|
|
124
133
|
}>> & {
|
|
125
134
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
126
135
|
}, {
|
|
@@ -106,6 +106,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
106
106
|
formattedValue: {
|
|
107
107
|
type: StringConstructor;
|
|
108
108
|
};
|
|
109
|
+
placeholder: {
|
|
110
|
+
type: StringConstructor;
|
|
111
|
+
};
|
|
109
112
|
}, {
|
|
110
113
|
attrs: {
|
|
111
114
|
[x: string]: unknown;
|
|
@@ -120,13 +123,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
120
123
|
formattedValue: {
|
|
121
124
|
type: StringConstructor;
|
|
122
125
|
};
|
|
126
|
+
placeholder: {
|
|
127
|
+
type: StringConstructor;
|
|
128
|
+
};
|
|
123
129
|
}>> & {
|
|
124
130
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
125
131
|
}>>;
|
|
126
132
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
127
133
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
128
134
|
panelInstRef: import("vue").Ref<null>;
|
|
129
|
-
|
|
135
|
+
placeholderRef: import("vue").Ref<any>;
|
|
130
136
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
131
137
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
132
138
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -148,6 +154,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
148
154
|
formattedValue: {
|
|
149
155
|
type: StringConstructor;
|
|
150
156
|
};
|
|
157
|
+
placeholder: {
|
|
158
|
+
type: StringConstructor;
|
|
159
|
+
};
|
|
151
160
|
}>> & {
|
|
152
161
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
153
162
|
}, {
|
|
@@ -716,6 +725,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
716
725
|
formattedValue: {
|
|
717
726
|
type: StringConstructor;
|
|
718
727
|
};
|
|
728
|
+
placeholder: {
|
|
729
|
+
type: StringConstructor;
|
|
730
|
+
};
|
|
719
731
|
}, {
|
|
720
732
|
attrs: {
|
|
721
733
|
[x: string]: unknown;
|
|
@@ -730,13 +742,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
730
742
|
formattedValue: {
|
|
731
743
|
type: StringConstructor;
|
|
732
744
|
};
|
|
745
|
+
placeholder: {
|
|
746
|
+
type: StringConstructor;
|
|
747
|
+
};
|
|
733
748
|
}>> & {
|
|
734
749
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
735
750
|
}>>;
|
|
736
751
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
737
752
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
738
753
|
panelInstRef: import("vue").Ref<null>;
|
|
739
|
-
|
|
754
|
+
placeholderRef: import("vue").Ref<any>;
|
|
740
755
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
741
756
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
742
757
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -758,6 +773,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
758
773
|
formattedValue: {
|
|
759
774
|
type: StringConstructor;
|
|
760
775
|
};
|
|
776
|
+
placeholder: {
|
|
777
|
+
type: StringConstructor;
|
|
778
|
+
};
|
|
761
779
|
}>> & {
|
|
762
780
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
763
781
|
}, {
|
|
@@ -63,6 +63,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
63
63
|
formattedValue: {
|
|
64
64
|
type: StringConstructor;
|
|
65
65
|
};
|
|
66
|
+
placeholder: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
};
|
|
66
69
|
}, {
|
|
67
70
|
attrs: {
|
|
68
71
|
[x: string]: unknown;
|
|
@@ -77,13 +80,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
77
80
|
formattedValue: {
|
|
78
81
|
type: StringConstructor;
|
|
79
82
|
};
|
|
83
|
+
placeholder: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
};
|
|
80
86
|
}>> & {
|
|
81
87
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
82
88
|
}>>;
|
|
83
89
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
84
90
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
85
91
|
panelInstRef: import("vue").Ref<null>;
|
|
86
|
-
|
|
92
|
+
placeholderRef: import("vue").Ref<any>;
|
|
87
93
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
88
94
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
89
95
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -105,6 +111,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
105
111
|
formattedValue: {
|
|
106
112
|
type: StringConstructor;
|
|
107
113
|
};
|
|
114
|
+
placeholder: {
|
|
115
|
+
type: StringConstructor;
|
|
116
|
+
};
|
|
108
117
|
}>> & {
|
|
109
118
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
110
119
|
}, {
|
package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts
CHANGED
|
@@ -76,6 +76,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
76
76
|
formattedValue: {
|
|
77
77
|
type: StringConstructor;
|
|
78
78
|
};
|
|
79
|
+
placeholder: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
};
|
|
79
82
|
}, {
|
|
80
83
|
attrs: {
|
|
81
84
|
[x: string]: unknown;
|
|
@@ -90,13 +93,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
90
93
|
formattedValue: {
|
|
91
94
|
type: StringConstructor;
|
|
92
95
|
};
|
|
96
|
+
placeholder: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
};
|
|
93
99
|
}>> & {
|
|
94
100
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
95
101
|
}>>;
|
|
96
102
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
97
103
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
98
104
|
panelInstRef: import("vue").Ref<null>;
|
|
99
|
-
|
|
105
|
+
placeholderRef: import("vue").Ref<any>;
|
|
100
106
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
101
107
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
102
108
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -118,6 +124,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
118
124
|
formattedValue: {
|
|
119
125
|
type: StringConstructor;
|
|
120
126
|
};
|
|
127
|
+
placeholder: {
|
|
128
|
+
type: StringConstructor;
|
|
129
|
+
};
|
|
121
130
|
}>> & {
|
|
122
131
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
123
132
|
}, {
|
|
@@ -63,6 +63,9 @@ declare const Date: import("vue").DefineComponent<{
|
|
|
63
63
|
formattedValue: {
|
|
64
64
|
type: StringConstructor;
|
|
65
65
|
};
|
|
66
|
+
placeholder: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
};
|
|
66
69
|
}, {
|
|
67
70
|
attrs: {
|
|
68
71
|
[x: string]: unknown;
|
|
@@ -77,13 +80,16 @@ declare const Date: import("vue").DefineComponent<{
|
|
|
77
80
|
formattedValue: {
|
|
78
81
|
type: StringConstructor;
|
|
79
82
|
};
|
|
83
|
+
placeholder: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
};
|
|
80
86
|
}>> & {
|
|
81
87
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
82
88
|
}>>;
|
|
83
89
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
84
90
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
85
91
|
panelInstRef: import("vue").Ref<null>;
|
|
86
|
-
|
|
92
|
+
placeholderRef: import("vue").Ref<any>;
|
|
87
93
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
88
94
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
89
95
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -105,6 +111,9 @@ declare const Date: import("vue").DefineComponent<{
|
|
|
105
111
|
formattedValue: {
|
|
106
112
|
type: StringConstructor;
|
|
107
113
|
};
|
|
114
|
+
placeholder: {
|
|
115
|
+
type: StringConstructor;
|
|
116
|
+
};
|
|
108
117
|
}>> & {
|
|
109
118
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
110
119
|
}, {
|
|
@@ -673,6 +682,9 @@ declare const DateRange: import("vue").DefineComponent<{
|
|
|
673
682
|
formattedValue: {
|
|
674
683
|
type: StringConstructor;
|
|
675
684
|
};
|
|
685
|
+
placeholder: {
|
|
686
|
+
type: StringConstructor;
|
|
687
|
+
};
|
|
676
688
|
}, {
|
|
677
689
|
attrs: {
|
|
678
690
|
[x: string]: unknown;
|
|
@@ -687,13 +699,16 @@ declare const DateRange: import("vue").DefineComponent<{
|
|
|
687
699
|
formattedValue: {
|
|
688
700
|
type: StringConstructor;
|
|
689
701
|
};
|
|
702
|
+
placeholder: {
|
|
703
|
+
type: StringConstructor;
|
|
704
|
+
};
|
|
690
705
|
}>> & {
|
|
691
706
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
692
707
|
}>>;
|
|
693
708
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
694
709
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
695
710
|
panelInstRef: import("vue").Ref<null>;
|
|
696
|
-
|
|
711
|
+
placeholderRef: import("vue").Ref<any>;
|
|
697
712
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
698
713
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
699
714
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -715,6 +730,9 @@ declare const DateRange: import("vue").DefineComponent<{
|
|
|
715
730
|
formattedValue: {
|
|
716
731
|
type: StringConstructor;
|
|
717
732
|
};
|
|
733
|
+
placeholder: {
|
|
734
|
+
type: StringConstructor;
|
|
735
|
+
};
|
|
718
736
|
}>> & {
|
|
719
737
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
720
738
|
}, {
|
|
@@ -226,6 +226,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
226
226
|
formattedValue: {
|
|
227
227
|
type: StringConstructor;
|
|
228
228
|
};
|
|
229
|
+
placeholder: {
|
|
230
|
+
type: StringConstructor;
|
|
231
|
+
};
|
|
229
232
|
}, {
|
|
230
233
|
attrs: {
|
|
231
234
|
[x: string]: unknown;
|
|
@@ -240,13 +243,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
240
243
|
formattedValue: {
|
|
241
244
|
type: StringConstructor;
|
|
242
245
|
};
|
|
246
|
+
placeholder: {
|
|
247
|
+
type: StringConstructor;
|
|
248
|
+
};
|
|
243
249
|
}>> & {
|
|
244
250
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
245
251
|
}>>;
|
|
246
252
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
247
253
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
248
254
|
panelInstRef: import("vue").Ref<null>;
|
|
249
|
-
|
|
255
|
+
placeholderRef: import("vue").Ref<any>;
|
|
250
256
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
251
257
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
252
258
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -268,6 +274,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
268
274
|
formattedValue: {
|
|
269
275
|
type: StringConstructor;
|
|
270
276
|
};
|
|
277
|
+
placeholder: {
|
|
278
|
+
type: StringConstructor;
|
|
279
|
+
};
|
|
271
280
|
}>> & {
|
|
272
281
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
273
282
|
}, {
|
|
@@ -836,6 +845,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
836
845
|
formattedValue: {
|
|
837
846
|
type: StringConstructor;
|
|
838
847
|
};
|
|
848
|
+
placeholder: {
|
|
849
|
+
type: StringConstructor;
|
|
850
|
+
};
|
|
839
851
|
}, {
|
|
840
852
|
attrs: {
|
|
841
853
|
[x: string]: unknown;
|
|
@@ -850,13 +862,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
850
862
|
formattedValue: {
|
|
851
863
|
type: StringConstructor;
|
|
852
864
|
};
|
|
865
|
+
placeholder: {
|
|
866
|
+
type: StringConstructor;
|
|
867
|
+
};
|
|
853
868
|
}>> & {
|
|
854
869
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
855
870
|
}>>;
|
|
856
871
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
857
872
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
858
873
|
panelInstRef: import("vue").Ref<null>;
|
|
859
|
-
|
|
874
|
+
placeholderRef: import("vue").Ref<any>;
|
|
860
875
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
861
876
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
862
877
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -878,6 +893,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
878
893
|
formattedValue: {
|
|
879
894
|
type: StringConstructor;
|
|
880
895
|
};
|
|
896
|
+
placeholder: {
|
|
897
|
+
type: StringConstructor;
|
|
898
|
+
};
|
|
881
899
|
}>> & {
|
|
882
900
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
883
901
|
}, {
|
package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts
CHANGED
|
@@ -93,6 +93,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
93
|
formattedValue: {
|
|
94
94
|
type: StringConstructor;
|
|
95
95
|
};
|
|
96
|
+
placeholder: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
};
|
|
96
99
|
}, {
|
|
97
100
|
attrs: {
|
|
98
101
|
[x: string]: unknown;
|
|
@@ -107,13 +110,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
107
110
|
formattedValue: {
|
|
108
111
|
type: StringConstructor;
|
|
109
112
|
};
|
|
113
|
+
placeholder: {
|
|
114
|
+
type: StringConstructor;
|
|
115
|
+
};
|
|
110
116
|
}>> & {
|
|
111
117
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
112
118
|
}>>;
|
|
113
119
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
114
120
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
115
121
|
panelInstRef: import("vue").Ref<null>;
|
|
116
|
-
|
|
122
|
+
placeholderRef: import("vue").Ref<any>;
|
|
117
123
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
118
124
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
119
125
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -135,6 +141,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
135
141
|
formattedValue: {
|
|
136
142
|
type: StringConstructor;
|
|
137
143
|
};
|
|
144
|
+
placeholder: {
|
|
145
|
+
type: StringConstructor;
|
|
146
|
+
};
|
|
138
147
|
}>> & {
|
|
139
148
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
140
149
|
}, {
|
|
@@ -76,6 +76,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
76
76
|
formattedValue: {
|
|
77
77
|
type: StringConstructor;
|
|
78
78
|
};
|
|
79
|
+
placeholder: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
};
|
|
79
82
|
}, {
|
|
80
83
|
attrs: {
|
|
81
84
|
[x: string]: unknown;
|
|
@@ -90,13 +93,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
90
93
|
formattedValue: {
|
|
91
94
|
type: StringConstructor;
|
|
92
95
|
};
|
|
96
|
+
placeholder: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
};
|
|
93
99
|
}>> & {
|
|
94
100
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
95
101
|
}>>;
|
|
96
102
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
97
103
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
98
104
|
panelInstRef: import("vue").Ref<null>;
|
|
99
|
-
|
|
105
|
+
placeholderRef: import("vue").Ref<any>;
|
|
100
106
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
101
107
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
102
108
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -118,6 +124,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
118
124
|
formattedValue: {
|
|
119
125
|
type: StringConstructor;
|
|
120
126
|
};
|
|
127
|
+
placeholder: {
|
|
128
|
+
type: StringConstructor;
|
|
129
|
+
};
|
|
121
130
|
}>> & {
|
|
122
131
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
123
132
|
}, {
|
package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts
CHANGED
|
@@ -111,6 +111,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
111
111
|
formattedValue: {
|
|
112
112
|
type: StringConstructor;
|
|
113
113
|
};
|
|
114
|
+
placeholder: {
|
|
115
|
+
type: StringConstructor;
|
|
116
|
+
};
|
|
114
117
|
}, {
|
|
115
118
|
attrs: {
|
|
116
119
|
[x: string]: unknown;
|
|
@@ -125,13 +128,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
128
|
formattedValue: {
|
|
126
129
|
type: StringConstructor;
|
|
127
130
|
};
|
|
131
|
+
placeholder: {
|
|
132
|
+
type: StringConstructor;
|
|
133
|
+
};
|
|
128
134
|
}>> & {
|
|
129
135
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
130
136
|
}>>;
|
|
131
137
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
132
138
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
133
139
|
panelInstRef: import("vue").Ref<null>;
|
|
134
|
-
|
|
140
|
+
placeholderRef: import("vue").Ref<any>;
|
|
135
141
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
136
142
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
137
143
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -153,6 +159,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
153
159
|
formattedValue: {
|
|
154
160
|
type: StringConstructor;
|
|
155
161
|
};
|
|
162
|
+
placeholder: {
|
|
163
|
+
type: StringConstructor;
|
|
164
|
+
};
|
|
156
165
|
}>> & {
|
|
157
166
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
158
167
|
}, {
|
package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts
CHANGED
|
@@ -78,6 +78,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
78
78
|
formattedValue: {
|
|
79
79
|
type: StringConstructor;
|
|
80
80
|
};
|
|
81
|
+
placeholder: {
|
|
82
|
+
type: StringConstructor;
|
|
83
|
+
};
|
|
81
84
|
}, {
|
|
82
85
|
attrs: {
|
|
83
86
|
[x: string]: unknown;
|
|
@@ -92,13 +95,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
92
95
|
formattedValue: {
|
|
93
96
|
type: StringConstructor;
|
|
94
97
|
};
|
|
98
|
+
placeholder: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
};
|
|
95
101
|
}>> & {
|
|
96
102
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
97
103
|
}>>;
|
|
98
104
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
99
105
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
100
106
|
panelInstRef: import("vue").Ref<null>;
|
|
101
|
-
|
|
107
|
+
placeholderRef: import("vue").Ref<any>;
|
|
102
108
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
103
109
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
104
110
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -120,6 +126,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
120
126
|
formattedValue: {
|
|
121
127
|
type: StringConstructor;
|
|
122
128
|
};
|
|
129
|
+
placeholder: {
|
|
130
|
+
type: StringConstructor;
|
|
131
|
+
};
|
|
123
132
|
}>> & {
|
|
124
133
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
125
134
|
}, {
|
|
@@ -257,6 +257,9 @@ declare const DateInner: import("vue").DefineComponent<{
|
|
|
257
257
|
formattedValue: {
|
|
258
258
|
type: StringConstructor;
|
|
259
259
|
};
|
|
260
|
+
placeholder: {
|
|
261
|
+
type: StringConstructor;
|
|
262
|
+
};
|
|
260
263
|
}, {
|
|
261
264
|
attrs: {
|
|
262
265
|
[x: string]: unknown;
|
|
@@ -271,13 +274,16 @@ declare const DateInner: import("vue").DefineComponent<{
|
|
|
271
274
|
formattedValue: {
|
|
272
275
|
type: StringConstructor;
|
|
273
276
|
};
|
|
277
|
+
placeholder: {
|
|
278
|
+
type: StringConstructor;
|
|
279
|
+
};
|
|
274
280
|
}>> & {
|
|
275
281
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
276
282
|
}>>;
|
|
277
283
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
278
284
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
279
285
|
panelInstRef: import("vue").Ref<null>;
|
|
280
|
-
|
|
286
|
+
placeholderRef: import("vue").Ref<any>;
|
|
281
287
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
282
288
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
283
289
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -299,6 +305,9 @@ declare const DateInner: import("vue").DefineComponent<{
|
|
|
299
305
|
formattedValue: {
|
|
300
306
|
type: StringConstructor;
|
|
301
307
|
};
|
|
308
|
+
placeholder: {
|
|
309
|
+
type: StringConstructor;
|
|
310
|
+
};
|
|
302
311
|
}>> & {
|
|
303
312
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
304
313
|
}, {
|
|
@@ -485,6 +494,9 @@ declare const DateOut: import("vue").DefineComponent<{
|
|
|
485
494
|
formattedValue: {
|
|
486
495
|
type: StringConstructor;
|
|
487
496
|
};
|
|
497
|
+
placeholder: {
|
|
498
|
+
type: StringConstructor;
|
|
499
|
+
};
|
|
488
500
|
}, {
|
|
489
501
|
attrs: {
|
|
490
502
|
[x: string]: unknown;
|
|
@@ -499,13 +511,16 @@ declare const DateOut: import("vue").DefineComponent<{
|
|
|
499
511
|
formattedValue: {
|
|
500
512
|
type: StringConstructor;
|
|
501
513
|
};
|
|
514
|
+
placeholder: {
|
|
515
|
+
type: StringConstructor;
|
|
516
|
+
};
|
|
502
517
|
}>> & {
|
|
503
518
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
504
519
|
}>>;
|
|
505
520
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
506
521
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
507
522
|
panelInstRef: import("vue").Ref<null>;
|
|
508
|
-
|
|
523
|
+
placeholderRef: import("vue").Ref<any>;
|
|
509
524
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
510
525
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
511
526
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -527,6 +542,9 @@ declare const DateOut: import("vue").DefineComponent<{
|
|
|
527
542
|
formattedValue: {
|
|
528
543
|
type: StringConstructor;
|
|
529
544
|
};
|
|
545
|
+
placeholder: {
|
|
546
|
+
type: StringConstructor;
|
|
547
|
+
};
|
|
530
548
|
}>> & {
|
|
531
549
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
532
550
|
}, {
|
|
@@ -675,6 +693,9 @@ declare const DateRangeInner: import("vue").DefineComponent<{
|
|
|
675
693
|
formattedValue: {
|
|
676
694
|
type: StringConstructor;
|
|
677
695
|
};
|
|
696
|
+
placeholder: {
|
|
697
|
+
type: StringConstructor;
|
|
698
|
+
};
|
|
678
699
|
}, {
|
|
679
700
|
attrs: {
|
|
680
701
|
[x: string]: unknown;
|
|
@@ -689,13 +710,16 @@ declare const DateRangeInner: import("vue").DefineComponent<{
|
|
|
689
710
|
formattedValue: {
|
|
690
711
|
type: StringConstructor;
|
|
691
712
|
};
|
|
713
|
+
placeholder: {
|
|
714
|
+
type: StringConstructor;
|
|
715
|
+
};
|
|
692
716
|
}>> & {
|
|
693
717
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
694
718
|
}>>;
|
|
695
719
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
696
720
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
697
721
|
panelInstRef: import("vue").Ref<null>;
|
|
698
|
-
|
|
722
|
+
placeholderRef: import("vue").Ref<any>;
|
|
699
723
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
700
724
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
701
725
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -717,6 +741,9 @@ declare const DateRangeInner: import("vue").DefineComponent<{
|
|
|
717
741
|
formattedValue: {
|
|
718
742
|
type: StringConstructor;
|
|
719
743
|
};
|
|
744
|
+
placeholder: {
|
|
745
|
+
type: StringConstructor;
|
|
746
|
+
};
|
|
720
747
|
}>> & {
|
|
721
748
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
722
749
|
}, {
|
|
@@ -910,6 +937,9 @@ declare const DateRangeOut: import("vue").DefineComponent<{
|
|
|
910
937
|
formattedValue: {
|
|
911
938
|
type: StringConstructor;
|
|
912
939
|
};
|
|
940
|
+
placeholder: {
|
|
941
|
+
type: StringConstructor;
|
|
942
|
+
};
|
|
913
943
|
}, {
|
|
914
944
|
attrs: {
|
|
915
945
|
[x: string]: unknown;
|
|
@@ -924,13 +954,16 @@ declare const DateRangeOut: import("vue").DefineComponent<{
|
|
|
924
954
|
formattedValue: {
|
|
925
955
|
type: StringConstructor;
|
|
926
956
|
};
|
|
957
|
+
placeholder: {
|
|
958
|
+
type: StringConstructor;
|
|
959
|
+
};
|
|
927
960
|
}>> & {
|
|
928
961
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
929
962
|
}>>;
|
|
930
963
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
931
964
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
932
965
|
panelInstRef: import("vue").Ref<null>;
|
|
933
|
-
|
|
966
|
+
placeholderRef: import("vue").Ref<any>;
|
|
934
967
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
935
968
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
936
969
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -952,6 +985,9 @@ declare const DateRangeOut: import("vue").DefineComponent<{
|
|
|
952
985
|
formattedValue: {
|
|
953
986
|
type: StringConstructor;
|
|
954
987
|
};
|
|
988
|
+
placeholder: {
|
|
989
|
+
type: StringConstructor;
|
|
990
|
+
};
|
|
955
991
|
}>> & {
|
|
956
992
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
957
993
|
}, {
|
|
@@ -479,6 +479,9 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
479
479
|
formattedValue: {
|
|
480
480
|
type: StringConstructor;
|
|
481
481
|
};
|
|
482
|
+
placeholder: {
|
|
483
|
+
type: StringConstructor;
|
|
484
|
+
};
|
|
482
485
|
}, {
|
|
483
486
|
attrs: {
|
|
484
487
|
[x: string]: unknown;
|
|
@@ -493,13 +496,16 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
493
496
|
formattedValue: {
|
|
494
497
|
type: StringConstructor;
|
|
495
498
|
};
|
|
499
|
+
placeholder: {
|
|
500
|
+
type: StringConstructor;
|
|
501
|
+
};
|
|
496
502
|
}>> & {
|
|
497
503
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
498
504
|
}>>;
|
|
499
505
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
500
506
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
501
507
|
panelInstRef: import("vue").Ref<null>;
|
|
502
|
-
|
|
508
|
+
placeholderRef: import("vue").Ref<any>;
|
|
503
509
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
504
510
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
505
511
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -521,6 +527,9 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
521
527
|
formattedValue: {
|
|
522
528
|
type: StringConstructor;
|
|
523
529
|
};
|
|
530
|
+
placeholder: {
|
|
531
|
+
type: StringConstructor;
|
|
532
|
+
};
|
|
524
533
|
}>> & {
|
|
525
534
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
526
535
|
}, {
|
|
@@ -721,6 +730,9 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
721
730
|
formattedValue: {
|
|
722
731
|
type: StringConstructor;
|
|
723
732
|
};
|
|
733
|
+
placeholder: {
|
|
734
|
+
type: StringConstructor;
|
|
735
|
+
};
|
|
724
736
|
}, {
|
|
725
737
|
attrs: {
|
|
726
738
|
[x: string]: unknown;
|
|
@@ -735,13 +747,16 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
735
747
|
formattedValue: {
|
|
736
748
|
type: StringConstructor;
|
|
737
749
|
};
|
|
750
|
+
placeholder: {
|
|
751
|
+
type: StringConstructor;
|
|
752
|
+
};
|
|
738
753
|
}>> & {
|
|
739
754
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
740
755
|
}>>;
|
|
741
756
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
742
757
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
743
758
|
panelInstRef: import("vue").Ref<null>;
|
|
744
|
-
|
|
759
|
+
placeholderRef: import("vue").Ref<any>;
|
|
745
760
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
746
761
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
747
762
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -763,6 +778,9 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
763
778
|
formattedValue: {
|
|
764
779
|
type: StringConstructor;
|
|
765
780
|
};
|
|
781
|
+
placeholder: {
|
|
782
|
+
type: StringConstructor;
|
|
783
|
+
};
|
|
766
784
|
}>> & {
|
|
767
785
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
768
786
|
}, {
|
|
@@ -925,6 +943,9 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
925
943
|
formattedValue: {
|
|
926
944
|
type: StringConstructor;
|
|
927
945
|
};
|
|
946
|
+
placeholder: {
|
|
947
|
+
type: StringConstructor;
|
|
948
|
+
};
|
|
928
949
|
}, {
|
|
929
950
|
attrs: {
|
|
930
951
|
[x: string]: unknown;
|
|
@@ -939,13 +960,16 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
939
960
|
formattedValue: {
|
|
940
961
|
type: StringConstructor;
|
|
941
962
|
};
|
|
963
|
+
placeholder: {
|
|
964
|
+
type: StringConstructor;
|
|
965
|
+
};
|
|
942
966
|
}>> & {
|
|
943
967
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
944
968
|
}>>;
|
|
945
969
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
946
970
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
947
971
|
panelInstRef: import("vue").Ref<null>;
|
|
948
|
-
|
|
972
|
+
placeholderRef: import("vue").Ref<any>;
|
|
949
973
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
950
974
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
951
975
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -967,6 +991,9 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
967
991
|
formattedValue: {
|
|
968
992
|
type: StringConstructor;
|
|
969
993
|
};
|
|
994
|
+
placeholder: {
|
|
995
|
+
type: StringConstructor;
|
|
996
|
+
};
|
|
970
997
|
}>> & {
|
|
971
998
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
972
999
|
}, {
|
|
@@ -1174,6 +1201,9 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
1174
1201
|
formattedValue: {
|
|
1175
1202
|
type: StringConstructor;
|
|
1176
1203
|
};
|
|
1204
|
+
placeholder: {
|
|
1205
|
+
type: StringConstructor;
|
|
1206
|
+
};
|
|
1177
1207
|
}, {
|
|
1178
1208
|
attrs: {
|
|
1179
1209
|
[x: string]: unknown;
|
|
@@ -1188,13 +1218,16 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
1188
1218
|
formattedValue: {
|
|
1189
1219
|
type: StringConstructor;
|
|
1190
1220
|
};
|
|
1221
|
+
placeholder: {
|
|
1222
|
+
type: StringConstructor;
|
|
1223
|
+
};
|
|
1191
1224
|
}>> & {
|
|
1192
1225
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1193
1226
|
}>>;
|
|
1194
1227
|
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
|
1195
1228
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
1196
1229
|
panelInstRef: import("vue").Ref<null>;
|
|
1197
|
-
|
|
1230
|
+
placeholderRef: import("vue").Ref<any>;
|
|
1198
1231
|
currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
|
|
1199
1232
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
1200
1233
|
formatRef: import("vue").ComputedRef<string>;
|
|
@@ -1216,6 +1249,9 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
|
1216
1249
|
formattedValue: {
|
|
1217
1250
|
type: StringConstructor;
|
|
1218
1251
|
};
|
|
1252
|
+
placeholder: {
|
|
1253
|
+
type: StringConstructor;
|
|
1254
|
+
};
|
|
1219
1255
|
}>> & {
|
|
1220
1256
|
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
|
1221
1257
|
}, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e="@cnhis-design-vue/shared",i="3.1.52-beta.
|
|
1
|
+
var e="@cnhis-design-vue/shared",i="3.1.52-beta.12",s="index.ts",n={"naive-ui":"^2.30.0",vue:"^3.2.0"},a={"@vicons/ionicons5":"^0.12.0","lodash-es":"^4.17.21",moment:"^2.29.1","video.js":"^7.19.2","videojs-contrib-hls":"^5.15.0",viewerjs:"^1.10.5","xe-utils":"^3.5.4"},d={name:e,version:"3.1.52-beta.12",private:!0,main:"index.ts",peerDependencies:n,dependencies:a};export{d as default,a as dependencies,s as main,e as name,n as peerDependencies,i as version};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cnhis-design-vue",
|
|
3
|
-
"version": "3.1.52-beta.
|
|
3
|
+
"version": "3.1.52-beta.12",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"module": "./es/components/index.js",
|
|
6
6
|
"main": "./es/components/index.js",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"iOS 7",
|
|
64
64
|
"last 3 iOS versions"
|
|
65
65
|
],
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "eef1bdea0a9ec1c7658fbc54c0779bd1c0769d1f"
|
|
67
67
|
}
|