@genesislcap/foundation-zero-grid-tabulator 14.362.2-alpha-383efa6.0 → 14.363.0
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.
- package/dist/custom-elements.json +87 -87
- package/package.json +13 -13
|
@@ -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/foundation-zero-grid-tabulator",
|
|
3
3
|
"description": "Genesis Foundation Zero Grid Tabulator",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.363.0",
|
|
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.
|
|
37
|
-
"@genesislcap/rollup-builder": "14.
|
|
38
|
-
"@genesislcap/ts-builder": "14.
|
|
39
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
40
|
-
"@genesislcap/vite-builder": "14.
|
|
41
|
-
"@genesislcap/webpack-builder": "14.
|
|
36
|
+
"@genesislcap/genx": "14.363.0",
|
|
37
|
+
"@genesislcap/rollup-builder": "14.363.0",
|
|
38
|
+
"@genesislcap/ts-builder": "14.363.0",
|
|
39
|
+
"@genesislcap/uvu-playwright-builder": "14.363.0",
|
|
40
|
+
"@genesislcap/vite-builder": "14.363.0",
|
|
41
|
+
"@genesislcap/webpack-builder": "14.363.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@genesislcap/foundation-comms": "14.
|
|
45
|
-
"@genesislcap/foundation-ui": "14.
|
|
46
|
-
"@genesislcap/foundation-utils": "14.
|
|
47
|
-
"@genesislcap/foundation-zero": "14.
|
|
48
|
-
"@genesislcap/grid-tabulator": "14.
|
|
44
|
+
"@genesislcap/foundation-comms": "14.363.0",
|
|
45
|
+
"@genesislcap/foundation-ui": "14.363.0",
|
|
46
|
+
"@genesislcap/foundation-utils": "14.363.0",
|
|
47
|
+
"@genesislcap/foundation-zero": "14.363.0",
|
|
48
|
+
"@genesislcap/grid-tabulator": "14.363.0",
|
|
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": "
|
|
67
|
+
"gitHead": "40c64eb7db47bb801edd34ec3ae5e4c726afe40a"
|
|
68
68
|
}
|