@taiga-ui/styles 5.13.0 → 5.14.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/components/radio.less
CHANGED
package/components/switch.less
CHANGED
|
@@ -86,20 +86,16 @@
|
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
// TODO remove @speed in 5.0
|
|
90
|
-
// transition
|
|
91
89
|
.transition(@param: all, @speed: var(--tui-duration, 300ms)) {
|
|
92
90
|
transition-property: @param;
|
|
93
91
|
transition-duration: @speed;
|
|
94
|
-
transition-timing-function:
|
|
92
|
+
transition-timing-function: var(--tui-curve-productive-standard);
|
|
95
93
|
}
|
|
96
94
|
|
|
97
|
-
// gradient
|
|
98
95
|
.gradient(@start-color, @end-color, @angle: 45deg) {
|
|
99
96
|
background-image: linear-gradient(@angle, @start-color 0%, @end-color 100%);
|
|
100
97
|
}
|
|
101
98
|
|
|
102
|
-
// typical properties for text overflow with ellipsis
|
|
103
99
|
.text-overflow(@type: nowrap) {
|
|
104
100
|
white-space: @type;
|
|
105
101
|
overflow: hidden;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/styles",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.14.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.
|
|
28
|
+
"@taiga-ui/design-tokens": "~0.308.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import '../../utils.less';
|
|
2
2
|
|
|
3
3
|
[tuiAppearance][data-appearance='textfield'] {
|
|
4
|
-
.transition(~'box-shadow, background-color, outline-color, border-color, color');
|
|
4
|
+
.transition(~'box-shadow, background-color, outline-color, border-color, color', @tui-duration-fast);
|
|
5
5
|
|
|
6
6
|
--t-shadow: 0 0.125rem 0.1875rem rgba(0, 0, 0, 0.1);
|
|
7
7
|
|