@snabcentr/client-ui 4.11.0 → 4.13.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.
@@ -3,6 +3,7 @@ import { ElementRef, OnInit, Signal } from '@angular/core';
3
3
  import { FormControl, FormGroup } from '@angular/forms';
4
4
  import { ScContragent, ScDeliveryType, ScIDeliveryAddress, ScINewOrder, ScIReferencesTypes, ScITerminalProvider, ScIWarehouse, ScPaymentType, ScUser, ScWarehouseService } from '@snabcentr/client-core';
5
5
  import { TuiContext, TuiDay, TuiStringHandler } from '@taiga-ui/cdk';
6
+ import { TuiMarkerHandler } from '@taiga-ui/core';
6
7
  import { Observable } from 'rxjs';
7
8
  import { INewOrderForm } from '../models/i-new-order-form';
8
9
  import * as i0 from "@angular/core";
@@ -167,10 +168,28 @@ export declare class ScOrderFormComponent implements OnInit {
167
168
  * Набор доступных дат в зависимости от типа доставки.
168
169
  */
169
170
  protected readonly deliveryDates: Signal<string[]>;
171
+ /**
172
+ * Набор доступных дат в виде дат календаря, отсортированный по возрастанию.
173
+ */
174
+ private readonly deliveryDays;
175
+ /**
176
+ * Первая доступная дата.
177
+ */
178
+ protected readonly minDeliveryDay: Signal<TuiDay | null>;
179
+ /**
180
+ * Последняя доступная дата.
181
+ */
182
+ protected readonly maxDeliveryDay: Signal<TuiDay | null>;
170
183
  /**
171
184
  * Ссылка на элемент с предупреждением о неподтверждённых данных.
172
185
  */
173
186
  protected readonly unconfirmedDataWarning: Signal<ElementRef<HTMLElement> | undefined>;
187
+ /**
188
+ * Возвращает маркер, которым выделяется доступная для выбора дата.
189
+ *
190
+ * @param date Дата.
191
+ */
192
+ protected readonly deliveryDateMarker: TuiMarkerHandler;
174
193
  /**
175
194
  * Возвращает признак, что указанная дата недоступна для выбора.
176
195
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snabcentr/client-ui",
3
- "version": "4.11.0",
3
+ "version": "4.13.0",
4
4
  "author": "Snabcentr Ltd.",
5
5
  "repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
6
6
  "license": "Commercial",
package/release_notes.tmp CHANGED
@@ -1,11 +1,4 @@
1
- ## 4.11.0 (2026-08-17)
1
+ ## 4.13.0 (2026-08-26)
2
2
 
3
- ### added (2 changes)
4
-
5
- - [#13633: Добавлен компонент списка новостей с пагинацией через query-параметр...](web_soft/libs/angular/snabcentr-client-ui-lib@c054e811f8c7129e0a0cc01615ff1a92f7384775) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!439))
6
- - [#13015: Добавлены компоненты оформления заказа для объединения страниц корзины](web_soft/libs/angular/snabcentr-client-ui-lib@bf19e7becdae902d1ef9c31d25dc084fc5a6da6e) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!437))
7
-
8
- ### fixed (1 change)
9
-
10
- - [#13577: Исправлена некорректная работа блока фильтров](web_soft/libs/angular/snabcentr-client-ui-lib@88472dffcb45df602d3d79a528b9a8d21997cd22) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!436))
3
+ No changes.
11
4