@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.
- package/configurators/index.d.ts +2 -0
- package/configurators/models/index.d.ts +2 -0
- package/configurators/models/sandwich/sc-i-configurator-search-product-sandwich.d.ts +22 -0
- package/configurators/models/sandwich/sc-i-sandwich-settings.d.ts +18 -0
- package/configurators/sandwich/index.d.ts +3 -0
- package/configurators/sandwich/sandwich-skeleton/sc-sandwich-skeleton.component.d.ts +8 -0
- package/configurators/sandwich/sc-i-new-cart-item-sandwich.d.ts +14 -0
- package/configurators/sandwich/sc-sandwich.component.d.ts +138 -0
- package/directives/select-on-focusin/sc-select-on-focusin.directive.d.ts +1 -1
- 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
- package/esm2022/configurators/index.mjs +3 -0
- package/esm2022/configurators/models/index.mjs +3 -0
- package/esm2022/configurators/models/sandwich/sc-i-configurator-search-product-sandwich.mjs +2 -0
- package/esm2022/configurators/models/sandwich/sc-i-sandwich-settings.mjs +2 -0
- package/esm2022/configurators/sandwich/index.mjs +4 -0
- package/esm2022/configurators/sandwich/sandwich-skeleton/sc-sandwich-skeleton.component.mjs +14 -0
- package/esm2022/configurators/sandwich/sc-i-new-cart-item-sandwich.mjs +2 -0
- package/esm2022/configurators/sandwich/sc-sandwich.component.mjs +311 -0
- package/esm2022/directives/select-on-focusin/sc-select-on-focusin.directive.mjs +3 -3
- package/esm2022/providers/index.mjs +2 -1
- package/esm2022/providers/sc-debounce-time-default.mjs +9 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/snabcentr-client-ui.mjs +320 -11
- package/fesm2022/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/providers/index.d.ts +1 -0
- package/providers/sc-debounce-time-default.d.ts +5 -0
- package/public-api.d.ts +1 -0
- package/styles/tailwind/tailwind.scss +61 -1
package/package.json
CHANGED
package/providers/index.d.ts
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
/*
|
|
110
|
-
! tailwindcss v3.4.
|
|
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;
|