@taiga-ui/styles 5.11.0 → 5.12.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.
@@ -68,7 +68,7 @@
68
68
 
69
69
  &[data-size='s'] {
70
70
  --t-size: var(--tui-height-s);
71
- --t-radius: var(--tui-radius-s);
71
+ --t-radius: var(--tui-radius-m);
72
72
  --t-gap: 0.125rem;
73
73
  --t-padding: 0.125rem 0.625rem;
74
74
  --t-margin: -0.125rem;
@@ -77,13 +77,13 @@
77
77
  }
78
78
 
79
79
  &:not(:first-child)::before {
80
- border-top-left-radius: 0;
81
- border-bottom-left-radius: 0;
80
+ border-start-start-radius: 0;
81
+ border-end-start-radius: 0;
82
82
  }
83
83
 
84
84
  &:not(:last-child)::before {
85
- border-top-right-radius: 0;
86
- border-bottom-right-radius: 0;
85
+ border-start-end-radius: 0;
86
+ border-end-end-radius: 0;
87
87
  }
88
88
  }
89
89
 
@@ -101,6 +101,7 @@
101
101
 
102
102
  &::after {
103
103
  background: var(--tui-background-accent-1);
104
+ transform: scaleX(var(--tui-inline));
104
105
  }
105
106
  }
106
107
 
@@ -118,7 +119,7 @@
118
119
 
119
120
  &::after {
120
121
  background: var(--tui-background-accent-1);
121
- transform: scale(-1, 1);
122
+ transform: scaleX(calc(var(--tui-inline) * -1));
122
123
  }
123
124
  }
124
125
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/styles",
3
- "version": "5.11.0",
3
+ "version": "5.12.0",
4
4
  "description": "Framework-agnostic package with styles for Taiga UI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,6 +25,6 @@
25
25
  "./*": "./*"
26
26
  },
27
27
  "peerDependencies": {
28
- "@taiga-ui/design-tokens": "~0.305.0"
28
+ "@taiga-ui/design-tokens": "~0.306.0"
29
29
  }
30
30
  }