aril 0.1.39 → 0.1.41
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/ui/tag/aril-ui-tag.mjs +5 -0
- package/esm2022/ui/tag/index.mjs +2 -0
- package/esm2022/ui/tag/src/interface.mjs +2 -0
- package/esm2022/ui/tag/src/tag.component.mjs +26 -0
- package/esm2022/ui-business/ref-value/src/ref-value.component.mjs +5 -30
- package/fesm2022/aril-ui-business-ref-value.mjs +4 -29
- package/fesm2022/aril-ui-business-ref-value.mjs.map +1 -1
- package/fesm2022/aril-ui-tag.mjs +33 -0
- package/fesm2022/aril-ui-tag.mjs.map +1 -0
- package/package.json +66 -60
- package/ui/tag/index.d.ts +1 -0
- package/ui/tag/src/interface.d.ts +1 -0
- package/ui/tag/src/tag.component.d.ts +18 -0
- package/ui-business/ref-value/src/ref-value.component.d.ts +0 -2
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './index';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJpbC11aS10YWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL3RhZy9hcmlsLXVpLXRhZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './src/tag.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9hcmlsL3VpL3RhZy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHFCQUFxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zcmMvdGFnLmNvbXBvbmVudCc7Il19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW50ZXJmYWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC91aS90YWcvc3JjL2ludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHR5cGUgU2V2ZXJpdHkgPSAnc3VjY2VzcycgfCAnc2Vjb25kYXJ5JyB8ICdpbmZvJyB8ICd3YXJuaW5nJyB8ICdkYW5nZXInIHwgJ2NvbnRyYXN0JyB8IHVuZGVmaW5lZDsiXX0=
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Component, Output, EventEmitter, input } from '@angular/core';
|
|
2
|
+
import { TagModule } from 'primeng/tag';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "primeng/tag";
|
|
5
|
+
export class ArilTagComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.severity = input('success');
|
|
8
|
+
this.value = input('');
|
|
9
|
+
this.icon = input('');
|
|
10
|
+
this.styleClass = input('');
|
|
11
|
+
this.style = input({});
|
|
12
|
+
this.onClick = new EventEmitter();
|
|
13
|
+
this.onClose = new EventEmitter();
|
|
14
|
+
}
|
|
15
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ArilTagComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
16
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "17.1.2", type: ArilTagComponent, isStandalone: true, selector: "aril-tag", inputs: { severity: { classPropertyName: "severity", publicName: "severity", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, styleClass: { classPropertyName: "styleClass", publicName: "styleClass", isSignal: true, isRequired: false, transformFunction: null }, style: { classPropertyName: "style", publicName: "style", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onClick: "onClick", onClose: "onClose" }, ngImport: i0, template: "<p-tag\r\n [severity]=\"severity()\"\r\n [value]=\"value()\"\r\n [icon]=\"icon()\"\r\n [styleClass]=\"styleClass()\"\r\n [style]=\"style()\"\r\n (onClick)=\"onClick.emit($event)\"\r\n (onClose)=\"onClose.emit($event)\"\r\n>\r\n <ng-content></ng-content>\r\n</p-tag>", dependencies: [{ kind: "ngmodule", type: TagModule }, { kind: "component", type: i1.Tag, selector: "p-tag", inputs: ["style", "styleClass", "severity", "value", "icon", "rounded"] }] }); }
|
|
17
|
+
}
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ArilTagComponent, decorators: [{
|
|
19
|
+
type: Component,
|
|
20
|
+
args: [{ standalone: true, selector: 'aril-tag', imports: [TagModule], template: "<p-tag\r\n [severity]=\"severity()\"\r\n [value]=\"value()\"\r\n [icon]=\"icon()\"\r\n [styleClass]=\"styleClass()\"\r\n [style]=\"style()\"\r\n (onClick)=\"onClick.emit($event)\"\r\n (onClose)=\"onClose.emit($event)\"\r\n>\r\n <ng-content></ng-content>\r\n</p-tag>" }]
|
|
21
|
+
}], propDecorators: { onClick: [{
|
|
22
|
+
type: Output
|
|
23
|
+
}], onClose: [{
|
|
24
|
+
type: Output
|
|
25
|
+
}] } });
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFnLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FyaWwvdWkvdGFnL3NyYy90YWcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC91aS90YWcvc3JjL3RhZy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxhQUFhLENBQUM7OztBQVN4QyxNQUFNLE9BQU8sZ0JBQWdCO0lBTjdCO1FBT0csYUFBUSxHQUFHLEtBQUssQ0FBc0IsU0FBUyxDQUFDLENBQUM7UUFDakQsVUFBSyxHQUFHLEtBQUssQ0FBUyxFQUFFLENBQUMsQ0FBQztRQUMxQixTQUFJLEdBQUcsS0FBSyxDQUFTLEVBQUUsQ0FBQyxDQUFDO1FBQ3pCLGVBQVUsR0FBRyxLQUFLLENBQVMsRUFBRSxDQUFDLENBQUM7UUFDL0IsVUFBSyxHQUFHLEtBQUssQ0FBMEIsRUFBRSxDQUFDLENBQUM7UUFFbEMsWUFBTyxHQUFzQixJQUFJLFlBQVksRUFBRSxDQUFDO1FBQ2hELFlBQU8sR0FBc0IsSUFBSSxZQUFZLEVBQUUsQ0FBQztLQUMzRDs4R0FUWSxnQkFBZ0I7a0dBQWhCLGdCQUFnQixrdkJDVjdCLG1SQVVRLDJDREZJLFNBQVM7OzJGQUVSLGdCQUFnQjtrQkFONUIsU0FBUztpQ0FDSSxJQUFJLFlBQ04sVUFBVSxXQUVYLENBQUMsU0FBUyxDQUFFOzhCQVNYLE9BQU87c0JBQWhCLE1BQU07Z0JBQ0csT0FBTztzQkFBaEIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT3V0cHV0LCBFdmVudEVtaXR0ZXIsIGlucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFRhZ01vZHVsZSB9IGZyb20gJ3ByaW1lbmcvdGFnJztcclxuaW1wb3J0ICogYXMgSW50ZXJmYWNlcyBmcm9tICcuL2ludGVyZmFjZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIHNlbGVjdG9yOiAnYXJpbC10YWcnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi90YWcuY29tcG9uZW50Lmh0bWwnLFxyXG4gIGltcG9ydHM6IFtUYWdNb2R1bGUgXSxcclxufSlcclxuZXhwb3J0IGNsYXNzIEFyaWxUYWdDb21wb25lbnQge1xyXG4gICBzZXZlcml0eSA9IGlucHV0PEludGVyZmFjZXMuU2V2ZXJpdHk+KCdzdWNjZXNzJyk7XHJcbiAgIHZhbHVlID0gaW5wdXQ8c3RyaW5nPignJyk7XHJcbiAgIGljb24gPSBpbnB1dDxzdHJpbmc+KCcnKTtcclxuICAgc3R5bGVDbGFzcyA9IGlucHV0PHN0cmluZz4oJycpO1xyXG4gICBzdHlsZSA9IGlucHV0PHsgW2tleTogc3RyaW5nXTogYW55OyB9Pih7fSk7XHJcblxyXG4gIEBPdXRwdXQoKSBvbkNsaWNrOiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcclxuICBAT3V0cHV0KCkgb25DbG9zZTogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcbn0iLCI8cC10YWdcclxuICBbc2V2ZXJpdHldPVwic2V2ZXJpdHkoKVwiXHJcbiAgW3ZhbHVlXT1cInZhbHVlKClcIlxyXG4gIFtpY29uXT1cImljb24oKVwiXHJcbiAgW3N0eWxlQ2xhc3NdPVwic3R5bGVDbGFzcygpXCJcclxuICBbc3R5bGVdPVwic3R5bGUoKVwiXHJcbiAgKG9uQ2xpY2spPVwib25DbGljay5lbWl0KCRldmVudClcIlxyXG4gIChvbkNsb3NlKT1cIm9uQ2xvc2UuZW1pdCgkZXZlbnQpXCJcclxuPlxyXG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cclxuPC9wLXRhZz4iXX0=
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component,
|
|
2
|
-
import {
|
|
1
|
+
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
|
|
2
|
+
import { RouterLink } from '@angular/router';
|
|
3
3
|
import { DetailedOverlayPanelComponent } from 'aril/ui-business/detailed-overlay-panel';
|
|
4
4
|
import { ValueComponent } from 'aril/ui/value';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -8,37 +8,12 @@ export class RefValueComponent {
|
|
|
8
8
|
this.assetId = input.required();
|
|
9
9
|
this.valueDesc = input.required();
|
|
10
10
|
this.detailPageUrl = input.required();
|
|
11
|
-
this.getCurrentAppName = computed(() => {
|
|
12
|
-
let appName = '';
|
|
13
|
-
const host = globalThis.activeHost;
|
|
14
|
-
if (host) {
|
|
15
|
-
switch (host) {
|
|
16
|
-
case Apps.YEAP:
|
|
17
|
-
appName = Apps.YEAP;
|
|
18
|
-
break;
|
|
19
|
-
case Apps.LENA:
|
|
20
|
-
appName = Apps.LENA;
|
|
21
|
-
break;
|
|
22
|
-
case Apps.THOR:
|
|
23
|
-
appName = Apps.THOR;
|
|
24
|
-
break;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
else {
|
|
28
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
29
|
-
appName = this.detailPageUrl()?.split('/')?.at(0);
|
|
30
|
-
}
|
|
31
|
-
return appName;
|
|
32
|
-
});
|
|
33
|
-
}
|
|
34
|
-
get url() {
|
|
35
|
-
return `${globalThis.location.host}/html/${this.getCurrentAppName()}/#/`;
|
|
36
11
|
}
|
|
37
12
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: RefValueComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
38
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: RefValueComponent, isStandalone: true, selector: "aril-ref-value", inputs: { assetId: { classPropertyName: "assetId", publicName: "assetId", isSignal: true, isRequired: true, transformFunction: null }, valueDesc: { classPropertyName: "valueDesc", publicName: "valueDesc", isSignal: true, isRequired: true, transformFunction: null }, detailPageUrl: { classPropertyName: "detailPageUrl", publicName: "detailPageUrl", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "@if(detailPageUrl() && valueDesc() && assetId()) {\r\n\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t<a [
|
|
13
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: RefValueComponent, isStandalone: true, selector: "aril-ref-value", inputs: { assetId: { classPropertyName: "assetId", publicName: "assetId", isSignal: true, isRequired: true, transformFunction: null }, valueDesc: { classPropertyName: "valueDesc", publicName: "valueDesc", isSignal: true, isRequired: true, transformFunction: null }, detailPageUrl: { classPropertyName: "detailPageUrl", publicName: "detailPageUrl", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t<a [routerLink]=\"'/' + detailPageUrl() + '/' + assetId()\">\r\n\t\t\t<aril-value [isClickable]=\"true\" type=\"text\" [model]=\"valueDesc()\" />\r\n\t\t</a>\r\n\t</aril-detailed-oveylay-panel>\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"valueDesc() ? valueDesc() : assetId()\" />\r\n}\r\n", dependencies: [{ kind: "component", type: ValueComponent, selector: "aril-value", inputs: ["model", "type", "format", "color", "isClickable", "groupName", "parentSelectionKey", "isTextClamp", "style", "arrayTypeDisplayName", "arrayTypeMaxBadgeCount"] }, { kind: "component", type: DetailedOverlayPanelComponent, selector: "aril-detailed-oveylay-panel", inputs: ["assetId", "style", "styleClass", "columns"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
39
14
|
}
|
|
40
15
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: RefValueComponent, decorators: [{
|
|
41
16
|
type: Component,
|
|
42
|
-
args: [{ standalone: true, selector: 'aril-ref-value', imports: [ValueComponent, DetailedOverlayPanelComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if(detailPageUrl() && valueDesc() && assetId()) {\r\n\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t<a [
|
|
17
|
+
args: [{ standalone: true, selector: 'aril-ref-value', imports: [ValueComponent, DetailedOverlayPanelComponent, RouterLink], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t<a [routerLink]=\"'/' + detailPageUrl() + '/' + assetId()\">\r\n\t\t\t<aril-value [isClickable]=\"true\" type=\"text\" [model]=\"valueDesc()\" />\r\n\t\t</a>\r\n\t</aril-detailed-oveylay-panel>\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"valueDesc() ? valueDesc() : assetId()\" />\r\n}\r\n" }]
|
|
43
18
|
}] });
|
|
44
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVmLXZhbHVlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FyaWwvdWktYnVzaW5lc3MvcmVmLXZhbHVlL3NyYy9yZWYtdmFsdWUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC91aS1idXNpbmVzcy9yZWYtdmFsdWUvc3JjL3JlZi12YWx1ZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFN0MsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDeEYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFXL0MsTUFBTSxPQUFPLGlCQUFpQjtJQVA5QjtRQVFDLFlBQU8sR0FBRyxLQUFLLENBQUMsUUFBUSxFQUFTLENBQUM7UUFDbEMsY0FBUyxHQUFHLEtBQUssQ0FBQyxRQUFRLEVBQVUsQ0FBQztRQUNyQyxrQkFBYSxHQUFHLEtBQUssQ0FBQyxRQUFRLEVBQXNCLENBQUM7S0FDckQ7OEdBSlksaUJBQWlCO2tHQUFqQixpQkFBaUIscWVDZjlCLG1hQVNBLDRDREdXLGNBQWMsaU9BQUUsNkJBQTZCLCtIQUFFLFVBQVU7OzJGQUd2RCxpQkFBaUI7a0JBUDdCLFNBQVM7aUNBQ0csSUFBSSxZQUNOLGdCQUFnQixXQUVqQixDQUFDLGNBQWMsRUFBRSw2QkFBNkIsRUFBRSxVQUFVLENBQUMsbUJBQ25ELHVCQUF1QixDQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBSb3V0ZXJMaW5rIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuXHJcbmltcG9ydCB7IERldGFpbGVkT3ZlcmxheVBhbmVsQ29tcG9uZW50IH0gZnJvbSAnYXJpbC91aS1idXNpbmVzcy9kZXRhaWxlZC1vdmVybGF5LXBhbmVsJztcclxuaW1wb3J0IHsgVmFsdWVDb21wb25lbnQgfSBmcm9tICdhcmlsL3VpL3ZhbHVlJztcclxuXHJcbmludGVyZmFjZSBWYWx1ZSB7fVxyXG5cclxuQENvbXBvbmVudCh7XHJcblx0c3RhbmRhbG9uZTogdHJ1ZSxcclxuXHRzZWxlY3RvcjogJ2FyaWwtcmVmLXZhbHVlJyxcclxuXHR0ZW1wbGF0ZVVybDogJy4vcmVmLXZhbHVlLmNvbXBvbmVudC5odG1sJyxcclxuXHRpbXBvcnRzOiBbVmFsdWVDb21wb25lbnQsIERldGFpbGVkT3ZlcmxheVBhbmVsQ29tcG9uZW50LCBSb3V0ZXJMaW5rXSxcclxuXHRjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxyXG59KVxyXG5leHBvcnQgY2xhc3MgUmVmVmFsdWVDb21wb25lbnQge1xyXG5cdGFzc2V0SWQgPSBpbnB1dC5yZXF1aXJlZDxWYWx1ZT4oKTtcclxuXHR2YWx1ZURlc2MgPSBpbnB1dC5yZXF1aXJlZDxzdHJpbmc+KCk7XHJcblx0ZGV0YWlsUGFnZVVybCA9IGlucHV0LnJlcXVpcmVkPHN0cmluZyB8IHVuZGVmaW5lZD4oKTtcclxufVxyXG4iLCJAaWYgKGRldGFpbFBhZ2VVcmwoKSAmJiB2YWx1ZURlc2MoKSAmJiBhc3NldElkKCkpIHtcclxuXHQ8YXJpbC1kZXRhaWxlZC1vdmV5bGF5LXBhbmVsIFthc3NldElkXT1cImFzc2V0SWQoKVwiPlxyXG5cdFx0PGEgW3JvdXRlckxpbmtdPVwiJy8nICsgZGV0YWlsUGFnZVVybCgpICsgJy8nICsgYXNzZXRJZCgpXCI+XHJcblx0XHRcdDxhcmlsLXZhbHVlIFtpc0NsaWNrYWJsZV09XCJ0cnVlXCIgdHlwZT1cInRleHRcIiBbbW9kZWxdPVwidmFsdWVEZXNjKClcIiAvPlxyXG5cdFx0PC9hPlxyXG5cdDwvYXJpbC1kZXRhaWxlZC1vdmV5bGF5LXBhbmVsPlxyXG59IEBlbHNlIHtcclxuXHQ8YXJpbC12YWx1ZSB0eXBlPVwidGV4dFwiIFttb2RlbF09XCJ2YWx1ZURlc2MoKSA/IHZhbHVlRGVzYygpIDogYXNzZXRJZCgpXCIgLz5cclxufVxyXG4iXX0=
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { input,
|
|
3
|
-
import {
|
|
2
|
+
import { input, Component, ChangeDetectionStrategy } from '@angular/core';
|
|
3
|
+
import { RouterLink } from '@angular/router';
|
|
4
4
|
import { DetailedOverlayPanelComponent } from 'aril/ui-business/detailed-overlay-panel';
|
|
5
5
|
import { ValueComponent } from 'aril/ui/value';
|
|
6
6
|
|
|
@@ -9,38 +9,13 @@ class RefValueComponent {
|
|
|
9
9
|
this.assetId = input.required();
|
|
10
10
|
this.valueDesc = input.required();
|
|
11
11
|
this.detailPageUrl = input.required();
|
|
12
|
-
this.getCurrentAppName = computed(() => {
|
|
13
|
-
let appName = '';
|
|
14
|
-
const host = globalThis.activeHost;
|
|
15
|
-
if (host) {
|
|
16
|
-
switch (host) {
|
|
17
|
-
case Apps.YEAP:
|
|
18
|
-
appName = Apps.YEAP;
|
|
19
|
-
break;
|
|
20
|
-
case Apps.LENA:
|
|
21
|
-
appName = Apps.LENA;
|
|
22
|
-
break;
|
|
23
|
-
case Apps.THOR:
|
|
24
|
-
appName = Apps.THOR;
|
|
25
|
-
break;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
else {
|
|
29
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
30
|
-
appName = this.detailPageUrl()?.split('/')?.at(0);
|
|
31
|
-
}
|
|
32
|
-
return appName;
|
|
33
|
-
});
|
|
34
|
-
}
|
|
35
|
-
get url() {
|
|
36
|
-
return `${globalThis.location.host}/html/${this.getCurrentAppName()}/#/`;
|
|
37
12
|
}
|
|
38
13
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: RefValueComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
39
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: RefValueComponent, isStandalone: true, selector: "aril-ref-value", inputs: { assetId: { classPropertyName: "assetId", publicName: "assetId", isSignal: true, isRequired: true, transformFunction: null }, valueDesc: { classPropertyName: "valueDesc", publicName: "valueDesc", isSignal: true, isRequired: true, transformFunction: null }, detailPageUrl: { classPropertyName: "detailPageUrl", publicName: "detailPageUrl", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "@if(detailPageUrl() && valueDesc() && assetId()) {\r\n\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t<a [
|
|
14
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: RefValueComponent, isStandalone: true, selector: "aril-ref-value", inputs: { assetId: { classPropertyName: "assetId", publicName: "assetId", isSignal: true, isRequired: true, transformFunction: null }, valueDesc: { classPropertyName: "valueDesc", publicName: "valueDesc", isSignal: true, isRequired: true, transformFunction: null }, detailPageUrl: { classPropertyName: "detailPageUrl", publicName: "detailPageUrl", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t<a [routerLink]=\"'/' + detailPageUrl() + '/' + assetId()\">\r\n\t\t\t<aril-value [isClickable]=\"true\" type=\"text\" [model]=\"valueDesc()\" />\r\n\t\t</a>\r\n\t</aril-detailed-oveylay-panel>\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"valueDesc() ? valueDesc() : assetId()\" />\r\n}\r\n", dependencies: [{ kind: "component", type: ValueComponent, selector: "aril-value", inputs: ["model", "type", "format", "color", "isClickable", "groupName", "parentSelectionKey", "isTextClamp", "style", "arrayTypeDisplayName", "arrayTypeMaxBadgeCount"] }, { kind: "component", type: DetailedOverlayPanelComponent, selector: "aril-detailed-oveylay-panel", inputs: ["assetId", "style", "styleClass", "columns"] }, { kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
40
15
|
}
|
|
41
16
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: RefValueComponent, decorators: [{
|
|
42
17
|
type: Component,
|
|
43
|
-
args: [{ standalone: true, selector: 'aril-ref-value', imports: [ValueComponent, DetailedOverlayPanelComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if(detailPageUrl() && valueDesc() && assetId()) {\r\n\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t<a [
|
|
18
|
+
args: [{ standalone: true, selector: 'aril-ref-value', imports: [ValueComponent, DetailedOverlayPanelComponent, RouterLink], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t<a [routerLink]=\"'/' + detailPageUrl() + '/' + assetId()\">\r\n\t\t\t<aril-value [isClickable]=\"true\" type=\"text\" [model]=\"valueDesc()\" />\r\n\t\t</a>\r\n\t</aril-detailed-oveylay-panel>\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"valueDesc() ? valueDesc() : assetId()\" />\r\n}\r\n" }]
|
|
44
19
|
}] });
|
|
45
20
|
|
|
46
21
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aril-ui-business-ref-value.mjs","sources":["../../projects/aril/ui-business/ref-value/src/ref-value.component.ts","../../projects/aril/ui-business/ref-value/src/ref-value.component.html","../../projects/aril/ui-business/ref-value/aril-ui-business-ref-value.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component,
|
|
1
|
+
{"version":3,"file":"aril-ui-business-ref-value.mjs","sources":["../../projects/aril/ui-business/ref-value/src/ref-value.component.ts","../../projects/aril/ui-business/ref-value/src/ref-value.component.html","../../projects/aril/ui-business/ref-value/aril-ui-business-ref-value.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, input } from '@angular/core';\r\nimport { RouterLink } from '@angular/router';\r\n\r\nimport { DetailedOverlayPanelComponent } from 'aril/ui-business/detailed-overlay-panel';\r\nimport { ValueComponent } from 'aril/ui/value';\r\n\r\ninterface Value {}\r\n\r\n@Component({\r\n\tstandalone: true,\r\n\tselector: 'aril-ref-value',\r\n\ttemplateUrl: './ref-value.component.html',\r\n\timports: [ValueComponent, DetailedOverlayPanelComponent, RouterLink],\r\n\tchangeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class RefValueComponent {\r\n\tassetId = input.required<Value>();\r\n\tvalueDesc = input.required<string>();\r\n\tdetailPageUrl = input.required<string | undefined>();\r\n}\r\n","@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t<a [routerLink]=\"'/' + detailPageUrl() + '/' + assetId()\">\r\n\t\t\t<aril-value [isClickable]=\"true\" type=\"text\" [model]=\"valueDesc()\" />\r\n\t\t</a>\r\n\t</aril-detailed-oveylay-panel>\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"valueDesc() ? valueDesc() : assetId()\" />\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;MAea,iBAAiB,CAAA;AAP9B,IAAA,WAAA,GAAA;AAQC,QAAA,IAAA,CAAA,OAAO,GAAG,KAAK,CAAC,QAAQ,EAAS,CAAC;AAClC,QAAA,IAAA,CAAA,SAAS,GAAG,KAAK,CAAC,QAAQ,EAAU,CAAC;AACrC,QAAA,IAAA,CAAA,aAAa,GAAG,KAAK,CAAC,QAAQ,EAAsB,CAAC;AACrD,KAAA;8GAJY,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAjB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,iBAAiB,qeCf9B,maASA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EDGW,cAAc,EAAE,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,WAAA,EAAA,oBAAA,EAAA,aAAA,EAAA,OAAA,EAAA,sBAAA,EAAA,wBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,6BAA6B,+HAAE,UAAU,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,CAAA,QAAA,EAAA,aAAA,EAAA,UAAA,EAAA,qBAAA,EAAA,OAAA,EAAA,MAAA,EAAA,YAAA,EAAA,kBAAA,EAAA,oBAAA,EAAA,YAAA,EAAA,YAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA,EAAA;;2FAGvD,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAP7B,SAAS;AACG,YAAA,IAAA,EAAA,CAAA,EAAA,UAAA,EAAA,IAAI,EACN,QAAA,EAAA,gBAAgB,EAEjB,OAAA,EAAA,CAAC,cAAc,EAAE,6BAA6B,EAAE,UAAU,CAAC,EACnD,eAAA,EAAA,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,maAAA,EAAA,CAAA;;;AEbhD;;AAEG;;;;"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, EventEmitter, Component, Output } from '@angular/core';
|
|
3
|
+
import * as i1 from 'primeng/tag';
|
|
4
|
+
import { TagModule } from 'primeng/tag';
|
|
5
|
+
|
|
6
|
+
class ArilTagComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.severity = input('success');
|
|
9
|
+
this.value = input('');
|
|
10
|
+
this.icon = input('');
|
|
11
|
+
this.styleClass = input('');
|
|
12
|
+
this.style = input({});
|
|
13
|
+
this.onClick = new EventEmitter();
|
|
14
|
+
this.onClose = new EventEmitter();
|
|
15
|
+
}
|
|
16
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ArilTagComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
17
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "17.1.2", type: ArilTagComponent, isStandalone: true, selector: "aril-tag", inputs: { severity: { classPropertyName: "severity", publicName: "severity", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, styleClass: { classPropertyName: "styleClass", publicName: "styleClass", isSignal: true, isRequired: false, transformFunction: null }, style: { classPropertyName: "style", publicName: "style", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onClick: "onClick", onClose: "onClose" }, ngImport: i0, template: "<p-tag\r\n [severity]=\"severity()\"\r\n [value]=\"value()\"\r\n [icon]=\"icon()\"\r\n [styleClass]=\"styleClass()\"\r\n [style]=\"style()\"\r\n (onClick)=\"onClick.emit($event)\"\r\n (onClose)=\"onClose.emit($event)\"\r\n>\r\n <ng-content></ng-content>\r\n</p-tag>", dependencies: [{ kind: "ngmodule", type: TagModule }, { kind: "component", type: i1.Tag, selector: "p-tag", inputs: ["style", "styleClass", "severity", "value", "icon", "rounded"] }] }); }
|
|
18
|
+
}
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: ArilTagComponent, decorators: [{
|
|
20
|
+
type: Component,
|
|
21
|
+
args: [{ standalone: true, selector: 'aril-tag', imports: [TagModule], template: "<p-tag\r\n [severity]=\"severity()\"\r\n [value]=\"value()\"\r\n [icon]=\"icon()\"\r\n [styleClass]=\"styleClass()\"\r\n [style]=\"style()\"\r\n (onClick)=\"onClick.emit($event)\"\r\n (onClose)=\"onClose.emit($event)\"\r\n>\r\n <ng-content></ng-content>\r\n</p-tag>" }]
|
|
22
|
+
}], propDecorators: { onClick: [{
|
|
23
|
+
type: Output
|
|
24
|
+
}], onClose: [{
|
|
25
|
+
type: Output
|
|
26
|
+
}] } });
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Generated bundle index. Do not edit.
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
export { ArilTagComponent };
|
|
33
|
+
//# sourceMappingURL=aril-ui-tag.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"aril-ui-tag.mjs","sources":["../../projects/aril/ui/tag/src/tag.component.ts","../../projects/aril/ui/tag/src/tag.component.html","../../projects/aril/ui/tag/aril-ui-tag.ts"],"sourcesContent":["import { Component, Output, EventEmitter, input } from '@angular/core';\r\nimport { TagModule } from 'primeng/tag';\r\nimport * as Interfaces from './interface';\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'aril-tag',\r\n templateUrl: './tag.component.html',\r\n imports: [TagModule ],\r\n})\r\nexport class ArilTagComponent {\r\n severity = input<Interfaces.Severity>('success');\r\n value = input<string>('');\r\n icon = input<string>('');\r\n styleClass = input<string>('');\r\n style = input<{ [key: string]: any; }>({});\r\n\r\n @Output() onClick: EventEmitter<any> = new EventEmitter();\r\n @Output() onClose: EventEmitter<any> = new EventEmitter();\r\n}","<p-tag\r\n [severity]=\"severity()\"\r\n [value]=\"value()\"\r\n [icon]=\"icon()\"\r\n [styleClass]=\"styleClass()\"\r\n [style]=\"style()\"\r\n (onClick)=\"onClick.emit($event)\"\r\n (onClose)=\"onClose.emit($event)\"\r\n>\r\n <ng-content></ng-content>\r\n</p-tag>","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;MAUa,gBAAgB,CAAA;AAN7B,IAAA,WAAA,GAAA;AAOG,QAAA,IAAA,CAAA,QAAQ,GAAG,KAAK,CAAsB,SAAS,CAAC,CAAC;AACjD,QAAA,IAAA,CAAA,KAAK,GAAG,KAAK,CAAS,EAAE,CAAC,CAAC;AAC1B,QAAA,IAAA,CAAA,IAAI,GAAG,KAAK,CAAS,EAAE,CAAC,CAAC;AACzB,QAAA,IAAA,CAAA,UAAU,GAAG,KAAK,CAAS,EAAE,CAAC,CAAC;AAC/B,QAAA,IAAA,CAAA,KAAK,GAAG,KAAK,CAA0B,EAAE,CAAC,CAAC;AAElC,QAAA,IAAA,CAAA,OAAO,GAAsB,IAAI,YAAY,EAAE,CAAC;AAChD,QAAA,IAAA,CAAA,OAAO,GAAsB,IAAI,YAAY,EAAE,CAAC;AAC3D,KAAA;8GATY,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;kGAAhB,gBAAgB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,EAAA,QAAA,EAAA,EAAA,iBAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,KAAA,EAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,IAAA,EAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,UAAA,EAAA,EAAA,iBAAA,EAAA,YAAA,EAAA,UAAA,EAAA,YAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,KAAA,EAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,OAAA,EAAA,EAAA,OAAA,EAAA,SAAA,EAAA,OAAA,EAAA,SAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECV7B,mRAUQ,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDFI,SAAS,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,GAAA,EAAA,QAAA,EAAA,OAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,YAAA,EAAA,UAAA,EAAA,OAAA,EAAA,MAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAER,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAN5B,SAAS;AACI,YAAA,IAAA,EAAA,CAAA,EAAA,UAAA,EAAA,IAAI,EACN,QAAA,EAAA,UAAU,EAEX,OAAA,EAAA,CAAC,SAAS,CAAE,EAAA,QAAA,EAAA,mRAAA,EAAA,CAAA;8BASX,OAAO,EAAA,CAAA;sBAAhB,MAAM;gBACG,OAAO,EAAA,CAAA;sBAAhB,MAAM;;;AElBT;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aril",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.41",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "~17.1.0",
|
|
6
6
|
"@angular/common": "^17.1.0",
|
|
@@ -44,12 +44,6 @@
|
|
|
44
44
|
"esm": "./esm2022/boot/aril-boot.mjs",
|
|
45
45
|
"default": "./fesm2022/aril-boot.mjs"
|
|
46
46
|
},
|
|
47
|
-
"./http": {
|
|
48
|
-
"types": "./http/index.d.ts",
|
|
49
|
-
"esm2022": "./esm2022/http/aril-http.mjs",
|
|
50
|
-
"esm": "./esm2022/http/aril-http.mjs",
|
|
51
|
-
"default": "./fesm2022/aril-http.mjs"
|
|
52
|
-
},
|
|
53
47
|
"./keycloak": {
|
|
54
48
|
"types": "./keycloak/index.d.ts",
|
|
55
49
|
"esm2022": "./esm2022/keycloak/aril-keycloak.mjs",
|
|
@@ -62,6 +56,12 @@
|
|
|
62
56
|
"esm": "./esm2022/i18n/aril-i18n.mjs",
|
|
63
57
|
"default": "./fesm2022/aril-i18n.mjs"
|
|
64
58
|
},
|
|
59
|
+
"./http": {
|
|
60
|
+
"types": "./http/index.d.ts",
|
|
61
|
+
"esm2022": "./esm2022/http/aril-http.mjs",
|
|
62
|
+
"esm": "./esm2022/http/aril-http.mjs",
|
|
63
|
+
"default": "./fesm2022/aril-http.mjs"
|
|
64
|
+
},
|
|
65
65
|
"./theme": {
|
|
66
66
|
"types": "./theme/index.d.ts",
|
|
67
67
|
"esm2022": "./esm2022/theme/aril-theme.mjs",
|
|
@@ -128,30 +128,30 @@
|
|
|
128
128
|
"esm": "./esm2022/ui/calendar/aril-ui-calendar.mjs",
|
|
129
129
|
"default": "./fesm2022/aril-ui-calendar.mjs"
|
|
130
130
|
},
|
|
131
|
-
"./ui/charts": {
|
|
132
|
-
"types": "./ui/charts/index.d.ts",
|
|
133
|
-
"esm2022": "./esm2022/ui/charts/aril-ui-charts.mjs",
|
|
134
|
-
"esm": "./esm2022/ui/charts/aril-ui-charts.mjs",
|
|
135
|
-
"default": "./fesm2022/aril-ui-charts.mjs"
|
|
136
|
-
},
|
|
137
|
-
"./ui/checkbox": {
|
|
138
|
-
"types": "./ui/checkbox/index.d.ts",
|
|
139
|
-
"esm2022": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
140
|
-
"esm": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
141
|
-
"default": "./fesm2022/aril-ui-checkbox.mjs"
|
|
142
|
-
},
|
|
143
131
|
"./ui/chip": {
|
|
144
132
|
"types": "./ui/chip/index.d.ts",
|
|
145
133
|
"esm2022": "./esm2022/ui/chip/aril-ui-chip.mjs",
|
|
146
134
|
"esm": "./esm2022/ui/chip/aril-ui-chip.mjs",
|
|
147
135
|
"default": "./fesm2022/aril-ui-chip.mjs"
|
|
148
136
|
},
|
|
137
|
+
"./ui/charts": {
|
|
138
|
+
"types": "./ui/charts/index.d.ts",
|
|
139
|
+
"esm2022": "./esm2022/ui/charts/aril-ui-charts.mjs",
|
|
140
|
+
"esm": "./esm2022/ui/charts/aril-ui-charts.mjs",
|
|
141
|
+
"default": "./fesm2022/aril-ui-charts.mjs"
|
|
142
|
+
},
|
|
149
143
|
"./ui/detailed-overlay-panel": {
|
|
150
144
|
"types": "./ui/detailed-overlay-panel/index.d.ts",
|
|
151
145
|
"esm2022": "./esm2022/ui/detailed-overlay-panel/aril-ui-detailed-overlay-panel.mjs",
|
|
152
146
|
"esm": "./esm2022/ui/detailed-overlay-panel/aril-ui-detailed-overlay-panel.mjs",
|
|
153
147
|
"default": "./fesm2022/aril-ui-detailed-overlay-panel.mjs"
|
|
154
148
|
},
|
|
149
|
+
"./ui/checkbox": {
|
|
150
|
+
"types": "./ui/checkbox/index.d.ts",
|
|
151
|
+
"esm2022": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
152
|
+
"esm": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
153
|
+
"default": "./fesm2022/aril-ui-checkbox.mjs"
|
|
154
|
+
},
|
|
155
155
|
"./ui/dxEditor": {
|
|
156
156
|
"types": "./ui/dxEditor/index.d.ts",
|
|
157
157
|
"esm2022": "./esm2022/ui/dxEditor/aril-ui-dxEditor.mjs",
|
|
@@ -176,12 +176,6 @@
|
|
|
176
176
|
"esm": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
177
177
|
"default": "./fesm2022/aril-ui-fileUpload.mjs"
|
|
178
178
|
},
|
|
179
|
-
"./ui/form": {
|
|
180
|
-
"types": "./ui/form/index.d.ts",
|
|
181
|
-
"esm2022": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
182
|
-
"esm": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
183
|
-
"default": "./fesm2022/aril-ui-form.mjs"
|
|
184
|
-
},
|
|
185
179
|
"./ui/img-viewer": {
|
|
186
180
|
"types": "./ui/img-viewer/index.d.ts",
|
|
187
181
|
"esm2022": "./esm2022/ui/img-viewer/aril-ui-img-viewer.mjs",
|
|
@@ -194,12 +188,24 @@
|
|
|
194
188
|
"esm": "./esm2022/ui/lib/aril-ui-lib.mjs",
|
|
195
189
|
"default": "./fesm2022/aril-ui-lib.mjs"
|
|
196
190
|
},
|
|
191
|
+
"./ui/form": {
|
|
192
|
+
"types": "./ui/form/index.d.ts",
|
|
193
|
+
"esm2022": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
194
|
+
"esm": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
195
|
+
"default": "./fesm2022/aril-ui-form.mjs"
|
|
196
|
+
},
|
|
197
197
|
"./ui/loader": {
|
|
198
198
|
"types": "./ui/loader/index.d.ts",
|
|
199
199
|
"esm2022": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
200
200
|
"esm": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
201
201
|
"default": "./fesm2022/aril-ui-loader.mjs"
|
|
202
202
|
},
|
|
203
|
+
"./ui/multiSelect": {
|
|
204
|
+
"types": "./ui/multiSelect/index.d.ts",
|
|
205
|
+
"esm2022": "./esm2022/ui/multiSelect/aril-ui-multiSelect.mjs",
|
|
206
|
+
"esm": "./esm2022/ui/multiSelect/aril-ui-multiSelect.mjs",
|
|
207
|
+
"default": "./fesm2022/aril-ui-multiSelect.mjs"
|
|
208
|
+
},
|
|
203
209
|
"./ui/mask": {
|
|
204
210
|
"types": "./ui/mask/index.d.ts",
|
|
205
211
|
"esm2022": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
@@ -212,12 +218,6 @@
|
|
|
212
218
|
"esm": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
213
219
|
"default": "./fesm2022/aril-ui-number.mjs"
|
|
214
220
|
},
|
|
215
|
-
"./ui/multiSelect": {
|
|
216
|
-
"types": "./ui/multiSelect/index.d.ts",
|
|
217
|
-
"esm2022": "./esm2022/ui/multiSelect/aril-ui-multiSelect.mjs",
|
|
218
|
-
"esm": "./esm2022/ui/multiSelect/aril-ui-multiSelect.mjs",
|
|
219
|
-
"default": "./fesm2022/aril-ui-multiSelect.mjs"
|
|
220
|
-
},
|
|
221
221
|
"./ui/operation-types-dialog": {
|
|
222
222
|
"types": "./ui/operation-types-dialog/index.d.ts",
|
|
223
223
|
"esm2022": "./esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs",
|
|
@@ -248,18 +248,18 @@
|
|
|
248
248
|
"esm": "./esm2022/ui/pdf-viewer/aril-ui-pdf-viewer.mjs",
|
|
249
249
|
"default": "./fesm2022/aril-ui-pdf-viewer.mjs"
|
|
250
250
|
},
|
|
251
|
-
"./ui/radioButton": {
|
|
252
|
-
"types": "./ui/radioButton/index.d.ts",
|
|
253
|
-
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
254
|
-
"esm": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
255
|
-
"default": "./fesm2022/aril-ui-radioButton.mjs"
|
|
256
|
-
},
|
|
257
251
|
"./ui/progressbar": {
|
|
258
252
|
"types": "./ui/progressbar/index.d.ts",
|
|
259
253
|
"esm2022": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
260
254
|
"esm": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
261
255
|
"default": "./fesm2022/aril-ui-progressbar.mjs"
|
|
262
256
|
},
|
|
257
|
+
"./ui/radioButton": {
|
|
258
|
+
"types": "./ui/radioButton/index.d.ts",
|
|
259
|
+
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
260
|
+
"esm": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
261
|
+
"default": "./fesm2022/aril-ui-radioButton.mjs"
|
|
262
|
+
},
|
|
263
263
|
"./ui/rolePicker": {
|
|
264
264
|
"types": "./ui/rolePicker/index.d.ts",
|
|
265
265
|
"esm2022": "./esm2022/ui/rolePicker/aril-ui-rolePicker.mjs",
|
|
@@ -284,6 +284,12 @@
|
|
|
284
284
|
"esm": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
285
285
|
"default": "./fesm2022/aril-ui-switch.mjs"
|
|
286
286
|
},
|
|
287
|
+
"./ui/tag": {
|
|
288
|
+
"types": "./ui/tag/index.d.ts",
|
|
289
|
+
"esm2022": "./esm2022/ui/tag/aril-ui-tag.mjs",
|
|
290
|
+
"esm": "./esm2022/ui/tag/aril-ui-tag.mjs",
|
|
291
|
+
"default": "./fesm2022/aril-ui-tag.mjs"
|
|
292
|
+
},
|
|
287
293
|
"./ui/table-expand": {
|
|
288
294
|
"types": "./ui/table-expand/index.d.ts",
|
|
289
295
|
"esm2022": "./esm2022/ui/table-expand/aril-ui-table-expand.mjs",
|
|
@@ -302,18 +308,18 @@
|
|
|
302
308
|
"esm": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
303
309
|
"default": "./fesm2022/aril-ui-text.mjs"
|
|
304
310
|
},
|
|
305
|
-
"./ui/textArea": {
|
|
306
|
-
"types": "./ui/textArea/index.d.ts",
|
|
307
|
-
"esm2022": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
308
|
-
"esm": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
309
|
-
"default": "./fesm2022/aril-ui-textArea.mjs"
|
|
310
|
-
},
|
|
311
311
|
"./ui/toggle-button": {
|
|
312
312
|
"types": "./ui/toggle-button/index.d.ts",
|
|
313
313
|
"esm2022": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
314
314
|
"esm": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
315
315
|
"default": "./fesm2022/aril-ui-toggle-button.mjs"
|
|
316
316
|
},
|
|
317
|
+
"./ui/textArea": {
|
|
318
|
+
"types": "./ui/textArea/index.d.ts",
|
|
319
|
+
"esm2022": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
320
|
+
"esm": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
321
|
+
"default": "./fesm2022/aril-ui-textArea.mjs"
|
|
322
|
+
},
|
|
317
323
|
"./ui/tooltip": {
|
|
318
324
|
"types": "./ui/tooltip/index.d.ts",
|
|
319
325
|
"esm2022": "./esm2022/ui/tooltip/aril-ui-tooltip.mjs",
|
|
@@ -326,23 +332,17 @@
|
|
|
326
332
|
"esm": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
327
333
|
"default": "./fesm2022/aril-ui-tree.mjs"
|
|
328
334
|
},
|
|
329
|
-
"./ui/treeTable": {
|
|
330
|
-
"types": "./ui/treeTable/index.d.ts",
|
|
331
|
-
"esm2022": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
332
|
-
"esm": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
333
|
-
"default": "./fesm2022/aril-ui-treeTable.mjs"
|
|
334
|
-
},
|
|
335
335
|
"./ui/treeSelect": {
|
|
336
336
|
"types": "./ui/treeSelect/index.d.ts",
|
|
337
337
|
"esm2022": "./esm2022/ui/treeSelect/aril-ui-treeSelect.mjs",
|
|
338
338
|
"esm": "./esm2022/ui/treeSelect/aril-ui-treeSelect.mjs",
|
|
339
339
|
"default": "./fesm2022/aril-ui-treeSelect.mjs"
|
|
340
340
|
},
|
|
341
|
-
"./ui/
|
|
342
|
-
"types": "./ui/
|
|
343
|
-
"esm2022": "./esm2022/ui/
|
|
344
|
-
"esm": "./esm2022/ui/
|
|
345
|
-
"default": "./fesm2022/aril-ui-
|
|
341
|
+
"./ui/treeTable": {
|
|
342
|
+
"types": "./ui/treeTable/index.d.ts",
|
|
343
|
+
"esm2022": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
344
|
+
"esm": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
345
|
+
"default": "./fesm2022/aril-ui-treeTable.mjs"
|
|
346
346
|
},
|
|
347
347
|
"./ui/userPicker": {
|
|
348
348
|
"types": "./ui/userPicker/index.d.ts",
|
|
@@ -350,6 +350,12 @@
|
|
|
350
350
|
"esm": "./esm2022/ui/userPicker/aril-ui-userPicker.mjs",
|
|
351
351
|
"default": "./fesm2022/aril-ui-userPicker.mjs"
|
|
352
352
|
},
|
|
353
|
+
"./ui/value": {
|
|
354
|
+
"types": "./ui/value/index.d.ts",
|
|
355
|
+
"esm2022": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
356
|
+
"esm": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
357
|
+
"default": "./fesm2022/aril-ui-value.mjs"
|
|
358
|
+
},
|
|
353
359
|
"./ui-business/assetPicker": {
|
|
354
360
|
"types": "./ui-business/assetPicker/index.d.ts",
|
|
355
361
|
"esm2022": "./esm2022/ui-business/assetPicker/aril-ui-business-assetPicker.mjs",
|
|
@@ -392,18 +398,18 @@
|
|
|
392
398
|
"esm": "./esm2022/ui-business/userPicker/aril-ui-business-userPicker.mjs",
|
|
393
399
|
"default": "./fesm2022/aril-ui-business-userPicker.mjs"
|
|
394
400
|
},
|
|
395
|
-
"./util/custom_pages": {
|
|
396
|
-
"types": "./util/custom_pages/index.d.ts",
|
|
397
|
-
"esm2022": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
398
|
-
"esm": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
399
|
-
"default": "./fesm2022/aril-util-custom_pages.mjs"
|
|
400
|
-
},
|
|
401
401
|
"./util/block": {
|
|
402
402
|
"types": "./util/block/index.d.ts",
|
|
403
403
|
"esm2022": "./esm2022/util/block/aril-util-block.mjs",
|
|
404
404
|
"esm": "./esm2022/util/block/aril-util-block.mjs",
|
|
405
405
|
"default": "./fesm2022/aril-util-block.mjs"
|
|
406
406
|
},
|
|
407
|
+
"./util/custom_pages": {
|
|
408
|
+
"types": "./util/custom_pages/index.d.ts",
|
|
409
|
+
"esm2022": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
410
|
+
"esm": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
411
|
+
"default": "./fesm2022/aril-util-custom_pages.mjs"
|
|
412
|
+
},
|
|
407
413
|
"./util/init-event": {
|
|
408
414
|
"types": "./util/init-event/index.d.ts",
|
|
409
415
|
"esm2022": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/tag.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type Severity = 'success' | 'secondary' | 'info' | 'warning' | 'danger' | 'contrast' | undefined;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as Interfaces from './interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ArilTagComponent {
|
|
5
|
+
severity: import("@angular/core").InputSignal<Interfaces.Severity, Interfaces.Severity>;
|
|
6
|
+
value: import("@angular/core").InputSignal<string, string>;
|
|
7
|
+
icon: import("@angular/core").InputSignal<string, string>;
|
|
8
|
+
styleClass: import("@angular/core").InputSignal<string, string>;
|
|
9
|
+
style: import("@angular/core").InputSignal<{
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}, {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
}>;
|
|
14
|
+
onClick: EventEmitter<any>;
|
|
15
|
+
onClose: EventEmitter<any>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArilTagComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArilTagComponent, "aril-tag", never, { "severity": { "alias": "severity"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "styleClass": { "alias": "styleClass"; "required": false; "isSignal": true; }; "style": { "alias": "style"; "required": false; "isSignal": true; }; }, { "onClick": "onClick"; "onClose": "onClose"; }, never, ["*"], true, never>;
|
|
18
|
+
}
|
|
@@ -5,8 +5,6 @@ export declare class RefValueComponent {
|
|
|
5
5
|
assetId: import("@angular/core").InputSignal<Value, Value>;
|
|
6
6
|
valueDesc: import("@angular/core").InputSignal<string, string>;
|
|
7
7
|
detailPageUrl: import("@angular/core").InputSignal<string | undefined, string | undefined>;
|
|
8
|
-
getCurrentAppName: import("@angular/core").Signal<string | undefined>;
|
|
9
|
-
get url(): string;
|
|
10
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<RefValueComponent, never>;
|
|
11
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<RefValueComponent, "aril-ref-value", never, { "assetId": { "alias": "assetId"; "required": true; "isSignal": true; }; "valueDesc": { "alias": "valueDesc"; "required": true; "isSignal": true; }; "detailPageUrl": { "alias": "detailPageUrl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12
10
|
}
|