@acorex/platform 19.1.10 → 19.1.12
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/fesm2022/acorex-platform-common.mjs +13 -8
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +22 -11
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +340 -324
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +57 -1
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +5 -5
- package/widgets/index.d.ts +2 -1
- package/widgets/lib/widgets/editors/contact/contact-widget-edit.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/contact/contact-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/select/select-box-widget-edit.component.d.ts +2 -0
- package/widgets/lib/widgets.config.d.ts +7 -0
- package/workflow/lib/workflow-registery.service.d.ts +5 -1
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import * as i1$6 from '@acorex/platform/layout/builder';
|
|
2
|
+
import { AXPWidgetsCatalog, createStringProperty, createBooleanProperty, createSelectProperty, cloneProperty, AXPWidgetComponent, AXP_WIDGETS_ACTION_GROUP, AXP_WIDGETS_EDITOR_GROUP, AXPColumnWidgetComponent, AXPDataListWidgetComponent, AXPWidgetStatus, AXPPageStatus, AXP_WIDGETS_ADVANCE_GROUP, AXPLayoutBuilderModule, AXP_WIDGETS_LAYOUT_GROUP, AXP_WIDGETS_FILTER_GROUP } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AX_STYLE_COLOR_TYPES, AX_STYLE_LOOK_TYPES, AXDataSource } from '@acorex/components/common';
|
|
1
4
|
import * as i1$2 from '@acorex/components/badge';
|
|
2
5
|
import { AXBadgeModule } from '@acorex/components/badge';
|
|
3
6
|
import * as i5 from '@acorex/components/button';
|
|
@@ -6,13 +9,10 @@ import * as i3 from '@acorex/components/decorators';
|
|
|
6
9
|
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
7
10
|
import * as i4 from '@acorex/components/loading';
|
|
8
11
|
import { AXLoadingModule } from '@acorex/components/loading';
|
|
9
|
-
import * as i1$6 from '@acorex/platform/layout/builder';
|
|
10
|
-
import { AXPWidgetComponent, AXPWidgetsCatalog, createStringProperty, createBooleanProperty, createSelectProperty, cloneProperty, AXP_WIDGETS_ACTION_GROUP, AXP_WIDGETS_EDITOR_GROUP, AXPColumnWidgetComponent, AXPDataListWidgetComponent, AXPWidgetStatus, AXPPageStatus, AXP_WIDGETS_ADVANCE_GROUP, AXPLayoutBuilderModule, AXP_WIDGETS_LAYOUT_GROUP, AXP_WIDGETS_FILTER_GROUP } from '@acorex/platform/layout/builder';
|
|
11
12
|
import * as i1$1 from '@angular/common';
|
|
12
13
|
import { CommonModule } from '@angular/common';
|
|
13
14
|
import * as i0 from '@angular/core';
|
|
14
|
-
import { computed, EventEmitter, Component, ChangeDetectionStrategy, inject, HostBinding, signal, effect, ViewEncapsulation, ViewChild, untracked, ChangeDetectorRef, ElementRef, viewChild, afterRender, afterNextRender, NgZone, model, input, HostListener, NgModule } from '@angular/core';
|
|
15
|
-
import { AX_STYLE_COLOR_TYPES, AX_STYLE_LOOK_TYPES, AXDataSource } from '@acorex/components/common';
|
|
15
|
+
import { computed, EventEmitter, Component, ChangeDetectionStrategy, inject, HostBinding, signal, effect, ViewEncapsulation, InjectionToken, ViewChild, untracked, ChangeDetectorRef, ElementRef, viewChild, afterRender, afterNextRender, NgZone, model, input, HostListener, NgModule } from '@angular/core';
|
|
16
16
|
import * as i1 from '@acorex/components/check-box';
|
|
17
17
|
import { AXCheckBoxModule } from '@acorex/components/check-box';
|
|
18
18
|
import * as i3$1 from '@acorex/components/form';
|
|
@@ -83,67 +83,6 @@ import { AXQrcodeModule } from '@acorex/components/qrcode';
|
|
|
83
83
|
import { AXColorUtil } from '@acorex/core/utils';
|
|
84
84
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
85
85
|
|
|
86
|
-
class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
|
|
87
|
-
constructor() {
|
|
88
|
-
super(...arguments);
|
|
89
|
-
this.disabled = computed(() => this.options()['disabled']);
|
|
90
|
-
this.color = computed(() => this.options()['color']?.id ?? 'primary');
|
|
91
|
-
this.look = computed(() => this.options()['look']?.id ?? 'solid');
|
|
92
|
-
this.text = computed(() => this.options()['text']);
|
|
93
|
-
this.loading = computed(() => this.options()['loading'] ?? false);
|
|
94
|
-
this.icon = computed(() => this.options()['icon']);
|
|
95
|
-
this.onClick = new EventEmitter();
|
|
96
|
-
}
|
|
97
|
-
handleClick(e) {
|
|
98
|
-
this.onClick.emit(e);
|
|
99
|
-
}
|
|
100
|
-
api() {
|
|
101
|
-
return {
|
|
102
|
-
onClick: this.onClick,
|
|
103
|
-
};
|
|
104
|
-
}
|
|
105
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPButtonWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
106
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.3", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "axp-button-widget", usesInheritance: true, ngImport: i0, template: `
|
|
107
|
-
<ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
|
|
108
|
-
@if(icon() && text()){
|
|
109
|
-
<ax-prefix
|
|
110
|
-
><ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon
|
|
111
|
-
></ax-prefix>
|
|
112
|
-
} @else if(icon() && !text()) {
|
|
113
|
-
<ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon>
|
|
114
|
-
} @if(loading()){
|
|
115
|
-
<ax-loading> </ax-loading>
|
|
116
|
-
}
|
|
117
|
-
</ax-button>
|
|
118
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXBadgeModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
119
|
-
}
|
|
120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPButtonWidgetViewComponent, decorators: [{
|
|
121
|
-
type: Component,
|
|
122
|
-
args: [{
|
|
123
|
-
selector: 'axp-button-widget',
|
|
124
|
-
template: `
|
|
125
|
-
<ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
|
|
126
|
-
@if(icon() && text()){
|
|
127
|
-
<ax-prefix
|
|
128
|
-
><ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon
|
|
129
|
-
></ax-prefix>
|
|
130
|
-
} @else if(icon() && !text()) {
|
|
131
|
-
<ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon>
|
|
132
|
-
} @if(loading()){
|
|
133
|
-
<ax-loading> </ax-loading>
|
|
134
|
-
}
|
|
135
|
-
</ax-button>
|
|
136
|
-
`,
|
|
137
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
138
|
-
imports: [CommonModule, AXButtonModule, AXLoadingModule, AXDecoratorModule, AXBadgeModule]
|
|
139
|
-
}]
|
|
140
|
-
}] });
|
|
141
|
-
|
|
142
|
-
var buttonWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
143
|
-
__proto__: null,
|
|
144
|
-
AXPButtonWidgetViewComponent: AXPButtonWidgetViewComponent
|
|
145
|
-
});
|
|
146
|
-
|
|
147
86
|
const AXP_STYLING_PROPERTY_GROUP = {
|
|
148
87
|
name: "styling",
|
|
149
88
|
order: 1,
|
|
@@ -957,6 +896,67 @@ const AXP_TABLE_COLUMN_HEIGHT_PROPERTY = {
|
|
|
957
896
|
visible: false,
|
|
958
897
|
};
|
|
959
898
|
|
|
899
|
+
class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
|
|
900
|
+
constructor() {
|
|
901
|
+
super(...arguments);
|
|
902
|
+
this.disabled = computed(() => this.options()['disabled']);
|
|
903
|
+
this.color = computed(() => this.options()['color']?.id ?? 'primary');
|
|
904
|
+
this.look = computed(() => this.options()['look']?.id ?? 'solid');
|
|
905
|
+
this.text = computed(() => this.options()['text']);
|
|
906
|
+
this.loading = computed(() => this.options()['loading'] ?? false);
|
|
907
|
+
this.icon = computed(() => this.options()['icon']);
|
|
908
|
+
this.onClick = new EventEmitter();
|
|
909
|
+
}
|
|
910
|
+
handleClick(e) {
|
|
911
|
+
this.onClick.emit(e);
|
|
912
|
+
}
|
|
913
|
+
api() {
|
|
914
|
+
return {
|
|
915
|
+
onClick: this.onClick,
|
|
916
|
+
};
|
|
917
|
+
}
|
|
918
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPButtonWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
919
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.3", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "axp-button-widget", usesInheritance: true, ngImport: i0, template: `
|
|
920
|
+
<ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
|
|
921
|
+
@if(icon() && text()){
|
|
922
|
+
<ax-prefix
|
|
923
|
+
><ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon
|
|
924
|
+
></ax-prefix>
|
|
925
|
+
} @else if(icon() && !text()) {
|
|
926
|
+
<ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon>
|
|
927
|
+
} @if(loading()){
|
|
928
|
+
<ax-loading> </ax-loading>
|
|
929
|
+
}
|
|
930
|
+
</ax-button>
|
|
931
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXBadgeModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
932
|
+
}
|
|
933
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPButtonWidgetViewComponent, decorators: [{
|
|
934
|
+
type: Component,
|
|
935
|
+
args: [{
|
|
936
|
+
selector: 'axp-button-widget',
|
|
937
|
+
template: `
|
|
938
|
+
<ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
|
|
939
|
+
@if(icon() && text()){
|
|
940
|
+
<ax-prefix
|
|
941
|
+
><ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon
|
|
942
|
+
></ax-prefix>
|
|
943
|
+
} @else if(icon() && !text()) {
|
|
944
|
+
<ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon>
|
|
945
|
+
} @if(loading()){
|
|
946
|
+
<ax-loading> </ax-loading>
|
|
947
|
+
}
|
|
948
|
+
</ax-button>
|
|
949
|
+
`,
|
|
950
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
951
|
+
imports: [CommonModule, AXButtonModule, AXLoadingModule, AXDecoratorModule, AXBadgeModule]
|
|
952
|
+
}]
|
|
953
|
+
}] });
|
|
954
|
+
|
|
955
|
+
var buttonWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
956
|
+
__proto__: null,
|
|
957
|
+
AXPButtonWidgetViewComponent: AXPButtonWidgetViewComponent
|
|
958
|
+
});
|
|
959
|
+
|
|
960
960
|
const AXPButtonWidget = {
|
|
961
961
|
name: 'button-action',
|
|
962
962
|
title: 'Button',
|
|
@@ -1042,8 +1042,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
1042
1042
|
}] });
|
|
1043
1043
|
|
|
1044
1044
|
var checkboxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
1045
|
-
|
|
1046
|
-
|
|
1045
|
+
__proto__: null,
|
|
1046
|
+
AXPCheckBoxWidgetEditComponent: AXPCheckBoxWidgetEditComponent
|
|
1047
1047
|
});
|
|
1048
1048
|
|
|
1049
1049
|
const AXPCheckBoxWidget = {
|
|
@@ -1133,8 +1133,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
1133
1133
|
}] });
|
|
1134
1134
|
|
|
1135
1135
|
var contactWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
1136
|
-
|
|
1137
|
-
|
|
1136
|
+
__proto__: null,
|
|
1137
|
+
AXPContactWidgetColumnComponent: AXPContactWidgetColumnComponent
|
|
1138
1138
|
});
|
|
1139
1139
|
|
|
1140
1140
|
class popupComponent extends AXBasePageComponent {
|
|
@@ -1494,8 +1494,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
1494
1494
|
}] } });
|
|
1495
1495
|
|
|
1496
1496
|
var contactWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
1497
|
-
|
|
1498
|
-
|
|
1497
|
+
__proto__: null,
|
|
1498
|
+
AXPContactWidgetEditComponent: AXPContactWidgetEditComponent
|
|
1499
1499
|
});
|
|
1500
1500
|
|
|
1501
1501
|
class AXPContactWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -1513,8 +1513,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
1513
1513
|
}] });
|
|
1514
1514
|
|
|
1515
1515
|
var contactWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
1516
|
-
|
|
1517
|
-
|
|
1516
|
+
__proto__: null,
|
|
1517
|
+
AXPContactWidgetPrintComponent: AXPContactWidgetPrintComponent
|
|
1518
1518
|
});
|
|
1519
1519
|
|
|
1520
1520
|
class AXPContactWidgetViewComponent extends AXPWidgetComponent {
|
|
@@ -1629,8 +1629,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
1629
1629
|
}] });
|
|
1630
1630
|
|
|
1631
1631
|
var contactWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
1632
|
-
|
|
1633
|
-
|
|
1632
|
+
__proto__: null,
|
|
1633
|
+
AXPContactWidgetViewComponent: AXPContactWidgetViewComponent
|
|
1634
1634
|
});
|
|
1635
1635
|
|
|
1636
1636
|
const AXPContactWidget = {
|
|
@@ -1748,8 +1748,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
1748
1748
|
}] });
|
|
1749
1749
|
|
|
1750
1750
|
var dateTimeBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
1751
|
-
|
|
1752
|
-
|
|
1751
|
+
__proto__: null,
|
|
1752
|
+
AXPDateTimeBoxWidgetViewComponent: AXPDateTimeBoxWidgetViewComponent
|
|
1753
1753
|
});
|
|
1754
1754
|
|
|
1755
1755
|
class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -1909,8 +1909,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
1909
1909
|
}] } });
|
|
1910
1910
|
|
|
1911
1911
|
var dateTimeBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
1912
|
-
|
|
1913
|
-
|
|
1912
|
+
__proto__: null,
|
|
1913
|
+
AXPDateTimeBoxWidgetEditComponent: AXPDateTimeBoxWidgetEditComponent
|
|
1914
1914
|
});
|
|
1915
1915
|
|
|
1916
1916
|
class AXPDateTimeBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -1928,8 +1928,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
1928
1928
|
}] });
|
|
1929
1929
|
|
|
1930
1930
|
var dateTimeBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
1931
|
-
|
|
1932
|
-
|
|
1931
|
+
__proto__: null,
|
|
1932
|
+
AXPDateTimeBoxWidgetFilterComponent: AXPDateTimeBoxWidgetFilterComponent
|
|
1933
1933
|
});
|
|
1934
1934
|
|
|
1935
1935
|
class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -1990,8 +1990,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
1990
1990
|
}] });
|
|
1991
1991
|
|
|
1992
1992
|
var dateTimeBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
1993
|
-
|
|
1994
|
-
|
|
1993
|
+
__proto__: null,
|
|
1994
|
+
AXPDateTimeBoxWidgetColumnComponent: AXPDateTimeBoxWidgetColumnComponent
|
|
1995
1995
|
});
|
|
1996
1996
|
|
|
1997
1997
|
class AXPDateTimeBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -2009,8 +2009,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2009
2009
|
}] });
|
|
2010
2010
|
|
|
2011
2011
|
var dateTimeBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
2012
|
-
|
|
2013
|
-
|
|
2012
|
+
__proto__: null,
|
|
2013
|
+
AXPDateTimeBoxWidgetPrintComponent: AXPDateTimeBoxWidgetPrintComponent
|
|
2014
2014
|
});
|
|
2015
2015
|
|
|
2016
2016
|
const AXPDateTimeBoxWidget = {
|
|
@@ -2161,8 +2161,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2161
2161
|
}] });
|
|
2162
2162
|
|
|
2163
2163
|
var emailBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
2164
|
-
|
|
2165
|
-
|
|
2164
|
+
__proto__: null,
|
|
2165
|
+
AXPEmailBoxWidgetViewComponent: AXPEmailBoxWidgetViewComponent
|
|
2166
2166
|
});
|
|
2167
2167
|
|
|
2168
2168
|
class AXPEmailBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -2406,8 +2406,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2406
2406
|
}] } });
|
|
2407
2407
|
|
|
2408
2408
|
var emailBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
2409
|
-
|
|
2410
|
-
|
|
2409
|
+
__proto__: null,
|
|
2410
|
+
AXPEmailBoxWidgetEditComponent: AXPEmailBoxWidgetEditComponent
|
|
2411
2411
|
});
|
|
2412
2412
|
|
|
2413
2413
|
class AXPEmailBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -2425,8 +2425,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2425
2425
|
}] });
|
|
2426
2426
|
|
|
2427
2427
|
var emailBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
2428
|
-
|
|
2429
|
-
|
|
2428
|
+
__proto__: null,
|
|
2429
|
+
AXPEmailBoxWidgetFilterComponent: AXPEmailBoxWidgetFilterComponent
|
|
2430
2430
|
});
|
|
2431
2431
|
|
|
2432
2432
|
class AXPEmailBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -2491,8 +2491,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2491
2491
|
}] });
|
|
2492
2492
|
|
|
2493
2493
|
var emailBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
2494
|
-
|
|
2495
|
-
|
|
2494
|
+
__proto__: null,
|
|
2495
|
+
AXPEmailBoxWidgetColumnComponent: AXPEmailBoxWidgetColumnComponent
|
|
2496
2496
|
});
|
|
2497
2497
|
|
|
2498
2498
|
class AXPEmailBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -2510,8 +2510,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2510
2510
|
}] });
|
|
2511
2511
|
|
|
2512
2512
|
var emailBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
2513
|
-
|
|
2514
|
-
|
|
2513
|
+
__proto__: null,
|
|
2514
|
+
AXPEmailBoxWidgetPrintComponent: AXPEmailBoxWidgetPrintComponent
|
|
2515
2515
|
});
|
|
2516
2516
|
|
|
2517
2517
|
const AXPEmailBoxWidget = {
|
|
@@ -2580,8 +2580,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2580
2580
|
}] });
|
|
2581
2581
|
|
|
2582
2582
|
var largeTextWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
2583
|
-
|
|
2584
|
-
|
|
2583
|
+
__proto__: null,
|
|
2584
|
+
AXPLargeTextWidgetViewComponent: AXPLargeTextWidgetViewComponent
|
|
2585
2585
|
});
|
|
2586
2586
|
|
|
2587
2587
|
class AXPLargeTextWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -2651,8 +2651,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2651
2651
|
}] } });
|
|
2652
2652
|
|
|
2653
2653
|
var largeTextWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
2654
|
-
|
|
2655
|
-
|
|
2654
|
+
__proto__: null,
|
|
2655
|
+
AXPLargeTextWidgetEditComponent: AXPLargeTextWidgetEditComponent
|
|
2656
2656
|
});
|
|
2657
2657
|
|
|
2658
2658
|
class AXPLargeTextWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -2670,8 +2670,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2670
2670
|
}] });
|
|
2671
2671
|
|
|
2672
2672
|
var largeTextWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
2673
|
-
|
|
2674
|
-
|
|
2673
|
+
__proto__: null,
|
|
2674
|
+
AXPLargeTextWidgetFilterComponent: AXPLargeTextWidgetFilterComponent
|
|
2675
2675
|
});
|
|
2676
2676
|
|
|
2677
2677
|
class AXPLargeTextWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -2693,8 +2693,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2693
2693
|
}] });
|
|
2694
2694
|
|
|
2695
2695
|
var largeTextWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
2696
|
-
|
|
2697
|
-
|
|
2696
|
+
__proto__: null,
|
|
2697
|
+
AXPLargeTextWidgetColumnComponent: AXPLargeTextWidgetColumnComponent
|
|
2698
2698
|
});
|
|
2699
2699
|
|
|
2700
2700
|
class AXPLargeTextWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -2712,8 +2712,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2712
2712
|
}] });
|
|
2713
2713
|
|
|
2714
2714
|
var largeTextWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
2715
|
-
|
|
2716
|
-
|
|
2715
|
+
__proto__: null,
|
|
2716
|
+
AXPLargeTextWidgetPrintComponent: AXPLargeTextWidgetPrintComponent
|
|
2717
2717
|
});
|
|
2718
2718
|
|
|
2719
2719
|
const AXPLargeTextWidget = {
|
|
@@ -2866,8 +2866,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
2866
2866
|
}] });
|
|
2867
2867
|
|
|
2868
2868
|
var linkWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
2869
|
-
|
|
2870
|
-
|
|
2869
|
+
__proto__: null,
|
|
2870
|
+
AXPLinkWidgetViewComponent: AXPLinkWidgetViewComponent
|
|
2871
2871
|
});
|
|
2872
2872
|
|
|
2873
2873
|
class AXPLinkWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -3249,8 +3249,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3249
3249
|
}] } });
|
|
3250
3250
|
|
|
3251
3251
|
var linkWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3252
|
-
|
|
3253
|
-
|
|
3252
|
+
__proto__: null,
|
|
3253
|
+
AXPLinkWidgetEditComponent: AXPLinkWidgetEditComponent
|
|
3254
3254
|
});
|
|
3255
3255
|
|
|
3256
3256
|
class AXPLinkWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -3268,8 +3268,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3268
3268
|
}] });
|
|
3269
3269
|
|
|
3270
3270
|
var linkWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
3271
|
-
|
|
3272
|
-
|
|
3271
|
+
__proto__: null,
|
|
3272
|
+
AXPLinkWidgetFilterComponent: AXPLinkWidgetFilterComponent
|
|
3273
3273
|
});
|
|
3274
3274
|
|
|
3275
3275
|
class AXPLinkWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -3287,8 +3287,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3287
3287
|
}] });
|
|
3288
3288
|
|
|
3289
3289
|
var linkWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
3290
|
-
|
|
3291
|
-
|
|
3290
|
+
__proto__: null,
|
|
3291
|
+
AXPLinkWidgetColumnComponent: AXPLinkWidgetColumnComponent
|
|
3292
3292
|
});
|
|
3293
3293
|
|
|
3294
3294
|
class AXPLinkWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -3306,8 +3306,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3306
3306
|
}] });
|
|
3307
3307
|
|
|
3308
3308
|
var linkWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
3309
|
-
|
|
3310
|
-
|
|
3309
|
+
__proto__: null,
|
|
3310
|
+
AXPLinkWidgetPrintComponent: AXPLinkWidgetPrintComponent
|
|
3311
3311
|
});
|
|
3312
3312
|
|
|
3313
3313
|
const AXPLinkWidget = {
|
|
@@ -3384,8 +3384,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3384
3384
|
}] });
|
|
3385
3385
|
|
|
3386
3386
|
var numberBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
3387
|
-
|
|
3388
|
-
|
|
3387
|
+
__proto__: null,
|
|
3388
|
+
AXPNumberBoxWidgetViewComponent: AXPNumberBoxWidgetViewComponent
|
|
3389
3389
|
});
|
|
3390
3390
|
|
|
3391
3391
|
class AXPNumberBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -3524,8 +3524,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3524
3524
|
}] } });
|
|
3525
3525
|
|
|
3526
3526
|
var numberBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3527
|
-
|
|
3528
|
-
|
|
3527
|
+
__proto__: null,
|
|
3528
|
+
AXPNumberBoxWidgetEditComponent: AXPNumberBoxWidgetEditComponent
|
|
3529
3529
|
});
|
|
3530
3530
|
|
|
3531
3531
|
class AXPNumberBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -3543,8 +3543,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3543
3543
|
}] });
|
|
3544
3544
|
|
|
3545
3545
|
var numberBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
3546
|
-
|
|
3547
|
-
|
|
3546
|
+
__proto__: null,
|
|
3547
|
+
AXPNumberBoxWidgetFilterComponent: AXPNumberBoxWidgetFilterComponent
|
|
3548
3548
|
});
|
|
3549
3549
|
|
|
3550
3550
|
class AXPNumberBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -3579,8 +3579,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3579
3579
|
}] });
|
|
3580
3580
|
|
|
3581
3581
|
var numberBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
3582
|
-
|
|
3583
|
-
|
|
3582
|
+
__proto__: null,
|
|
3583
|
+
AXPNumberBoxWidgetColumnComponent: AXPNumberBoxWidgetColumnComponent
|
|
3584
3584
|
});
|
|
3585
3585
|
|
|
3586
3586
|
class AXPNumberBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -3598,8 +3598,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3598
3598
|
}] });
|
|
3599
3599
|
|
|
3600
3600
|
var numberBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
3601
|
-
|
|
3602
|
-
|
|
3601
|
+
__proto__: null,
|
|
3602
|
+
AXPNumberBoxWidgetPrintComponent: AXPNumberBoxWidgetPrintComponent
|
|
3603
3603
|
});
|
|
3604
3604
|
|
|
3605
3605
|
const AXPNumberBoxWidget = {
|
|
@@ -3722,8 +3722,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3722
3722
|
}] });
|
|
3723
3723
|
|
|
3724
3724
|
var passwordBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
3725
|
-
|
|
3726
|
-
|
|
3725
|
+
__proto__: null,
|
|
3726
|
+
AXPPasswordBoxWidgetViewComponent: AXPPasswordBoxWidgetViewComponent
|
|
3727
3727
|
});
|
|
3728
3728
|
|
|
3729
3729
|
class AXPPasswordBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -3769,8 +3769,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3769
3769
|
}] } });
|
|
3770
3770
|
|
|
3771
3771
|
var passwordBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
3772
|
-
|
|
3773
|
-
|
|
3772
|
+
__proto__: null,
|
|
3773
|
+
AXPPasswordBoxWidgetEditComponent: AXPPasswordBoxWidgetEditComponent
|
|
3774
3774
|
});
|
|
3775
3775
|
|
|
3776
3776
|
class AXPPasswordBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -3788,8 +3788,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3788
3788
|
}] });
|
|
3789
3789
|
|
|
3790
3790
|
var passwordBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
3791
|
-
|
|
3792
|
-
|
|
3791
|
+
__proto__: null,
|
|
3792
|
+
AXPPasswordBoxWidgetFilterComponent: AXPPasswordBoxWidgetFilterComponent
|
|
3793
3793
|
});
|
|
3794
3794
|
|
|
3795
3795
|
class AXPPasswordBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -3844,8 +3844,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3844
3844
|
}] });
|
|
3845
3845
|
|
|
3846
3846
|
var passwordBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
3847
|
-
|
|
3848
|
-
|
|
3847
|
+
__proto__: null,
|
|
3848
|
+
AXPPasswordBoxWidgetColumnComponent: AXPPasswordBoxWidgetColumnComponent
|
|
3849
3849
|
});
|
|
3850
3850
|
|
|
3851
3851
|
class AXPPasswordBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -3863,8 +3863,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
3863
3863
|
}] });
|
|
3864
3864
|
|
|
3865
3865
|
var passwordBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
3866
|
-
|
|
3867
|
-
|
|
3866
|
+
__proto__: null,
|
|
3867
|
+
AXPPasswordBoxWidgetPrintComponent: AXPPasswordBoxWidgetPrintComponent
|
|
3868
3868
|
});
|
|
3869
3869
|
|
|
3870
3870
|
const AXPPasswordBoxWidget = {
|
|
@@ -4011,8 +4011,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4011
4011
|
}] });
|
|
4012
4012
|
|
|
4013
4013
|
var phoneBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
4014
|
-
|
|
4015
|
-
|
|
4014
|
+
__proto__: null,
|
|
4015
|
+
AXPPhoneBoxWidgetViewComponent: AXPPhoneBoxWidgetViewComponent
|
|
4016
4016
|
});
|
|
4017
4017
|
|
|
4018
4018
|
class AXPPhoneBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -4227,8 +4227,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4227
4227
|
}] } });
|
|
4228
4228
|
|
|
4229
4229
|
var phoneBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
4230
|
-
|
|
4231
|
-
|
|
4230
|
+
__proto__: null,
|
|
4231
|
+
AXPPhoneBoxWidgetEditComponent: AXPPhoneBoxWidgetEditComponent
|
|
4232
4232
|
});
|
|
4233
4233
|
|
|
4234
4234
|
class AXPPhoneBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -4246,8 +4246,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4246
4246
|
}] });
|
|
4247
4247
|
|
|
4248
4248
|
var phoneBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
4249
|
-
|
|
4250
|
-
|
|
4249
|
+
__proto__: null,
|
|
4250
|
+
AXPPhoneBoxWidgetFilterComponent: AXPPhoneBoxWidgetFilterComponent
|
|
4251
4251
|
});
|
|
4252
4252
|
|
|
4253
4253
|
class AXPPhoneBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -4312,8 +4312,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4312
4312
|
}] });
|
|
4313
4313
|
|
|
4314
4314
|
var phoneBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
4315
|
-
|
|
4316
|
-
|
|
4315
|
+
__proto__: null,
|
|
4316
|
+
AXPPhoneBoxWidgetColumnComponent: AXPPhoneBoxWidgetColumnComponent
|
|
4317
4317
|
});
|
|
4318
4318
|
|
|
4319
4319
|
class AXPPhoneBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -4331,8 +4331,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4331
4331
|
}] });
|
|
4332
4332
|
|
|
4333
4333
|
var phoneBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
4334
|
-
|
|
4335
|
-
|
|
4334
|
+
__proto__: null,
|
|
4335
|
+
AXPPhoneBoxWidgetPrintComponent: AXPPhoneBoxWidgetPrintComponent
|
|
4336
4336
|
});
|
|
4337
4337
|
|
|
4338
4338
|
const AXPPhoneBoxWidget = {
|
|
@@ -4412,8 +4412,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4412
4412
|
}] });
|
|
4413
4413
|
|
|
4414
4414
|
var richTextWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
4415
|
-
|
|
4416
|
-
|
|
4415
|
+
__proto__: null,
|
|
4416
|
+
AXPRichTextWidgetViewComponent: AXPRichTextWidgetViewComponent
|
|
4417
4417
|
});
|
|
4418
4418
|
|
|
4419
4419
|
class AXPRichTextWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -4531,8 +4531,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4531
4531
|
}] } });
|
|
4532
4532
|
|
|
4533
4533
|
var richTextWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
4534
|
-
|
|
4535
|
-
|
|
4534
|
+
__proto__: null,
|
|
4535
|
+
AXPRichTextWidgetEditComponent: AXPRichTextWidgetEditComponent
|
|
4536
4536
|
});
|
|
4537
4537
|
|
|
4538
4538
|
class AXPRichTextWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -4550,8 +4550,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4550
4550
|
}] });
|
|
4551
4551
|
|
|
4552
4552
|
var richTextWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
4553
|
-
|
|
4554
|
-
|
|
4553
|
+
__proto__: null,
|
|
4554
|
+
AXPRichTextWidgetFilterComponent: AXPRichTextWidgetFilterComponent
|
|
4555
4555
|
});
|
|
4556
4556
|
|
|
4557
4557
|
class AXPRichTextWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -4591,8 +4591,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4591
4591
|
}] });
|
|
4592
4592
|
|
|
4593
4593
|
var richTextWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
4594
|
-
|
|
4595
|
-
|
|
4594
|
+
__proto__: null,
|
|
4595
|
+
AXPRichTextWidgetColumnComponent: AXPRichTextWidgetColumnComponent
|
|
4596
4596
|
});
|
|
4597
4597
|
|
|
4598
4598
|
class AXPRichTextWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -4610,8 +4610,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4610
4610
|
}] });
|
|
4611
4611
|
|
|
4612
4612
|
var richTextWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
4613
|
-
|
|
4614
|
-
|
|
4613
|
+
__proto__: null,
|
|
4614
|
+
AXPRichTextWidgetPrintComponent: AXPRichTextWidgetPrintComponent
|
|
4615
4615
|
});
|
|
4616
4616
|
|
|
4617
4617
|
const AXPRichTextWidget = {
|
|
@@ -4696,13 +4696,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4696
4696
|
}] });
|
|
4697
4697
|
|
|
4698
4698
|
var selectBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
4699
|
-
|
|
4700
|
-
|
|
4699
|
+
__proto__: null,
|
|
4700
|
+
AXPSelectBoxWidgetColumnComponent: AXPSelectBoxWidgetColumnComponent
|
|
4701
|
+
});
|
|
4702
|
+
|
|
4703
|
+
const DEFAULT_STRATEGY_CONFIG = {
|
|
4704
|
+
selectValueStrategy: 'item',
|
|
4705
|
+
lookupValueStrategy: 'item',
|
|
4706
|
+
};
|
|
4707
|
+
const STRATEGY_CONFIG_TOKEN = new InjectionToken('STRATEGY_CONFIG', {
|
|
4708
|
+
providedIn: 'root',
|
|
4709
|
+
factory: () => DEFAULT_STRATEGY_CONFIG,
|
|
4701
4710
|
});
|
|
4702
4711
|
|
|
4703
4712
|
class AXPSelectBoxWidgetEditComponent extends AXPDataListWidgetComponent {
|
|
4704
4713
|
constructor() {
|
|
4705
4714
|
super(...arguments);
|
|
4715
|
+
this.widgetsConfigs = inject(STRATEGY_CONFIG_TOKEN);
|
|
4706
4716
|
this.validationRules = computed(() => this.options()['validationRules'] ?? []);
|
|
4707
4717
|
this.multiple = computed(() => this.options()['multiple']);
|
|
4708
4718
|
this.disabled = computed(() => this.options()['disabled']);
|
|
@@ -4716,11 +4726,16 @@ class AXPSelectBoxWidgetEditComponent extends AXPDataListWidgetComponent {
|
|
|
4716
4726
|
handleValueChange(e) {
|
|
4717
4727
|
this.selectedItems.set(e.component.selectedItems);
|
|
4718
4728
|
if (e.isUserInteraction) {
|
|
4719
|
-
if (this.
|
|
4720
|
-
this.setValue(
|
|
4729
|
+
if (this.widgetsConfigs.selectValueStrategy === 'valueField') {
|
|
4730
|
+
this.setValue(e.value);
|
|
4721
4731
|
}
|
|
4722
4732
|
else {
|
|
4723
|
-
|
|
4733
|
+
if (this.multiple()) {
|
|
4734
|
+
this.setValue(this.selectedItems());
|
|
4735
|
+
}
|
|
4736
|
+
else {
|
|
4737
|
+
this.setValue(this.selectedItems()[0]);
|
|
4738
|
+
}
|
|
4724
4739
|
}
|
|
4725
4740
|
}
|
|
4726
4741
|
}
|
|
@@ -4805,8 +4820,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4805
4820
|
}] } });
|
|
4806
4821
|
|
|
4807
4822
|
var selectBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
4808
|
-
|
|
4809
|
-
|
|
4823
|
+
__proto__: null,
|
|
4824
|
+
AXPSelectBoxWidgetEditComponent: AXPSelectBoxWidgetEditComponent
|
|
4810
4825
|
});
|
|
4811
4826
|
|
|
4812
4827
|
class AXPSelectBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -4824,8 +4839,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4824
4839
|
}] });
|
|
4825
4840
|
|
|
4826
4841
|
var selectBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
4827
|
-
|
|
4828
|
-
|
|
4842
|
+
__proto__: null,
|
|
4843
|
+
AXPSelectBoxWidgetFilterComponent: AXPSelectBoxWidgetFilterComponent
|
|
4829
4844
|
});
|
|
4830
4845
|
|
|
4831
4846
|
class AXPSelectBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -4843,8 +4858,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4843
4858
|
}] });
|
|
4844
4859
|
|
|
4845
4860
|
var selectBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
4846
|
-
|
|
4847
|
-
|
|
4861
|
+
__proto__: null,
|
|
4862
|
+
AXPSelectBoxWidgetPrintComponent: AXPSelectBoxWidgetPrintComponent
|
|
4848
4863
|
});
|
|
4849
4864
|
|
|
4850
4865
|
class AXPSelectBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
@@ -4901,8 +4916,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4901
4916
|
}] } });
|
|
4902
4917
|
|
|
4903
4918
|
var selectBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
4904
|
-
|
|
4905
|
-
|
|
4919
|
+
__proto__: null,
|
|
4920
|
+
AXPSelectBoxWidgetViewComponent: AXPSelectBoxWidgetViewComponent
|
|
4906
4921
|
});
|
|
4907
4922
|
|
|
4908
4923
|
const AXPSelectBoxWidget = {
|
|
@@ -4994,8 +5009,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
4994
5009
|
}] } });
|
|
4995
5010
|
|
|
4996
5011
|
var selectionListWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
4997
|
-
|
|
4998
|
-
|
|
5012
|
+
__proto__: null,
|
|
5013
|
+
AXPSelectionListWidgetViewComponent: AXPSelectionListWidgetViewComponent
|
|
4999
5014
|
});
|
|
5000
5015
|
|
|
5001
5016
|
class AXPSelectionListWidgetDesignerComponent extends AXPDataListWidgetComponent {
|
|
@@ -5076,8 +5091,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5076
5091
|
}] } });
|
|
5077
5092
|
|
|
5078
5093
|
var selectionListWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
5079
|
-
|
|
5080
|
-
|
|
5094
|
+
__proto__: null,
|
|
5095
|
+
AXPSelectionListWidgetDesignerComponent: AXPSelectionListWidgetDesignerComponent
|
|
5081
5096
|
});
|
|
5082
5097
|
|
|
5083
5098
|
class AXPSelectionListWidgetEditComponent extends AXPDataListWidgetComponent {
|
|
@@ -5168,8 +5183,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5168
5183
|
}] } });
|
|
5169
5184
|
|
|
5170
5185
|
var selectionListWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
5171
|
-
|
|
5172
|
-
|
|
5186
|
+
__proto__: null,
|
|
5187
|
+
AXPSelectionListWidgetEditComponent: AXPSelectionListWidgetEditComponent
|
|
5173
5188
|
});
|
|
5174
5189
|
|
|
5175
5190
|
class AXPSelectionListWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -5187,8 +5202,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5187
5202
|
}] });
|
|
5188
5203
|
|
|
5189
5204
|
var selectionListWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
5190
|
-
|
|
5191
|
-
|
|
5205
|
+
__proto__: null,
|
|
5206
|
+
AXPSelectionListWidgetFilterComponent: AXPSelectionListWidgetFilterComponent
|
|
5192
5207
|
});
|
|
5193
5208
|
|
|
5194
5209
|
class AXPSelectionListWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -5241,8 +5256,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5241
5256
|
}] });
|
|
5242
5257
|
|
|
5243
5258
|
var selectionListWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
5244
|
-
|
|
5245
|
-
|
|
5259
|
+
__proto__: null,
|
|
5260
|
+
AXPSelectionListWidgetColumnComponent: AXPSelectionListWidgetColumnComponent
|
|
5246
5261
|
});
|
|
5247
5262
|
|
|
5248
5263
|
class AXPSelectionListWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -5260,8 +5275,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5260
5275
|
}] });
|
|
5261
5276
|
|
|
5262
5277
|
var selectionListWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
5263
|
-
|
|
5264
|
-
|
|
5278
|
+
__proto__: null,
|
|
5279
|
+
AXPSelectionListWidgetPrintComponent: AXPSelectionListWidgetPrintComponent
|
|
5265
5280
|
});
|
|
5266
5281
|
|
|
5267
5282
|
const AXPSelectionListWidget = {
|
|
@@ -5350,8 +5365,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5350
5365
|
}] });
|
|
5351
5366
|
|
|
5352
5367
|
var textBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
5353
|
-
|
|
5354
|
-
|
|
5368
|
+
__proto__: null,
|
|
5369
|
+
AXPTextBoxWidgetViewComponent: AXPTextBoxWidgetViewComponent
|
|
5355
5370
|
});
|
|
5356
5371
|
|
|
5357
5372
|
class AXPTextBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -5469,8 +5484,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5469
5484
|
}] } });
|
|
5470
5485
|
|
|
5471
5486
|
var textBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
5472
|
-
|
|
5473
|
-
|
|
5487
|
+
__proto__: null,
|
|
5488
|
+
AXPTextBoxWidgetEditComponent: AXPTextBoxWidgetEditComponent
|
|
5474
5489
|
});
|
|
5475
5490
|
|
|
5476
5491
|
class AXPTextBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -5488,8 +5503,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5488
5503
|
}] });
|
|
5489
5504
|
|
|
5490
5505
|
var textBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
5491
|
-
|
|
5492
|
-
|
|
5506
|
+
__proto__: null,
|
|
5507
|
+
AXPTextBoxWidgetFilterComponent: AXPTextBoxWidgetFilterComponent
|
|
5493
5508
|
});
|
|
5494
5509
|
|
|
5495
5510
|
class AXPTextBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -5508,8 +5523,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5508
5523
|
}] });
|
|
5509
5524
|
|
|
5510
5525
|
var textBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
5511
|
-
|
|
5512
|
-
|
|
5526
|
+
__proto__: null,
|
|
5527
|
+
AXPTextBoxWidgetColumnComponent: AXPTextBoxWidgetColumnComponent
|
|
5513
5528
|
});
|
|
5514
5529
|
|
|
5515
5530
|
class AXPTextBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -5527,8 +5542,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5527
5542
|
}] });
|
|
5528
5543
|
|
|
5529
5544
|
var textBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
5530
|
-
|
|
5531
|
-
|
|
5545
|
+
__proto__: null,
|
|
5546
|
+
AXPTextBoxWidgetPrintComponent: AXPTextBoxWidgetPrintComponent
|
|
5532
5547
|
});
|
|
5533
5548
|
|
|
5534
5549
|
const AXPTextBoxWidget = {
|
|
@@ -5617,8 +5632,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5617
5632
|
}] });
|
|
5618
5633
|
|
|
5619
5634
|
var toggleWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
5620
|
-
|
|
5621
|
-
|
|
5635
|
+
__proto__: null,
|
|
5636
|
+
AXPToggleWidgetViewComponent: AXPToggleWidgetViewComponent
|
|
5622
5637
|
});
|
|
5623
5638
|
|
|
5624
5639
|
class AXPToggleWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -5682,8 +5697,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5682
5697
|
}] } });
|
|
5683
5698
|
|
|
5684
5699
|
var toggleWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
5685
|
-
|
|
5686
|
-
|
|
5700
|
+
__proto__: null,
|
|
5701
|
+
AXPToggleWidgetEditComponent: AXPToggleWidgetEditComponent
|
|
5687
5702
|
});
|
|
5688
5703
|
|
|
5689
5704
|
class AXPToggleWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -5701,8 +5716,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5701
5716
|
}] });
|
|
5702
5717
|
|
|
5703
5718
|
var toggleWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
5704
|
-
|
|
5705
|
-
|
|
5719
|
+
__proto__: null,
|
|
5720
|
+
AXPToggleWidgetFilterComponent: AXPToggleWidgetFilterComponent
|
|
5706
5721
|
});
|
|
5707
5722
|
|
|
5708
5723
|
class AXPToggleWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -5750,8 +5765,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5750
5765
|
}] });
|
|
5751
5766
|
|
|
5752
5767
|
var toggleWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
5753
|
-
|
|
5754
|
-
|
|
5768
|
+
__proto__: null,
|
|
5769
|
+
AXPToggleWidgetColumnComponent: AXPToggleWidgetColumnComponent
|
|
5755
5770
|
});
|
|
5756
5771
|
|
|
5757
5772
|
class AXPToggleWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -5770,8 +5785,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5770
5785
|
}] });
|
|
5771
5786
|
|
|
5772
5787
|
var toggleWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
5773
|
-
|
|
5774
|
-
|
|
5788
|
+
__proto__: null,
|
|
5789
|
+
AXPToggleWidgetPrintComponent: AXPToggleWidgetPrintComponent
|
|
5775
5790
|
});
|
|
5776
5791
|
|
|
5777
5792
|
const AXPToggleWidget = {
|
|
@@ -5828,8 +5843,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5828
5843
|
}] });
|
|
5829
5844
|
|
|
5830
5845
|
var avatarWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
5831
|
-
|
|
5832
|
-
|
|
5846
|
+
__proto__: null,
|
|
5847
|
+
AXPAvatarWidgetViewComponent: AXPAvatarWidgetViewComponent
|
|
5833
5848
|
});
|
|
5834
5849
|
|
|
5835
5850
|
class AXPAvatarWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -5964,8 +5979,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5964
5979
|
}] });
|
|
5965
5980
|
|
|
5966
5981
|
var avatarWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
5967
|
-
|
|
5968
|
-
|
|
5982
|
+
__proto__: null,
|
|
5983
|
+
AXPAvatarWidgetEditComponent: AXPAvatarWidgetEditComponent
|
|
5969
5984
|
});
|
|
5970
5985
|
|
|
5971
5986
|
class AXPAvatarWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -5984,8 +5999,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
5984
5999
|
}] });
|
|
5985
6000
|
|
|
5986
6001
|
var avatarWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
5987
|
-
|
|
5988
|
-
|
|
6002
|
+
__proto__: null,
|
|
6003
|
+
AXPAvatarWidgetColumnComponent: AXPAvatarWidgetColumnComponent
|
|
5989
6004
|
});
|
|
5990
6005
|
|
|
5991
6006
|
class AXPAvatarWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -6004,8 +6019,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6004
6019
|
}] });
|
|
6005
6020
|
|
|
6006
6021
|
var avatarWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
6007
|
-
|
|
6008
|
-
|
|
6022
|
+
__proto__: null,
|
|
6023
|
+
AXPAvatarWidgetPrintComponent: AXPAvatarWidgetPrintComponent
|
|
6009
6024
|
});
|
|
6010
6025
|
|
|
6011
6026
|
class AXPAvatarWidgetDesignerComponent extends AXPWidgetComponent {
|
|
@@ -6023,8 +6038,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6023
6038
|
}] });
|
|
6024
6039
|
|
|
6025
6040
|
var avatarWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
6026
|
-
|
|
6027
|
-
|
|
6041
|
+
__proto__: null,
|
|
6042
|
+
AXPAvatarWidgetDesignerComponent: AXPAvatarWidgetDesignerComponent
|
|
6028
6043
|
});
|
|
6029
6044
|
|
|
6030
6045
|
const AXPAvatarWidget = {
|
|
@@ -6072,8 +6087,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6072
6087
|
}] });
|
|
6073
6088
|
|
|
6074
6089
|
var fileBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
6075
|
-
|
|
6076
|
-
|
|
6090
|
+
__proto__: null,
|
|
6091
|
+
AXPFileBoxWidgetColumnComponent: AXPFileBoxWidgetColumnComponent
|
|
6077
6092
|
});
|
|
6078
6093
|
|
|
6079
6094
|
class AXPFileManagementService {
|
|
@@ -6204,8 +6219,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6204
6219
|
}] } });
|
|
6205
6220
|
|
|
6206
6221
|
var fileBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
6207
|
-
|
|
6208
|
-
|
|
6222
|
+
__proto__: null,
|
|
6223
|
+
AXPFileBoxWidgetEditComponent: AXPFileBoxWidgetEditComponent
|
|
6209
6224
|
});
|
|
6210
6225
|
|
|
6211
6226
|
class AXPFileBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -6223,8 +6238,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6223
6238
|
}] });
|
|
6224
6239
|
|
|
6225
6240
|
var fileBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
6226
|
-
|
|
6227
|
-
|
|
6241
|
+
__proto__: null,
|
|
6242
|
+
AXPFileBoxWidgetFilterComponent: AXPFileBoxWidgetFilterComponent
|
|
6228
6243
|
});
|
|
6229
6244
|
|
|
6230
6245
|
class AXPFileBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -6242,8 +6257,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6242
6257
|
}] });
|
|
6243
6258
|
|
|
6244
6259
|
var fileBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
6245
|
-
|
|
6246
|
-
|
|
6260
|
+
__proto__: null,
|
|
6261
|
+
AXPFileBoxWidgetPrintComponent: AXPFileBoxWidgetPrintComponent
|
|
6247
6262
|
});
|
|
6248
6263
|
|
|
6249
6264
|
class AXPFileBoxWidgetViewComponent extends AXPWidgetComponent {
|
|
@@ -6450,8 +6465,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6450
6465
|
}] });
|
|
6451
6466
|
|
|
6452
6467
|
var fileBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
6453
|
-
|
|
6454
|
-
|
|
6468
|
+
__proto__: null,
|
|
6469
|
+
AXPFileBoxWidgetViewComponent: AXPFileBoxWidgetViewComponent
|
|
6455
6470
|
});
|
|
6456
6471
|
|
|
6457
6472
|
const AXPFileBoxWidget = {
|
|
@@ -6653,8 +6668,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6653
6668
|
}] });
|
|
6654
6669
|
|
|
6655
6670
|
var galleryWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
6656
|
-
|
|
6657
|
-
|
|
6671
|
+
__proto__: null,
|
|
6672
|
+
AXPGalleryWidgetViewComponent: AXPGalleryWidgetViewComponent
|
|
6658
6673
|
});
|
|
6659
6674
|
|
|
6660
6675
|
class AXPGalleryWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -6825,8 +6840,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6825
6840
|
}] } });
|
|
6826
6841
|
|
|
6827
6842
|
var galleryWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
6828
|
-
|
|
6829
|
-
|
|
6843
|
+
__proto__: null,
|
|
6844
|
+
AXPGalleryWidgetEditComponent: AXPGalleryWidgetEditComponent
|
|
6830
6845
|
});
|
|
6831
6846
|
|
|
6832
6847
|
class AXPGalleryWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -6844,8 +6859,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6844
6859
|
}] });
|
|
6845
6860
|
|
|
6846
6861
|
var galleryWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
6847
|
-
|
|
6848
|
-
|
|
6862
|
+
__proto__: null,
|
|
6863
|
+
AXPGalleryWidgetFilterComponent: AXPGalleryWidgetFilterComponent
|
|
6849
6864
|
});
|
|
6850
6865
|
|
|
6851
6866
|
class AXPGalleryWidgetColumnComponent extends AXPWidgetComponent {
|
|
@@ -6863,8 +6878,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6863
6878
|
}] });
|
|
6864
6879
|
|
|
6865
6880
|
var galleryWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
6866
|
-
|
|
6867
|
-
|
|
6881
|
+
__proto__: null,
|
|
6882
|
+
AXPGalleryWidgetColumnComponent: AXPGalleryWidgetColumnComponent
|
|
6868
6883
|
});
|
|
6869
6884
|
|
|
6870
6885
|
class AXPGalleryWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -6882,8 +6897,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6882
6897
|
}] });
|
|
6883
6898
|
|
|
6884
6899
|
var galleryWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
6885
|
-
|
|
6886
|
-
|
|
6900
|
+
__proto__: null,
|
|
6901
|
+
AXPGalleryWidgetPrintComponent: AXPGalleryWidgetPrintComponent
|
|
6887
6902
|
});
|
|
6888
6903
|
|
|
6889
6904
|
const AXPGalleryWidget = {
|
|
@@ -6956,8 +6971,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
6956
6971
|
}] });
|
|
6957
6972
|
|
|
6958
6973
|
var mapBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
6959
|
-
|
|
6960
|
-
|
|
6974
|
+
__proto__: null,
|
|
6975
|
+
AXPMapBoxWidgetViewComponent: AXPMapBoxWidgetViewComponent
|
|
6961
6976
|
});
|
|
6962
6977
|
|
|
6963
6978
|
class AXPMapBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -7036,8 +7051,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
7036
7051
|
}] } });
|
|
7037
7052
|
|
|
7038
7053
|
var mapBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
7039
|
-
|
|
7040
|
-
|
|
7054
|
+
__proto__: null,
|
|
7055
|
+
AXPMapBoxWidgetEditComponent: AXPMapBoxWidgetEditComponent
|
|
7041
7056
|
});
|
|
7042
7057
|
|
|
7043
7058
|
const AXPMapBoxWidget = {
|
|
@@ -7226,8 +7241,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
7226
7241
|
}] });
|
|
7227
7242
|
|
|
7228
7243
|
var signaturePadWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
7229
|
-
|
|
7230
|
-
|
|
7244
|
+
__proto__: null,
|
|
7245
|
+
AXPSignatureWidgetColumnComponent: AXPSignatureWidgetColumnComponent
|
|
7231
7246
|
});
|
|
7232
7247
|
|
|
7233
7248
|
class AXPSignatureWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -7370,8 +7385,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
7370
7385
|
}] } });
|
|
7371
7386
|
|
|
7372
7387
|
var signaturePadWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
7373
|
-
|
|
7374
|
-
|
|
7388
|
+
__proto__: null,
|
|
7389
|
+
AXPSignatureWidgetEditComponent: AXPSignatureWidgetEditComponent
|
|
7375
7390
|
});
|
|
7376
7391
|
|
|
7377
7392
|
class AXPSignatureWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -7403,8 +7418,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
7403
7418
|
}] });
|
|
7404
7419
|
|
|
7405
7420
|
var signaturePadWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
7406
|
-
|
|
7407
|
-
|
|
7421
|
+
__proto__: null,
|
|
7422
|
+
AXPSignatureWidgetPrintComponent: AXPSignatureWidgetPrintComponent
|
|
7408
7423
|
});
|
|
7409
7424
|
|
|
7410
7425
|
class AXPSignatureWidgetViewComponent extends AXPWidgetComponent {
|
|
@@ -7444,8 +7459,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
7444
7459
|
}] });
|
|
7445
7460
|
|
|
7446
7461
|
var signaturePadWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
7447
|
-
|
|
7448
|
-
|
|
7462
|
+
__proto__: null,
|
|
7463
|
+
AXPSignatureWidgetViewComponent: AXPSignatureWidgetViewComponent
|
|
7449
7464
|
});
|
|
7450
7465
|
|
|
7451
7466
|
const AXPSignatureWidget = {
|
|
@@ -7939,8 +7954,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
7939
7954
|
}] } });
|
|
7940
7955
|
|
|
7941
7956
|
var advancedGridWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
7942
|
-
|
|
7943
|
-
|
|
7957
|
+
__proto__: null,
|
|
7958
|
+
AXPAdvancedGridWidgetDesignerComponent: AXPAdvancedGridWidgetDesignerComponent
|
|
7944
7959
|
});
|
|
7945
7960
|
|
|
7946
7961
|
class AXPAdvancedGridWidgetViewComponent extends AXPWidgetComponent {
|
|
@@ -7978,8 +7993,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
7978
7993
|
}] });
|
|
7979
7994
|
|
|
7980
7995
|
var advancedGridWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
7981
|
-
|
|
7982
|
-
|
|
7996
|
+
__proto__: null,
|
|
7997
|
+
AXPAdvancedGridWidgetViewComponent: AXPAdvancedGridWidgetViewComponent
|
|
7983
7998
|
});
|
|
7984
7999
|
|
|
7985
8000
|
const AXPAdvancedGridWidget = {
|
|
@@ -8125,8 +8140,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
8125
8140
|
}] } });
|
|
8126
8141
|
|
|
8127
8142
|
var blockWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
8128
|
-
|
|
8129
|
-
|
|
8143
|
+
__proto__: null,
|
|
8144
|
+
AXPBlockWidgetDesignerComponent: AXPBlockWidgetDesignerComponent
|
|
8130
8145
|
});
|
|
8131
8146
|
|
|
8132
8147
|
class AXPBlockWidgetViewComponent extends AXPWidgetComponent {
|
|
@@ -8216,8 +8231,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
8216
8231
|
}] } });
|
|
8217
8232
|
|
|
8218
8233
|
var blockWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
8219
|
-
|
|
8220
|
-
|
|
8234
|
+
__proto__: null,
|
|
8235
|
+
AXPBlockWidgetViewComponent: AXPBlockWidgetViewComponent
|
|
8221
8236
|
});
|
|
8222
8237
|
|
|
8223
8238
|
const AXPBlockWidget = {
|
|
@@ -8291,8 +8306,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
8291
8306
|
}] } });
|
|
8292
8307
|
|
|
8293
8308
|
var pageWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
8294
|
-
|
|
8295
|
-
|
|
8309
|
+
__proto__: null,
|
|
8310
|
+
AXPPageWidgetViewComponent: AXPPageWidgetViewComponent
|
|
8296
8311
|
});
|
|
8297
8312
|
|
|
8298
8313
|
const AXPPageWidget = {
|
|
@@ -8376,8 +8391,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
8376
8391
|
}] });
|
|
8377
8392
|
|
|
8378
8393
|
var repeaterWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
8379
|
-
|
|
8380
|
-
|
|
8394
|
+
__proto__: null,
|
|
8395
|
+
AXPRepeaterWidgetViewComponent: AXPRepeaterWidgetViewComponent
|
|
8381
8396
|
});
|
|
8382
8397
|
|
|
8383
8398
|
class AXPRepeaterWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -8540,8 +8555,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
8540
8555
|
}] });
|
|
8541
8556
|
|
|
8542
8557
|
var repeaterWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
8543
|
-
|
|
8544
|
-
|
|
8558
|
+
__proto__: null,
|
|
8559
|
+
AXPRepeaterWidgetEditComponent: AXPRepeaterWidgetEditComponent
|
|
8545
8560
|
});
|
|
8546
8561
|
|
|
8547
8562
|
class AXPRepeaterWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -8560,8 +8575,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
8560
8575
|
}] });
|
|
8561
8576
|
|
|
8562
8577
|
var repeaterWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
8563
|
-
|
|
8564
|
-
|
|
8578
|
+
__proto__: null,
|
|
8579
|
+
AXPRepeaterWidgetPrintComponent: AXPRepeaterWidgetPrintComponent
|
|
8565
8580
|
});
|
|
8566
8581
|
|
|
8567
8582
|
class AXPRepeaterWidgetDesignerComponent extends AXPWidgetComponent {
|
|
@@ -8681,8 +8696,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
8681
8696
|
}] } });
|
|
8682
8697
|
|
|
8683
8698
|
var repeaterWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
8684
|
-
|
|
8685
|
-
|
|
8699
|
+
__proto__: null,
|
|
8700
|
+
AXPRepeaterWidgetDesignerComponent: AXPRepeaterWidgetDesignerComponent
|
|
8686
8701
|
});
|
|
8687
8702
|
|
|
8688
8703
|
const AXPRepeaterWidget = {
|
|
@@ -8973,8 +8988,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
8973
8988
|
}] });
|
|
8974
8989
|
|
|
8975
8990
|
var borderWidgetEditor_component = /*#__PURE__*/Object.freeze({
|
|
8976
|
-
|
|
8977
|
-
|
|
8991
|
+
__proto__: null,
|
|
8992
|
+
AXPBorderWidgetEditComponent: AXPBorderWidgetEditComponent
|
|
8978
8993
|
});
|
|
8979
8994
|
|
|
8980
8995
|
const AXPBorderWidget = {
|
|
@@ -9265,8 +9280,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9265
9280
|
}] });
|
|
9266
9281
|
|
|
9267
9282
|
var flexOptionsWidgetEditor_component = /*#__PURE__*/Object.freeze({
|
|
9268
|
-
|
|
9269
|
-
|
|
9283
|
+
__proto__: null,
|
|
9284
|
+
AXPFlexOptionsWidgetEditComponent: AXPFlexOptionsWidgetEditComponent
|
|
9270
9285
|
});
|
|
9271
9286
|
|
|
9272
9287
|
const AXPFlexOptionsWidget = {
|
|
@@ -9574,8 +9589,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9574
9589
|
}] });
|
|
9575
9590
|
|
|
9576
9591
|
var gridOptionsWidgetEditor_component = /*#__PURE__*/Object.freeze({
|
|
9577
|
-
|
|
9578
|
-
|
|
9592
|
+
__proto__: null,
|
|
9593
|
+
AXPGridOptionsWidgetEditComponent: AXPGridOptionsWidgetEditComponent
|
|
9579
9594
|
});
|
|
9580
9595
|
|
|
9581
9596
|
const AXPGridOptionsWidget = {
|
|
@@ -9707,8 +9722,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9707
9722
|
}] });
|
|
9708
9723
|
|
|
9709
9724
|
var spacingWidgetEditor_component = /*#__PURE__*/Object.freeze({
|
|
9710
|
-
|
|
9711
|
-
|
|
9725
|
+
__proto__: null,
|
|
9726
|
+
AXPSpacingWidgetEditComponent: AXPSpacingWidgetEditComponent
|
|
9712
9727
|
});
|
|
9713
9728
|
|
|
9714
9729
|
const AXPSpacingWidget = {
|
|
@@ -9745,8 +9760,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9745
9760
|
}] });
|
|
9746
9761
|
|
|
9747
9762
|
var cronJobWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
9748
|
-
|
|
9749
|
-
|
|
9763
|
+
__proto__: null,
|
|
9764
|
+
AXPCronJobWidgetViewComponent: AXPCronJobWidgetViewComponent
|
|
9750
9765
|
});
|
|
9751
9766
|
|
|
9752
9767
|
class AXPCronJobWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -9766,8 +9781,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9766
9781
|
}] });
|
|
9767
9782
|
|
|
9768
9783
|
var cronJobWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
9769
|
-
|
|
9770
|
-
|
|
9784
|
+
__proto__: null,
|
|
9785
|
+
AXPCronJobWidgetEditComponent: AXPCronJobWidgetEditComponent
|
|
9771
9786
|
});
|
|
9772
9787
|
|
|
9773
9788
|
class AXPCronJobWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -9785,8 +9800,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9785
9800
|
}] });
|
|
9786
9801
|
|
|
9787
9802
|
var cronJobWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
9788
|
-
|
|
9789
|
-
|
|
9803
|
+
__proto__: null,
|
|
9804
|
+
AXPCronJobWidgetFilterComponent: AXPCronJobWidgetFilterComponent
|
|
9790
9805
|
});
|
|
9791
9806
|
|
|
9792
9807
|
class AXPCronJobWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -9805,8 +9820,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9805
9820
|
}] });
|
|
9806
9821
|
|
|
9807
9822
|
var cronJobWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
9808
|
-
|
|
9809
|
-
|
|
9823
|
+
__proto__: null,
|
|
9824
|
+
AXPCronJobWidgetColumnComponent: AXPCronJobWidgetColumnComponent
|
|
9810
9825
|
});
|
|
9811
9826
|
|
|
9812
9827
|
class AXPCronJobWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -9824,8 +9839,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9824
9839
|
}] });
|
|
9825
9840
|
|
|
9826
9841
|
var cronJobWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
9827
|
-
|
|
9828
|
-
|
|
9842
|
+
__proto__: null,
|
|
9843
|
+
AXPCronJobWidgetPrintComponent: AXPCronJobWidgetPrintComponent
|
|
9829
9844
|
});
|
|
9830
9845
|
|
|
9831
9846
|
class AXPCronJobWidgetDesignerComponent extends AXPWidgetComponent {
|
|
@@ -9842,8 +9857,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9842
9857
|
}] });
|
|
9843
9858
|
|
|
9844
9859
|
var cronJobWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
9845
|
-
|
|
9846
|
-
|
|
9860
|
+
__proto__: null,
|
|
9861
|
+
AXPCronJobWidgetDesignerComponent: AXPCronJobWidgetDesignerComponent
|
|
9847
9862
|
});
|
|
9848
9863
|
|
|
9849
9864
|
const AXPCronJobWidget = {
|
|
@@ -9929,8 +9944,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
9929
9944
|
}] } });
|
|
9930
9945
|
|
|
9931
9946
|
var qrcodeWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
9932
|
-
|
|
9933
|
-
|
|
9947
|
+
__proto__: null,
|
|
9948
|
+
AXPQrcodeWidgetViewComponent: AXPQrcodeWidgetViewComponent
|
|
9934
9949
|
});
|
|
9935
9950
|
|
|
9936
9951
|
const AXPQrcodeWidget = {
|
|
@@ -10029,8 +10044,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10029
10044
|
}] });
|
|
10030
10045
|
|
|
10031
10046
|
var colorBoxWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
10032
|
-
|
|
10033
|
-
|
|
10047
|
+
__proto__: null,
|
|
10048
|
+
AXPColorBoxWidgetViewComponent: AXPColorBoxWidgetViewComponent
|
|
10034
10049
|
});
|
|
10035
10050
|
|
|
10036
10051
|
class AXPColorBoxWidgetEditComponent extends AXPWidgetComponent {
|
|
@@ -10082,8 +10097,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10082
10097
|
}] } });
|
|
10083
10098
|
|
|
10084
10099
|
var colorBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
10085
|
-
|
|
10086
|
-
|
|
10100
|
+
__proto__: null,
|
|
10101
|
+
AXPColorBoxWidgetEditComponent: AXPColorBoxWidgetEditComponent
|
|
10087
10102
|
});
|
|
10088
10103
|
|
|
10089
10104
|
class AXPColorBoxWidgetFilterComponent extends AXPWidgetComponent {
|
|
@@ -10101,8 +10116,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10101
10116
|
}] });
|
|
10102
10117
|
|
|
10103
10118
|
var colorBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
|
|
10104
|
-
|
|
10105
|
-
|
|
10119
|
+
__proto__: null,
|
|
10120
|
+
AXPColorBoxWidgetFilterComponent: AXPColorBoxWidgetFilterComponent
|
|
10106
10121
|
});
|
|
10107
10122
|
|
|
10108
10123
|
class AXPColorBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
|
|
@@ -10139,8 +10154,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10139
10154
|
}] });
|
|
10140
10155
|
|
|
10141
10156
|
var colorBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
|
|
10142
|
-
|
|
10143
|
-
|
|
10157
|
+
__proto__: null,
|
|
10158
|
+
AXPColorBoxWidgetColumnComponent: AXPColorBoxWidgetColumnComponent
|
|
10144
10159
|
});
|
|
10145
10160
|
|
|
10146
10161
|
class AXPColorBoxWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -10158,8 +10173,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10158
10173
|
}] });
|
|
10159
10174
|
|
|
10160
10175
|
var colorBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
10161
|
-
|
|
10162
|
-
|
|
10176
|
+
__proto__: null,
|
|
10177
|
+
AXPColorBoxWidgetPrintComponent: AXPColorBoxWidgetPrintComponent
|
|
10163
10178
|
});
|
|
10164
10179
|
|
|
10165
10180
|
const AXPColorBoxWidget = {
|
|
@@ -10273,8 +10288,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10273
10288
|
}] });
|
|
10274
10289
|
|
|
10275
10290
|
var booleanFilterWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
10276
|
-
|
|
10277
|
-
|
|
10291
|
+
__proto__: null,
|
|
10292
|
+
AXPBooleanFilterWidgetEditComponent: AXPBooleanFilterWidgetEditComponent
|
|
10278
10293
|
});
|
|
10279
10294
|
|
|
10280
10295
|
const AXPBooleanFilterWidget = {
|
|
@@ -10550,8 +10565,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10550
10565
|
}] });
|
|
10551
10566
|
|
|
10552
10567
|
var dateTimeFilterWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
10553
|
-
|
|
10554
|
-
|
|
10568
|
+
__proto__: null,
|
|
10569
|
+
AXPDateTimeFilterWidgetEditComponent: AXPDateTimeFilterWidgetEditComponent
|
|
10555
10570
|
});
|
|
10556
10571
|
|
|
10557
10572
|
const AXPDateTimeFilterWidget = {
|
|
@@ -10742,8 +10757,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10742
10757
|
}] });
|
|
10743
10758
|
|
|
10744
10759
|
var numberFilterWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
10745
|
-
|
|
10746
|
-
|
|
10760
|
+
__proto__: null,
|
|
10761
|
+
AXPNumberFilterWidgetEditComponent: AXPNumberFilterWidgetEditComponent
|
|
10747
10762
|
});
|
|
10748
10763
|
|
|
10749
10764
|
const AXPNumberFilterWidget = {
|
|
@@ -10834,8 +10849,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10834
10849
|
}] });
|
|
10835
10850
|
|
|
10836
10851
|
var selectFilterWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
10837
|
-
|
|
10838
|
-
|
|
10852
|
+
__proto__: null,
|
|
10853
|
+
AXPSelectFilterWidgetEditComponent: AXPSelectFilterWidgetEditComponent
|
|
10839
10854
|
});
|
|
10840
10855
|
|
|
10841
10856
|
const AXPSelectFilterWidget = {
|
|
@@ -10930,8 +10945,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
10930
10945
|
}] });
|
|
10931
10946
|
|
|
10932
10947
|
var stringFilterWidgetEdit_component = /*#__PURE__*/Object.freeze({
|
|
10933
|
-
|
|
10934
|
-
|
|
10948
|
+
__proto__: null,
|
|
10949
|
+
AXPStringWidgetFilterComponent: AXPStringWidgetFilterComponent
|
|
10935
10950
|
});
|
|
10936
10951
|
|
|
10937
10952
|
const AXPStringFilterWidget = {
|
|
@@ -11002,8 +11017,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11002
11017
|
}] } });
|
|
11003
11018
|
|
|
11004
11019
|
var formFieldWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
11005
|
-
|
|
11006
|
-
|
|
11020
|
+
__proto__: null,
|
|
11021
|
+
AXPFormFieldWidgetViewComponent: AXPFormFieldWidgetViewComponent
|
|
11007
11022
|
});
|
|
11008
11023
|
|
|
11009
11024
|
class AXPFormFieldWidgetDesignerComponent extends AXPWidgetComponent {
|
|
@@ -11064,8 +11079,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11064
11079
|
}] } });
|
|
11065
11080
|
|
|
11066
11081
|
var formFieldWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
11067
|
-
|
|
11068
|
-
|
|
11082
|
+
__proto__: null,
|
|
11083
|
+
AXPFormFieldWidgetDesignerComponent: AXPFormFieldWidgetDesignerComponent
|
|
11069
11084
|
});
|
|
11070
11085
|
|
|
11071
11086
|
const AXPFormFieldWidget = {
|
|
@@ -11128,8 +11143,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11128
11143
|
}] });
|
|
11129
11144
|
|
|
11130
11145
|
var gridWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
11131
|
-
|
|
11132
|
-
|
|
11146
|
+
__proto__: null,
|
|
11147
|
+
AXPGridWidgetViewComponent: AXPGridWidgetViewComponent
|
|
11133
11148
|
});
|
|
11134
11149
|
|
|
11135
11150
|
class AXPGridWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -11303,8 +11318,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11303
11318
|
}] } });
|
|
11304
11319
|
|
|
11305
11320
|
var gridWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
11306
|
-
|
|
11307
|
-
|
|
11321
|
+
__proto__: null,
|
|
11322
|
+
AXPGridWidgetDesignerComponent: AXPGridWidgetDesignerComponent
|
|
11308
11323
|
});
|
|
11309
11324
|
|
|
11310
11325
|
const AXPGridWidget = {
|
|
@@ -11418,8 +11433,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11418
11433
|
}] } });
|
|
11419
11434
|
|
|
11420
11435
|
var gridItemWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
11421
|
-
|
|
11422
|
-
|
|
11436
|
+
__proto__: null,
|
|
11437
|
+
AXPGridItemWidgetViewComponent: AXPGridItemWidgetViewComponent
|
|
11423
11438
|
});
|
|
11424
11439
|
|
|
11425
11440
|
class AXPGridItemWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -11546,8 +11561,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11546
11561
|
}] } });
|
|
11547
11562
|
|
|
11548
11563
|
var gridItemWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
11549
|
-
|
|
11550
|
-
|
|
11564
|
+
__proto__: null,
|
|
11565
|
+
AXPGridItemWidgetDesignerComponent: AXPGridItemWidgetDesignerComponent
|
|
11551
11566
|
});
|
|
11552
11567
|
|
|
11553
11568
|
const AXPGridItemWidget = {
|
|
@@ -11611,8 +11626,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11611
11626
|
}] });
|
|
11612
11627
|
|
|
11613
11628
|
var gridRowWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
11614
|
-
|
|
11615
|
-
|
|
11629
|
+
__proto__: null,
|
|
11630
|
+
AXPGridRowWidgetViewComponent: AXPGridRowWidgetViewComponent
|
|
11616
11631
|
});
|
|
11617
11632
|
|
|
11618
11633
|
class AXPGridRowWidgetPrintComponent extends AXPWidgetComponent {
|
|
@@ -11630,8 +11645,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11630
11645
|
}] });
|
|
11631
11646
|
|
|
11632
11647
|
var gridRowWidgetPrint_component = /*#__PURE__*/Object.freeze({
|
|
11633
|
-
|
|
11634
|
-
|
|
11648
|
+
__proto__: null,
|
|
11649
|
+
AXPGridRowWidgetPrintComponent: AXPGridRowWidgetPrintComponent
|
|
11635
11650
|
});
|
|
11636
11651
|
|
|
11637
11652
|
class AXPGridRowWidgetDesignerComponent extends AXPWidgetComponent {
|
|
@@ -11725,8 +11740,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11725
11740
|
}] } });
|
|
11726
11741
|
|
|
11727
11742
|
var gridRowWidgetDesigner_component = /*#__PURE__*/Object.freeze({
|
|
11728
|
-
|
|
11729
|
-
|
|
11743
|
+
__proto__: null,
|
|
11744
|
+
AXPGridRowWidgetDesignerComponent: AXPGridRowWidgetDesignerComponent
|
|
11730
11745
|
});
|
|
11731
11746
|
|
|
11732
11747
|
const AXPGridRowWidget = {
|
|
@@ -11780,8 +11795,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11780
11795
|
}] });
|
|
11781
11796
|
|
|
11782
11797
|
var textBlockWidgetView_component = /*#__PURE__*/Object.freeze({
|
|
11783
|
-
|
|
11784
|
-
|
|
11798
|
+
__proto__: null,
|
|
11799
|
+
AXPTextBlockWidgetViewComponent: AXPTextBlockWidgetViewComponent
|
|
11785
11800
|
});
|
|
11786
11801
|
|
|
11787
11802
|
const AXPTextBlockWidget = {
|
|
@@ -11828,7 +11843,7 @@ const AXPTextBlockWidget = {
|
|
|
11828
11843
|
class AXPWidgetsModule {
|
|
11829
11844
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPWidgetsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
11830
11845
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXPWidgetsModule, imports: [i1$6.AXPLayoutBuilderModule] }); }
|
|
11831
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPWidgetsModule, imports: [AXPLayoutBuilderModule.forChild({
|
|
11846
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPWidgetsModule, providers: [{ provide: STRATEGY_CONFIG_TOKEN, useValue: DEFAULT_STRATEGY_CONFIG }], imports: [AXPLayoutBuilderModule.forChild({
|
|
11832
11847
|
widgets: [
|
|
11833
11848
|
AXPDocumentWidget,
|
|
11834
11849
|
//
|
|
@@ -11930,6 +11945,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11930
11945
|
],
|
|
11931
11946
|
}),
|
|
11932
11947
|
],
|
|
11948
|
+
providers: [{ provide: STRATEGY_CONFIG_TOKEN, useValue: DEFAULT_STRATEGY_CONFIG }],
|
|
11933
11949
|
exports: [],
|
|
11934
11950
|
declarations: [],
|
|
11935
11951
|
}]
|
|
@@ -11939,5 +11955,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
|
|
|
11939
11955
|
* Generated bundle index. Do not edit.
|
|
11940
11956
|
*/
|
|
11941
11957
|
|
|
11942
|
-
export { AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetPrintComponent, AXPAvatarWidgetViewComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPFileBoxWidget, AXPFileBoxWidgetColumnComponent, AXPFileBoxWidgetEditComponent, AXPFileBoxWidgetFilterComponent, AXPFileBoxWidgetPrintComponent, AXPFileBoxWidgetViewComponent, AXPFileManagementService, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPGalleryWidget, AXPGalleryWidgetColumnComponent, AXPGalleryWidgetEditComponent, AXPGalleryWidgetFilterComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPPropertyEditorHelper, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BG_COLOR_PROPERTY, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_PROPERTY, AXP_DATE_FORMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ALIGN_CONTENT_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_COL_END_PROPERTY, AXP_LAYOUT_COL_SPAN_PROPERTY, AXP_LAYOUT_COL_START_PROPERTY, AXP_LAYOUT_FLEX_ALIGN_PROPERTY, AXP_LAYOUT_FLEX_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_JUSTIFY_PROPERTY, AXP_LAYOUT_FLEX_PROPERTIES, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_FLEX_WRAP_PROPERTY, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTIES, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, AXP_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, booleanDefaultProperty, findNonEmptyBreakpoints, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
|
|
11958
|
+
export { AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetPrintComponent, AXPAvatarWidgetViewComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPFileBoxWidget, AXPFileBoxWidgetColumnComponent, AXPFileBoxWidgetEditComponent, AXPFileBoxWidgetFilterComponent, AXPFileBoxWidgetPrintComponent, AXPFileBoxWidgetViewComponent, AXPFileManagementService, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPGalleryWidget, AXPGalleryWidgetColumnComponent, AXPGalleryWidgetEditComponent, AXPGalleryWidgetFilterComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPPropertyEditorHelper, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BG_COLOR_PROPERTY, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_PROPERTY, AXP_DATE_FORMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ALIGN_CONTENT_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_COL_END_PROPERTY, AXP_LAYOUT_COL_SPAN_PROPERTY, AXP_LAYOUT_COL_START_PROPERTY, AXP_LAYOUT_FLEX_ALIGN_PROPERTY, AXP_LAYOUT_FLEX_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_JUSTIFY_PROPERTY, AXP_LAYOUT_FLEX_PROPERTIES, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_FLEX_WRAP_PROPERTY, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTIES, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, AXP_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, DEFAULT_STRATEGY_CONFIG, STRATEGY_CONFIG_TOKEN, booleanDefaultProperty, findNonEmptyBreakpoints, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
|
|
11943
11959
|
//# sourceMappingURL=acorex-platform-widgets.mjs.map
|