@webitel/styleguide 24.12.65 → 24.12.68

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/styleguide",
3
- "version": "24.12.65",
3
+ "version": "24.12.68",
4
4
  "main": "",
5
5
  "exports": {
6
6
  ".": "./src/lib/main.scss",
@@ -0,0 +1,7 @@
1
+ import sizes from './sizes';
2
+
3
+ const primitive = {
4
+ ...sizes,
5
+ };
6
+
7
+ export default primitive;
@@ -0,0 +1,9 @@
1
+ export default {
2
+ none: '0',
3
+ xs: '2px',
4
+ sm: '4px',
5
+ md: '6px',
6
+ lg: '8px',
7
+ xl: '16px',
8
+ pill: '56px',
9
+ }
@@ -0,0 +1,5 @@
1
+ import borderRadius from "./border-radius";
2
+
3
+ export default {
4
+ borderRadius,
5
+ }
@@ -10,7 +10,7 @@ export default {
10
10
  iconSize: '1rem',
11
11
  anchorGutter: '2px',
12
12
  content: {
13
- borderRadius: '{border.radius.md}'
13
+ borderRadius: '{border.radius.md}',
14
14
  },
15
15
  mask: {
16
16
  transitionDuration: '0.15s'
@@ -31,7 +31,7 @@
31
31
 
32
32
  // content wrapper
33
33
  --content-wrapper-color: var(--p-content-background);
34
- --content-wrapper-hover-color: var(--dp-24-surface-color);
34
+ --content-wrapper-hover-color: var(--p-content-hover-background);
35
35
 
36
36
  // success colors
37
37
  --success-color: var(--green-darken-4);