@snabcentr/client-ui 3.44.8 → 3.44.10
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/auth/sc-auth.module.d.ts +2 -1
- package/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.d.ts +19 -8
- package/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.d.ts +6 -7
- package/auth/sc-simple-sign-up-form/sc-simple-sign-up-form.component.d.ts +9 -2
- package/esm2022/auth/sc-auth.module.mjs +11 -5
- package/esm2022/auth/sc-sign-in-form/sc-sign-in-form-by-email/sc-sign-in-form-by-email.component.mjs +37 -18
- package/esm2022/auth/sc-sign-in-form/sc-sign-in-form-by-phone/sc-sign-in-form-by-phone.component.mjs +20 -18
- package/esm2022/auth/sc-simple-sign-up-form/sc-simple-sign-up-form.component.mjs +20 -4
- package/esm2022/user/user-managers/sc-user-managers.component.mjs +22 -24
- package/esm2022/verification/verification-phone-check-form/sc-verification-phone-check-form.component.mjs +14 -14
- package/fesm2022/snabcentr-client-ui.mjs +171 -134
- package/fesm2022/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/user/user-managers/sc-user-managers.component.d.ts +7 -10
package/package.json
CHANGED
|
@@ -1,26 +1,23 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { ScIManager
|
|
2
|
+
import { ScIManager } from '@snabcentr/client-core';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Компонент персональных менеджеров пользователя.
|
|
7
7
|
*/
|
|
8
8
|
export declare class ScUserManagersComponent {
|
|
9
|
-
private readonly userService;
|
|
10
|
-
/**
|
|
11
|
-
* Персональные менеджеры пользователя.
|
|
12
|
-
*/
|
|
13
|
-
readonly managers$: Observable<ScIManager[] | undefined>;
|
|
14
9
|
/**
|
|
15
10
|
* Событие нажатия на кнопку QR кода.
|
|
16
11
|
*/
|
|
17
12
|
readonly qrClickEvent: EventEmitter<ScIManager>;
|
|
18
13
|
/**
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
* @param userService Сервис данных о пользователе.
|
|
14
|
+
* Сервис данных о пользователе.
|
|
22
15
|
*/
|
|
23
|
-
|
|
16
|
+
private readonly userService;
|
|
17
|
+
/**
|
|
18
|
+
* Персональные менеджеры пользователя.
|
|
19
|
+
*/
|
|
20
|
+
readonly managers$: Observable<ScIManager[] | undefined>;
|
|
24
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScUserManagersComponent, never>;
|
|
25
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScUserManagersComponent, "sc-user-managers", never, {}, { "qrClickEvent": "qrClickEvent"; }, never, never, false, never>;
|
|
26
23
|
}
|