@spectrum-web-components/number-field 0.35.1-rc.41 → 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 (2) hide show
  1. package/custom-elements.json +844 -0
  2. package/package.json +10 -10
@@ -0,0 +1,844 @@
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}"
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": "valueAsString",
227
+ "type": {
228
+ "text": "string"
229
+ },
230
+ "privacy": "public",
231
+ "description": "Retreive the value of the element parsed to a Number."
232
+ },
233
+ {
234
+ "kind": "field",
235
+ "name": "formattedValue",
236
+ "type": {
237
+ "text": "string"
238
+ },
239
+ "privacy": "public",
240
+ "readonly": true
241
+ },
242
+ {
243
+ "kind": "method",
244
+ "name": "convertValueToNumber",
245
+ "privacy": "private",
246
+ "return": {
247
+ "type": {
248
+ "text": "number"
249
+ }
250
+ },
251
+ "parameters": [
252
+ {
253
+ "name": "value",
254
+ "type": {
255
+ "text": "string"
256
+ }
257
+ }
258
+ ]
259
+ },
260
+ {
261
+ "kind": "field",
262
+ "name": "_step",
263
+ "type": {
264
+ "text": "number"
265
+ },
266
+ "privacy": "private",
267
+ "readonly": true
268
+ },
269
+ {
270
+ "kind": "field",
271
+ "name": "nextChange",
272
+ "type": {
273
+ "text": "number"
274
+ },
275
+ "privacy": "private"
276
+ },
277
+ {
278
+ "kind": "field",
279
+ "name": "changeCount",
280
+ "type": {
281
+ "text": "number"
282
+ },
283
+ "privacy": "private",
284
+ "default": "0"
285
+ },
286
+ {
287
+ "kind": "field",
288
+ "name": "findChange",
289
+ "type": {
290
+ "text": "(event: PointerEvent) => void"
291
+ },
292
+ "privacy": "private"
293
+ },
294
+ {
295
+ "kind": "field",
296
+ "name": "change",
297
+ "type": {
298
+ "text": "(event: PointerEvent) => void"
299
+ },
300
+ "privacy": "private"
301
+ },
302
+ {
303
+ "kind": "field",
304
+ "name": "safty",
305
+ "type": {
306
+ "text": "number"
307
+ },
308
+ "privacy": "private"
309
+ },
310
+ {
311
+ "kind": "field",
312
+ "name": "languageResolver",
313
+ "privacy": "private",
314
+ "default": "new LanguageResolutionController(this)"
315
+ },
316
+ {
317
+ "kind": "method",
318
+ "name": "handlePointerdown",
319
+ "privacy": "private",
320
+ "return": {
321
+ "type": {
322
+ "text": "void"
323
+ }
324
+ },
325
+ "parameters": [
326
+ {
327
+ "name": "event",
328
+ "type": {
329
+ "text": "PointerEvent"
330
+ }
331
+ }
332
+ ]
333
+ },
334
+ {
335
+ "kind": "method",
336
+ "name": "startChange",
337
+ "privacy": "private",
338
+ "return": {
339
+ "type": {
340
+ "text": "void"
341
+ }
342
+ },
343
+ "parameters": [
344
+ {
345
+ "name": "event",
346
+ "type": {
347
+ "text": "PointerEvent"
348
+ }
349
+ }
350
+ ]
351
+ },
352
+ {
353
+ "kind": "method",
354
+ "name": "doChange",
355
+ "privacy": "private",
356
+ "return": {
357
+ "type": {
358
+ "text": "void"
359
+ }
360
+ },
361
+ "parameters": [
362
+ {
363
+ "name": "event",
364
+ "type": {
365
+ "text": "PointerEvent"
366
+ }
367
+ }
368
+ ]
369
+ },
370
+ {
371
+ "kind": "method",
372
+ "name": "handlePointermove",
373
+ "privacy": "private",
374
+ "return": {
375
+ "type": {
376
+ "text": "void"
377
+ }
378
+ },
379
+ "parameters": [
380
+ {
381
+ "name": "event",
382
+ "type": {
383
+ "text": "PointerEvent"
384
+ }
385
+ }
386
+ ]
387
+ },
388
+ {
389
+ "kind": "method",
390
+ "name": "handlePointerup",
391
+ "privacy": "private",
392
+ "return": {
393
+ "type": {
394
+ "text": "void"
395
+ }
396
+ },
397
+ "parameters": [
398
+ {
399
+ "name": "event",
400
+ "type": {
401
+ "text": "PointerEvent"
402
+ }
403
+ }
404
+ ]
405
+ },
406
+ {
407
+ "kind": "method",
408
+ "name": "doNextChange",
409
+ "privacy": "private",
410
+ "return": {
411
+ "type": {
412
+ "text": "number"
413
+ }
414
+ },
415
+ "parameters": [
416
+ {
417
+ "name": "event",
418
+ "type": {
419
+ "text": "PointerEvent"
420
+ }
421
+ }
422
+ ]
423
+ },
424
+ {
425
+ "kind": "method",
426
+ "name": "stepBy",
427
+ "privacy": "private",
428
+ "return": {
429
+ "type": {
430
+ "text": "void"
431
+ }
432
+ },
433
+ "parameters": [
434
+ {
435
+ "name": "count",
436
+ "type": {
437
+ "text": "number"
438
+ }
439
+ }
440
+ ]
441
+ },
442
+ {
443
+ "kind": "method",
444
+ "name": "increment",
445
+ "privacy": "private",
446
+ "return": {
447
+ "type": {
448
+ "text": "void"
449
+ }
450
+ },
451
+ "parameters": [
452
+ {
453
+ "name": "factor",
454
+ "default": "1"
455
+ }
456
+ ]
457
+ },
458
+ {
459
+ "kind": "method",
460
+ "name": "decrement",
461
+ "privacy": "private",
462
+ "return": {
463
+ "type": {
464
+ "text": "void"
465
+ }
466
+ },
467
+ "parameters": [
468
+ {
469
+ "name": "factor",
470
+ "default": "1"
471
+ }
472
+ ]
473
+ },
474
+ {
475
+ "kind": "method",
476
+ "name": "handleKeydown",
477
+ "privacy": "private",
478
+ "return": {
479
+ "type": {
480
+ "text": "void"
481
+ }
482
+ },
483
+ "parameters": [
484
+ {
485
+ "name": "event",
486
+ "type": {
487
+ "text": "KeyboardEvent"
488
+ }
489
+ }
490
+ ]
491
+ },
492
+ {
493
+ "kind": "field",
494
+ "name": "queuedChangeEvent",
495
+ "type": {
496
+ "text": "number"
497
+ },
498
+ "privacy": "private"
499
+ },
500
+ {
501
+ "kind": "method",
502
+ "name": "onScroll",
503
+ "privacy": "protected",
504
+ "return": {
505
+ "type": {
506
+ "text": "void"
507
+ }
508
+ },
509
+ "parameters": [
510
+ {
511
+ "name": "event",
512
+ "type": {
513
+ "text": "WheelEvent"
514
+ }
515
+ }
516
+ ]
517
+ },
518
+ {
519
+ "kind": "method",
520
+ "name": "onFocus",
521
+ "privacy": "protected",
522
+ "return": {
523
+ "type": {
524
+ "text": "void"
525
+ }
526
+ }
527
+ },
528
+ {
529
+ "kind": "method",
530
+ "name": "onBlur",
531
+ "privacy": "protected",
532
+ "return": {
533
+ "type": {
534
+ "text": "void"
535
+ }
536
+ }
537
+ },
538
+ {
539
+ "kind": "method",
540
+ "name": "handleFocusin",
541
+ "privacy": "private",
542
+ "return": {
543
+ "type": {
544
+ "text": "void"
545
+ }
546
+ }
547
+ },
548
+ {
549
+ "kind": "method",
550
+ "name": "handleFocusout",
551
+ "privacy": "private",
552
+ "return": {
553
+ "type": {
554
+ "text": "void"
555
+ }
556
+ }
557
+ },
558
+ {
559
+ "kind": "field",
560
+ "name": "wasIndeterminate",
561
+ "type": {
562
+ "text": "boolean"
563
+ },
564
+ "privacy": "private",
565
+ "default": "false"
566
+ },
567
+ {
568
+ "kind": "field",
569
+ "name": "indeterminateValue",
570
+ "type": {
571
+ "text": "number | undefined"
572
+ },
573
+ "privacy": "private"
574
+ },
575
+ {
576
+ "kind": "method",
577
+ "name": "handleChange",
578
+ "privacy": "protected",
579
+ "return": {
580
+ "type": {
581
+ "text": "void"
582
+ }
583
+ }
584
+ },
585
+ {
586
+ "kind": "method",
587
+ "name": "handleInput",
588
+ "privacy": "protected",
589
+ "return": {
590
+ "type": {
591
+ "text": "void"
592
+ }
593
+ }
594
+ },
595
+ {
596
+ "kind": "method",
597
+ "name": "validateInput",
598
+ "privacy": "private",
599
+ "return": {
600
+ "type": {
601
+ "text": "number"
602
+ }
603
+ },
604
+ "parameters": [
605
+ {
606
+ "name": "value",
607
+ "type": {
608
+ "text": "number"
609
+ }
610
+ }
611
+ ]
612
+ },
613
+ {
614
+ "kind": "field",
615
+ "name": "displayValue",
616
+ "type": {
617
+ "text": "string"
618
+ },
619
+ "privacy": "protected",
620
+ "readonly": true
621
+ },
622
+ {
623
+ "kind": "method",
624
+ "name": "clearNumberFormatterCache",
625
+ "privacy": "protected",
626
+ "return": {
627
+ "type": {
628
+ "text": "void"
629
+ }
630
+ }
631
+ },
632
+ {
633
+ "kind": "field",
634
+ "name": "numberFormatter",
635
+ "type": {
636
+ "text": "NumberFormatter"
637
+ },
638
+ "privacy": "protected",
639
+ "readonly": true
640
+ },
641
+ {
642
+ "kind": "field",
643
+ "name": "_numberFormatter",
644
+ "type": {
645
+ "text": "NumberFormatter | undefined"
646
+ },
647
+ "privacy": "private"
648
+ },
649
+ {
650
+ "kind": "field",
651
+ "name": "_numberFormatterFocused",
652
+ "type": {
653
+ "text": "NumberFormatter | undefined"
654
+ },
655
+ "privacy": "private"
656
+ },
657
+ {
658
+ "kind": "field",
659
+ "name": "numberParser",
660
+ "type": {
661
+ "text": "NumberParser"
662
+ },
663
+ "privacy": "protected",
664
+ "readonly": true
665
+ },
666
+ {
667
+ "kind": "field",
668
+ "name": "applyFocusElementLabel"
669
+ },
670
+ {
671
+ "kind": "field",
672
+ "name": "_numberParser",
673
+ "type": {
674
+ "text": "NumberParser | undefined"
675
+ },
676
+ "privacy": "private"
677
+ },
678
+ {
679
+ "kind": "field",
680
+ "name": "_numberParserFocused",
681
+ "type": {
682
+ "text": "NumberParser | undefined"
683
+ },
684
+ "privacy": "private"
685
+ },
686
+ {
687
+ "kind": "method",
688
+ "name": "renderField",
689
+ "privacy": "protected",
690
+ "return": {
691
+ "type": {
692
+ "text": "TemplateResult"
693
+ }
694
+ }
695
+ }
696
+ ],
697
+ "events": [
698
+ {
699
+ "name": "change",
700
+ "type": {
701
+ "text": "Event"
702
+ }
703
+ },
704
+ {
705
+ "name": "input",
706
+ "type": {
707
+ "text": "Event"
708
+ }
709
+ }
710
+ ],
711
+ "attributes": [
712
+ {
713
+ "name": "focused",
714
+ "type": {
715
+ "text": "boolean"
716
+ },
717
+ "default": "false",
718
+ "fieldName": "focused"
719
+ },
720
+ {
721
+ "name": "format-options",
722
+ "type": {
723
+ "text": "Intl.NumberFormatOptions"
724
+ },
725
+ "default": "{}",
726
+ "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",
727
+ "fieldName": "formatOptions"
728
+ },
729
+ {
730
+ "name": "hide-stepper",
731
+ "type": {
732
+ "text": "boolean"
733
+ },
734
+ "default": "false",
735
+ "description": "Whether the stepper UI is hidden or not.",
736
+ "fieldName": "hideStepper"
737
+ },
738
+ {
739
+ "name": "indeterminate",
740
+ "type": {
741
+ "text": "boolean"
742
+ },
743
+ "default": "false",
744
+ "fieldName": "indeterminate"
745
+ },
746
+ {
747
+ "name": "keyboard-focused",
748
+ "type": {
749
+ "text": "boolean"
750
+ },
751
+ "default": "false",
752
+ "fieldName": "keyboardFocused"
753
+ },
754
+ {
755
+ "name": "max",
756
+ "type": {
757
+ "text": "number | undefined"
758
+ },
759
+ "fieldName": "max"
760
+ },
761
+ {
762
+ "name": "min",
763
+ "type": {
764
+ "text": "number | undefined"
765
+ },
766
+ "fieldName": "min"
767
+ },
768
+ {
769
+ "name": "step",
770
+ "type": {
771
+ "text": "number | undefined"
772
+ },
773
+ "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.",
774
+ "fieldName": "step"
775
+ },
776
+ {
777
+ "name": "step-modifier",
778
+ "type": {
779
+ "text": "number"
780
+ },
781
+ "default": "10",
782
+ "fieldName": "stepModifier"
783
+ },
784
+ {
785
+ "name": "value",
786
+ "type": {
787
+ "text": "number"
788
+ },
789
+ "fieldName": "value"
790
+ }
791
+ ],
792
+ "superclass": {
793
+ "name": "TextfieldBase",
794
+ "package": "@spectrum-web-components/textfield"
795
+ },
796
+ "tagName": "sp-number-field",
797
+ "customElement": true
798
+ }
799
+ ],
800
+ "exports": [
801
+ {
802
+ "kind": "js",
803
+ "name": "FRAMES_PER_CHANGE",
804
+ "declaration": {
805
+ "name": "FRAMES_PER_CHANGE",
806
+ "module": "src/NumberField.js"
807
+ }
808
+ },
809
+ {
810
+ "kind": "js",
811
+ "name": "CHANGE_DEBOUNCE_MS",
812
+ "declaration": {
813
+ "name": "CHANGE_DEBOUNCE_MS",
814
+ "module": "src/NumberField.js"
815
+ }
816
+ },
817
+ {
818
+ "kind": "js",
819
+ "name": "indeterminatePlaceholder",
820
+ "declaration": {
821
+ "name": "indeterminatePlaceholder",
822
+ "module": "src/NumberField.js"
823
+ }
824
+ },
825
+ {
826
+ "kind": "js",
827
+ "name": "remapMultiByteCharacters",
828
+ "declaration": {
829
+ "name": "remapMultiByteCharacters",
830
+ "module": "src/NumberField.js"
831
+ }
832
+ },
833
+ {
834
+ "kind": "js",
835
+ "name": "NumberField",
836
+ "declaration": {
837
+ "name": "NumberField",
838
+ "module": "src/NumberField.js"
839
+ }
840
+ }
841
+ ]
842
+ }
843
+ ]
844
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/number-field",
3
- "version": "0.35.1-rc.41+6ac4e82f0",
3
+ "version": "0.36.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -58,17 +58,17 @@
58
58
  ],
59
59
  "dependencies": {
60
60
  "@internationalized/number": "^3.1.0",
61
- "@spectrum-web-components/action-button": "^0.35.1-rc.41+6ac4e82f0",
62
- "@spectrum-web-components/base": "^0.35.1-rc.41+6ac4e82f0",
63
- "@spectrum-web-components/icon": "^0.35.1-rc.41+6ac4e82f0",
64
- "@spectrum-web-components/icons-ui": "^0.35.1-rc.41+6ac4e82f0",
65
- "@spectrum-web-components/reactive-controllers": "^0.35.1-rc.41+6ac4e82f0",
66
- "@spectrum-web-components/shared": "^0.35.1-rc.41+6ac4e82f0",
67
- "@spectrum-web-components/textfield": "^0.35.1-rc.41+6ac4e82f0"
61
+ "@spectrum-web-components/action-button": "^0.36.0",
62
+ "@spectrum-web-components/base": "^0.36.0",
63
+ "@spectrum-web-components/icon": "^0.36.0",
64
+ "@spectrum-web-components/icons-ui": "^0.36.0",
65
+ "@spectrum-web-components/reactive-controllers": "^0.36.0",
66
+ "@spectrum-web-components/shared": "^0.36.0",
67
+ "@spectrum-web-components/textfield": "^0.36.0"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@formatjs/intl-numberformat": "^8.3.5",
71
- "@spectrum-css/stepper": "^4.0.43"
71
+ "@spectrum-css/stepper": "^4.0.47"
72
72
  },
73
73
  "types": "./src/index.d.ts",
74
74
  "customElements": "custom-elements.json",
@@ -76,5 +76,5 @@
76
76
  "./sp-*.js",
77
77
  "./**/*.dev.js"
78
78
  ],
79
- "gitHead": "6ac4e82f0a4a68eb50b5dd4b96a562060162ac6f"
79
+ "gitHead": "a532ff8a410abeefb54d9638a2316ae82570566e"
80
80
  }