@acorex/platform 20.0.4 → 20.0.6
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/common/index.d.ts +102 -2
- package/core/index.d.ts +1 -1
- package/domain/index.d.ts +1 -65
- package/fesm2022/acorex-platform-common.mjs +243 -1
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-domain.mjs +32 -38
- package/fesm2022/acorex-platform-domain.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +2 -0
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +184 -14
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +117 -35
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +4 -17
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-runtime.mjs +6 -5
- package/fesm2022/acorex-platform-runtime.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-single-view.component-cvoKMP84.mjs → acorex-platform-themes-default-entity-master-single-view.component--tn_1mKA.mjs} +6 -7
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component--tn_1mKA.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +6 -6
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/{acorex-platform-widgets-checkbox-widget-designer.component-5kuroU6r.mjs → acorex-platform-widgets-checkbox-widget-designer.component-BuU7nJ6u.mjs} +2 -2
- package/fesm2022/acorex-platform-widgets-checkbox-widget-designer.component-BuU7nJ6u.mjs.map +1 -0
- package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-tITe8tiu.mjs → acorex-platform-widgets-page-widget-designer.component-Dwts3at7.mjs} +3 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-Dwts3at7.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +79 -67
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/index.d.ts +4 -3
- package/layout/components/index.d.ts +103 -2
- package/layout/entity/index.d.ts +9 -0
- package/package.json +1 -1
- package/runtime/index.d.ts +5 -5
- package/widgets/index.d.ts +5 -4
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-cvoKMP84.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-checkbox-widget-designer.component-5kuroU6r.mjs.map +0 -1
- package/fesm2022/acorex-platform-widgets-page-widget-designer.component-tITe8tiu.mjs.map +0 -1
|
@@ -10,7 +10,7 @@ import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
|
10
10
|
import * as i2$1 from '@acorex/components/loading';
|
|
11
11
|
import { AXLoadingModule } from '@acorex/components/loading';
|
|
12
12
|
import * as i0 from '@angular/core';
|
|
13
|
-
import { computed, EventEmitter, ChangeDetectionStrategy, Component, inject, afterNextRender, HostBinding, signal, ViewEncapsulation, InjectionToken,
|
|
13
|
+
import { computed, EventEmitter, ChangeDetectionStrategy, Component, inject, afterNextRender, HostBinding, signal, effect, ViewEncapsulation, InjectionToken, ViewChild, CUSTOM_ELEMENTS_SCHEMA, untracked, Injectable, output, input, ChangeDetectorRef, viewChild, ElementRef, afterEveryRender, NgZone, model, linkedSignal, HostListener, importProvidersFrom, NgModule } from '@angular/core';
|
|
14
14
|
import * as i1 from '@acorex/components/check-box';
|
|
15
15
|
import { AXCheckBoxModule } from '@acorex/components/check-box';
|
|
16
16
|
import * as i4 from '@acorex/components/form';
|
|
@@ -20,7 +20,7 @@ import { AXLabelModule } from '@acorex/components/label';
|
|
|
20
20
|
import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
|
|
21
21
|
import * as i2$3 from '@angular/forms';
|
|
22
22
|
import { FormsModule } from '@angular/forms';
|
|
23
|
-
import { AXPClipBoardService, AXPRegionalService, AXPFilterOperatorMiddlewareService, AXPCleanNestedFilters, AXPFileStorageService, AXPFileTypeProviderService, ALL_DEFAULT_OPERATORS, DATE_OPERATORS, BOOLEAN_OPERATORS, NUMBER_OPERATORS, STRING_OPERATORS } from '@acorex/platform/common';
|
|
23
|
+
import { AXPClipBoardService, AXPSettingService, AXPRegionalService, AXPFilterOperatorMiddlewareService, AXPCleanNestedFilters, AXPFileStorageService, AXPFileTypeProviderService, ALL_DEFAULT_OPERATORS, DATE_OPERATORS, BOOLEAN_OPERATORS, NUMBER_OPERATORS, STRING_OPERATORS } from '@acorex/platform/common';
|
|
24
24
|
import { AXPopupService } from '@acorex/components/popup';
|
|
25
25
|
import * as i3 from '@acorex/components/select-box';
|
|
26
26
|
import { AXSelectBoxModule, AXSelectBoxComponent } from '@acorex/components/select-box';
|
|
@@ -34,12 +34,12 @@ import { AXBasePageComponent } from '@acorex/components/page';
|
|
|
34
34
|
import { AXDateTimeFormatter, AXTimeDurationFormatter, AXCalendarService } from '@acorex/core/date-time';
|
|
35
35
|
import * as i3$1 from '@acorex/components/datetime-box';
|
|
36
36
|
import { AXDateTimeBoxModule } from '@acorex/components/datetime-box';
|
|
37
|
+
import { AXFormatService } from '@acorex/core/format';
|
|
37
38
|
import * as i5 from '@acorex/components/text-area';
|
|
38
39
|
import { AXTextAreaModule } from '@acorex/components/text-area';
|
|
39
40
|
import { set, isNumber, castArray, cloneDeep, isEqual, sum, get } from 'lodash-es';
|
|
40
41
|
import * as i4$1 from '@acorex/components/tabs';
|
|
41
42
|
import { AXTabsModule } from '@acorex/components/tabs';
|
|
42
|
-
import { AXFormatService } from '@acorex/core/format';
|
|
43
43
|
import * as i1$5 from '@acorex/components/number-box';
|
|
44
44
|
import { AXNumberBoxModule } from '@acorex/components/number-box';
|
|
45
45
|
import * as i3$2 from '@acorex/components/password-box';
|
|
@@ -826,6 +826,7 @@ const AXP_LAYOUT_DIRECTION_PROPERTY = {
|
|
|
826
826
|
name: 'direction',
|
|
827
827
|
title: 'Direction',
|
|
828
828
|
group: AXP_BOX_MODEL_PROPERTY_GROUP,
|
|
829
|
+
order: 99,
|
|
829
830
|
schema: {
|
|
830
831
|
dataType: 'string',
|
|
831
832
|
defaultValue: 'ltr',
|
|
@@ -1124,7 +1125,7 @@ class AXPCheckBoxWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
1124
1125
|
<ax-label>{{ label() }}</ax-label>
|
|
1125
1126
|
}
|
|
1126
1127
|
</ax-check-box>
|
|
1127
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "color", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message", "disabled"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$4.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1128
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "color", "value", "name", "id", "checked", "isLoading", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message", "disabled"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$4.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1128
1129
|
}
|
|
1129
1130
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, decorators: [{
|
|
1130
1131
|
type: Component,
|
|
@@ -1181,7 +1182,7 @@ const AXPCheckBoxWidget = {
|
|
|
1181
1182
|
],
|
|
1182
1183
|
components: {
|
|
1183
1184
|
designer: {
|
|
1184
|
-
component: () => import('./acorex-platform-widgets-checkbox-widget-designer.component-
|
|
1185
|
+
component: () => import('./acorex-platform-widgets-checkbox-widget-designer.component-BuU7nJ6u.mjs').then((c) => c.AXPCheckBoxWidgetDesignerComponent),
|
|
1185
1186
|
},
|
|
1186
1187
|
view: {
|
|
1187
1188
|
component: () => import('./acorex-platform-widgets-checkbox-widget-view.component-BgrIeNW0.mjs').then((c) => c.AXPCheckBoxWidgetViewComponent),
|
|
@@ -1704,7 +1705,7 @@ class AXPContactWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
1704
1705
|
}
|
|
1705
1706
|
</div>
|
|
1706
1707
|
}
|
|
1707
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
1708
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$2.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1708
1709
|
}
|
|
1709
1710
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPContactWidgetViewComponent, decorators: [{
|
|
1710
1711
|
type: Component,
|
|
@@ -1836,11 +1837,13 @@ class AXPDateTimeBoxWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
1836
1837
|
}
|
|
1837
1838
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPDateTimeBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1838
1839
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: AXPDateTimeBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
1839
|
-
<div>
|
|
1840
|
-
@if(multiple()){
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1840
|
+
<div class="ax-text-muted">
|
|
1841
|
+
@if(multiple()){
|
|
1842
|
+
@for (item of internalValue(); track $index) {
|
|
1843
|
+
<span dir="ltr" >{{ item }}</span>
|
|
1844
|
+
}
|
|
1845
|
+
} @else {
|
|
1846
|
+
<span dir="ltr" >{{ internalValue()[0] }}</span>
|
|
1844
1847
|
}
|
|
1845
1848
|
</div>
|
|
1846
1849
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
@@ -1849,11 +1852,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
1849
1852
|
type: Component,
|
|
1850
1853
|
args: [{
|
|
1851
1854
|
template: `
|
|
1852
|
-
<div>
|
|
1853
|
-
@if(multiple()){
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1855
|
+
<div class="ax-text-muted">
|
|
1856
|
+
@if(multiple()){
|
|
1857
|
+
@for (item of internalValue(); track $index) {
|
|
1858
|
+
<span dir="ltr" >{{ item }}</span>
|
|
1859
|
+
}
|
|
1860
|
+
} @else {
|
|
1861
|
+
<span dir="ltr" >{{ internalValue()[0] }}</span>
|
|
1857
1862
|
}
|
|
1858
1863
|
</div>
|
|
1859
1864
|
`,
|
|
@@ -2049,11 +2054,11 @@ var dateTimeBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
|
2049
2054
|
class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
2050
2055
|
constructor() {
|
|
2051
2056
|
super(...arguments);
|
|
2052
|
-
this.formatter = inject(
|
|
2053
|
-
this.
|
|
2054
|
-
this.convertedValue =
|
|
2057
|
+
this.formatter = inject(AXFormatService);
|
|
2058
|
+
this.settingService = inject(AXPSettingService);
|
|
2059
|
+
this.convertedValue = signal(this.rawValue);
|
|
2055
2060
|
this.multiple = this.options['multiple'] || false;
|
|
2056
|
-
this.
|
|
2061
|
+
this.mode = computed(() => {
|
|
2057
2062
|
const rawValue = this.options['format'];
|
|
2058
2063
|
if (typeof rawValue == 'string')
|
|
2059
2064
|
return rawValue;
|
|
@@ -2062,24 +2067,28 @@ class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
2062
2067
|
else
|
|
2063
2068
|
return 'date';
|
|
2064
2069
|
});
|
|
2065
|
-
this
|
|
2070
|
+
this.#effect = effect(() => {
|
|
2071
|
+
this.updateValue();
|
|
2072
|
+
});
|
|
2073
|
+
this.updateValue = async () => {
|
|
2066
2074
|
const rawValue = this.rawValue;
|
|
2067
2075
|
if (rawValue == null) {
|
|
2068
|
-
|
|
2076
|
+
this.convertedValue.set(null);
|
|
2069
2077
|
}
|
|
2070
2078
|
if (this.isArray(rawValue)) {
|
|
2071
|
-
|
|
2079
|
+
this.convertedValue.set(rawValue.map((item) => this.handleFormat(item)).join(', '));
|
|
2072
2080
|
}
|
|
2073
2081
|
else {
|
|
2074
|
-
|
|
2082
|
+
this.convertedValue.set(await this.handleFormat(rawValue));
|
|
2075
2083
|
}
|
|
2076
2084
|
};
|
|
2077
2085
|
}
|
|
2078
|
-
|
|
2086
|
+
#effect;
|
|
2087
|
+
async handleFormat(value) {
|
|
2088
|
+
const format = await this.settingService.get('regional:short-date');
|
|
2079
2089
|
return value
|
|
2080
|
-
? this.formatter.format(new Date(value), {
|
|
2081
|
-
format:
|
|
2082
|
-
locale: this.translationService.getActiveLang() === 'fa' ? 'fa' : undefined,
|
|
2090
|
+
? this.formatter.format(new Date(value), this.mode(), {
|
|
2091
|
+
format: format,
|
|
2083
2092
|
})
|
|
2084
2093
|
: '---';
|
|
2085
2094
|
}
|
|
@@ -2089,7 +2098,7 @@ class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
2089
2098
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPDateTimeBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2090
2099
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.4", type: AXPDateTimeBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue", rowData: "rowData" }, usesInheritance: true, ngImport: i0, template: `<div class="ax-flex">
|
|
2091
2100
|
<span [dir]="'ltr'" [title]="convertedValue()">{{ convertedValue() }}</span>
|
|
2092
|
-
</div>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2101
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2093
2102
|
}
|
|
2094
2103
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPDateTimeBoxWidgetColumnComponent, decorators: [{
|
|
2095
2104
|
type: Component,
|
|
@@ -2098,8 +2107,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
2098
2107
|
<span [dir]="'ltr'" [title]="convertedValue()">{{ convertedValue() }}</span>
|
|
2099
2108
|
</div>`,
|
|
2100
2109
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2101
|
-
imports: [],
|
|
2102
|
-
inputs: ['rawValue', 'rowData']
|
|
2110
|
+
imports: [CommonModule],
|
|
2111
|
+
inputs: ['rawValue', 'rowData'],
|
|
2103
2112
|
}]
|
|
2104
2113
|
}] });
|
|
2105
2114
|
|
|
@@ -2231,7 +2240,7 @@ class AXPEmailBoxWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
2231
2240
|
}
|
|
2232
2241
|
</ng-template>
|
|
2233
2242
|
</div>
|
|
2234
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
2243
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2235
2244
|
}
|
|
2236
2245
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPEmailBoxWidgetViewComponent, decorators: [{
|
|
2237
2246
|
type: Component,
|
|
@@ -2686,7 +2695,7 @@ const AXPEmailBoxWidget = {
|
|
|
2686
2695
|
class AXPLargeTextWidgetViewComponent extends AXPValueWidgetComponent {
|
|
2687
2696
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPLargeTextWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2688
2697
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.4", type: AXPLargeTextWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
2689
|
-
<div class="ax-max-w-full">
|
|
2698
|
+
<div class="ax-max-w-full ax-text-muted">
|
|
2690
2699
|
<span>
|
|
2691
2700
|
{{ getValue() }}
|
|
2692
2701
|
</span>
|
|
@@ -2697,7 +2706,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
2697
2706
|
type: Component,
|
|
2698
2707
|
args: [{
|
|
2699
2708
|
template: `
|
|
2700
|
-
<div class="ax-max-w-full">
|
|
2709
|
+
<div class="ax-max-w-full ax-text-muted">
|
|
2701
2710
|
<span>
|
|
2702
2711
|
{{ getValue() }}
|
|
2703
2712
|
</span>
|
|
@@ -2748,7 +2757,7 @@ class AXPSelectLanguagePopup extends AXBasePageComponent {
|
|
|
2748
2757
|
this.close(this.values);
|
|
2749
2758
|
}
|
|
2750
2759
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPSelectLanguagePopup, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2751
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: AXPSelectLanguagePopup, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<div class=\"ax-grid ax-grid-cols-12\">\n <aside class=\"ax-col-span-4 ax-border-r ax-border-gray-200\">\n <ax-tabs [content]=\"content\" location=\"end\" look=\"with-line-color\" [fitParent]=\"true\">\n @for (language of languageList(); track $index) {\n <ax-tab-item [text]=\"language.title\" [key]=\"$index.toString()\" [(active)]=\"language.active\">\n <ax-suffix>\n <ax-badge [color]=\"language.context.value?.length ? 'success' : 'ghost'\"></ax-badge>\n </ax-suffix>\n <ax-content>\n <p class=\"ax-font-semibold ax-self-start ax-mb-4\">{{language.title}}</p>\n <div class=\"ax-flex ax-flex-grow ax-items-center ax-justify-center\">\n <axp-widgets-container\n class=\"ax-flex ax-flex-col ax-gap-2 ax-p-4\"\n [context]=\"language.context\"\n (onContextChanged)=\"handleContextChanged($event,language)\"\n >\n <ng-container axp-widget-renderer [node]=\"language.node\" [mode]=\"'edit'\"> </ng-container>\n </axp-widgets-container>\n </div>\n </ax-content>\n </ax-tab-item>\n }\n </ax-tabs>\n </aside>\n <div class=\"ax-col-span-8 ax-p-4 ax-flex ax-flex-col ax-pb-32\">\n <ng-template [axTabContent] #content=\"axTabContent\"> </ng-template>\n </div>\n</div>\n<ax-footer>\n <ax-suffix>\n <ax-button [text]=\"('cancel' | translate | async)\" (onClick)=\"close()\"></ax-button>\n <ax-button color=\"primary\" [text]=\"('save' | translate | async)\" (onClick)=\"onSaveButtonClick()\"></ax-button>\n </ax-suffix>\n</ax-footer>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$2.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTabsModule }, { kind: "component", type: i4$1.AXTabsComponent, selector: "ax-tabs", inputs: ["look", "location", "fitParent", "minWidth", "content"], outputs: ["onActiveTabChanged"] }, { kind: "component", type: i4$1.AXTabItemComponent, selector: "ax-tab-item", inputs: ["disabled", "text", "key", "headerTemplate", "active"], outputs: ["disabledChange", "onClick", "onBlur", "onFocus", "activeChange"] }, { kind: "directive", type: i4$1.AXTabContentDirective, selector: "[axTabContent]", inputs: ["axTabContent"], exportAs: ["axTabContent"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
2760
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: AXPSelectLanguagePopup, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<div class=\"ax-grid ax-grid-cols-12\">\n <aside class=\"ax-col-span-4 ax-border-r ax-border-gray-200\">\n <ax-tabs [content]=\"content\" location=\"end\" look=\"with-line-color\" [fitParent]=\"true\">\n @for (language of languageList(); track $index) {\n <ax-tab-item [text]=\"language.title\" [key]=\"$index.toString()\" [(active)]=\"language.active\">\n <ax-suffix>\n <ax-badge [color]=\"language.context.value?.length ? 'success' : 'ghost'\"></ax-badge>\n </ax-suffix>\n <ax-content>\n <p class=\"ax-font-semibold ax-self-start ax-mb-4\">{{language.title}}</p>\n <div class=\"ax-flex ax-flex-grow ax-items-center ax-justify-center\">\n <axp-widgets-container\n class=\"ax-flex ax-flex-col ax-gap-2 ax-p-4\"\n [context]=\"language.context\"\n (onContextChanged)=\"handleContextChanged($event,language)\"\n >\n <ng-container axp-widget-renderer [node]=\"language.node\" [mode]=\"'edit'\"> </ng-container>\n </axp-widgets-container>\n </div>\n </ax-content>\n </ax-tab-item>\n }\n </ax-tabs>\n </aside>\n <div class=\"ax-col-span-8 ax-p-4 ax-flex ax-flex-col ax-pb-32\">\n <ng-template [axTabContent] #content=\"axTabContent\"> </ng-template>\n </div>\n</div>\n<ax-footer>\n <ax-suffix>\n <ax-button [text]=\"('cancel' | translate | async)\" (onClick)=\"close()\"></ax-button>\n <ax-button color=\"primary\" [text]=\"('save' | translate | async)\" (onClick)=\"onSaveButtonClick()\"></ax-button>\n </ax-suffix>\n</ax-footer>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$2.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTabsModule }, { kind: "component", type: i4$1.AXTabsComponent, selector: "ax-tabs", inputs: ["look", "location", "fitParent", "minWidth", "content"], outputs: ["onActiveTabChanged"] }, { kind: "component", type: i4$1.AXTabItemComponent, selector: "ax-tab-item", inputs: ["disabled", "text", "key", "headerTemplate", "active"], outputs: ["disabledChange", "onClick", "onBlur", "onFocus", "activeChange"] }, { kind: "directive", type: i4$1.AXTabContentDirective, selector: "[axTabContent]", inputs: ["axTabContent"], exportAs: ["axTabContent"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i6.AXTranslatorPipe, name: "translate" }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1$4.AXPWidgetContainerComponent, selector: "axp-widgets-container", inputs: ["context", "functions"], outputs: ["onContextChanged"] }, { kind: "directive", type: i1$4.AXPWidgetRendererDirective, selector: "[axp-widget-renderer]", inputs: ["parentNode", "index", "mode", "node"], outputs: ["onOptionsChanged", "onValueChanged"], exportAs: ["widgetRenderer"] }] }); }
|
|
2752
2761
|
}
|
|
2753
2762
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPSelectLanguagePopup, decorators: [{
|
|
2754
2763
|
type: Component,
|
|
@@ -3090,7 +3099,7 @@ class AXPLinkWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
3090
3099
|
</div>
|
|
3091
3100
|
}
|
|
3092
3101
|
</ng-template>
|
|
3093
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
3102
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$2.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3094
3103
|
}
|
|
3095
3104
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPLinkWidgetViewComponent, decorators: [{
|
|
3096
3105
|
type: Component,
|
|
@@ -3649,7 +3658,7 @@ class AXPNumberBoxWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
3649
3658
|
}
|
|
3650
3659
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPNumberBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3651
3660
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: AXPNumberBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
3652
|
-
<div>
|
|
3661
|
+
<div class="ax-text-muted">
|
|
3653
3662
|
@if(multiple()){ @for (item of internalValue(); track $index) {
|
|
3654
3663
|
<p>{{ item }}</p>
|
|
3655
3664
|
} }@else {
|
|
@@ -3662,7 +3671,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
3662
3671
|
type: Component,
|
|
3663
3672
|
args: [{
|
|
3664
3673
|
template: `
|
|
3665
|
-
<div>
|
|
3674
|
+
<div class="ax-text-muted">
|
|
3666
3675
|
@if(multiple()){ @for (item of internalValue(); track $index) {
|
|
3667
3676
|
<p>{{ item }}</p>
|
|
3668
3677
|
} }@else {
|
|
@@ -4291,7 +4300,7 @@ class AXPPhoneBoxWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
4291
4300
|
}
|
|
4292
4301
|
</ng-template>
|
|
4293
4302
|
</div>
|
|
4294
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
4303
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4295
4304
|
}
|
|
4296
4305
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPPhoneBoxWidgetViewComponent, decorators: [{
|
|
4297
4306
|
type: Component,
|
|
@@ -4739,14 +4748,14 @@ class AXPRichTextWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
4739
4748
|
});
|
|
4740
4749
|
}
|
|
4741
4750
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPRichTextWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4742
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.4", type: AXPRichTextWidgetViewComponent, isStandalone: true, selector: "axp-rich-text-widget", usesInheritance: true, ngImport: i0, template: ` <span class="ax-truncate ax-underline ax-cursor-pointer" (click)="openPopup()" [innerHTML]="getValue() | safe : 'html'">
|
|
4751
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.4", type: AXPRichTextWidgetViewComponent, isStandalone: true, selector: "axp-rich-text-widget", usesInheritance: true, ngImport: i0, template: ` <span class="ax-truncate ax-underline ax-cursor-pointer ax-text-muted" (click)="openPopup()" [innerHTML]="getValue() | safe : 'html'">
|
|
4743
4752
|
</span>`, isInline: true, dependencies: [{ kind: "pipe", type: AXSafePipe, name: "safe" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4744
4753
|
}
|
|
4745
4754
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPRichTextWidgetViewComponent, decorators: [{
|
|
4746
4755
|
type: Component,
|
|
4747
4756
|
args: [{
|
|
4748
4757
|
selector: 'axp-rich-text-widget',
|
|
4749
|
-
template: ` <span class="ax-truncate ax-underline ax-cursor-pointer" (click)="openPopup()" [innerHTML]="getValue() | safe : 'html'">
|
|
4758
|
+
template: ` <span class="ax-truncate ax-underline ax-cursor-pointer ax-text-muted" (click)="openPopup()" [innerHTML]="getValue() | safe : 'html'">
|
|
4750
4759
|
</span>`,
|
|
4751
4760
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4752
4761
|
imports: [AXSafePipe],
|
|
@@ -5072,7 +5081,7 @@ class AXPSelectBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
5072
5081
|
@for (item of internalValue(); track $index) {
|
|
5073
5082
|
<ax-badge [text]="item[this.textField]" color="primary"></ax-badge>
|
|
5074
5083
|
}
|
|
5075
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
5084
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5076
5085
|
}
|
|
5077
5086
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPSelectBoxWidgetColumnComponent, decorators: [{
|
|
5078
5087
|
type: Component,
|
|
@@ -5152,13 +5161,13 @@ class AXPSelectBoxWidgetEditComponent extends AXPDataListWidgetComponent {
|
|
|
5152
5161
|
}
|
|
5153
5162
|
#effect;
|
|
5154
5163
|
refresh() {
|
|
5155
|
-
|
|
5164
|
+
setTimeout(() => {
|
|
5165
|
+
this.selectbox?.refresh();
|
|
5166
|
+
}, 0);
|
|
5156
5167
|
}
|
|
5157
5168
|
clear() {
|
|
5158
5169
|
this.selectbox?.reset(true);
|
|
5159
|
-
|
|
5160
|
-
this.refresh();
|
|
5161
|
-
}, 0);
|
|
5170
|
+
this.refresh();
|
|
5162
5171
|
}
|
|
5163
5172
|
get item() {
|
|
5164
5173
|
return this.selectedItems()[0];
|
|
@@ -5314,9 +5323,9 @@ class AXPSelectBoxWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
5314
5323
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPSelectBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5315
5324
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: AXPSelectBoxWidgetViewComponent, isStandalone: true, selector: "axp-select-box-widget-view", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
5316
5325
|
@for (item of internalValue(); track $index) {
|
|
5317
|
-
<ax-badge [
|
|
5326
|
+
<ax-badge class="ax-p-0.5" [color]="'surface'" [text]="item.text" ></ax-badge>
|
|
5318
5327
|
}
|
|
5319
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
5328
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5320
5329
|
}
|
|
5321
5330
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPSelectBoxWidgetViewComponent, decorators: [{
|
|
5322
5331
|
type: Component,
|
|
@@ -5324,7 +5333,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
5324
5333
|
selector: 'axp-select-box-widget-view',
|
|
5325
5334
|
template: `
|
|
5326
5335
|
@for (item of internalValue(); track $index) {
|
|
5327
|
-
<ax-badge [
|
|
5336
|
+
<ax-badge class="ax-p-0.5" [color]="'surface'" [text]="item.text" ></ax-badge>
|
|
5328
5337
|
}
|
|
5329
5338
|
`,
|
|
5330
5339
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -5409,9 +5418,9 @@ class AXPSelectionListWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
5409
5418
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPSelectionListWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
5410
5419
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: AXPSelectionListWidgetViewComponent, isStandalone: true, selector: "axp-selection-list-widget-view", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
|
|
5411
5420
|
@for (item of internalValue(); track $index) {
|
|
5412
|
-
<ax-badge [
|
|
5421
|
+
<ax-badge class="ax-p-0.5" [color]="'surface'" [text]="item[this.textField()]" ></ax-badge>
|
|
5413
5422
|
}
|
|
5414
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
5423
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5415
5424
|
}
|
|
5416
5425
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPSelectionListWidgetViewComponent, decorators: [{
|
|
5417
5426
|
type: Component,
|
|
@@ -5419,7 +5428,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
5419
5428
|
selector: 'axp-selection-list-widget-view',
|
|
5420
5429
|
template: `
|
|
5421
5430
|
@for (item of internalValue(); track $index) {
|
|
5422
|
-
<ax-badge [
|
|
5431
|
+
<ax-badge class="ax-p-0.5" [color]="'surface'" [text]="item[this.textField()]" ></ax-badge>
|
|
5423
5432
|
}
|
|
5424
5433
|
`,
|
|
5425
5434
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -5658,7 +5667,7 @@ class AXPSelectionListWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
5658
5667
|
} }@else {
|
|
5659
5668
|
<ax-badge [look]="'twotone'" [text]="firstItem()[this.textField]" color="primary"></ax-badge>
|
|
5660
5669
|
}
|
|
5661
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
5670
|
+
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5662
5671
|
}
|
|
5663
5672
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPSelectionListWidgetColumnComponent, decorators: [{
|
|
5664
5673
|
type: Component,
|
|
@@ -6162,7 +6171,7 @@ class AXPTextBoxWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
6162
6171
|
}
|
|
6163
6172
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPTextBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6164
6173
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: AXPTextBoxWidgetViewComponent, isStandalone: true, selector: "axp-text-box-widget", usesInheritance: true, ngImport: i0, template: `
|
|
6165
|
-
<div>
|
|
6174
|
+
<div class="ax-text-muted">
|
|
6166
6175
|
@if(multiple())
|
|
6167
6176
|
{
|
|
6168
6177
|
@for (item of internalValue(); track $index) {
|
|
@@ -6179,7 +6188,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
6179
6188
|
args: [{
|
|
6180
6189
|
selector: 'axp-text-box-widget',
|
|
6181
6190
|
template: `
|
|
6182
|
-
<div>
|
|
6191
|
+
<div class="ax-text-muted">
|
|
6183
6192
|
@if(multiple())
|
|
6184
6193
|
{
|
|
6185
6194
|
@for (item of internalValue(); track $index) {
|
|
@@ -6534,7 +6543,7 @@ class AXPToggleWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
6534
6543
|
<ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
|
|
6535
6544
|
}@else {
|
|
6536
6545
|
<ax-icon class="fa-solid fa-xmark ax-text-danger-500"> </ax-icon>
|
|
6537
|
-
} } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$2.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
6546
|
+
} } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$2.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6538
6547
|
}
|
|
6539
6548
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPToggleWidgetViewComponent, decorators: [{
|
|
6540
6549
|
type: Component,
|
|
@@ -6665,7 +6674,7 @@ class AXPToggleWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
|
6665
6674
|
<ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
|
|
6666
6675
|
}@else {
|
|
6667
6676
|
<ax-icon class="fa-solid fa-xmark ax-text-danger-500"> </ax-icon>
|
|
6668
|
-
} } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$2.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "
|
|
6677
|
+
} } }`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$2.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i1$3.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6669
6678
|
}
|
|
6670
6679
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPToggleWidgetColumnComponent, decorators: [{
|
|
6671
6680
|
type: Component,
|
|
@@ -9805,8 +9814,10 @@ class AXPPageWidgetViewComponent extends AXPLayoutWidgetComponent {
|
|
|
9805
9814
|
this.backgroundColor = computed(() => this.options()["backgroundColor"]);
|
|
9806
9815
|
}
|
|
9807
9816
|
get __style() {
|
|
9817
|
+
const direction = this.options()?.['direction'];
|
|
9808
9818
|
return {
|
|
9809
9819
|
'background-color': this.backgroundColor(),
|
|
9820
|
+
direction: direction ?? 'ltr',
|
|
9810
9821
|
};
|
|
9811
9822
|
}
|
|
9812
9823
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPPageWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -9864,6 +9875,7 @@ const AXPPageWidget = {
|
|
|
9864
9875
|
group: AXP_BEHAVIOR_PROPERTY_GROUP,
|
|
9865
9876
|
defaultValue: true,
|
|
9866
9877
|
}),
|
|
9878
|
+
AXP_LAYOUT_DIRECTION_PROPERTY,
|
|
9867
9879
|
],
|
|
9868
9880
|
components: {
|
|
9869
9881
|
view: {
|
|
@@ -9876,7 +9888,7 @@ const AXPPageWidget = {
|
|
|
9876
9888
|
component: () => Promise.resolve().then(function () { return pageWidgetView_component; }).then((c) => c.AXPPageWidgetViewComponent),
|
|
9877
9889
|
},
|
|
9878
9890
|
designer: {
|
|
9879
|
-
component: () => import('./acorex-platform-widgets-page-widget-designer.component-
|
|
9891
|
+
component: () => import('./acorex-platform-widgets-page-widget-designer.component-Dwts3at7.mjs').then((c) => c.AXPPageWidgetDesignerComponent),
|
|
9880
9892
|
},
|
|
9881
9893
|
},
|
|
9882
9894
|
};
|
|
@@ -11723,7 +11735,7 @@ class AXPBetweenValidationWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
11723
11735
|
</div>
|
|
11724
11736
|
</div>
|
|
11725
11737
|
</div>
|
|
11726
|
-
</axp-base-validation-component>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: AXPBaseValidationComponent, selector: "axp-base-validation-component", inputs: ["validationStatus", "validationText", "validationTextPlaceholder"], outputs: ["validationStatusChange", "validationTextChange"] }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "color", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$4.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$5.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "type", "changeOnScroll", "allDigits", "thousandsSeparator", "padDecimalZeros", "step", "decimals", "decimalStep", "showSpinButtons", "minValue", "maxValue", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
11738
|
+
</axp-base-validation-component>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: AXPBaseValidationComponent, selector: "axp-base-validation-component", inputs: ["validationStatus", "validationText", "validationTextPlaceholder"], outputs: ["validationStatusChange", "validationTextChange"] }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "color", "value", "name", "id", "checked", "isLoading", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$4.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$5.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "type", "changeOnScroll", "allDigits", "thousandsSeparator", "padDecimalZeros", "step", "decimals", "decimalStep", "showSpinButtons", "minValue", "maxValue", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
11727
11739
|
}
|
|
11728
11740
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPBetweenValidationWidgetEditComponent, decorators: [{
|
|
11729
11741
|
type: Component,
|
|
@@ -12019,7 +12031,7 @@ class AXPGreaterThanValidationWidgetEditComponent extends AXPValueWidgetComponen
|
|
|
12019
12031
|
</div>
|
|
12020
12032
|
</div>
|
|
12021
12033
|
</div>
|
|
12022
|
-
</axp-base-validation-component>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: AXPBaseValidationComponent, selector: "axp-base-validation-component", inputs: ["validationStatus", "validationText", "validationTextPlaceholder"], outputs: ["validationStatusChange", "validationTextChange"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$4.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "color", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$5.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "type", "changeOnScroll", "allDigits", "thousandsSeparator", "padDecimalZeros", "step", "decimals", "decimalStep", "showSpinButtons", "minValue", "maxValue", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
12034
|
+
</axp-base-validation-component>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: AXPBaseValidationComponent, selector: "axp-base-validation-component", inputs: ["validationStatus", "validationText", "validationTextPlaceholder"], outputs: ["validationStatusChange", "validationTextChange"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$4.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "color", "value", "name", "id", "checked", "isLoading", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$5.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "type", "changeOnScroll", "allDigits", "thousandsSeparator", "padDecimalZeros", "step", "decimals", "decimalStep", "showSpinButtons", "minValue", "maxValue", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
12023
12035
|
}
|
|
12024
12036
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPGreaterThanValidationWidgetEditComponent, decorators: [{
|
|
12025
12037
|
type: Component,
|
|
@@ -12126,7 +12138,7 @@ class AXPLessThanValidationWidgetEditComponent extends AXPValueWidgetComponent {
|
|
|
12126
12138
|
</div>
|
|
12127
12139
|
</div>
|
|
12128
12140
|
</div>
|
|
12129
|
-
</axp-base-validation-component>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: AXPBaseValidationComponent, selector: "axp-base-validation-component", inputs: ["validationStatus", "validationText", "validationTextPlaceholder"], outputs: ["validationStatusChange", "validationTextChange"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$4.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "color", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$5.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "type", "changeOnScroll", "allDigits", "thousandsSeparator", "padDecimalZeros", "step", "decimals", "decimalStep", "showSpinButtons", "minValue", "maxValue", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
12141
|
+
</axp-base-validation-component>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: AXPBaseValidationComponent, selector: "axp-base-validation-component", inputs: ["validationStatus", "validationText", "validationTextPlaceholder"], outputs: ["validationStatusChange", "validationTextChange"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i2$4.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "color", "value", "name", "id", "checked", "isLoading", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$5.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "type", "changeOnScroll", "allDigits", "thousandsSeparator", "padDecimalZeros", "step", "decimals", "decimalStep", "showSpinButtons", "minValue", "maxValue", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
12130
12142
|
}
|
|
12131
12143
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPLessThanValidationWidgetEditComponent, decorators: [{
|
|
12132
12144
|
type: Component,
|
|
@@ -13125,7 +13137,7 @@ class AXPMetaDataWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
13125
13137
|
}
|
|
13126
13138
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPMetaDataWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
13127
13139
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: AXPMetaDataWidgetViewComponent, isStandalone: true, selector: "axp-meta-data-widget", usesInheritance: true, ngImport: i0, template: `
|
|
13128
|
-
<div>
|
|
13140
|
+
<div class="ax-text-muted">
|
|
13129
13141
|
@if(multiple()) { @for (item of internalValue(); track $index) {
|
|
13130
13142
|
<p>{{ item }}</p>
|
|
13131
13143
|
} }@else {
|
|
@@ -13139,7 +13151,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
13139
13151
|
args: [{
|
|
13140
13152
|
selector: 'axp-meta-data-widget',
|
|
13141
13153
|
template: `
|
|
13142
|
-
<div>
|
|
13154
|
+
<div class="ax-text-muted">
|
|
13143
13155
|
@if(multiple()) { @for (item of internalValue(); track $index) {
|
|
13144
13156
|
<p>{{ item }}</p>
|
|
13145
13157
|
} }@else {
|
|
@@ -13476,7 +13488,7 @@ class AXPNumberUnitBoxWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
13476
13488
|
}
|
|
13477
13489
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPNumberUnitBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
13478
13490
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.4", type: AXPNumberUnitBoxWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
|
|
13479
|
-
<div>
|
|
13491
|
+
<div class="ax-text-muted">
|
|
13480
13492
|
@if(multiple()){ @for (item of internalValue(); track $index) {
|
|
13481
13493
|
<p>{{ item }}</p>
|
|
13482
13494
|
} }@else {
|
|
@@ -13489,7 +13501,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
13489
13501
|
type: Component,
|
|
13490
13502
|
args: [{
|
|
13491
13503
|
template: `
|
|
13492
|
-
<div>
|
|
13504
|
+
<div class="ax-text-muted">
|
|
13493
13505
|
@if(multiple()){ @for (item of internalValue(); track $index) {
|
|
13494
13506
|
<p>{{ item }}</p>
|
|
13495
13507
|
} }@else {
|
|
@@ -13874,12 +13886,12 @@ class AXPTimerDurationWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
13874
13886
|
this.internalValue = computed(() => this.timeDurationFormatter.millisecondsToMask(this.getValue(), this.from(), this.to()));
|
|
13875
13887
|
}
|
|
13876
13888
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPTimerDurationWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
13877
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.4", type: AXPTimerDurationWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<p>{{ internalValue() | async }}</p>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
13889
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.4", type: AXPTimerDurationWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<p class="ax-text-muted">{{ internalValue() | async }}</p>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
13878
13890
|
}
|
|
13879
13891
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: AXPTimerDurationWidgetViewComponent, decorators: [{
|
|
13880
13892
|
type: Component,
|
|
13881
13893
|
args: [{
|
|
13882
|
-
template: `<p>{{ internalValue() | async }}</p>`,
|
|
13894
|
+
template: `<p class="ax-text-muted">{{ internalValue() | async }}</p>`,
|
|
13883
13895
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
13884
13896
|
imports: [CommonModule],
|
|
13885
13897
|
}]
|