@genesislcap/foundation-zero-grid-tabulator 14.374.0 → 14.374.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 +153 -153
  2. package/package.json +13 -13
@@ -1162,6 +1162,159 @@
1162
1162
  }
1163
1163
  ]
1164
1164
  },
1165
+ {
1166
+ "kind": "javascript-module",
1167
+ "path": "src/style/colors.ts",
1168
+ "declarations": [
1169
+ {
1170
+ "kind": "variable",
1171
+ "name": "darkColors",
1172
+ "type": {
1173
+ "text": "object"
1174
+ },
1175
+ "default": "{\n foregroundSwatch: SwatchRGB.from(parseColorHexRGB('#cccccc')),\n headerForegroundSwatch: SwatchRGB.from(parseColorHexRGB('#879ba6')),\n backgroundSwatch: SwatchRGB.from(parseColorHexRGB('#1f2126')),\n borderSwatch: SwatchRGB.from(parseColorHexRGB('#2e3339')),\n rowHoverSwatch: SwatchRGB.from(parseColorHexRGB('#2b2e34')),\n}"
1176
+ },
1177
+ {
1178
+ "kind": "variable",
1179
+ "name": "lightColors",
1180
+ "type": {
1181
+ "text": "object"
1182
+ },
1183
+ "default": "{\n foregroundSwatch: SwatchRGB.from(parseColorHexRGB('#000000')),\n headerForegroundSwatch: SwatchRGB.from(parseColorHexRGB('#181d1f')),\n backgroundSwatch: SwatchRGB.from(parseColorHexRGB('#FFFFFF')),\n borderSwatch: SwatchRGB.from(parseColorHexRGB('#babfc7')),\n rowHoverSwatch: SwatchRGB.from(parseColorHexRGB('#2196f3')),\n}"
1184
+ }
1185
+ ],
1186
+ "exports": [
1187
+ {
1188
+ "kind": "js",
1189
+ "name": "darkColors",
1190
+ "declaration": {
1191
+ "name": "darkColors",
1192
+ "module": "src/style/colors.ts"
1193
+ }
1194
+ },
1195
+ {
1196
+ "kind": "js",
1197
+ "name": "lightColors",
1198
+ "declaration": {
1199
+ "name": "lightColors",
1200
+ "module": "src/style/colors.ts"
1201
+ }
1202
+ }
1203
+ ]
1204
+ },
1205
+ {
1206
+ "kind": "javascript-module",
1207
+ "path": "src/style/index.ts",
1208
+ "declarations": [],
1209
+ "exports": [
1210
+ {
1211
+ "kind": "js",
1212
+ "name": "*",
1213
+ "declaration": {
1214
+ "name": "*",
1215
+ "package": "./colors"
1216
+ }
1217
+ },
1218
+ {
1219
+ "kind": "js",
1220
+ "name": "*",
1221
+ "declaration": {
1222
+ "name": "*",
1223
+ "package": "./tokens"
1224
+ }
1225
+ }
1226
+ ]
1227
+ },
1228
+ {
1229
+ "kind": "javascript-module",
1230
+ "path": "src/style/tokens.ts",
1231
+ "declarations": [
1232
+ {
1233
+ "kind": "variable",
1234
+ "name": "gridThemeGenesisRapidTokens",
1235
+ "type": {
1236
+ "text": "object"
1237
+ },
1238
+ "default": "{\n backgroundColor: create<Swatch>('rapid-grid-background-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.backgroundSwatch\n : darkColors.backgroundSwatch,\n ),\n borderColor: create<Swatch>('rapid-grid-border-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.borderSwatch\n : darkColors.borderSwatch,\n ),\n foregroundColor: create<Swatch>('rapid-grid-foreground-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.foregroundSwatch\n : darkColors.foregroundSwatch,\n ),\n headerForegroundColor: create<Swatch>('rapid-grid-header-foreground-color').withDefault(\n (elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.headerForegroundSwatch\n : darkColors.headerForegroundSwatch,\n ),\n rowHoverColor: create<Swatch>('rapid-grid-row-hover-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.rowHoverSwatch\n : darkColors.rowHoverSwatch,\n ),\n}"
1239
+ }
1240
+ ],
1241
+ "exports": [
1242
+ {
1243
+ "kind": "js",
1244
+ "name": "gridThemeGenesisRapidTokens",
1245
+ "declaration": {
1246
+ "name": "gridThemeGenesisRapidTokens",
1247
+ "module": "src/style/tokens.ts"
1248
+ }
1249
+ }
1250
+ ]
1251
+ },
1252
+ {
1253
+ "kind": "javascript-module",
1254
+ "path": "src/themes/index.ts",
1255
+ "declarations": [],
1256
+ "exports": [
1257
+ {
1258
+ "kind": "js",
1259
+ "name": "*",
1260
+ "declaration": {
1261
+ "name": "*",
1262
+ "package": "./genesis-rapid/theme-genesis-rapid"
1263
+ }
1264
+ }
1265
+ ]
1266
+ },
1267
+ {
1268
+ "kind": "javascript-module",
1269
+ "path": "src/utils/index.ts",
1270
+ "declarations": [],
1271
+ "exports": [
1272
+ {
1273
+ "kind": "js",
1274
+ "name": "*",
1275
+ "declaration": {
1276
+ "name": "*",
1277
+ "package": "./init-grid"
1278
+ }
1279
+ }
1280
+ ]
1281
+ },
1282
+ {
1283
+ "kind": "javascript-module",
1284
+ "path": "src/utils/init-grid.ts",
1285
+ "declarations": [
1286
+ {
1287
+ "kind": "function",
1288
+ "name": "initZeroGridTabulator",
1289
+ "return": {
1290
+ "type": {
1291
+ "text": ""
1292
+ }
1293
+ },
1294
+ "parameters": [
1295
+ {
1296
+ "name": "options",
1297
+ "default": "{}",
1298
+ "type": {
1299
+ "text": "Options"
1300
+ },
1301
+ "description": "The tabulator options"
1302
+ }
1303
+ ],
1304
+ "description": "Initialize a Zero Grid Tabulator with Zero-specific formatters"
1305
+ }
1306
+ ],
1307
+ "exports": [
1308
+ {
1309
+ "kind": "js",
1310
+ "name": "initZeroGridTabulator",
1311
+ "declaration": {
1312
+ "name": "initZeroGridTabulator",
1313
+ "module": "src/utils/init-grid.ts"
1314
+ }
1315
+ }
1316
+ ]
1317
+ },
1165
1318
  {
1166
1319
  "kind": "javascript-module",
1167
1320
  "path": "src/cell-formatters/action.formatter.ts",
@@ -1555,159 +1708,6 @@
1555
1708
  }
1556
1709
  ]
1557
1710
  },
1558
- {
1559
- "kind": "javascript-module",
1560
- "path": "src/style/colors.ts",
1561
- "declarations": [
1562
- {
1563
- "kind": "variable",
1564
- "name": "darkColors",
1565
- "type": {
1566
- "text": "object"
1567
- },
1568
- "default": "{\n foregroundSwatch: SwatchRGB.from(parseColorHexRGB('#cccccc')),\n headerForegroundSwatch: SwatchRGB.from(parseColorHexRGB('#879ba6')),\n backgroundSwatch: SwatchRGB.from(parseColorHexRGB('#1f2126')),\n borderSwatch: SwatchRGB.from(parseColorHexRGB('#2e3339')),\n rowHoverSwatch: SwatchRGB.from(parseColorHexRGB('#2b2e34')),\n}"
1569
- },
1570
- {
1571
- "kind": "variable",
1572
- "name": "lightColors",
1573
- "type": {
1574
- "text": "object"
1575
- },
1576
- "default": "{\n foregroundSwatch: SwatchRGB.from(parseColorHexRGB('#000000')),\n headerForegroundSwatch: SwatchRGB.from(parseColorHexRGB('#181d1f')),\n backgroundSwatch: SwatchRGB.from(parseColorHexRGB('#FFFFFF')),\n borderSwatch: SwatchRGB.from(parseColorHexRGB('#babfc7')),\n rowHoverSwatch: SwatchRGB.from(parseColorHexRGB('#2196f3')),\n}"
1577
- }
1578
- ],
1579
- "exports": [
1580
- {
1581
- "kind": "js",
1582
- "name": "darkColors",
1583
- "declaration": {
1584
- "name": "darkColors",
1585
- "module": "src/style/colors.ts"
1586
- }
1587
- },
1588
- {
1589
- "kind": "js",
1590
- "name": "lightColors",
1591
- "declaration": {
1592
- "name": "lightColors",
1593
- "module": "src/style/colors.ts"
1594
- }
1595
- }
1596
- ]
1597
- },
1598
- {
1599
- "kind": "javascript-module",
1600
- "path": "src/style/index.ts",
1601
- "declarations": [],
1602
- "exports": [
1603
- {
1604
- "kind": "js",
1605
- "name": "*",
1606
- "declaration": {
1607
- "name": "*",
1608
- "package": "./colors"
1609
- }
1610
- },
1611
- {
1612
- "kind": "js",
1613
- "name": "*",
1614
- "declaration": {
1615
- "name": "*",
1616
- "package": "./tokens"
1617
- }
1618
- }
1619
- ]
1620
- },
1621
- {
1622
- "kind": "javascript-module",
1623
- "path": "src/style/tokens.ts",
1624
- "declarations": [
1625
- {
1626
- "kind": "variable",
1627
- "name": "gridThemeGenesisRapidTokens",
1628
- "type": {
1629
- "text": "object"
1630
- },
1631
- "default": "{\n backgroundColor: create<Swatch>('rapid-grid-background-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.backgroundSwatch\n : darkColors.backgroundSwatch,\n ),\n borderColor: create<Swatch>('rapid-grid-border-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.borderSwatch\n : darkColors.borderSwatch,\n ),\n foregroundColor: create<Swatch>('rapid-grid-foreground-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.foregroundSwatch\n : darkColors.foregroundSwatch,\n ),\n headerForegroundColor: create<Swatch>('rapid-grid-header-foreground-color').withDefault(\n (elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.headerForegroundSwatch\n : darkColors.headerForegroundSwatch,\n ),\n rowHoverColor: create<Swatch>('rapid-grid-row-hover-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.rowHoverSwatch\n : darkColors.rowHoverSwatch,\n ),\n}"
1632
- }
1633
- ],
1634
- "exports": [
1635
- {
1636
- "kind": "js",
1637
- "name": "gridThemeGenesisRapidTokens",
1638
- "declaration": {
1639
- "name": "gridThemeGenesisRapidTokens",
1640
- "module": "src/style/tokens.ts"
1641
- }
1642
- }
1643
- ]
1644
- },
1645
- {
1646
- "kind": "javascript-module",
1647
- "path": "src/themes/index.ts",
1648
- "declarations": [],
1649
- "exports": [
1650
- {
1651
- "kind": "js",
1652
- "name": "*",
1653
- "declaration": {
1654
- "name": "*",
1655
- "package": "./genesis-rapid/theme-genesis-rapid"
1656
- }
1657
- }
1658
- ]
1659
- },
1660
- {
1661
- "kind": "javascript-module",
1662
- "path": "src/utils/index.ts",
1663
- "declarations": [],
1664
- "exports": [
1665
- {
1666
- "kind": "js",
1667
- "name": "*",
1668
- "declaration": {
1669
- "name": "*",
1670
- "package": "./init-grid"
1671
- }
1672
- }
1673
- ]
1674
- },
1675
- {
1676
- "kind": "javascript-module",
1677
- "path": "src/utils/init-grid.ts",
1678
- "declarations": [
1679
- {
1680
- "kind": "function",
1681
- "name": "initZeroGridTabulator",
1682
- "return": {
1683
- "type": {
1684
- "text": ""
1685
- }
1686
- },
1687
- "parameters": [
1688
- {
1689
- "name": "options",
1690
- "default": "{}",
1691
- "type": {
1692
- "text": "Options"
1693
- },
1694
- "description": "The tabulator options"
1695
- }
1696
- ],
1697
- "description": "Initialize a Zero Grid Tabulator with Zero-specific formatters"
1698
- }
1699
- ],
1700
- "exports": [
1701
- {
1702
- "kind": "js",
1703
- "name": "initZeroGridTabulator",
1704
- "declaration": {
1705
- "name": "initZeroGridTabulator",
1706
- "module": "src/utils/init-grid.ts"
1707
- }
1708
- }
1709
- ]
1710
- },
1711
1711
  {
1712
1712
  "kind": "javascript-module",
1713
1713
  "path": "src/themes/genesis-rapid/theme-genesis-rapid-css.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-zero-grid-tabulator",
3
3
  "description": "Genesis Foundation Zero Grid Tabulator",
4
- "version": "14.374.0",
4
+ "version": "14.374.1",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "license": "SEE LICENSE IN license.txt",
@@ -33,19 +33,19 @@
33
33
  }
34
34
  },
35
35
  "devDependencies": {
36
- "@genesislcap/genx": "14.374.0",
37
- "@genesislcap/rollup-builder": "14.374.0",
38
- "@genesislcap/ts-builder": "14.374.0",
39
- "@genesislcap/uvu-playwright-builder": "14.374.0",
40
- "@genesislcap/vite-builder": "14.374.0",
41
- "@genesislcap/webpack-builder": "14.374.0"
36
+ "@genesislcap/genx": "14.374.1",
37
+ "@genesislcap/rollup-builder": "14.374.1",
38
+ "@genesislcap/ts-builder": "14.374.1",
39
+ "@genesislcap/uvu-playwright-builder": "14.374.1",
40
+ "@genesislcap/vite-builder": "14.374.1",
41
+ "@genesislcap/webpack-builder": "14.374.1"
42
42
  },
43
43
  "dependencies": {
44
- "@genesislcap/foundation-comms": "14.374.0",
45
- "@genesislcap/foundation-ui": "14.374.0",
46
- "@genesislcap/foundation-utils": "14.374.0",
47
- "@genesislcap/foundation-zero": "14.374.0",
48
- "@genesislcap/grid-tabulator": "14.374.0",
44
+ "@genesislcap/foundation-comms": "14.374.1",
45
+ "@genesislcap/foundation-ui": "14.374.1",
46
+ "@genesislcap/foundation-utils": "14.374.1",
47
+ "@genesislcap/foundation-zero": "14.374.1",
48
+ "@genesislcap/grid-tabulator": "14.374.1",
49
49
  "@microsoft/fast-colors": "5.3.1",
50
50
  "@microsoft/fast-components": "2.30.6",
51
51
  "@microsoft/fast-element": "1.14.0",
@@ -64,5 +64,5 @@
64
64
  "access": "public"
65
65
  },
66
66
  "customElements": "dist/custom-elements.json",
67
- "gitHead": "5b1d9974d57522806b773f291d40355a6dbff83a"
67
+ "gitHead": "d24b43a726fb1bf4f47699743adf635196a06543"
68
68
  }