@taiga-ui/core 4.6.0 → 4.7.0-canary.2dd3ca2
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/calendar/calendar-sheet.component.d.ts +3 -3
- package/components/calendar/calendar-year.component.d.ts +3 -6
- package/components/data-list/data-list.component.d.ts +2 -0
- package/components/textfield/select.directive.d.ts +4 -4
- package/components/textfield/textfield.component.d.ts +3 -1
- package/components/textfield/textfield.directive.d.ts +11 -8
- package/directives/appearance/appearance.bindings.d.ts +3 -0
- package/directives/appearance/appearance.directive.d.ts +4 -1
- package/directives/appearance/with-appearance.d.ts +1 -1
- package/directives/dropdown/dropdown-options.directive.d.ts +1 -1
- package/directives/hint/hint-describe.directive.d.ts +1 -0
- package/directives/hint/hint-options.directive.d.ts +1 -1
- package/esm2022/components/calendar/calendar-sheet.component.mjs +27 -29
- package/esm2022/components/calendar/calendar-year.component.mjs +20 -50
- package/esm2022/components/data-list/data-list.component.mjs +10 -4
- package/esm2022/components/root/root.component.mjs +8 -2
- package/esm2022/components/textfield/select.directive.mjs +2 -3
- package/esm2022/components/textfield/textfield.component.mjs +9 -5
- package/esm2022/components/textfield/textfield.directive.mjs +11 -7
- package/esm2022/directives/appearance/appearance.bindings.mjs +4 -1
- package/esm2022/directives/appearance/appearance.directive.mjs +12 -4
- package/esm2022/directives/appearance/with-appearance.mjs +3 -2
- package/esm2022/directives/dropdown/dropdown-options.directive.mjs +3 -2
- package/esm2022/directives/group/group.directive.mjs +2 -2
- package/esm2022/directives/hint/hint-describe.directive.mjs +5 -4
- package/esm2022/directives/hint/hint-options.directive.mjs +3 -2
- package/fesm2022/taiga-ui-core-components-calendar.mjs +44 -76
- package/fesm2022/taiga-ui-core-components-calendar.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-data-list.mjs +9 -3
- package/fesm2022/taiga-ui-core-components-data-list.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-root.mjs +7 -1
- package/fesm2022/taiga-ui-core-components-root.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-textfield.mjs +19 -12
- package/fesm2022/taiga-ui-core-components-textfield.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-directives-appearance.mjs +17 -5
- package/fesm2022/taiga-ui-core-directives-appearance.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-directives-dropdown.mjs +2 -2
- package/fesm2022/taiga-ui-core-directives-dropdown.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-directives-group.mjs +2 -2
- package/fesm2022/taiga-ui-core-directives-group.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-directives-hint.mjs +5 -4
- package/fesm2022/taiga-ui-core-directives-hint.mjs.map +1 -1
- package/package.json +324 -324
- package/styles/components/appearance.less +1 -1
- package/styles/components/group.less +6 -5
- package/styles/components/textfield.less +14 -5
- package/styles/mixins/date-picker.less +152 -0
- package/styles/mixins/picker.less +1 -0
- package/styles/mixins/picker.scss +1 -0
- package/styles/taiga-ui-local.less +1 -0
- package/styles/theme/appearance/floating.less +2 -2
- package/styles/theme/appearance/glass.less +3 -3
- package/styles/theme/appearance/opposite.less +2 -2
- package/styles/theme/appearance/outline.less +6 -5
- package/styles/theme/appearance/primary.less +2 -1
- package/styles/theme/appearance/secondary.less +11 -6
- package/styles/theme/appearance/status.less +12 -6
- package/styles/theme/appearance/textfield.less +3 -3
- package/styles/theme/palette.less +58 -58
- package/styles/theme/wrapper.less +11 -9
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
background: var(--tui-background-base);
|
|
53
53
|
color: var(--tui-text-primary);
|
|
54
|
-
box-shadow: 0 0.125rem 0.1875rem
|
|
54
|
+
box-shadow: 0 0.125rem 0.1875rem rgba(0, 0, 0, 0.1);
|
|
55
55
|
|
|
56
56
|
&::after {
|
|
57
57
|
.transition(color);
|
|
@@ -132,14 +132,6 @@
|
|
|
132
132
|
background-size: 0.5rem 0.5rem;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
table &[data-appearance='table']:not(._focused)::after {
|
|
136
|
-
border-width: 0;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
table &._focused {
|
|
140
|
-
z-index: 1;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
135
|
&[data-appearance='table']::after {
|
|
144
136
|
border-width: 1px;
|
|
145
137
|
color: var(--tui-border-normal);
|
|
@@ -191,6 +183,16 @@
|
|
|
191
183
|
});
|
|
192
184
|
}
|
|
193
185
|
|
|
186
|
+
table [tuiWrapper][data-appearance='table'] {
|
|
187
|
+
&[data-appearance='table']:not(._focused)::after {
|
|
188
|
+
border-width: 0;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
&._focused {
|
|
192
|
+
z-index: 1;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
194
196
|
[tuiWrapper][data-appearance='icon'] {
|
|
195
197
|
.transition(opacity);
|
|
196
198
|
|