@snabcentr/client-ui 0.19.0 → 1.18.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.
Potentially problematic release.
This version of @snabcentr/client-ui might be problematic. Click here for more details.
- package/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.d.ts +8 -4
 - package/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.d.ts +8 -3
 - package/auth/sc-sign-in-form/sc-sign-in-form.component.d.ts +4 -8
 - package/esm2020/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.mjs +16 -4
 - package/esm2020/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.mjs +16 -4
 - package/esm2020/auth/sc-sign-in-form/sc-sign-in-form.component.mjs +6 -24
 - package/esm2020/banner/sc-banner.component.mjs +2 -4
 - package/fesm2015/snabcentr-client-ui.mjs +36 -33
 - package/fesm2015/snabcentr-client-ui.mjs.map +1 -1
 - package/fesm2020/snabcentr-client-ui.mjs +36 -33
 - package/fesm2020/snabcentr-client-ui.mjs.map +1 -1
 - package/package.json +2 -2
 
| 
         @@ -1,9 +1,9 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import * as i0 from '@angular/core';
         
     | 
| 
       2 
2 
     | 
    
         
             
            import { EventEmitter, Component, ChangeDetectionStrategy, Inject, Input, Output, NgModule, Directive, HostBinding, ContentChild, ViewChild, Injectable, ElementRef, ContentChildren, HostListener, ChangeDetectorRef, Optional, Self, inject, InjectionToken, SkipSelf, forwardRef } from '@angular/core';
         
     | 
| 
       3 
     | 
    
         
            -
            import * as i1 from '@snabcentr/client-core';
         
     | 
| 
       4 
     | 
    
         
            -
            import { ScUserMetrikaGoalsEnum, SC_URLS, SC_PATH_IMAGE_NOT_FOUND, SEARCH_TERM, SEARCH_TERM_PROVIDERS, ScCatalogService, ScCartService, ScAuthService, ScISuggestionType, ScOpfList, ScIconTypesEnum, ScUserService } from '@snabcentr/client-core';
         
     | 
| 
       5 
3 
     | 
    
         
             
            import * as i10 from 'rxjs';
         
     | 
| 
       6 
4 
     | 
    
         
             
            import { Subject, filter, map, switchMap, tap, catchError, of, finalize, startWith, share, timer, scan, takeWhile, endWith, distinctUntilChanged, shareReplay, interval, takeUntil, skip, debounceTime, merge, throwError, combineLatest } from 'rxjs';
         
     | 
| 
      
 5 
     | 
    
         
            +
            import * as i1 from '@snabcentr/client-core';
         
     | 
| 
      
 6 
     | 
    
         
            +
            import { ScUserMetrikaGoalsEnum, SC_URLS, SC_PATH_IMAGE_NOT_FOUND, SEARCH_TERM, SEARCH_TERM_PROVIDERS, ScCatalogService, ScCartService, ScAuthService, ScISuggestionType, ScOpfList, ScIconTypesEnum, ScUserService } from '@snabcentr/client-core';
         
     | 
| 
       7 
7 
     | 
    
         
             
            import * as i2 from '@angular/common';
         
     | 
| 
       8 
8 
     | 
    
         
             
            import { CommonModule } from '@angular/common';
         
     | 
| 
       9 
9 
     | 
    
         
             
            import * as i4 from '@taiga-ui/core';
         
     | 
| 
         @@ -294,9 +294,11 @@ class ScSignInFormByPhoneComponent { 
     | 
|
| 
       294 
294 
     | 
    
         
             
                 * Инициализирует экземпляр класса {@link ScSignInFormByPhoneComponent}.
         
     | 
| 
       295 
295 
     | 
    
         
             
                 *
         
     | 
| 
       296 
296 
     | 
    
         
             
                 * @param authService Сервис аутентификации.
         
     | 
| 
      
 297 
     | 
    
         
            +
                 * @param userMetrikaService Сервис для сбора метрик о действиях пользователей.
         
     | 
| 
       297 
298 
     | 
    
         
             
                 */
         
     | 
| 
       298 
     | 
    
         
            -
                constructor(authService) {
         
     | 
| 
      
 299 
     | 
    
         
            +
                constructor(authService, userMetrikaService) {
         
     | 
| 
       299 
300 
     | 
    
         
             
                    this.authService = authService;
         
     | 
| 
      
 301 
     | 
    
         
            +
                    this.userMetrikaService = userMetrikaService;
         
     | 
| 
       300 
302 
     | 
    
         
             
                    /**
         
     | 
| 
       301 
303 
     | 
    
         
             
                     * Наличие кода подтверждения у пользователя.
         
     | 
| 
       302 
304 
     | 
    
         
             
                     */
         
     | 
| 
         @@ -331,13 +333,22 @@ class ScSignInFormByPhoneComponent { 
     | 
|
| 
       331 
333 
     | 
    
         
             
                     */
         
     | 
| 
       332 
334 
     | 
    
         
             
                    this.loading$ = this.request$.pipe(map(tuiIsFalsy));
         
     | 
| 
       333 
335 
     | 
    
         
             
                }
         
     | 
| 
      
 336 
     | 
    
         
            +
                /** @inheritDoc */
         
     | 
| 
      
 337 
     | 
    
         
            +
                ngOnInit() {
         
     | 
| 
      
 338 
     | 
    
         
            +
                    this.userMetrikaService.emitUserMetrikaEvent({
         
     | 
| 
      
 339 
     | 
    
         
            +
                        target: ScUserMetrikaGoalsEnum.signInShow,
         
     | 
| 
      
 340 
     | 
    
         
            +
                        params: {
         
     | 
| 
      
 341 
     | 
    
         
            +
                            type: 'phone',
         
     | 
| 
      
 342 
     | 
    
         
            +
                        },
         
     | 
| 
      
 343 
     | 
    
         
            +
                    });
         
     | 
| 
      
 344 
     | 
    
         
            +
                }
         
     | 
| 
       334 
345 
     | 
    
         
             
            }
         
     | 
| 
       335 
     | 
    
         
            -
            ScSignInFormByPhoneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ScSignInFormByPhoneComponent, deps: [{ token: i1.ScAuthService }], target: i0.ɵɵFactoryTarget.Component });
         
     | 
| 
      
 346 
     | 
    
         
            +
            ScSignInFormByPhoneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ScSignInFormByPhoneComponent, deps: [{ token: i1.ScAuthService }, { token: i1.ScUserMetrikaService }], target: i0.ɵɵFactoryTarget.Component });
         
     | 
| 
       336 
347 
     | 
    
         
             
            ScSignInFormByPhoneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: ScSignInFormByPhoneComponent, selector: "sc-sign-in-form-by-phone", ngImport: i0, template: "<form [formGroup]=\"form\" *tuiLet=\"!!(loading$ | async) as loading\" (ngSubmit)=\"onSubmit.next()\" class=\"flex flex-col gap-4 items-center mb-4\">\n    <sc-verification-phone-check-form [(haveCode)]=\"haveCode\" [shouldBeBusy]=\"true\" [shouldBeConfirmed]=\"true\" class=\"w-full\"></sc-verification-phone-check-form>\n    <button *ngIf=\"haveCode\" tuiButton type=\"submit\" [showLoader]=\"loading\" [disabled]=\"form.invalid || loading\" icon=\"scIconLogIn\">\u0412\u043E\u0439\u0442\u0438</button>\n</form>\n", dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i4.TuiButtonComponent, selector: "button[tuiButton], button[tuiIconButton], a[tuiButton], a[tuiIconButton]", inputs: ["appearance", "disabled", "icon", "iconRight", "shape", "showLoader", "size"] }, { kind: "directive", type: i6.TuiLetDirective, selector: "[tuiLet]", inputs: ["tuiLet"] }, { kind: "component", type: ScVerificationPhoneCheckFormComponent, selector: "sc-verification-phone-check-form", inputs: ["showCodeFields", "readOnly", "shouldBeBusy", "shouldBeConfirmed", "haveCode"], outputs: ["haveCodeChange"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
         
     | 
| 
       337 
348 
     | 
    
         
             
            i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ScSignInFormByPhoneComponent, decorators: [{
         
     | 
| 
       338 
349 
     | 
    
         
             
                        type: Component,
         
     | 
| 
       339 
350 
     | 
    
         
             
                        args: [{ selector: 'sc-sign-in-form-by-phone', changeDetection: ChangeDetectionStrategy.OnPush, template: "<form [formGroup]=\"form\" *tuiLet=\"!!(loading$ | async) as loading\" (ngSubmit)=\"onSubmit.next()\" class=\"flex flex-col gap-4 items-center mb-4\">\n    <sc-verification-phone-check-form [(haveCode)]=\"haveCode\" [shouldBeBusy]=\"true\" [shouldBeConfirmed]=\"true\" class=\"w-full\"></sc-verification-phone-check-form>\n    <button *ngIf=\"haveCode\" tuiButton type=\"submit\" [showLoader]=\"loading\" [disabled]=\"form.invalid || loading\" icon=\"scIconLogIn\">\u0412\u043E\u0439\u0442\u0438</button>\n</form>\n" }]
         
     | 
| 
       340 
     | 
    
         
            -
                    }], ctorParameters: function () { return [{ type: i1.ScAuthService }]; } });
         
     | 
| 
      
 351 
     | 
    
         
            +
                    }], ctorParameters: function () { return [{ type: i1.ScAuthService }, { type: i1.ScUserMetrikaService }]; } });
         
     | 
| 
       341 
352 
     | 
    
         | 
| 
       342 
353 
     | 
    
         
             
            /**
         
     | 
| 
       343 
354 
     | 
    
         
             
             * Компонент аутентификации по адресу электронной почты и паролю.
         
     | 
| 
         @@ -347,9 +358,11 @@ class ScSignInFormByEmailComponent { 
     | 
|
| 
       347 
358 
     | 
    
         
             
                 * Инициализирует экземпляр класса {@link ScSignInFormByEmailComponent}.
         
     | 
| 
       348 
359 
     | 
    
         
             
                 *
         
     | 
| 
       349 
360 
     | 
    
         
             
                 * @param authService Сервис аутентификации.
         
     | 
| 
      
 361 
     | 
    
         
            +
                 * @param userMetrikaService Сервис для сбора метрик о действиях пользователей.
         
     | 
| 
       350 
362 
     | 
    
         
             
                 */
         
     | 
| 
       351 
     | 
    
         
            -
                constructor(authService) {
         
     | 
| 
      
 363 
     | 
    
         
            +
                constructor(authService, userMetrikaService) {
         
     | 
| 
       352 
364 
     | 
    
         
             
                    this.authService = authService;
         
     | 
| 
      
 365 
     | 
    
         
            +
                    this.userMetrikaService = userMetrikaService;
         
     | 
| 
       353 
366 
     | 
    
         
             
                    /**
         
     | 
| 
       354 
367 
     | 
    
         
             
                     * Группа полей ввода для формы «Вход на сайт».
         
     | 
| 
       355 
368 
     | 
    
         
             
                     */
         
     | 
| 
         @@ -384,13 +397,22 @@ class ScSignInFormByEmailComponent { 
     | 
|
| 
       384 
397 
     | 
    
         
             
                     */
         
     | 
| 
       385 
398 
     | 
    
         
             
                    this.forgotPassword = new EventEmitter();
         
     | 
| 
       386 
399 
     | 
    
         
             
                }
         
     | 
| 
      
 400 
     | 
    
         
            +
                /** @inheritDoc */
         
     | 
| 
      
 401 
     | 
    
         
            +
                ngOnInit() {
         
     | 
| 
      
 402 
     | 
    
         
            +
                    this.userMetrikaService.emitUserMetrikaEvent({
         
     | 
| 
      
 403 
     | 
    
         
            +
                        target: ScUserMetrikaGoalsEnum.signInShow,
         
     | 
| 
      
 404 
     | 
    
         
            +
                        params: {
         
     | 
| 
      
 405 
     | 
    
         
            +
                            type: 'email',
         
     | 
| 
      
 406 
     | 
    
         
            +
                        },
         
     | 
| 
      
 407 
     | 
    
         
            +
                    });
         
     | 
| 
      
 408 
     | 
    
         
            +
                }
         
     | 
| 
       387 
409 
     | 
    
         
             
            }
         
     | 
| 
       388 
     | 
    
         
            -
            ScSignInFormByEmailComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ScSignInFormByEmailComponent, deps: [{ token: i1.ScAuthService }], target: i0.ɵɵFactoryTarget.Component });
         
     | 
| 
      
 410 
     | 
    
         
            +
            ScSignInFormByEmailComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ScSignInFormByEmailComponent, deps: [{ token: i1.ScAuthService }, { token: i1.ScUserMetrikaService }], target: i0.ɵɵFactoryTarget.Component });
         
     | 
| 
       389 
411 
     | 
    
         
             
            ScSignInFormByEmailComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: ScSignInFormByEmailComponent, selector: "sc-sign-in-form-by-email", outputs: { forgotPassword: "forgotPassword" }, ngImport: i0, template: "<form [formGroup]=\"formByEmail\" (ngSubmit)=\"onSubmit.next()\">\n    <div class=\"flex flex-col gap-4 mb-8\">\n        <label tuiLabel=\"\u0410\u0434\u0440\u0435\u0441 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u044B\">\n            <tui-input formControlName=\"login\">\n                \u0410\u0434\u0440\u0435\u0441 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u044B\n                <input tuiTextfield autocomplete=\"email\" />\n            </tui-input>\n            <tui-error formControlName=\"login\" [error]=\"[] | tuiFieldError | async\"></tui-error>\n        </label>\n        <label tuiLabel=\"\u041F\u0430\u0440\u043E\u043B\u044C\">\n            <tui-input-password formControlName=\"password\">\n                \u041F\u0430\u0440\u043E\u043B\u044C\n                <input tuiTextfield autocomplete=\"current-password\" />\n            </tui-input-password>\n            <tui-error formControlName=\"password\" [error]=\"[] | tuiFieldError | async\"></tui-error>\n        </label>\n        <tui-error [error]=\"[] | tuiFieldError | async\"></tui-error>\n    </div>\n    <div class=\"flex flex-col gap-4 items-center mb-4\">\n        <a tuiLink [pseudo]=\"true\" (click)=\"forgotPassword.emit()\" class=\"text-base\">\u0417\u0430\u0431\u044B\u043B\u0438 \u043F\u0430\u0440\u043E\u043B\u044C?</a>\n        <button tuiButton type=\"submit\" [showLoader]=\"!!(loadingEmailAuth$ | async)\" [disabled]=\"formByEmail.invalid || !!(loadingEmailAuth$ | async)\" icon=\"scIconLogIn\">\n            \u0412\u043E\u0439\u0442\u0438\n        </button>\n    </div>\n</form>\n", dependencies: [{ kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i4$1.TuiInputPasswordComponent, selector: "tui-input-password" }, { kind: "directive", type: i4$1.TuiInputPasswordDirective, selector: "tui-input-password" }, { kind: "component", type: i4.TuiTextfieldComponent, selector: "input[tuiTextfield], textarea[tuiTextfield]" }, { kind: "component", type: i4$1.TuiInputComponent, selector: "tui-input" }, { kind: "directive", type: i4$1.TuiInputDirective, selector: "tui-input" }, { kind: "component", type: i4.TuiLinkComponent, selector: "a[tuiLink], button[tuiLink]", inputs: ["pseudo", "icon", "iconAlign", "iconRotated", "mode"], exportAs: ["tuiLink"] }, { kind: "component", type: i4.TuiButtonComponent, selector: "button[tuiButton], button[tuiIconButton], a[tuiButton], a[tuiIconButton]", inputs: ["appearance", "disabled", "icon", "iconRight", "shape", "showLoader", "size"] }, { kind: "component", type: i4.TuiLabelComponent, selector: "label[tuiLabel]", inputs: ["tuiLabel", "context"] }, { kind: "component", type: i4.TuiErrorComponent, selector: "tui-error", inputs: ["error"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i4$1.TuiFieldErrorPipe, name: "tuiFieldError" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
         
     | 
| 
       390 
412 
     | 
    
         
             
            i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ScSignInFormByEmailComponent, decorators: [{
         
     | 
| 
       391 
413 
     | 
    
         
             
                        type: Component,
         
     | 
| 
       392 
414 
     | 
    
         
             
                        args: [{ selector: 'sc-sign-in-form-by-email', changeDetection: ChangeDetectionStrategy.OnPush, template: "<form [formGroup]=\"formByEmail\" (ngSubmit)=\"onSubmit.next()\">\n    <div class=\"flex flex-col gap-4 mb-8\">\n        <label tuiLabel=\"\u0410\u0434\u0440\u0435\u0441 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u044B\">\n            <tui-input formControlName=\"login\">\n                \u0410\u0434\u0440\u0435\u0441 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u044B\n                <input tuiTextfield autocomplete=\"email\" />\n            </tui-input>\n            <tui-error formControlName=\"login\" [error]=\"[] | tuiFieldError | async\"></tui-error>\n        </label>\n        <label tuiLabel=\"\u041F\u0430\u0440\u043E\u043B\u044C\">\n            <tui-input-password formControlName=\"password\">\n                \u041F\u0430\u0440\u043E\u043B\u044C\n                <input tuiTextfield autocomplete=\"current-password\" />\n            </tui-input-password>\n            <tui-error formControlName=\"password\" [error]=\"[] | tuiFieldError | async\"></tui-error>\n        </label>\n        <tui-error [error]=\"[] | tuiFieldError | async\"></tui-error>\n    </div>\n    <div class=\"flex flex-col gap-4 items-center mb-4\">\n        <a tuiLink [pseudo]=\"true\" (click)=\"forgotPassword.emit()\" class=\"text-base\">\u0417\u0430\u0431\u044B\u043B\u0438 \u043F\u0430\u0440\u043E\u043B\u044C?</a>\n        <button tuiButton type=\"submit\" [showLoader]=\"!!(loadingEmailAuth$ | async)\" [disabled]=\"formByEmail.invalid || !!(loadingEmailAuth$ | async)\" icon=\"scIconLogIn\">\n            \u0412\u043E\u0439\u0442\u0438\n        </button>\n    </div>\n</form>\n" }]
         
     | 
| 
       393 
     | 
    
         
            -
                    }], ctorParameters: function () { return [{ type: i1.ScAuthService }]; }, propDecorators: { forgotPassword: [{
         
     | 
| 
      
 415 
     | 
    
         
            +
                    }], ctorParameters: function () { return [{ type: i1.ScAuthService }, { type: i1.ScUserMetrikaService }]; }, propDecorators: { forgotPassword: [{
         
     | 
| 
       394 
416 
     | 
    
         
             
                            type: Output
         
     | 
| 
       395 
417 
     | 
    
         
             
                        }] } });
         
     | 
| 
       396 
418 
     | 
    
         | 
| 
         @@ -402,11 +424,9 @@ class ScSignInFormComponent { 
     | 
|
| 
       402 
424 
     | 
    
         
             
                 * Инициализирует экземпляр класса {@link ScSignInFormComponent}.
         
     | 
| 
       403 
425 
     | 
    
         
             
                 *
         
     | 
| 
       404 
426 
     | 
    
         
             
                 * @param authService Сервис аутентификации.
         
     | 
| 
       405 
     | 
    
         
            -
                 * @param userMetrikaService Сервис для сбора метрик о действиях пользователей.
         
     | 
| 
       406 
427 
     | 
    
         
             
                 */
         
     | 
| 
       407 
     | 
    
         
            -
                constructor(authService 
     | 
| 
      
 428 
     | 
    
         
            +
                constructor(authService) {
         
     | 
| 
       408 
429 
     | 
    
         
             
                    this.authService = authService;
         
     | 
| 
       409 
     | 
    
         
            -
                    this.userMetrikaService = userMetrikaService;
         
     | 
| 
       410 
430 
     | 
    
         
             
                    /**
         
     | 
| 
       411 
431 
     | 
    
         
             
                     * Выбранный способ аутентификации.
         
     | 
| 
       412 
432 
     | 
    
         
             
                     */
         
     | 
| 
         @@ -428,15 +448,6 @@ class ScSignInFormComponent { 
     | 
|
| 
       428 
448 
     | 
    
         
             
                     */
         
     | 
| 
       429 
449 
     | 
    
         
             
                    this.successAuth = this.authService.getAuthChange().pipe(filter((state) => state));
         
     | 
| 
       430 
450 
     | 
    
         
             
                }
         
     | 
| 
       431 
     | 
    
         
            -
                /** @inheritDoc */
         
     | 
| 
       432 
     | 
    
         
            -
                ngOnInit() {
         
     | 
| 
       433 
     | 
    
         
            -
                    this.userMetrikaService.emitUserMetrikaEvent({
         
     | 
| 
       434 
     | 
    
         
            -
                        target: ScUserMetrikaGoalsEnum.signInShow,
         
     | 
| 
       435 
     | 
    
         
            -
                        params: {
         
     | 
| 
       436 
     | 
    
         
            -
                            type: this.authMethod,
         
     | 
| 
       437 
     | 
    
         
            -
                        },
         
     | 
| 
       438 
     | 
    
         
            -
                    });
         
     | 
| 
       439 
     | 
    
         
            -
                }
         
     | 
| 
       440 
451 
     | 
    
         
             
                /**
         
     | 
| 
       441 
452 
     | 
    
         
             
                 * Осуществляет переключение способов аутентификации.
         
     | 
| 
       442 
453 
     | 
    
         
             
                 *
         
     | 
| 
         @@ -444,12 +455,6 @@ class ScSignInFormComponent { 
     | 
|
| 
       444 
455 
     | 
    
         
             
                 */
         
     | 
| 
       445 
456 
     | 
    
         
             
                switchAuth(authMethod) {
         
     | 
| 
       446 
457 
     | 
    
         
             
                    this.authMethod = authMethod;
         
     | 
| 
       447 
     | 
    
         
            -
                    this.userMetrikaService.emitUserMetrikaEvent({
         
     | 
| 
       448 
     | 
    
         
            -
                        target: ScUserMetrikaGoalsEnum.signInShow,
         
     | 
| 
       449 
     | 
    
         
            -
                        params: {
         
     | 
| 
       450 
     | 
    
         
            -
                            type: authMethod,
         
     | 
| 
       451 
     | 
    
         
            -
                        },
         
     | 
| 
       452 
     | 
    
         
            -
                    });
         
     | 
| 
       453 
458 
     | 
    
         
             
                }
         
     | 
| 
       454 
459 
     | 
    
         
             
                /**
         
     | 
| 
       455 
460 
     | 
    
         
             
                 * Обрабатывает нажатие на кнопку "Забыли пароль" и выдает сигнал об этом.
         
     | 
| 
         @@ -458,12 +463,12 @@ class ScSignInFormComponent { 
     | 
|
| 
       458 
463 
     | 
    
         
             
                    this.forgotPassword.emit();
         
     | 
| 
       459 
464 
     | 
    
         
             
                }
         
     | 
| 
       460 
465 
     | 
    
         
             
            }
         
     | 
| 
       461 
     | 
    
         
            -
            ScSignInFormComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ScSignInFormComponent, deps: [{ token: i1.ScAuthService } 
     | 
| 
       462 
     | 
    
         
            -
            ScSignInFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: ScSignInFormComponent, selector: "sc-sign-in-form", inputs: { authMethod: "authMethod" }, outputs: { forgotPassword: "forgotPassword", signUp: "signUp", successAuth: "successAuth" }, ngImport: i0, template: "<div class=\" 
     | 
| 
      
 466 
     | 
    
         
            +
            ScSignInFormComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ScSignInFormComponent, deps: [{ token: i1.ScAuthService }], target: i0.ɵɵFactoryTarget.Component });
         
     | 
| 
      
 467 
     | 
    
         
            +
            ScSignInFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: ScSignInFormComponent, selector: "sc-sign-in-form", inputs: { authMethod: "authMethod" }, outputs: { forgotPassword: "forgotPassword", signUp: "signUp", successAuth: "successAuth" }, ngImport: i0, template: "<div class=\"flex justify-center mb-4\">\n    <button\n        tuiButton\n        [tuiMode]=\"authMethod === 'by_phone' ? null : 'onLight'\"\n        [appearance]=\"authMethod === 'by_phone' ? 'primary' : 'secondary'\"\n        (click)=\"switchAuth(method.byPhone)\"\n        class=\"tui-space_right-3 tui-space_bottom-3 !font-bold\"\n    >\n        \u041F\u043E \u0442\u0435\u043B\u0435\u0444\u043E\u043D\u0443\n    </button>\n\n    <button\n        tuiButton\n        [tuiMode]=\"authMethod === 'by_email' ? null : 'onLight'\"\n        [appearance]=\"authMethod === 'by_email' ? 'primary' : 'secondary'\"\n        (click)=\"switchAuth(method.byEmail)\"\n        class=\"tui-space_left-3 tui-space_bottom-3 !font-bold\"\n    >\n        \u041F\u043E e-mail\n    </button>\n</div>\n\n<sc-sign-in-form-by-email *ngIf=\"authMethod === 'by_email'\" (forgotPassword)=\"onForgotPassword()\"></sc-sign-in-form-by-email>\n\n<sc-sign-in-form-by-phone [class.hidden]=\"authMethod !== 'by_phone'\"></sc-sign-in-form-by-phone>\n\n<div class=\"flex flex-col gap-4 items-center\">\n    <span class=\"font-medium text-tui-text-02\">\u0415\u0449\u0435 \u043D\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u044B?</span>\n    <button tuiButton tuiMode=\"onLight\" (click)=\"signUp.emit()\" type=\"button\" icon=\"scIconAddProfile\" appearance=\"secondary\">\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C\u0441\u044F</button>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i4.TuiButtonComponent, selector: "button[tuiButton], button[tuiIconButton], a[tuiButton], a[tuiIconButton]", inputs: ["appearance", "disabled", "icon", "iconRight", "shape", "showLoader", "size"] }, { kind: "directive", type: i4.TuiModeDirective, selector: "[tuiMode]", inputs: ["tuiMode"] }, { kind: "component", type: ScSignInFormByPhoneComponent, selector: "sc-sign-in-form-by-phone" }, { kind: "component", type: ScSignInFormByEmailComponent, selector: "sc-sign-in-form-by-email", outputs: ["forgotPassword"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
         
     | 
| 
       463 
468 
     | 
    
         
             
            i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ScSignInFormComponent, decorators: [{
         
     | 
| 
       464 
469 
     | 
    
         
             
                        type: Component,
         
     | 
| 
       465 
     | 
    
         
            -
                        args: [{ selector: 'sc-sign-in-form', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\" 
     | 
| 
       466 
     | 
    
         
            -
                    }], ctorParameters: function () { return [{ type: i1.ScAuthService } 
     | 
| 
      
 470 
     | 
    
         
            +
                        args: [{ selector: 'sc-sign-in-form', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"flex justify-center mb-4\">\n    <button\n        tuiButton\n        [tuiMode]=\"authMethod === 'by_phone' ? null : 'onLight'\"\n        [appearance]=\"authMethod === 'by_phone' ? 'primary' : 'secondary'\"\n        (click)=\"switchAuth(method.byPhone)\"\n        class=\"tui-space_right-3 tui-space_bottom-3 !font-bold\"\n    >\n        \u041F\u043E \u0442\u0435\u043B\u0435\u0444\u043E\u043D\u0443\n    </button>\n\n    <button\n        tuiButton\n        [tuiMode]=\"authMethod === 'by_email' ? null : 'onLight'\"\n        [appearance]=\"authMethod === 'by_email' ? 'primary' : 'secondary'\"\n        (click)=\"switchAuth(method.byEmail)\"\n        class=\"tui-space_left-3 tui-space_bottom-3 !font-bold\"\n    >\n        \u041F\u043E e-mail\n    </button>\n</div>\n\n<sc-sign-in-form-by-email *ngIf=\"authMethod === 'by_email'\" (forgotPassword)=\"onForgotPassword()\"></sc-sign-in-form-by-email>\n\n<sc-sign-in-form-by-phone [class.hidden]=\"authMethod !== 'by_phone'\"></sc-sign-in-form-by-phone>\n\n<div class=\"flex flex-col gap-4 items-center\">\n    <span class=\"font-medium text-tui-text-02\">\u0415\u0449\u0435 \u043D\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u044B?</span>\n    <button tuiButton tuiMode=\"onLight\" (click)=\"signUp.emit()\" type=\"button\" icon=\"scIconAddProfile\" appearance=\"secondary\">\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C\u0441\u044F</button>\n</div>\n" }]
         
     | 
| 
      
 471 
     | 
    
         
            +
                    }], ctorParameters: function () { return [{ type: i1.ScAuthService }]; }, propDecorators: { authMethod: [{
         
     | 
| 
       467 
472 
     | 
    
         
             
                            type: Input
         
     | 
| 
       468 
473 
     | 
    
         
             
                        }], forgotPassword: [{
         
     | 
| 
       469 
474 
     | 
    
         
             
                            type: Output
         
     | 
| 
         @@ -898,9 +903,7 @@ let ScBannerComponent = class ScBannerComponent { 
     | 
|
| 
       898 
903 
     | 
    
         
             
                onClick(banner) {
         
     | 
| 
       899 
904 
     | 
    
         
             
                    this.userMetrikaService.emitUserMetrikaEvent({
         
     | 
| 
       900 
905 
     | 
    
         
             
                        target: ScUserMetrikaGoalsEnum.bannerClick,
         
     | 
| 
       901 
     | 
    
         
            -
                        params: {
         
     | 
| 
       902 
     | 
    
         
            -
                            banner_id: banner.id,
         
     | 
| 
       903 
     | 
    
         
            -
                        },
         
     | 
| 
      
 906 
     | 
    
         
            +
                        params: { banner_id: banner.id },
         
     | 
| 
       904 
907 
     | 
    
         
             
                    });
         
     | 
| 
       905 
908 
     | 
    
         
             
                    if (banner.url) {
         
     | 
| 
       906 
909 
     | 
    
         
             
                        this.clickBannerEvent.emit(banner);
         
     |