@taiga-ui/core 3.76.0 → 3.77.1
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/bundles/taiga-ui-core-animations.umd.js +1 -1
- package/bundles/taiga-ui-core-animations.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-error.umd.js +10 -9
- package/bundles/taiga-ui-core-components-error.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-group.umd.js +1 -1
- package/bundles/taiga-ui-core-components-group.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-label.umd.js +1 -1
- package/bundles/taiga-ui-core-components-label.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-primitive-textfield.umd.js +2 -2
- package/bundles/taiga-ui-core-components-primitive-textfield.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-root.umd.js +1 -1
- package/bundles/taiga-ui-core-directives-hint.umd.js +12 -2
- package/bundles/taiga-ui-core-directives-hint.umd.js.map +1 -1
- package/components/error/error.module.d.ts +2 -1
- package/constants/cache-basting-payload.d.ts +1 -1
- package/directives/hint/hint-hover.directive.d.ts +3 -2
- package/esm2015/animations/animations.js +2 -2
- package/esm2015/components/error/error.component.js +8 -7
- package/esm2015/components/error/error.module.js +5 -4
- package/esm2015/components/group/group-styles.component.js +1 -1
- package/esm2015/components/label/label.component.js +1 -1
- package/esm2015/components/primitive-textfield/primitive-textfield.component.js +1 -1
- package/esm2015/components/primitive-textfield/textfield/textfield.component.js +1 -1
- package/esm2015/components/root/root.component.js +1 -1
- package/esm2015/directives/hint/hint-hover.directive.js +14 -4
- package/fesm2015/taiga-ui-core-animations.js +1 -1
- package/fesm2015/taiga-ui-core-animations.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-error.js +11 -10
- package/fesm2015/taiga-ui-core-components-error.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-group.js +1 -1
- package/fesm2015/taiga-ui-core-components-group.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-label.js +1 -1
- package/fesm2015/taiga-ui-core-components-label.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-primitive-textfield.js +2 -2
- package/fesm2015/taiga-ui-core-components-primitive-textfield.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-root.js +1 -1
- package/fesm2015/taiga-ui-core-directives-hint.js +12 -2
- package/fesm2015/taiga-ui-core-directives-hint.js.map +1 -1
- package/package.json +4 -4
- package/styles/mixins/mixins.less +8 -0
- package/styles/mixins/mixins.scss +8 -0
- package/styles/mixins/textfield.less +4 -0
- package/styles/mixins/textfield.scss +4 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import 'browsers.scss';
|
|
2
|
+
|
|
1
3
|
@mixin interactive {
|
|
2
4
|
// TODO switch to :is after Safari 14 and FF 78 support
|
|
3
5
|
&:-webkit-any(a, button, select, textarea, input) {
|
|
@@ -132,6 +134,12 @@
|
|
|
132
134
|
appearance: none;
|
|
133
135
|
word-break: keep-all;
|
|
134
136
|
-webkit-text-fill-color: currentColor; // for Safari
|
|
137
|
+
|
|
138
|
+
@include ios-only {
|
|
139
|
+
&:active {
|
|
140
|
+
font-size: 1rem;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
135
143
|
}
|
|
136
144
|
|
|
137
145
|
@mixin visually-hidden() {
|