verben-authentication-ui 1.0.7 → 1.0.9
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.component.mjs +3 -3
- package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +5 -4
- package/fesm2022/verben-authentication-ui.mjs +60 -7
- package/fesm2022/verben-authentication-ui.mjs.map +1 -1
- package/lib/components/role-control/role-control.component.d.ts +8 -0
- 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
|
}
|