valtech-components 4.0.132 → 4.0.133
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/organisms/permissions-view/permissions-view.component.mjs +20 -12
- package/esm2022/lib/components/organisms/permissions-view/permissions-view.i18n.mjs +1 -3
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +20 -14
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/permissions-view/permissions-view.component.d.ts +4 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,10 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
interface PermGroupView {
|
|
6
6
|
key: string;
|
|
7
7
|
label: string;
|
|
8
|
+
/** Alcance del grupo: 'app' (app actual) · 'org' (general) · 'other' (otra app). */
|
|
9
|
+
scope: 'app' | 'org' | 'other';
|
|
10
|
+
/** AppId de la otra app (solo cuando scope === 'other'). */
|
|
11
|
+
appId?: string;
|
|
8
12
|
perms: string[];
|
|
9
13
|
}
|
|
10
14
|
interface RoleView {
|
package/lib/version.d.ts
CHANGED