cnhis-design-vue 3.1.52-beta.11 → 3.1.52-beta.13

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.
Files changed (24) hide show
  1. package/es/components/classification/index.d.ts +20 -2
  2. package/es/components/classification/src/components/search-filter/index.vue.d.ts +20 -2
  3. package/es/components/classification/src/components/set-classification/index.vue.d.ts +20 -2
  4. package/es/components/classification/src/index.vue.d.ts +20 -2
  5. package/es/components/date-picker/index.d.ts +10 -1
  6. package/es/components/date-picker/src/DatePicker.vue.d.ts +10 -1
  7. package/es/components/date-picker/src/DatePicker.vue2.js +1 -1
  8. package/es/components/form-render/src/components/renderer/date.js +1 -1
  9. package/es/components/form-render/src/components/renderer/levelSearchCascader.js +1 -1
  10. package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +10 -1
  11. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +10 -1
  12. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +20 -2
  13. package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +10 -1
  14. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +10 -1
  15. package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +20 -2
  16. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +20 -2
  17. package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +10 -1
  18. package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +10 -1
  19. package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +10 -1
  20. package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +10 -1
  21. package/es/components/table-filter/src/components/render-widget/components/index.d.ts +40 -4
  22. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +40 -4
  23. package/es/shared/package.json.js +1 -1
  24. package/package.json +2 -2
@@ -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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
  }, {
@@ -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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
  }, {
@@ -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
- placeholder: import("vue").Ref<any>;
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
  }, {
@@ -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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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
- placeholder: import("vue").Ref<any>;
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.11",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.11",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};
1
+ var e="@cnhis-design-vue/shared",i="3.1.52-beta.13",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.13",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.11",
3
+ "version": "3.1.52-beta.13",
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": "162a1e486eb1778625dd13acce45287439781056"
66
+ "gitHead": "34587d1e83d3d12d8046855b209bca095df2fcf1"
67
67
  }