@spectrum-web-components/number-field 0.49.0-beta.2 → 0.49.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.
@@ -0,0 +1,998 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-number-field.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "custom-element-definition",
12
+ "name": "sp-number-field",
13
+ "declaration": {
14
+ "name": "NumberField",
15
+ "module": "/src/NumberField.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/NumberField.js",
23
+ "declarations": [
24
+ {
25
+ "kind": "variable",
26
+ "name": "FRAMES_PER_CHANGE",
27
+ "type": {
28
+ "text": "number"
29
+ },
30
+ "default": "5"
31
+ },
32
+ {
33
+ "kind": "variable",
34
+ "name": "CHANGE_DEBOUNCE_MS",
35
+ "type": {
36
+ "text": "number"
37
+ },
38
+ "default": "100"
39
+ },
40
+ {
41
+ "kind": "variable",
42
+ "name": "indeterminatePlaceholder",
43
+ "type": {
44
+ "text": "string"
45
+ },
46
+ "default": "'-'"
47
+ },
48
+ {
49
+ "kind": "variable",
50
+ "name": "remapMultiByteCharacters",
51
+ "type": {
52
+ "text": "Record<string, string>"
53
+ },
54
+ "default": "{\n '1': '1',\n '2': '2',\n '3': '3',\n '4': '4',\n '5': '5',\n '6': '6',\n '7': '7',\n '8': '8',\n '9': '9',\n '0': '0',\n '、': ',',\n ',': ',',\n '。': '.',\n '.': '.',\n '%': '%',\n '+': '+',\n ー: '-',\n 一: '1',\n 二: '2',\n 三: '3',\n 四: '4',\n 五: '5',\n 六: '6',\n 七: '7',\n 八: '8',\n 九: '9',\n 零: '0',\n}"
55
+ },
56
+ {
57
+ "kind": "class",
58
+ "description": "",
59
+ "name": "NumberField",
60
+ "slots": [
61
+ {
62
+ "description": "default or non-negative help text to associate to your form element",
63
+ "name": "help-text"
64
+ },
65
+ {
66
+ "description": "negative help text to associate to your form element when `invalid`",
67
+ "name": "negative-help-text"
68
+ }
69
+ ],
70
+ "members": [
71
+ {
72
+ "kind": "field",
73
+ "name": "buttons",
74
+ "type": {
75
+ "text": "HTMLDivElement"
76
+ },
77
+ "privacy": "private"
78
+ },
79
+ {
80
+ "kind": "field",
81
+ "name": "focused",
82
+ "type": {
83
+ "text": "boolean"
84
+ },
85
+ "privacy": "public",
86
+ "default": "false",
87
+ "attribute": "focused",
88
+ "reflects": true
89
+ },
90
+ {
91
+ "kind": "field",
92
+ "name": "_forcedUnit",
93
+ "type": {
94
+ "text": "string"
95
+ },
96
+ "default": "''"
97
+ },
98
+ {
99
+ "kind": "field",
100
+ "name": "formatOptions",
101
+ "type": {
102
+ "text": "Intl.NumberFormatOptions"
103
+ },
104
+ "privacy": "public",
105
+ "default": "{}",
106
+ "description": "An `&lt;sp-number-field&gt;` element will process its numeric value with\n`new Intl.NumberFormat(this.resolvedLanguage, this.formatOptions).format(this.valueAsNumber)`\nin order to prepare it for visual delivery in the input. In order to customize this\nprocessing supply your own `Intl.NumberFormatOptions` object here.\n\nSee: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat",
107
+ "attribute": "format-options"
108
+ },
109
+ {
110
+ "kind": "field",
111
+ "name": "hideStepper",
112
+ "type": {
113
+ "text": "boolean"
114
+ },
115
+ "privacy": "public",
116
+ "default": "false",
117
+ "description": "Whether the stepper UI is hidden or not.",
118
+ "attribute": "hide-stepper",
119
+ "reflects": true
120
+ },
121
+ {
122
+ "kind": "field",
123
+ "name": "indeterminate",
124
+ "type": {
125
+ "text": "boolean"
126
+ },
127
+ "privacy": "public",
128
+ "default": "false",
129
+ "attribute": "indeterminate",
130
+ "reflects": true
131
+ },
132
+ {
133
+ "kind": "field",
134
+ "name": "keyboardFocused",
135
+ "type": {
136
+ "text": "boolean"
137
+ },
138
+ "privacy": "public",
139
+ "default": "false",
140
+ "attribute": "keyboard-focused",
141
+ "reflects": true
142
+ },
143
+ {
144
+ "kind": "field",
145
+ "name": "max",
146
+ "type": {
147
+ "text": "number | undefined"
148
+ },
149
+ "privacy": "public",
150
+ "attribute": "max"
151
+ },
152
+ {
153
+ "kind": "field",
154
+ "name": "min",
155
+ "type": {
156
+ "text": "number | undefined"
157
+ },
158
+ "privacy": "public",
159
+ "attribute": "min"
160
+ },
161
+ {
162
+ "kind": "field",
163
+ "name": "step",
164
+ "type": {
165
+ "text": "number | undefined"
166
+ },
167
+ "privacy": "public",
168
+ "description": "The distance by which to alter the value of the element when taking a \"step\".\n\nWhen `this.formatOptions.style === 'percentage'` the default step will be\nset to 0.01 unless otherwise supplied to the element.",
169
+ "attribute": "step"
170
+ },
171
+ {
172
+ "kind": "field",
173
+ "name": "managedInput",
174
+ "type": {
175
+ "text": "boolean"
176
+ },
177
+ "privacy": "public",
178
+ "default": "false"
179
+ },
180
+ {
181
+ "kind": "field",
182
+ "name": "stepModifier",
183
+ "type": {
184
+ "text": "number"
185
+ },
186
+ "privacy": "public",
187
+ "default": "10",
188
+ "attribute": "step-modifier",
189
+ "reflects": true
190
+ },
191
+ {
192
+ "kind": "field",
193
+ "name": "value",
194
+ "privacy": "public",
195
+ "type": {
196
+ "text": "number"
197
+ },
198
+ "attribute": "value"
199
+ },
200
+ {
201
+ "kind": "field",
202
+ "name": "inputValue",
203
+ "type": {
204
+ "text": "string"
205
+ },
206
+ "privacy": "private",
207
+ "readonly": true
208
+ },
209
+ {
210
+ "kind": "field",
211
+ "name": "_value",
212
+ "privacy": "public",
213
+ "default": "NaN"
214
+ },
215
+ {
216
+ "kind": "field",
217
+ "name": "_trackingValue",
218
+ "type": {
219
+ "text": "string"
220
+ },
221
+ "privacy": "private",
222
+ "default": "''"
223
+ },
224
+ {
225
+ "kind": "field",
226
+ "name": "lastCommitedValue",
227
+ "type": {
228
+ "text": "number | undefined"
229
+ },
230
+ "privacy": "private"
231
+ },
232
+ {
233
+ "kind": "method",
234
+ "name": "setValue",
235
+ "privacy": "private",
236
+ "return": {
237
+ "type": {
238
+ "text": "void"
239
+ }
240
+ },
241
+ "parameters": [
242
+ {
243
+ "name": "newValue",
244
+ "default": "this.value",
245
+ "type": {
246
+ "text": "number"
247
+ }
248
+ }
249
+ ]
250
+ },
251
+ {
252
+ "kind": "field",
253
+ "name": "valueAsString",
254
+ "type": {
255
+ "text": "string"
256
+ },
257
+ "privacy": "public",
258
+ "description": "Retreive the value of the element parsed to a Number."
259
+ },
260
+ {
261
+ "kind": "field",
262
+ "name": "formattedValue",
263
+ "type": {
264
+ "text": "string"
265
+ },
266
+ "privacy": "public",
267
+ "readonly": true
268
+ },
269
+ {
270
+ "kind": "field",
271
+ "name": "decimalsChars",
272
+ "privacy": "private",
273
+ "default": "new Set(['.', ','])"
274
+ },
275
+ {
276
+ "kind": "field",
277
+ "name": "valueBeforeFocus",
278
+ "type": {
279
+ "text": "string"
280
+ },
281
+ "privacy": "private",
282
+ "default": "''"
283
+ },
284
+ {
285
+ "kind": "field",
286
+ "name": "isIntentDecimal",
287
+ "type": {
288
+ "text": "boolean"
289
+ },
290
+ "privacy": "private",
291
+ "default": "false"
292
+ },
293
+ {
294
+ "kind": "method",
295
+ "name": "convertValueToNumber",
296
+ "privacy": "private",
297
+ "return": {
298
+ "type": {
299
+ "text": "number"
300
+ }
301
+ },
302
+ "parameters": [
303
+ {
304
+ "name": "inputValue",
305
+ "type": {
306
+ "text": "string"
307
+ }
308
+ }
309
+ ]
310
+ },
311
+ {
312
+ "kind": "field",
313
+ "name": "_step",
314
+ "type": {
315
+ "text": "number"
316
+ },
317
+ "privacy": "private",
318
+ "readonly": true
319
+ },
320
+ {
321
+ "kind": "field",
322
+ "name": "nextChange",
323
+ "type": {
324
+ "text": "number"
325
+ },
326
+ "privacy": "private"
327
+ },
328
+ {
329
+ "kind": "field",
330
+ "name": "changeCount",
331
+ "type": {
332
+ "text": "number"
333
+ },
334
+ "privacy": "private",
335
+ "default": "0"
336
+ },
337
+ {
338
+ "kind": "field",
339
+ "name": "findChange",
340
+ "type": {
341
+ "text": "(event: PointerEvent) => void"
342
+ },
343
+ "privacy": "private"
344
+ },
345
+ {
346
+ "kind": "field",
347
+ "name": "change",
348
+ "type": {
349
+ "text": "(event: PointerEvent) => void"
350
+ },
351
+ "privacy": "private"
352
+ },
353
+ {
354
+ "kind": "field",
355
+ "name": "safty",
356
+ "type": {
357
+ "text": "number"
358
+ },
359
+ "privacy": "private"
360
+ },
361
+ {
362
+ "kind": "field",
363
+ "name": "languageResolver",
364
+ "privacy": "private",
365
+ "default": "new LanguageResolutionController(this)"
366
+ },
367
+ {
368
+ "kind": "method",
369
+ "name": "handlePointerdown",
370
+ "privacy": "private",
371
+ "return": {
372
+ "type": {
373
+ "text": "void"
374
+ }
375
+ },
376
+ "parameters": [
377
+ {
378
+ "name": "event",
379
+ "type": {
380
+ "text": "PointerEvent"
381
+ }
382
+ }
383
+ ]
384
+ },
385
+ {
386
+ "kind": "method",
387
+ "name": "startChange",
388
+ "privacy": "private",
389
+ "return": {
390
+ "type": {
391
+ "text": "void"
392
+ }
393
+ },
394
+ "parameters": [
395
+ {
396
+ "name": "event",
397
+ "type": {
398
+ "text": "PointerEvent"
399
+ }
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "kind": "method",
405
+ "name": "doChange",
406
+ "privacy": "private",
407
+ "return": {
408
+ "type": {
409
+ "text": "void"
410
+ }
411
+ },
412
+ "parameters": [
413
+ {
414
+ "name": "event",
415
+ "type": {
416
+ "text": "PointerEvent"
417
+ }
418
+ }
419
+ ]
420
+ },
421
+ {
422
+ "kind": "method",
423
+ "name": "handlePointermove",
424
+ "privacy": "private",
425
+ "return": {
426
+ "type": {
427
+ "text": "void"
428
+ }
429
+ },
430
+ "parameters": [
431
+ {
432
+ "name": "event",
433
+ "type": {
434
+ "text": "PointerEvent"
435
+ }
436
+ }
437
+ ]
438
+ },
439
+ {
440
+ "kind": "method",
441
+ "name": "handlePointerup",
442
+ "privacy": "private",
443
+ "return": {
444
+ "type": {
445
+ "text": "void"
446
+ }
447
+ },
448
+ "parameters": [
449
+ {
450
+ "name": "event",
451
+ "type": {
452
+ "text": "PointerEvent"
453
+ }
454
+ }
455
+ ]
456
+ },
457
+ {
458
+ "kind": "method",
459
+ "name": "doNextChange",
460
+ "privacy": "private",
461
+ "return": {
462
+ "type": {
463
+ "text": "number"
464
+ }
465
+ },
466
+ "parameters": [
467
+ {
468
+ "name": "event",
469
+ "type": {
470
+ "text": "PointerEvent"
471
+ }
472
+ }
473
+ ]
474
+ },
475
+ {
476
+ "kind": "method",
477
+ "name": "stepBy",
478
+ "privacy": "private",
479
+ "return": {
480
+ "type": {
481
+ "text": "void"
482
+ }
483
+ },
484
+ "parameters": [
485
+ {
486
+ "name": "count",
487
+ "type": {
488
+ "text": "number"
489
+ }
490
+ }
491
+ ]
492
+ },
493
+ {
494
+ "kind": "method",
495
+ "name": "increment",
496
+ "privacy": "private",
497
+ "return": {
498
+ "type": {
499
+ "text": "void"
500
+ }
501
+ },
502
+ "parameters": [
503
+ {
504
+ "name": "factor",
505
+ "default": "1"
506
+ }
507
+ ]
508
+ },
509
+ {
510
+ "kind": "method",
511
+ "name": "decrement",
512
+ "privacy": "private",
513
+ "return": {
514
+ "type": {
515
+ "text": "void"
516
+ }
517
+ },
518
+ "parameters": [
519
+ {
520
+ "name": "factor",
521
+ "default": "1"
522
+ }
523
+ ]
524
+ },
525
+ {
526
+ "kind": "method",
527
+ "name": "handleKeydown",
528
+ "privacy": "private",
529
+ "return": {
530
+ "type": {
531
+ "text": "void"
532
+ }
533
+ },
534
+ "parameters": [
535
+ {
536
+ "name": "event",
537
+ "type": {
538
+ "text": "KeyboardEvent"
539
+ }
540
+ }
541
+ ]
542
+ },
543
+ {
544
+ "kind": "field",
545
+ "name": "queuedChangeEvent",
546
+ "type": {
547
+ "text": "number"
548
+ },
549
+ "privacy": "private"
550
+ },
551
+ {
552
+ "kind": "method",
553
+ "name": "onScroll",
554
+ "privacy": "protected",
555
+ "return": {
556
+ "type": {
557
+ "text": "void"
558
+ }
559
+ },
560
+ "parameters": [
561
+ {
562
+ "name": "event",
563
+ "type": {
564
+ "text": "WheelEvent"
565
+ }
566
+ }
567
+ ]
568
+ },
569
+ {
570
+ "kind": "method",
571
+ "name": "onFocus",
572
+ "privacy": "protected",
573
+ "return": {
574
+ "type": {
575
+ "text": "void"
576
+ }
577
+ }
578
+ },
579
+ {
580
+ "kind": "method",
581
+ "name": "onBlur",
582
+ "privacy": "protected",
583
+ "return": {
584
+ "type": {
585
+ "text": "void"
586
+ }
587
+ },
588
+ "parameters": [
589
+ {
590
+ "name": "_event",
591
+ "type": {
592
+ "text": "FocusEvent"
593
+ }
594
+ }
595
+ ]
596
+ },
597
+ {
598
+ "kind": "method",
599
+ "name": "handleFocusin",
600
+ "privacy": "private",
601
+ "return": {
602
+ "type": {
603
+ "text": "void"
604
+ }
605
+ }
606
+ },
607
+ {
608
+ "kind": "method",
609
+ "name": "handleFocusout",
610
+ "privacy": "private",
611
+ "return": {
612
+ "type": {
613
+ "text": "void"
614
+ }
615
+ }
616
+ },
617
+ {
618
+ "kind": "field",
619
+ "name": "wasIndeterminate",
620
+ "type": {
621
+ "text": "boolean"
622
+ },
623
+ "privacy": "private",
624
+ "default": "false"
625
+ },
626
+ {
627
+ "kind": "field",
628
+ "name": "indeterminateValue",
629
+ "type": {
630
+ "text": "number | undefined"
631
+ },
632
+ "privacy": "private"
633
+ },
634
+ {
635
+ "kind": "method",
636
+ "name": "handleChange",
637
+ "privacy": "protected",
638
+ "return": {
639
+ "type": {
640
+ "text": "void"
641
+ }
642
+ }
643
+ },
644
+ {
645
+ "kind": "method",
646
+ "name": "handleCompositionStart",
647
+ "privacy": "protected",
648
+ "return": {
649
+ "type": {
650
+ "text": "void"
651
+ }
652
+ }
653
+ },
654
+ {
655
+ "kind": "method",
656
+ "name": "handleCompositionEnd",
657
+ "privacy": "protected",
658
+ "return": {
659
+ "type": {
660
+ "text": "void"
661
+ }
662
+ }
663
+ },
664
+ {
665
+ "kind": "field",
666
+ "name": "hasRecentlyReceivedPointerDown",
667
+ "type": {
668
+ "text": "boolean"
669
+ },
670
+ "privacy": "private",
671
+ "default": "false"
672
+ },
673
+ {
674
+ "kind": "method",
675
+ "name": "handleInputElementPointerdown",
676
+ "privacy": "protected",
677
+ "return": {
678
+ "type": {
679
+ "text": "void"
680
+ }
681
+ }
682
+ },
683
+ {
684
+ "kind": "method",
685
+ "name": "handleInput",
686
+ "privacy": "protected",
687
+ "return": {
688
+ "type": {
689
+ "text": "void"
690
+ }
691
+ },
692
+ "parameters": [
693
+ {
694
+ "name": "event",
695
+ "type": {
696
+ "text": "InputEvent"
697
+ }
698
+ }
699
+ ]
700
+ },
701
+ {
702
+ "kind": "method",
703
+ "name": "valueWithLimits",
704
+ "privacy": "private",
705
+ "return": {
706
+ "type": {
707
+ "text": "number"
708
+ }
709
+ },
710
+ "parameters": [
711
+ {
712
+ "name": "nextValue",
713
+ "type": {
714
+ "text": "number"
715
+ }
716
+ }
717
+ ]
718
+ },
719
+ {
720
+ "kind": "method",
721
+ "name": "validateInput",
722
+ "privacy": "private",
723
+ "return": {
724
+ "type": {
725
+ "text": "number"
726
+ }
727
+ },
728
+ "parameters": [
729
+ {
730
+ "name": "value",
731
+ "type": {
732
+ "text": "number"
733
+ }
734
+ }
735
+ ]
736
+ },
737
+ {
738
+ "kind": "field",
739
+ "name": "displayValue",
740
+ "type": {
741
+ "text": "string"
742
+ },
743
+ "privacy": "protected",
744
+ "readonly": true
745
+ },
746
+ {
747
+ "kind": "method",
748
+ "name": "clearNumberFormatterCache",
749
+ "privacy": "protected",
750
+ "return": {
751
+ "type": {
752
+ "text": "void"
753
+ }
754
+ }
755
+ },
756
+ {
757
+ "kind": "field",
758
+ "name": "numberFormatter",
759
+ "type": {
760
+ "text": "NumberFormatter"
761
+ },
762
+ "privacy": "protected",
763
+ "readonly": true
764
+ },
765
+ {
766
+ "kind": "method",
767
+ "name": "clearValueFormatterCache",
768
+ "privacy": "protected",
769
+ "return": {
770
+ "type": {
771
+ "text": "void"
772
+ }
773
+ }
774
+ },
775
+ {
776
+ "kind": "field",
777
+ "name": "valueFormatter",
778
+ "type": {
779
+ "text": "NumberFormatter"
780
+ },
781
+ "privacy": "protected",
782
+ "readonly": true
783
+ },
784
+ {
785
+ "kind": "field",
786
+ "name": "_numberFormatter",
787
+ "type": {
788
+ "text": "NumberFormatter | undefined"
789
+ },
790
+ "privacy": "private"
791
+ },
792
+ {
793
+ "kind": "field",
794
+ "name": "_numberFormatterFocused",
795
+ "type": {
796
+ "text": "NumberFormatter | undefined"
797
+ },
798
+ "privacy": "private"
799
+ },
800
+ {
801
+ "kind": "field",
802
+ "name": "_valueFormatter",
803
+ "type": {
804
+ "text": "NumberFormatter | undefined"
805
+ },
806
+ "privacy": "private"
807
+ },
808
+ {
809
+ "kind": "field",
810
+ "name": "numberParser",
811
+ "type": {
812
+ "text": "NumberParser"
813
+ },
814
+ "privacy": "protected",
815
+ "readonly": true
816
+ },
817
+ {
818
+ "kind": "field",
819
+ "name": "applyFocusElementLabel"
820
+ },
821
+ {
822
+ "kind": "field",
823
+ "name": "_numberParser",
824
+ "type": {
825
+ "text": "NumberParser | undefined"
826
+ },
827
+ "privacy": "private"
828
+ },
829
+ {
830
+ "kind": "field",
831
+ "name": "_numberParserFocused",
832
+ "type": {
833
+ "text": "NumberParser | undefined"
834
+ },
835
+ "privacy": "private"
836
+ },
837
+ {
838
+ "kind": "method",
839
+ "name": "renderField",
840
+ "privacy": "protected",
841
+ "return": {
842
+ "type": {
843
+ "text": "TemplateResult"
844
+ }
845
+ }
846
+ },
847
+ {
848
+ "kind": "field",
849
+ "name": "isComposing",
850
+ "type": {
851
+ "text": "boolean"
852
+ },
853
+ "privacy": "private",
854
+ "default": "false"
855
+ }
856
+ ],
857
+ "events": [
858
+ {
859
+ "name": "change",
860
+ "type": {
861
+ "text": "Event"
862
+ }
863
+ }
864
+ ],
865
+ "attributes": [
866
+ {
867
+ "name": "focused",
868
+ "type": {
869
+ "text": "boolean"
870
+ },
871
+ "default": "false",
872
+ "fieldName": "focused"
873
+ },
874
+ {
875
+ "name": "format-options",
876
+ "type": {
877
+ "text": "Intl.NumberFormatOptions"
878
+ },
879
+ "default": "{}",
880
+ "description": "An `&lt;sp-number-field&gt;` element will process its numeric value with\n`new Intl.NumberFormat(this.resolvedLanguage, this.formatOptions).format(this.valueAsNumber)`\nin order to prepare it for visual delivery in the input. In order to customize this\nprocessing supply your own `Intl.NumberFormatOptions` object here.\n\nSee: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat",
881
+ "fieldName": "formatOptions"
882
+ },
883
+ {
884
+ "name": "hide-stepper",
885
+ "type": {
886
+ "text": "boolean"
887
+ },
888
+ "default": "false",
889
+ "description": "Whether the stepper UI is hidden or not.",
890
+ "fieldName": "hideStepper"
891
+ },
892
+ {
893
+ "name": "indeterminate",
894
+ "type": {
895
+ "text": "boolean"
896
+ },
897
+ "default": "false",
898
+ "fieldName": "indeterminate"
899
+ },
900
+ {
901
+ "name": "keyboard-focused",
902
+ "type": {
903
+ "text": "boolean"
904
+ },
905
+ "default": "false",
906
+ "fieldName": "keyboardFocused"
907
+ },
908
+ {
909
+ "name": "max",
910
+ "type": {
911
+ "text": "number | undefined"
912
+ },
913
+ "fieldName": "max"
914
+ },
915
+ {
916
+ "name": "min",
917
+ "type": {
918
+ "text": "number | undefined"
919
+ },
920
+ "fieldName": "min"
921
+ },
922
+ {
923
+ "name": "step",
924
+ "type": {
925
+ "text": "number | undefined"
926
+ },
927
+ "description": "The distance by which to alter the value of the element when taking a \"step\".\n\nWhen `this.formatOptions.style === 'percentage'` the default step will be\nset to 0.01 unless otherwise supplied to the element.",
928
+ "fieldName": "step"
929
+ },
930
+ {
931
+ "name": "step-modifier",
932
+ "type": {
933
+ "text": "number"
934
+ },
935
+ "default": "10",
936
+ "fieldName": "stepModifier"
937
+ },
938
+ {
939
+ "name": "value",
940
+ "type": {
941
+ "text": "number"
942
+ },
943
+ "fieldName": "value"
944
+ }
945
+ ],
946
+ "superclass": {
947
+ "name": "TextfieldBase",
948
+ "package": "@spectrum-web-components/textfield"
949
+ },
950
+ "tagName": "sp-number-field",
951
+ "customElement": true
952
+ }
953
+ ],
954
+ "exports": [
955
+ {
956
+ "kind": "js",
957
+ "name": "FRAMES_PER_CHANGE",
958
+ "declaration": {
959
+ "name": "FRAMES_PER_CHANGE",
960
+ "module": "src/NumberField.js"
961
+ }
962
+ },
963
+ {
964
+ "kind": "js",
965
+ "name": "CHANGE_DEBOUNCE_MS",
966
+ "declaration": {
967
+ "name": "CHANGE_DEBOUNCE_MS",
968
+ "module": "src/NumberField.js"
969
+ }
970
+ },
971
+ {
972
+ "kind": "js",
973
+ "name": "indeterminatePlaceholder",
974
+ "declaration": {
975
+ "name": "indeterminatePlaceholder",
976
+ "module": "src/NumberField.js"
977
+ }
978
+ },
979
+ {
980
+ "kind": "js",
981
+ "name": "remapMultiByteCharacters",
982
+ "declaration": {
983
+ "name": "remapMultiByteCharacters",
984
+ "module": "src/NumberField.js"
985
+ }
986
+ },
987
+ {
988
+ "kind": "js",
989
+ "name": "NumberField",
990
+ "declaration": {
991
+ "name": "NumberField",
992
+ "module": "src/NumberField.js"
993
+ }
994
+ }
995
+ ]
996
+ }
997
+ ]
998
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/number-field",
3
- "version": "0.49.0-beta.2",
3
+ "version": "0.49.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -58,13 +58,13 @@
58
58
  ],
59
59
  "dependencies": {
60
60
  "@internationalized/number": "^3.1.0",
61
- "@spectrum-web-components/base": "^0.49.0-beta.2",
62
- "@spectrum-web-components/icon": "^0.49.0-beta.2",
63
- "@spectrum-web-components/icons-ui": "^0.49.0-beta.2",
64
- "@spectrum-web-components/infield-button": "^0.49.0-beta.2",
65
- "@spectrum-web-components/reactive-controllers": "^0.49.0-beta.2",
66
- "@spectrum-web-components/shared": "^0.49.0-beta.2",
67
- "@spectrum-web-components/textfield": "^0.49.0-beta.2"
61
+ "@spectrum-web-components/base": "^0.49.0",
62
+ "@spectrum-web-components/icon": "^0.49.0",
63
+ "@spectrum-web-components/icons-ui": "^0.49.0",
64
+ "@spectrum-web-components/infield-button": "^0.49.0",
65
+ "@spectrum-web-components/reactive-controllers": "^0.49.0",
66
+ "@spectrum-web-components/shared": "^0.49.0",
67
+ "@spectrum-web-components/textfield": "^0.49.0"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@formatjs/intl-numberformat": "^8.3.5",
@@ -76,5 +76,5 @@
76
76
  "./sp-*.js",
77
77
  "./**/*.dev.js"
78
78
  ],
79
- "gitHead": "2a8752a182e31dfd71c010b72bece20b0b5d1c9e"
79
+ "gitHead": "088e84caa1e2f723d735b011608ca0a3411e2149"
80
80
  }