tcce-design-system 0.3.27 → 0.3.28

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.
@@ -12194,6 +12194,7 @@ const sv = x`
12194
12194
  overflow-x: auto;
12195
12195
  max-height: ${({ $maxHeight: e }) => e ? typeof e == "number" ? `${e}px` : e : "none"};
12196
12196
  max-width: 100%;
12197
+ box-shadow: var(--shadow-black-card)
12197
12198
  `, cv = S.table`
12198
12199
  width: 100%;
12199
12200
  border-collapse: separate;
@@ -12215,6 +12216,7 @@ const sv = x`
12215
12216
  overflow: visible;
12216
12217
  }
12217
12218
  `, tc = S.tr`
12219
+ background-color: var(--color-main-white);
12218
12220
  &:hover {
12219
12221
  background-color: var(--color-main-alternative-secondary);
12220
12222
  }
@@ -12899,7 +12901,8 @@ const Iv = Ln(Fv), Lv = Is`
12899
12901
  opacity: ${({ $disabled: e }) => e ? 0.5 : 1};
12900
12902
 
12901
12903
  &:hover:not(:disabled) {
12902
- background-color: ${({ $active: e }) => e ? "var(--color-blue-600)" : "var(--color-main-alternative-secondary)"};
12904
+ background-color: ${({ $active: e }) => e ? "var(--color-blue-600)" : "var(--color-main-blue-primary)"};
12905
+ color: var(--color-main-white);
12903
12906
  border-color: ${({ $active: e }) => e ? "var(--color-blue-600)" : "var(--color-main-blue-primary)"};
12904
12907
  }
12905
12908
 
@@ -1711,6 +1711,7 @@
1711
1711
  overflow-x: auto;
1712
1712
  max-height: ${({$maxHeight:e})=>e?typeof e=="number"?`${e}px`:e:"none"};
1713
1713
  max-width: 100%;
1714
+ box-shadow: var(--shadow-black-card)
1714
1715
  `,qv=v.table`
1715
1716
  width: 100%;
1716
1717
  border-collapse: separate;
@@ -1732,6 +1733,7 @@
1732
1733
  overflow: visible;
1733
1734
  }
1734
1735
  `,cc=v.tr`
1736
+ background-color: var(--color-main-white);
1735
1737
  &:hover {
1736
1738
  background-color: var(--color-main-alternative-secondary);
1737
1739
  }
@@ -2036,7 +2038,8 @@
2036
2038
  opacity: ${({$disabled:e})=>e?.5:1};
2037
2039
 
2038
2040
  &:hover:not(:disabled) {
2039
- background-color: ${({$active:e})=>e?"var(--color-blue-600)":"var(--color-main-alternative-secondary)"};
2041
+ background-color: ${({$active:e})=>e?"var(--color-blue-600)":"var(--color-main-blue-primary)"};
2042
+ color: var(--color-main-white);
2040
2043
  border-color: ${({$active:e})=>e?"var(--color-blue-600)":"var(--color-main-blue-primary)"};
2041
2044
  }
2042
2045
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.3.27",
6
+ "version": "0.3.28",
7
7
  "description": "This package provides reusable UI components to ensure consistency across all CRM frontend applications",
8
8
  "author": "BizAppsTotal <bizapps@tcce.biz>",
9
9
  "type": "module",