@snabcentr/client-ui 5.7.2 → 5.7.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snabcentr/client-ui",
3
- "version": "5.7.2",
3
+ "version": "5.7.3",
4
4
  "author": "Snabcentr Ltd.",
5
5
  "repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
6
6
  "license": "Commercial",
package/release_notes.tmp CHANGED
@@ -1,4 +1,4 @@
1
- ## 5.7.2 (2026-08-05)
1
+ ## 5.7.3 (2026-08-06)
2
2
 
3
3
  No changes.
4
4
 
@@ -36,6 +36,25 @@
36
36
  --tui-background-neutral-1-pressed: #e0e0e0;
37
37
  }
38
38
 
39
+ // Прячем встроенные вертикальные кнопки шага у input[tuiInputNumber][step] (появились в Taiga UI 5),
40
+ // шаг при этом продолжает работать со стрелок клавиатуры.
41
+ tui-textfield {
42
+ .t-input-number-buttons.t-input-number-buttons {
43
+ display: none !important;
44
+ }
45
+
46
+ [tuiInputNumber]._with-buttons,
47
+ [tuiInputNumber]._with-buttons ~ .t-template {
48
+ inline-size: 100% !important;
49
+ margin-inline-end: 0 !important;
50
+ border-radius: inherit !important;
51
+ }
52
+
53
+ [tuiInputNumber]._with-buttons ~ .t-content {
54
+ margin-inline-end: 0 !important;
55
+ }
56
+ }
57
+
39
58
  sc-input-quantity {
40
59
  [tuiWrapper][data-appearance='textfield'] {
41
60
  color: inherit !important;
@@ -554,6 +554,18 @@ video {
554
554
  display: none;
555
555
  }
556
556
 
557
+ .sr-only {
558
+ position: absolute;
559
+ width: 1px;
560
+ height: 1px;
561
+ padding: 0;
562
+ margin: -1px;
563
+ overflow: hidden;
564
+ clip: rect(0, 0, 0, 0);
565
+ white-space: nowrap;
566
+ border-width: 0;
567
+ }
568
+
557
569
  .pointer-events-none {
558
570
  pointer-events: none;
559
571
  }
@@ -788,6 +800,10 @@ video {
788
800
  display: block;
789
801
  }
790
802
 
803
+ .inline-block {
804
+ display: inline-block;
805
+ }
806
+
791
807
  .flex {
792
808
  display: flex;
793
809
  }