@dxc-technology/halstack-react 13.1.0 → 13.2.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/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1783,6 +1783,10 @@ var parseTheme = (theme) => {
|
|
|
1783
1783
|
tableTokens.headerFontColor = theme?.table?.headerFontColor ?? tableTokens.headerFontColor;
|
|
1784
1784
|
tableTokens.dataFontColor = theme?.table?.cellFontColor ?? tableTokens.dataFontColor;
|
|
1785
1785
|
tableTokens.sortIconColor = theme?.table?.headerFontColor ?? tableTokens.sortIconColor;
|
|
1786
|
+
tableTokens.actionIconColor = theme?.table?.baseColor ?? tableTokens.actionIconColor;
|
|
1787
|
+
tableTokens.hoverActionIconColor = theme?.table?.baseColor ?? tableTokens.hoverActionIconColor;
|
|
1788
|
+
tableTokens.focusActionIconColor = theme?.table?.baseColor ?? tableTokens.focusActionIconColor;
|
|
1789
|
+
tableTokens.activeActionIconColor = theme?.table?.baseColor ?? tableTokens.activeActionIconColor;
|
|
1786
1790
|
const tabsTokens = componentTokensCopy.tabs;
|
|
1787
1791
|
tabsTokens.selectedFontColor = theme?.tabs?.baseColor ?? tabsTokens.selectedFontColor;
|
|
1788
1792
|
tabsTokens.selectedIconColor = theme?.tabs?.baseColor ?? tabsTokens.selectedIconColor;
|
package/dist/index.mjs
CHANGED
|
@@ -1696,6 +1696,10 @@ var parseTheme = (theme) => {
|
|
|
1696
1696
|
tableTokens.headerFontColor = theme?.table?.headerFontColor ?? tableTokens.headerFontColor;
|
|
1697
1697
|
tableTokens.dataFontColor = theme?.table?.cellFontColor ?? tableTokens.dataFontColor;
|
|
1698
1698
|
tableTokens.sortIconColor = theme?.table?.headerFontColor ?? tableTokens.sortIconColor;
|
|
1699
|
+
tableTokens.actionIconColor = theme?.table?.baseColor ?? tableTokens.actionIconColor;
|
|
1700
|
+
tableTokens.hoverActionIconColor = theme?.table?.baseColor ?? tableTokens.hoverActionIconColor;
|
|
1701
|
+
tableTokens.focusActionIconColor = theme?.table?.baseColor ?? tableTokens.focusActionIconColor;
|
|
1702
|
+
tableTokens.activeActionIconColor = theme?.table?.baseColor ?? tableTokens.activeActionIconColor;
|
|
1699
1703
|
const tabsTokens = componentTokensCopy.tabs;
|
|
1700
1704
|
tabsTokens.selectedFontColor = theme?.tabs?.baseColor ?? tabsTokens.selectedFontColor;
|
|
1701
1705
|
tabsTokens.selectedIconColor = theme?.tabs?.baseColor ?? tabsTokens.selectedIconColor;
|