@taiga-ui/core 4.85.0 → 4.87.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/button/button.directive.d.ts +1 -1
- package/esm2022/components/button/button.directive.mjs +2 -2
- package/esm2022/components/data-list/data-list.component.mjs +6 -5
- package/esm2022/components/icon/icon.component.mjs +5 -3
- package/esm2022/components/label/label.directive.mjs +3 -3
- package/esm2022/components/link/link.directive.mjs +3 -3
- package/esm2022/components/notification/notification.directive.mjs +3 -3
- package/esm2022/components/root/root.component.mjs +2 -2
- package/esm2022/components/textfield/textfield-multi/textfield-multi.component.mjs +6 -4
- package/esm2022/components/textfield/textfield.component.mjs +6 -5
- package/esm2022/directives/appearance/appearance.directive.mjs +3 -3
- package/esm2022/directives/group/group.directive.mjs +3 -3
- package/esm2022/directives/icons/icons.directive.mjs +3 -3
- package/esm2022/directives/title/title.directive.mjs +6 -4
- package/fesm2022/taiga-ui-core-components-button.mjs +2 -2
- package/fesm2022/taiga-ui-core-components-data-list.mjs +5 -4
- package/fesm2022/taiga-ui-core-components-data-list.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-icon.mjs +4 -2
- package/fesm2022/taiga-ui-core-components-icon.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-label.mjs +3 -3
- package/fesm2022/taiga-ui-core-components-link.mjs +3 -3
- package/fesm2022/taiga-ui-core-components-notification.mjs +3 -3
- package/fesm2022/taiga-ui-core-components-root.mjs +2 -2
- package/fesm2022/taiga-ui-core-components-textfield.mjs +9 -7
- package/fesm2022/taiga-ui-core-components-textfield.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-directives-appearance.mjs +3 -3
- package/fesm2022/taiga-ui-core-directives-group.mjs +3 -3
- package/fesm2022/taiga-ui-core-directives-icons.mjs +3 -3
- package/fesm2022/taiga-ui-core-directives-title.mjs +5 -3
- package/fesm2022/taiga-ui-core-directives-title.mjs.map +1 -1
- package/package.json +4 -4
- package/styles/components/icon.less +1 -1
- package/styles/components/textfield.less +9 -4
- package/styles/components/title.less +3 -2
- package/styles/theme/palette.less +10 -10
- package/styles/variables/version.less +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.87.0",
|
|
4
4
|
"description": "Core library for creating Angular components and applications using Taiga UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -329,10 +329,10 @@
|
|
|
329
329
|
"@angular/router": ">=16.0.0",
|
|
330
330
|
"@ng-web-apis/common": "^4.14.0",
|
|
331
331
|
"@ng-web-apis/mutation-observer": "^4.14.0",
|
|
332
|
-
"@taiga-ui/cdk": "4.
|
|
332
|
+
"@taiga-ui/cdk": "4.87.0",
|
|
333
333
|
"@taiga-ui/event-plugins": "^4.7.0",
|
|
334
|
-
"@taiga-ui/i18n": "4.
|
|
335
|
-
"@taiga-ui/polymorpheus": "^4.
|
|
334
|
+
"@taiga-ui/i18n": "4.87.0",
|
|
335
|
+
"@taiga-ui/polymorpheus": "^4.10.0",
|
|
336
336
|
"rxjs": ">=7.0.0"
|
|
337
337
|
},
|
|
338
338
|
"schematics": "./schematics/collection.json",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@import '@taiga-ui/core/styles/taiga-ui-local.less';
|
|
2
2
|
|
|
3
|
-
tui-
|
|
3
|
+
[tuiTextfieldV='@{tui-version}'] {
|
|
4
4
|
.scrollbar-hidden();
|
|
5
5
|
.transition(color);
|
|
6
6
|
|
|
@@ -82,7 +82,6 @@ tui-textfield {
|
|
|
82
82
|
outline: none;
|
|
83
83
|
padding-block-start: 1.125rem;
|
|
84
84
|
padding-block-end: 1.125rem;
|
|
85
|
-
color: var(--tui-text-primary);
|
|
86
85
|
|
|
87
86
|
&[inputmode='none'] {
|
|
88
87
|
caret-color: transparent;
|
|
@@ -268,7 +267,6 @@ tui-textfield {
|
|
|
268
267
|
|
|
269
268
|
appearance: none;
|
|
270
269
|
box-sizing: border-box;
|
|
271
|
-
border-radius: inherit;
|
|
272
270
|
border-width: 0;
|
|
273
271
|
// StackBlitz changes "0rem" to "0" breaking calc
|
|
274
272
|
padding-inline-start: calc(var(--t-start, ~'0rem') + var(--t-padding));
|
|
@@ -278,6 +276,7 @@ tui-textfield {
|
|
|
278
276
|
& > .t-template {
|
|
279
277
|
display: flex;
|
|
280
278
|
align-items: center;
|
|
279
|
+
border-radius: inherit;
|
|
281
280
|
color: var(--tui-text-primary);
|
|
282
281
|
}
|
|
283
282
|
|
|
@@ -287,11 +286,17 @@ tui-textfield {
|
|
|
287
286
|
color: transparent !important;
|
|
288
287
|
}
|
|
289
288
|
|
|
289
|
+
input,
|
|
290
|
+
select,
|
|
291
|
+
textarea {
|
|
292
|
+
background: none;
|
|
293
|
+
border-radius: inherit;
|
|
294
|
+
}
|
|
295
|
+
|
|
290
296
|
input:not([type='range']),
|
|
291
297
|
select:defined,
|
|
292
298
|
textarea:defined {
|
|
293
299
|
pointer-events: auto;
|
|
294
|
-
background: none;
|
|
295
300
|
|
|
296
301
|
// TODO: Remove :not when we drop old select tuiTextfield in v5
|
|
297
302
|
&:not(select):read-only ~ .t-filler {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@import '@taiga-ui/core/styles/taiga-ui-local.less';
|
|
1
2
|
/**
|
|
2
3
|
* @name Title
|
|
3
4
|
* @selector [tuiTitle], [tuiSubtitle]
|
|
@@ -18,7 +19,7 @@
|
|
|
18
19
|
* @see-also
|
|
19
20
|
* Label
|
|
20
21
|
*/
|
|
21
|
-
[
|
|
22
|
+
[tuiTitleV='@{tui-version}'] {
|
|
22
23
|
position: relative;
|
|
23
24
|
display: flex;
|
|
24
25
|
min-inline-size: 0;
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
margin: 0;
|
|
72
73
|
}
|
|
73
74
|
|
|
74
|
-
[tuiButton] [
|
|
75
|
+
[tuiButton] [tuiTitleV='@{tui-version}'] {
|
|
75
76
|
margin-inline-end: auto;
|
|
76
77
|
|
|
77
78
|
[tuiSubtitle] {
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
--tui-border-hover: rgba(255, 255, 255, 0.6);
|
|
21
21
|
--tui-border-focus: rgba(255, 255, 255, 0.64);
|
|
22
22
|
// Statuses
|
|
23
|
-
--tui-status-negative:
|
|
24
|
-
--tui-status-negative-pale: rgba(
|
|
25
|
-
--tui-status-negative-pale-hover: rgba(
|
|
23
|
+
--tui-status-negative: #ff4d4d;
|
|
24
|
+
--tui-status-negative-pale: rgba(255, 77, 77, 0.24);
|
|
25
|
+
--tui-status-negative-pale-hover: rgba(255, 77, 77, 0.32);
|
|
26
26
|
--tui-status-positive: rgb(74, 201, 155);
|
|
27
27
|
--tui-status-positive-pale: rgba(74, 201, 155, 0.32);
|
|
28
28
|
--tui-status-positive-pale-hover: rgba(74, 201, 155, 0.4);
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
--tui-text-action-hover: #526ed3;
|
|
42
42
|
--tui-text-positive: #44c596;
|
|
43
43
|
--tui-text-positive-hover: #3aa981;
|
|
44
|
-
--tui-text-negative: #
|
|
45
|
-
--tui-text-negative-hover: #
|
|
44
|
+
--tui-text-negative: #ff4d4d;
|
|
45
|
+
--tui-text-negative-hover: #f66;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.light() {
|
|
@@ -75,9 +75,9 @@
|
|
|
75
75
|
--tui-border-hover: rgba(0, 0, 0, 0.16);
|
|
76
76
|
--tui-border-focus: rgba(51, 51, 51, 0.64);
|
|
77
77
|
// Statuses
|
|
78
|
-
--tui-status-negative:
|
|
79
|
-
--tui-status-negative-pale: rgba(
|
|
80
|
-
--tui-status-negative-pale-hover: rgba(
|
|
78
|
+
--tui-status-negative: #ff291a;
|
|
79
|
+
--tui-status-negative-pale: rgba(245, 34, 34, 0.08);
|
|
80
|
+
--tui-status-negative-pale-hover: rgba(245, 34, 34, 0.16);
|
|
81
81
|
--tui-status-positive: rgba(74, 201, 155, 1);
|
|
82
82
|
--tui-status-positive-pale: rgba(74, 201, 155, 0.12);
|
|
83
83
|
--tui-status-positive-pale-hover: rgba(74, 201, 155, 0.24);
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
--tui-text-action-hover: #6c86e2;
|
|
99
99
|
--tui-text-positive: #3aa981;
|
|
100
100
|
--tui-text-positive-hover: #7ac5aa;
|
|
101
|
-
--tui-text-negative: #
|
|
102
|
-
--tui-text-negative-hover: #
|
|
101
|
+
--tui-text-negative: #ff291a;
|
|
102
|
+
--tui-text-negative-hover: #ff4d4d;
|
|
103
103
|
// Charts
|
|
104
104
|
--tui-chart-categorical-00: var(--tui-background-accent-1);
|
|
105
105
|
--tui-chart-categorical-01: #ea97c4;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@tui-version: '4.
|
|
1
|
+
@tui-version: '4.87.0';
|