@snabcentr/client-ui 3.34.1 → 3.35.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/catalog/notify-when-in-stock-dialog/sc-notify-when-in-stock-dialog.component.d.ts +15 -5
- package/esm2022/catalog/category-card/sc-category-card.component.mjs +3 -3
- package/esm2022/catalog/notify-when-in-stock-dialog/sc-notify-when-in-stock-dialog.component.mjs +39 -19
- package/esm2022/providers/index.mjs +2 -1
- package/esm2022/providers/sc-notify-when-in-stock-required-fields.mjs +6 -0
- package/esm2022/validators/sc-phone-validator.mjs +2 -2
- package/esm2022/verification/verification-phone-check-form/sc-verification-phone-check-form.component.mjs +3 -3
- package/fesm2022/snabcentr-client-ui.mjs +71 -51
- package/fesm2022/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/providers/index.d.ts +1 -0
- package/providers/sc-notify-when-in-stock-required-fields.d.ts +5 -0
- package/release_notes.tmp +3 -3
- package/styles/tailwind/tailwind.scss +8 -0
package/package.json
CHANGED
package/providers/index.d.ts
CHANGED
@@ -0,0 +1,5 @@
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
2
|
+
/**
|
3
|
+
* Токен для массива полей, которые должны быть заполнены хотя бы одним значением, в запросе на уведомление о поступлении товара.
|
4
|
+
*/
|
5
|
+
export declare const SC_NOTIFY_WHEN_IN_STOCK_REQUIRED_FIELDS: InjectionToken<string[]>;
|
package/release_notes.tmp
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
## 3.
|
1
|
+
## 3.35.0 (2025-07-23)
|
2
2
|
|
3
|
-
###
|
3
|
+
### changed (1 change)
|
4
4
|
|
5
|
-
- [#
|
5
|
+
- [#11691: Доработана форма отправки запроса на уведомление о поступлении товара на склад.](web_soft/libs/angular/snabcentr-client-ui-lib@44032d2d1cac80ff16bfb7b27df29ab920c217dd) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!302))
|
6
6
|
|
@@ -1112,6 +1112,10 @@ video {
|
|
1112
1112
|
justify-items: center !important;
|
1113
1113
|
}
|
1114
1114
|
|
1115
|
+
.\!gap-1 {
|
1116
|
+
gap: 0.25rem !important;
|
1117
|
+
}
|
1118
|
+
|
1115
1119
|
.gap-0\.5 {
|
1116
1120
|
gap: 0.125rem;
|
1117
1121
|
}
|
@@ -1217,6 +1221,10 @@ video {
|
|
1217
1221
|
white-space: nowrap;
|
1218
1222
|
}
|
1219
1223
|
|
1224
|
+
.break-all {
|
1225
|
+
word-break: break-all;
|
1226
|
+
}
|
1227
|
+
|
1220
1228
|
.\!rounded-xl {
|
1221
1229
|
border-radius: 0.75rem !important;
|
1222
1230
|
}
|