@genesislcap/rapid-grid-tabulator 14.467.1-alpha-5e9a5600e.0 → 14.467.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 +115 -115
  2. package/package.json +13 -13
@@ -1172,93 +1172,6 @@
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
- },
1262
1175
  {
1263
1176
  "kind": "javascript-module",
1264
1177
  "path": "src/cell-formatters/action.formatter.ts",
@@ -1654,22 +1567,47 @@
1654
1567
  },
1655
1568
  {
1656
1569
  "kind": "javascript-module",
1657
- "path": "src/themes/index.ts",
1658
- "declarations": [],
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
+ ],
1659
1589
  "exports": [
1660
1590
  {
1661
1591
  "kind": "js",
1662
- "name": "*",
1592
+ "name": "darkColors",
1663
1593
  "declaration": {
1664
- "name": "*",
1665
- "package": "./genesis-rapid/theme-genesis-rapid"
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"
1666
1604
  }
1667
1605
  }
1668
1606
  ]
1669
1607
  },
1670
1608
  {
1671
1609
  "kind": "javascript-module",
1672
- "path": "src/utils/index.ts",
1610
+ "path": "src/style/index.ts",
1673
1611
  "declarations": [],
1674
1612
  "exports": [
1675
1613
  {
@@ -1677,43 +1615,54 @@
1677
1615
  "name": "*",
1678
1616
  "declaration": {
1679
1617
  "name": "*",
1680
- "package": "./init-grid"
1618
+ "package": "./colors"
1619
+ }
1620
+ },
1621
+ {
1622
+ "kind": "js",
1623
+ "name": "*",
1624
+ "declaration": {
1625
+ "name": "*",
1626
+ "package": "./tokens"
1681
1627
  }
1682
1628
  }
1683
1629
  ]
1684
1630
  },
1685
1631
  {
1686
1632
  "kind": "javascript-module",
1687
- "path": "src/utils/init-grid.ts",
1633
+ "path": "src/style/tokens.ts",
1688
1634
  "declarations": [
1689
1635
  {
1690
- "kind": "function",
1691
- "name": "initRapidGridTabulator",
1692
- "return": {
1693
- "type": {
1694
- "text": ""
1695
- }
1636
+ "kind": "variable",
1637
+ "name": "gridThemeGenesisRapidTokens",
1638
+ "type": {
1639
+ "text": "object"
1696
1640
  },
1697
- "parameters": [
1698
- {
1699
- "name": "options",
1700
- "default": "{}",
1701
- "type": {
1702
- "text": "Options"
1703
- },
1704
- "description": "The tabulator options"
1705
- }
1706
- ],
1707
- "description": "Initialize a Rapid Grid Tabulator with Rapid-specific formatters"
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}"
1708
1642
  }
1709
1643
  ],
1710
1644
  "exports": [
1711
1645
  {
1712
1646
  "kind": "js",
1713
- "name": "initRapidGridTabulator",
1647
+ "name": "gridThemeGenesisRapidTokens",
1714
1648
  "declaration": {
1715
- "name": "initRapidGridTabulator",
1716
- "module": "src/utils/init-grid.ts"
1649
+ "name": "gridThemeGenesisRapidTokens",
1650
+ "module": "src/style/tokens.ts"
1651
+ }
1652
+ }
1653
+ ]
1654
+ },
1655
+ {
1656
+ "kind": "javascript-module",
1657
+ "path": "src/themes/index.ts",
1658
+ "declarations": [],
1659
+ "exports": [
1660
+ {
1661
+ "kind": "js",
1662
+ "name": "*",
1663
+ "declaration": {
1664
+ "name": "*",
1665
+ "package": "./genesis-rapid/theme-genesis-rapid"
1717
1666
  }
1718
1667
  }
1719
1668
  ]
@@ -1820,6 +1769,57 @@
1820
1769
  }
1821
1770
  }
1822
1771
  ]
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.1-alpha-5e9a5600e.0",
4
+ "version": "14.467.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.1-alpha-5e9a5600e.0",
39
- "@genesislcap/rollup-builder": "14.467.1-alpha-5e9a5600e.0",
40
- "@genesislcap/ts-builder": "14.467.1-alpha-5e9a5600e.0",
41
- "@genesislcap/uvu-playwright-builder": "14.467.1-alpha-5e9a5600e.0",
42
- "@genesislcap/vite-builder": "14.467.1-alpha-5e9a5600e.0",
43
- "@genesislcap/webpack-builder": "14.467.1-alpha-5e9a5600e.0"
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"
44
44
  },
45
45
  "dependencies": {
46
- "@genesislcap/foundation-comms": "14.467.1-alpha-5e9a5600e.0",
47
- "@genesislcap/foundation-ui": "14.467.1-alpha-5e9a5600e.0",
48
- "@genesislcap/foundation-utils": "14.467.1-alpha-5e9a5600e.0",
49
- "@genesislcap/grid-tabulator": "14.467.1-alpha-5e9a5600e.0",
50
- "@genesislcap/rapid-design-system": "14.467.1-alpha-5e9a5600e.0",
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",
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": "5deab7281aa3f6a638ccf5e27631f284dbfdcaa5"
69
+ "gitHead": "2edbf1311578ebd00440aacdd362b30411428923"
70
70
  }