verben-authentication-ui 1.0.8 → 1.0.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/esm2022/lib/components/role-control/role-control.component.mjs +55 -3
- package/esm2022/lib/components/user-management/user-management-form/use-management-form.component.mjs +6 -4
- package/esm2022/lib/components/user-management/user-management.component.mjs +3 -3
- package/esm2022/lib/components/user-management/user-management.module.mjs +5 -2
- package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +5 -4
- package/fesm2022/verben-authentication-ui.mjs +68 -11
- package/fesm2022/verben-authentication-ui.mjs.map +1 -1
- package/lib/components/role-control/role-control.component.d.ts +8 -0
- package/lib/components/user-management/user-management-form/use-management-form.component.d.ts +2 -0
- package/lib/components/user-management/user-management.module.d.ts +1 -1
- package/package.json +1 -1
|
@@ -54,6 +54,9 @@ export declare class RoleControlComponent implements OnInit {
|
|
|
54
54
|
visibleColumns: IDataFilter[];
|
|
55
55
|
filterArray: IDataFilter[];
|
|
56
56
|
sortOptions: IDataFilter[];
|
|
57
|
+
searchContext: string;
|
|
58
|
+
searchContextHistory: string[];
|
|
59
|
+
isInputFocused: boolean;
|
|
57
60
|
childPermissionRef: ChildrenType;
|
|
58
61
|
roleContextsStore: ApplicationRoleContext[];
|
|
59
62
|
roleActionsStore: ApplicationRoleAction[];
|
|
@@ -118,6 +121,11 @@ export declare class RoleControlComponent implements OnInit {
|
|
|
118
121
|
tableCache: Map<string, MappedRole>;
|
|
119
122
|
cacheItem(item: MappedRole): void;
|
|
120
123
|
restoreCache(item: Role): void;
|
|
124
|
+
onSearchFocus(): void;
|
|
125
|
+
onSearchBlur(): void;
|
|
126
|
+
onInputFocus(): void;
|
|
127
|
+
onInputBlur(): void;
|
|
128
|
+
get filteredData(): CardData[];
|
|
121
129
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoleControlComponent, never>;
|
|
122
130
|
static ɵcmp: i0.ɵɵComponentDeclaration<RoleControlComponent, "lib-role-control", never, { "isGlobal": { "alias": "isGlobal"; "required": false; }; "serviceName": { "alias": "serviceName"; "required": false; }; "application": { "alias": "application"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "searchDebounceTime": { "alias": "searchDebounceTime"; "required": false; }; "permissionConfig": { "alias": "permissionConfig"; "required": false; }; }, {}, never, never, false, never>;
|
|
123
131
|
}
|
package/lib/components/user-management/user-management-form/use-management-form.component.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { FormBuilder, FormGroup } from '@angular/forms';
|
|
|
3
3
|
import { CardData } from 'verben-ng-ui';
|
|
4
4
|
import { Role } from '../../../models/Role';
|
|
5
5
|
import { Tag } from '../../../models/Tag';
|
|
6
|
+
import { Status } from '../../../models/status';
|
|
6
7
|
import { User } from '../../../models/user';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class UserManagementFormComponent {
|
|
@@ -13,6 +14,7 @@ export declare class UserManagementFormComponent {
|
|
|
13
14
|
switchView: EventEmitter<undefined>;
|
|
14
15
|
onFormSave: EventEmitter<Partial<User>>;
|
|
15
16
|
form: FormGroup;
|
|
17
|
+
statusOptions: Status[];
|
|
16
18
|
constructor(fb: FormBuilder);
|
|
17
19
|
ngOnInit(): void;
|
|
18
20
|
onSave(): void;
|
|
@@ -9,6 +9,6 @@ import * as i7 from "@angular/forms";
|
|
|
9
9
|
import * as i8 from "../user-request-approval/user-request-approval.module";
|
|
10
10
|
export declare class LibUserManagementModule {
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibUserManagementModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LibUserManagementModule, [typeof i1.UserManagementComponent, typeof i2.UserManagementFormComponent, typeof i3.UserStatusBadgeComponent], [typeof i4.HttpClientModule, typeof i5.CommonModule, typeof i6.DataTableModule, typeof i6.CardModule, typeof i6.SvgModule, typeof i6.DataViewModule, typeof i6.CardDataViewModule, typeof i6.SortTableModule, typeof i6.VisibleColumnModule, typeof i6.TableFilterModule, typeof i6.DataExportModule, typeof i6.DataXportModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i6.VerbenaInputModule, typeof i6.VerbenaButtonModule, typeof i6.VerbenaBadgeModule, typeof i6.DropDownModule, typeof i8.LibUserRequestApprovalModule], [typeof i1.UserManagementComponent]>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LibUserManagementModule, [typeof i1.UserManagementComponent, typeof i2.UserManagementFormComponent, typeof i3.UserStatusBadgeComponent], [typeof i4.HttpClientModule, typeof i5.CommonModule, typeof i6.DataTableModule, typeof i6.CardModule, typeof i6.SvgModule, typeof i6.DataViewModule, typeof i6.CardDataViewModule, typeof i6.SortTableModule, typeof i6.VisibleColumnModule, typeof i6.TableFilterModule, typeof i6.DataExportModule, typeof i6.DataXportModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i6.VerbenaInputModule, typeof i6.VerbenaButtonModule, typeof i6.VerbenaBadgeModule, typeof i6.DropDownModule, typeof i6.VerbenaSwitchModule, typeof i8.LibUserRequestApprovalModule], [typeof i1.UserManagementComponent]>;
|
|
13
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<LibUserManagementModule>;
|
|
14
14
|
}
|