@genesislcap/grid-tabulator 15.2.1 → 15.3.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 +281 -281
  2. package/package.json +13 -13
@@ -1417,6 +1417,244 @@
1417
1417
  "declarations": [],
1418
1418
  "exports": []
1419
1419
  },
1420
+ {
1421
+ "kind": "javascript-module",
1422
+ "path": "src/cell/cell.ts",
1423
+ "declarations": [
1424
+ {
1425
+ "kind": "class",
1426
+ "description": "The GridTabulator Cell element.",
1427
+ "name": "GridTabulatorCell",
1428
+ "members": [
1429
+ {
1430
+ "kind": "field",
1431
+ "name": "renderer",
1432
+ "type": {
1433
+ "text": "CellRendererFunc"
1434
+ },
1435
+ "privacy": "public"
1436
+ },
1437
+ {
1438
+ "kind": "field",
1439
+ "name": "rendererParams",
1440
+ "type": {
1441
+ "text": "CellRendererParams"
1442
+ },
1443
+ "privacy": "public"
1444
+ },
1445
+ {
1446
+ "kind": "field",
1447
+ "name": "slottedRenderer",
1448
+ "type": {
1449
+ "text": "HTMLElement[]"
1450
+ },
1451
+ "privacy": "public"
1452
+ },
1453
+ {
1454
+ "kind": "method",
1455
+ "name": "init",
1456
+ "privacy": "public",
1457
+ "parameters": [
1458
+ {
1459
+ "name": "params",
1460
+ "type": {
1461
+ "text": "CellRendererParams"
1462
+ }
1463
+ }
1464
+ ]
1465
+ },
1466
+ {
1467
+ "kind": "method",
1468
+ "name": "getElement",
1469
+ "privacy": "public",
1470
+ "return": {
1471
+ "type": {
1472
+ "text": "HTMLElement"
1473
+ }
1474
+ }
1475
+ },
1476
+ {
1477
+ "kind": "method",
1478
+ "name": "destroy",
1479
+ "privacy": "public"
1480
+ },
1481
+ {
1482
+ "kind": "method",
1483
+ "name": "refresh",
1484
+ "privacy": "public",
1485
+ "return": {
1486
+ "type": {
1487
+ "text": "boolean"
1488
+ }
1489
+ },
1490
+ "parameters": [
1491
+ {
1492
+ "name": "params",
1493
+ "type": {
1494
+ "text": "CellRendererParams"
1495
+ }
1496
+ }
1497
+ ]
1498
+ },
1499
+ {
1500
+ "kind": "method",
1501
+ "name": "slottedRendererChanged",
1502
+ "privacy": "public"
1503
+ },
1504
+ {
1505
+ "kind": "field",
1506
+ "name": "_presentation",
1507
+ "type": {
1508
+ "text": "ComponentPresentation | null | undefined"
1509
+ },
1510
+ "privacy": "private",
1511
+ "default": "void 0",
1512
+ "inheritedFrom": {
1513
+ "name": "FoundationElement",
1514
+ "module": "src/foundation-element/foundation-element.ts"
1515
+ }
1516
+ },
1517
+ {
1518
+ "kind": "field",
1519
+ "name": "$presentation",
1520
+ "type": {
1521
+ "text": "ComponentPresentation | null"
1522
+ },
1523
+ "privacy": "public",
1524
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1525
+ "inheritedFrom": {
1526
+ "name": "FoundationElement",
1527
+ "module": "src/foundation-element/foundation-element.ts"
1528
+ }
1529
+ },
1530
+ {
1531
+ "kind": "field",
1532
+ "name": "template",
1533
+ "type": {
1534
+ "text": "ElementViewTemplate | void | null"
1535
+ },
1536
+ "privacy": "public",
1537
+ "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.",
1538
+ "inheritedFrom": {
1539
+ "name": "FoundationElement",
1540
+ "module": "src/foundation-element/foundation-element.ts"
1541
+ }
1542
+ },
1543
+ {
1544
+ "kind": "method",
1545
+ "name": "templateChanged",
1546
+ "privacy": "protected",
1547
+ "return": {
1548
+ "type": {
1549
+ "text": "void"
1550
+ }
1551
+ },
1552
+ "inheritedFrom": {
1553
+ "name": "FoundationElement",
1554
+ "module": "src/foundation-element/foundation-element.ts"
1555
+ }
1556
+ },
1557
+ {
1558
+ "kind": "field",
1559
+ "name": "styles",
1560
+ "type": {
1561
+ "text": "ElementStyles | void | null"
1562
+ },
1563
+ "privacy": "public",
1564
+ "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.",
1565
+ "inheritedFrom": {
1566
+ "name": "FoundationElement",
1567
+ "module": "src/foundation-element/foundation-element.ts"
1568
+ }
1569
+ },
1570
+ {
1571
+ "kind": "method",
1572
+ "name": "stylesChanged",
1573
+ "privacy": "protected",
1574
+ "return": {
1575
+ "type": {
1576
+ "text": "void"
1577
+ }
1578
+ },
1579
+ "inheritedFrom": {
1580
+ "name": "FoundationElement",
1581
+ "module": "src/foundation-element/foundation-element.ts"
1582
+ }
1583
+ },
1584
+ {
1585
+ "kind": "method",
1586
+ "name": "compose",
1587
+ "privacy": "public",
1588
+ "static": true,
1589
+ "return": {
1590
+ "type": {
1591
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1592
+ }
1593
+ },
1594
+ "parameters": [
1595
+ {
1596
+ "name": "this",
1597
+ "type": {
1598
+ "text": "K"
1599
+ }
1600
+ },
1601
+ {
1602
+ "name": "elementDefinition",
1603
+ "type": {
1604
+ "text": "T"
1605
+ },
1606
+ "description": "The definition of the element to create the registry\nfunction for."
1607
+ }
1608
+ ],
1609
+ "description": "Defines an element registry function with a set of element definition defaults.",
1610
+ "inheritedFrom": {
1611
+ "name": "FoundationElement",
1612
+ "module": "src/foundation-element/foundation-element.ts"
1613
+ }
1614
+ }
1615
+ ],
1616
+ "superclass": {
1617
+ "name": "FoundationElement",
1618
+ "package": "@microsoft/fast-foundation"
1619
+ },
1620
+ "tagName": "grid-tabulator-cell",
1621
+ "customElement": true
1622
+ }
1623
+ ],
1624
+ "exports": [
1625
+ {
1626
+ "kind": "js",
1627
+ "name": "GridTabulatorCell",
1628
+ "declaration": {
1629
+ "name": "GridTabulatorCell",
1630
+ "module": "src/cell/cell.ts"
1631
+ }
1632
+ },
1633
+ {
1634
+ "kind": "custom-element-definition",
1635
+ "name": "grid-tabulator-cell",
1636
+ "declaration": {
1637
+ "name": "GridTabulatorCell",
1638
+ "module": "src/cell/cell.ts"
1639
+ }
1640
+ }
1641
+ ]
1642
+ },
1643
+ {
1644
+ "kind": "javascript-module",
1645
+ "path": "src/cell/index.ts",
1646
+ "declarations": [],
1647
+ "exports": [
1648
+ {
1649
+ "kind": "js",
1650
+ "name": "*",
1651
+ "declaration": {
1652
+ "name": "*",
1653
+ "package": "./cell"
1654
+ }
1655
+ }
1656
+ ]
1657
+ },
1420
1658
  {
1421
1659
  "kind": "javascript-module",
1422
1660
  "path": "src/cell-editors/date.editor.ts",
@@ -3104,266 +3342,28 @@
3104
3342
  },
3105
3343
  {
3106
3344
  "kind": "javascript-module",
3107
- "path": "src/cell/cell.ts",
3345
+ "path": "src/column/column.ts",
3108
3346
  "declarations": [
3109
3347
  {
3110
3348
  "kind": "class",
3111
- "description": "The GridTabulator Cell element.",
3112
- "name": "GridTabulatorCell",
3349
+ "description": "The GridTabulator Column element.",
3350
+ "name": "GridTabulatorColumn",
3113
3351
  "members": [
3114
3352
  {
3115
3353
  "kind": "field",
3116
- "name": "renderer",
3354
+ "name": "slottedCell",
3117
3355
  "type": {
3118
- "text": "CellRendererFunc"
3356
+ "text": "HTMLElement[]"
3119
3357
  },
3120
3358
  "privacy": "public"
3121
3359
  },
3122
3360
  {
3123
3361
  "kind": "field",
3124
- "name": "rendererParams",
3362
+ "name": "definition",
3125
3363
  "type": {
3126
- "text": "CellRendererParams"
3364
+ "text": "Partial<ColumnDefinition>"
3127
3365
  },
3128
- "privacy": "public"
3129
- },
3130
- {
3131
- "kind": "field",
3132
- "name": "slottedRenderer",
3133
- "type": {
3134
- "text": "HTMLElement[]"
3135
- },
3136
- "privacy": "public"
3137
- },
3138
- {
3139
- "kind": "method",
3140
- "name": "init",
3141
- "privacy": "public",
3142
- "parameters": [
3143
- {
3144
- "name": "params",
3145
- "type": {
3146
- "text": "CellRendererParams"
3147
- }
3148
- }
3149
- ]
3150
- },
3151
- {
3152
- "kind": "method",
3153
- "name": "getElement",
3154
- "privacy": "public",
3155
- "return": {
3156
- "type": {
3157
- "text": "HTMLElement"
3158
- }
3159
- }
3160
- },
3161
- {
3162
- "kind": "method",
3163
- "name": "destroy",
3164
- "privacy": "public"
3165
- },
3166
- {
3167
- "kind": "method",
3168
- "name": "refresh",
3169
- "privacy": "public",
3170
- "return": {
3171
- "type": {
3172
- "text": "boolean"
3173
- }
3174
- },
3175
- "parameters": [
3176
- {
3177
- "name": "params",
3178
- "type": {
3179
- "text": "CellRendererParams"
3180
- }
3181
- }
3182
- ]
3183
- },
3184
- {
3185
- "kind": "method",
3186
- "name": "slottedRendererChanged",
3187
- "privacy": "public"
3188
- },
3189
- {
3190
- "kind": "field",
3191
- "name": "_presentation",
3192
- "type": {
3193
- "text": "ComponentPresentation | null | undefined"
3194
- },
3195
- "privacy": "private",
3196
- "default": "void 0",
3197
- "inheritedFrom": {
3198
- "name": "FoundationElement",
3199
- "module": "src/foundation-element/foundation-element.ts"
3200
- }
3201
- },
3202
- {
3203
- "kind": "field",
3204
- "name": "$presentation",
3205
- "type": {
3206
- "text": "ComponentPresentation | null"
3207
- },
3208
- "privacy": "public",
3209
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3210
- "inheritedFrom": {
3211
- "name": "FoundationElement",
3212
- "module": "src/foundation-element/foundation-element.ts"
3213
- }
3214
- },
3215
- {
3216
- "kind": "field",
3217
- "name": "template",
3218
- "type": {
3219
- "text": "ElementViewTemplate | void | null"
3220
- },
3221
- "privacy": "public",
3222
- "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.",
3223
- "inheritedFrom": {
3224
- "name": "FoundationElement",
3225
- "module": "src/foundation-element/foundation-element.ts"
3226
- }
3227
- },
3228
- {
3229
- "kind": "method",
3230
- "name": "templateChanged",
3231
- "privacy": "protected",
3232
- "return": {
3233
- "type": {
3234
- "text": "void"
3235
- }
3236
- },
3237
- "inheritedFrom": {
3238
- "name": "FoundationElement",
3239
- "module": "src/foundation-element/foundation-element.ts"
3240
- }
3241
- },
3242
- {
3243
- "kind": "field",
3244
- "name": "styles",
3245
- "type": {
3246
- "text": "ElementStyles | void | null"
3247
- },
3248
- "privacy": "public",
3249
- "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.",
3250
- "inheritedFrom": {
3251
- "name": "FoundationElement",
3252
- "module": "src/foundation-element/foundation-element.ts"
3253
- }
3254
- },
3255
- {
3256
- "kind": "method",
3257
- "name": "stylesChanged",
3258
- "privacy": "protected",
3259
- "return": {
3260
- "type": {
3261
- "text": "void"
3262
- }
3263
- },
3264
- "inheritedFrom": {
3265
- "name": "FoundationElement",
3266
- "module": "src/foundation-element/foundation-element.ts"
3267
- }
3268
- },
3269
- {
3270
- "kind": "method",
3271
- "name": "compose",
3272
- "privacy": "public",
3273
- "static": true,
3274
- "return": {
3275
- "type": {
3276
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3277
- }
3278
- },
3279
- "parameters": [
3280
- {
3281
- "name": "this",
3282
- "type": {
3283
- "text": "K"
3284
- }
3285
- },
3286
- {
3287
- "name": "elementDefinition",
3288
- "type": {
3289
- "text": "T"
3290
- },
3291
- "description": "The definition of the element to create the registry\nfunction for."
3292
- }
3293
- ],
3294
- "description": "Defines an element registry function with a set of element definition defaults.",
3295
- "inheritedFrom": {
3296
- "name": "FoundationElement",
3297
- "module": "src/foundation-element/foundation-element.ts"
3298
- }
3299
- }
3300
- ],
3301
- "superclass": {
3302
- "name": "FoundationElement",
3303
- "package": "@microsoft/fast-foundation"
3304
- },
3305
- "tagName": "grid-tabulator-cell",
3306
- "customElement": true
3307
- }
3308
- ],
3309
- "exports": [
3310
- {
3311
- "kind": "js",
3312
- "name": "GridTabulatorCell",
3313
- "declaration": {
3314
- "name": "GridTabulatorCell",
3315
- "module": "src/cell/cell.ts"
3316
- }
3317
- },
3318
- {
3319
- "kind": "custom-element-definition",
3320
- "name": "grid-tabulator-cell",
3321
- "declaration": {
3322
- "name": "GridTabulatorCell",
3323
- "module": "src/cell/cell.ts"
3324
- }
3325
- }
3326
- ]
3327
- },
3328
- {
3329
- "kind": "javascript-module",
3330
- "path": "src/cell/index.ts",
3331
- "declarations": [],
3332
- "exports": [
3333
- {
3334
- "kind": "js",
3335
- "name": "*",
3336
- "declaration": {
3337
- "name": "*",
3338
- "package": "./cell"
3339
- }
3340
- }
3341
- ]
3342
- },
3343
- {
3344
- "kind": "javascript-module",
3345
- "path": "src/column/column.ts",
3346
- "declarations": [
3347
- {
3348
- "kind": "class",
3349
- "description": "The GridTabulator Column element.",
3350
- "name": "GridTabulatorColumn",
3351
- "members": [
3352
- {
3353
- "kind": "field",
3354
- "name": "slottedCell",
3355
- "type": {
3356
- "text": "HTMLElement[]"
3357
- },
3358
- "privacy": "public"
3359
- },
3360
- {
3361
- "kind": "field",
3362
- "name": "definition",
3363
- "type": {
3364
- "text": "Partial<ColumnDefinition>"
3365
- },
3366
- "default": "{}"
3366
+ "default": "{}"
3367
3367
  },
3368
3368
  {
3369
3369
  "kind": "method",
@@ -4665,6 +4665,41 @@
4665
4665
  }
4666
4666
  ]
4667
4667
  },
4668
+ {
4669
+ "kind": "javascript-module",
4670
+ "path": "src/style/colors.ts",
4671
+ "declarations": [],
4672
+ "exports": []
4673
+ },
4674
+ {
4675
+ "kind": "javascript-module",
4676
+ "path": "src/style/index.ts",
4677
+ "declarations": [],
4678
+ "exports": [
4679
+ {
4680
+ "kind": "js",
4681
+ "name": "*",
4682
+ "declaration": {
4683
+ "name": "*",
4684
+ "package": "./colors"
4685
+ }
4686
+ },
4687
+ {
4688
+ "kind": "js",
4689
+ "name": "*",
4690
+ "declaration": {
4691
+ "name": "*",
4692
+ "package": "./tokens"
4693
+ }
4694
+ }
4695
+ ]
4696
+ },
4697
+ {
4698
+ "kind": "javascript-module",
4699
+ "path": "src/style/tokens.ts",
4700
+ "declarations": [],
4701
+ "exports": []
4702
+ },
4668
4703
  {
4669
4704
  "kind": "javascript-module",
4670
4705
  "path": "src/utils/index.ts",
@@ -4828,41 +4863,6 @@
4828
4863
  }
4829
4864
  }
4830
4865
  ]
4831
- },
4832
- {
4833
- "kind": "javascript-module",
4834
- "path": "src/style/colors.ts",
4835
- "declarations": [],
4836
- "exports": []
4837
- },
4838
- {
4839
- "kind": "javascript-module",
4840
- "path": "src/style/index.ts",
4841
- "declarations": [],
4842
- "exports": [
4843
- {
4844
- "kind": "js",
4845
- "name": "*",
4846
- "declaration": {
4847
- "name": "*",
4848
- "package": "./colors"
4849
- }
4850
- },
4851
- {
4852
- "kind": "js",
4853
- "name": "*",
4854
- "declaration": {
4855
- "name": "*",
4856
- "package": "./tokens"
4857
- }
4858
- }
4859
- ]
4860
- },
4861
- {
4862
- "kind": "javascript-module",
4863
- "path": "src/style/tokens.ts",
4864
- "declarations": [],
4865
- "exports": []
4866
4866
  }
4867
4867
  ]
4868
4868
  }
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": "15.2.1",
4
+ "version": "15.3.1",
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": "15.2.1",
45
- "@genesislcap/genx": "15.2.1",
46
- "@genesislcap/rollup-builder": "15.2.1",
47
- "@genesislcap/ts-builder": "15.2.1",
48
- "@genesislcap/uvu-playwright-builder": "15.2.1",
49
- "@genesislcap/vite-builder": "15.2.1",
50
- "@genesislcap/webpack-builder": "15.2.1",
44
+ "@genesislcap/foundation-testing": "15.3.1",
45
+ "@genesislcap/genx": "15.3.1",
46
+ "@genesislcap/rollup-builder": "15.3.1",
47
+ "@genesislcap/ts-builder": "15.3.1",
48
+ "@genesislcap/uvu-playwright-builder": "15.3.1",
49
+ "@genesislcap/vite-builder": "15.3.1",
50
+ "@genesislcap/webpack-builder": "15.3.1",
51
51
  "@types/tabulator-tables": "6.2.6"
52
52
  },
53
53
  "dependencies": {
54
- "@genesislcap/foundation-comms": "15.2.1",
55
- "@genesislcap/foundation-logger": "15.2.1",
56
- "@genesislcap/foundation-ui": "15.2.1",
57
- "@genesislcap/foundation-utils": "15.2.1",
54
+ "@genesislcap/foundation-comms": "15.3.1",
55
+ "@genesislcap/foundation-logger": "15.3.1",
56
+ "@genesislcap/foundation-ui": "15.3.1",
57
+ "@genesislcap/foundation-utils": "15.3.1",
58
58
  "@microsoft/fast-colors": "5.3.1",
59
59
  "@microsoft/fast-components": "2.30.6",
60
60
  "@microsoft/fast-element": "1.14.0",
@@ -86,5 +86,5 @@
86
86
  "require": "./dist/react.cjs"
87
87
  }
88
88
  },
89
- "gitHead": "3917f3dc0bb5f4487bd30b37360fa0cddda92f0c"
89
+ "gitHead": "1c3a33f7d56acec166f832b9610e83343a8873e6"
90
90
  }