@genesislcap/grid-tabulator 14.415.1-alpha-7f9cb0c.0 → 14.416.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/dist/custom-elements.json +318 -318
  2. package/package.json +13 -13
@@ -1411,6 +1411,244 @@
1411
1411
  "declarations": [],
1412
1412
  "exports": []
1413
1413
  },
1414
+ {
1415
+ "kind": "javascript-module",
1416
+ "path": "src/cell/cell.ts",
1417
+ "declarations": [
1418
+ {
1419
+ "kind": "class",
1420
+ "description": "The GridTabulator Cell element.",
1421
+ "name": "GridTabulatorCell",
1422
+ "members": [
1423
+ {
1424
+ "kind": "field",
1425
+ "name": "renderer",
1426
+ "type": {
1427
+ "text": "CellRendererFunc"
1428
+ },
1429
+ "privacy": "public"
1430
+ },
1431
+ {
1432
+ "kind": "field",
1433
+ "name": "rendererParams",
1434
+ "type": {
1435
+ "text": "CellRendererParams"
1436
+ },
1437
+ "privacy": "public"
1438
+ },
1439
+ {
1440
+ "kind": "field",
1441
+ "name": "slottedRenderer",
1442
+ "type": {
1443
+ "text": "HTMLElement[]"
1444
+ },
1445
+ "privacy": "public"
1446
+ },
1447
+ {
1448
+ "kind": "method",
1449
+ "name": "init",
1450
+ "privacy": "public",
1451
+ "parameters": [
1452
+ {
1453
+ "name": "params",
1454
+ "type": {
1455
+ "text": "CellRendererParams"
1456
+ }
1457
+ }
1458
+ ]
1459
+ },
1460
+ {
1461
+ "kind": "method",
1462
+ "name": "getElement",
1463
+ "privacy": "public",
1464
+ "return": {
1465
+ "type": {
1466
+ "text": "HTMLElement"
1467
+ }
1468
+ }
1469
+ },
1470
+ {
1471
+ "kind": "method",
1472
+ "name": "destroy",
1473
+ "privacy": "public"
1474
+ },
1475
+ {
1476
+ "kind": "method",
1477
+ "name": "refresh",
1478
+ "privacy": "public",
1479
+ "return": {
1480
+ "type": {
1481
+ "text": "boolean"
1482
+ }
1483
+ },
1484
+ "parameters": [
1485
+ {
1486
+ "name": "params",
1487
+ "type": {
1488
+ "text": "CellRendererParams"
1489
+ }
1490
+ }
1491
+ ]
1492
+ },
1493
+ {
1494
+ "kind": "method",
1495
+ "name": "slottedRendererChanged",
1496
+ "privacy": "public"
1497
+ },
1498
+ {
1499
+ "kind": "field",
1500
+ "name": "_presentation",
1501
+ "type": {
1502
+ "text": "ComponentPresentation | null | undefined"
1503
+ },
1504
+ "privacy": "private",
1505
+ "default": "void 0",
1506
+ "inheritedFrom": {
1507
+ "name": "FoundationElement",
1508
+ "module": "src/foundation-element/foundation-element.ts"
1509
+ }
1510
+ },
1511
+ {
1512
+ "kind": "field",
1513
+ "name": "$presentation",
1514
+ "type": {
1515
+ "text": "ComponentPresentation | null"
1516
+ },
1517
+ "privacy": "public",
1518
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1519
+ "inheritedFrom": {
1520
+ "name": "FoundationElement",
1521
+ "module": "src/foundation-element/foundation-element.ts"
1522
+ }
1523
+ },
1524
+ {
1525
+ "kind": "field",
1526
+ "name": "template",
1527
+ "type": {
1528
+ "text": "ElementViewTemplate | void | null"
1529
+ },
1530
+ "privacy": "public",
1531
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
1532
+ "inheritedFrom": {
1533
+ "name": "FoundationElement",
1534
+ "module": "src/foundation-element/foundation-element.ts"
1535
+ }
1536
+ },
1537
+ {
1538
+ "kind": "method",
1539
+ "name": "templateChanged",
1540
+ "privacy": "protected",
1541
+ "return": {
1542
+ "type": {
1543
+ "text": "void"
1544
+ }
1545
+ },
1546
+ "inheritedFrom": {
1547
+ "name": "FoundationElement",
1548
+ "module": "src/foundation-element/foundation-element.ts"
1549
+ }
1550
+ },
1551
+ {
1552
+ "kind": "field",
1553
+ "name": "styles",
1554
+ "type": {
1555
+ "text": "ElementStyles | void | null"
1556
+ },
1557
+ "privacy": "public",
1558
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
1559
+ "inheritedFrom": {
1560
+ "name": "FoundationElement",
1561
+ "module": "src/foundation-element/foundation-element.ts"
1562
+ }
1563
+ },
1564
+ {
1565
+ "kind": "method",
1566
+ "name": "stylesChanged",
1567
+ "privacy": "protected",
1568
+ "return": {
1569
+ "type": {
1570
+ "text": "void"
1571
+ }
1572
+ },
1573
+ "inheritedFrom": {
1574
+ "name": "FoundationElement",
1575
+ "module": "src/foundation-element/foundation-element.ts"
1576
+ }
1577
+ },
1578
+ {
1579
+ "kind": "method",
1580
+ "name": "compose",
1581
+ "privacy": "public",
1582
+ "static": true,
1583
+ "return": {
1584
+ "type": {
1585
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1586
+ }
1587
+ },
1588
+ "parameters": [
1589
+ {
1590
+ "name": "this",
1591
+ "type": {
1592
+ "text": "K"
1593
+ }
1594
+ },
1595
+ {
1596
+ "name": "elementDefinition",
1597
+ "type": {
1598
+ "text": "T"
1599
+ },
1600
+ "description": "The definition of the element to create the registry\nfunction for."
1601
+ }
1602
+ ],
1603
+ "description": "Defines an element registry function with a set of element definition defaults.",
1604
+ "inheritedFrom": {
1605
+ "name": "FoundationElement",
1606
+ "module": "src/foundation-element/foundation-element.ts"
1607
+ }
1608
+ }
1609
+ ],
1610
+ "superclass": {
1611
+ "name": "FoundationElement",
1612
+ "package": "@microsoft/fast-foundation"
1613
+ },
1614
+ "tagName": "grid-tabulator-cell",
1615
+ "customElement": true
1616
+ }
1617
+ ],
1618
+ "exports": [
1619
+ {
1620
+ "kind": "js",
1621
+ "name": "GridTabulatorCell",
1622
+ "declaration": {
1623
+ "name": "GridTabulatorCell",
1624
+ "module": "src/cell/cell.ts"
1625
+ }
1626
+ },
1627
+ {
1628
+ "kind": "custom-element-definition",
1629
+ "name": "grid-tabulator-cell",
1630
+ "declaration": {
1631
+ "name": "GridTabulatorCell",
1632
+ "module": "src/cell/cell.ts"
1633
+ }
1634
+ }
1635
+ ]
1636
+ },
1637
+ {
1638
+ "kind": "javascript-module",
1639
+ "path": "src/cell/index.ts",
1640
+ "declarations": [],
1641
+ "exports": [
1642
+ {
1643
+ "kind": "js",
1644
+ "name": "*",
1645
+ "declaration": {
1646
+ "name": "*",
1647
+ "package": "./cell"
1648
+ }
1649
+ }
1650
+ ]
1651
+ },
1414
1652
  {
1415
1653
  "kind": "javascript-module",
1416
1654
  "path": "src/cell-editors/date.editor.ts",
@@ -2700,69 +2938,100 @@
2700
2938
  },
2701
2939
  {
2702
2940
  "kind": "javascript-module",
2703
- "path": "src/cell/cell.ts",
2941
+ "path": "src/column/column.ts",
2704
2942
  "declarations": [
2705
2943
  {
2706
2944
  "kind": "class",
2707
- "description": "The GridTabulator Cell element.",
2708
- "name": "GridTabulatorCell",
2945
+ "description": "The GridTabulator Column element.",
2946
+ "name": "GridTabulatorColumn",
2709
2947
  "members": [
2710
2948
  {
2711
2949
  "kind": "field",
2712
- "name": "renderer",
2950
+ "name": "slottedCell",
2713
2951
  "type": {
2714
- "text": "CellRendererFunc"
2952
+ "text": "HTMLElement[]"
2715
2953
  },
2716
2954
  "privacy": "public"
2717
2955
  },
2718
2956
  {
2719
2957
  "kind": "field",
2720
- "name": "rendererParams",
2958
+ "name": "definition",
2721
2959
  "type": {
2722
- "text": "CellRendererParams"
2960
+ "text": "Partial<ColumnDefinition>"
2723
2961
  },
2724
- "privacy": "public"
2962
+ "default": "{}"
2725
2963
  },
2726
2964
  {
2727
- "kind": "field",
2728
- "name": "slottedRenderer",
2729
- "type": {
2730
- "text": "HTMLElement[]"
2731
- },
2965
+ "kind": "method",
2966
+ "name": "slottedCellChanged",
2732
2967
  "privacy": "public"
2733
2968
  },
2734
2969
  {
2735
2970
  "kind": "method",
2736
- "name": "init",
2737
- "privacy": "public",
2971
+ "name": "deepClone",
2972
+ "return": {
2973
+ "type": {
2974
+ "text": "Node"
2975
+ }
2976
+ },
2977
+ "inheritedFrom": {
2978
+ "name": "LifecycleMixin",
2979
+ "module": "src/mixins/lifecycle/lifecycle.ts"
2980
+ }
2981
+ },
2982
+ {
2983
+ "kind": "method",
2984
+ "name": "cloneNode",
2985
+ "return": {
2986
+ "type": {
2987
+ "text": "Node"
2988
+ }
2989
+ },
2738
2990
  "parameters": [
2739
2991
  {
2740
- "name": "params",
2992
+ "name": "deep",
2993
+ "optional": true,
2741
2994
  "type": {
2742
- "text": "CellRendererParams"
2995
+ "text": "boolean"
2743
2996
  }
2744
2997
  }
2745
- ]
2998
+ ],
2999
+ "inheritedFrom": {
3000
+ "name": "LifecycleMixin",
3001
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3002
+ }
2746
3003
  },
2747
3004
  {
2748
- "kind": "method",
2749
- "name": "getElement",
2750
- "privacy": "public",
3005
+ "kind": "field",
3006
+ "name": "shouldRunDisconnect",
2751
3007
  "return": {
2752
3008
  "type": {
2753
- "text": "HTMLElement"
3009
+ "text": ""
2754
3010
  }
3011
+ },
3012
+ "readonly": true,
3013
+ "inheritedFrom": {
3014
+ "name": "LifecycleMixin",
3015
+ "module": "src/mixins/lifecycle/lifecycle.ts"
2755
3016
  }
2756
3017
  },
2757
3018
  {
2758
- "kind": "method",
2759
- "name": "destroy",
2760
- "privacy": "public"
3019
+ "kind": "field",
3020
+ "name": "shouldRunConnect",
3021
+ "return": {
3022
+ "type": {
3023
+ "text": ""
3024
+ }
3025
+ },
3026
+ "readonly": true,
3027
+ "inheritedFrom": {
3028
+ "name": "LifecycleMixin",
3029
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3030
+ }
2761
3031
  },
2762
3032
  {
2763
3033
  "kind": "method",
2764
- "name": "refresh",
2765
- "privacy": "public",
3034
+ "name": "#_blockLifecycleDueToTokenChange",
2766
3035
  "return": {
2767
3036
  "type": {
2768
3037
  "text": "boolean"
@@ -2770,17 +3039,16 @@
2770
3039
  },
2771
3040
  "parameters": [
2772
3041
  {
2773
- "name": "params",
3042
+ "name": "lifecycleType",
2774
3043
  "type": {
2775
- "text": "CellRendererParams"
3044
+ "text": "Lifecycletype"
2776
3045
  }
2777
3046
  }
2778
- ]
2779
- },
2780
- {
2781
- "kind": "method",
2782
- "name": "slottedRendererChanged",
2783
- "privacy": "public"
3047
+ ],
3048
+ "inheritedFrom": {
3049
+ "name": "LifecycleMixin",
3050
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3051
+ }
2784
3052
  },
2785
3053
  {
2786
3054
  "kind": "field",
@@ -2894,36 +3162,42 @@
2894
3162
  }
2895
3163
  }
2896
3164
  ],
3165
+ "mixins": [
3166
+ {
3167
+ "name": "LifecycleMixin",
3168
+ "package": "@genesislcap/foundation-utils"
3169
+ }
3170
+ ],
2897
3171
  "superclass": {
2898
3172
  "name": "FoundationElement",
2899
3173
  "package": "@microsoft/fast-foundation"
2900
3174
  },
2901
- "tagName": "grid-tabulator-cell",
3175
+ "tagName": "grid-tabulator-column",
2902
3176
  "customElement": true
2903
3177
  }
2904
3178
  ],
2905
3179
  "exports": [
2906
3180
  {
2907
3181
  "kind": "js",
2908
- "name": "GridTabulatorCell",
3182
+ "name": "GridTabulatorColumn",
2909
3183
  "declaration": {
2910
- "name": "GridTabulatorCell",
2911
- "module": "src/cell/cell.ts"
3184
+ "name": "GridTabulatorColumn",
3185
+ "module": "src/column/column.ts"
2912
3186
  }
2913
3187
  },
2914
3188
  {
2915
3189
  "kind": "custom-element-definition",
2916
- "name": "grid-tabulator-cell",
3190
+ "name": "grid-tabulator-column",
2917
3191
  "declaration": {
2918
- "name": "GridTabulatorCell",
2919
- "module": "src/cell/cell.ts"
3192
+ "name": "GridTabulatorColumn",
3193
+ "module": "src/column/column.ts"
2920
3194
  }
2921
3195
  }
2922
3196
  ]
2923
3197
  },
2924
3198
  {
2925
3199
  "kind": "javascript-module",
2926
- "path": "src/cell/index.ts",
3200
+ "path": "src/column/index.ts",
2927
3201
  "declarations": [],
2928
3202
  "exports": [
2929
3203
  {
@@ -2931,7 +3205,7 @@
2931
3205
  "name": "*",
2932
3206
  "declaration": {
2933
3207
  "name": "*",
2934
- "package": "./cell"
3208
+ "package": "./column"
2935
3209
  }
2936
3210
  }
2937
3211
  ]
@@ -3334,280 +3608,6 @@
3334
3608
  }
3335
3609
  ]
3336
3610
  },
3337
- {
3338
- "kind": "javascript-module",
3339
- "path": "src/column/column.ts",
3340
- "declarations": [
3341
- {
3342
- "kind": "class",
3343
- "description": "The GridTabulator Column element.",
3344
- "name": "GridTabulatorColumn",
3345
- "members": [
3346
- {
3347
- "kind": "field",
3348
- "name": "slottedCell",
3349
- "type": {
3350
- "text": "HTMLElement[]"
3351
- },
3352
- "privacy": "public"
3353
- },
3354
- {
3355
- "kind": "field",
3356
- "name": "definition",
3357
- "type": {
3358
- "text": "Partial<ColumnDefinition>"
3359
- },
3360
- "default": "{}"
3361
- },
3362
- {
3363
- "kind": "method",
3364
- "name": "slottedCellChanged",
3365
- "privacy": "public"
3366
- },
3367
- {
3368
- "kind": "method",
3369
- "name": "deepClone",
3370
- "return": {
3371
- "type": {
3372
- "text": "Node"
3373
- }
3374
- },
3375
- "inheritedFrom": {
3376
- "name": "LifecycleMixin",
3377
- "module": "src/mixins/lifecycle/lifecycle.ts"
3378
- }
3379
- },
3380
- {
3381
- "kind": "method",
3382
- "name": "cloneNode",
3383
- "return": {
3384
- "type": {
3385
- "text": "Node"
3386
- }
3387
- },
3388
- "parameters": [
3389
- {
3390
- "name": "deep",
3391
- "optional": true,
3392
- "type": {
3393
- "text": "boolean"
3394
- }
3395
- }
3396
- ],
3397
- "inheritedFrom": {
3398
- "name": "LifecycleMixin",
3399
- "module": "src/mixins/lifecycle/lifecycle.ts"
3400
- }
3401
- },
3402
- {
3403
- "kind": "field",
3404
- "name": "shouldRunDisconnect",
3405
- "return": {
3406
- "type": {
3407
- "text": ""
3408
- }
3409
- },
3410
- "readonly": true,
3411
- "inheritedFrom": {
3412
- "name": "LifecycleMixin",
3413
- "module": "src/mixins/lifecycle/lifecycle.ts"
3414
- }
3415
- },
3416
- {
3417
- "kind": "field",
3418
- "name": "shouldRunConnect",
3419
- "return": {
3420
- "type": {
3421
- "text": ""
3422
- }
3423
- },
3424
- "readonly": true,
3425
- "inheritedFrom": {
3426
- "name": "LifecycleMixin",
3427
- "module": "src/mixins/lifecycle/lifecycle.ts"
3428
- }
3429
- },
3430
- {
3431
- "kind": "method",
3432
- "name": "#_blockLifecycleDueToTokenChange",
3433
- "return": {
3434
- "type": {
3435
- "text": "boolean"
3436
- }
3437
- },
3438
- "parameters": [
3439
- {
3440
- "name": "lifecycleType",
3441
- "type": {
3442
- "text": "Lifecycletype"
3443
- }
3444
- }
3445
- ],
3446
- "inheritedFrom": {
3447
- "name": "LifecycleMixin",
3448
- "module": "src/mixins/lifecycle/lifecycle.ts"
3449
- }
3450
- },
3451
- {
3452
- "kind": "field",
3453
- "name": "_presentation",
3454
- "type": {
3455
- "text": "ComponentPresentation | null | undefined"
3456
- },
3457
- "privacy": "private",
3458
- "default": "void 0",
3459
- "inheritedFrom": {
3460
- "name": "FoundationElement",
3461
- "module": "src/foundation-element/foundation-element.ts"
3462
- }
3463
- },
3464
- {
3465
- "kind": "field",
3466
- "name": "$presentation",
3467
- "type": {
3468
- "text": "ComponentPresentation | null"
3469
- },
3470
- "privacy": "public",
3471
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3472
- "inheritedFrom": {
3473
- "name": "FoundationElement",
3474
- "module": "src/foundation-element/foundation-element.ts"
3475
- }
3476
- },
3477
- {
3478
- "kind": "field",
3479
- "name": "template",
3480
- "type": {
3481
- "text": "ElementViewTemplate | void | null"
3482
- },
3483
- "privacy": "public",
3484
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
3485
- "inheritedFrom": {
3486
- "name": "FoundationElement",
3487
- "module": "src/foundation-element/foundation-element.ts"
3488
- }
3489
- },
3490
- {
3491
- "kind": "method",
3492
- "name": "templateChanged",
3493
- "privacy": "protected",
3494
- "return": {
3495
- "type": {
3496
- "text": "void"
3497
- }
3498
- },
3499
- "inheritedFrom": {
3500
- "name": "FoundationElement",
3501
- "module": "src/foundation-element/foundation-element.ts"
3502
- }
3503
- },
3504
- {
3505
- "kind": "field",
3506
- "name": "styles",
3507
- "type": {
3508
- "text": "ElementStyles | void | null"
3509
- },
3510
- "privacy": "public",
3511
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
3512
- "inheritedFrom": {
3513
- "name": "FoundationElement",
3514
- "module": "src/foundation-element/foundation-element.ts"
3515
- }
3516
- },
3517
- {
3518
- "kind": "method",
3519
- "name": "stylesChanged",
3520
- "privacy": "protected",
3521
- "return": {
3522
- "type": {
3523
- "text": "void"
3524
- }
3525
- },
3526
- "inheritedFrom": {
3527
- "name": "FoundationElement",
3528
- "module": "src/foundation-element/foundation-element.ts"
3529
- }
3530
- },
3531
- {
3532
- "kind": "method",
3533
- "name": "compose",
3534
- "privacy": "public",
3535
- "static": true,
3536
- "return": {
3537
- "type": {
3538
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3539
- }
3540
- },
3541
- "parameters": [
3542
- {
3543
- "name": "this",
3544
- "type": {
3545
- "text": "K"
3546
- }
3547
- },
3548
- {
3549
- "name": "elementDefinition",
3550
- "type": {
3551
- "text": "T"
3552
- },
3553
- "description": "The definition of the element to create the registry\nfunction for."
3554
- }
3555
- ],
3556
- "description": "Defines an element registry function with a set of element definition defaults.",
3557
- "inheritedFrom": {
3558
- "name": "FoundationElement",
3559
- "module": "src/foundation-element/foundation-element.ts"
3560
- }
3561
- }
3562
- ],
3563
- "mixins": [
3564
- {
3565
- "name": "LifecycleMixin",
3566
- "package": "@genesislcap/foundation-utils"
3567
- }
3568
- ],
3569
- "superclass": {
3570
- "name": "FoundationElement",
3571
- "package": "@microsoft/fast-foundation"
3572
- },
3573
- "tagName": "grid-tabulator-column",
3574
- "customElement": true
3575
- }
3576
- ],
3577
- "exports": [
3578
- {
3579
- "kind": "js",
3580
- "name": "GridTabulatorColumn",
3581
- "declaration": {
3582
- "name": "GridTabulatorColumn",
3583
- "module": "src/column/column.ts"
3584
- }
3585
- },
3586
- {
3587
- "kind": "custom-element-definition",
3588
- "name": "grid-tabulator-column",
3589
- "declaration": {
3590
- "name": "GridTabulatorColumn",
3591
- "module": "src/column/column.ts"
3592
- }
3593
- }
3594
- ]
3595
- },
3596
- {
3597
- "kind": "javascript-module",
3598
- "path": "src/column/index.ts",
3599
- "declarations": [],
3600
- "exports": [
3601
- {
3602
- "kind": "js",
3603
- "name": "*",
3604
- "declaration": {
3605
- "name": "*",
3606
- "package": "./column"
3607
- }
3608
- }
3609
- ]
3610
- },
3611
3611
  {
3612
3612
  "kind": "javascript-module",
3613
3613
  "path": "src/datasource/client-side.datasource.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/grid-tabulator",
3
3
  "description": "Genesis Foundation Grid Tabulator",
4
- "version": "14.415.1-alpha-7f9cb0c.0",
4
+ "version": "14.416.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -41,20 +41,20 @@
41
41
  }
42
42
  },
43
43
  "devDependencies": {
44
- "@genesislcap/foundation-testing": "14.415.1-alpha-7f9cb0c.0",
45
- "@genesislcap/genx": "14.415.1-alpha-7f9cb0c.0",
46
- "@genesislcap/rollup-builder": "14.415.1-alpha-7f9cb0c.0",
47
- "@genesislcap/ts-builder": "14.415.1-alpha-7f9cb0c.0",
48
- "@genesislcap/uvu-playwright-builder": "14.415.1-alpha-7f9cb0c.0",
49
- "@genesislcap/vite-builder": "14.415.1-alpha-7f9cb0c.0",
50
- "@genesislcap/webpack-builder": "14.415.1-alpha-7f9cb0c.0",
44
+ "@genesislcap/foundation-testing": "14.416.0",
45
+ "@genesislcap/genx": "14.416.0",
46
+ "@genesislcap/rollup-builder": "14.416.0",
47
+ "@genesislcap/ts-builder": "14.416.0",
48
+ "@genesislcap/uvu-playwright-builder": "14.416.0",
49
+ "@genesislcap/vite-builder": "14.416.0",
50
+ "@genesislcap/webpack-builder": "14.416.0",
51
51
  "@types/tabulator-tables": "6.2.6"
52
52
  },
53
53
  "dependencies": {
54
- "@genesislcap/foundation-comms": "14.415.1-alpha-7f9cb0c.0",
55
- "@genesislcap/foundation-logger": "14.415.1-alpha-7f9cb0c.0",
56
- "@genesislcap/foundation-ui": "14.415.1-alpha-7f9cb0c.0",
57
- "@genesislcap/foundation-utils": "14.415.1-alpha-7f9cb0c.0",
54
+ "@genesislcap/foundation-comms": "14.416.0",
55
+ "@genesislcap/foundation-logger": "14.416.0",
56
+ "@genesislcap/foundation-ui": "14.416.0",
57
+ "@genesislcap/foundation-utils": "14.416.0",
58
58
  "@microsoft/fast-colors": "5.3.1",
59
59
  "@microsoft/fast-components": "2.30.6",
60
60
  "@microsoft/fast-element": "1.14.0",
@@ -75,5 +75,5 @@
75
75
  "access": "public"
76
76
  },
77
77
  "customElements": "dist/custom-elements.json",
78
- "gitHead": "a11e71b5d32029e1cfd93cbefae03b9e732b6b0b"
78
+ "gitHead": "3da4cdb8c31b4200fe69b20f3453abbef4937ac4"
79
79
  }