@snabcentr/client-ui 3.50.2 → 3.51.1
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/category-tags/sc-category-tags.component.d.ts +20 -0
- package/catalog/index.d.ts +1 -0
- package/esm2022/catalog/category-tags/sc-category-tags.component.mjs +25 -0
- package/esm2022/catalog/index.mjs +2 -1
- package/esm2022/order/draft/sc-draft.component.mjs +3 -3
- package/esm2022/order/order-item/sc-order-item.component.mjs +3 -3
- package/esm2022/order/order-items-list/sc-order-items-list.component.mjs +3 -3
- package/esm2022/order/order-items-list-by-directions/sc-order-items-list-by-directions.component.mjs +4 -4
- package/esm2022/providers/sc-dialog-service.providers.mjs +1 -1
- package/fesm2022/snabcentr-client-ui.mjs +32 -10
- package/fesm2022/snabcentr-client-ui.mjs.map +1 -1
- package/order/order-items-list-by-directions/sc-order-items-list-by-directions.component.d.ts +4 -1
- package/package.json +1 -1
- package/providers/sc-dialog-service.providers.d.ts +7 -5
- package/styles/tailwind/tailwind.scss +18 -0
package/order/order-items-list-by-directions/sc-order-items-list-by-directions.component.d.ts
CHANGED
|
@@ -21,7 +21,10 @@ export declare class ScOrderItemsListByDirectionsComponent {
|
|
|
21
21
|
/**
|
|
22
22
|
* Текст кнопки продолжения.
|
|
23
23
|
*/
|
|
24
|
-
readonly continueButtonText: import("@angular/core").InputSignal<
|
|
24
|
+
readonly continueButtonText: import("@angular/core").InputSignal<{
|
|
25
|
+
title: string;
|
|
26
|
+
iconStart: string;
|
|
27
|
+
}>;
|
|
25
28
|
/**
|
|
26
29
|
* Событие клика на кнопку продолжения.
|
|
27
30
|
*/
|
package/package.json
CHANGED
|
@@ -16,18 +16,20 @@ export interface IScDialogService {
|
|
|
16
16
|
* Открывает модальное окно изменения товара конфигуратора в корзине/заказе.
|
|
17
17
|
*
|
|
18
18
|
* @param product Данные о товаре.
|
|
19
|
-
* @param
|
|
19
|
+
* @param orderItem Единичная позиция товара/услуги в заказе, для которой необходимо открыть конфигуратор.
|
|
20
|
+
* @param orderId Идентификатор заказа, в котором необходимо открыть конфигуратор.
|
|
20
21
|
* @param dialogContext Ссылка на контекст диалогового окна, которое необходимо закрыть перед выполнением функции.
|
|
21
22
|
*/
|
|
22
|
-
openConfiguratorDialog(product: ScProduct,
|
|
23
|
+
openConfiguratorDialog(product: ScProduct, orderItem?: ScOrderItem, orderId?: number, dialogContext?: TuiDialogContext): void;
|
|
23
24
|
/**
|
|
24
|
-
* Открывает модальное окно добавления/редактирования товара в
|
|
25
|
+
* Открывает модальное окно добавления/редактирования товара в корзине/заказе.
|
|
25
26
|
*
|
|
26
27
|
* @param product Данные о товаре.
|
|
27
|
-
* @param
|
|
28
|
+
* @param orderItem Единичная позиция товара/услуги в заказе, для которой необходимо открыть диалог редактирования.
|
|
29
|
+
* @param orderId Идентификатор заказа, в котором необходимо открыть диалог редактирования.
|
|
28
30
|
* @param fromRecommendation Признак, что диалог открыт из рекомендаций.
|
|
29
31
|
*/
|
|
30
|
-
openAddOrEditingCartItemDialog(product: ScProduct,
|
|
32
|
+
openAddOrEditingCartItemDialog(product: ScProduct, orderItem?: ScOrderItem, orderId?: number, fromRecommendation?: boolean): void;
|
|
31
33
|
/**
|
|
32
34
|
* Открывает диалоговое окно "График изменения стоимости" для товара.
|
|
33
35
|
*
|
|
@@ -983,6 +983,11 @@ video {
|
|
|
983
983
|
max-width: 24rem;
|
|
984
984
|
}
|
|
985
985
|
|
|
986
|
+
.max-w-min {
|
|
987
|
+
max-width: -moz-min-content;
|
|
988
|
+
max-width: min-content;
|
|
989
|
+
}
|
|
990
|
+
|
|
986
991
|
.flex-1 {
|
|
987
992
|
flex: 1 1 0%;
|
|
988
993
|
}
|
|
@@ -1072,6 +1077,10 @@ video {
|
|
|
1072
1077
|
flex-wrap: wrap;
|
|
1073
1078
|
}
|
|
1074
1079
|
|
|
1080
|
+
.flex-wrap-reverse {
|
|
1081
|
+
flex-wrap: wrap-reverse;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1075
1084
|
.\!items-start {
|
|
1076
1085
|
align-items: flex-start !important;
|
|
1077
1086
|
}
|
|
@@ -1174,6 +1183,11 @@ video {
|
|
|
1174
1183
|
column-gap: 0.5rem;
|
|
1175
1184
|
}
|
|
1176
1185
|
|
|
1186
|
+
.gap-x-2\.5 {
|
|
1187
|
+
-moz-column-gap: 0.625rem;
|
|
1188
|
+
column-gap: 0.625rem;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1177
1191
|
.gap-x-4 {
|
|
1178
1192
|
-moz-column-gap: 1rem;
|
|
1179
1193
|
column-gap: 1rem;
|
|
@@ -1183,6 +1197,10 @@ video {
|
|
|
1183
1197
|
row-gap: 0.25rem;
|
|
1184
1198
|
}
|
|
1185
1199
|
|
|
1200
|
+
.gap-y-4 {
|
|
1201
|
+
row-gap: 1rem;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1186
1204
|
.self-start {
|
|
1187
1205
|
align-self: flex-start;
|
|
1188
1206
|
}
|