@genesislcap/foundation-utils 14.461.2-GENC-1346.1 → 14.461.2-GENC-1346.2

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/dist/custom-elements.json +352 -352
  2. package/package.json +11 -11
@@ -209,6 +209,261 @@
209
209
  }
210
210
  ]
211
211
  },
212
+ {
213
+ "kind": "javascript-module",
214
+ "path": "src/decorators/index.ts",
215
+ "declarations": [],
216
+ "exports": [
217
+ {
218
+ "kind": "js",
219
+ "name": "*",
220
+ "declaration": {
221
+ "name": "*",
222
+ "package": "./renderOnChange"
223
+ }
224
+ }
225
+ ]
226
+ },
227
+ {
228
+ "kind": "javascript-module",
229
+ "path": "src/decorators/renderOnChange.ts",
230
+ "declarations": [
231
+ {
232
+ "kind": "function",
233
+ "name": "renderOnChange",
234
+ "parameters": [
235
+ {
236
+ "name": "target",
237
+ "type": {
238
+ "text": "FASTElement & { render(): void }"
239
+ },
240
+ "description": "The target to define the property change handler on."
241
+ },
242
+ {
243
+ "name": "name",
244
+ "type": {
245
+ "text": "string"
246
+ },
247
+ "description": "The property name."
248
+ }
249
+ ],
250
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
251
+ "privacy": "public"
252
+ }
253
+ ],
254
+ "exports": [
255
+ {
256
+ "kind": "js",
257
+ "name": "renderOnChange",
258
+ "declaration": {
259
+ "name": "renderOnChange",
260
+ "module": "src/decorators/renderOnChange.ts"
261
+ }
262
+ }
263
+ ]
264
+ },
265
+ {
266
+ "kind": "javascript-module",
267
+ "path": "src/design-system/design-system.ts",
268
+ "declarations": [
269
+ {
270
+ "kind": "function",
271
+ "name": "assureDesignSystem",
272
+ "return": {
273
+ "type": {
274
+ "text": "DesignSystemModule"
275
+ }
276
+ },
277
+ "parameters": [
278
+ {
279
+ "name": "module",
280
+ "type": {
281
+ "text": "DesignSystemModule"
282
+ }
283
+ }
284
+ ],
285
+ "description": "assureDesignSystem.",
286
+ "privacy": "public"
287
+ },
288
+ {
289
+ "kind": "function",
290
+ "name": "getCurrentDesignSystem",
291
+ "return": {
292
+ "type": {
293
+ "text": ""
294
+ }
295
+ },
296
+ "parameters": [
297
+ {
298
+ "name": "element",
299
+ "type": {
300
+ "text": "HTMLElement"
301
+ },
302
+ "description": "The starting HTML element"
303
+ },
304
+ {
305
+ "name": "fallbackPrefix",
306
+ "type": {
307
+ "text": "string"
308
+ },
309
+ "description": "The prefix to fallback to if the provider is not available"
310
+ }
311
+ ],
312
+ "description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
313
+ "privacy": "public"
314
+ },
315
+ {
316
+ "kind": "function",
317
+ "name": "getCurrentDesignSystemPrefix",
318
+ "return": {
319
+ "type": {
320
+ "text": ""
321
+ }
322
+ },
323
+ "parameters": [
324
+ {
325
+ "name": "element",
326
+ "type": {
327
+ "text": "HTMLElement"
328
+ },
329
+ "description": "The starting HTML element"
330
+ },
331
+ {
332
+ "name": "fallbackPrefix",
333
+ "type": {
334
+ "text": "string"
335
+ },
336
+ "description": "The prefix to fallback to if the provider is not available"
337
+ }
338
+ ],
339
+ "description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
340
+ "privacy": "public"
341
+ }
342
+ ],
343
+ "exports": [
344
+ {
345
+ "kind": "js",
346
+ "name": "assureDesignSystem",
347
+ "declaration": {
348
+ "name": "assureDesignSystem",
349
+ "module": "src/design-system/design-system.ts"
350
+ }
351
+ },
352
+ {
353
+ "kind": "js",
354
+ "name": "getCurrentDesignSystem",
355
+ "declaration": {
356
+ "name": "getCurrentDesignSystem",
357
+ "module": "src/design-system/design-system.ts"
358
+ }
359
+ },
360
+ {
361
+ "kind": "js",
362
+ "name": "getCurrentDesignSystemPrefix",
363
+ "declaration": {
364
+ "name": "getCurrentDesignSystemPrefix",
365
+ "module": "src/design-system/design-system.ts"
366
+ }
367
+ }
368
+ ]
369
+ },
370
+ {
371
+ "kind": "javascript-module",
372
+ "path": "src/design-system/editable-elements.ts",
373
+ "declarations": [
374
+ {
375
+ "kind": "variable",
376
+ "name": "BASE_EDITABLE_ELEMENT_SELECTORS",
377
+ "type": {
378
+ "text": "[\n ...NATIVE_EDITABLE_ELEMENT_SELECTORS,\n ...CONTENT_EDITABLE_SELECTORS,\n ...ARIA_EDITABLE_ROLE_SELECTORS,\n]"
379
+ },
380
+ "default": "[\n ...NATIVE_EDITABLE_ELEMENT_SELECTORS,\n ...CONTENT_EDITABLE_SELECTORS,\n ...ARIA_EDITABLE_ROLE_SELECTORS,\n]",
381
+ "description": "Base selectors treated as editable context regardless of design system.\nIncludes native controls, contenteditable, and ARIA-editable roles."
382
+ },
383
+ {
384
+ "kind": "variable",
385
+ "name": "DESIGN_SYSTEM_EDITABLE_ELEMENT_SELECTORS",
386
+ "type": {
387
+ "text": "Record<\n EditableDesignSystemPrefix,\n readonly string[]\n>"
388
+ },
389
+ "default": "{\n rapid: buildDesignSystemEditableSelectors('rapid'),\n zero: buildDesignSystemEditableSelectors('zero'),\n}",
390
+ "description": "Design-system specific editable host selectors."
391
+ },
392
+ {
393
+ "kind": "function",
394
+ "name": "buildEditableElementSelector",
395
+ "return": {
396
+ "type": {
397
+ "text": "string"
398
+ }
399
+ },
400
+ "parameters": [
401
+ {
402
+ "name": "designSystems",
403
+ "type": {
404
+ "text": "readonly EditableDesignSystemPrefix[]"
405
+ }
406
+ },
407
+ {
408
+ "name": "customEditableSelectors",
409
+ "default": "[]",
410
+ "type": {
411
+ "text": "readonly string[]"
412
+ }
413
+ }
414
+ ]
415
+ }
416
+ ],
417
+ "exports": [
418
+ {
419
+ "kind": "js",
420
+ "name": "BASE_EDITABLE_ELEMENT_SELECTORS",
421
+ "declaration": {
422
+ "name": "BASE_EDITABLE_ELEMENT_SELECTORS",
423
+ "module": "src/design-system/editable-elements.ts"
424
+ }
425
+ },
426
+ {
427
+ "kind": "js",
428
+ "name": "DESIGN_SYSTEM_EDITABLE_ELEMENT_SELECTORS",
429
+ "declaration": {
430
+ "name": "DESIGN_SYSTEM_EDITABLE_ELEMENT_SELECTORS",
431
+ "module": "src/design-system/editable-elements.ts"
432
+ }
433
+ },
434
+ {
435
+ "kind": "js",
436
+ "name": "buildEditableElementSelector",
437
+ "declaration": {
438
+ "name": "buildEditableElementSelector",
439
+ "module": "src/design-system/editable-elements.ts"
440
+ }
441
+ }
442
+ ]
443
+ },
444
+ {
445
+ "kind": "javascript-module",
446
+ "path": "src/design-system/index.ts",
447
+ "declarations": [],
448
+ "exports": [
449
+ {
450
+ "kind": "js",
451
+ "name": "*",
452
+ "declaration": {
453
+ "name": "*",
454
+ "package": "./design-system"
455
+ }
456
+ },
457
+ {
458
+ "kind": "js",
459
+ "name": "*",
460
+ "declaration": {
461
+ "name": "*",
462
+ "package": "./editable-elements"
463
+ }
464
+ }
465
+ ]
466
+ },
212
467
  {
213
468
  "kind": "javascript-module",
214
469
  "path": "src/converters/index.ts",
@@ -250,6 +505,29 @@
250
505
  }
251
506
  ]
252
507
  },
508
+ {
509
+ "kind": "javascript-module",
510
+ "path": "src/directives/index.ts",
511
+ "declarations": [],
512
+ "exports": [
513
+ {
514
+ "kind": "js",
515
+ "name": "*",
516
+ "declaration": {
517
+ "name": "*",
518
+ "package": "./sync"
519
+ }
520
+ },
521
+ {
522
+ "kind": "js",
523
+ "name": "*",
524
+ "declaration": {
525
+ "name": "*",
526
+ "package": "./when-else"
527
+ }
528
+ }
529
+ ]
530
+ },
253
531
  {
254
532
  "kind": "javascript-module",
255
533
  "path": "src/data/inMemoryDatabase.ts",
@@ -339,286 +617,85 @@
339
617
  "text": "string"
340
618
  }
341
619
  },
342
- {
343
- "name": "newValue",
344
- "type": {
345
- "text": "Omit<Partial<T>, 'id'>"
346
- }
347
- }
348
- ]
349
- },
350
- {
351
- "kind": "method",
352
- "name": "delete",
353
- "privacy": "public",
354
- "return": {
355
- "type": {
356
- "text": "Promise<DatabaseAccessResult.Delete>"
357
- }
358
- },
359
- "parameters": [
360
- {
361
- "name": "id",
362
- "type": {
363
- "text": "string"
364
- }
365
- }
366
- ]
367
- },
368
- {
369
- "kind": "method",
370
- "name": "visit",
371
- "privacy": "public",
372
- "return": {
373
- "type": {
374
- "text": "Promise<void>"
375
- }
376
- },
377
- "parameters": [
378
- {
379
- "name": "visitor",
380
- "type": {
381
- "text": "(record: T) => void"
382
- }
383
- }
384
- ]
385
- },
386
- {
387
- "kind": "method",
388
- "name": "onBeforeUpdate",
389
- "privacy": "public",
390
- "return": {
391
- "type": {
392
- "text": "() => void"
393
- }
394
- },
395
- "parameters": [
396
- {
397
- "name": "listener",
398
- "type": {
399
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
400
- }
401
- }
402
- ]
403
- },
404
- {
405
- "kind": "method",
406
- "name": "onAfterUpdate",
407
- "privacy": "public",
408
- "return": {
409
- "type": {
410
- "text": "() => void"
411
- }
412
- },
413
- "parameters": [
414
- {
415
- "name": "listener",
416
- "type": {
417
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
418
- }
419
- }
420
- ]
421
- }
422
- ]
423
- }
424
- ],
425
- "exports": [
426
- {
427
- "kind": "js",
428
- "name": "InMemoryDatabase",
429
- "declaration": {
430
- "name": "InMemoryDatabase",
431
- "module": "src/data/inMemoryDatabase.ts"
432
- }
433
- }
434
- ]
435
- },
436
- {
437
- "kind": "javascript-module",
438
- "path": "src/data/index.ts",
439
- "declarations": [],
440
- "exports": [
441
- {
442
- "kind": "js",
443
- "name": "*",
444
- "declaration": {
445
- "name": "*",
446
- "package": "./inMemoryDatabase"
447
- }
448
- }
449
- ]
450
- },
451
- {
452
- "kind": "javascript-module",
453
- "path": "src/directives/index.ts",
454
- "declarations": [],
455
- "exports": [
456
- {
457
- "kind": "js",
458
- "name": "*",
459
- "declaration": {
460
- "name": "*",
461
- "package": "./sync"
462
- }
463
- },
464
- {
465
- "kind": "js",
466
- "name": "*",
467
- "declaration": {
468
- "name": "*",
469
- "package": "./when-else"
470
- }
471
- }
472
- ]
473
- },
474
- {
475
- "kind": "javascript-module",
476
- "path": "src/design-system/design-system.ts",
477
- "declarations": [
478
- {
479
- "kind": "function",
480
- "name": "assureDesignSystem",
481
- "return": {
482
- "type": {
483
- "text": "DesignSystemModule"
484
- }
485
- },
486
- "parameters": [
487
- {
488
- "name": "module",
489
- "type": {
490
- "text": "DesignSystemModule"
491
- }
492
- }
493
- ],
494
- "description": "assureDesignSystem.",
495
- "privacy": "public"
496
- },
497
- {
498
- "kind": "function",
499
- "name": "getCurrentDesignSystem",
500
- "return": {
501
- "type": {
502
- "text": ""
503
- }
504
- },
505
- "parameters": [
506
- {
507
- "name": "element",
508
- "type": {
509
- "text": "HTMLElement"
510
- },
511
- "description": "The starting HTML element"
620
+ {
621
+ "name": "newValue",
622
+ "type": {
623
+ "text": "Omit<Partial<T>, 'id'>"
624
+ }
625
+ }
626
+ ]
512
627
  },
513
628
  {
514
- "name": "fallbackPrefix",
515
- "type": {
516
- "text": "string"
629
+ "kind": "method",
630
+ "name": "delete",
631
+ "privacy": "public",
632
+ "return": {
633
+ "type": {
634
+ "text": "Promise<DatabaseAccessResult.Delete>"
635
+ }
517
636
  },
518
- "description": "The prefix to fallback to if the provider is not available"
519
- }
520
- ],
521
- "description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
522
- "privacy": "public"
523
- },
524
- {
525
- "kind": "function",
526
- "name": "getCurrentDesignSystemPrefix",
527
- "return": {
528
- "type": {
529
- "text": ""
530
- }
531
- },
532
- "parameters": [
637
+ "parameters": [
638
+ {
639
+ "name": "id",
640
+ "type": {
641
+ "text": "string"
642
+ }
643
+ }
644
+ ]
645
+ },
533
646
  {
534
- "name": "element",
535
- "type": {
536
- "text": "HTMLElement"
647
+ "kind": "method",
648
+ "name": "visit",
649
+ "privacy": "public",
650
+ "return": {
651
+ "type": {
652
+ "text": "Promise<void>"
653
+ }
537
654
  },
538
- "description": "The starting HTML element"
655
+ "parameters": [
656
+ {
657
+ "name": "visitor",
658
+ "type": {
659
+ "text": "(record: T) => void"
660
+ }
661
+ }
662
+ ]
539
663
  },
540
664
  {
541
- "name": "fallbackPrefix",
542
- "type": {
543
- "text": "string"
665
+ "kind": "method",
666
+ "name": "onBeforeUpdate",
667
+ "privacy": "public",
668
+ "return": {
669
+ "type": {
670
+ "text": "() => void"
671
+ }
544
672
  },
545
- "description": "The prefix to fallback to if the provider is not available"
546
- }
547
- ],
548
- "description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
549
- "privacy": "public"
550
- }
551
- ],
552
- "exports": [
553
- {
554
- "kind": "js",
555
- "name": "assureDesignSystem",
556
- "declaration": {
557
- "name": "assureDesignSystem",
558
- "module": "src/design-system/design-system.ts"
559
- }
560
- },
561
- {
562
- "kind": "js",
563
- "name": "getCurrentDesignSystem",
564
- "declaration": {
565
- "name": "getCurrentDesignSystem",
566
- "module": "src/design-system/design-system.ts"
567
- }
568
- },
569
- {
570
- "kind": "js",
571
- "name": "getCurrentDesignSystemPrefix",
572
- "declaration": {
573
- "name": "getCurrentDesignSystemPrefix",
574
- "module": "src/design-system/design-system.ts"
575
- }
576
- }
577
- ]
578
- },
579
- {
580
- "kind": "javascript-module",
581
- "path": "src/design-system/editable-elements.ts",
582
- "declarations": [
583
- {
584
- "kind": "variable",
585
- "name": "BASE_EDITABLE_ELEMENT_SELECTORS",
586
- "type": {
587
- "text": "[\n ...NATIVE_EDITABLE_ELEMENT_SELECTORS,\n ...CONTENT_EDITABLE_SELECTORS,\n ...ARIA_EDITABLE_ROLE_SELECTORS,\n]"
588
- },
589
- "default": "[\n ...NATIVE_EDITABLE_ELEMENT_SELECTORS,\n ...CONTENT_EDITABLE_SELECTORS,\n ...ARIA_EDITABLE_ROLE_SELECTORS,\n]",
590
- "description": "Base selectors treated as editable context regardless of design system.\nIncludes native controls, contenteditable, and ARIA-editable roles."
591
- },
592
- {
593
- "kind": "variable",
594
- "name": "DESIGN_SYSTEM_EDITABLE_ELEMENT_SELECTORS",
595
- "type": {
596
- "text": "Record<\n EditableDesignSystemPrefix,\n readonly string[]\n>"
597
- },
598
- "default": "{\n rapid: buildDesignSystemEditableSelectors('rapid'),\n zero: buildDesignSystemEditableSelectors('zero'),\n}",
599
- "description": "Design-system specific editable host selectors."
600
- },
601
- {
602
- "kind": "function",
603
- "name": "buildEditableElementSelector",
604
- "return": {
605
- "type": {
606
- "text": "string"
607
- }
608
- },
609
- "parameters": [
610
- {
611
- "name": "designSystems",
612
- "type": {
613
- "text": "readonly EditableDesignSystemPrefix[]"
614
- }
673
+ "parameters": [
674
+ {
675
+ "name": "listener",
676
+ "type": {
677
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
678
+ }
679
+ }
680
+ ]
615
681
  },
616
682
  {
617
- "name": "customEditableSelectors",
618
- "default": "[]",
619
- "type": {
620
- "text": "readonly string[]"
621
- }
683
+ "kind": "method",
684
+ "name": "onAfterUpdate",
685
+ "privacy": "public",
686
+ "return": {
687
+ "type": {
688
+ "text": "() => void"
689
+ }
690
+ },
691
+ "parameters": [
692
+ {
693
+ "name": "listener",
694
+ "type": {
695
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
696
+ }
697
+ }
698
+ ]
622
699
  }
623
700
  ]
624
701
  }
@@ -626,33 +703,17 @@
626
703
  "exports": [
627
704
  {
628
705
  "kind": "js",
629
- "name": "BASE_EDITABLE_ELEMENT_SELECTORS",
630
- "declaration": {
631
- "name": "BASE_EDITABLE_ELEMENT_SELECTORS",
632
- "module": "src/design-system/editable-elements.ts"
633
- }
634
- },
635
- {
636
- "kind": "js",
637
- "name": "DESIGN_SYSTEM_EDITABLE_ELEMENT_SELECTORS",
638
- "declaration": {
639
- "name": "DESIGN_SYSTEM_EDITABLE_ELEMENT_SELECTORS",
640
- "module": "src/design-system/editable-elements.ts"
641
- }
642
- },
643
- {
644
- "kind": "js",
645
- "name": "buildEditableElementSelector",
706
+ "name": "InMemoryDatabase",
646
707
  "declaration": {
647
- "name": "buildEditableElementSelector",
648
- "module": "src/design-system/editable-elements.ts"
708
+ "name": "InMemoryDatabase",
709
+ "module": "src/data/inMemoryDatabase.ts"
649
710
  }
650
711
  }
651
712
  ]
652
713
  },
653
714
  {
654
715
  "kind": "javascript-module",
655
- "path": "src/design-system/index.ts",
716
+ "path": "src/data/index.ts",
656
717
  "declarations": [],
657
718
  "exports": [
658
719
  {
@@ -660,15 +721,7 @@
660
721
  "name": "*",
661
722
  "declaration": {
662
723
  "name": "*",
663
- "package": "./design-system"
664
- }
665
- },
666
- {
667
- "kind": "js",
668
- "name": "*",
669
- "declaration": {
670
- "name": "*",
671
- "package": "./editable-elements"
724
+ "package": "./inMemoryDatabase"
672
725
  }
673
726
  }
674
727
  ]
@@ -1163,59 +1216,6 @@
1163
1216
  }
1164
1217
  ]
1165
1218
  },
1166
- {
1167
- "kind": "javascript-module",
1168
- "path": "src/decorators/index.ts",
1169
- "declarations": [],
1170
- "exports": [
1171
- {
1172
- "kind": "js",
1173
- "name": "*",
1174
- "declaration": {
1175
- "name": "*",
1176
- "package": "./renderOnChange"
1177
- }
1178
- }
1179
- ]
1180
- },
1181
- {
1182
- "kind": "javascript-module",
1183
- "path": "src/decorators/renderOnChange.ts",
1184
- "declarations": [
1185
- {
1186
- "kind": "function",
1187
- "name": "renderOnChange",
1188
- "parameters": [
1189
- {
1190
- "name": "target",
1191
- "type": {
1192
- "text": "FASTElement & { render(): void }"
1193
- },
1194
- "description": "The target to define the property change handler on."
1195
- },
1196
- {
1197
- "name": "name",
1198
- "type": {
1199
- "text": "string"
1200
- },
1201
- "description": "The property name."
1202
- }
1203
- ],
1204
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
1205
- "privacy": "public"
1206
- }
1207
- ],
1208
- "exports": [
1209
- {
1210
- "kind": "js",
1211
- "name": "renderOnChange",
1212
- "declaration": {
1213
- "name": "renderOnChange",
1214
- "module": "src/decorators/renderOnChange.ts"
1215
- }
1216
- }
1217
- ]
1218
- },
1219
1219
  {
1220
1220
  "kind": "javascript-module",
1221
1221
  "path": "src/error/errorMap.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.461.2-GENC-1346.1",
4
+ "version": "14.461.2-GENC-1346.2",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -29,18 +29,18 @@
29
29
  }
30
30
  },
31
31
  "devDependencies": {
32
- "@genesislcap/foundation-testing": "14.461.2-GENC-1346.1",
33
- "@genesislcap/genx": "14.461.2-GENC-1346.1",
34
- "@genesislcap/rollup-builder": "14.461.2-GENC-1346.1",
35
- "@genesislcap/ts-builder": "14.461.2-GENC-1346.1",
36
- "@genesislcap/uvu-playwright-builder": "14.461.2-GENC-1346.1",
37
- "@genesislcap/vite-builder": "14.461.2-GENC-1346.1",
38
- "@genesislcap/webpack-builder": "14.461.2-GENC-1346.1",
32
+ "@genesislcap/foundation-testing": "14.461.2-GENC-1346.2",
33
+ "@genesislcap/genx": "14.461.2-GENC-1346.2",
34
+ "@genesislcap/rollup-builder": "14.461.2-GENC-1346.2",
35
+ "@genesislcap/ts-builder": "14.461.2-GENC-1346.2",
36
+ "@genesislcap/uvu-playwright-builder": "14.461.2-GENC-1346.2",
37
+ "@genesislcap/vite-builder": "14.461.2-GENC-1346.2",
38
+ "@genesislcap/webpack-builder": "14.461.2-GENC-1346.2",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "14.461.2-GENC-1346.1",
43
- "@genesislcap/foundation-logger": "14.461.2-GENC-1346.1",
42
+ "@genesislcap/expression-builder": "14.461.2-GENC-1346.2",
43
+ "@genesislcap/foundation-logger": "14.461.2-GENC-1346.2",
44
44
  "@microsoft/fast-components": "2.30.6",
45
45
  "@microsoft/fast-element": "1.14.0",
46
46
  "@microsoft/fast-foundation": "2.50.0",
@@ -58,5 +58,5 @@
58
58
  "access": "public"
59
59
  },
60
60
  "customElements": "dist/custom-elements.json",
61
- "gitHead": "0729266a735c8d8d74192119552f0774c6038436"
61
+ "gitHead": "3ec878a6b7ebccb132dd854250ca5abe8e4a337e"
62
62
  }