@genesislcap/rapid-grid-tabulator 14.396.0 → 14.396.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.
@@ -1555,6 +1555,93 @@
1555
1555
  }
1556
1556
  ]
1557
1557
  },
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
+ },
1558
1645
  {
1559
1646
  "kind": "javascript-module",
1560
1647
  "path": "src/themes/index.ts",
@@ -1723,93 +1810,6 @@
1723
1810
  }
1724
1811
  }
1725
1812
  ]
1726
- },
1727
- {
1728
- "kind": "javascript-module",
1729
- "path": "src/style/colors.ts",
1730
- "declarations": [
1731
- {
1732
- "kind": "variable",
1733
- "name": "darkColors",
1734
- "type": {
1735
- "text": "object"
1736
- },
1737
- "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}"
1738
- },
1739
- {
1740
- "kind": "variable",
1741
- "name": "lightColors",
1742
- "type": {
1743
- "text": "object"
1744
- },
1745
- "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}"
1746
- }
1747
- ],
1748
- "exports": [
1749
- {
1750
- "kind": "js",
1751
- "name": "darkColors",
1752
- "declaration": {
1753
- "name": "darkColors",
1754
- "module": "src/style/colors.ts"
1755
- }
1756
- },
1757
- {
1758
- "kind": "js",
1759
- "name": "lightColors",
1760
- "declaration": {
1761
- "name": "lightColors",
1762
- "module": "src/style/colors.ts"
1763
- }
1764
- }
1765
- ]
1766
- },
1767
- {
1768
- "kind": "javascript-module",
1769
- "path": "src/style/index.ts",
1770
- "declarations": [],
1771
- "exports": [
1772
- {
1773
- "kind": "js",
1774
- "name": "*",
1775
- "declaration": {
1776
- "name": "*",
1777
- "package": "./colors"
1778
- }
1779
- },
1780
- {
1781
- "kind": "js",
1782
- "name": "*",
1783
- "declaration": {
1784
- "name": "*",
1785
- "package": "./tokens"
1786
- }
1787
- }
1788
- ]
1789
- },
1790
- {
1791
- "kind": "javascript-module",
1792
- "path": "src/style/tokens.ts",
1793
- "declarations": [
1794
- {
1795
- "kind": "variable",
1796
- "name": "gridThemeGenesisRapidTokens",
1797
- "type": {
1798
- "text": "object"
1799
- },
1800
- "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}"
1801
- }
1802
- ],
1803
- "exports": [
1804
- {
1805
- "kind": "js",
1806
- "name": "gridThemeGenesisRapidTokens",
1807
- "declaration": {
1808
- "name": "gridThemeGenesisRapidTokens",
1809
- "module": "src/style/tokens.ts"
1810
- }
1811
- }
1812
- ]
1813
1813
  }
1814
1814
  ]
1815
1815
  }
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.396.0",
4
+ "version": "14.396.1",
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.396.0",
39
- "@genesislcap/rollup-builder": "14.396.0",
40
- "@genesislcap/ts-builder": "14.396.0",
41
- "@genesislcap/uvu-playwright-builder": "14.396.0",
42
- "@genesislcap/vite-builder": "14.396.0",
43
- "@genesislcap/webpack-builder": "14.396.0"
38
+ "@genesislcap/genx": "14.396.1",
39
+ "@genesislcap/rollup-builder": "14.396.1",
40
+ "@genesislcap/ts-builder": "14.396.1",
41
+ "@genesislcap/uvu-playwright-builder": "14.396.1",
42
+ "@genesislcap/vite-builder": "14.396.1",
43
+ "@genesislcap/webpack-builder": "14.396.1"
44
44
  },
45
45
  "dependencies": {
46
- "@genesislcap/foundation-comms": "14.396.0",
47
- "@genesislcap/foundation-ui": "14.396.0",
48
- "@genesislcap/foundation-utils": "14.396.0",
49
- "@genesislcap/grid-tabulator": "14.396.0",
50
- "@genesislcap/rapid-design-system": "14.396.0",
46
+ "@genesislcap/foundation-comms": "14.396.1",
47
+ "@genesislcap/foundation-ui": "14.396.1",
48
+ "@genesislcap/foundation-utils": "14.396.1",
49
+ "@genesislcap/grid-tabulator": "14.396.1",
50
+ "@genesislcap/rapid-design-system": "14.396.1",
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": "43e0fd00aa30590bdcad05ddb3d8aca0d493d020"
69
+ "gitHead": "4a6225102f4b6566bff9ec8a91848d661b528588"
70
70
  }