@snabcentr/client-ui 3.46.1 → 3.47.6

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 (29) hide show
  1. package/configurators/index.d.ts +2 -0
  2. package/configurators/models/index.d.ts +2 -0
  3. package/configurators/models/sandwich/sc-i-configurator-search-product-sandwich.d.ts +22 -0
  4. package/configurators/models/sandwich/sc-i-sandwich-settings.d.ts +18 -0
  5. package/configurators/sandwich/index.d.ts +3 -0
  6. package/configurators/sandwich/sandwich-skeleton/sc-sandwich-skeleton.component.d.ts +8 -0
  7. package/configurators/sandwich/sc-i-new-cart-item-sandwich.d.ts +14 -0
  8. package/configurators/sandwich/sc-sandwich.component.d.ts +138 -0
  9. package/directives/select-on-focusin/sc-select-on-focusin.directive.d.ts +1 -1
  10. package/esm2022/cart/add-or-editing-cart-item-dialog/add-or-editing-cart-item-form/sc-add-or-editing-cart-item-form.component.mjs +2 -2
  11. package/esm2022/configurators/index.mjs +3 -0
  12. package/esm2022/configurators/models/index.mjs +3 -0
  13. package/esm2022/configurators/models/sandwich/sc-i-configurator-search-product-sandwich.mjs +2 -0
  14. package/esm2022/configurators/models/sandwich/sc-i-sandwich-settings.mjs +2 -0
  15. package/esm2022/configurators/sandwich/index.mjs +4 -0
  16. package/esm2022/configurators/sandwich/sandwich-skeleton/sc-sandwich-skeleton.component.mjs +14 -0
  17. package/esm2022/configurators/sandwich/sc-i-new-cart-item-sandwich.mjs +2 -0
  18. package/esm2022/configurators/sandwich/sc-sandwich.component.mjs +311 -0
  19. package/esm2022/directives/select-on-focusin/sc-select-on-focusin.directive.mjs +3 -3
  20. package/esm2022/providers/index.mjs +2 -1
  21. package/esm2022/providers/sc-debounce-time-default.mjs +9 -0
  22. package/esm2022/public-api.mjs +2 -1
  23. package/fesm2022/snabcentr-client-ui.mjs +320 -11
  24. package/fesm2022/snabcentr-client-ui.mjs.map +1 -1
  25. package/package.json +1 -1
  26. package/providers/index.d.ts +1 -0
  27. package/providers/sc-debounce-time-default.d.ts +5 -0
  28. package/public-api.d.ts +1 -0
  29. package/styles/tailwind/tailwind.scss +61 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snabcentr/client-ui",
3
- "version": "3.46.1",
3
+ "version": "3.47.6",
4
4
  "author": "Snabcentr Ltd.",
5
5
  "repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
6
6
  "license": "Commercial",
@@ -10,3 +10,4 @@ export * from './sc-date-formatter';
10
10
  export * from './sc-date-value-transformer';
11
11
  export * from './sc-notify-when-in-stock-required-fields';
12
12
  export * from './sc-banner-duration';
13
+ export * from './sc-debounce-time-default';
@@ -0,0 +1,5 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ /**
3
+ * Длительность {@link debounceTime} в миллисекундах по умолчанию.
4
+ */
5
+ export declare const SC_DEBOUNCE_TIME_DEFAULT: InjectionToken<number>;
package/public-api.d.ts CHANGED
@@ -5,6 +5,7 @@ export * from './accordion';
5
5
  export * from './banner';
6
6
  export * from './cart';
7
7
  export * from './catalog';
8
+ export * from './configurators';
8
9
  export * from './contragents';
9
10
  export * from './contacts';
10
11
  export * from './delivery-address';
@@ -107,7 +107,7 @@
107
107
  }
108
108
 
109
109
  /*
110
- ! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com
110
+ ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
111
111
  */
112
112
 
113
113
  /*
@@ -647,11 +647,26 @@ video {
647
647
  margin-right: 0.5rem;
648
648
  }
649
649
 
650
+ .my-1 {
651
+ margin-top: 0.25rem;
652
+ margin-bottom: 0.25rem;
653
+ }
654
+
655
+ .my-1\.5 {
656
+ margin-top: 0.375rem;
657
+ margin-bottom: 0.375rem;
658
+ }
659
+
650
660
  .my-2 {
651
661
  margin-top: 0.5rem;
652
662
  margin-bottom: 0.5rem;
653
663
  }
654
664
 
665
+ .my-2\.5 {
666
+ margin-top: 0.625rem;
667
+ margin-bottom: 0.625rem;
668
+ }
669
+
655
670
  .my-4 {
656
671
  margin-top: 1rem;
657
672
  margin-bottom: 1rem;
@@ -681,6 +696,10 @@ video {
681
696
  margin-bottom: 1rem;
682
697
  }
683
698
 
699
+ .mb-5 {
700
+ margin-bottom: 1.25rem;
701
+ }
702
+
684
703
  .mb-8 {
685
704
  margin-bottom: 2rem;
686
705
  }
@@ -717,6 +736,10 @@ video {
717
736
  margin-top: 1rem;
718
737
  }
719
738
 
739
+ .mt-6 {
740
+ margin-top: 1.5rem;
741
+ }
742
+
720
743
  .mt-8 {
721
744
  margin-top: 2rem;
722
745
  }
@@ -816,6 +839,10 @@ video {
816
839
  height: 3rem;
817
840
  }
818
841
 
842
+ .h-2 {
843
+ height: 0.5rem;
844
+ }
845
+
819
846
  .h-3 {
820
847
  height: 0.75rem;
821
848
  }
@@ -824,10 +851,18 @@ video {
824
851
  height: 1rem;
825
852
  }
826
853
 
854
+ .h-5 {
855
+ height: 1.25rem;
856
+ }
857
+
827
858
  .h-56 {
828
859
  height: 14rem;
829
860
  }
830
861
 
862
+ .h-6 {
863
+ height: 1.5rem;
864
+ }
865
+
831
866
  .h-\[19em\] {
832
867
  height: 19em;
833
868
  }
@@ -860,6 +895,14 @@ video {
860
895
  width: auto !important;
861
896
  }
862
897
 
898
+ .w-1\/2 {
899
+ width: 50%;
900
+ }
901
+
902
+ .w-1\/3 {
903
+ width: 33.333333%;
904
+ }
905
+
863
906
  .w-1\/4 {
864
907
  width: 25%;
865
908
  }
@@ -872,6 +915,10 @@ video {
872
915
  width: 3rem;
873
916
  }
874
917
 
918
+ .w-2\/3 {
919
+ width: 66.666667%;
920
+ }
921
+
875
922
  .w-24 {
876
923
  width: 6rem;
877
924
  }
@@ -1014,6 +1061,10 @@ video {
1014
1061
  grid-template-columns: repeat(1, minmax(0, 1fr));
1015
1062
  }
1016
1063
 
1064
+ .grid-cols-3 {
1065
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1066
+ }
1067
+
1017
1068
  .flex-col {
1018
1069
  flex-direction: column;
1019
1070
  }
@@ -1185,6 +1236,10 @@ video {
1185
1236
  border-radius: 9999px;
1186
1237
  }
1187
1238
 
1239
+ .rounded-sm {
1240
+ border-radius: 0.125rem;
1241
+ }
1242
+
1188
1243
  .rounded-tui-radius-m {
1189
1244
  border-radius: var(--tui-radius-m);
1190
1245
  }
@@ -1538,6 +1593,11 @@ video {
1538
1593
  line-height: 1.25rem;
1539
1594
  }
1540
1595
 
1596
+ .text-xl {
1597
+ font-size: 1.25rem;
1598
+ line-height: 1.75rem;
1599
+ }
1600
+
1541
1601
  .text-xs {
1542
1602
  font-size: 0.75rem;
1543
1603
  line-height: 1rem;