@genesislcap/grid-tabulator 14.285.0 → 14.285.1

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 +238 -238
  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",
@@ -3096,244 +3334,6 @@
3096
3334
  }
3097
3335
  ]
3098
3336
  },
3099
- {
3100
- "kind": "javascript-module",
3101
- "path": "src/cell/cell.ts",
3102
- "declarations": [
3103
- {
3104
- "kind": "class",
3105
- "description": "The GridTabulator Cell element.",
3106
- "name": "GridTabulatorCell",
3107
- "members": [
3108
- {
3109
- "kind": "field",
3110
- "name": "renderer",
3111
- "type": {
3112
- "text": "CellRendererFunc"
3113
- },
3114
- "privacy": "public"
3115
- },
3116
- {
3117
- "kind": "field",
3118
- "name": "rendererParams",
3119
- "type": {
3120
- "text": "CellRendererParams"
3121
- },
3122
- "privacy": "public"
3123
- },
3124
- {
3125
- "kind": "field",
3126
- "name": "slottedRenderer",
3127
- "type": {
3128
- "text": "HTMLElement[]"
3129
- },
3130
- "privacy": "public"
3131
- },
3132
- {
3133
- "kind": "method",
3134
- "name": "init",
3135
- "privacy": "public",
3136
- "parameters": [
3137
- {
3138
- "name": "params",
3139
- "type": {
3140
- "text": "CellRendererParams"
3141
- }
3142
- }
3143
- ]
3144
- },
3145
- {
3146
- "kind": "method",
3147
- "name": "getElement",
3148
- "privacy": "public",
3149
- "return": {
3150
- "type": {
3151
- "text": "HTMLElement"
3152
- }
3153
- }
3154
- },
3155
- {
3156
- "kind": "method",
3157
- "name": "destroy",
3158
- "privacy": "public"
3159
- },
3160
- {
3161
- "kind": "method",
3162
- "name": "refresh",
3163
- "privacy": "public",
3164
- "return": {
3165
- "type": {
3166
- "text": "boolean"
3167
- }
3168
- },
3169
- "parameters": [
3170
- {
3171
- "name": "params",
3172
- "type": {
3173
- "text": "CellRendererParams"
3174
- }
3175
- }
3176
- ]
3177
- },
3178
- {
3179
- "kind": "method",
3180
- "name": "slottedRendererChanged",
3181
- "privacy": "public"
3182
- },
3183
- {
3184
- "kind": "field",
3185
- "name": "_presentation",
3186
- "type": {
3187
- "text": "ComponentPresentation | null | undefined"
3188
- },
3189
- "privacy": "private",
3190
- "default": "void 0",
3191
- "inheritedFrom": {
3192
- "name": "FoundationElement",
3193
- "module": "src/foundation-element/foundation-element.ts"
3194
- }
3195
- },
3196
- {
3197
- "kind": "field",
3198
- "name": "$presentation",
3199
- "type": {
3200
- "text": "ComponentPresentation | null"
3201
- },
3202
- "privacy": "public",
3203
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3204
- "inheritedFrom": {
3205
- "name": "FoundationElement",
3206
- "module": "src/foundation-element/foundation-element.ts"
3207
- }
3208
- },
3209
- {
3210
- "kind": "field",
3211
- "name": "template",
3212
- "type": {
3213
- "text": "ElementViewTemplate | void | null"
3214
- },
3215
- "privacy": "public",
3216
- "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.",
3217
- "inheritedFrom": {
3218
- "name": "FoundationElement",
3219
- "module": "src/foundation-element/foundation-element.ts"
3220
- }
3221
- },
3222
- {
3223
- "kind": "method",
3224
- "name": "templateChanged",
3225
- "privacy": "protected",
3226
- "return": {
3227
- "type": {
3228
- "text": "void"
3229
- }
3230
- },
3231
- "inheritedFrom": {
3232
- "name": "FoundationElement",
3233
- "module": "src/foundation-element/foundation-element.ts"
3234
- }
3235
- },
3236
- {
3237
- "kind": "field",
3238
- "name": "styles",
3239
- "type": {
3240
- "text": "ElementStyles | void | null"
3241
- },
3242
- "privacy": "public",
3243
- "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.",
3244
- "inheritedFrom": {
3245
- "name": "FoundationElement",
3246
- "module": "src/foundation-element/foundation-element.ts"
3247
- }
3248
- },
3249
- {
3250
- "kind": "method",
3251
- "name": "stylesChanged",
3252
- "privacy": "protected",
3253
- "return": {
3254
- "type": {
3255
- "text": "void"
3256
- }
3257
- },
3258
- "inheritedFrom": {
3259
- "name": "FoundationElement",
3260
- "module": "src/foundation-element/foundation-element.ts"
3261
- }
3262
- },
3263
- {
3264
- "kind": "method",
3265
- "name": "compose",
3266
- "privacy": "public",
3267
- "static": true,
3268
- "return": {
3269
- "type": {
3270
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3271
- }
3272
- },
3273
- "parameters": [
3274
- {
3275
- "name": "this",
3276
- "type": {
3277
- "text": "K"
3278
- }
3279
- },
3280
- {
3281
- "name": "elementDefinition",
3282
- "type": {
3283
- "text": "T"
3284
- },
3285
- "description": "The definition of the element to create the registry\nfunction for."
3286
- }
3287
- ],
3288
- "description": "Defines an element registry function with a set of element definition defaults.",
3289
- "inheritedFrom": {
3290
- "name": "FoundationElement",
3291
- "module": "src/foundation-element/foundation-element.ts"
3292
- }
3293
- }
3294
- ],
3295
- "superclass": {
3296
- "name": "FoundationElement",
3297
- "package": "@microsoft/fast-foundation"
3298
- },
3299
- "tagName": "grid-tabulator-cell",
3300
- "customElement": true
3301
- }
3302
- ],
3303
- "exports": [
3304
- {
3305
- "kind": "js",
3306
- "name": "GridTabulatorCell",
3307
- "declaration": {
3308
- "name": "GridTabulatorCell",
3309
- "module": "src/cell/cell.ts"
3310
- }
3311
- },
3312
- {
3313
- "kind": "custom-element-definition",
3314
- "name": "grid-tabulator-cell",
3315
- "declaration": {
3316
- "name": "GridTabulatorCell",
3317
- "module": "src/cell/cell.ts"
3318
- }
3319
- }
3320
- ]
3321
- },
3322
- {
3323
- "kind": "javascript-module",
3324
- "path": "src/cell/index.ts",
3325
- "declarations": [],
3326
- "exports": [
3327
- {
3328
- "kind": "js",
3329
- "name": "*",
3330
- "declaration": {
3331
- "name": "*",
3332
- "package": "./cell"
3333
- }
3334
- }
3335
- ]
3336
- },
3337
3337
  {
3338
3338
  "kind": "javascript-module",
3339
3339
  "path": "src/column/column.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.285.0",
4
+ "version": "14.285.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -39,21 +39,21 @@
39
39
  }
40
40
  },
41
41
  "devDependencies": {
42
- "@genesislcap/foundation-testing": "14.285.0",
43
- "@genesislcap/genx": "14.285.0",
44
- "@genesislcap/rollup-builder": "14.285.0",
45
- "@genesislcap/ts-builder": "14.285.0",
46
- "@genesislcap/uvu-playwright-builder": "14.285.0",
47
- "@genesislcap/vite-builder": "14.285.0",
48
- "@genesislcap/webpack-builder": "14.285.0",
42
+ "@genesislcap/foundation-testing": "14.285.1",
43
+ "@genesislcap/genx": "14.285.1",
44
+ "@genesislcap/rollup-builder": "14.285.1",
45
+ "@genesislcap/ts-builder": "14.285.1",
46
+ "@genesislcap/uvu-playwright-builder": "14.285.1",
47
+ "@genesislcap/vite-builder": "14.285.1",
48
+ "@genesislcap/webpack-builder": "14.285.1",
49
49
  "@types/tabulator-tables": "6.2.6",
50
50
  "rimraf": "^5.0.0"
51
51
  },
52
52
  "dependencies": {
53
- "@genesislcap/foundation-comms": "14.285.0",
54
- "@genesislcap/foundation-logger": "14.285.0",
55
- "@genesislcap/foundation-ui": "14.285.0",
56
- "@genesislcap/foundation-utils": "14.285.0",
53
+ "@genesislcap/foundation-comms": "14.285.1",
54
+ "@genesislcap/foundation-logger": "14.285.1",
55
+ "@genesislcap/foundation-ui": "14.285.1",
56
+ "@genesislcap/foundation-utils": "14.285.1",
57
57
  "@microsoft/fast-colors": "5.3.1",
58
58
  "@microsoft/fast-components": "2.30.6",
59
59
  "@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": "45006991dfd619837fe3093077405efeb710c5cd"
78
+ "gitHead": "6d060a7642ec87b7c2bb4c992cb3c98ef6bc52a1"
79
79
  }