@snabcentr/client-ui 3.29.2 → 3.31.0
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/cart/add-or-editing-cart-item-dialog/add-or-editing-cart-item-form/sc-add-or-editing-cart-item-form.component.d.ts +97 -0
- package/cart/add-or-editing-cart-item-dialog/index.d.ts +2 -0
- package/cart/add-or-editing-cart-item-dialog/sc-add-or-editing-cart-item-dialog.component.d.ts +48 -0
- package/cart/index.d.ts +1 -0
- package/catalog/notify-when-in-stock-dialog/sc-notify-when-in-stock-dialog.component.d.ts +3 -2
- package/directives/index.d.ts +1 -0
- package/directives/select-on-focusin/sc-select-on-focusin.directive.d.ts +14 -0
- package/esm2022/cart/add-or-editing-cart-item-dialog/add-or-editing-cart-item-form/sc-add-or-editing-cart-item-form.component.mjs +196 -0
- package/esm2022/cart/add-or-editing-cart-item-dialog/index.mjs +3 -0
- package/esm2022/cart/add-or-editing-cart-item-dialog/sc-add-or-editing-cart-item-dialog.component.mjs +74 -0
- package/esm2022/cart/index.mjs +2 -1
- package/esm2022/catalog/notify-when-in-stock-dialog/sc-notify-when-in-stock-dialog.component.mjs +21 -21
- package/esm2022/directives/index.mjs +2 -1
- package/esm2022/directives/select-on-focusin/sc-select-on-focusin.directive.mjs +31 -0
- package/fesm2022/snabcentr-client-ui.mjs +316 -44
- package/fesm2022/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/release_notes.tmp +3 -3
- package/styles/tailwind/tailwind.scss +5 -4
package/package.json
CHANGED
package/release_notes.tmp
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
## 3.
|
1
|
+
## 3.31.0 (2025-06-19)
|
2
2
|
|
3
|
-
###
|
3
|
+
### added (1 change)
|
4
4
|
|
5
|
-
- [#
|
5
|
+
- [#11775: Добавлены компоненты для добавления и редактирования товара в корзине. ](web_soft/libs/angular/snabcentr-client-ui-lib@0d29ffd26693d5e0cac60c36f0e7a66ba8b884b9) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!287))
|
6
6
|
|
@@ -1112,10 +1112,6 @@ video {
|
|
1112
1112
|
justify-items: center !important;
|
1113
1113
|
}
|
1114
1114
|
|
1115
|
-
.\!gap-1 {
|
1116
|
-
gap: 0.25rem !important;
|
1117
|
-
}
|
1118
|
-
|
1119
1115
|
.gap-0\.5 {
|
1120
1116
|
gap: 0.125rem;
|
1121
1117
|
}
|
@@ -1476,6 +1472,11 @@ video {
|
|
1476
1472
|
line-height: 1.75rem !important;
|
1477
1473
|
}
|
1478
1474
|
|
1475
|
+
.text-2xl {
|
1476
|
+
font-size: 1.5rem;
|
1477
|
+
line-height: 2rem;
|
1478
|
+
}
|
1479
|
+
|
1479
1480
|
.text-6xl {
|
1480
1481
|
font-size: 3.75rem;
|
1481
1482
|
line-height: 1;
|