@stonecrop/aform 0.35.0 → 0.36.0

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 (30) hide show
  1. package/dist/aform.js +508 -315
  2. package/dist/aform.js.map +1 -1
  3. package/dist/assets/index.css +80 -70
  4. package/dist/src/components/form/ACurrencyInput.vue.d.ts +3 -3
  5. package/dist/src/components/form/ACurrencyInput.vue.d.ts.map +1 -1
  6. package/dist/src/components/form/ADate.vue.d.ts +3 -3
  7. package/dist/src/components/form/ADate.vue.d.ts.map +1 -1
  8. package/dist/src/components/form/ADatePicker.vue.d.ts +10 -10
  9. package/dist/src/components/form/ADatePicker.vue.d.ts.map +1 -1
  10. package/dist/src/components/form/ADateRange.vue.d.ts +3 -3
  11. package/dist/src/components/form/ADateRange.vue.d.ts.map +1 -1
  12. package/dist/src/components/form/ADateSelection.vue.d.ts +8 -6
  13. package/dist/src/components/form/ADateSelection.vue.d.ts.map +1 -1
  14. package/dist/src/components/form/ADateTime.vue.d.ts +3 -3
  15. package/dist/src/components/form/ADateTime.vue.d.ts.map +1 -1
  16. package/dist/src/components/form/ADuration.vue.d.ts +3 -3
  17. package/dist/src/components/form/ADuration.vue.d.ts.map +1 -1
  18. package/dist/src/components/form/ANumericInput.vue.d.ts +3 -3
  19. package/dist/src/components/form/ANumericInput.vue.d.ts.map +1 -1
  20. package/dist/src/components/form/AQuantityInput.vue.d.ts +3 -3
  21. package/dist/src/components/form/AQuantityInput.vue.d.ts.map +1 -1
  22. package/dist/src/types/index.d.ts +8 -8
  23. package/dist/src/types/index.d.ts.map +1 -1
  24. package/dist/src/utils/emptiedBox.d.ts +11 -0
  25. package/dist/src/utils/emptiedBox.d.ts.map +1 -0
  26. package/dist/src/utils/fieldCalendar.d.ts +18 -0
  27. package/dist/src/utils/fieldCalendar.d.ts.map +1 -0
  28. package/dist/src/utils/typedDay.d.ts +14 -0
  29. package/dist/src/utils/typedDay.d.ts.map +1 -0
  30. package/package.json +8 -5
@@ -126,19 +126,19 @@
126
126
  color: var(--sc-input-active-border-color);
127
127
  }
128
128
 
129
- .acurrency__row[data-v-f61b058f] {
129
+ .acurrency__row[data-v-7c503cec] {
130
130
  display: flex;
131
131
  gap: 1ch;
132
132
  }
133
- .acurrency__row--base[data-v-f61b058f] {
133
+ .acurrency__row--base[data-v-7c503cec] {
134
134
  margin-top: 1.5rem;
135
135
  }
136
- .acurrency__field[data-v-f61b058f] {
136
+ .acurrency__field[data-v-7c503cec] {
137
137
  position: relative;
138
138
  flex: 1;
139
139
  min-width: 0;
140
140
  }
141
- .acurrency__group[data-v-f61b058f] {
141
+ .acurrency__group[data-v-7c503cec] {
142
142
  display: flex;
143
143
  align-items: stretch;
144
144
  width: 100%;
@@ -146,14 +146,14 @@
146
146
  border: 1px solid var(--sc-input-border-color);
147
147
  border-radius: var(--sc-border-radius);
148
148
  }
149
- .acurrency__group[data-v-f61b058f]:focus-within {
149
+ .acurrency__group[data-v-7c503cec]:focus-within {
150
150
  border-color: var(--sc-input-active-border-color);
151
151
  }
152
152
 
153
153
  /* Wraps just the amount input so its floating label (`left: 10px` of the nearest
154
154
  `position: relative` ancestor, per .aform_field-label) anchors above the amount box
155
155
  specifically, not the group's outer left edge — which is now the currency prefix. */
156
- .acurrency__amount-wrap[data-v-f61b058f] {
156
+ .acurrency__amount-wrap[data-v-7c503cec] {
157
157
  position: relative;
158
158
  flex: 1;
159
159
  min-width: 0;
@@ -161,15 +161,15 @@
161
161
 
162
162
  /* The amount label ("Total") is the primary label for the whole merged group — bumped up
163
163
  slightly from the shared .aform_field-label size so it reads as the group's main label. */
164
- .acurrency__amount-wrap .aform_field-label[data-v-f61b058f] {
164
+ .acurrency__amount-wrap .aform_field-label[data-v-7c503cec] {
165
165
  font-size: 0.85rem;
166
166
  }
167
167
 
168
168
  /* The label names the whole group, so focus on the currency picker darkens it too. */
169
- .acurrency__group:focus-within .acurrency__amount-wrap > .aform_field-label[data-v-f61b058f] {
169
+ .acurrency__group:focus-within .acurrency__amount-wrap > .aform_field-label[data-v-7c503cec] {
170
170
  color: var(--sc-input-active-label-color);
171
171
  }
172
- .acurrency__amount[data-v-f61b058f] {
172
+ .acurrency__amount[data-v-7c503cec] {
173
173
  width: 100%;
174
174
  box-sizing: border-box;
175
175
  border: none;
@@ -184,8 +184,8 @@
184
184
  appearance: textfield;
185
185
  -moz-appearance: textfield;
186
186
  }
187
- .acurrency__amount[data-v-f61b058f]::-webkit-outer-spin-button,
188
- .acurrency__amount[data-v-f61b058f]::-webkit-inner-spin-button {
187
+ .acurrency__amount[data-v-7c503cec]::-webkit-outer-spin-button,
188
+ .acurrency__amount[data-v-7c503cec]::-webkit-inner-spin-button {
189
189
  appearance: none;
190
190
  -webkit-appearance: none;
191
191
  margin: 0;
@@ -196,7 +196,7 @@
196
196
  picked, not the full name), tinted background, left-rounded to match the group's own
197
197
  corner so the tint doesn't overhang the border. The dropdown itself isn't bound by this
198
198
  width — see AFormLink's .autocomplete-results — so search results still show full names. */
199
- .acurrency__currency[data-v-f61b058f] {
199
+ .acurrency__currency[data-v-7c503cec] {
200
200
  position: relative;
201
201
  flex: 0 0 auto;
202
202
  min-width: 4.5rem;
@@ -204,7 +204,7 @@
204
204
  border-right: 1px solid var(--sc-input-border-color);
205
205
  border-radius: var(--sc-border-radius) 0 0 var(--sc-border-radius);
206
206
  }
207
- .acurrency__base-field[data-v-f61b058f] {
207
+ .acurrency__base-field[data-v-7c503cec] {
208
208
  width: 100%;
209
209
  box-sizing: border-box;
210
210
  font-size: 1rem;
@@ -215,28 +215,28 @@
215
215
  appearance: textfield;
216
216
  -moz-appearance: textfield;
217
217
  }
218
- .acurrency__base-field[data-v-f61b058f]:disabled {
218
+ .acurrency__base-field[data-v-7c503cec]:disabled {
219
219
  color: var(--sc-gray-50);
220
220
  }
221
221
 
222
222
  /* Base Amount and Exchange Rate are read-only — the number spinner offers nothing here. */
223
- .acurrency__base-field[data-v-f61b058f]::-webkit-outer-spin-button,
224
- .acurrency__base-field[data-v-f61b058f]::-webkit-inner-spin-button {
223
+ .acurrency__base-field[data-v-7c503cec]::-webkit-outer-spin-button,
224
+ .acurrency__base-field[data-v-7c503cec]::-webkit-inner-spin-button {
225
225
  appearance: none;
226
226
  -webkit-appearance: none;
227
227
  margin: 0;
228
228
  }
229
229
 
230
- .adatepicker[data-v-e22e44d1],
231
- .adatepicker table[data-v-e22e44d1],
232
- .adatepicker tr[data-v-e22e44d1],
233
- .adatepicker td[data-v-e22e44d1],
234
- .adatepicker th[data-v-e22e44d1] {
230
+ .adatepicker[data-v-d0133599],
231
+ .adatepicker table[data-v-d0133599],
232
+ .adatepicker tr[data-v-d0133599],
233
+ .adatepicker td[data-v-d0133599],
234
+ .adatepicker th[data-v-d0133599] {
235
235
  -webkit-user-select: none;
236
236
  -moz-user-select: none;
237
237
  user-select: none;
238
238
  }
239
- .adatepicker[data-v-e22e44d1] {
239
+ .adatepicker[data-v-d0133599] {
240
240
  font-size: var(--sc-table-font-size);
241
241
  display: inline-table;
242
242
  color: var(--sc-cell-text-color);
@@ -245,24 +245,28 @@
245
245
  margin-bottom: 10px;
246
246
  /* width: calc(100% - 4px); */
247
247
  }
248
- .adatepicker tr[data-v-e22e44d1] {
248
+ .adatepicker tr[data-v-d0133599] {
249
249
  height: 1.15rem;
250
250
  height: 1.15rem;
251
251
  text-align: center;
252
252
  vertical-align: middle;
253
253
  }
254
- .adatepicker td[data-v-e22e44d1] {
254
+ .adatepicker td[data-v-d0133599] {
255
255
  border: 2px solid transparent;
256
256
  outline: 2px solid transparent;
257
257
  min-width: 3ch;
258
258
  max-width: 3ch;
259
259
  cursor: pointer;
260
260
  }
261
- .adatepicker td.date-cell[data-v-e22e44d1]:hover {
261
+ .adatepicker td.date-cell[data-v-d0133599]:hover {
262
262
  background: var(--sc-gray-10);
263
263
  }
264
- .adatepicker td[data-v-e22e44d1]:focus,
265
- .adatepicker td[data-v-e22e44d1]:focus-within {
264
+ .adatepicker td.date-cell[data-v-d0133599]:focus-visible {
265
+ outline: 1px solid var(--sc-input-active-border-color);
266
+ outline-offset: -1px;
267
+ }
268
+ .adatepicker td[data-v-d0133599]:focus,
269
+ .adatepicker td[data-v-d0133599]:focus-within {
266
270
  /* outline: 1px dashed black; */
267
271
  box-shadow: none;
268
272
  overflow: hidden;
@@ -270,51 +274,57 @@
270
274
  max-height: 1.15em;
271
275
  overflow: hidden;
272
276
  }
273
- .adatepicker .selectedDate[data-v-e22e44d1],
274
- .adatepicker .startDate[data-v-e22e44d1],
275
- .adatepicker .endDate[data-v-e22e44d1] {
277
+ .adatepicker .selectedDate[data-v-d0133599],
278
+ .adatepicker .startDate[data-v-d0133599],
279
+ .adatepicker .endDate[data-v-d0133599] {
276
280
  /* outline: 1px solid black; */
277
281
  background: var(--sc-gray-20);
278
282
  font-weight: bolder;
279
283
  }
280
- .adatepicker .startDate[data-v-e22e44d1] {
284
+ .adatepicker .startDate[data-v-d0133599] {
281
285
  /* border-radius: 5px 0px 0px 5px; */
282
286
  border-left: 1px solid var(--sc-gray-50);
283
287
  background: var(--sc-gray-20) !important;
284
288
  }
285
- .adatepicker .endDate[data-v-e22e44d1] {
289
+ .adatepicker .endDate[data-v-d0133599] {
286
290
  border-right: 1px solid var(--sc-gray-50);
287
291
  /* border-radius: 0px 5px 5px 0px; */
288
292
  background: var(--sc-gray-20) !important;
289
293
  }
290
- .adatepicker .withinRange[data-v-e22e44d1] {
294
+ .adatepicker .withinRange[data-v-d0133599] {
291
295
  background: var(--sc-gray-5);
292
296
  }
293
- .adatepicker .todaysDate[data-v-e22e44d1] {
297
+ .adatepicker .todaysDate[data-v-d0133599] {
294
298
  font-weight: bolder;
295
299
  /* text-decoration: underline; */
296
300
  color: var(--sc-cell-text-color);
297
301
  }
298
- .days-header > td[data-v-e22e44d1] {
302
+ .days-header > td[data-v-d0133599] {
299
303
  font-weight: bold;
300
304
  }
301
- .prev-date[data-v-e22e44d1] {
305
+ .prev-date[data-v-d0133599] {
302
306
  color: var(--sc-gray-20);
303
307
  }
304
- .adatepicker .date-input[data-v-e22e44d1] {
308
+ .adatepicker .date-input[data-v-d0133599] {
305
309
  display: flex;
306
310
  width: 100%;
307
311
  gap: 5px;
308
312
  align-items: center;
309
313
  }
310
- .adatepicker .date-input > input[data-v-e22e44d1] {
311
- width: 50%;
314
+ /* The boxes' row widens the calendar past its 3ch day columns, so each box fits a day such as `04/09/2026`. */
315
+ .adatepicker td.range-inputs[data-v-d0133599] {
316
+ max-width: none;
317
+ }
318
+ .adatepicker .date-input > input[data-v-d0133599] {
319
+ flex: none;
320
+ width: 11ch;
321
+ box-sizing: border-box;
312
322
  padding: 2px;
313
323
  }
314
324
 
315
325
  /* Keep the field error in-flow below the calendar. The shared .aform_error is absolutely
316
326
  positioned against a .aform_form-element anchor, which this grid component does not use. */
317
- p.aform_error[data-v-e22e44d1] {
327
+ p.aform_error[data-v-d0133599] {
318
328
  position: static;
319
329
  display: block;
320
330
  color: var(--sc-brand-danger);
@@ -382,7 +392,7 @@ p.aform_error[data-v-e22e44d1] {
382
392
  min-height: auto;
383
393
  }
384
394
 
385
- .adate-selection[data-v-48e71f28] {
395
+ .adate-selection[data-v-4a079b23] {
386
396
  display: inline-block;
387
397
  width: max-content;
388
398
  max-width: 100%;
@@ -391,7 +401,7 @@ p.aform_error[data-v-e22e44d1] {
391
401
  padding: 10px;
392
402
  background: var(--sc-input-field-background);
393
403
  }
394
- .adate-selection__end-label[data-v-48e71f28] {
404
+ .adate-selection__end-label[data-v-4a079b23] {
395
405
  font-size: 0.8em;
396
406
  font-weight: bold;
397
407
  color: var(--sc-input-active-label-color);
@@ -399,14 +409,14 @@ p.aform_error[data-v-e22e44d1] {
399
409
  margin-bottom: 2px;
400
410
  padding-left: 2px;
401
411
  }
402
- .empty[data-v-48e71f28] {
412
+ .empty[data-v-4a079b23] {
403
413
  color: var(--sc-input-label-color);
404
414
  padding: 10px;
405
415
  text-align: center;
406
416
  border: 1px solid var(--sc-input-border-color);
407
417
  }
408
418
 
409
- .adate-picker[data-v-e1403ea0] {
419
+ .adate-picker[data-v-16f8f8f2] {
410
420
  position: absolute;
411
421
  top: 100%;
412
422
  left: 0;
@@ -659,7 +669,7 @@ p.aform_error[data-v-e22e44d1] {
659
669
  }
660
670
  }
661
671
 
662
- .adatetime-picker[data-v-427253ba] {
672
+ .adatetime-picker[data-v-05cbbabe] {
663
673
  position: absolute;
664
674
  top: 100%;
665
675
  left: 0;
@@ -670,34 +680,34 @@ p.aform_error[data-v-e22e44d1] {
670
680
  margin-top: 0.25rem;
671
681
  }
672
682
 
673
- .aduration[data-v-64f6240e] {
683
+ .aduration[data-v-133162a6] {
674
684
  position: relative;
675
685
  width: max-content;
676
686
  max-width: 100%;
677
687
  }
678
- .aduration__summary[data-v-64f6240e] {
688
+ .aduration__summary[data-v-133162a6] {
679
689
  display: flex;
680
690
  gap: 6px;
681
691
  align-items: baseline;
682
692
  margin-top: 6px;
683
693
  font-size: 0.9em;
684
694
  }
685
- .aduration__label[data-v-64f6240e] {
695
+ .aduration__label[data-v-133162a6] {
686
696
  font-weight: bold;
687
697
  color: var(--sc-input-active-label-color);
688
698
  }
689
- .aduration__value[data-v-64f6240e] {
699
+ .aduration__value[data-v-133162a6] {
690
700
  color: var(--sc-cell-text-color);
691
701
  }
692
- .aduration__ms[data-v-64f6240e] {
702
+ .aduration__held[data-v-133162a6] {
693
703
  color: var(--sc-gray-50);
694
704
  font-size: 0.85em;
695
705
  }
696
- .aduration__footer[data-v-64f6240e] {
706
+ .aduration__footer[data-v-133162a6] {
697
707
  margin-top: 8px;
698
708
  }
699
709
 
700
- .adaterange-picker[data-v-b7560709] {
710
+ .adaterange-picker[data-v-ac2c160b] {
701
711
  position: absolute;
702
712
  top: 100%;
703
713
  left: 0;
@@ -949,19 +959,19 @@ legend[data-v-162e7317] {
949
959
  background-color: var(--sc-gray-5);
950
960
  }
951
961
 
952
- .aquantity__row[data-v-a904c817] {
962
+ .aquantity__row[data-v-b2c39a5c] {
953
963
  display: flex;
954
964
  gap: 1ch;
955
965
  }
956
- .aquantity__row--stock[data-v-a904c817] {
966
+ .aquantity__row--stock[data-v-b2c39a5c] {
957
967
  margin-top: 1.5rem;
958
968
  }
959
- .aquantity__field[data-v-a904c817] {
969
+ .aquantity__field[data-v-b2c39a5c] {
960
970
  position: relative;
961
971
  flex: 1;
962
972
  min-width: 0;
963
973
  }
964
- .aquantity__group[data-v-a904c817] {
974
+ .aquantity__group[data-v-b2c39a5c] {
965
975
  position: relative;
966
976
  display: flex;
967
977
  align-items: stretch;
@@ -970,10 +980,10 @@ legend[data-v-162e7317] {
970
980
  border: 1px solid var(--sc-input-border-color);
971
981
  border-radius: var(--sc-border-radius);
972
982
  }
973
- .aquantity__group[data-v-a904c817]:focus-within {
983
+ .aquantity__group[data-v-b2c39a5c]:focus-within {
974
984
  border-color: var(--sc-input-active-border-color);
975
985
  }
976
- .aquantity__qty[data-v-a904c817] {
986
+ .aquantity__qty[data-v-b2c39a5c] {
977
987
  flex: 1;
978
988
  min-width: 0;
979
989
  border: none;
@@ -987,18 +997,18 @@ legend[data-v-162e7317] {
987
997
  appearance: textfield;
988
998
  -moz-appearance: textfield;
989
999
  }
990
- .aquantity__qty[data-v-a904c817]::-webkit-outer-spin-button,
991
- .aquantity__qty[data-v-a904c817]::-webkit-inner-spin-button {
1000
+ .aquantity__qty[data-v-b2c39a5c]::-webkit-outer-spin-button,
1001
+ .aquantity__qty[data-v-b2c39a5c]::-webkit-inner-spin-button {
992
1002
  appearance: none;
993
1003
  -webkit-appearance: none;
994
1004
  margin: 0;
995
1005
  }
996
- .aquantity__uom[data-v-a904c817] {
1006
+ .aquantity__uom[data-v-b2c39a5c] {
997
1007
  position: relative;
998
1008
  flex: 0 0 auto;
999
1009
  border-left: 1px solid var(--sc-input-border-color);
1000
1010
  }
1001
- .aquantity__uom-toggle[data-v-a904c817] {
1011
+ .aquantity__uom-toggle[data-v-b2c39a5c] {
1002
1012
  display: flex;
1003
1013
  align-items: center;
1004
1014
  gap: 0.75ch;
@@ -1013,11 +1023,11 @@ legend[data-v-162e7317] {
1013
1023
  white-space: nowrap;
1014
1024
  cursor: pointer;
1015
1025
  }
1016
- .aquantity__uom-toggle[data-v-a904c817]:disabled {
1026
+ .aquantity__uom-toggle[data-v-b2c39a5c]:disabled {
1017
1027
  cursor: not-allowed;
1018
1028
  color: var(--sc-gray-50);
1019
1029
  }
1020
- .aquantity__caret[data-v-a904c817] {
1030
+ .aquantity__caret[data-v-b2c39a5c] {
1021
1031
  display: inline-block;
1022
1032
  width: 0;
1023
1033
  height: 0;
@@ -1025,7 +1035,7 @@ legend[data-v-162e7317] {
1025
1035
  border-right: 0.3em solid transparent;
1026
1036
  border-top: 0.3em solid currentColor;
1027
1037
  }
1028
- .aquantity__uom-menu[data-v-a904c817] {
1038
+ .aquantity__uom-menu[data-v-b2c39a5c] {
1029
1039
  position: absolute;
1030
1040
  top: 100%;
1031
1041
  right: 0;
@@ -1038,16 +1048,16 @@ legend[data-v-162e7317] {
1038
1048
  border: 1px solid var(--sc-input-active-border-color);
1039
1049
  border-radius: var(--sc-border-radius);
1040
1050
  }
1041
- .aquantity__uom-option[data-v-a904c817] {
1051
+ .aquantity__uom-option[data-v-b2c39a5c] {
1042
1052
  padding: 0.4ch 1ch;
1043
1053
  white-space: nowrap;
1044
1054
  cursor: pointer;
1045
1055
  }
1046
- .aquantity__uom-option.is-active[data-v-a904c817],
1047
- .aquantity__uom-option[data-v-a904c817]:hover {
1056
+ .aquantity__uom-option.is-active[data-v-b2c39a5c],
1057
+ .aquantity__uom-option[data-v-b2c39a5c]:hover {
1048
1058
  background-color: var(--sc-row-color-zebra-light);
1049
1059
  }
1050
- .aquantity__stock-field[data-v-a904c817] {
1060
+ .aquantity__stock-field[data-v-b2c39a5c] {
1051
1061
  width: 100%;
1052
1062
  font-size: 1rem;
1053
1063
  padding: 0.5rem 1ch;
@@ -1055,7 +1065,7 @@ legend[data-v-162e7317] {
1055
1065
  border-radius: var(--sc-border-radius);
1056
1066
  outline: none;
1057
1067
  }
1058
- .aquantity__stock-field[data-v-a904c817]:disabled {
1068
+ .aquantity__stock-field[data-v-b2c39a5c]:disabled {
1059
1069
  color: var(--sc-gray-50);
1060
1070
  }
1061
1071
 
@@ -7,13 +7,13 @@ type __VLS_Props = ComponentProps & {
7
7
  exchangeRateLabel?: string;
8
8
  };
9
9
  type __VLS_ModelProps = {
10
- modelValue?: CurrencyValue;
10
+ modelValue?: CurrencyValue | null;
11
11
  };
12
12
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
13
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
- "update:modelValue": (value: CurrencyValue) => any;
14
+ "update:modelValue": (value: CurrencyValue | null) => any;
15
15
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
- "onUpdate:modelValue"?: ((value: CurrencyValue) => any) | undefined;
16
+ "onUpdate:modelValue"?: ((value: CurrencyValue | null) => any) | undefined;
17
17
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
18
  declare const _default: typeof __VLS_export;
19
19
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"ACurrencyInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ACurrencyInput.vue"],"names":[],"mappings":"AA2XA,OAAO,KAAK,EAAkB,cAAc,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAIjG,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,OAAO,CAAC,EAAE,eAAe,CAAA;IACzB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,iBAAiB,CAAC,EAAE,MAAM,CAAA;CAC1B,CAAC;AA+LH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,aAAa,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAyNxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"ACurrencyInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ACurrencyInput.vue"],"names":[],"mappings":"AA4XA,OAAO,KAAK,EAAkB,cAAc,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAKjG,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,OAAO,CAAC,EAAE,eAAe,CAAA;IACzB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,iBAAiB,CAAC,EAAE,MAAM,CAAA;CAC1B,CAAC;AA+LH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;CACjC,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAyNxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -1,13 +1,13 @@
1
1
  import type { ComponentProps } from '../../types';
2
2
  type __VLS_Props = ComponentProps;
3
3
  type __VLS_ModelProps = {
4
- modelValue?: string | Date;
4
+ modelValue?: string | null;
5
5
  };
6
6
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
- "update:modelValue": (value: string | Date | undefined) => any;
8
+ "update:modelValue": (value: string | null | undefined) => any;
9
9
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
- "onUpdate:modelValue"?: ((value: string | Date | undefined) => any) | undefined;
10
+ "onUpdate:modelValue"?: ((value: string | null | undefined) => any) | undefined;
11
11
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
12
  declare const _default: typeof __VLS_export;
13
13
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"ADate.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADate.vue"],"names":[],"mappings":"AA4GA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAEjD,KAAK,WAAW,GAAG,cAAc,CAAC;AAmDlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA6GxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"ADate.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADate.vue"],"names":[],"mappings":"AA+GA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAIjD,KAAK,WAAW,GAAG,cAAc,CAAC;AA2ClC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA+HxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -1,26 +1,26 @@
1
1
  import type { ComponentProps } from '../../types';
2
2
  type __VLS_Props = ComponentProps;
3
3
  type __VLS_ModelProps = {
4
- modelValue?: number | Date;
4
+ modelValue?: string | null;
5
5
  };
6
6
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
8
8
  currentMonth: import("vue").Ref<number, number>;
9
9
  currentYear: import("vue").Ref<number, number>;
10
- selectedDate: import("vue").Ref<Date, Date>;
10
+ selectedDate: import("vue").ComputedRef<string>;
11
11
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
- "update:modelValue": (value: number | Date) => any;
12
+ "update:modelValue": (value: string | null | undefined) => any;
13
13
  "get-date": (args_0: {
14
- start: Date | null;
15
- end: Date | null;
16
- selected: Date;
14
+ start: string | null;
15
+ end: string | null;
16
+ selected: string;
17
17
  }) => any;
18
18
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
- "onUpdate:modelValue"?: ((value: number | Date) => any) | undefined;
19
+ "onUpdate:modelValue"?: ((value: string | null | undefined) => any) | undefined;
20
20
  "onGet-date"?: ((args_0: {
21
- start: Date | null;
22
- end: Date | null;
23
- selected: Date;
21
+ start: string | null;
22
+ end: string | null;
23
+ selected: string;
24
24
  }) => any) | undefined;
25
25
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
26
  declare const _default: typeof __VLS_export;
@@ -1 +1 @@
1
- {"version":3,"file":"ADatePicker.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADatePicker.vue"],"names":[],"mappings":"AAueA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAKjD,KAAK,WAAW,GAAG,cAAc,CAAC;AAuSlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA8PxD,QAAA,MAAM,YAAY;;;;;;;eAzgBK,IAAI,GAAG,IAAI;aAAO,IAAI,GAAG,IAAI;kBAAY,IAAI;;;;;eAA7C,IAAI,GAAG,IAAI;aAAO,IAAI,GAAG,IAAI;kBAAY,IAAI;;kFA6gBlE,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"ADatePicker.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADatePicker.vue"],"names":[],"mappings":"AA6fA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAMjD,KAAK,WAAW,GAAG,cAAc,CAAC;AAiTlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAuQxD,QAAA,MAAM,YAAY;;;;;;;eAxhBK,MAAM,GAAG,IAAI;aAAO,MAAM,GAAG,IAAI;kBAAY,MAAM;;;;;eAAnD,MAAM,GAAG,IAAI;aAAO,MAAM,GAAG,IAAI;kBAAY,MAAM;;kFA4hBxE,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -5,13 +5,13 @@ export interface DateRangeValue {
5
5
  end_date: string | null;
6
6
  }
7
7
  type __VLS_ModelProps = {
8
- modelValue?: DateRangeValue;
8
+ modelValue?: DateRangeValue | null;
9
9
  };
10
10
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
11
11
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
- "update:modelValue": (value: DateRangeValue) => any;
12
+ "update:modelValue": (value: DateRangeValue | null) => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
- "onUpdate:modelValue"?: ((value: DateRangeValue) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: DateRangeValue | null) => any) | undefined;
15
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  declare const _default: typeof __VLS_export;
17
17
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"ADateRange.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateRange.vue"],"names":[],"mappings":"AAmJA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAIjD,KAAK,WAAW,GAAG,cAAc,CAAC;AAQlC,MAAM,WAAW,cAAc;IAC9B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAA;IACzB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;CACvB;AA+ED,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,cAAc,CAAC;CAC3B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA4GxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"ADateRange.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateRange.vue"],"names":[],"mappings":"AA8JA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAKjD,KAAK,WAAW,GAAG,cAAc,CAAC;AAQlC,MAAM,WAAW,cAAc;IAC9B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAA;IACzB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;CACvB;AA8ED,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,cAAc,GAAG,IAAI,CAAC;CAClC,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA+HxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -4,6 +4,8 @@ type __VLS_Props = {
4
4
  selectRange?: boolean;
5
5
  showEndTime?: boolean;
6
6
  allowMilitaryTime?: boolean;
7
+ /** The day the calendar opens on, as `YYYY-MM-DD` */
8
+ defaultDate?: string;
7
9
  defaultHours?: number;
8
10
  defaultMinutes?: number;
9
11
  defaultSeconds?: number;
@@ -12,9 +14,9 @@ type __VLS_Props = {
12
14
  };
13
15
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
16
  "get-date": (args_0: {
15
- selected: Date;
16
- start?: Date | null;
17
- end?: Date | null;
17
+ selected: string;
18
+ start?: string | null;
19
+ end?: string | null;
18
20
  }) => any;
19
21
  "get-time": (args_0: {
20
22
  hours: number;
@@ -30,9 +32,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
30
32
  }) => any;
31
33
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
32
34
  "onGet-date"?: ((args_0: {
33
- selected: Date;
34
- start?: Date | null;
35
- end?: Date | null;
35
+ selected: string;
36
+ start?: string | null;
37
+ end?: string | null;
36
38
  }) => any) | undefined;
37
39
  "onGet-time"?: ((args_0: {
38
40
  hours: number;
@@ -1 +1 @@
1
- {"version":3,"file":"ADateSelection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateSelection.vue"],"names":[],"mappings":"AAwLA,KAAK,WAAW,GAAG;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AAgOF,QAAA,MAAM,YAAY;;kBA5MQ,IAAI;gBAAU,IAAI,GAAG,IAAI;cAAQ,IAAI,GAAG,IAAI;;;eAC/C,MAAM;iBAAW,MAAM;iBAAW,MAAM;kBAAY,MAAM;iBAAW,MAAM,GAAG,MAAM;;;eACnF,IAAI;aAAO,IAAI;iBAAW,MAAM,GAAG,MAAM;;;;kBAFvC,IAAI;gBAAU,IAAI,GAAG,IAAI;cAAQ,IAAI,GAAG,IAAI;;;eAC/C,MAAM;iBAAW,MAAM;iBAAW,MAAM;kBAAY,MAAM;iBAAW,MAAM,GAAG,MAAM;;;eACnF,IAAI;aAAO,IAAI;iBAAW,MAAM,GAAG,MAAM;;kFA6M/D,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"ADateSelection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateSelection.vue"],"names":[],"mappings":"AA8LA,KAAK,WAAW,GAAG;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,qDAAqD;IACrD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AAkOF,QAAA,MAAM,YAAY;;kBA7MQ,MAAM;gBAAU,MAAM,GAAG,IAAI;cAAQ,MAAM,GAAG,IAAI;;;eACrD,MAAM;iBAAW,MAAM;iBAAW,MAAM;kBAAY,MAAM;iBAAW,MAAM,GAAG,MAAM;;;eACnF,IAAI;aAAO,IAAI;iBAAW,MAAM,GAAG,MAAM;;;;kBAFvC,MAAM;gBAAU,MAAM,GAAG,IAAI;cAAQ,MAAM,GAAG,IAAI;;;eACrD,MAAM;iBAAW,MAAM;iBAAW,MAAM;kBAAY,MAAM;iBAAW,MAAM,GAAG,MAAM;;;eACnF,IAAI;aAAO,IAAI;iBAAW,MAAM,GAAG,MAAM;;kFA8M/D,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -4,13 +4,13 @@ type __VLS_Props = ComponentProps & {
4
4
  useSeconds?: boolean;
5
5
  };
6
6
  type __VLS_ModelProps = {
7
- modelValue?: string | Date;
7
+ modelValue?: string | Date | null;
8
8
  };
9
9
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
10
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
- "update:modelValue": (value: string | Date | undefined) => any;
11
+ "update:modelValue": (value: string | Date | null | undefined) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
- "onUpdate:modelValue"?: ((value: string | Date | undefined) => any) | undefined;
13
+ "onUpdate:modelValue"?: ((value: string | Date | null | undefined) => any) | undefined;
14
14
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
15
  declare const _default: typeof __VLS_export;
16
16
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"ADateTime.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateTime.vue"],"names":[],"mappings":"AAmKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAEjD,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AA8FH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAkIxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"ADateTime.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateTime.vue"],"names":[],"mappings":"AA8MA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAGjD,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AA4HH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,CAAC;CACjC,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAwJxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -5,13 +5,13 @@ type __VLS_Props = {
5
5
  useSeconds?: boolean;
6
6
  };
7
7
  type __VLS_ModelProps = {
8
- modelValue?: number;
8
+ modelValue?: string | null;
9
9
  };
10
10
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
11
11
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
- "update:modelValue": (value: number | undefined) => any;
12
+ "update:modelValue": (value: string | null | undefined) => any;
13
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
- "onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
14
+ "onUpdate:modelValue"?: ((value: string | null | undefined) => any) | undefined;
15
15
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  declare const _default: typeof __VLS_export;
17
17
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"ADuration.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADuration.vue"],"names":[],"mappings":"AAkIA,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AAwDF,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA6GxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"ADuration.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADuration.vue"],"names":[],"mappings":"AAkJA,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AAsEF,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA6GxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -1,13 +1,13 @@
1
1
  import { ComponentProps } from '../../types';
2
2
  type __VLS_Props = ComponentProps;
3
3
  type __VLS_ModelProps = {
4
- modelValue?: number;
4
+ modelValue?: number | null;
5
5
  };
6
6
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
7
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
- "update:modelValue": (value: number | undefined) => any;
8
+ "update:modelValue": (value: number | null | undefined) => any;
9
9
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
- "onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
10
+ "onUpdate:modelValue"?: ((value: number | null | undefined) => any) | undefined;
11
11
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
12
  declare const _default: typeof __VLS_export;
13
13
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"ANumericInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ANumericInput.vue"],"names":[],"mappings":"AA0CA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAE5C,KAAK,WAAW,GAAG,cAAc,CAAC;AAWlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAqExD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"ANumericInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ANumericInput.vue"],"names":[],"mappings":"AAgDA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAG5C,KAAK,WAAW,GAAG,cAAc,CAAC;AAgBlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAsExD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}