@taiga-ui/core 4.0.1 → 4.2.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/esm2022/components/button/button.directive.mjs +2 -2
- package/esm2022/components/data-list/data-list.component.mjs +3 -3
- package/esm2022/components/root/root.component.mjs +1 -1
- package/esm2022/components/textfield/textfield.component.mjs +3 -3
- package/esm2022/directives/group/group.directive.mjs +5 -4
- package/fesm2022/taiga-ui-core-components-button.mjs +2 -2
- package/fesm2022/taiga-ui-core-components-button.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-data-list.mjs +2 -2
- package/fesm2022/taiga-ui-core-components-data-list.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-root.mjs +1 -1
- package/fesm2022/taiga-ui-core-components-textfield.mjs +2 -2
- package/fesm2022/taiga-ui-core-components-textfield.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-directives-group.mjs +4 -3
- package/fesm2022/taiga-ui-core-directives-group.mjs.map +1 -1
- package/package.json +3 -3
- package/styles/components/button.less +1 -1
- package/styles/components/group.less +24 -0
- package/styles/components/textfield.less +1 -5
- package/styles/mixins/mixins.less +1 -1
|
@@ -162,7 +162,7 @@ tui-textfield {
|
|
|
162
162
|
box-sizing: border-box;
|
|
163
163
|
border: none;
|
|
164
164
|
border-inline-start: var(--t-left, 0) solid transparent !important;
|
|
165
|
-
border-inline-end: calc(var(--t-right, 0rem) + var(--t-side)) solid transparent !important;
|
|
165
|
+
border-inline-end: calc(var(--t-right, var(--t-0, 0rem)) + var(--t-side)) solid transparent !important;
|
|
166
166
|
border-radius: inherit;
|
|
167
167
|
padding: inherit;
|
|
168
168
|
}
|
|
@@ -243,10 +243,6 @@ tui-textfield {
|
|
|
243
243
|
input:defined,
|
|
244
244
|
select:defined {
|
|
245
245
|
.ios-only({
|
|
246
|
-
&:active {
|
|
247
|
-
font-size: 1rem;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
246
|
&._ios-fix {
|
|
251
247
|
position: fixed;
|
|
252
248
|
left: 1000rem;
|