@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.
Files changed (60) hide show
  1. package/components/calendar/calendar-sheet.component.d.ts +3 -3
  2. package/components/calendar/calendar-year.component.d.ts +3 -6
  3. package/components/data-list/data-list.component.d.ts +2 -0
  4. package/components/textfield/select.directive.d.ts +4 -4
  5. package/components/textfield/textfield.component.d.ts +3 -1
  6. package/components/textfield/textfield.directive.d.ts +11 -8
  7. package/directives/appearance/appearance.bindings.d.ts +3 -0
  8. package/directives/appearance/appearance.directive.d.ts +4 -1
  9. package/directives/appearance/with-appearance.d.ts +1 -1
  10. package/directives/dropdown/dropdown-options.directive.d.ts +1 -1
  11. package/directives/hint/hint-describe.directive.d.ts +1 -0
  12. package/directives/hint/hint-options.directive.d.ts +1 -1
  13. package/esm2022/components/calendar/calendar-sheet.component.mjs +27 -29
  14. package/esm2022/components/calendar/calendar-year.component.mjs +20 -50
  15. package/esm2022/components/data-list/data-list.component.mjs +10 -4
  16. package/esm2022/components/root/root.component.mjs +8 -2
  17. package/esm2022/components/textfield/select.directive.mjs +2 -3
  18. package/esm2022/components/textfield/textfield.component.mjs +9 -5
  19. package/esm2022/components/textfield/textfield.directive.mjs +11 -7
  20. package/esm2022/directives/appearance/appearance.bindings.mjs +4 -1
  21. package/esm2022/directives/appearance/appearance.directive.mjs +12 -4
  22. package/esm2022/directives/appearance/with-appearance.mjs +3 -2
  23. package/esm2022/directives/dropdown/dropdown-options.directive.mjs +3 -2
  24. package/esm2022/directives/group/group.directive.mjs +2 -2
  25. package/esm2022/directives/hint/hint-describe.directive.mjs +5 -4
  26. package/esm2022/directives/hint/hint-options.directive.mjs +3 -2
  27. package/fesm2022/taiga-ui-core-components-calendar.mjs +44 -76
  28. package/fesm2022/taiga-ui-core-components-calendar.mjs.map +1 -1
  29. package/fesm2022/taiga-ui-core-components-data-list.mjs +9 -3
  30. package/fesm2022/taiga-ui-core-components-data-list.mjs.map +1 -1
  31. package/fesm2022/taiga-ui-core-components-root.mjs +7 -1
  32. package/fesm2022/taiga-ui-core-components-root.mjs.map +1 -1
  33. package/fesm2022/taiga-ui-core-components-textfield.mjs +19 -12
  34. package/fesm2022/taiga-ui-core-components-textfield.mjs.map +1 -1
  35. package/fesm2022/taiga-ui-core-directives-appearance.mjs +17 -5
  36. package/fesm2022/taiga-ui-core-directives-appearance.mjs.map +1 -1
  37. package/fesm2022/taiga-ui-core-directives-dropdown.mjs +2 -2
  38. package/fesm2022/taiga-ui-core-directives-dropdown.mjs.map +1 -1
  39. package/fesm2022/taiga-ui-core-directives-group.mjs +2 -2
  40. package/fesm2022/taiga-ui-core-directives-group.mjs.map +1 -1
  41. package/fesm2022/taiga-ui-core-directives-hint.mjs +5 -4
  42. package/fesm2022/taiga-ui-core-directives-hint.mjs.map +1 -1
  43. package/package.json +324 -324
  44. package/styles/components/appearance.less +1 -1
  45. package/styles/components/group.less +6 -5
  46. package/styles/components/textfield.less +14 -5
  47. package/styles/mixins/date-picker.less +152 -0
  48. package/styles/mixins/picker.less +1 -0
  49. package/styles/mixins/picker.scss +1 -0
  50. package/styles/taiga-ui-local.less +1 -0
  51. package/styles/theme/appearance/floating.less +2 -2
  52. package/styles/theme/appearance/glass.less +3 -3
  53. package/styles/theme/appearance/opposite.less +2 -2
  54. package/styles/theme/appearance/outline.less +6 -5
  55. package/styles/theme/appearance/primary.less +2 -1
  56. package/styles/theme/appearance/secondary.less +11 -6
  57. package/styles/theme/appearance/status.less +12 -6
  58. package/styles/theme/appearance/textfield.less +3 -3
  59. package/styles/theme/palette.less +58 -58
  60. 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 rgb(0 0 0 / 10%);
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