@snabcentr/client-ui 5.6.2 → 5.7.2
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/package.json
CHANGED
package/release_notes.tmp
CHANGED
|
@@ -6,7 +6,7 @@ import * as i0 from '@angular/core';
|
|
|
6
6
|
import { OnInit, OnDestroy, Signal, OutputRef, OutputEmitterRef, EventEmitter, InputSignal, QueryList, TemplateRef, WritableSignal, PipeTransform, OnChanges, SimpleChanges, InjectionToken, AfterViewInit, ElementRef, ModelSignal, Provider, FactoryProvider } from '@angular/core';
|
|
7
7
|
import { FormGroup, FormControl, FormArray, ControlValueAccessor, ValidatorFn, NgControl, FormGroupDirective } from '@angular/forms';
|
|
8
8
|
import { PolymorpheusTemplate } from '@taiga-ui/polymorpheus';
|
|
9
|
-
import { TuiSizeS, TuiCarouselComponent, TuiDialogContext, TuiSizeL, TuiSizeM } from '@taiga-ui/core';
|
|
9
|
+
import { TuiSizeS, TuiCarouselComponent, TuiDialogContext, TuiSizeL, TuiCommonIcons, TuiSizeM } from '@taiga-ui/core';
|
|
10
10
|
import { TuiAccordionDirective, TuiTreeLoader, TuiTreeService, TuiFileLike } from '@taiga-ui/kit';
|
|
11
11
|
import { HttpErrorResponse, HttpClient } from '@angular/common/http';
|
|
12
12
|
import { TuiStringHandler, TuiContext, TuiDayRange, TuiDay, TuiHandler } from '@taiga-ui/cdk';
|
|
@@ -14,7 +14,7 @@ import * as _maskito_core from '@maskito/core';
|
|
|
14
14
|
import { MaskitoOptions } from '@maskito/core';
|
|
15
15
|
import { TuiCountryIsoCode } from '@taiga-ui/i18n';
|
|
16
16
|
import { YaReadyEvent } from 'angular8-yandex-maps';
|
|
17
|
-
import { ActivatedRoute } from '@angular/router';
|
|
17
|
+
import { Params, ActivatedRoute } from '@angular/router';
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* Модель данных изображения.
|
|
@@ -4001,6 +4001,10 @@ interface ScBrandListItem {
|
|
|
4001
4001
|
* URL изображения бренда.
|
|
4002
4002
|
*/
|
|
4003
4003
|
src: string;
|
|
4004
|
+
/**
|
|
4005
|
+
* URL изображения бренда в формате WebP.
|
|
4006
|
+
*/
|
|
4007
|
+
webp?: string;
|
|
4004
4008
|
/**
|
|
4005
4009
|
* Альтернативный текст изображения.
|
|
4006
4010
|
*/
|
|
@@ -4843,6 +4847,15 @@ declare class ScPaymentStatusComponent {
|
|
|
4843
4847
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScPaymentStatusComponent, "sc-payment-status", never, { "status": { "alias": "status"; "required": false; }; "orderId": { "alias": "orderId"; "required": false; }; }, { "backToOrdersClick": "backToOrdersClick"; "backToOrderClick": "backToOrderClick"; }, never, never, true, never>;
|
|
4844
4848
|
}
|
|
4845
4849
|
|
|
4850
|
+
/**
|
|
4851
|
+
* Наименование query-параметра идентификатора группы часто задаваемых вопросов.
|
|
4852
|
+
*/
|
|
4853
|
+
declare const SC_FAQ_GROUP_QUERY_PARAM = "group";
|
|
4854
|
+
/**
|
|
4855
|
+
* Наименование query-параметра номера страницы пагинации часто задаваемых вопросов.
|
|
4856
|
+
*/
|
|
4857
|
+
declare const SC_FAQ_PAGE_QUERY_PARAM = "page";
|
|
4858
|
+
|
|
4846
4859
|
/**
|
|
4847
4860
|
* Компонент часто задаваемых вопросов.
|
|
4848
4861
|
*/
|
|
@@ -4863,10 +4876,27 @@ declare class ScFrequentlyAskedQuestionsComponent {
|
|
|
4863
4876
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScFrequentlyAskedQuestionsComponent, "sc-frequently-asked-questions", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "showLoading": { "alias": "showLoading"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4864
4877
|
}
|
|
4865
4878
|
|
|
4879
|
+
/**
|
|
4880
|
+
* Возвращает query-параметры ссылки на группу часто задаваемых вопросов.
|
|
4881
|
+
*
|
|
4882
|
+
* При смене группы пагинация сбрасывается на первую страницу.
|
|
4883
|
+
*
|
|
4884
|
+
* @param group Группа вопросов.
|
|
4885
|
+
*/
|
|
4886
|
+
declare const scGetFaqGroupQueryParams: (group: ScFaqGroup) => Params;
|
|
4887
|
+
|
|
4866
4888
|
/**
|
|
4867
4889
|
* Компонент выбора группы часто задаваемых вопросов.
|
|
4868
4890
|
*/
|
|
4869
4891
|
declare class ScFrequentlyAskedQuestionsGroupSelectorComponent {
|
|
4892
|
+
/**
|
|
4893
|
+
* Сервис маршрутизации.
|
|
4894
|
+
*/
|
|
4895
|
+
private readonly router;
|
|
4896
|
+
/**
|
|
4897
|
+
* Активный маршрут.
|
|
4898
|
+
*/
|
|
4899
|
+
private readonly route;
|
|
4870
4900
|
/**
|
|
4871
4901
|
* {@link Observable} списка группы часто задаваемых вопросов.
|
|
4872
4902
|
*/
|
|
@@ -4876,15 +4906,23 @@ declare class ScFrequentlyAskedQuestionsGroupSelectorComponent {
|
|
|
4876
4906
|
*/
|
|
4877
4907
|
protected readonly groupControl: FormControl<ScFaqGroup | null>;
|
|
4878
4908
|
/**
|
|
4879
|
-
* {@link
|
|
4909
|
+
* {@link InputSignal} идентификатора выбранной группы.
|
|
4880
4910
|
*/
|
|
4881
|
-
readonly
|
|
4911
|
+
readonly selectedGroupId: InputSignal<number | null>;
|
|
4882
4912
|
/**
|
|
4883
4913
|
* Формат отображения. 'list' - в виде списка, 'select' в виде выпадающего списка.
|
|
4884
4914
|
*/
|
|
4885
4915
|
readonly viewMode: InputSignal<'list' | 'select'>;
|
|
4916
|
+
/**
|
|
4917
|
+
* Возвращает query-параметры ссылки на группу вопросов.
|
|
4918
|
+
*/
|
|
4919
|
+
protected readonly getGroupQueryParams: (group: ScFaqGroup) => Params;
|
|
4920
|
+
/**
|
|
4921
|
+
* Инициализирует экземпляр класса {@link ScFrequentlyAskedQuestionsGroupSelectorComponent}.
|
|
4922
|
+
*/
|
|
4923
|
+
constructor();
|
|
4886
4924
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScFrequentlyAskedQuestionsGroupSelectorComponent, never>;
|
|
4887
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScFrequentlyAskedQuestionsGroupSelectorComponent, "sc-frequently-asked-questions-group-selector", never, { "
|
|
4925
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScFrequentlyAskedQuestionsGroupSelectorComponent, "sc-frequently-asked-questions-group-selector", never, { "selectedGroupId": { "alias": "selectedGroupId"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4888
4926
|
}
|
|
4889
4927
|
|
|
4890
4928
|
/**
|
|
@@ -4911,6 +4949,14 @@ declare class ScFrequentlyAskedQuestionsWithGroupsComponent {
|
|
|
4911
4949
|
* Сервис маршрутизации.
|
|
4912
4950
|
*/
|
|
4913
4951
|
private readonly router;
|
|
4952
|
+
/**
|
|
4953
|
+
* Активный маршрут.
|
|
4954
|
+
*/
|
|
4955
|
+
private readonly route;
|
|
4956
|
+
/**
|
|
4957
|
+
* Признак, что приложение запущено на сервере.
|
|
4958
|
+
*/
|
|
4959
|
+
private readonly isServer;
|
|
4914
4960
|
/**
|
|
4915
4961
|
* Индекс первой страницы.
|
|
4916
4962
|
*/
|
|
@@ -4924,13 +4970,15 @@ declare class ScFrequentlyAskedQuestionsWithGroupsComponent {
|
|
|
4924
4970
|
*/
|
|
4925
4971
|
private readonly perPage$;
|
|
4926
4972
|
/**
|
|
4927
|
-
* {@link
|
|
4973
|
+
* {@link Observable} изменения номера страницы пагинации из query-параметров.
|
|
4928
4974
|
*/
|
|
4929
4975
|
private readonly page$;
|
|
4930
4976
|
/**
|
|
4931
|
-
* {@link
|
|
4977
|
+
* {@link Observable} изменения идентификатора выбранной группы.
|
|
4978
|
+
*
|
|
4979
|
+
* Идентификатор берётся из query-параметров, а если параметр не задан - используется первая группа списка.
|
|
4932
4980
|
*/
|
|
4933
|
-
protected readonly groupId$:
|
|
4981
|
+
protected readonly groupId$: Observable<number | null>;
|
|
4934
4982
|
/**
|
|
4935
4983
|
* Сигнал нажатия на кнопку "Задать вопрос".
|
|
4936
4984
|
*/
|
|
@@ -4960,17 +5008,9 @@ declare class ScFrequentlyAskedQuestionsWithGroupsComponent {
|
|
|
4960
5008
|
*/
|
|
4961
5009
|
protected readonly viewMode$: Observable<'list' | 'select'>;
|
|
4962
5010
|
/**
|
|
4963
|
-
*
|
|
4964
|
-
*
|
|
4965
|
-
* @param pageIndex Индекс страницы.
|
|
4966
|
-
*/
|
|
4967
|
-
protected paginationChange(pageIndex: number): void;
|
|
4968
|
-
/**
|
|
4969
|
-
* Устанавливает идентификатор группы.
|
|
4970
|
-
*
|
|
4971
|
-
* @param id Идентификатор группы.
|
|
5011
|
+
* Наименование query-параметра номера страницы пагинации.
|
|
4972
5012
|
*/
|
|
4973
|
-
protected
|
|
5013
|
+
protected readonly pageQueryParam: string;
|
|
4974
5014
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScFrequentlyAskedQuestionsWithGroupsComponent, never>;
|
|
4975
5015
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScFrequentlyAskedQuestionsWithGroupsComponent, "sc-frequently-asked-questions-with-groups", never, {}, { "clickSendQuestion": "clickSendQuestion"; }, never, never, true, never>;
|
|
4976
5016
|
}
|
|
@@ -5027,6 +5067,62 @@ declare class ScPublicOfferComponent {
|
|
|
5027
5067
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScPublicOfferComponent, "sc-public-offer", never, { "warehouses": { "alias": "warehouses"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5028
5068
|
}
|
|
5029
5069
|
|
|
5070
|
+
/**
|
|
5071
|
+
* Компонент пагинации, в котором страницы являются ссылками с номером страницы в query-параметрах.
|
|
5072
|
+
*
|
|
5073
|
+
* Ссылки позволяют переходить между страницами при отключенном JavaScript и корректно работают при SSR.
|
|
5074
|
+
* Внешний вид повторяет tui-pagination из @taiga-ui/kit.
|
|
5075
|
+
*
|
|
5076
|
+
* TODO: [TAIGA:5]: Проверить, появилась ли в tui-pagination поддержка ссылок, и заменить компонент на неё.
|
|
5077
|
+
*/
|
|
5078
|
+
declare class ScPaginationLinksComponent {
|
|
5079
|
+
/**
|
|
5080
|
+
* Иконки стрелок переключения страниц.
|
|
5081
|
+
*/
|
|
5082
|
+
protected readonly icons: TuiCommonIcons;
|
|
5083
|
+
/**
|
|
5084
|
+
* Подписи стрелок переключения страниц.
|
|
5085
|
+
*/
|
|
5086
|
+
protected readonly texts: Signal<readonly [previousPage: string, nextPage: string]>;
|
|
5087
|
+
/**
|
|
5088
|
+
* {@link InputSignal} общего количества страниц.
|
|
5089
|
+
*/
|
|
5090
|
+
readonly length: InputSignal<number>;
|
|
5091
|
+
/**
|
|
5092
|
+
* {@link InputSignal} номера текущей страницы, начиная с единицы.
|
|
5093
|
+
*/
|
|
5094
|
+
readonly index: InputSignal<number>;
|
|
5095
|
+
/**
|
|
5096
|
+
* {@link InputSignal} наименования query-параметра, в котором хранится номер страницы.
|
|
5097
|
+
*/
|
|
5098
|
+
readonly queryParam: InputSignal<string>;
|
|
5099
|
+
/**
|
|
5100
|
+
* {@link InputSignal} количества страниц, отображаемых по обе стороны от текущей.
|
|
5101
|
+
*/
|
|
5102
|
+
readonly activePadding: InputSignal<number>;
|
|
5103
|
+
/**
|
|
5104
|
+
* {@link InputSignal} количества страниц, отображаемых по краям.
|
|
5105
|
+
*/
|
|
5106
|
+
readonly sidePadding: InputSignal<number>;
|
|
5107
|
+
/**
|
|
5108
|
+
* {@link Signal} номеров отображаемых страниц, где `null` - разделитель пропущенных страниц.
|
|
5109
|
+
*
|
|
5110
|
+
* Состав страниц рассчитывается так же, как в tui-pagination: количество отображаемых элементов постоянно,
|
|
5111
|
+
* а окно вокруг текущей страницы расширяется у краёв списка.
|
|
5112
|
+
*/
|
|
5113
|
+
protected readonly pages: Signal<Array<number | null>>;
|
|
5114
|
+
/**
|
|
5115
|
+
* Возвращает query-параметры ссылки на страницу.
|
|
5116
|
+
*
|
|
5117
|
+
* Для первой страницы параметр удаляется, чтобы её адрес совпадал с адресом страницы без пагинации.
|
|
5118
|
+
*
|
|
5119
|
+
* @param page Номер страницы.
|
|
5120
|
+
*/
|
|
5121
|
+
protected getPageQueryParams(page: number): Params;
|
|
5122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScPaginationLinksComponent, never>;
|
|
5123
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScPaginationLinksComponent, "sc-pagination-links", never, { "length": { "alias": "length"; "required": true; "isSignal": true; }; "index": { "alias": "index"; "required": true; "isSignal": true; }; "queryParam": { "alias": "queryParam"; "required": false; "isSignal": true; }; "activePadding": { "alias": "activePadding"; "required": false; "isSignal": true; }; "sidePadding": { "alias": "sidePadding"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5124
|
+
}
|
|
5125
|
+
|
|
5030
5126
|
/**
|
|
5031
5127
|
* Конфигурация для отображения образца москитной сетки.
|
|
5032
5128
|
*/
|
|
@@ -6072,5 +6168,5 @@ declare class ScProfileAccordionsContentComponent {
|
|
|
6072
6168
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScProfileAccordionsContentComponent, "sc-profile-accordions-content", never, {}, { "editProfileClick": "editProfileClick"; "approvePhoneClick": "approvePhoneClick"; "addContragentClick": "addContragentClick"; "deleteContragentClick": "deleteContragentClick"; "addContragentBankAccountClick": "addContragentBankAccountClick"; "deleteContragentBankAccountClick": "deleteContragentBankAccountClick"; "addContragentContactClick": "addContragentContactClick"; "deleteContragentContactClick": "deleteContragentContactClick"; "addDeliveryAddressClick": "addDeliveryAddressClick"; "deleteDeliveryAddressClick": "deleteDeliveryAddressClick"; "addDeliveryAddressContactClick": "addDeliveryAddressContactClick"; "deleteDeliveryAddressContactClick": "deleteDeliveryAddressContactClick"; "addUserContactClick": "addUserContactClick"; "deleteUserContactClick": "deleteUserContactClick"; }, never, never, true, never>;
|
|
6073
6169
|
}
|
|
6074
6170
|
|
|
6075
|
-
export { AbstractScPriceCard, AuthMethod, CURRENT_COUNTRY_ID, CostWithDiscountComponent, FilesAndDocumentsComponent, FinishDateTimeTransformerDirective, IDLE_ITEM_STATE, IS_DEFAULT_COUNTRY, MAX_FILES_IN_FORM_INPUT, SC_ALLOW_SELECT_TERMINATED, SC_BANNER_DURATION, SC_CATALOG_PRODUCTS_FILTERS, SC_CATALOG_SHOW_PRODUCTS_RECURSIVELY, SC_DATE_FORMATTER, SC_DEBOUNCE_TIME_DEFAULT, SC_DIALOG_SERVICE_TOKEN, SC_ERROR_CHANGE_HANDLER, SC_HELP_NOTIFICATION_CLOSE, SC_HELP_NOTIFICATION_LIMIT, SC_HIDDEN_PRINT_ELEMENTS, SC_MANAGER_QR_HANDLER, SC_NOTIFY_WHEN_IN_STOCK_REQUIRED_FIELDS, SC_ORDER_FORM_CONFIG, SC_ORDER_OPTIONS, SC_PAGE_SIZE_OPTIONS, SC_SHOW_HELP_NOTIFICATION_IN_PHONE_INPUT, SC_USER_CITY_INFO, SC_USER_INFO, SC_USER_PROVIDERS, SC_VERIFICATION_CODE_TIMEOUT, ScAccordionComponent, ScAccordionContentDirective, ScAddContactDialogComponent, ScAddContragentBankAccountsDialogComponent, ScAddContragentDialogComponent, ScAddDeliveryAddressDialogComponent, ScAddOrEditingCartItemDialogComponent, ScAddOrEditingCartItemFormComponent, ScAddressesSelectionFieldComponent, ScBannerComponent, ScBrandsListComponent, ScCartAddProductsFromCsvDialogComponent, ScCatalogFilterCollapsibleComponent, ScCatalogFiltersComponent, ScCategoryCardComponent, ScContactsAccordionComponent, ScContragentsAccordionComponent, ScContragentsAccordionItemComponent, ScDeliveryAddressAccordionComponent, ScDeliveryAddressAccordionItemComponent, ScDownloadPriceListComponent, ScDraftComponent, ScEmailLinkDirective, ScErrorBlockStatusComponent, ScErrorHandlerComponent, ScFavoriteButtonComponent, ScFeedbackFormComponent, ScFocusFirstInvalidFieldDirective, ScFormatDatePipe, ScFrequentlyAskedQuestionsComponent, ScFrequentlyAskedQuestionsGroupSelectorComponent, ScFrequentlyAskedQuestionsWithGroupsComponent, ScGratitudeComponent, ScHelpNotificationService, ScHoverImageCarouselComponent, ScInputQuantityComponent, ScLinks, ScManagerCardComponent, ScManagerCardPushComponent, ScNewContactFormComponent, ScNewContragentBankAccountsFormComponent, ScNewContragentFormComponent, ScNewsCardComponent, ScNewsCardSkeletonComponent, ScNextInputFocusDirective, ScNoindexDirective, ScNoindexWrapperComponent, ScNotifyWhenInStockDialogComponent, ScOrderAccessorDirective, ScOrderDirectionItemsComponent, ScOrderFormComponent, ScOrderItemComponent, ScOrderItemsByDirection, ScOrderItemsListByDirectionsComponent, ScOrderItemsListByStockComponent, ScOrderItemsListComponent, ScPaymentStatusComponent, ScPersonalDataProcessingPolicyComponent, ScPhoneFormatPipe, ScPreviewSampleComponent, ScPreviewSamplesMosquitoComponent, ScPriceCardComponent, ScPriceCardInlineComponent, ScPriceHistoryComponent, ScPriceListPaginationComponent, ScPriceWarehouseStockComponent, ScPrintDirective, ScPrintService, ScPrivacyPolicyComponent, ScProductInAllWarehousesPipe, ScProfileAccordionsContentComponent, ScPublicOfferComponent, ScQRCodeDialogComponent, ScResetUserPasswordComponent, ScResourcePreviewComponent, ScSandwichComponent, ScSandwichM2Component, ScSandwichM2SkeletonComponent, ScSandwichSkeletonComponent, ScSelectOnFocusinDirective, ScSeoTagsComponent, ScShareButtonComponent, ScSignInFormByEmailComponent, ScSignInFormByPhoneComponent, ScSignInFormComponent, ScSignUpFormComponent, ScSimpleSignUpFormComponent, ScSuggestionFieldComponent, ScTelLinkDirective, ScTerminalLinkDirective, ScUpdateUserInfoDialogComponent, ScUserManagersComponent, ScUserPhoneApproveDialogComponent, ScVerificationPhoneCheckFormComponent, TreeDirective, TreeIconService, TreeLoaderService, TreeTopDirective, cleanupRecaptchaArtifacts, phoneValidator, scAtLeastOneRequiredValidator, scBicValidator, scClientUiIconsName, scCorrespondentAccountValidator, scGetCurrentRoute, scPasswordConfirmMatchingValidator, stepValidator, tuiDateValueTransformerDefaultProvider };
|
|
6171
|
+
export { AbstractScPriceCard, AuthMethod, CURRENT_COUNTRY_ID, CostWithDiscountComponent, FilesAndDocumentsComponent, FinishDateTimeTransformerDirective, IDLE_ITEM_STATE, IS_DEFAULT_COUNTRY, MAX_FILES_IN_FORM_INPUT, SC_ALLOW_SELECT_TERMINATED, SC_BANNER_DURATION, SC_CATALOG_PRODUCTS_FILTERS, SC_CATALOG_SHOW_PRODUCTS_RECURSIVELY, SC_DATE_FORMATTER, SC_DEBOUNCE_TIME_DEFAULT, SC_DIALOG_SERVICE_TOKEN, SC_ERROR_CHANGE_HANDLER, SC_FAQ_GROUP_QUERY_PARAM, SC_FAQ_PAGE_QUERY_PARAM, SC_HELP_NOTIFICATION_CLOSE, SC_HELP_NOTIFICATION_LIMIT, SC_HIDDEN_PRINT_ELEMENTS, SC_MANAGER_QR_HANDLER, SC_NOTIFY_WHEN_IN_STOCK_REQUIRED_FIELDS, SC_ORDER_FORM_CONFIG, SC_ORDER_OPTIONS, SC_PAGE_SIZE_OPTIONS, SC_SHOW_HELP_NOTIFICATION_IN_PHONE_INPUT, SC_USER_CITY_INFO, SC_USER_INFO, SC_USER_PROVIDERS, SC_VERIFICATION_CODE_TIMEOUT, ScAccordionComponent, ScAccordionContentDirective, ScAddContactDialogComponent, ScAddContragentBankAccountsDialogComponent, ScAddContragentDialogComponent, ScAddDeliveryAddressDialogComponent, ScAddOrEditingCartItemDialogComponent, ScAddOrEditingCartItemFormComponent, ScAddressesSelectionFieldComponent, ScBannerComponent, ScBrandsListComponent, ScCartAddProductsFromCsvDialogComponent, ScCatalogFilterCollapsibleComponent, ScCatalogFiltersComponent, ScCategoryCardComponent, ScContactsAccordionComponent, ScContragentsAccordionComponent, ScContragentsAccordionItemComponent, ScDeliveryAddressAccordionComponent, ScDeliveryAddressAccordionItemComponent, ScDownloadPriceListComponent, ScDraftComponent, ScEmailLinkDirective, ScErrorBlockStatusComponent, ScErrorHandlerComponent, ScFavoriteButtonComponent, ScFeedbackFormComponent, ScFocusFirstInvalidFieldDirective, ScFormatDatePipe, ScFrequentlyAskedQuestionsComponent, ScFrequentlyAskedQuestionsGroupSelectorComponent, ScFrequentlyAskedQuestionsWithGroupsComponent, ScGratitudeComponent, ScHelpNotificationService, ScHoverImageCarouselComponent, ScInputQuantityComponent, ScLinks, ScManagerCardComponent, ScManagerCardPushComponent, ScNewContactFormComponent, ScNewContragentBankAccountsFormComponent, ScNewContragentFormComponent, ScNewsCardComponent, ScNewsCardSkeletonComponent, ScNextInputFocusDirective, ScNoindexDirective, ScNoindexWrapperComponent, ScNotifyWhenInStockDialogComponent, ScOrderAccessorDirective, ScOrderDirectionItemsComponent, ScOrderFormComponent, ScOrderItemComponent, ScOrderItemsByDirection, ScOrderItemsListByDirectionsComponent, ScOrderItemsListByStockComponent, ScOrderItemsListComponent, ScPaginationLinksComponent, ScPaymentStatusComponent, ScPersonalDataProcessingPolicyComponent, ScPhoneFormatPipe, ScPreviewSampleComponent, ScPreviewSamplesMosquitoComponent, ScPriceCardComponent, ScPriceCardInlineComponent, ScPriceHistoryComponent, ScPriceListPaginationComponent, ScPriceWarehouseStockComponent, ScPrintDirective, ScPrintService, ScPrivacyPolicyComponent, ScProductInAllWarehousesPipe, ScProfileAccordionsContentComponent, ScPublicOfferComponent, ScQRCodeDialogComponent, ScResetUserPasswordComponent, ScResourcePreviewComponent, ScSandwichComponent, ScSandwichM2Component, ScSandwichM2SkeletonComponent, ScSandwichSkeletonComponent, ScSelectOnFocusinDirective, ScSeoTagsComponent, ScShareButtonComponent, ScSignInFormByEmailComponent, ScSignInFormByPhoneComponent, ScSignInFormComponent, ScSignUpFormComponent, ScSimpleSignUpFormComponent, ScSuggestionFieldComponent, ScTelLinkDirective, ScTerminalLinkDirective, ScUpdateUserInfoDialogComponent, ScUserManagersComponent, ScUserPhoneApproveDialogComponent, ScVerificationPhoneCheckFormComponent, TreeDirective, TreeIconService, TreeLoaderService, TreeTopDirective, cleanupRecaptchaArtifacts, phoneValidator, scAtLeastOneRequiredValidator, scBicValidator, scClientUiIconsName, scCorrespondentAccountValidator, scGetCurrentRoute, scGetFaqGroupQueryParams, scPasswordConfirmMatchingValidator, stepValidator, tuiDateValueTransformerDefaultProvider };
|
|
6076
6172
|
export type { ApiErrorResponse, IBlockError, INewOrderForm, IScDialogService, IScImage, ScBankAccountFormGroup, ScBrandListItem, ScContactFormGroup, ScFeedbackFormConfig, ScFeedbackFormFieldType, ScIConfiguratorSearchProductSandwich, ScILoader, ScINewCartItemSandwich, ScINewCartItemSandwichM2, ScIOrderFormConfig, ScIPreviewSample, ScISandwichM2Settings, ScISandwichSettings, ScLinkLocation, ScOrderOptions, ScPreviewMosquitoConfig, ScSandwichM2ItemSubmitState, TreeNode };
|