@eo-sdk/client 11.12.1 → 11.13.0-rc.2
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/app/eo-client/about-state/about-state.component.d.ts.map +1 -1
- package/app/eo-client/inbox-state/inbox-state/inbox-state.component.d.ts +1 -0
- package/app/eo-client/inbox-state/inbox-state/inbox-state.component.d.ts.map +1 -1
- package/app/eo-framework/actions/actions/clipboard/clipboard-object-action/clipboard-object-action.component.d.ts +6 -3
- package/app/eo-framework/actions/actions/clipboard/clipboard-object-action/clipboard-object-action.component.d.ts.map +1 -1
- package/app/eo-framework/actions/actions/download-action/download-action.d.ts +7 -3
- package/app/eo-framework/actions/actions/download-action/download-action.d.ts.map +1 -1
- package/app/eo-framework/actions/actions/email/email/email.component.d.ts +7 -4
- package/app/eo-framework/actions/actions/email/email/email.component.d.ts.map +1 -1
- package/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.d.ts +10 -2
- package/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.d.ts.map +1 -1
- package/app/eo-framework/form-elements/form-elements.module.d.ts.map +1 -1
- package/app/eo-framework/grid/filters/dynamic-list-filter.component.d.ts +2 -2
- package/app/eo-framework/grid/filters/dynamic-list-filter.component.d.ts.map +1 -1
- package/app/eo-framework/list-container/list-container.component.d.ts +2 -2
- package/app/eo-framework/list-container/list-container.component.d.ts.map +1 -1
- package/app/eo-framework/object-details/object-details.component.d.ts +33 -35
- package/app/eo-framework/object-details/object-details.component.d.ts.map +1 -1
- package/app/eo-framework/result-list/result-list.component.d.ts +10 -3
- package/app/eo-framework/result-list/result-list.component.d.ts.map +1 -1
- package/app/eo-framework/result-list/result-list.module.d.ts +3 -1
- package/app/eo-framework/result-list/result-list.module.d.ts.map +1 -1
- package/app/eo-framework/settings/permissions/permissions.component.d.ts +3 -1
- package/app/eo-framework/settings/permissions/permissions.component.d.ts.map +1 -1
- package/assets/_default/i18n/de.json +3 -2
- package/assets/_default/i18n/en.json +3 -2
- package/esm2022/app/eo-client/about-state/about-state.component.mjs +6 -5
- package/esm2022/app/eo-client/favorite-state/favorite-state.component.mjs +1 -1
- package/esm2022/app/eo-client/inbox-state/inbox-state/inbox-state.component.mjs +18 -10
- package/esm2022/app/eo-client/notifications-state/notifications-state.component.mjs +1 -1
- package/esm2022/app/eo-client/object-state/object-state/object-state.component.mjs +1 -1
- package/esm2022/app/eo-client/process-state/process-state.component.mjs +1 -1
- package/esm2022/app/eo-client/result-state/result-state.component.mjs +1 -1
- package/esm2022/app/eo-client/version-state/version-state.component.mjs +1 -1
- package/esm2022/app/eo-framework/actions/actions/clipboard/clipboard-object-action/clipboard-object-action.component.mjs +16 -8
- package/esm2022/app/eo-framework/actions/actions/download-action/download-action.mjs +11 -7
- package/esm2022/app/eo-framework/actions/actions/email/email/email.component.mjs +21 -12
- package/esm2022/app/eo-framework/eo-framework.module.mjs +2 -2
- package/esm2022/app/eo-framework/form-elements/dynamic-list/dynamic-list.component.mjs +23 -4
- package/esm2022/app/eo-framework/form-elements/form-elements.module.mjs +1 -28
- package/esm2022/app/eo-framework/grid/filters/dynamic-list-filter.component.mjs +5 -5
- package/esm2022/app/eo-framework/list-container/list-container.component.mjs +5 -5
- package/esm2022/app/eo-framework/object-details/object-details.component.mjs +219 -216
- package/esm2022/app/eo-framework/object-form/object-form/form-element-table/row-edit/row-edit.component.mjs +2 -2
- package/esm2022/app/eo-framework/result-list/result-list.component.mjs +46 -25
- package/esm2022/app/eo-framework/result-list/result-list.module.mjs +12 -4
- package/esm2022/app/eo-framework/settings/permissions/permissions.component.mjs +10 -2
- package/fesm2022/eo-sdk-client.mjs +1308 -1254
- package/fesm2022/eo-sdk-client.mjs.map +1 -1
- package/misc/scripts/prebuild-about-state.js +7 -5
- package/package.json +2 -2
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
import { Component, Input } from '@angular/core';
|
|
2
|
+
import { Utils } from '@eo-sdk/core';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
import * as i1 from "@angular/common";
|
|
4
5
|
import * as i2 from "../../ui/eo-icon/eo-icon.component";
|
|
5
6
|
export class PermissionsComponent {
|
|
6
7
|
constructor() {
|
|
7
|
-
this.
|
|
8
|
+
this._roles = [];
|
|
9
|
+
}
|
|
10
|
+
set roles(roles) {
|
|
11
|
+
this._roles = roles.sort(Utils.sortValues('name'));
|
|
12
|
+
}
|
|
13
|
+
;
|
|
14
|
+
get roles() {
|
|
15
|
+
return this._roles;
|
|
8
16
|
}
|
|
9
17
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: PermissionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
10
18
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.0", type: PermissionsComponent, selector: "eo-permissions", inputs: { roles: "roles" }, ngImport: i0, template: "<div class=\"role\" *ngFor=\"let role of roles\">\n <eo-icon [iconSrc]=\"'assets/_default/svg/ic_shield.svg'\"></eo-icon>\n <div>\n <div class=\"name\">{{role.name}}</div>\n <div class=\"description\">{{role.description}}</div>\n </div>\n</div>\n", styles: [".role{display:flex;flex-flow:row nowrap;margin-bottom:calc(var(--app-pane-padding) / 2);word-break:break-all}.role eo-icon{width:18px;height:18px;color:var(--text-color-hint)}.role>div{padding:0 calc(var(--app-pane-padding) / 2)}.role>div .description{font-size:var(--font-caption);color:var(--text-color-caption)}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i2.EoIconComponent, selector: "eo-icon", inputs: ["objectType", "iconId", "iconSrc", "badge", "iconTitle"] }] }); }
|
|
@@ -15,4 +23,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.0", ngImpor
|
|
|
15
23
|
}], propDecorators: { roles: [{
|
|
16
24
|
type: Input
|
|
17
25
|
}] } });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVybWlzc2lvbnMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9lby1mcmFtZXdvcmsvc2V0dGluZ3MvcGVybWlzc2lvbnMvcGVybWlzc2lvbnMuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9lby1mcmFtZXdvcmsvc2V0dGluZ3MvcGVybWlzc2lvbnMvcGVybWlzc2lvbnMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxLQUFLLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFDLEtBQUssRUFBQyxNQUFNLGNBQWMsQ0FBQzs7OztBQU9uQyxNQUFNLE9BQU8sb0JBQW9CO0lBTGpDO1FBTUUsV0FBTSxHQUFlLEVBQUUsQ0FBQztLQVN6QjtJQVBDLElBQWEsS0FBSyxDQUFDLEtBQWlCO1FBQ2xDLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7SUFDckQsQ0FBQztJQUFBLENBQUM7SUFFRixJQUFJLEtBQUs7UUFDUCxPQUFPLElBQUksQ0FBQyxNQUFNLENBQUM7SUFDckIsQ0FBQzs4R0FUVSxvQkFBb0I7a0dBQXBCLG9CQUFvQixrRkNSakMsaVFBT0E7OzJGRENhLG9CQUFvQjtrQkFMaEMsU0FBUzsrQkFDRSxnQkFBZ0I7OEJBT2IsS0FBSztzQkFBakIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBJbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1V0aWxzfSBmcm9tICdAZW8tc2RrL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdlby1wZXJtaXNzaW9ucycsXG4gIHRlbXBsYXRlVXJsOiAnLi9wZXJtaXNzaW9ucy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3Blcm1pc3Npb25zLmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgUGVybWlzc2lvbnNDb21wb25lbnQge1xuICBfcm9sZXM6IEFycmF5PGFueT4gPSBbXTtcbiBcbiAgQElucHV0KCkgc2V0IHJvbGVzKHJvbGVzOiBBcnJheTxhbnk+KSB7XG4gICAgdGhpcy5fcm9sZXMgPSByb2xlcy5zb3J0KFV0aWxzLnNvcnRWYWx1ZXMoJ25hbWUnKSk7XG4gIH07XG5cbiAgZ2V0IHJvbGVzKCkge1xuICAgIHJldHVybiB0aGlzLl9yb2xlcztcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cInJvbGVcIiAqbmdGb3I9XCJsZXQgcm9sZSBvZiByb2xlc1wiPlxuICA8ZW8taWNvbiBbaWNvblNyY109XCInYXNzZXRzL19kZWZhdWx0L3N2Zy9pY19zaGllbGQuc3ZnJ1wiPjwvZW8taWNvbj5cbiAgPGRpdj5cbiAgICA8ZGl2IGNsYXNzPVwibmFtZVwiPnt7cm9sZS5uYW1lfX08L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiZGVzY3JpcHRpb25cIj57e3JvbGUuZGVzY3JpcHRpb259fTwvZGl2PlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
|