aril 1.2.15 → 1.2.16
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.
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, EventEmitter, Output, input } from '@angular/core';
|
|
2
|
-
import { RouterLink } from '@angular/router';
|
|
3
2
|
import { TagModule } from 'primeng/tag';
|
|
4
3
|
import { DetailedOverlayPanelComponent } from 'aril/ui-business/detailed-overlay-panel';
|
|
5
4
|
import { ValueComponent } from 'aril/ui/value';
|
|
@@ -23,17 +22,19 @@ export class RefValueComponent {
|
|
|
23
22
|
getDisplayValue() {
|
|
24
23
|
return this.valueDesc() ?? this.assetId().toString();
|
|
25
24
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
get url() {
|
|
26
|
+
return `${globalThis.location.host}/#/`;
|
|
27
|
+
}
|
|
28
|
+
getFullUrl() {
|
|
29
|
+
return 'http://' + this.url + this.detailPageUrl() + '/' + this.assetId();
|
|
29
30
|
}
|
|
30
31
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: RefValueComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
31
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: RefValueComponent, isStandalone: true, selector: "aril-ref-value", inputs: { overlayPanelShow: { classPropertyName: "overlayPanelShow", publicName: "overlayPanelShow", isSignal: true, isRequired: false, transformFunction: null }, 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 }, target: { classPropertyName: "target", publicName: "target", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { clickEvent: "clickEvent" }, ngImport: i0, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<a [
|
|
32
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: RefValueComponent, isStandalone: true, selector: "aril-ref-value", inputs: { overlayPanelShow: { classPropertyName: "overlayPanelShow", publicName: "overlayPanelShow", isSignal: true, isRequired: false, transformFunction: null }, 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 }, target: { classPropertyName: "target", publicName: "target", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { clickEvent: "clickEvent" }, ngImport: i0, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t\t</a>\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t</a>\r\n\t}\r\n} @else if (valueDesc() || assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<p-tag\r\n\t\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t\t[style]=\"tagStyle\"\r\n\t\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<p-tag\r\n\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t[style]=\"tagStyle\"\r\n\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t}\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"null\" />\r\n}\r\n", dependencies: [{ kind: "component", type: ValueComponent, selector: "aril-value", inputs: ["model", "type", "format", "isClickable", "groupName", "parentSelectionKey", "isTextClamp", "textClampCharacters", "style", "copyable", "shouldShowCopyForClampedText", "arrayTypeDisplayName", "arrayTypeMaxBadgeCount", "bigDecimalRoundingMode", "bigDecimalScale"] }, { kind: "component", type: DetailedOverlayPanelComponent, selector: "aril-detailed-oveylay-panel", inputs: ["assetId", "style", "styleClass", "columns"] }, { kind: "ngmodule", type: TagModule }, { kind: "component", type: i1.Tag, selector: "p-tag", inputs: ["style", "styleClass", "severity", "value", "icon", "rounded"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
32
33
|
}
|
|
33
34
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: RefValueComponent, decorators: [{
|
|
34
35
|
type: Component,
|
|
35
|
-
args: [{ standalone: true, selector: 'aril-ref-value', imports: [ValueComponent, DetailedOverlayPanelComponent, TagModule
|
|
36
|
+
args: [{ standalone: true, selector: 'aril-ref-value', imports: [ValueComponent, DetailedOverlayPanelComponent, TagModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t\t</a>\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t</a>\r\n\t}\r\n} @else if (valueDesc() || assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<p-tag\r\n\t\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t\t[style]=\"tagStyle\"\r\n\t\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<p-tag\r\n\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t[style]=\"tagStyle\"\r\n\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t}\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"null\" />\r\n}\r\n" }]
|
|
36
37
|
}], propDecorators: { clickEvent: [{
|
|
37
38
|
type: Output
|
|
38
39
|
}] } });
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVmLXZhbHVlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FyaWwvdWktYnVzaW5lc3MvcmVmLXZhbHVlL3NyYy9yZWYtdmFsdWUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC91aS1idXNpbmVzcy9yZWYtdmFsdWUvc3JjL3JlZi12YWx1ZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRWhHLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFeEMsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDeEYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7O0FBUy9DLE1BQU0sT0FBTyxpQkFBaUI7SUFQOUI7UUFRQyxxQkFBZ0IsR0FBRyxLQUFLLENBQVUsSUFBSSxDQUFDLENBQUM7UUFDeEMsWUFBTyxHQUFHLEtBQUssQ0FBQyxRQUFRLEVBQVUsQ0FBQztRQUNuQyxjQUFTLEdBQUcsS0FBSyxDQUFDLFFBQVEsRUFBVSxDQUFDO1FBQ3JDLGtCQUFhLEdBQUcsS0FBSyxDQUFDLFFBQVEsRUFBc0IsQ0FBQztRQUNyRCxXQUFNLEdBQUcsS0FBSyxDQUFTLE9BQU8sQ0FBQyxDQUFDO1FBRXRCLGVBQVUsR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO1FBRXZCLGFBQVEsR0FBRztZQUM3QixVQUFVLEVBQUUsU0FBUztZQUNyQixLQUFLLEVBQUUsY0FBYztZQUNyQixXQUFXLEVBQUUsUUFBUTtZQUNyQixpQkFBaUIsRUFBRSxXQUFXO1NBQzlCLENBQUM7S0FlRjtJQWJVLGVBQWU7UUFDeEIsT0FBTyxJQUFJLENBQUMsU0FBUyxFQUFFLElBQUksSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ3RELENBQUM7SUFFRCxJQUFJLEdBQUc7UUFDTixPQUFPLEdBQUcsVUFBVSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEtBQUssQ0FBQztJQUN6QyxDQUFDO0lBRVMsVUFBVTtRQUNuQixPQUFPLFNBQVMsR0FBRyxJQUFJLENBQUMsR0FBRyxHQUFHLElBQUksQ0FBQyxhQUFhLEVBQUUsR0FBRyxHQUFHLEdBQUcsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO0lBRTNFLENBQUM7OEdBM0JXLGlCQUFpQjtrR0FBakIsaUJBQWlCLGd5QkNkOUIscWxDQTZCQSw0Q0RsQlcsY0FBYyx3VUFBRSw2QkFBNkIsOEhBQUUsU0FBUzs7MkZBR3RELGlCQUFpQjtrQkFQN0IsU0FBUztpQ0FDRyxJQUFJLFlBQ04sZ0JBQWdCLFdBRWpCLENBQUMsY0FBYyxFQUFFLDZCQUE2QixFQUFFLFNBQVMsQ0FBQyxtQkFDbEQsdUJBQXVCLENBQUMsTUFBTTs4QkFTckMsVUFBVTtzQkFBbkIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgT3V0cHV0LCBpbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuaW1wb3J0IHsgVGFnTW9kdWxlIH0gZnJvbSAncHJpbWVuZy90YWcnO1xyXG5cclxuaW1wb3J0IHsgRGV0YWlsZWRPdmVybGF5UGFuZWxDb21wb25lbnQgfSBmcm9tICdhcmlsL3VpLWJ1c2luZXNzL2RldGFpbGVkLW92ZXJsYXktcGFuZWwnO1xyXG5pbXBvcnQgeyBWYWx1ZUNvbXBvbmVudCB9IGZyb20gJ2FyaWwvdWkvdmFsdWUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcblx0c3RhbmRhbG9uZTogdHJ1ZSxcclxuXHRzZWxlY3RvcjogJ2FyaWwtcmVmLXZhbHVlJyxcclxuXHR0ZW1wbGF0ZVVybDogJy4vcmVmLXZhbHVlLmNvbXBvbmVudC5odG1sJyxcclxuXHRpbXBvcnRzOiBbVmFsdWVDb21wb25lbnQsIERldGFpbGVkT3ZlcmxheVBhbmVsQ29tcG9uZW50LCBUYWdNb2R1bGVdLFxyXG5cdGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBSZWZWYWx1ZUNvbXBvbmVudCB7XHJcblx0b3ZlcmxheVBhbmVsU2hvdyA9IGlucHV0PGJvb2xlYW4+KHRydWUpO1xyXG5cdGFzc2V0SWQgPSBpbnB1dC5yZXF1aXJlZDxudW1iZXI+KCk7XHJcblx0dmFsdWVEZXNjID0gaW5wdXQucmVxdWlyZWQ8c3RyaW5nPigpO1xyXG5cdGRldGFpbFBhZ2VVcmwgPSBpbnB1dC5yZXF1aXJlZDxzdHJpbmcgfCB1bmRlZmluZWQ+KCk7XHJcblx0dGFyZ2V0ID0gaW5wdXQ8c3RyaW5nPignX3NlbGYnKTtcclxuXHJcblx0QE91dHB1dCgpIGNsaWNrRXZlbnQgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcblxyXG5cdHByb3RlY3RlZCByZWFkb25seSB0YWdTdHlsZSA9IHtcclxuXHRcdGJhY2tncm91bmQ6ICcjZjBmMGYwJyxcclxuXHRcdGNvbG9yOiAnLXdlYmtpdC1saW5rJyxcclxuXHRcdCdmb250LXNpemUnOiAnMC45cmVtJyxcclxuXHRcdCd0ZXh0LWRlY29yYXRpb24nOiAndW5kZXJsaW5lJ1xyXG5cdH07XHJcblxyXG5cdHByb3RlY3RlZCBnZXREaXNwbGF5VmFsdWUoKTogc3RyaW5nIHtcclxuXHRcdHJldHVybiB0aGlzLnZhbHVlRGVzYygpID8/IHRoaXMuYXNzZXRJZCgpLnRvU3RyaW5nKCk7XHJcblx0fVxyXG5cclxuXHRnZXQgdXJsKCk6IHN0cmluZyB7XHJcblx0XHRyZXR1cm4gYCR7Z2xvYmFsVGhpcy5sb2NhdGlvbi5ob3N0fS8jL2A7XHJcblx0fVxyXG5cclxuXHRwcm90ZWN0ZWQgZ2V0RnVsbFVybCgpOiBzdHJpbmcge1xyXG5cdFx0cmV0dXJuICdodHRwOi8vJyArIHRoaXMudXJsICsgdGhpcy5kZXRhaWxQYWdlVXJsKCkgKyAnLycgKyB0aGlzLmFzc2V0SWQoKTtcclxuXHJcblx0fVxyXG5cclxufVxyXG4iLCJAaWYgKGRldGFpbFBhZ2VVcmwoKSAmJiB2YWx1ZURlc2MoKSAmJiBhc3NldElkKCkpIHtcclxuXHRAaWYgKG92ZXJsYXlQYW5lbFNob3coKSkge1xyXG5cdFx0PGFyaWwtZGV0YWlsZWQtb3ZleWxheS1wYW5lbCBbYXNzZXRJZF09XCJhc3NldElkKClcIj5cclxuXHRcdFx0PGEgW2hyZWZdPVwiZ2V0RnVsbFVybCgpXCIgW3RhcmdldF09XCJ0YXJnZXQoKVwiPlxyXG5cdFx0XHRcdDxwLXRhZyBbdmFsdWVdPVwiZ2V0RGlzcGxheVZhbHVlKClcIiBbc3R5bGVdPVwidGFnU3R5bGVcIiAvPlxyXG5cdFx0XHQ8L2E+XHJcblx0XHQ8L2FyaWwtZGV0YWlsZWQtb3ZleWxheS1wYW5lbD5cclxuXHR9IEBlbHNlIHtcclxuXHRcdDxhIFtocmVmXT1cImdldEZ1bGxVcmwoKVwiIFt0YXJnZXRdPVwidGFyZ2V0KClcIj5cclxuXHRcdFx0PHAtdGFnIFt2YWx1ZV09XCJnZXREaXNwbGF5VmFsdWUoKVwiIFtzdHlsZV09XCJ0YWdTdHlsZVwiIC8+XHJcblx0XHQ8L2E+XHJcblx0fVxyXG59IEBlbHNlIGlmICh2YWx1ZURlc2MoKSB8fCBhc3NldElkKCkpIHtcclxuXHRAaWYgKG92ZXJsYXlQYW5lbFNob3coKSkge1xyXG5cdFx0PGFyaWwtZGV0YWlsZWQtb3ZleWxheS1wYW5lbCBbYXNzZXRJZF09XCJhc3NldElkKClcIj5cclxuXHRcdFx0PHAtdGFnXHJcblx0XHRcdFx0W3ZhbHVlXT1cImdldERpc3BsYXlWYWx1ZSgpXCJcclxuXHRcdFx0XHRbc3R5bGVdPVwidGFnU3R5bGVcIlxyXG5cdFx0XHRcdChjbGljayk9XCJjbGlja0V2ZW50LmVtaXQoeyBhc3NldElkOiBhc3NldElkKCksIHZhbHVlRGVzYzogdmFsdWVEZXNjKCkgfSlcIiAvPlxyXG5cdFx0PC9hcmlsLWRldGFpbGVkLW92ZXlsYXktcGFuZWw+XHJcblx0fSBAZWxzZSB7XHJcblx0XHQ8cC10YWdcclxuXHRcdFx0W3ZhbHVlXT1cImdldERpc3BsYXlWYWx1ZSgpXCJcclxuXHRcdFx0W3N0eWxlXT1cInRhZ1N0eWxlXCJcclxuXHRcdFx0KGNsaWNrKT1cImNsaWNrRXZlbnQuZW1pdCh7IGFzc2V0SWQ6IGFzc2V0SWQoKSwgdmFsdWVEZXNjOiB2YWx1ZURlc2MoKSB9KVwiIC8+XHJcblx0fVxyXG59IEBlbHNlIHtcclxuXHQ8YXJpbC12YWx1ZSB0eXBlPVwidGV4dFwiIFttb2RlbF09XCJudWxsXCIgLz5cclxufVxyXG4iXX0=
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { input, EventEmitter, Component, ChangeDetectionStrategy, Output } from '@angular/core';
|
|
3
|
-
import { RouterLink } from '@angular/router';
|
|
4
3
|
import * as i1 from 'primeng/tag';
|
|
5
4
|
import { TagModule } from 'primeng/tag';
|
|
6
5
|
import { DetailedOverlayPanelComponent } from 'aril/ui-business/detailed-overlay-panel';
|
|
@@ -24,16 +23,18 @@ class RefValueComponent {
|
|
|
24
23
|
getDisplayValue() {
|
|
25
24
|
return this.valueDesc() ?? this.assetId().toString();
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
get url() {
|
|
27
|
+
return `${globalThis.location.host}/#/`;
|
|
28
|
+
}
|
|
29
|
+
getFullUrl() {
|
|
30
|
+
return 'http://' + this.url + this.detailPageUrl() + '/' + this.assetId();
|
|
30
31
|
}
|
|
31
32
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: RefValueComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
32
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: RefValueComponent, isStandalone: true, selector: "aril-ref-value", inputs: { overlayPanelShow: { classPropertyName: "overlayPanelShow", publicName: "overlayPanelShow", isSignal: true, isRequired: false, transformFunction: null }, 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 }, target: { classPropertyName: "target", publicName: "target", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { clickEvent: "clickEvent" }, ngImport: i0, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<a [
|
|
33
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.2", type: RefValueComponent, isStandalone: true, selector: "aril-ref-value", inputs: { overlayPanelShow: { classPropertyName: "overlayPanelShow", publicName: "overlayPanelShow", isSignal: true, isRequired: false, transformFunction: null }, 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 }, target: { classPropertyName: "target", publicName: "target", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { clickEvent: "clickEvent" }, ngImport: i0, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t\t</a>\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t</a>\r\n\t}\r\n} @else if (valueDesc() || assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<p-tag\r\n\t\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t\t[style]=\"tagStyle\"\r\n\t\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<p-tag\r\n\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t[style]=\"tagStyle\"\r\n\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t}\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"null\" />\r\n}\r\n", dependencies: [{ kind: "component", type: ValueComponent, selector: "aril-value", inputs: ["model", "type", "format", "isClickable", "groupName", "parentSelectionKey", "isTextClamp", "textClampCharacters", "style", "copyable", "shouldShowCopyForClampedText", "arrayTypeDisplayName", "arrayTypeMaxBadgeCount", "bigDecimalRoundingMode", "bigDecimalScale"] }, { kind: "component", type: DetailedOverlayPanelComponent, selector: "aril-detailed-oveylay-panel", inputs: ["assetId", "style", "styleClass", "columns"] }, { kind: "ngmodule", type: TagModule }, { kind: "component", type: i1.Tag, selector: "p-tag", inputs: ["style", "styleClass", "severity", "value", "icon", "rounded"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
33
34
|
}
|
|
34
35
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: RefValueComponent, decorators: [{
|
|
35
36
|
type: Component,
|
|
36
|
-
args: [{ standalone: true, selector: 'aril-ref-value', imports: [ValueComponent, DetailedOverlayPanelComponent, TagModule
|
|
37
|
+
args: [{ standalone: true, selector: 'aril-ref-value', imports: [ValueComponent, DetailedOverlayPanelComponent, TagModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t\t</a>\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t</a>\r\n\t}\r\n} @else if (valueDesc() || assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<p-tag\r\n\t\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t\t[style]=\"tagStyle\"\r\n\t\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<p-tag\r\n\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t[style]=\"tagStyle\"\r\n\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t}\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"null\" />\r\n}\r\n" }]
|
|
37
38
|
}], propDecorators: { clickEvent: [{
|
|
38
39
|
type: Output
|
|
39
40
|
}] } });
|
|
@@ -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, EventEmitter, Output, input } from '@angular/core';\r\
|
|
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, EventEmitter, Output, input } from '@angular/core';\r\n\r\nimport { TagModule } from 'primeng/tag';\r\n\r\nimport { DetailedOverlayPanelComponent } from 'aril/ui-business/detailed-overlay-panel';\r\nimport { ValueComponent } from 'aril/ui/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, TagModule],\r\n\tchangeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class RefValueComponent {\r\n\toverlayPanelShow = input<boolean>(true);\r\n\tassetId = input.required<number>();\r\n\tvalueDesc = input.required<string>();\r\n\tdetailPageUrl = input.required<string | undefined>();\r\n\ttarget = input<string>('_self');\r\n\r\n\t@Output() clickEvent = new EventEmitter();\r\n\r\n\tprotected readonly tagStyle = {\r\n\t\tbackground: '#f0f0f0',\r\n\t\tcolor: '-webkit-link',\r\n\t\t'font-size': '0.9rem',\r\n\t\t'text-decoration': 'underline'\r\n\t};\r\n\r\n\tprotected getDisplayValue(): string {\r\n\t\treturn this.valueDesc() ?? this.assetId().toString();\r\n\t}\r\n\r\n\tget url(): string {\r\n\t\treturn `${globalThis.location.host}/#/`;\r\n\t}\r\n\r\n\tprotected getFullUrl(): string {\r\n\t\treturn 'http://' + this.url + this.detailPageUrl() + '/' + this.assetId();\r\n\r\n\t}\r\n\r\n}\r\n","@if (detailPageUrl() && valueDesc() && assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t\t</a>\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<a [href]=\"getFullUrl()\" [target]=\"target()\">\r\n\t\t\t<p-tag [value]=\"getDisplayValue()\" [style]=\"tagStyle\" />\r\n\t\t</a>\r\n\t}\r\n} @else if (valueDesc() || assetId()) {\r\n\t@if (overlayPanelShow()) {\r\n\t\t<aril-detailed-oveylay-panel [assetId]=\"assetId()\">\r\n\t\t\t<p-tag\r\n\t\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t\t[style]=\"tagStyle\"\r\n\t\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t\t</aril-detailed-oveylay-panel>\r\n\t} @else {\r\n\t\t<p-tag\r\n\t\t\t[value]=\"getDisplayValue()\"\r\n\t\t\t[style]=\"tagStyle\"\r\n\t\t\t(click)=\"clickEvent.emit({ assetId: assetId(), valueDesc: valueDesc() })\" />\r\n\t}\r\n} @else {\r\n\t<aril-value type=\"text\" [model]=\"null\" />\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;MAca,iBAAiB,CAAA;AAP9B,IAAA,WAAA,GAAA;AAQC,QAAA,IAAA,CAAA,gBAAgB,GAAG,KAAK,CAAU,IAAI,CAAC,CAAC;AACxC,QAAA,IAAA,CAAA,OAAO,GAAG,KAAK,CAAC,QAAQ,EAAU,CAAC;AACnC,QAAA,IAAA,CAAA,SAAS,GAAG,KAAK,CAAC,QAAQ,EAAU,CAAC;AACrC,QAAA,IAAA,CAAA,aAAa,GAAG,KAAK,CAAC,QAAQ,EAAsB,CAAC;AACrD,QAAA,IAAA,CAAA,MAAM,GAAG,KAAK,CAAS,OAAO,CAAC,CAAC;AAEtB,QAAA,IAAA,CAAA,UAAU,GAAG,IAAI,YAAY,EAAE,CAAC;AAEvB,QAAA,IAAA,CAAA,QAAQ,GAAG;AAC7B,YAAA,UAAU,EAAE,SAAS;AACrB,YAAA,KAAK,EAAE,cAAc;AACrB,YAAA,WAAW,EAAE,QAAQ;AACrB,YAAA,iBAAiB,EAAE,WAAW;SAC9B,CAAC;AAeF,KAAA;IAbU,eAAe,GAAA;AACxB,QAAA,OAAO,IAAI,CAAC,SAAS,EAAE,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC;KACrD;AAED,IAAA,IAAI,GAAG,GAAA;AACN,QAAA,OAAO,GAAG,UAAU,CAAC,QAAQ,CAAC,IAAI,KAAK,CAAC;KACxC;IAES,UAAU,GAAA;AACnB,QAAA,OAAO,SAAS,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,aAAa,EAAE,GAAG,GAAG,GAAG,IAAI,CAAC,OAAO,EAAE,CAAC;KAE1E;8GA3BW,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,gyBCd9B,qlCA6BA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EDlBW,cAAc,EAAE,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,QAAA,EAAA,aAAA,EAAA,WAAA,EAAA,oBAAA,EAAA,aAAA,EAAA,qBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,8BAAA,EAAA,sBAAA,EAAA,wBAAA,EAAA,wBAAA,EAAA,iBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,6BAA6B,8HAAE,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,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA,EAAA;;2FAGtD,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,SAAS,CAAC,EAClD,eAAA,EAAA,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,qlCAAA,EAAA,CAAA;8BASrC,UAAU,EAAA,CAAA;sBAAnB,MAAM;;;AErBR;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aril",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.16",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "~17.1.0",
|
|
6
6
|
"@angular/common": "^17.1.0",
|
|
@@ -77,18 +77,18 @@
|
|
|
77
77
|
"esm": "./esm2022/provider/aril-provider.mjs",
|
|
78
78
|
"default": "./fesm2022/aril-provider.mjs"
|
|
79
79
|
},
|
|
80
|
-
"./theme": {
|
|
81
|
-
"types": "./theme/index.d.ts",
|
|
82
|
-
"esm2022": "./esm2022/theme/aril-theme.mjs",
|
|
83
|
-
"esm": "./esm2022/theme/aril-theme.mjs",
|
|
84
|
-
"default": "./fesm2022/aril-theme.mjs"
|
|
85
|
-
},
|
|
86
80
|
"./superset": {
|
|
87
81
|
"types": "./superset/index.d.ts",
|
|
88
82
|
"esm2022": "./esm2022/superset/aril-superset.mjs",
|
|
89
83
|
"esm": "./esm2022/superset/aril-superset.mjs",
|
|
90
84
|
"default": "./fesm2022/aril-superset.mjs"
|
|
91
85
|
},
|
|
86
|
+
"./theme": {
|
|
87
|
+
"types": "./theme/index.d.ts",
|
|
88
|
+
"esm2022": "./esm2022/theme/aril-theme.mjs",
|
|
89
|
+
"esm": "./esm2022/theme/aril-theme.mjs",
|
|
90
|
+
"default": "./fesm2022/aril-theme.mjs"
|
|
91
|
+
},
|
|
92
92
|
"./ui": {
|
|
93
93
|
"types": "./ui/index.d.ts",
|
|
94
94
|
"esm2022": "./esm2022/ui/aril-ui.mjs",
|
|
@@ -101,18 +101,18 @@
|
|
|
101
101
|
"esm": "./esm2022/ui-business/aril-ui-business.mjs",
|
|
102
102
|
"default": "./fesm2022/aril-ui-business.mjs"
|
|
103
103
|
},
|
|
104
|
-
"./boot/base": {
|
|
105
|
-
"types": "./boot/base/index.d.ts",
|
|
106
|
-
"esm2022": "./esm2022/boot/base/aril-boot-base.mjs",
|
|
107
|
-
"esm": "./esm2022/boot/base/aril-boot-base.mjs",
|
|
108
|
-
"default": "./fesm2022/aril-boot-base.mjs"
|
|
109
|
-
},
|
|
110
104
|
"./util": {
|
|
111
105
|
"types": "./util/index.d.ts",
|
|
112
106
|
"esm2022": "./esm2022/util/aril-util.mjs",
|
|
113
107
|
"esm": "./esm2022/util/aril-util.mjs",
|
|
114
108
|
"default": "./fesm2022/aril-util.mjs"
|
|
115
109
|
},
|
|
110
|
+
"./boot/base": {
|
|
111
|
+
"types": "./boot/base/index.d.ts",
|
|
112
|
+
"esm2022": "./esm2022/boot/base/aril-boot-base.mjs",
|
|
113
|
+
"esm": "./esm2022/boot/base/aril-boot-base.mjs",
|
|
114
|
+
"default": "./fesm2022/aril-boot-base.mjs"
|
|
115
|
+
},
|
|
116
116
|
"./boot/bridge": {
|
|
117
117
|
"types": "./boot/bridge/index.d.ts",
|
|
118
118
|
"esm2022": "./esm2022/boot/bridge/aril-boot-bridge.mjs",
|
|
@@ -149,23 +149,17 @@
|
|
|
149
149
|
"esm": "./esm2022/ui/autoComplete/aril-ui-autoComplete.mjs",
|
|
150
150
|
"default": "./fesm2022/aril-ui-autoComplete.mjs"
|
|
151
151
|
},
|
|
152
|
-
"./ui/button": {
|
|
153
|
-
"types": "./ui/button/index.d.ts",
|
|
154
|
-
"esm2022": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
155
|
-
"esm": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
156
|
-
"default": "./fesm2022/aril-ui-button.mjs"
|
|
157
|
-
},
|
|
158
152
|
"./ui/badge": {
|
|
159
153
|
"types": "./ui/badge/index.d.ts",
|
|
160
154
|
"esm2022": "./esm2022/ui/badge/aril-ui-badge.mjs",
|
|
161
155
|
"esm": "./esm2022/ui/badge/aril-ui-badge.mjs",
|
|
162
156
|
"default": "./fesm2022/aril-ui-badge.mjs"
|
|
163
157
|
},
|
|
164
|
-
"./ui/
|
|
165
|
-
"types": "./ui/
|
|
166
|
-
"esm2022": "./esm2022/ui/
|
|
167
|
-
"esm": "./esm2022/ui/
|
|
168
|
-
"default": "./fesm2022/aril-ui-
|
|
158
|
+
"./ui/button": {
|
|
159
|
+
"types": "./ui/button/index.d.ts",
|
|
160
|
+
"esm2022": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
161
|
+
"esm": "./esm2022/ui/button/aril-ui-button.mjs",
|
|
162
|
+
"default": "./fesm2022/aril-ui-button.mjs"
|
|
169
163
|
},
|
|
170
164
|
"./ui/calendar": {
|
|
171
165
|
"types": "./ui/calendar/index.d.ts",
|
|
@@ -179,11 +173,11 @@
|
|
|
179
173
|
"esm": "./esm2022/ui/checkbox/aril-ui-checkbox.mjs",
|
|
180
174
|
"default": "./fesm2022/aril-ui-checkbox.mjs"
|
|
181
175
|
},
|
|
182
|
-
"./ui/
|
|
183
|
-
"types": "./ui/
|
|
184
|
-
"esm2022": "./esm2022/ui/
|
|
185
|
-
"esm": "./esm2022/ui/
|
|
186
|
-
"default": "./fesm2022/aril-ui-
|
|
176
|
+
"./ui/charts": {
|
|
177
|
+
"types": "./ui/charts/index.d.ts",
|
|
178
|
+
"esm2022": "./esm2022/ui/charts/aril-ui-charts.mjs",
|
|
179
|
+
"esm": "./esm2022/ui/charts/aril-ui-charts.mjs",
|
|
180
|
+
"default": "./fesm2022/aril-ui-charts.mjs"
|
|
187
181
|
},
|
|
188
182
|
"./ui/chip": {
|
|
189
183
|
"types": "./ui/chip/index.d.ts",
|
|
@@ -191,6 +185,12 @@
|
|
|
191
185
|
"esm": "./esm2022/ui/chip/aril-ui-chip.mjs",
|
|
192
186
|
"default": "./fesm2022/aril-ui-chip.mjs"
|
|
193
187
|
},
|
|
188
|
+
"./ui/collapse-reorder-list": {
|
|
189
|
+
"types": "./ui/collapse-reorder-list/index.d.ts",
|
|
190
|
+
"esm2022": "./esm2022/ui/collapse-reorder-list/aril-ui-collapse-reorder-list.mjs",
|
|
191
|
+
"esm": "./esm2022/ui/collapse-reorder-list/aril-ui-collapse-reorder-list.mjs",
|
|
192
|
+
"default": "./fesm2022/aril-ui-collapse-reorder-list.mjs"
|
|
193
|
+
},
|
|
194
194
|
"./ui/dxField": {
|
|
195
195
|
"types": "./ui/dxField/index.d.ts",
|
|
196
196
|
"esm2022": "./esm2022/ui/dxField/aril-ui-dxField.mjs",
|
|
@@ -209,18 +209,18 @@
|
|
|
209
209
|
"esm": "./esm2022/ui/editor/aril-ui-editor.mjs",
|
|
210
210
|
"default": "./fesm2022/aril-ui-editor.mjs"
|
|
211
211
|
},
|
|
212
|
-
"./ui/fileUpload": {
|
|
213
|
-
"types": "./ui/fileUpload/index.d.ts",
|
|
214
|
-
"esm2022": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
215
|
-
"esm": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
216
|
-
"default": "./fesm2022/aril-ui-fileUpload.mjs"
|
|
217
|
-
},
|
|
218
212
|
"./ui/field": {
|
|
219
213
|
"types": "./ui/field/index.d.ts",
|
|
220
214
|
"esm2022": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
221
215
|
"esm": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
222
216
|
"default": "./fesm2022/aril-ui-field.mjs"
|
|
223
217
|
},
|
|
218
|
+
"./ui/fileUpload": {
|
|
219
|
+
"types": "./ui/fileUpload/index.d.ts",
|
|
220
|
+
"esm2022": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
221
|
+
"esm": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
222
|
+
"default": "./fesm2022/aril-ui-fileUpload.mjs"
|
|
223
|
+
},
|
|
224
224
|
"./ui/form": {
|
|
225
225
|
"types": "./ui/form/index.d.ts",
|
|
226
226
|
"esm2022": "./esm2022/ui/form/aril-ui-form.mjs",
|
|
@@ -245,18 +245,18 @@
|
|
|
245
245
|
"esm": "./esm2022/ui/lib/aril-ui-lib.mjs",
|
|
246
246
|
"default": "./fesm2022/aril-ui-lib.mjs"
|
|
247
247
|
},
|
|
248
|
-
"./ui/loader": {
|
|
249
|
-
"types": "./ui/loader/index.d.ts",
|
|
250
|
-
"esm2022": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
251
|
-
"esm": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
252
|
-
"default": "./fesm2022/aril-ui-loader.mjs"
|
|
253
|
-
},
|
|
254
248
|
"./ui/mask": {
|
|
255
249
|
"types": "./ui/mask/index.d.ts",
|
|
256
250
|
"esm2022": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
257
251
|
"esm": "./esm2022/ui/mask/aril-ui-mask.mjs",
|
|
258
252
|
"default": "./fesm2022/aril-ui-mask.mjs"
|
|
259
253
|
},
|
|
254
|
+
"./ui/loader": {
|
|
255
|
+
"types": "./ui/loader/index.d.ts",
|
|
256
|
+
"esm2022": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
257
|
+
"esm": "./esm2022/ui/loader/aril-ui-loader.mjs",
|
|
258
|
+
"default": "./fesm2022/aril-ui-loader.mjs"
|
|
259
|
+
},
|
|
260
260
|
"./ui/multiSelect": {
|
|
261
261
|
"types": "./ui/multiSelect/index.d.ts",
|
|
262
262
|
"esm2022": "./esm2022/ui/multiSelect/aril-ui-multiSelect.mjs",
|
|
@@ -269,12 +269,6 @@
|
|
|
269
269
|
"esm": "./esm2022/ui/number/aril-ui-number.mjs",
|
|
270
270
|
"default": "./fesm2022/aril-ui-number.mjs"
|
|
271
271
|
},
|
|
272
|
-
"./ui/operation-types-dialog": {
|
|
273
|
-
"types": "./ui/operation-types-dialog/index.d.ts",
|
|
274
|
-
"esm2022": "./esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs",
|
|
275
|
-
"esm": "./esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs",
|
|
276
|
-
"default": "./fesm2022/aril-ui-operation-types-dialog.mjs"
|
|
277
|
-
},
|
|
278
272
|
"./ui/overlayPanel": {
|
|
279
273
|
"types": "./ui/overlayPanel/index.d.ts",
|
|
280
274
|
"esm2022": "./esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs",
|
|
@@ -287,11 +281,11 @@
|
|
|
287
281
|
"esm": "./esm2022/ui/panel/aril-ui-panel.mjs",
|
|
288
282
|
"default": "./fesm2022/aril-ui-panel.mjs"
|
|
289
283
|
},
|
|
290
|
-
"./ui/
|
|
291
|
-
"types": "./ui/
|
|
292
|
-
"esm2022": "./esm2022/ui/
|
|
293
|
-
"esm": "./esm2022/ui/
|
|
294
|
-
"default": "./fesm2022/aril-ui-
|
|
284
|
+
"./ui/operation-types-dialog": {
|
|
285
|
+
"types": "./ui/operation-types-dialog/index.d.ts",
|
|
286
|
+
"esm2022": "./esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs",
|
|
287
|
+
"esm": "./esm2022/ui/operation-types-dialog/aril-ui-operation-types-dialog.mjs",
|
|
288
|
+
"default": "./fesm2022/aril-ui-operation-types-dialog.mjs"
|
|
295
289
|
},
|
|
296
290
|
"./ui/password": {
|
|
297
291
|
"types": "./ui/password/index.d.ts",
|
|
@@ -299,6 +293,24 @@
|
|
|
299
293
|
"esm": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
300
294
|
"default": "./fesm2022/aril-ui-password.mjs"
|
|
301
295
|
},
|
|
296
|
+
"./ui/pdf-viewer": {
|
|
297
|
+
"types": "./ui/pdf-viewer/index.d.ts",
|
|
298
|
+
"esm2022": "./esm2022/ui/pdf-viewer/aril-ui-pdf-viewer.mjs",
|
|
299
|
+
"esm": "./esm2022/ui/pdf-viewer/aril-ui-pdf-viewer.mjs",
|
|
300
|
+
"default": "./fesm2022/aril-ui-pdf-viewer.mjs"
|
|
301
|
+
},
|
|
302
|
+
"./ui/progressbar": {
|
|
303
|
+
"types": "./ui/progressbar/index.d.ts",
|
|
304
|
+
"esm2022": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
305
|
+
"esm": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
306
|
+
"default": "./fesm2022/aril-ui-progressbar.mjs"
|
|
307
|
+
},
|
|
308
|
+
"./ui/radioButton": {
|
|
309
|
+
"types": "./ui/radioButton/index.d.ts",
|
|
310
|
+
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
311
|
+
"esm": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
312
|
+
"default": "./fesm2022/aril-ui-radioButton.mjs"
|
|
313
|
+
},
|
|
302
314
|
"./ui/relativeDateSelector": {
|
|
303
315
|
"types": "./ui/relativeDateSelector/index.d.ts",
|
|
304
316
|
"esm2022": "./esm2022/ui/relativeDateSelector/aril-ui-relativeDateSelector.mjs",
|
|
@@ -311,18 +323,6 @@
|
|
|
311
323
|
"esm": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
312
324
|
"default": "./fesm2022/aril-ui-selectBox.mjs"
|
|
313
325
|
},
|
|
314
|
-
"./ui/radioButton": {
|
|
315
|
-
"types": "./ui/radioButton/index.d.ts",
|
|
316
|
-
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
317
|
-
"esm": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
318
|
-
"default": "./fesm2022/aril-ui-radioButton.mjs"
|
|
319
|
-
},
|
|
320
|
-
"./ui/progressbar": {
|
|
321
|
-
"types": "./ui/progressbar/index.d.ts",
|
|
322
|
-
"esm2022": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
323
|
-
"esm": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
324
|
-
"default": "./fesm2022/aril-ui-progressbar.mjs"
|
|
325
|
-
},
|
|
326
326
|
"./ui/switch": {
|
|
327
327
|
"types": "./ui/switch/index.d.ts",
|
|
328
328
|
"esm2022": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
@@ -389,18 +389,18 @@
|
|
|
389
389
|
"esm": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
390
390
|
"default": "./fesm2022/aril-ui-tree.mjs"
|
|
391
391
|
},
|
|
392
|
-
"./ui/treeTable": {
|
|
393
|
-
"types": "./ui/treeTable/index.d.ts",
|
|
394
|
-
"esm2022": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
395
|
-
"esm": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
396
|
-
"default": "./fesm2022/aril-ui-treeTable.mjs"
|
|
397
|
-
},
|
|
398
392
|
"./ui/treeSelect": {
|
|
399
393
|
"types": "./ui/treeSelect/index.d.ts",
|
|
400
394
|
"esm2022": "./esm2022/ui/treeSelect/aril-ui-treeSelect.mjs",
|
|
401
395
|
"esm": "./esm2022/ui/treeSelect/aril-ui-treeSelect.mjs",
|
|
402
396
|
"default": "./fesm2022/aril-ui-treeSelect.mjs"
|
|
403
397
|
},
|
|
398
|
+
"./ui/treeTable": {
|
|
399
|
+
"types": "./ui/treeTable/index.d.ts",
|
|
400
|
+
"esm2022": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
401
|
+
"esm": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
402
|
+
"default": "./fesm2022/aril-ui-treeTable.mjs"
|
|
403
|
+
},
|
|
404
404
|
"./ui/value": {
|
|
405
405
|
"types": "./ui/value/index.d.ts",
|
|
406
406
|
"esm2022": "./esm2022/ui/value/aril-ui-value.mjs",
|
|
@@ -425,12 +425,6 @@
|
|
|
425
425
|
"esm": "./esm2022/ui-business/enumPicker/aril-ui-business-enumPicker.mjs",
|
|
426
426
|
"default": "./fesm2022/aril-ui-business-enumPicker.mjs"
|
|
427
427
|
},
|
|
428
|
-
"./ui-business/multiple-ref-value": {
|
|
429
|
-
"types": "./ui-business/multiple-ref-value/index.d.ts",
|
|
430
|
-
"esm2022": "./esm2022/ui-business/multiple-ref-value/aril-ui-business-multiple-ref-value.mjs",
|
|
431
|
-
"esm": "./esm2022/ui-business/multiple-ref-value/aril-ui-business-multiple-ref-value.mjs",
|
|
432
|
-
"default": "./fesm2022/aril-ui-business-multiple-ref-value.mjs"
|
|
433
|
-
},
|
|
434
428
|
"./ui-business/image-viewer": {
|
|
435
429
|
"types": "./ui-business/image-viewer/index.d.ts",
|
|
436
430
|
"esm2022": "./esm2022/ui-business/image-viewer/aril-ui-business-image-viewer.mjs",
|
|
@@ -449,24 +443,30 @@
|
|
|
449
443
|
"esm": "./esm2022/ui-business/operation-types-dialog/aril-ui-business-operation-types-dialog.mjs",
|
|
450
444
|
"default": "./fesm2022/aril-ui-business-operation-types-dialog.mjs"
|
|
451
445
|
},
|
|
446
|
+
"./ui-business/multiple-ref-value": {
|
|
447
|
+
"types": "./ui-business/multiple-ref-value/index.d.ts",
|
|
448
|
+
"esm2022": "./esm2022/ui-business/multiple-ref-value/aril-ui-business-multiple-ref-value.mjs",
|
|
449
|
+
"esm": "./esm2022/ui-business/multiple-ref-value/aril-ui-business-multiple-ref-value.mjs",
|
|
450
|
+
"default": "./fesm2022/aril-ui-business-multiple-ref-value.mjs"
|
|
451
|
+
},
|
|
452
452
|
"./ui-business/pdf-preview-modal": {
|
|
453
453
|
"types": "./ui-business/pdf-preview-modal/index.d.ts",
|
|
454
454
|
"esm2022": "./esm2022/ui-business/pdf-preview-modal/aril-ui-business-pdf-preview-modal.mjs",
|
|
455
455
|
"esm": "./esm2022/ui-business/pdf-preview-modal/aril-ui-business-pdf-preview-modal.mjs",
|
|
456
456
|
"default": "./fesm2022/aril-ui-business-pdf-preview-modal.mjs"
|
|
457
457
|
},
|
|
458
|
-
"./ui-business/rolePicker": {
|
|
459
|
-
"types": "./ui-business/rolePicker/index.d.ts",
|
|
460
|
-
"esm2022": "./esm2022/ui-business/rolePicker/aril-ui-business-rolePicker.mjs",
|
|
461
|
-
"esm": "./esm2022/ui-business/rolePicker/aril-ui-business-rolePicker.mjs",
|
|
462
|
-
"default": "./fesm2022/aril-ui-business-rolePicker.mjs"
|
|
463
|
-
},
|
|
464
458
|
"./ui-business/ref-value": {
|
|
465
459
|
"types": "./ui-business/ref-value/index.d.ts",
|
|
466
460
|
"esm2022": "./esm2022/ui-business/ref-value/aril-ui-business-ref-value.mjs",
|
|
467
461
|
"esm": "./esm2022/ui-business/ref-value/aril-ui-business-ref-value.mjs",
|
|
468
462
|
"default": "./fesm2022/aril-ui-business-ref-value.mjs"
|
|
469
463
|
},
|
|
464
|
+
"./ui-business/rolePicker": {
|
|
465
|
+
"types": "./ui-business/rolePicker/index.d.ts",
|
|
466
|
+
"esm2022": "./esm2022/ui-business/rolePicker/aril-ui-business-rolePicker.mjs",
|
|
467
|
+
"esm": "./esm2022/ui-business/rolePicker/aril-ui-business-rolePicker.mjs",
|
|
468
|
+
"default": "./fesm2022/aril-ui-business-rolePicker.mjs"
|
|
469
|
+
},
|
|
470
470
|
"./ui-business/trace-drawer": {
|
|
471
471
|
"types": "./ui-business/trace-drawer/index.d.ts",
|
|
472
472
|
"esm2022": "./esm2022/ui-business/trace-drawer/aril-ui-business-trace-drawer.mjs",
|
|
@@ -485,6 +485,12 @@
|
|
|
485
485
|
"esm": "./esm2022/ui-business/trace-id/aril-ui-business-trace-id.mjs",
|
|
486
486
|
"default": "./fesm2022/aril-ui-business-trace-id.mjs"
|
|
487
487
|
},
|
|
488
|
+
"./util/block": {
|
|
489
|
+
"types": "./util/block/index.d.ts",
|
|
490
|
+
"esm2022": "./esm2022/util/block/aril-util-block.mjs",
|
|
491
|
+
"esm": "./esm2022/util/block/aril-util-block.mjs",
|
|
492
|
+
"default": "./fesm2022/aril-util-block.mjs"
|
|
493
|
+
},
|
|
488
494
|
"./util/directives": {
|
|
489
495
|
"types": "./util/directives/index.d.ts",
|
|
490
496
|
"esm2022": "./esm2022/util/directives/aril-util-directives.mjs",
|
|
@@ -497,12 +503,6 @@
|
|
|
497
503
|
"esm": "./esm2022/util/lib/aril-util-lib.mjs",
|
|
498
504
|
"default": "./fesm2022/aril-util-lib.mjs"
|
|
499
505
|
},
|
|
500
|
-
"./util/block": {
|
|
501
|
-
"types": "./util/block/index.d.ts",
|
|
502
|
-
"esm2022": "./esm2022/util/block/aril-util-block.mjs",
|
|
503
|
-
"esm": "./esm2022/util/block/aril-util-block.mjs",
|
|
504
|
-
"default": "./fesm2022/aril-util-block.mjs"
|
|
505
|
-
},
|
|
506
506
|
"./util/pipes": {
|
|
507
507
|
"types": "./util/pipes/index.d.ts",
|
|
508
508
|
"esm2022": "./esm2022/util/pipes/aril-util-pipes.mjs",
|
|
@@ -527,30 +527,30 @@
|
|
|
527
527
|
"esm": "./esm2022/util/sync-active-tab-route/aril-util-sync-active-tab-route.mjs",
|
|
528
528
|
"default": "./fesm2022/aril-util-sync-active-tab-route.mjs"
|
|
529
529
|
},
|
|
530
|
-
"./boot/config/api": {
|
|
531
|
-
"types": "./boot/config/api/index.d.ts",
|
|
532
|
-
"esm2022": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
533
|
-
"esm": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
534
|
-
"default": "./fesm2022/aril-boot-config-api.mjs"
|
|
535
|
-
},
|
|
536
|
-
"./boot/config/plugins": {
|
|
537
|
-
"types": "./boot/config/plugins/index.d.ts",
|
|
538
|
-
"esm2022": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
539
|
-
"esm": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
540
|
-
"default": "./fesm2022/aril-boot-config-plugins.mjs"
|
|
541
|
-
},
|
|
542
530
|
"./util/unwrap": {
|
|
543
531
|
"types": "./util/unwrap/index.d.ts",
|
|
544
532
|
"esm2022": "./esm2022/util/unwrap/aril-util-unwrap.mjs",
|
|
545
533
|
"esm": "./esm2022/util/unwrap/aril-util-unwrap.mjs",
|
|
546
534
|
"default": "./fesm2022/aril-util-unwrap.mjs"
|
|
547
535
|
},
|
|
536
|
+
"./boot/config/api": {
|
|
537
|
+
"types": "./boot/config/api/index.d.ts",
|
|
538
|
+
"esm2022": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
539
|
+
"esm": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
540
|
+
"default": "./fesm2022/aril-boot-config-api.mjs"
|
|
541
|
+
},
|
|
548
542
|
"./boot/config/apps": {
|
|
549
543
|
"types": "./boot/config/apps/index.d.ts",
|
|
550
544
|
"esm2022": "./esm2022/boot/config/apps/aril-boot-config-apps.mjs",
|
|
551
545
|
"esm": "./esm2022/boot/config/apps/aril-boot-config-apps.mjs",
|
|
552
546
|
"default": "./fesm2022/aril-boot-config-apps.mjs"
|
|
553
547
|
},
|
|
548
|
+
"./boot/config/plugins": {
|
|
549
|
+
"types": "./boot/config/plugins/index.d.ts",
|
|
550
|
+
"esm2022": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
551
|
+
"esm": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
552
|
+
"default": "./fesm2022/aril-boot-config-plugins.mjs"
|
|
553
|
+
},
|
|
554
554
|
"./boot/config/translate": {
|
|
555
555
|
"types": "./boot/config/translate/index.d.ts",
|
|
556
556
|
"esm2022": "./esm2022/boot/config/translate/aril-boot-config-translate.mjs",
|
|
@@ -14,7 +14,8 @@ export declare class RefValueComponent {
|
|
|
14
14
|
'text-decoration': string;
|
|
15
15
|
};
|
|
16
16
|
protected getDisplayValue(): string;
|
|
17
|
-
|
|
17
|
+
get url(): string;
|
|
18
|
+
protected getFullUrl(): string;
|
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<RefValueComponent, never>;
|
|
19
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<RefValueComponent, "aril-ref-value", never, { "overlayPanelShow": { "alias": "overlayPanelShow"; "required": false; "isSignal": true; }; "assetId": { "alias": "assetId"; "required": true; "isSignal": true; }; "valueDesc": { "alias": "valueDesc"; "required": true; "isSignal": true; }; "detailPageUrl": { "alias": "detailPageUrl"; "required": true; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; }, { "clickEvent": "clickEvent"; }, never, never, true, never>;
|
|
20
21
|
}
|