@taiga-ui/core 3.65.0 → 3.66.0-canary.447baca
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-components-alert.umd.js +1 -1
- package/bundles/taiga-ui-core-components-alert.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-expand.umd.js +19 -9
- package/bundles/taiga-ui-core-components-expand.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-notification.umd.js +2 -2
- package/bundles/taiga-ui-core-components-notification.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 +3 -1
- package/bundles/taiga-ui-core-components-root.umd.js.map +1 -1
- package/bundles/taiga-ui-core-components-scrollbar.umd.js +8 -3
- package/bundles/taiga-ui-core-components-scrollbar.umd.js.map +1 -1
- package/bundles/taiga-ui-core-directives-dropdown.umd.js +81 -8
- package/bundles/taiga-ui-core-directives-dropdown.umd.js.map +1 -1
- package/components/expand/expand.component.d.ts +4 -2
- package/components/notification/notification.component.d.ts +1 -1
- package/components/scrollbar/scrollbar.component.d.ts +1 -1
- package/constants/cache-basting-payload.d.ts +1 -1
- package/directives/dropdown/dropdown-context.directive.d.ts +8 -1
- package/esm2015/components/alert/alert.component.js +2 -2
- package/esm2015/components/expand/expand.component.js +20 -8
- package/esm2015/components/notification/notification.component.js +3 -3
- 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 +4 -2
- package/esm2015/components/scrollbar/scrollbar.component.js +5 -4
- package/esm2015/directives/dropdown/dropdown-context.directive.js +71 -7
- package/esm2015/directives/dropdown/dropdown-position.directive.js +4 -3
- package/esm2015/directives/dropdown/dropdown.component.js +6 -3
- package/fesm2015/taiga-ui-core-components-alert.js +1 -1
- package/fesm2015/taiga-ui-core-components-alert.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-expand.js +19 -7
- package/fesm2015/taiga-ui-core-components-expand.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-notification.js +2 -2
- package/fesm2015/taiga-ui-core-components-notification.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 +3 -1
- package/fesm2015/taiga-ui-core-components-root.js.map +1 -1
- package/fesm2015/taiga-ui-core-components-scrollbar.js +4 -3
- package/fesm2015/taiga-ui-core-components-scrollbar.js.map +1 -1
- package/fesm2015/taiga-ui-core-directives-dropdown.js +78 -10
- package/fesm2015/taiga-ui-core-directives-dropdown.js.map +1 -1
- package/package.json +42 -42
- package/styles/mixins/textfield.less +10 -4
|
@@ -132,6 +132,15 @@
|
|
|
132
132
|
:host[data-size='l']:not(._label-outside) &,
|
|
133
133
|
:host-context(tui-primitive-textfield[data-size='l']:not(._label-outside)):not(tui-primitive-textfield) {
|
|
134
134
|
padding-top: 1.25rem;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
:host[data-size='m']:not(._label-outside) &,
|
|
138
|
+
:host-context(tui-primitive-textfield[data-size='m']:not(._label-outside)):not(tui-primitive-textfield) {
|
|
139
|
+
padding-top: 1rem;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
:host[data-size='l']:not(._label-outside) & {
|
|
143
|
+
padding-top: 1.25rem;
|
|
135
144
|
|
|
136
145
|
// Workaround for raising placeholder in temporary autofill
|
|
137
146
|
&:-webkit-autofill + .t-content .t-placeholder {
|
|
@@ -140,10 +149,7 @@
|
|
|
140
149
|
}
|
|
141
150
|
}
|
|
142
151
|
|
|
143
|
-
:host[data-size='m']:not(._label-outside)
|
|
144
|
-
:host-context(tui-primitive-textfield[data-size='m']:not(._label-outside)):not(tui-primitive-textfield) {
|
|
145
|
-
padding-top: 1rem;
|
|
146
|
-
|
|
152
|
+
:host[data-size='m']:not(._label-outside) & {
|
|
147
153
|
// Workaround for raising placeholder in temporary autofill
|
|
148
154
|
&:-webkit-autofill + .t-content .t-placeholder {
|
|
149
155
|
font-size: 0.69rem;
|