@snabcentr/client-ui 1.4.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. package/auth/sc-auth.module.d.ts +1 -1
  2. package/auth/sign-up-form/sc-sign-up-form.component.d.ts +10 -4
  3. package/contacts/sc-contacts.module.d.ts +2 -1
  4. package/directives/index.d.ts +1 -0
  5. package/directives/terminal-link/sc-terminal-link.directive.d.ts +34 -0
  6. package/esm2020/auth/sc-auth.module.mjs +11 -5
  7. package/esm2020/auth/sign-up-form/sc-sign-up-form.component.mjs +52 -30
  8. package/esm2020/brands-list/sc-brands-list.component.mjs +3 -3
  9. package/esm2020/contacts/contacts-accordion/sc-contacts-accordion.component.mjs +3 -2
  10. package/esm2020/contacts/sc-contacts.module.mjs +5 -2
  11. package/esm2020/directives/index.mjs +2 -1
  12. package/esm2020/directives/terminal-link/sc-terminal-link.directive.mjs +69 -0
  13. package/esm2020/profile/sc-profile-accordions-content/sc-profile-accordions-content.component.mjs +12 -9
  14. package/esm2020/profile/sc-profile.module.mjs +5 -2
  15. package/esm2020/providers/scUserProviders.mjs +5 -5
  16. package/esm2020/public-api.mjs +2 -1
  17. package/esm2020/qrcode/index.mjs +3 -0
  18. package/esm2020/qrcode/qrcode-dialog/sc-qrcode-dialog.component.mjs +51 -0
  19. package/esm2020/qrcode/sc-qrcode.module.mjs +24 -0
  20. package/esm2020/user/reset-user-password/sc-reset-user-password.component.mjs +8 -6
  21. package/esm2020/user/sc-user.module.mjs +5 -2
  22. package/esm2020/user/update-user-info-dialog/sc-update-user-info-dialog.component.mjs +2 -2
  23. package/esm2020/user/user-managers/sc-user-managers.component.mjs +4 -3
  24. package/esm2020/user/user-phone-approve-dialog/sc-user-phone-approve-dialog.component.mjs +2 -2
  25. package/fesm2015/snabcentr-client-ui.mjs +467 -300
  26. package/fesm2015/snabcentr-client-ui.mjs.map +1 -1
  27. package/fesm2020/snabcentr-client-ui.mjs +462 -297
  28. package/fesm2020/snabcentr-client-ui.mjs.map +1 -1
  29. package/package.json +2 -1
  30. package/profile/sc-profile-accordions-content/sc-profile-accordions-content.component.d.ts +2 -2
  31. package/profile/sc-profile.module.d.ts +2 -1
  32. package/providers/scUserProviders.d.ts +1 -1
  33. package/public-api.d.ts +1 -0
  34. package/qrcode/index.d.ts +2 -0
  35. package/qrcode/qrcode-dialog/sc-qrcode-dialog.component.d.ts +33 -0
  36. package/qrcode/sc-qrcode.module.d.ts +14 -0
  37. package/styles/taiga/taiga-tailwind-preset.js +114 -0
  38. package/styles/tailwind/tailwind.scss +103 -6
  39. package/user/reset-user-password/sc-reset-user-password.component.d.ts +2 -2
  40. package/user/sc-user.module.d.ts +2 -1
  41. package/user/update-user-info-dialog/sc-update-user-info-dialog.component.d.ts +1 -1
  42. package/user/user-managers/sc-user-managers.component.d.ts +1 -1
  43. package/user/user-phone-approve-dialog/sc-user-phone-approve-dialog.component.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snabcentr/client-ui",
3
- "version": "1.4.0",
3
+ "version": "1.6.0",
4
4
  "author": "Snabcentr Ltd.",
5
5
  "repository": "https://gitlab.snabcentr.met/web/angular/snabcentr-client-ui-lib",
6
6
  "license": "Commercial",
@@ -21,6 +21,7 @@
21
21
  "@ngneat/until-destroy": ">=9.2.3",
22
22
  "@snabcentr/client-core": ">=0.18.0",
23
23
  "angular8-yandex-maps": ">=14.0.4",
24
+ "angularx-qrcode": "=>14.0.0",
24
25
  "@taiga-ui/addon-charts": ">=3.42.1",
25
26
  "@taiga-ui/addon-commerce": ">=3.42.1",
26
27
  "@taiga-ui/addon-doc": ">=3.42.1",
@@ -1,7 +1,7 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
2
3
  import { ScContragent, ScIBankAccount, ScICity, ScIContact, ScIDeliveryAddress, ScLocationsService, ScUser, ScUserService, ScVerificationService } from '@snabcentr/client-core';
3
4
  import { Observable, Subject } from 'rxjs';
4
- import { FormControl } from '@angular/forms';
5
5
  import * as i0 from "@angular/core";
6
6
  /**
7
7
  * Компонент контента профиля пользователя в виде раскрывающихся смысловых блоков.
@@ -110,7 +110,7 @@ export declare class ScProfileAccordionsContentComponent {
110
110
  *
111
111
  * @param user$ Поток информации о текущем пользователе.
112
112
  * @param locationsService Сервис для получения списков стран, регионов, городов.
113
- * @param userService Сервис информации о пользователе.
113
+ * @param userService Сервис данных о пользователе.
114
114
  * @param verificationService Сервис верификации.
115
115
  */
116
116
  constructor(user$: Observable<ScUser>, locationsService: ScLocationsService, userService: ScUserService, verificationService: ScVerificationService);
@@ -10,11 +10,12 @@ import * as i8 from "@taiga-ui/cdk";
10
10
  import * as i9 from "@taiga-ui/kit";
11
11
  import * as i10 from "@angular/forms";
12
12
  import * as i11 from "../contacts/sc-contacts.module";
13
+ import * as i12 from "../directives/terminal-link/sc-terminal-link.directive";
13
14
  /**
14
15
  * Модуль профиля пользователя.
15
16
  */
16
17
  export declare class ScProfileModule {
17
18
  static ɵfac: i0.ɵɵFactoryDeclaration<ScProfileModule, never>;
18
- static ɵmod: i0.ɵɵNgModuleDeclaration<ScProfileModule, [typeof i1.ScProfileAccordionsContentComponent], [typeof i2.CommonModule, typeof i3.ScUserModule, typeof i4.ScAccordionModule, typeof i5.ScContragentsModule, typeof i6.ScDeliveryAddressModule, typeof i7.TuiLoaderModule, typeof i8.TuiLetModule, typeof i7.TuiLinkModule, typeof i7.TuiFormatPhonePipeModule, typeof i9.TuiCheckboxLabeledModule, typeof i7.TuiSvgModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i7.TuiLoaderModule, typeof i7.TuiButtonModule, typeof i11.ScContactsModule], [typeof i1.ScProfileAccordionsContentComponent]>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ScProfileModule, [typeof i1.ScProfileAccordionsContentComponent], [typeof i2.CommonModule, typeof i3.ScUserModule, typeof i4.ScAccordionModule, typeof i5.ScContragentsModule, typeof i6.ScDeliveryAddressModule, typeof i7.TuiLoaderModule, typeof i8.TuiLetModule, typeof i7.TuiLinkModule, typeof i7.TuiFormatPhonePipeModule, typeof i9.TuiCheckboxLabeledModule, typeof i7.TuiSvgModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i7.TuiLoaderModule, typeof i7.TuiButtonModule, typeof i11.ScContactsModule, typeof i12.ScTerminalLinkDirective], [typeof i1.ScProfileAccordionsContentComponent]>;
19
20
  static ɵinj: i0.ɵɵInjectorDeclaration<ScProfileModule>;
20
21
  }
@@ -8,7 +8,7 @@ export declare const SC_USER_INFO: InjectionToken<Observable<ScUser | undefined>
8
8
  /**
9
9
  * Фабрика создания потока данных о текущем пользователе.
10
10
  *
11
- * @param userService Сервис информации о пользователе.
11
+ * @param userService Сервис данных о пользователе.
12
12
  * @param destroy$ Сервис завершения {@link Observable} через `takeUntil`.
13
13
  */
14
14
  export declare function scUserFactory(userService: ScUserService, destroy$: Observable<void>): Observable<ScUser | undefined>;
package/public-api.d.ts CHANGED
@@ -15,6 +15,7 @@ export * from './brands-list';
15
15
  export * from './news';
16
16
  export * from './order';
17
17
  export * from './providers';
18
+ export * from './qrcode';
18
19
  export * from './share-button';
19
20
  export * from './user';
20
21
  export * from './validators';
@@ -0,0 +1,2 @@
1
+ export * from './qrcode-dialog/sc-qrcode-dialog.component';
2
+ export * from './sc-qrcode.module';
@@ -0,0 +1,33 @@
1
+ import { ScITerminalProvider, ScVCardService } from '@snabcentr/client-core';
2
+ import { TuiDialogContext } from '@taiga-ui/core';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Компонент QR кода.
6
+ */
7
+ export declare class ScQRCodeDialogComponent {
8
+ private readonly vCardService;
9
+ readonly context: TuiDialogContext<void, {
10
+ qrdata: string;
11
+ }>;
12
+ readonly terminal: ScITerminalProvider;
13
+ /**
14
+ * Инициализирует экземпляр класса {@link ScQRCodeDialogComponent}.
15
+ *
16
+ * @param vCardService Сервис для работы с vCard.
17
+ * @param context Контекст диалогового окна, в котором открыт компонент.
18
+ * @param terminal Провайдер данных о терминале.
19
+ */
20
+ constructor(vCardService: ScVCardService, context: TuiDialogContext<void, {
21
+ qrdata: string;
22
+ }>, terminal: ScITerminalProvider);
23
+ /**
24
+ * Выполняет скачивание генерируемого vCard файла контакта.
25
+ */
26
+ downloadVCard(): void;
27
+ /**
28
+ * Проверяет что в диалоговое окно были переданы данные в формате `vCard`.
29
+ */
30
+ isVCardData(): boolean;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScQRCodeDialogComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScQRCodeDialogComponent, "sc-qrcode-dialog", never, {}, {}, never, never, false>;
33
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./qrcode-dialog/sc-qrcode-dialog.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "angularx-qrcode";
5
+ import * as i4 from "@taiga-ui/core";
6
+ import * as i5 from "@taiga-ui/addon-preview";
7
+ /**
8
+ * Модуль QR кода.
9
+ */
10
+ export declare class ScQRCodeModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScQRCodeModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ScQRCodeModule, [typeof i1.ScQRCodeDialogComponent], [typeof i2.CommonModule, typeof i3.QRCodeModule, typeof i4.TuiButtonModule, typeof i4.TuiModeModule, typeof i4.TuiDialogModule, typeof i5.TuiPreviewModule], [typeof i1.ScQRCodeDialogComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<ScQRCodeModule>;
14
+ }
@@ -7,6 +7,120 @@ module.exports = {
7
7
  'tui-heading': 'var(--tui-font-heading)',
8
8
  'tui-text': 'var(--tui-font-text)',
9
9
  },
10
+ fontSize: {
11
+ h1: [
12
+ '3.125rem',
13
+ {
14
+ lineHeight: '3.5rem',
15
+ fontWeight: '800',
16
+ },
17
+ ],
18
+ h2: [
19
+ '2.75rem',
20
+ {
21
+ lineHeight: '3rem',
22
+ fontWeight: '800',
23
+ },
24
+ ],
25
+ h3: [
26
+ '2.25rem',
27
+ {
28
+ lineHeight: '2.5rem',
29
+ fontWeight: '800',
30
+ },
31
+ ],
32
+ h4: [
33
+ '1.75rem',
34
+ {
35
+ lineHeight: '2rem',
36
+ fontWeight: '800',
37
+ },
38
+ ],
39
+ h5: [
40
+ '1.5rem',
41
+ {
42
+ lineHeight: '1.75rem',
43
+ fontWeight: '800',
44
+ },
45
+ ],
46
+ h6: [
47
+ '1.25rem',
48
+ {
49
+ lineHeight: '1.5rem',
50
+ fontWeight: '800',
51
+ },
52
+ ],
53
+ 'body-xl-bold': [
54
+ '1.1875rem',
55
+ {
56
+ lineHeight: '1.75rem',
57
+ fontWeight: ' 800',
58
+ },
59
+ ],
60
+ 'body-xl': [
61
+ '1.1875rem',
62
+ {
63
+ lineHeight: '1.75rem',
64
+ fontWeight: '500',
65
+ },
66
+ ],
67
+ 'body-l-bold': [
68
+ '1.0625rem',
69
+ {
70
+ lineHeight: '1.75rem',
71
+ fontWeight: ' 800',
72
+ },
73
+ ],
74
+ 'body-l': [
75
+ '1.0625rem',
76
+ {
77
+ lineHeight: '1.75rem',
78
+ fontWeight: '500',
79
+ },
80
+ ],
81
+ 'body-m-bold': [
82
+ '0.9375rem',
83
+ {
84
+ lineHeight: '1.5rem',
85
+ fontWeight: ' 800',
86
+ },
87
+ ],
88
+ 'body-m': [
89
+ '0.9375rem',
90
+ {
91
+ lineHeight: '1.5rem',
92
+ fontWeight: '500',
93
+ },
94
+ ],
95
+ 'body-s-bold': [
96
+ '0.8125rem',
97
+ {
98
+ lineHeight: '1.25rem',
99
+ fontWeight: ' 800',
100
+ },
101
+ ],
102
+ 'body-s': [
103
+ '0.8125rem',
104
+ {
105
+ lineHeight: '1.25rem',
106
+ fontWeight: '500',
107
+ },
108
+ ],
109
+ 'body-xs-bold': [
110
+ '0.6875rem',
111
+ {
112
+ lineHeight: '1rem',
113
+ fontWeight: ' 800',
114
+ },
115
+ ],
116
+ 'body-xs': [
117
+ '0.6875rem',
118
+ {
119
+ lineHeight: '1rem',
120
+ fontWeight: '500',
121
+ },
122
+ ],
123
+ },
10
124
  boxShadow: {
11
125
  'sc-1': '0px 5px 20px 0px rgba(0, 0, 0, 0.10)',
12
126
  'sc-2': '0px 2px 3px 0px rgba(0, 0, 0, 0.10)',
@@ -1,5 +1,5 @@
1
1
  /*
2
- ! tailwindcss v3.4.7 | MIT License | https://tailwindcss.com
2
+ ! tailwindcss v3.4.8 | MIT License | https://tailwindcss.com
3
3
  */
4
4
 
5
5
  /*
@@ -718,6 +718,10 @@ video {
718
718
  margin-bottom: 1rem;
719
719
  }
720
720
 
721
+ .-mt-2 {
722
+ margin-top: -0.5rem;
723
+ }
724
+
721
725
  .mb-1 {
722
726
  margin-bottom: 0.25rem;
723
727
  }
@@ -726,6 +730,10 @@ video {
726
730
  margin-bottom: 0.5rem;
727
731
  }
728
732
 
733
+ .mb-3 {
734
+ margin-bottom: 0.75rem;
735
+ }
736
+
729
737
  .mb-4 {
730
738
  margin-bottom: 1rem;
731
739
  }
@@ -802,11 +810,6 @@ video {
802
810
  height: 1.5rem !important;
803
811
  }
804
812
 
805
- .size-12 {
806
- width: 3rem;
807
- height: 3rem;
808
- }
809
-
810
813
  .size-20 {
811
814
  width: 5rem;
812
815
  height: 5rem;
@@ -891,6 +894,10 @@ video {
891
894
  width: 2rem !important;
892
895
  }
893
896
 
897
+ .w-12 {
898
+ width: 3rem;
899
+ }
900
+
894
901
  .w-28 {
895
902
  width: 7rem;
896
903
  }
@@ -1341,6 +1348,96 @@ video {
1341
1348
  line-height: 1.5rem;
1342
1349
  }
1343
1350
 
1351
+ .text-body-l {
1352
+ font-size: 1.0625rem;
1353
+ line-height: 1.75rem;
1354
+ font-weight: 500;
1355
+ }
1356
+
1357
+ .text-body-l-bold {
1358
+ font-size: 1.0625rem;
1359
+ line-height: 1.75rem;
1360
+ font-weight: 800;
1361
+ }
1362
+
1363
+ .text-body-m {
1364
+ font-size: 0.9375rem;
1365
+ line-height: 1.5rem;
1366
+ font-weight: 500;
1367
+ }
1368
+
1369
+ .text-body-m-bold {
1370
+ font-size: 0.9375rem;
1371
+ line-height: 1.5rem;
1372
+ font-weight: 800;
1373
+ }
1374
+
1375
+ .text-body-s {
1376
+ font-size: 0.8125rem;
1377
+ line-height: 1.25rem;
1378
+ font-weight: 500;
1379
+ }
1380
+
1381
+ .text-body-s-bold {
1382
+ font-size: 0.8125rem;
1383
+ line-height: 1.25rem;
1384
+ font-weight: 800;
1385
+ }
1386
+
1387
+ .text-body-xl {
1388
+ font-size: 1.1875rem;
1389
+ line-height: 1.75rem;
1390
+ font-weight: 500;
1391
+ }
1392
+
1393
+ .text-body-xl-bold {
1394
+ font-size: 1.1875rem;
1395
+ line-height: 1.75rem;
1396
+ font-weight: 800;
1397
+ }
1398
+
1399
+ .text-body-xs {
1400
+ font-size: 0.6875rem;
1401
+ line-height: 1rem;
1402
+ font-weight: 500;
1403
+ }
1404
+
1405
+ .text-h1 {
1406
+ font-size: 3.125rem;
1407
+ line-height: 3.5rem;
1408
+ font-weight: 800;
1409
+ }
1410
+
1411
+ .text-h2 {
1412
+ font-size: 2.75rem;
1413
+ line-height: 3rem;
1414
+ font-weight: 800;
1415
+ }
1416
+
1417
+ .text-h3 {
1418
+ font-size: 2.25rem;
1419
+ line-height: 2.5rem;
1420
+ font-weight: 800;
1421
+ }
1422
+
1423
+ .text-h4 {
1424
+ font-size: 1.75rem;
1425
+ line-height: 2rem;
1426
+ font-weight: 800;
1427
+ }
1428
+
1429
+ .text-h5 {
1430
+ font-size: 1.5rem;
1431
+ line-height: 1.75rem;
1432
+ font-weight: 800;
1433
+ }
1434
+
1435
+ .text-h6 {
1436
+ font-size: 1.25rem;
1437
+ line-height: 1.5rem;
1438
+ font-weight: 800;
1439
+ }
1440
+
1344
1441
  .text-lg {
1345
1442
  font-size: 1.125rem;
1346
1443
  line-height: 1.75rem;
@@ -1,6 +1,6 @@
1
1
  import { FormControl, FormGroup } from '@angular/forms';
2
2
  import { ScUserService } from '@snabcentr/client-core';
3
- import { Subject, Observable } from 'rxjs';
3
+ import { Observable, Subject } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Компонент смены пароля пользователя.
@@ -38,7 +38,7 @@ export declare class ScResetUserPasswordComponent {
38
38
  /**
39
39
  * Инициализирует экземпляр класса {@link ScResetUserPasswordComponent}.
40
40
  *
41
- * @param userService Сервис информации о пользователе.
41
+ * @param userService Сервис данных о пользователе.
42
42
  */
43
43
  constructor(userService: ScUserService);
44
44
  static ɵfac: i0.ɵɵFactoryDeclaration<ScResetUserPasswordComponent, never>;
@@ -10,11 +10,12 @@ import * as i8 from "@taiga-ui/core";
10
10
  import * as i9 from "@taiga-ui/cdk";
11
11
  import * as i10 from "../verification/sc-verification.module";
12
12
  import * as i11 from "../form-fields/form-fields.module";
13
+ import * as i12 from "../directives/terminal-link/sc-terminal-link.directive";
13
14
  /**
14
15
  * Модуль компонентов пользователя.
15
16
  */
16
17
  export declare class ScUserModule {
17
18
  static ɵfac: i0.ɵɵFactoryDeclaration<ScUserModule, never>;
18
- static ɵmod: i0.ɵɵNgModuleDeclaration<ScUserModule, [typeof i1.ScResetUserPasswordComponent, typeof i2.ScUpdateUserInfoDialogComponent, typeof i3.ScUserPhoneApproveDialogComponent, typeof i4.ScUserManagersComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.TuiFieldErrorPipeModule, typeof i7.TuiInputPasswordModule, typeof i8.TuiButtonModule, typeof i8.TuiErrorModule, typeof i8.TuiLabelModule, typeof i8.TuiTextfieldControllerModule, typeof i9.TuiLetModule, typeof i10.ScVerificationModule, typeof i11.ScFormFieldsModule, typeof i8.TuiLoaderModule, typeof i7.TuiInputModule, typeof i7.TuiInputPhoneModule, typeof i7.TuiCheckboxModule, typeof i7.TuiCheckboxLabeledModule, typeof i8.TuiDataListModule, typeof i7.TuiSelectModule, typeof i8.TuiLinkModule, typeof i8.TuiFormatPhonePipeModule], [typeof i1.ScResetUserPasswordComponent, typeof i2.ScUpdateUserInfoDialogComponent, typeof i3.ScUserPhoneApproveDialogComponent, typeof i4.ScUserManagersComponent]>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ScUserModule, [typeof i1.ScResetUserPasswordComponent, typeof i2.ScUpdateUserInfoDialogComponent, typeof i3.ScUserPhoneApproveDialogComponent, typeof i4.ScUserManagersComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.TuiFieldErrorPipeModule, typeof i7.TuiInputPasswordModule, typeof i8.TuiButtonModule, typeof i8.TuiErrorModule, typeof i8.TuiLabelModule, typeof i8.TuiTextfieldControllerModule, typeof i9.TuiLetModule, typeof i10.ScVerificationModule, typeof i11.ScFormFieldsModule, typeof i8.TuiLoaderModule, typeof i7.TuiInputModule, typeof i7.TuiInputPhoneModule, typeof i7.TuiCheckboxModule, typeof i7.TuiCheckboxLabeledModule, typeof i8.TuiDataListModule, typeof i7.TuiSelectModule, typeof i8.TuiLinkModule, typeof i8.TuiFormatPhonePipeModule, typeof i12.ScTerminalLinkDirective], [typeof i1.ScResetUserPasswordComponent, typeof i2.ScUpdateUserInfoDialogComponent, typeof i3.ScUserPhoneApproveDialogComponent, typeof i4.ScUserManagersComponent]>;
19
20
  static ɵinj: i0.ɵɵInjectorDeclaration<ScUserModule>;
20
21
  }
@@ -51,7 +51,7 @@ export declare class ScUpdateUserInfoDialogComponent implements AfterViewInit {
51
51
  * Инициализирует экземпляр класса {@link ScUpdateUserInfoDialogComponent}.
52
52
  *
53
53
  * @param user$ Поток информации о текущем пользователе.
54
- * @param userService Сервис информации о пользователе.
54
+ * @param userService Сервис данных о пользователе.
55
55
  * @param userMetrikaService Сервис для сбора метрик о действиях пользователей.
56
56
  * @param context Контекст диалогового окна, в котором открыт компонент.
57
57
  */
@@ -18,7 +18,7 @@ export declare class ScUserManagersComponent {
18
18
  /**
19
19
  * Инициализирует экземпляр класса {@link ScUserManagersComponent}.
20
20
  *
21
- * @param userService Сервис информации о пользователе.
21
+ * @param userService Сервис данных о пользователе.
22
22
  */
23
23
  constructor(userService: ScUserService);
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<ScUserManagersComponent, never>;
@@ -42,7 +42,7 @@ export declare class ScUserPhoneApproveDialogComponent implements AfterViewInit
42
42
  * @param verificationService Сервис верификации.
43
43
  * @param userMetrikaService Сервис для сбора метрик о действиях пользователей.
44
44
  * @param user$ Поток информации о текущем пользователе.
45
- * @param userService Сервис информации о пользователе.
45
+ * @param userService Сервис данных о пользователе.
46
46
  * @param context Контекст диалогового окна, в котором открыт компонент.
47
47
  */
48
48
  constructor(verificationService: ScVerificationService, userMetrikaService: ScUserMetrikaService, user$: Observable<ScUser>, userService: ScUserService, context?: TuiDialogContext<ScApprovedData, ScUserPhoneApproveDialogComponent> | undefined);