@snabcentr/client-ui 3.8.7 → 3.8.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snabcentr/client-ui",
3
- "version": "3.8.7",
3
+ "version": "3.8.8",
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,10 +1,6 @@
1
- ## 3.8.7 (2024-12-28)
1
+ ## 3.8.8 (2024-12-28)
2
2
 
3
3
  ### changed (1 change)
4
4
 
5
- - [#10860: Изменен значок "Из истории покупок" карточки товара](web_soft/libs/angular/snabcentr-client-ui-lib@3c1e6dc675db5df0ae3f2c43b59cbba37071e2aa) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!210))
6
-
7
- ### added (1 change)
8
-
9
- - [#10856: Добавлены и изменены значки](web_soft/libs/angular/snabcentr-client-ui-lib@8b21564237128894e66a5bff3164501a7c00b7f9) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!209))
5
+ - [#10448: Доработана форма запроса бесплатного образца.](web_soft/libs/angular/snabcentr-client-ui-lib@b45fe5e82c7154b0f9118894d9eb8add7398cbe8) ([merge request](web_soft/libs/angular/snabcentr-client-ui-lib!211))
10
6
 
@@ -1,4 +1,3 @@
1
- import { OnInit } from '@angular/core';
2
1
  import { FormControl, FormGroup } from '@angular/forms';
3
2
  import { ScISuggestionType } from '@snabcentr/client-core';
4
3
  import { Observable, Subject } from 'rxjs';
@@ -6,11 +5,11 @@ import * as i0 from "@angular/core";
6
5
  /**
7
6
  * Компонент формы запроса бесплатного образца.
8
7
  */
9
- export declare class ScAskToSampleFormComponent implements OnInit {
8
+ export declare class ScAskToSampleFormComponent {
10
9
  /**
11
- * Сервис работы с образцами.
10
+ * Сервис обратной связи.
12
11
  */
13
- private readonly samplesService;
12
+ private readonly feedbackService;
14
13
  /**
15
14
  * Сервис данных о пользователе.
16
15
  */
@@ -23,10 +22,6 @@ export declare class ScAskToSampleFormComponent implements OnInit {
23
22
  * Поле ввода для recaptcha.
24
23
  */
25
24
  readonly recaptchaControl: FormControl<string | null>;
26
- /**
27
- * Наименование формы, с которой отправляется запрос.
28
- */
29
- formName?: 'order-sample' | 'buy-products';
30
25
  /**
31
26
  * Группа полей ввода для формы «Пожелания и предложения по улучшению сайта».
32
27
  */
@@ -34,7 +29,6 @@ export declare class ScAskToSampleFormComponent implements OnInit {
34
29
  name: FormControl<string | null>;
35
30
  phone: FormControl<string | null>;
36
31
  email: FormControl<string | null>;
37
- description: FormControl<string | null>;
38
32
  recaptcha: FormControl<null>;
39
33
  }>;
40
34
  /**
@@ -53,8 +47,6 @@ export declare class ScAskToSampleFormComponent implements OnInit {
53
47
  * {@link Observable} изменения состояния загрузки данных.
54
48
  */
55
49
  readonly loading$: Observable<boolean>;
56
- /** @inheritdoc */
57
- ngOnInit(): void;
58
50
  static ɵfac: i0.ɵɵFactoryDeclaration<ScAskToSampleFormComponent, never>;
59
- static ɵcmp: i0.ɵɵComponentDeclaration<ScAskToSampleFormComponent, "sc-ask-to-sample-form", never, { "formName": { "alias": "formName"; "required": false; }; }, {}, never, never, false, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScAskToSampleFormComponent, "sc-ask-to-sample-form", never, {}, {}, never, never, false, never>;
60
52
  }