@genesislcap/rapid-grid-tabulator 14.467.2 → 14.468.0-FUI-2555.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 +110 -110
  2. package/package.json +13 -13
@@ -1172,6 +1172,93 @@
1172
1172
  }
1173
1173
  ]
1174
1174
  },
1175
+ {
1176
+ "kind": "javascript-module",
1177
+ "path": "src/style/colors.ts",
1178
+ "declarations": [
1179
+ {
1180
+ "kind": "variable",
1181
+ "name": "darkColors",
1182
+ "type": {
1183
+ "text": "object"
1184
+ },
1185
+ "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}"
1186
+ },
1187
+ {
1188
+ "kind": "variable",
1189
+ "name": "lightColors",
1190
+ "type": {
1191
+ "text": "object"
1192
+ },
1193
+ "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}"
1194
+ }
1195
+ ],
1196
+ "exports": [
1197
+ {
1198
+ "kind": "js",
1199
+ "name": "darkColors",
1200
+ "declaration": {
1201
+ "name": "darkColors",
1202
+ "module": "src/style/colors.ts"
1203
+ }
1204
+ },
1205
+ {
1206
+ "kind": "js",
1207
+ "name": "lightColors",
1208
+ "declaration": {
1209
+ "name": "lightColors",
1210
+ "module": "src/style/colors.ts"
1211
+ }
1212
+ }
1213
+ ]
1214
+ },
1215
+ {
1216
+ "kind": "javascript-module",
1217
+ "path": "src/style/index.ts",
1218
+ "declarations": [],
1219
+ "exports": [
1220
+ {
1221
+ "kind": "js",
1222
+ "name": "*",
1223
+ "declaration": {
1224
+ "name": "*",
1225
+ "package": "./colors"
1226
+ }
1227
+ },
1228
+ {
1229
+ "kind": "js",
1230
+ "name": "*",
1231
+ "declaration": {
1232
+ "name": "*",
1233
+ "package": "./tokens"
1234
+ }
1235
+ }
1236
+ ]
1237
+ },
1238
+ {
1239
+ "kind": "javascript-module",
1240
+ "path": "src/style/tokens.ts",
1241
+ "declarations": [
1242
+ {
1243
+ "kind": "variable",
1244
+ "name": "gridThemeGenesisRapidTokens",
1245
+ "type": {
1246
+ "text": "object"
1247
+ },
1248
+ "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}"
1249
+ }
1250
+ ],
1251
+ "exports": [
1252
+ {
1253
+ "kind": "js",
1254
+ "name": "gridThemeGenesisRapidTokens",
1255
+ "declaration": {
1256
+ "name": "gridThemeGenesisRapidTokens",
1257
+ "module": "src/style/tokens.ts"
1258
+ }
1259
+ }
1260
+ ]
1261
+ },
1175
1262
  {
1176
1263
  "kind": "javascript-module",
1177
1264
  "path": "src/cell-formatters/action.formatter.ts",
@@ -1567,47 +1654,7 @@
1567
1654
  },
1568
1655
  {
1569
1656
  "kind": "javascript-module",
1570
- "path": "src/style/colors.ts",
1571
- "declarations": [
1572
- {
1573
- "kind": "variable",
1574
- "name": "darkColors",
1575
- "type": {
1576
- "text": "object"
1577
- },
1578
- "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}"
1579
- },
1580
- {
1581
- "kind": "variable",
1582
- "name": "lightColors",
1583
- "type": {
1584
- "text": "object"
1585
- },
1586
- "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}"
1587
- }
1588
- ],
1589
- "exports": [
1590
- {
1591
- "kind": "js",
1592
- "name": "darkColors",
1593
- "declaration": {
1594
- "name": "darkColors",
1595
- "module": "src/style/colors.ts"
1596
- }
1597
- },
1598
- {
1599
- "kind": "js",
1600
- "name": "lightColors",
1601
- "declaration": {
1602
- "name": "lightColors",
1603
- "module": "src/style/colors.ts"
1604
- }
1605
- }
1606
- ]
1607
- },
1608
- {
1609
- "kind": "javascript-module",
1610
- "path": "src/style/index.ts",
1657
+ "path": "src/utils/index.ts",
1611
1658
  "declarations": [],
1612
1659
  "exports": [
1613
1660
  {
@@ -1615,39 +1662,43 @@
1615
1662
  "name": "*",
1616
1663
  "declaration": {
1617
1664
  "name": "*",
1618
- "package": "./colors"
1619
- }
1620
- },
1621
- {
1622
- "kind": "js",
1623
- "name": "*",
1624
- "declaration": {
1625
- "name": "*",
1626
- "package": "./tokens"
1665
+ "package": "./init-grid"
1627
1666
  }
1628
1667
  }
1629
1668
  ]
1630
1669
  },
1631
1670
  {
1632
1671
  "kind": "javascript-module",
1633
- "path": "src/style/tokens.ts",
1672
+ "path": "src/utils/init-grid.ts",
1634
1673
  "declarations": [
1635
1674
  {
1636
- "kind": "variable",
1637
- "name": "gridThemeGenesisRapidTokens",
1638
- "type": {
1639
- "text": "object"
1675
+ "kind": "function",
1676
+ "name": "initRapidGridTabulator",
1677
+ "return": {
1678
+ "type": {
1679
+ "text": ""
1680
+ }
1640
1681
  },
1641
- "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}"
1682
+ "parameters": [
1683
+ {
1684
+ "name": "options",
1685
+ "default": "{}",
1686
+ "type": {
1687
+ "text": "Options"
1688
+ },
1689
+ "description": "The tabulator options"
1690
+ }
1691
+ ],
1692
+ "description": "Initialize a Rapid Grid Tabulator with Rapid-specific formatters"
1642
1693
  }
1643
1694
  ],
1644
1695
  "exports": [
1645
1696
  {
1646
1697
  "kind": "js",
1647
- "name": "gridThemeGenesisRapidTokens",
1698
+ "name": "initRapidGridTabulator",
1648
1699
  "declaration": {
1649
- "name": "gridThemeGenesisRapidTokens",
1650
- "module": "src/style/tokens.ts"
1700
+ "name": "initRapidGridTabulator",
1701
+ "module": "src/utils/init-grid.ts"
1651
1702
  }
1652
1703
  }
1653
1704
  ]
@@ -1769,57 +1820,6 @@
1769
1820
  }
1770
1821
  }
1771
1822
  ]
1772
- },
1773
- {
1774
- "kind": "javascript-module",
1775
- "path": "src/utils/index.ts",
1776
- "declarations": [],
1777
- "exports": [
1778
- {
1779
- "kind": "js",
1780
- "name": "*",
1781
- "declaration": {
1782
- "name": "*",
1783
- "package": "./init-grid"
1784
- }
1785
- }
1786
- ]
1787
- },
1788
- {
1789
- "kind": "javascript-module",
1790
- "path": "src/utils/init-grid.ts",
1791
- "declarations": [
1792
- {
1793
- "kind": "function",
1794
- "name": "initRapidGridTabulator",
1795
- "return": {
1796
- "type": {
1797
- "text": ""
1798
- }
1799
- },
1800
- "parameters": [
1801
- {
1802
- "name": "options",
1803
- "default": "{}",
1804
- "type": {
1805
- "text": "Options"
1806
- },
1807
- "description": "The tabulator options"
1808
- }
1809
- ],
1810
- "description": "Initialize a Rapid Grid Tabulator with Rapid-specific formatters"
1811
- }
1812
- ],
1813
- "exports": [
1814
- {
1815
- "kind": "js",
1816
- "name": "initRapidGridTabulator",
1817
- "declaration": {
1818
- "name": "initRapidGridTabulator",
1819
- "module": "src/utils/init-grid.ts"
1820
- }
1821
- }
1822
- ]
1823
1823
  }
1824
1824
  ]
1825
1825
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/rapid-grid-tabulator",
3
3
  "description": "Genesis Rapid Grid Tabulator",
4
- "version": "14.467.2",
4
+ "version": "14.468.0-FUI-2555.2",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "license": "SEE LICENSE IN license.txt",
@@ -35,19 +35,19 @@
35
35
  }
36
36
  },
37
37
  "devDependencies": {
38
- "@genesislcap/genx": "14.467.2",
39
- "@genesislcap/rollup-builder": "14.467.2",
40
- "@genesislcap/ts-builder": "14.467.2",
41
- "@genesislcap/uvu-playwright-builder": "14.467.2",
42
- "@genesislcap/vite-builder": "14.467.2",
43
- "@genesislcap/webpack-builder": "14.467.2"
38
+ "@genesislcap/genx": "14.468.0-FUI-2555.2",
39
+ "@genesislcap/rollup-builder": "14.468.0-FUI-2555.2",
40
+ "@genesislcap/ts-builder": "14.468.0-FUI-2555.2",
41
+ "@genesislcap/uvu-playwright-builder": "14.468.0-FUI-2555.2",
42
+ "@genesislcap/vite-builder": "14.468.0-FUI-2555.2",
43
+ "@genesislcap/webpack-builder": "14.468.0-FUI-2555.2"
44
44
  },
45
45
  "dependencies": {
46
- "@genesislcap/foundation-comms": "14.467.2",
47
- "@genesislcap/foundation-ui": "14.467.2",
48
- "@genesislcap/foundation-utils": "14.467.2",
49
- "@genesislcap/grid-tabulator": "14.467.2",
50
- "@genesislcap/rapid-design-system": "14.467.2",
46
+ "@genesislcap/foundation-comms": "14.468.0-FUI-2555.2",
47
+ "@genesislcap/foundation-ui": "14.468.0-FUI-2555.2",
48
+ "@genesislcap/foundation-utils": "14.468.0-FUI-2555.2",
49
+ "@genesislcap/grid-tabulator": "14.468.0-FUI-2555.2",
50
+ "@genesislcap/rapid-design-system": "14.468.0-FUI-2555.2",
51
51
  "@microsoft/fast-colors": "5.3.1",
52
52
  "@microsoft/fast-components": "2.30.6",
53
53
  "@microsoft/fast-element": "1.14.0",
@@ -66,5 +66,5 @@
66
66
  "access": "public"
67
67
  },
68
68
  "customElements": "dist/custom-elements.json",
69
- "gitHead": "2edbf1311578ebd00440aacdd362b30411428923"
69
+ "gitHead": "93823fc1411f4329eb2d69fd0e3e52b0e011f952"
70
70
  }