@ieeesa-npm/tenants 0.2.0 → 0.2.1
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/tenant-basic-details/tenant-basic-details.component.mjs +1 -1
- package/esm2022/lib/components/view-tenant-details/view-tenant-details.component.mjs +18 -11
- package/esm2022/lib/components/view-tenants-list/view-tenants-list.component.mjs +1 -1
- package/fesm2022/ieeesa-npm-tenants.mjs +17 -10
- package/fesm2022/ieeesa-npm-tenants.mjs.map +1 -1
- package/lib/components/view-tenant-details/view-tenant-details.component.d.ts +7 -5
- package/package.json +1 -1
|
@@ -45,6 +45,8 @@ export declare class ViewTenantDetailsComponent implements OnInit, OnDestroy {
|
|
|
45
45
|
tableData: RolesAndPermissions[];
|
|
46
46
|
isRolesAndPermissionsExpanded: boolean;
|
|
47
47
|
paginatorConfig: PaginatorConfig;
|
|
48
|
+
rolesAndPermissionsClassName: string;
|
|
49
|
+
headerElementClassName: string;
|
|
48
50
|
tableActions: TableActions;
|
|
49
51
|
viewTenantsRouteUrl: string;
|
|
50
52
|
dialogRef: any;
|
|
@@ -140,11 +142,11 @@ export declare class ViewTenantDetailsComponent implements OnInit, OnDestroy {
|
|
|
140
142
|
*/
|
|
141
143
|
getApplicationTypes(): void;
|
|
142
144
|
/**
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
145
|
+
* Validates permission based access for provided feature.
|
|
146
|
+
* @param {PermissionType} permissionType
|
|
147
|
+
* @return {boolean}
|
|
148
|
+
* @memberof ViewTenantDetailsComponent
|
|
149
|
+
*/
|
|
148
150
|
validateAccess(permissionType: PermissionType): boolean;
|
|
149
151
|
/**
|
|
150
152
|
* Performs necessary cleanup tasks, such as unsubscribing from subscription when the component is being destroyed.
|