@acorex/platform 18.0.11 → 18.0.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.
Files changed (62) hide show
  1. package/auth/lib/session.service.d.ts +2 -2
  2. package/core/utils/countdown-timer.d.ts +4 -2
  3. package/esm2022/auth/lib/session.service.mjs +23 -38
  4. package/esm2022/core/utils/countdown-timer.mjs +10 -3
  5. package/esm2022/layout/builder/lib/builder/widget.types.mjs +3 -2
  6. package/esm2022/layout/designer/lib/board/board.component.mjs +72 -13
  7. package/esm2022/layout/designer/lib/buttons/add-widget-button/add-widget-button.component.mjs +16 -16
  8. package/esm2022/layout/designer/lib/designer/designer.component.mjs +18 -41
  9. package/esm2022/layout/designer/lib/designer.service.mjs +37 -51
  10. package/esm2022/layout/designer/lib/header-menu/header-menu.component.mjs +24 -0
  11. package/esm2022/layout/designer/lib/history/history.component.mjs +21 -0
  12. package/esm2022/layout/designer/lib/history-manager.service.mjs +117 -0
  13. package/esm2022/layout/designer/lib/outline/outline.component.mjs +4 -5
  14. package/esm2022/layout/designer/lib/property-viewer/widget-property-viewer.component.mjs +2 -2
  15. package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.mjs +7 -6
  16. package/esm2022/widgets/lib/properties/editors.props.mjs +40 -5
  17. package/esm2022/widgets/lib/widgets/actions/button-widget/button-widget-view.component.mjs +19 -4
  18. package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget.config.mjs +2 -1
  19. package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-edit.component.mjs +7 -13
  20. package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-edit.component.mjs +5 -5
  21. package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-edit.component.mjs +2 -2
  22. package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-edit.component.mjs +31 -21
  23. package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget.config.mjs +11 -4
  24. package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget.config.mjs +2 -1
  25. package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-edit.component.mjs +4 -4
  26. package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget.config.mjs +3 -2
  27. package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget.config.mjs +2 -1
  28. package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget-designer.component.mjs +14 -4
  29. package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget.config.mjs +3 -2
  30. package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget.config.mjs +2 -1
  31. package/esm2022/widgets/lib/widgets/layout/text-block-widget/text-block-widget.config.mjs +2 -2
  32. package/fesm2022/acorex-platform-auth.mjs +22 -37
  33. package/fesm2022/acorex-platform-auth.mjs.map +1 -1
  34. package/fesm2022/acorex-platform-core.mjs +9 -2
  35. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  36. package/fesm2022/acorex-platform-layout-builder.mjs +2 -1
  37. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  38. package/fesm2022/acorex-platform-layout-designer.mjs +319 -156
  39. package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
  40. package/fesm2022/{acorex-platform-layouts-entity-modify-view.component-CjofXJku.mjs → acorex-platform-layouts-entity-modify-view.component-C9L8cyBm.mjs} +7 -5
  41. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-C9L8cyBm.mjs.map +1 -0
  42. package/fesm2022/acorex-platform-layouts.mjs +2 -2
  43. package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-DYb6bilD.mjs → acorex-platform-widgets-page-widget-designer.component-DlfG4EP1.mjs} +14 -4
  44. package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DlfG4EP1.mjs.map +1 -0
  45. package/fesm2022/acorex-platform-widgets.mjs +332 -267
  46. package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
  47. package/layout/builder/lib/builder/widget.types.d.ts +2 -2
  48. package/layout/designer/lib/board/board.component.d.ts +7 -1
  49. package/layout/designer/lib/designer/designer.component.d.ts +1 -10
  50. package/layout/designer/lib/designer.service.d.ts +20 -16
  51. package/layout/designer/lib/header-menu/header-menu.component.d.ts +7 -0
  52. package/layout/designer/lib/history/history.component.d.ts +7 -0
  53. package/layout/designer/lib/history-manager.service.d.ts +31 -0
  54. package/package.json +7 -7
  55. package/widgets/lib/properties/editors.props.d.ts +1 -0
  56. package/widgets/lib/widgets/actions/button-widget/button-widget-view.component.d.ts +1 -0
  57. package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-edit.component.d.ts +2 -4
  58. package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-edit.component.d.ts +2 -0
  59. package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-edit.component.d.ts +1 -1
  60. package/widgets/lib/widgets/layout/page-widget/page-widget-designer.component.d.ts +2 -0
  61. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-CjofXJku.mjs.map +0 -1
  62. package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DYb6bilD.mjs.map +0 -1
@@ -1,5 +1,7 @@
1
1
  import * as i5 from '@acorex/components/button';
2
2
  import { AXButtonModule } from '@acorex/components/button';
3
+ import * as i4 from '@acorex/components/loading';
4
+ import { AXLoadingModule } from '@acorex/components/loading';
3
5
  import * as i1$5 from '@acorex/platform/layout/builder';
4
6
  import { AXPWidgetComponent, cloneProperty, AXPColumnWidgetComponent, AXPLayoutBuilderModule, AXPContainerWidgetComponent } from '@acorex/platform/layout/builder';
5
7
  import * as i1$2 from '@angular/common';
@@ -11,7 +13,7 @@ import * as i1 from '@acorex/components/check-box';
11
13
  import { AXCheckBoxModule } from '@acorex/components/check-box';
12
14
  import * as i3 from '@acorex/components/decorators';
13
15
  import { AXDecoratorModule } from '@acorex/components/decorators';
14
- import * as i4 from '@acorex/components/form';
16
+ import * as i4$1 from '@acorex/components/form';
15
17
  import { AXFormModule } from '@acorex/components/form';
16
18
  import { AXValidationService, AXValidationModule } from '@acorex/core/validation';
17
19
  import * as i2 from '@angular/forms';
@@ -36,8 +38,6 @@ import { AXLoadingDialogService } from '@acorex/components/loading-dialog';
36
38
  import { Subscription } from 'rxjs';
37
39
  import * as i2$2 from '@acorex/components/image';
38
40
  import { AXImageModule } from '@acorex/components/image';
39
- import * as i4$1 from '@acorex/components/loading';
40
- import { AXLoadingModule } from '@acorex/components/loading';
41
41
  import * as i4$2 from '@acorex/components/text-area';
42
42
  import { AXTextAreaModule } from '@acorex/components/text-area';
43
43
  import { AXFormatService } from '@acorex/core/format';
@@ -66,6 +66,7 @@ class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
66
66
  this.color = computed(() => this.options()['color']?.id ?? 'primary');
67
67
  this.look = computed(() => this.options()['look']?.id ?? 'solid');
68
68
  this.text = computed(() => this.options()['text']);
69
+ this.loading = computed(() => this.options()['loading']);
69
70
  this.onClick = new EventEmitter();
70
71
  }
71
72
  handleClick(e) {
@@ -77,22 +78,34 @@ class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
77
78
  };
78
79
  }
79
80
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
80
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ` <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()"></ax-button> `, 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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
81
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
82
+ <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
83
+ @if(loading()){
84
+ <ax-loading> </ax-loading>
85
+ }
86
+ </ax-button>
87
+ `, 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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
81
88
  }
82
89
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, decorators: [{
83
90
  type: Component,
84
91
  args: [{
85
- template: ` <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()"></ax-button> `,
92
+ template: `
93
+ <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
94
+ @if(loading()){
95
+ <ax-loading> </ax-loading>
96
+ }
97
+ </ax-button>
98
+ `,
86
99
  standalone: true,
87
100
  changeDetection: ChangeDetectionStrategy.OnPush,
88
- imports: [CommonModule, AXButtonModule],
101
+ imports: [CommonModule, AXButtonModule, AXLoadingModule],
89
102
  inputs: [],
90
103
  }]
91
104
  }] });
92
105
 
93
106
  var buttonWidgetView_component = /*#__PURE__*/Object.freeze({
94
- __proto__: null,
95
- AXPButtonWidgetViewComponent: AXPButtonWidgetViewComponent
107
+ __proto__: null,
108
+ AXPButtonWidgetViewComponent: AXPButtonWidgetViewComponent
96
109
  });
97
110
 
98
111
  const AXP_STYLING_PROPERTY_GROUP = {
@@ -252,9 +265,11 @@ const AXP_BG_COLOR_PROPERTY = {
252
265
  group: AXP_STYLING_PROPERTY_GROUP,
253
266
  schema: {
254
267
  dataType: 'string',
255
- defaultValue: '#FFFFFF',
256
268
  interface: {
257
269
  path: 'options.backgroundColor',
270
+ options: {
271
+ hasClearButton: true,
272
+ },
258
273
  type: 'color-box',
259
274
  },
260
275
  },
@@ -262,7 +277,7 @@ const AXP_BG_COLOR_PROPERTY = {
262
277
  };
263
278
  const AXP_HAS_CLEAR_BUTTON_PROPERTY = {
264
279
  name: 'hasClearButton',
265
- title: 'has Clear Button',
280
+ title: 'Clear Button',
266
281
  group: AXP_BEHAVIOR_PROPERTY_GROUP,
267
282
  schema: {
268
283
  dataType: 'boolean',
@@ -276,7 +291,7 @@ const AXP_HAS_CLEAR_BUTTON_PROPERTY = {
276
291
  };
277
292
  const AXP_HAS_COPY_ICON_PROPERTY = {
278
293
  name: 'hasCopyIcon',
279
- title: 'has Copy Icon',
294
+ title: 'Copy Icon',
280
295
  group: AXP_BEHAVIOR_PROPERTY_GROUP,
281
296
  schema: {
282
297
  dataType: 'boolean',
@@ -290,7 +305,7 @@ const AXP_HAS_COPY_ICON_PROPERTY = {
290
305
  };
291
306
  const AXP_HAS_EYE_ICON_PROPERTY = {
292
307
  name: 'hasEyeIcon',
293
- title: 'has Eye Icon',
308
+ title: 'Eye Icon',
294
309
  group: AXP_BEHAVIOR_PROPERTY_GROUP,
295
310
  schema: {
296
311
  dataType: 'boolean',
@@ -413,6 +428,7 @@ const AXP_STYLE_COLOR_PROPERTY = {
413
428
  type: 'select-box',
414
429
  options: {
415
430
  dataSource: AX_STYLE_COLOR_TYPES.map((i) => ({ id: i, title: i })),
431
+ hasClearButton: true,
416
432
  },
417
433
  },
418
434
  },
@@ -502,6 +518,38 @@ function plainTextDefaultProperty() {
502
518
  visible: true,
503
519
  };
504
520
  }
521
+ const AXP_THEME_PROPERTY = {
522
+ name: 'theme',
523
+ title: 'Theme',
524
+ group: AXP_STYLING_PROPERTY_GROUP,
525
+ schema: {
526
+ dataType: 'string',
527
+ defaultValue: { id: 'default' },
528
+ interface: {
529
+ name: 'theme',
530
+ path: 'options.theme',
531
+ type: 'select-box',
532
+ options: {
533
+ hasClearButton: false,
534
+ dataSource: [
535
+ {
536
+ id: 'default',
537
+ title: 'Default'
538
+ },
539
+ {
540
+ id: 'light',
541
+ title: 'Light'
542
+ },
543
+ {
544
+ id: 'dark',
545
+ title: 'Dark'
546
+ }
547
+ ],
548
+ },
549
+ },
550
+ },
551
+ visible: true,
552
+ };
505
553
 
506
554
  const AXP_TABLE_COLUMN_WIDTH_PROPERTY = {
507
555
  name: 'width',
@@ -579,13 +627,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
579
627
  }] });
580
628
 
581
629
  var checkboxWidgetEdit_component = /*#__PURE__*/Object.freeze({
582
- __proto__: null,
583
- AXPCheckBoxWidgetEditComponent: AXPCheckBoxWidgetEditComponent
630
+ __proto__: null,
631
+ AXPCheckBoxWidgetEditComponent: AXPCheckBoxWidgetEditComponent
584
632
  });
585
633
 
586
634
  const AXPCheckBoxWidget = {
587
635
  name: 'checkbox',
588
636
  title: "Check Box",
637
+ container: false,
589
638
  icon: "fa-solid fa-square-check",
590
639
  properties: [
591
640
  AXP_NAME_PROPERTY,
@@ -729,8 +778,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
729
778
  }] });
730
779
 
731
780
  var contactWidgetView_component = /*#__PURE__*/Object.freeze({
732
- __proto__: null,
733
- AXPContactWidgetViewComponent: AXPContactWidgetViewComponent
781
+ __proto__: null,
782
+ AXPContactWidgetViewComponent: AXPContactWidgetViewComponent
734
783
  });
735
784
 
736
785
  class popupComponent extends AXBasePageComponent {
@@ -763,7 +812,7 @@ class popupComponent extends AXBasePageComponent {
763
812
  <ax-button [text]="'apply' | translate | async" color="primary" (onClick)="handleClose(form)"></ax-button>
764
813
  </ax-suffix>
765
814
  </ax-footer>
766
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i1$1.AXTranslatorPipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXDecoratorModule }, { 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: 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: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "component", type: i4.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }] }); }
815
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i1$1.AXTranslatorPipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXDecoratorModule }, { 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: 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: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i4$1.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "component", type: i4$1.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }] }); }
767
816
  }
768
817
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: popupComponent, decorators: [{
769
818
  type: Component,
@@ -936,7 +985,7 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
936
985
  };
937
986
  }
938
987
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
939
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPContactWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
988
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPContactWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div class="lg:ax-grid lg:ax-grid-cols-12 lg:ax-gap-4">
940
989
  @for(item of internalValue();track $index) {
941
990
  <ax-text-box
942
991
  [ngModel]="item.value"
@@ -983,19 +1032,19 @@ class AXPContactWidgetEditComponent extends AXPWidgetComponent {
983
1032
  [disabled]="disabled()"
984
1033
  look="twotone"
985
1034
  (onClick)="addItem()"
986
- class="ax-col-start-8 lg:ax-col-start-7 xl:ax-col-start-11 ax-col-end-13"
1035
+ class="sm:ax-col-start-8 lg:ax-col-start-7 xl:ax-col-start-11 sm:ax-col-end-13"
987
1036
  >
988
1037
  <ax-prefix>
989
1038
  <ax-icon class="fa-solid fa-add"></ax-icon>
990
1039
  </ax-prefix>
991
1040
  </ax-button>
992
1041
  }
993
- </div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { 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: 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: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXTranslationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1042
+ </div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { 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: 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: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXTranslationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
994
1043
  }
995
1044
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPContactWidgetEditComponent, decorators: [{
996
1045
  type: Component,
997
1046
  args: [{
998
- template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
1047
+ template: `<div class="lg:ax-grid lg:ax-grid-cols-12 lg:ax-gap-4">
999
1048
  @for(item of internalValue();track $index) {
1000
1049
  <ax-text-box
1001
1050
  [ngModel]="item.value"
@@ -1042,7 +1091,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1042
1091
  [disabled]="disabled()"
1043
1092
  look="twotone"
1044
1093
  (onClick)="addItem()"
1045
- class="ax-col-start-8 lg:ax-col-start-7 xl:ax-col-start-11 ax-col-end-13"
1094
+ class="sm:ax-col-start-8 lg:ax-col-start-7 xl:ax-col-start-11 sm:ax-col-end-13"
1046
1095
  >
1047
1096
  <ax-prefix>
1048
1097
  <ax-icon class="fa-solid fa-add"></ax-icon>
@@ -1069,8 +1118,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1069
1118
  }] });
1070
1119
 
1071
1120
  var contactWidgetEdit_component = /*#__PURE__*/Object.freeze({
1072
- __proto__: null,
1073
- AXPContactWidgetEditComponent: AXPContactWidgetEditComponent
1121
+ __proto__: null,
1122
+ AXPContactWidgetEditComponent: AXPContactWidgetEditComponent
1074
1123
  });
1075
1124
 
1076
1125
  class AXPContactWidgetFilterComponent extends AXPWidgetComponent {
@@ -1089,8 +1138,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1089
1138
  }] });
1090
1139
 
1091
1140
  var contactWidgetFilter_component = /*#__PURE__*/Object.freeze({
1092
- __proto__: null,
1093
- AXPContactWidgetFilterComponent: AXPContactWidgetFilterComponent
1141
+ __proto__: null,
1142
+ AXPContactWidgetFilterComponent: AXPContactWidgetFilterComponent
1094
1143
  });
1095
1144
 
1096
1145
  class AXPContactWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -1126,8 +1175,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1126
1175
  }] });
1127
1176
 
1128
1177
  var contactWidgetColumn_component = /*#__PURE__*/Object.freeze({
1129
- __proto__: null,
1130
- AXPContactWidgetColumnComponent: AXPContactWidgetColumnComponent
1178
+ __proto__: null,
1179
+ AXPContactWidgetColumnComponent: AXPContactWidgetColumnComponent
1131
1180
  });
1132
1181
 
1133
1182
  class AXPContactWidgetPrintComponent extends AXPWidgetComponent {
@@ -1146,8 +1195,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1146
1195
  }] });
1147
1196
 
1148
1197
  var contactWidgetPrint_component = /*#__PURE__*/Object.freeze({
1149
- __proto__: null,
1150
- AXPContactWidgetPrintComponent: AXPContactWidgetPrintComponent
1198
+ __proto__: null,
1199
+ AXPContactWidgetPrintComponent: AXPContactWidgetPrintComponent
1151
1200
  });
1152
1201
 
1153
1202
  const AXPContactWidget = {
@@ -1277,8 +1326,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1277
1326
  }] });
1278
1327
 
1279
1328
  var dateTimeBoxWidgetView_component = /*#__PURE__*/Object.freeze({
1280
- __proto__: null,
1281
- AXPDateTimeBoxWidgetViewComponent: AXPDateTimeBoxWidgetViewComponent
1329
+ __proto__: null,
1330
+ AXPDateTimeBoxWidgetViewComponent: AXPDateTimeBoxWidgetViewComponent
1282
1331
  });
1283
1332
 
1284
1333
  class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetComponent {
@@ -1355,7 +1404,7 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPWidgetComponent {
1355
1404
  <ax-button class="ax-col-span-2" [text]="!internalValue().length ? 'Add New' : 'Add Another'" look="twotone" (onClick)="addItem()" [disabled]="disabled()"></ax-button>
1356
1405
  }
1357
1406
  </div>
1358
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.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"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXDateTimeBoxModule }, { kind: "component", type: i3$2.AXDateTimeBoxComponent, selector: "ax-datetime-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "depth", "id", "type", "look", "holidayDates", "allowTyping", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { 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: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", 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" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1407
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXDateTimeBoxModule }, { kind: "component", type: i3$2.AXDateTimeBoxComponent, selector: "ax-datetime-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "depth", "id", "type", "look", "holidayDates", "allowTyping", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { 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: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", 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" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1359
1408
  }
1360
1409
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, decorators: [{
1361
1410
  type: Component,
@@ -1400,8 +1449,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1400
1449
  }] });
1401
1450
 
1402
1451
  var dateTimeBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
1403
- __proto__: null,
1404
- AXPDateTimeBoxWidgetEditComponent: AXPDateTimeBoxWidgetEditComponent
1452
+ __proto__: null,
1453
+ AXPDateTimeBoxWidgetEditComponent: AXPDateTimeBoxWidgetEditComponent
1405
1454
  });
1406
1455
 
1407
1456
  class AXPDateTimeBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -1420,8 +1469,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1420
1469
  }] });
1421
1470
 
1422
1471
  var dateTimeBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
1423
- __proto__: null,
1424
- AXPDateTimeBoxWidgetFilterComponent: AXPDateTimeBoxWidgetFilterComponent
1472
+ __proto__: null,
1473
+ AXPDateTimeBoxWidgetFilterComponent: AXPDateTimeBoxWidgetFilterComponent
1425
1474
  });
1426
1475
 
1427
1476
  class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -1464,8 +1513,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1464
1513
  }] });
1465
1514
 
1466
1515
  var dateTimeBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
1467
- __proto__: null,
1468
- AXPDateTimeBoxWidgetColumnComponent: AXPDateTimeBoxWidgetColumnComponent
1516
+ __proto__: null,
1517
+ AXPDateTimeBoxWidgetColumnComponent: AXPDateTimeBoxWidgetColumnComponent
1469
1518
  });
1470
1519
 
1471
1520
  class AXPDateTimeBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -1484,8 +1533,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1484
1533
  }] });
1485
1534
 
1486
1535
  var dateTimeBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
1487
- __proto__: null,
1488
- AXPDateTimeBoxWidgetPrintComponent: AXPDateTimeBoxWidgetPrintComponent
1536
+ __proto__: null,
1537
+ AXPDateTimeBoxWidgetPrintComponent: AXPDateTimeBoxWidgetPrintComponent
1489
1538
  });
1490
1539
 
1491
1540
  const AXPDateTimeBoxWidget = {
@@ -1632,8 +1681,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1632
1681
  }] });
1633
1682
 
1634
1683
  var emailBoxWidgetView_component = /*#__PURE__*/Object.freeze({
1635
- __proto__: null,
1636
- AXPEmailBoxWidgetViewComponent: AXPEmailBoxWidgetViewComponent
1684
+ __proto__: null,
1685
+ AXPEmailBoxWidgetViewComponent: AXPEmailBoxWidgetViewComponent
1637
1686
  });
1638
1687
 
1639
1688
  class AXPEmailBoxWidgetEditComponent extends AXPWidgetComponent {
@@ -1778,7 +1827,7 @@ class AXPEmailBoxWidgetEditComponent extends AXPWidgetComponent {
1778
1827
  }
1779
1828
  }
1780
1829
  </div>
1781
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.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"] }, { 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: 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: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1830
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { 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: 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: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1782
1831
  }
1783
1832
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPEmailBoxWidgetEditComponent, decorators: [{
1784
1833
  type: Component,
@@ -1869,8 +1918,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1869
1918
  }] });
1870
1919
 
1871
1920
  var emailBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
1872
- __proto__: null,
1873
- AXPEmailBoxWidgetEditComponent: AXPEmailBoxWidgetEditComponent
1921
+ __proto__: null,
1922
+ AXPEmailBoxWidgetEditComponent: AXPEmailBoxWidgetEditComponent
1874
1923
  });
1875
1924
 
1876
1925
  class AXPEmailBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -1889,8 +1938,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1889
1938
  }] });
1890
1939
 
1891
1940
  var emailBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
1892
- __proto__: null,
1893
- AXPEmailBoxWidgetFilterComponent: AXPEmailBoxWidgetFilterComponent
1941
+ __proto__: null,
1942
+ AXPEmailBoxWidgetFilterComponent: AXPEmailBoxWidgetFilterComponent
1894
1943
  });
1895
1944
 
1896
1945
  class AXPEmailBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -1956,8 +2005,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1956
2005
  }] });
1957
2006
 
1958
2007
  var emailBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
1959
- __proto__: null,
1960
- AXPEmailBoxWidgetColumnComponent: AXPEmailBoxWidgetColumnComponent
2008
+ __proto__: null,
2009
+ AXPEmailBoxWidgetColumnComponent: AXPEmailBoxWidgetColumnComponent
1961
2010
  });
1962
2011
 
1963
2012
  class AXPEmailBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -1976,8 +2025,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
1976
2025
  }] });
1977
2026
 
1978
2027
  var emailBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
1979
- __proto__: null,
1980
- AXPEmailBoxWidgetPrintComponent: AXPEmailBoxWidgetPrintComponent
2028
+ __proto__: null,
2029
+ AXPEmailBoxWidgetPrintComponent: AXPEmailBoxWidgetPrintComponent
1981
2030
  });
1982
2031
 
1983
2032
  const AXPEmailBoxWidget = {
@@ -2031,8 +2080,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2031
2080
  }] });
2032
2081
 
2033
2082
  var fileBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
2034
- __proto__: null,
2035
- AXPFileBoxWidgetColumnComponent: AXPFileBoxWidgetColumnComponent
2083
+ __proto__: null,
2084
+ AXPFileBoxWidgetColumnComponent: AXPFileBoxWidgetColumnComponent
2036
2085
  });
2037
2086
 
2038
2087
  class AXPFileManagementService {
@@ -2151,8 +2200,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2151
2200
  }] });
2152
2201
 
2153
2202
  var fileBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
2154
- __proto__: null,
2155
- AXPFileBoxWidgetEditComponent: AXPFileBoxWidgetEditComponent
2203
+ __proto__: null,
2204
+ AXPFileBoxWidgetEditComponent: AXPFileBoxWidgetEditComponent
2156
2205
  });
2157
2206
 
2158
2207
  class AXPFileBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -2171,8 +2220,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2171
2220
  }] });
2172
2221
 
2173
2222
  var fileBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
2174
- __proto__: null,
2175
- AXPFileBoxWidgetFilterComponent: AXPFileBoxWidgetFilterComponent
2223
+ __proto__: null,
2224
+ AXPFileBoxWidgetFilterComponent: AXPFileBoxWidgetFilterComponent
2176
2225
  });
2177
2226
 
2178
2227
  class AXPFileBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -2191,8 +2240,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2191
2240
  }] });
2192
2241
 
2193
2242
  var fileBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
2194
- __proto__: null,
2195
- AXPFileBoxWidgetPrintComponent: AXPFileBoxWidgetPrintComponent
2243
+ __proto__: null,
2244
+ AXPFileBoxWidgetPrintComponent: AXPFileBoxWidgetPrintComponent
2196
2245
  });
2197
2246
 
2198
2247
  class AXPFileBoxWidgetViewComponent extends AXPWidgetComponent {
@@ -2398,8 +2447,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2398
2447
  }] });
2399
2448
 
2400
2449
  var fileBoxWidgetView_component = /*#__PURE__*/Object.freeze({
2401
- __proto__: null,
2402
- AXPFileBoxWidgetViewComponent: AXPFileBoxWidgetViewComponent
2450
+ __proto__: null,
2451
+ AXPFileBoxWidgetViewComponent: AXPFileBoxWidgetViewComponent
2403
2452
  });
2404
2453
 
2405
2454
  const AXPFileBoxWidget = {
@@ -2537,7 +2586,7 @@ class AXPGalleryWidgetViewComponent extends AXPWidgetComponent {
2537
2586
  <small>No Media!</small>
2538
2587
  }
2539
2588
  </div>
2540
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$2.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { 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: AXLoadingModule }, { kind: "component", type: i4$1.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2589
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$2.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { 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: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2541
2590
  }
2542
2591
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetViewComponent, decorators: [{
2543
2592
  type: Component,
@@ -2599,8 +2648,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2599
2648
  }] });
2600
2649
 
2601
2650
  var galleryWidgetView_component = /*#__PURE__*/Object.freeze({
2602
- __proto__: null,
2603
- AXPGalleryWidgetViewComponent: AXPGalleryWidgetViewComponent
2651
+ __proto__: null,
2652
+ AXPGalleryWidgetViewComponent: AXPGalleryWidgetViewComponent
2604
2653
  });
2605
2654
 
2606
2655
  class AXPGalleryWidgetEditComponent extends AXPWidgetComponent {
@@ -2696,7 +2745,7 @@ class AXPGalleryWidgetEditComponent extends AXPWidgetComponent {
2696
2745
 
2697
2746
  }
2698
2747
  </div>
2699
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$2.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { 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: AXLoadingModule }, { kind: "component", type: i4$1.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXUploaderModule }, { kind: "component", type: i5$1.AXUploaderDropZoneComponent, selector: "ax-uploader-drop-zone", inputs: ["description"] }, { kind: "directive", type: i5$1.AXUploaderZoneDirective, selector: "[axUploaderZone]", inputs: ["multiple", "accept"], outputs: ["onChanged", "onFileUploadComplete", "onFilesUploadComplete"] }, { kind: "directive", type: i5$1.AXUploaderBrowseDirective, selector: "[axUploaderBrowseHandle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2748
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2$2.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { 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: AXLoadingModule }, { kind: "component", type: i4.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXUploaderModule }, { kind: "component", type: i5$1.AXUploaderDropZoneComponent, selector: "ax-uploader-drop-zone", inputs: ["description"] }, { kind: "directive", type: i5$1.AXUploaderZoneDirective, selector: "[axUploaderZone]", inputs: ["multiple", "accept"], outputs: ["onChanged", "onFileUploadComplete", "onFilesUploadComplete"] }, { kind: "directive", type: i5$1.AXUploaderBrowseDirective, selector: "[axUploaderBrowseHandle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2700
2749
  }
2701
2750
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPGalleryWidgetEditComponent, decorators: [{
2702
2751
  type: Component,
@@ -2763,8 +2812,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2763
2812
  }] });
2764
2813
 
2765
2814
  var galleryWidgetEdit_component = /*#__PURE__*/Object.freeze({
2766
- __proto__: null,
2767
- AXPGalleryWidgetEditComponent: AXPGalleryWidgetEditComponent
2815
+ __proto__: null,
2816
+ AXPGalleryWidgetEditComponent: AXPGalleryWidgetEditComponent
2768
2817
  });
2769
2818
 
2770
2819
  class AXPGalleryWidgetFilterComponent extends AXPWidgetComponent {
@@ -2783,8 +2832,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2783
2832
  }] });
2784
2833
 
2785
2834
  var galleryWidgetFilter_component = /*#__PURE__*/Object.freeze({
2786
- __proto__: null,
2787
- AXPGalleryWidgetFilterComponent: AXPGalleryWidgetFilterComponent
2835
+ __proto__: null,
2836
+ AXPGalleryWidgetFilterComponent: AXPGalleryWidgetFilterComponent
2788
2837
  });
2789
2838
 
2790
2839
  class AXPGalleryWidgetColumnComponent extends AXPWidgetComponent {
@@ -2803,8 +2852,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2803
2852
  }] });
2804
2853
 
2805
2854
  var galleryWidgetColumn_component = /*#__PURE__*/Object.freeze({
2806
- __proto__: null,
2807
- AXPGalleryWidgetColumnComponent: AXPGalleryWidgetColumnComponent
2855
+ __proto__: null,
2856
+ AXPGalleryWidgetColumnComponent: AXPGalleryWidgetColumnComponent
2808
2857
  });
2809
2858
 
2810
2859
  class AXPGalleryWidgetPrintComponent extends AXPWidgetComponent {
@@ -2823,8 +2872,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2823
2872
  }] });
2824
2873
 
2825
2874
  var galleryWidgetPrint_component = /*#__PURE__*/Object.freeze({
2826
- __proto__: null,
2827
- AXPGalleryWidgetPrintComponent: AXPGalleryWidgetPrintComponent
2875
+ __proto__: null,
2876
+ AXPGalleryWidgetPrintComponent: AXPGalleryWidgetPrintComponent
2828
2877
  });
2829
2878
 
2830
2879
  const AXPGalleryWidget = {
@@ -2881,8 +2930,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2881
2930
  }] });
2882
2931
 
2883
2932
  var largeTextWidgetView_component = /*#__PURE__*/Object.freeze({
2884
- __proto__: null,
2885
- AXPLargeTextWidgetViewComponent: AXPLargeTextWidgetViewComponent
2933
+ __proto__: null,
2934
+ AXPLargeTextWidgetViewComponent: AXPLargeTextWidgetViewComponent
2886
2935
  });
2887
2936
 
2888
2937
  class AXPLargeTextWidgetEditComponent extends AXPWidgetComponent {
@@ -2910,7 +2959,7 @@ class AXPLargeTextWidgetEditComponent extends AXPWidgetComponent {
2910
2959
  <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
2911
2960
  }
2912
2961
  </ax-text-area>
2913
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.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"] }, { kind: "ngmodule", type: AXTextAreaModule }, { kind: "component", type: i4$2.AXTextAreaComponent, selector: "ax-text-area", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "placeholder", "maxLength", "look", "rows", "allowResize", "showCounter"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2962
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXTextAreaModule }, { kind: "component", type: i4$2.AXTextAreaComponent, selector: "ax-text-area", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "placeholder", "maxLength", "look", "rows", "allowResize", "showCounter"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2914
2963
  }
2915
2964
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLargeTextWidgetEditComponent, decorators: [{
2916
2965
  type: Component,
@@ -2934,8 +2983,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2934
2983
  }] });
2935
2984
 
2936
2985
  var largeTextWidgetEdit_component = /*#__PURE__*/Object.freeze({
2937
- __proto__: null,
2938
- AXPLargeTextWidgetEditComponent: AXPLargeTextWidgetEditComponent
2986
+ __proto__: null,
2987
+ AXPLargeTextWidgetEditComponent: AXPLargeTextWidgetEditComponent
2939
2988
  });
2940
2989
 
2941
2990
  class AXPLargeTextWidgetFilterComponent extends AXPWidgetComponent {
@@ -2954,8 +3003,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2954
3003
  }] });
2955
3004
 
2956
3005
  var largeTextWidgetFilter_component = /*#__PURE__*/Object.freeze({
2957
- __proto__: null,
2958
- AXPLargeTextWidgetFilterComponent: AXPLargeTextWidgetFilterComponent
3006
+ __proto__: null,
3007
+ AXPLargeTextWidgetFilterComponent: AXPLargeTextWidgetFilterComponent
2959
3008
  });
2960
3009
 
2961
3010
  class AXPLargeTextWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -2978,8 +3027,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2978
3027
  }] });
2979
3028
 
2980
3029
  var largeTextWidgetColumn_component = /*#__PURE__*/Object.freeze({
2981
- __proto__: null,
2982
- AXPLargeTextWidgetColumnComponent: AXPLargeTextWidgetColumnComponent
3030
+ __proto__: null,
3031
+ AXPLargeTextWidgetColumnComponent: AXPLargeTextWidgetColumnComponent
2983
3032
  });
2984
3033
 
2985
3034
  class AXPLargeTextWidgetPrintComponent extends AXPWidgetComponent {
@@ -2998,8 +3047,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
2998
3047
  }] });
2999
3048
 
3000
3049
  var largeTextWidgetPrint_component = /*#__PURE__*/Object.freeze({
3001
- __proto__: null,
3002
- AXPLargeTextWidgetPrintComponent: AXPLargeTextWidgetPrintComponent
3050
+ __proto__: null,
3051
+ AXPLargeTextWidgetPrintComponent: AXPLargeTextWidgetPrintComponent
3003
3052
  });
3004
3053
 
3005
3054
  const AXPLargeTextWidget = {
@@ -3148,8 +3197,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3148
3197
  }] });
3149
3198
 
3150
3199
  var linkWidgetView_component = /*#__PURE__*/Object.freeze({
3151
- __proto__: null,
3152
- AXPLinkWidgetViewComponent: AXPLinkWidgetViewComponent
3200
+ __proto__: null,
3201
+ AXPLinkWidgetViewComponent: AXPLinkWidgetViewComponent
3153
3202
  });
3154
3203
 
3155
3204
  class AXPLinkWidgetEditComponent extends AXPWidgetComponent {
@@ -3409,7 +3458,7 @@ class AXPLinkWidgetEditComponent extends AXPWidgetComponent {
3409
3458
  >
3410
3459
  </ax-select-box>
3411
3460
  } }
3412
- </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { 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: 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: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3461
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { 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: 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: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3413
3462
  }
3414
3463
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetEditComponent, decorators: [{
3415
3464
  type: Component,
@@ -3524,8 +3573,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3524
3573
  }] });
3525
3574
 
3526
3575
  var linkWidgetEdit_component = /*#__PURE__*/Object.freeze({
3527
- __proto__: null,
3528
- AXPLinkWidgetEditComponent: AXPLinkWidgetEditComponent
3576
+ __proto__: null,
3577
+ AXPLinkWidgetEditComponent: AXPLinkWidgetEditComponent
3529
3578
  });
3530
3579
 
3531
3580
  class AXPLinkWidgetFilterComponent extends AXPWidgetComponent {
@@ -3544,8 +3593,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3544
3593
  }] });
3545
3594
 
3546
3595
  var linkWidgetFilter_component = /*#__PURE__*/Object.freeze({
3547
- __proto__: null,
3548
- AXPLinkWidgetFilterComponent: AXPLinkWidgetFilterComponent
3596
+ __proto__: null,
3597
+ AXPLinkWidgetFilterComponent: AXPLinkWidgetFilterComponent
3549
3598
  });
3550
3599
 
3551
3600
  class AXPLinkWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -3564,8 +3613,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3564
3613
  }] });
3565
3614
 
3566
3615
  var linkWidgetColumn_component = /*#__PURE__*/Object.freeze({
3567
- __proto__: null,
3568
- AXPLinkWidgetColumnComponent: AXPLinkWidgetColumnComponent
3616
+ __proto__: null,
3617
+ AXPLinkWidgetColumnComponent: AXPLinkWidgetColumnComponent
3569
3618
  });
3570
3619
 
3571
3620
  class AXPLinkWidgetPrintComponent extends AXPWidgetComponent {
@@ -3584,8 +3633,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3584
3633
  }] });
3585
3634
 
3586
3635
  var linkWidgetPrint_component = /*#__PURE__*/Object.freeze({
3587
- __proto__: null,
3588
- AXPLinkWidgetPrintComponent: AXPLinkWidgetPrintComponent
3636
+ __proto__: null,
3637
+ AXPLinkWidgetPrintComponent: AXPLinkWidgetPrintComponent
3589
3638
  });
3590
3639
 
3591
3640
  const AXPLinkWidget = {
@@ -3676,8 +3725,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3676
3725
  }] } });
3677
3726
 
3678
3727
  var mapBoxWidgetView_component = /*#__PURE__*/Object.freeze({
3679
- __proto__: null,
3680
- AXPMapBoxWidgetViewComponent: AXPMapBoxWidgetViewComponent
3728
+ __proto__: null,
3729
+ AXPMapBoxWidgetViewComponent: AXPMapBoxWidgetViewComponent
3681
3730
  });
3682
3731
 
3683
3732
  class AXPMapBoxWidgetEditComponent extends AXPWidgetComponent {
@@ -3772,8 +3821,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3772
3821
  }] } });
3773
3822
 
3774
3823
  var mapBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
3775
- __proto__: null,
3776
- AXPMapBoxWidgetEditComponent: AXPMapBoxWidgetEditComponent
3824
+ __proto__: null,
3825
+ AXPMapBoxWidgetEditComponent: AXPMapBoxWidgetEditComponent
3777
3826
  });
3778
3827
 
3779
3828
  class AXPMapBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -3792,8 +3841,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3792
3841
  }] });
3793
3842
 
3794
3843
  var mapBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
3795
- __proto__: null,
3796
- AXPMapBoxWidgetFilterComponent: AXPMapBoxWidgetFilterComponent
3844
+ __proto__: null,
3845
+ AXPMapBoxWidgetFilterComponent: AXPMapBoxWidgetFilterComponent
3797
3846
  });
3798
3847
 
3799
3848
  class AXPMapBoxWidgetColumnComponent extends AXPWidgetComponent {
@@ -3812,8 +3861,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3812
3861
  }] });
3813
3862
 
3814
3863
  var mapBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
3815
- __proto__: null,
3816
- AXPMapBoxWidgetColumnComponent: AXPMapBoxWidgetColumnComponent
3864
+ __proto__: null,
3865
+ AXPMapBoxWidgetColumnComponent: AXPMapBoxWidgetColumnComponent
3817
3866
  });
3818
3867
 
3819
3868
  class AXPMapBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -3832,8 +3881,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3832
3881
  }] });
3833
3882
 
3834
3883
  var mapBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
3835
- __proto__: null,
3836
- AXPMapBoxWidgetPrintComponent: AXPMapBoxWidgetPrintComponent
3884
+ __proto__: null,
3885
+ AXPMapBoxWidgetPrintComponent: AXPMapBoxWidgetPrintComponent
3837
3886
  });
3838
3887
 
3839
3888
  const AXPMapBoxWidget = {
@@ -3914,8 +3963,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
3914
3963
  }] });
3915
3964
 
3916
3965
  var numberBoxWidgetView_component = /*#__PURE__*/Object.freeze({
3917
- __proto__: null,
3918
- AXPNumberBoxWidgetViewComponent: AXPNumberBoxWidgetViewComponent
3966
+ __proto__: null,
3967
+ AXPNumberBoxWidgetViewComponent: AXPNumberBoxWidgetViewComponent
3919
3968
  });
3920
3969
 
3921
3970
  class AXPNumberBoxWidgetEditComponent extends AXPWidgetComponent {
@@ -4001,7 +4050,7 @@ class AXPNumberBoxWidgetEditComponent extends AXPWidgetComponent {
4001
4050
  </ax-button>
4002
4051
  }
4003
4052
  </div>
4004
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$3.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "hasWheel", "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.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", 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: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { 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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4053
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXNumberBoxModule }, { kind: "component", type: i1$3.AXNumberBoxComponent, selector: "ax-number-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "hasWheel", "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.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", 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: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { 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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4005
4054
  }
4006
4055
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPNumberBoxWidgetEditComponent, decorators: [{
4007
4056
  type: Component,
@@ -4055,8 +4104,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4055
4104
  }] });
4056
4105
 
4057
4106
  var numberBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
4058
- __proto__: null,
4059
- AXPNumberBoxWidgetEditComponent: AXPNumberBoxWidgetEditComponent
4107
+ __proto__: null,
4108
+ AXPNumberBoxWidgetEditComponent: AXPNumberBoxWidgetEditComponent
4060
4109
  });
4061
4110
 
4062
4111
  class AXPNumberBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -4075,8 +4124,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4075
4124
  }] });
4076
4125
 
4077
4126
  var numberBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
4078
- __proto__: null,
4079
- AXPNumberBoxWidgetFilterComponent: AXPNumberBoxWidgetFilterComponent
4127
+ __proto__: null,
4128
+ AXPNumberBoxWidgetFilterComponent: AXPNumberBoxWidgetFilterComponent
4080
4129
  });
4081
4130
 
4082
4131
  class AXPNumberBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -4112,8 +4161,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4112
4161
  }] });
4113
4162
 
4114
4163
  var numberBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
4115
- __proto__: null,
4116
- AXPNumberBoxWidgetColumnComponent: AXPNumberBoxWidgetColumnComponent
4164
+ __proto__: null,
4165
+ AXPNumberBoxWidgetColumnComponent: AXPNumberBoxWidgetColumnComponent
4117
4166
  });
4118
4167
 
4119
4168
  class AXPNumberBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -4132,8 +4181,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4132
4181
  }] });
4133
4182
 
4134
4183
  var numberBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
4135
- __proto__: null,
4136
- AXPNumberBoxWidgetPrintComponent: AXPNumberBoxWidgetPrintComponent
4184
+ __proto__: null,
4185
+ AXPNumberBoxWidgetPrintComponent: AXPNumberBoxWidgetPrintComponent
4137
4186
  });
4138
4187
 
4139
4188
  const AXPNumberBoxWidget = {
@@ -4243,8 +4292,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4243
4292
  }] });
4244
4293
 
4245
4294
  var passwordBoxWidgetView_component = /*#__PURE__*/Object.freeze({
4246
- __proto__: null,
4247
- AXPPasswordBoxWidgetViewComponent: AXPPasswordBoxWidgetViewComponent
4295
+ __proto__: null,
4296
+ AXPPasswordBoxWidgetViewComponent: AXPPasswordBoxWidgetViewComponent
4248
4297
  });
4249
4298
 
4250
4299
  class AXPPasswordBoxWidgetEditComponent extends AXPWidgetComponent {
@@ -4266,7 +4315,7 @@ class AXPPasswordBoxWidgetEditComponent extends AXPWidgetComponent {
4266
4315
  <ax-clear-button></ax-clear-button>
4267
4316
  }
4268
4317
  </ax-password-box>
4269
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXPasswordBoxModule }, { kind: "component", type: i3$3.AXPasswordBoxComponent, selector: "ax-password-box", inputs: ["readonly", "disabled", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "autoComplete", "showToggleButton", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4318
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXPasswordBoxModule }, { kind: "component", type: i3$3.AXPasswordBoxComponent, selector: "ax-password-box", inputs: ["readonly", "disabled", "tabIndex", "placeholder", "value", "state", "name", "id", "look", "autoComplete", "showToggleButton", "class"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4270
4319
  }
4271
4320
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPasswordBoxWidgetEditComponent, decorators: [{
4272
4321
  type: Component,
@@ -4287,8 +4336,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4287
4336
  }] });
4288
4337
 
4289
4338
  var passwordBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
4290
- __proto__: null,
4291
- AXPPasswordBoxWidgetEditComponent: AXPPasswordBoxWidgetEditComponent
4339
+ __proto__: null,
4340
+ AXPPasswordBoxWidgetEditComponent: AXPPasswordBoxWidgetEditComponent
4292
4341
  });
4293
4342
 
4294
4343
  class AXPPasswordBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -4307,8 +4356,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4307
4356
  }] });
4308
4357
 
4309
4358
  var passwordBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
4310
- __proto__: null,
4311
- AXPPasswordBoxWidgetFilterComponent: AXPPasswordBoxWidgetFilterComponent
4359
+ __proto__: null,
4360
+ AXPPasswordBoxWidgetFilterComponent: AXPPasswordBoxWidgetFilterComponent
4312
4361
  });
4313
4362
 
4314
4363
  class AXPPasswordBoxWidgetColumnComponent extends AXPWidgetComponent {
@@ -4327,8 +4376,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4327
4376
  }] });
4328
4377
 
4329
4378
  var passwordBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
4330
- __proto__: null,
4331
- AXPPasswordBoxWidgetColumnComponent: AXPPasswordBoxWidgetColumnComponent
4379
+ __proto__: null,
4380
+ AXPPasswordBoxWidgetColumnComponent: AXPPasswordBoxWidgetColumnComponent
4332
4381
  });
4333
4382
 
4334
4383
  class AXPPasswordBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -4347,8 +4396,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4347
4396
  }] });
4348
4397
 
4349
4398
  var passwordBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
4350
- __proto__: null,
4351
- AXPPasswordBoxWidgetPrintComponent: AXPPasswordBoxWidgetPrintComponent
4399
+ __proto__: null,
4400
+ AXPPasswordBoxWidgetPrintComponent: AXPPasswordBoxWidgetPrintComponent
4352
4401
  });
4353
4402
 
4354
4403
  const AXPPasswordBoxWidget = {
@@ -4493,8 +4542,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4493
4542
  }] });
4494
4543
 
4495
4544
  var phoneBoxWidgetView_component = /*#__PURE__*/Object.freeze({
4496
- __proto__: null,
4497
- AXPPhoneBoxWidgetViewComponent: AXPPhoneBoxWidgetViewComponent
4545
+ __proto__: null,
4546
+ AXPPhoneBoxWidgetViewComponent: AXPPhoneBoxWidgetViewComponent
4498
4547
  });
4499
4548
 
4500
4549
  class AXPPhoneBoxWidgetEditComponent extends AXPWidgetComponent {
@@ -4619,7 +4668,7 @@ class AXPPhoneBoxWidgetEditComponent extends AXPWidgetComponent {
4619
4668
  </ax-prefix>
4620
4669
  </ax-button>
4621
4670
  </div>
4622
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.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"] }, { 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: 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: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4671
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { 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: 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: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
4623
4672
  }
4624
4673
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPhoneBoxWidgetEditComponent, decorators: [{
4625
4674
  type: Component,
@@ -4701,8 +4750,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4701
4750
  }] });
4702
4751
 
4703
4752
  var phoneBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
4704
- __proto__: null,
4705
- AXPPhoneBoxWidgetEditComponent: AXPPhoneBoxWidgetEditComponent
4753
+ __proto__: null,
4754
+ AXPPhoneBoxWidgetEditComponent: AXPPhoneBoxWidgetEditComponent
4706
4755
  });
4707
4756
 
4708
4757
  class AXPPhoneBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -4721,8 +4770,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4721
4770
  }] });
4722
4771
 
4723
4772
  var phoneBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
4724
- __proto__: null,
4725
- AXPPhoneBoxWidgetFilterComponent: AXPPhoneBoxWidgetFilterComponent
4773
+ __proto__: null,
4774
+ AXPPhoneBoxWidgetFilterComponent: AXPPhoneBoxWidgetFilterComponent
4726
4775
  });
4727
4776
 
4728
4777
  class AXPPhoneBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -4788,8 +4837,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4788
4837
  }] });
4789
4838
 
4790
4839
  var phoneBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
4791
- __proto__: null,
4792
- AXPPhoneBoxWidgetColumnComponent: AXPPhoneBoxWidgetColumnComponent
4840
+ __proto__: null,
4841
+ AXPPhoneBoxWidgetColumnComponent: AXPPhoneBoxWidgetColumnComponent
4793
4842
  });
4794
4843
 
4795
4844
  class AXPPhoneBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -4808,8 +4857,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4808
4857
  }] });
4809
4858
 
4810
4859
  var phoneBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
4811
- __proto__: null,
4812
- AXPPhoneBoxWidgetPrintComponent: AXPPhoneBoxWidgetPrintComponent
4860
+ __proto__: null,
4861
+ AXPPhoneBoxWidgetPrintComponent: AXPPhoneBoxWidgetPrintComponent
4813
4862
  });
4814
4863
 
4815
4864
  const AXPPhoneBoxWidget = {
@@ -4879,8 +4928,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4879
4928
  }] });
4880
4929
 
4881
4930
  var richTextWidgetView_component = /*#__PURE__*/Object.freeze({
4882
- __proto__: null,
4883
- AXPRichTextWidgetViewComponent: AXPRichTextWidgetViewComponent
4931
+ __proto__: null,
4932
+ AXPRichTextWidgetViewComponent: AXPRichTextWidgetViewComponent
4884
4933
  });
4885
4934
 
4886
4935
  class AXPRichTextWidgetEditComponent extends AXPWidgetComponent {
@@ -4911,7 +4960,7 @@ class AXPRichTextWidgetEditComponent extends AXPWidgetComponent {
4911
4960
  @for (validation of validationRules; track $index) {
4912
4961
  <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
4913
4962
  }
4914
- </ax-wysiwyg-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXWysiwygModule }, { kind: "component", type: i1$4.AXWysiwygContainerComponent, selector: "ax-wysiwyg-container", inputs: ["look"] }, { kind: "component", type: i1$4.AXWysiwygViewComponent, selector: "ax-wysiwyg-view", inputs: ["class"] }, { kind: "component", type: i1$4.AXWysiwygToolbarComponent, selector: "ax-wysiwyg-toolbar" }, { kind: "component", type: i1$4.AXWysiwygAlignmentComponent, selector: "ax-wysiwyg-alignment" }, { kind: "component", type: i1$4.AXWysiwygColorsComponent, selector: "ax-wysiwyg-colors" }, { kind: "component", type: i1$4.AXWysiwygFontStyleComponent, selector: "ax-wysiwyg-font-style" }, { kind: "component", type: i1$4.AXWysiwygHistoryComponent, selector: "ax-wysiwyg-history" }, { kind: "component", type: i1$4.AXWysiwygInsertComponent, selector: "ax-wysiwyg-insert" }, { kind: "component", type: i1$4.AXWysiwygListComponent, selector: "ax-wysiwyg-list" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
4963
+ </ax-wysiwyg-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXWysiwygModule }, { kind: "component", type: i1$4.AXWysiwygContainerComponent, selector: "ax-wysiwyg-container", inputs: ["look", "initialValue"] }, { kind: "component", type: i1$4.AXWysiwygViewComponent, selector: "ax-wysiwyg-view", inputs: ["class"] }, { kind: "component", type: i1$4.AXWysiwygToolbarComponent, selector: "ax-wysiwyg-toolbar" }, { kind: "component", type: i1$4.AXWysiwygAlignmentComponent, selector: "ax-wysiwyg-alignment" }, { kind: "component", type: i1$4.AXWysiwygColorsComponent, selector: "ax-wysiwyg-colors" }, { kind: "component", type: i1$4.AXWysiwygFontStyleComponent, selector: "ax-wysiwyg-font-style" }, { kind: "component", type: i1$4.AXWysiwygHistoryComponent, selector: "ax-wysiwyg-history" }, { kind: "component", type: i1$4.AXWysiwygInsertComponent, selector: "ax-wysiwyg-insert" }, { kind: "component", type: i1$4.AXWysiwygListComponent, selector: "ax-wysiwyg-list" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
4915
4964
  }
4916
4965
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRichTextWidgetEditComponent, decorators: [{
4917
4966
  type: Component,
@@ -4940,8 +4989,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4940
4989
  }] });
4941
4990
 
4942
4991
  var richTextWidgetEdit_component = /*#__PURE__*/Object.freeze({
4943
- __proto__: null,
4944
- AXPRichTextWidgetEditComponent: AXPRichTextWidgetEditComponent
4992
+ __proto__: null,
4993
+ AXPRichTextWidgetEditComponent: AXPRichTextWidgetEditComponent
4945
4994
  });
4946
4995
 
4947
4996
  class AXPRichTextWidgetFilterComponent extends AXPWidgetComponent {
@@ -4960,8 +5009,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
4960
5009
  }] });
4961
5010
 
4962
5011
  var richTextWidgetFilter_component = /*#__PURE__*/Object.freeze({
4963
- __proto__: null,
4964
- AXPRichTextWidgetFilterComponent: AXPRichTextWidgetFilterComponent
5012
+ __proto__: null,
5013
+ AXPRichTextWidgetFilterComponent: AXPRichTextWidgetFilterComponent
4965
5014
  });
4966
5015
 
4967
5016
  class AXPRichTextWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -5002,8 +5051,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5002
5051
  }] });
5003
5052
 
5004
5053
  var richTextWidgetColumn_component = /*#__PURE__*/Object.freeze({
5005
- __proto__: null,
5006
- AXPRichTextWidgetColumnComponent: AXPRichTextWidgetColumnComponent
5054
+ __proto__: null,
5055
+ AXPRichTextWidgetColumnComponent: AXPRichTextWidgetColumnComponent
5007
5056
  });
5008
5057
 
5009
5058
  class AXPRichTextWidgetPrintComponent extends AXPWidgetComponent {
@@ -5022,8 +5071,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5022
5071
  }] });
5023
5072
 
5024
5073
  var richTextWidgetPrint_component = /*#__PURE__*/Object.freeze({
5025
- __proto__: null,
5026
- AXPRichTextWidgetPrintComponent: AXPRichTextWidgetPrintComponent
5074
+ __proto__: null,
5075
+ AXPRichTextWidgetPrintComponent: AXPRichTextWidgetPrintComponent
5027
5076
  });
5028
5077
 
5029
5078
  const AXPRichTextWidget = {
@@ -5118,18 +5167,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5118
5167
  }] });
5119
5168
 
5120
5169
  var selectBoxWidgetView_component = /*#__PURE__*/Object.freeze({
5121
- __proto__: null,
5122
- AXPSelectBoxWidgetViewComponent: AXPSelectBoxWidgetViewComponent
5170
+ __proto__: null,
5171
+ AXPSelectBoxWidgetViewComponent: AXPSelectBoxWidgetViewComponent
5123
5172
  });
5124
5173
 
5125
5174
  class AXPSelectBoxWidgetEditComponent extends AXPWidgetComponent {
5126
5175
  constructor() {
5127
5176
  super(...arguments);
5128
- this.multiple = computed(() => this.options()["multiple"]);
5129
- this.dataSource = computed(() => this.options()["dataSource"] ?? []);
5130
- this.valueField = computed(() => this.options()["valueField"] ?? "id");
5131
- this.textField = computed(() => this.options()["textField"] ?? "title");
5132
- this.disabled = computed(() => this.options()["disabled"]);
5177
+ this.multiple = computed(() => this.options()['multiple']);
5178
+ this.dataSource = computed(() => this.options()['dataSource'] ?? []);
5179
+ this.valueField = computed(() => this.options()['valueField'] ?? 'id');
5180
+ this.textField = computed(() => this.options()['textField'] ?? 'title');
5181
+ this.disabled = computed(() => this.options()['disabled']);
5182
+ this.placeholder = computed(() => this.options()['placeholder'] ?? '');
5183
+ this.hasClearButton = computed(() => this.options()['hasClearButton']);
5133
5184
  }
5134
5185
  handleValueChange(e) {
5135
5186
  if (e.isUserInteraction) {
@@ -5144,43 +5195,51 @@ class AXPSelectBoxWidgetEditComponent extends AXPWidgetComponent {
5144
5195
  this.selectbox?.refresh();
5145
5196
  }
5146
5197
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5147
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPSelectBoxWidgetEditComponent, isStandalone: true, selector: "axp-select-box-widget-edit", viewQueries: [{ propertyName: "selectbox", first: true, predicate: AXSelectBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: `
5148
- <ax-select-box
5198
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPSelectBoxWidgetEditComponent, isStandalone: true, selector: "axp-select-box-widget-edit", viewQueries: [{ propertyName: "selectbox", first: true, predicate: AXSelectBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: `
5199
+ <ax-select-box
5149
5200
  #dd
5150
- [dataSource]="dataSource()"
5151
- [disabled]="disabled()"
5152
- [valueField]="valueField()"
5201
+ [placeholder]="placeholder()"
5202
+ [dataSource]="dataSource()"
5203
+ [disabled]="disabled()"
5204
+ [valueField]="valueField()"
5153
5205
  [textField]="textField()"
5154
5206
  [ngModel]="getValue()"
5155
5207
  [multiple]="multiple()"
5156
- (onValueChanged)="handleValueChange($event);"
5208
+ (onValueChanged)="handleValueChange($event)"
5157
5209
  >
5158
- <ax-clear-button></ax-clear-button>
5210
+ @if(hasClearButton())
5211
+ {
5212
+ <ax-clear-button></ax-clear-button>
5213
+ }
5159
5214
  </ax-select-box>
5160
5215
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3$1.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5161
5216
  }
5162
5217
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectBoxWidgetEditComponent, decorators: [{
5163
5218
  type: Component,
5164
5219
  args: [{
5165
- selector: "axp-select-box-widget-edit",
5220
+ selector: 'axp-select-box-widget-edit',
5166
5221
  template: `
5167
- <ax-select-box
5222
+ <ax-select-box
5168
5223
  #dd
5169
- [dataSource]="dataSource()"
5170
- [disabled]="disabled()"
5171
- [valueField]="valueField()"
5224
+ [placeholder]="placeholder()"
5225
+ [dataSource]="dataSource()"
5226
+ [disabled]="disabled()"
5227
+ [valueField]="valueField()"
5172
5228
  [textField]="textField()"
5173
5229
  [ngModel]="getValue()"
5174
5230
  [multiple]="multiple()"
5175
- (onValueChanged)="handleValueChange($event);"
5231
+ (onValueChanged)="handleValueChange($event)"
5176
5232
  >
5177
- <ax-clear-button></ax-clear-button>
5233
+ @if(hasClearButton())
5234
+ {
5235
+ <ax-clear-button></ax-clear-button>
5236
+ }
5178
5237
  </ax-select-box>
5179
5238
  `,
5180
5239
  standalone: true,
5181
5240
  changeDetection: ChangeDetectionStrategy.OnPush,
5182
5241
  imports: [CommonModule, FormsModule, AXSelectBoxModule, AXDecoratorModule],
5183
- inputs: []
5242
+ inputs: [],
5184
5243
  }]
5185
5244
  }], propDecorators: { selectbox: [{
5186
5245
  type: ViewChild,
@@ -5188,8 +5247,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5188
5247
  }] } });
5189
5248
 
5190
5249
  var selectBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
5191
- __proto__: null,
5192
- AXPSelectBoxWidgetEditComponent: AXPSelectBoxWidgetEditComponent
5250
+ __proto__: null,
5251
+ AXPSelectBoxWidgetEditComponent: AXPSelectBoxWidgetEditComponent
5193
5252
  });
5194
5253
 
5195
5254
  class AXPSelectBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -5208,8 +5267,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5208
5267
  }] });
5209
5268
 
5210
5269
  var selectBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
5211
- __proto__: null,
5212
- AXPSelectBoxWidgetFilterComponent: AXPSelectBoxWidgetFilterComponent
5270
+ __proto__: null,
5271
+ AXPSelectBoxWidgetFilterComponent: AXPSelectBoxWidgetFilterComponent
5213
5272
  });
5214
5273
 
5215
5274
  class AXPSelectBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -5228,8 +5287,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5228
5287
  }] });
5229
5288
 
5230
5289
  var selectBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
5231
- __proto__: null,
5232
- AXPSelectBoxWidgetColumnComponent: AXPSelectBoxWidgetColumnComponent
5290
+ __proto__: null,
5291
+ AXPSelectBoxWidgetColumnComponent: AXPSelectBoxWidgetColumnComponent
5233
5292
  });
5234
5293
 
5235
5294
  class AXPSelectBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -5248,15 +5307,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5248
5307
  }] });
5249
5308
 
5250
5309
  var selectBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
5251
- __proto__: null,
5252
- AXPSelectBoxWidgetPrintComponent: AXPSelectBoxWidgetPrintComponent
5310
+ __proto__: null,
5311
+ AXPSelectBoxWidgetPrintComponent: AXPSelectBoxWidgetPrintComponent
5253
5312
  });
5254
5313
 
5255
5314
  const AXPSelectBoxWidget = {
5256
5315
  name: 'select-box',
5257
5316
  title: 'Select Box',
5258
- icon: "fa-solid fa-list-dropdown",
5259
- properties: [AXP_ALLOW_MULTIPLE_PROPERTY, AXP_DISABLED_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_VALUE_FIELD_PROPERTY],
5317
+ icon: 'fa-solid fa-list-dropdown',
5318
+ properties: [
5319
+ AXP_ALLOW_MULTIPLE_PROPERTY,
5320
+ AXP_DISABLED_PROPERTY,
5321
+ AXP_TEXT_FIELD_PROPERTY,
5322
+ AXP_VALUE_FIELD_PROPERTY,
5323
+ AXP_PLACEHOLDER_PROPERTY,
5324
+ AXP_HAS_CLEAR_BUTTON_PROPERTY
5325
+ ],
5260
5326
  components: {
5261
5327
  view: {
5262
5328
  component: () => Promise.resolve().then(function () { return selectBoxWidgetView_component; }).then((c) => c.AXPSelectBoxWidgetViewComponent),
@@ -5319,8 +5385,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5319
5385
  }] });
5320
5386
 
5321
5387
  var selectionListWidgetView_component = /*#__PURE__*/Object.freeze({
5322
- __proto__: null,
5323
- AXPSelectionListWidgetViewComponent: AXPSelectionListWidgetViewComponent
5388
+ __proto__: null,
5389
+ AXPSelectionListWidgetViewComponent: AXPSelectionListWidgetViewComponent
5324
5390
  });
5325
5391
 
5326
5392
  class AXPSelectionListWidgetEditComponent extends AXPWidgetComponent {
@@ -5357,7 +5423,7 @@ class AXPSelectionListWidgetEditComponent extends AXPWidgetComponent {
5357
5423
  <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
5358
5424
  }
5359
5425
  </ax-selection-list>
5360
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$3.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "hintField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5426
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$3.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "hintField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5361
5427
  }
5362
5428
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSelectionListWidgetEditComponent, decorators: [{
5363
5429
  type: Component,
@@ -5386,8 +5452,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5386
5452
  }] });
5387
5453
 
5388
5454
  var selectionListWidgetEdit_component = /*#__PURE__*/Object.freeze({
5389
- __proto__: null,
5390
- AXPSelectionListWidgetEditComponent: AXPSelectionListWidgetEditComponent
5455
+ __proto__: null,
5456
+ AXPSelectionListWidgetEditComponent: AXPSelectionListWidgetEditComponent
5391
5457
  });
5392
5458
 
5393
5459
  class AXPSelectionListWidgetFilterComponent extends AXPWidgetComponent {
@@ -5406,8 +5472,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5406
5472
  }] });
5407
5473
 
5408
5474
  var selectionListWidgetFilter_component = /*#__PURE__*/Object.freeze({
5409
- __proto__: null,
5410
- AXPSelectionListWidgetFilterComponent: AXPSelectionListWidgetFilterComponent
5475
+ __proto__: null,
5476
+ AXPSelectionListWidgetFilterComponent: AXPSelectionListWidgetFilterComponent
5411
5477
  });
5412
5478
 
5413
5479
  class AXPSelectionListWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -5446,8 +5512,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5446
5512
  }] });
5447
5513
 
5448
5514
  var selectionListWidgetColumn_component = /*#__PURE__*/Object.freeze({
5449
- __proto__: null,
5450
- AXPSelectionListWidgetColumnComponent: AXPSelectionListWidgetColumnComponent
5515
+ __proto__: null,
5516
+ AXPSelectionListWidgetColumnComponent: AXPSelectionListWidgetColumnComponent
5451
5517
  });
5452
5518
 
5453
5519
  class AXPSelectionListWidgetPrintComponent extends AXPWidgetComponent {
@@ -5466,13 +5532,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5466
5532
  }] });
5467
5533
 
5468
5534
  var selectionListWidgetPrint_component = /*#__PURE__*/Object.freeze({
5469
- __proto__: null,
5470
- AXPSelectionListWidgetPrintComponent: AXPSelectionListWidgetPrintComponent
5535
+ __proto__: null,
5536
+ AXPSelectionListWidgetPrintComponent: AXPSelectionListWidgetPrintComponent
5471
5537
  });
5472
5538
 
5473
5539
  const AXPSelectionListWidget = {
5474
5540
  name: "selection-list",
5475
5541
  title: "Selection List",
5542
+ icon: 'fa-solid fa-list-radio',
5476
5543
  components: {
5477
5544
  view: {
5478
5545
  component: () => Promise.resolve().then(function () { return selectionListWidgetView_component; }).then((c) => c.AXPSelectionListWidgetViewComponent),
@@ -5511,8 +5578,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5511
5578
  }] });
5512
5579
 
5513
5580
  var signaturePadWidgetColumn_component = /*#__PURE__*/Object.freeze({
5514
- __proto__: null,
5515
- AXPSignatureWidgetColumnComponent: AXPSignatureWidgetColumnComponent
5581
+ __proto__: null,
5582
+ AXPSignatureWidgetColumnComponent: AXPSignatureWidgetColumnComponent
5516
5583
  });
5517
5584
 
5518
5585
  class AXPSignatureWidgetEditComponent extends AXPWidgetComponent {
@@ -5647,8 +5714,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5647
5714
  }] } });
5648
5715
 
5649
5716
  var signaturePadWidgetEdit_component = /*#__PURE__*/Object.freeze({
5650
- __proto__: null,
5651
- AXPSignatureWidgetEditComponent: AXPSignatureWidgetEditComponent
5717
+ __proto__: null,
5718
+ AXPSignatureWidgetEditComponent: AXPSignatureWidgetEditComponent
5652
5719
  });
5653
5720
 
5654
5721
  class AXPSignatureWidgetFilterComponent extends AXPWidgetComponent {
@@ -5667,8 +5734,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5667
5734
  }] });
5668
5735
 
5669
5736
  var signaturePadWidgetFilter_component = /*#__PURE__*/Object.freeze({
5670
- __proto__: null,
5671
- AXPSignatureWidgetFilterComponent: AXPSignatureWidgetFilterComponent
5737
+ __proto__: null,
5738
+ AXPSignatureWidgetFilterComponent: AXPSignatureWidgetFilterComponent
5672
5739
  });
5673
5740
 
5674
5741
  class AXPSignatureWidgetPrintComponent extends AXPWidgetComponent {
@@ -5687,8 +5754,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5687
5754
  }] });
5688
5755
 
5689
5756
  var signaturePadWidgetPrint_component = /*#__PURE__*/Object.freeze({
5690
- __proto__: null,
5691
- AXPSignatureWidgetPrintComponent: AXPSignatureWidgetPrintComponent
5757
+ __proto__: null,
5758
+ AXPSignatureWidgetPrintComponent: AXPSignatureWidgetPrintComponent
5692
5759
  });
5693
5760
 
5694
5761
  class AXPSignatureWidgetViewComponent extends AXPWidgetComponent {
@@ -5729,8 +5796,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5729
5796
  }] });
5730
5797
 
5731
5798
  var signaturePadWidgetView_component = /*#__PURE__*/Object.freeze({
5732
- __proto__: null,
5733
- AXPSignatureWidgetViewComponent: AXPSignatureWidgetViewComponent
5799
+ __proto__: null,
5800
+ AXPSignatureWidgetViewComponent: AXPSignatureWidgetViewComponent
5734
5801
  });
5735
5802
 
5736
5803
  const AXPSignatureWidget = {
@@ -5810,15 +5877,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5810
5877
  }] });
5811
5878
 
5812
5879
  var textBoxWidgetView_component = /*#__PURE__*/Object.freeze({
5813
- __proto__: null,
5814
- AXPTextBoxWidgetViewComponent: AXPTextBoxWidgetViewComponent
5880
+ __proto__: null,
5881
+ AXPTextBoxWidgetViewComponent: AXPTextBoxWidgetViewComponent
5815
5882
  });
5816
5883
 
5817
5884
  class AXPTextBoxWidgetEditComponent extends AXPWidgetComponent {
5818
5885
  constructor() {
5819
5886
  super(...arguments);
5820
5887
  this.multiple = computed(() => this.options()["multiple"]);
5821
- this.clearButton = computed(() => this.options()["clearButton"] ?? true);
5888
+ this.hasClearButton = computed(() => this.options()['hasClearButton']);
5822
5889
  this.disabled = computed(() => this.options()["disabled"]);
5823
5890
  this.placeholder = computed(() => this.options()["placeholder"]);
5824
5891
  this.validationRules = computed(() => this.options()["validationRules"] ?? []);
@@ -5849,7 +5916,7 @@ class AXPTextBoxWidgetEditComponent extends AXPWidgetComponent {
5849
5916
  @for (validation of validationRules(); track $index) {
5850
5917
  <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
5851
5918
  }
5852
- @if(clearButton()){
5919
+ @if(hasClearButton()){
5853
5920
  <ax-clear-button></ax-clear-button>
5854
5921
  } @if(multiple()){
5855
5922
  <ax-suffix>
@@ -5873,7 +5940,7 @@ class AXPTextBoxWidgetEditComponent extends AXPWidgetComponent {
5873
5940
  </ax-button>
5874
5941
  }
5875
5942
  </div>
5876
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.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"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", 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: AXValidationModule }, { 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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5943
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", 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: AXValidationModule }, { 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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5877
5944
  }
5878
5945
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBoxWidgetEditComponent, decorators: [{
5879
5946
  type: Component,
@@ -5886,7 +5953,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5886
5953
  @for (validation of validationRules(); track $index) {
5887
5954
  <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
5888
5955
  }
5889
- @if(clearButton()){
5956
+ @if(hasClearButton()){
5890
5957
  <ax-clear-button></ax-clear-button>
5891
5958
  } @if(multiple()){
5892
5959
  <ax-suffix>
@@ -5919,8 +5986,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5919
5986
  }] });
5920
5987
 
5921
5988
  var textBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
5922
- __proto__: null,
5923
- AXPTextBoxWidgetEditComponent: AXPTextBoxWidgetEditComponent
5989
+ __proto__: null,
5990
+ AXPTextBoxWidgetEditComponent: AXPTextBoxWidgetEditComponent
5924
5991
  });
5925
5992
 
5926
5993
  class AXPTextBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -5939,8 +6006,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5939
6006
  }] });
5940
6007
 
5941
6008
  var textBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
5942
- __proto__: null,
5943
- AXPTextBoxWidgetFilterComponent: AXPTextBoxWidgetFilterComponent
6009
+ __proto__: null,
6010
+ AXPTextBoxWidgetFilterComponent: AXPTextBoxWidgetFilterComponent
5944
6011
  });
5945
6012
 
5946
6013
  class AXPTextBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -5960,8 +6027,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5960
6027
  }] });
5961
6028
 
5962
6029
  var textBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
5963
- __proto__: null,
5964
- AXPTextBoxWidgetColumnComponent: AXPTextBoxWidgetColumnComponent
6030
+ __proto__: null,
6031
+ AXPTextBoxWidgetColumnComponent: AXPTextBoxWidgetColumnComponent
5965
6032
  });
5966
6033
 
5967
6034
  class AXPTextBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -5980,8 +6047,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
5980
6047
  }] });
5981
6048
 
5982
6049
  var textBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
5983
- __proto__: null,
5984
- AXPTextBoxWidgetPrintComponent: AXPTextBoxWidgetPrintComponent
6050
+ __proto__: null,
6051
+ AXPTextBoxWidgetPrintComponent: AXPTextBoxWidgetPrintComponent
5985
6052
  });
5986
6053
 
5987
6054
  const AXPTextBoxWidget = {
@@ -5995,6 +6062,7 @@ const AXPTextBoxWidget = {
5995
6062
  AXP_DISABLED_PROPERTY,
5996
6063
  AXP_VALIDATION_PROPERTY,
5997
6064
  AXP_PLACEHOLDER_PROPERTY,
6065
+ AXP_HAS_CLEAR_BUTTON_PROPERTY,
5998
6066
  plainTextDefaultProperty(),
5999
6067
  cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: "200px" } })
6000
6068
  ],
@@ -6066,8 +6134,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6066
6134
  }] });
6067
6135
 
6068
6136
  var toggleWidgetView_component = /*#__PURE__*/Object.freeze({
6069
- __proto__: null,
6070
- AXPToggleWidgetViewComponent: AXPToggleWidgetViewComponent
6137
+ __proto__: null,
6138
+ AXPToggleWidgetViewComponent: AXPToggleWidgetViewComponent
6071
6139
  });
6072
6140
 
6073
6141
  class AXPToggleWidgetEditComponent extends AXPWidgetComponent {
@@ -6094,8 +6162,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6094
6162
  }] });
6095
6163
 
6096
6164
  var toggleWidgetEdit_component = /*#__PURE__*/Object.freeze({
6097
- __proto__: null,
6098
- AXPToggleWidgetEditComponent: AXPToggleWidgetEditComponent
6165
+ __proto__: null,
6166
+ AXPToggleWidgetEditComponent: AXPToggleWidgetEditComponent
6099
6167
  });
6100
6168
 
6101
6169
  class AXPToggleWidgetFilterComponent extends AXPWidgetComponent {
@@ -6114,8 +6182,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6114
6182
  }] });
6115
6183
 
6116
6184
  var toggleWidgetFilter_component = /*#__PURE__*/Object.freeze({
6117
- __proto__: null,
6118
- AXPToggleWidgetFilterComponent: AXPToggleWidgetFilterComponent
6185
+ __proto__: null,
6186
+ AXPToggleWidgetFilterComponent: AXPToggleWidgetFilterComponent
6119
6187
  });
6120
6188
 
6121
6189
  class AXPToggleWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -6164,8 +6232,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6164
6232
  }] });
6165
6233
 
6166
6234
  var toggleWidgetColumn_component = /*#__PURE__*/Object.freeze({
6167
- __proto__: null,
6168
- AXPToggleWidgetColumnComponent: AXPToggleWidgetColumnComponent
6235
+ __proto__: null,
6236
+ AXPToggleWidgetColumnComponent: AXPToggleWidgetColumnComponent
6169
6237
  });
6170
6238
 
6171
6239
  class AXPToggleWidgetPrintComponent extends AXPWidgetComponent {
@@ -6184,13 +6252,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6184
6252
  }] });
6185
6253
 
6186
6254
  var toggleWidgetPrint_component = /*#__PURE__*/Object.freeze({
6187
- __proto__: null,
6188
- AXPToggleWidgetPrintComponent: AXPToggleWidgetPrintComponent
6255
+ __proto__: null,
6256
+ AXPToggleWidgetPrintComponent: AXPToggleWidgetPrintComponent
6189
6257
  });
6190
6258
 
6191
6259
  const AXPToggleWidget = {
6192
6260
  name: 'toggle',
6193
6261
  title: 'Toggle',
6262
+ icon: 'fa-solid fa-toggle-on',
6194
6263
  properties: [
6195
6264
  AXP_NAME_PROPERTY,
6196
6265
  AXP_DATA_PATH_PROPERTY,
@@ -6261,8 +6330,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6261
6330
  }] } });
6262
6331
 
6263
6332
  var pageWidgetView_component = /*#__PURE__*/Object.freeze({
6264
- __proto__: null,
6265
- AXPPageWidgetViewComponent: AXPPageWidgetViewComponent
6333
+ __proto__: null,
6334
+ AXPPageWidgetViewComponent: AXPPageWidgetViewComponent
6266
6335
  });
6267
6336
 
6268
6337
  const AXPPageWidget = {
@@ -6273,6 +6342,7 @@ const AXPPageWidget = {
6273
6342
  visible: false,
6274
6343
  properties: [
6275
6344
  AXP_FONT_SIZE_PROPERTY,
6345
+ AXP_THEME_PROPERTY,
6276
6346
  AXP_BG_COLOR_PROPERTY
6277
6347
  ],
6278
6348
  components: {
@@ -6286,7 +6356,7 @@ const AXPPageWidget = {
6286
6356
  component: () => Promise.resolve().then(function () { return pageWidgetView_component; }).then((c) => c.AXPPageWidgetViewComponent),
6287
6357
  },
6288
6358
  designer: {
6289
- component: () => import('./acorex-platform-widgets-page-widget-designer.component-DYb6bilD.mjs').then((c) => c.AXPPageWidgetDesignerComponent),
6359
+ component: () => import('./acorex-platform-widgets-page-widget-designer.component-DlfG4EP1.mjs').then((c) => c.AXPPageWidgetDesignerComponent),
6290
6360
  },
6291
6361
  }
6292
6362
  };
@@ -6352,8 +6422,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6352
6422
  }] } });
6353
6423
 
6354
6424
  var blockWidgetDesigner_component = /*#__PURE__*/Object.freeze({
6355
- __proto__: null,
6356
- AXPBlockWidgetDesignerComponent: AXPBlockWidgetDesignerComponent
6425
+ __proto__: null,
6426
+ AXPBlockWidgetDesignerComponent: AXPBlockWidgetDesignerComponent
6357
6427
  });
6358
6428
 
6359
6429
  class AXPBlockWidgetViewComponent extends AXPWidgetComponent {
@@ -6400,8 +6470,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6400
6470
  }] } });
6401
6471
 
6402
6472
  var blockWidgetView_component = /*#__PURE__*/Object.freeze({
6403
- __proto__: null,
6404
- AXPBlockWidgetViewComponent: AXPBlockWidgetViewComponent
6473
+ __proto__: null,
6474
+ AXPBlockWidgetViewComponent: AXPBlockWidgetViewComponent
6405
6475
  });
6406
6476
 
6407
6477
  const AXPBlockWidget = {
@@ -6476,8 +6546,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6476
6546
  }] });
6477
6547
 
6478
6548
  var repeaterWidgetView_component = /*#__PURE__*/Object.freeze({
6479
- __proto__: null,
6480
- AXPRepeaterWidgetViewComponent: AXPRepeaterWidgetViewComponent
6549
+ __proto__: null,
6550
+ AXPRepeaterWidgetViewComponent: AXPRepeaterWidgetViewComponent
6481
6551
  });
6482
6552
 
6483
6553
  class AXPRepeaterWidgetEditComponent extends AXPWidgetComponent {
@@ -6511,8 +6581,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6511
6581
  }] });
6512
6582
 
6513
6583
  var repeaterWidgetPrint_component = /*#__PURE__*/Object.freeze({
6514
- __proto__: null,
6515
- AXPRepeaterWidgetPrintComponent: AXPRepeaterWidgetPrintComponent
6584
+ __proto__: null,
6585
+ AXPRepeaterWidgetPrintComponent: AXPRepeaterWidgetPrintComponent
6516
6586
  });
6517
6587
 
6518
6588
  class AXPRepeaterWidgetDesignerComponent extends AXPContainerWidgetComponent {
@@ -6561,13 +6631,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6561
6631
  }] });
6562
6632
 
6563
6633
  var repeaterWidgetDesigner_component = /*#__PURE__*/Object.freeze({
6564
- __proto__: null,
6565
- AXPRepeaterWidgetDesignerComponent: AXPRepeaterWidgetDesignerComponent
6634
+ __proto__: null,
6635
+ AXPRepeaterWidgetDesignerComponent: AXPRepeaterWidgetDesignerComponent
6566
6636
  });
6567
6637
 
6568
6638
  const AXPRepeaterWidget = {
6569
6639
  name: "repeater",
6570
6640
  title: "Repeater",
6641
+ icon: 'fa-solid fa-table-list',
6571
6642
  container: true,
6572
6643
  components: {
6573
6644
  view: {
@@ -6601,42 +6672,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6601
6672
  }] });
6602
6673
 
6603
6674
  var colorBoxWidgetView_component = /*#__PURE__*/Object.freeze({
6604
- __proto__: null,
6605
- AXPColorBoxWidgetViewComponent: AXPColorBoxWidgetViewComponent
6675
+ __proto__: null,
6676
+ AXPColorBoxWidgetViewComponent: AXPColorBoxWidgetViewComponent
6606
6677
  });
6607
6678
 
6608
6679
  class AXPColorBoxWidgetEditComponent extends AXPWidgetComponent {
6609
6680
  constructor() {
6610
6681
  super(...arguments);
6611
6682
  this.disabled = computed(() => this.options()["disabled"]);
6612
- this.clearButton = computed(() => this.options()["clearButton"]);
6613
- this._validationRules = [];
6614
- }
6615
- get validationRules() {
6616
- return this._validationRules;
6617
- }
6618
- set validationRules(v) {
6619
- this._validationRules = v;
6683
+ this.hasClearButton = computed(() => this.options()['hasClearButton']);
6684
+ this.validationRules = computed(() => this.options()["validationRules"] ?? []);
6620
6685
  }
6621
6686
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPColorBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
6622
6687
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPColorBoxWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
6623
6688
  <ax-color-box [disabled]="disabled()" [ngModel]="getValue()" (ngModelChange)="setValue($event)">
6624
- @if(clearButton()){
6689
+ @if(hasClearButton()){
6625
6690
  <ax-clear-button></ax-clear-button>
6626
- } @for (validation of validationRules; track $index) {
6691
+ } @for (validation of validationRules(); track $index) {
6627
6692
  <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
6628
6693
  }
6629
6694
  </ax-color-box>
6630
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXColorBoxModule }, { kind: "component", type: i2$5.AXColorBoxComponent, selector: "ax-color-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6695
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXColorBoxModule }, { kind: "component", type: i2$5.AXColorBoxComponent, selector: "ax-color-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4$1.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6631
6696
  }
6632
6697
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPColorBoxWidgetEditComponent, decorators: [{
6633
6698
  type: Component,
6634
6699
  args: [{
6635
6700
  template: `
6636
6701
  <ax-color-box [disabled]="disabled()" [ngModel]="getValue()" (ngModelChange)="setValue($event)">
6637
- @if(clearButton()){
6702
+ @if(hasClearButton()){
6638
6703
  <ax-clear-button></ax-clear-button>
6639
- } @for (validation of validationRules; track $index) {
6704
+ } @for (validation of validationRules(); track $index) {
6640
6705
  <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
6641
6706
  }
6642
6707
  </ax-color-box>
@@ -6648,8 +6713,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6648
6713
  }] });
6649
6714
 
6650
6715
  var colorBoxWidgetEdit_component = /*#__PURE__*/Object.freeze({
6651
- __proto__: null,
6652
- AXPColorBoxWidgetEditComponent: AXPColorBoxWidgetEditComponent
6716
+ __proto__: null,
6717
+ AXPColorBoxWidgetEditComponent: AXPColorBoxWidgetEditComponent
6653
6718
  });
6654
6719
 
6655
6720
  class AXPColorBoxWidgetFilterComponent extends AXPWidgetComponent {
@@ -6668,8 +6733,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6668
6733
  }] });
6669
6734
 
6670
6735
  var colorBoxWidgetFilter_component = /*#__PURE__*/Object.freeze({
6671
- __proto__: null,
6672
- AXPColorBoxWidgetFilterComponent: AXPColorBoxWidgetFilterComponent
6736
+ __proto__: null,
6737
+ AXPColorBoxWidgetFilterComponent: AXPColorBoxWidgetFilterComponent
6673
6738
  });
6674
6739
 
6675
6740
  class AXPColorBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
@@ -6688,8 +6753,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6688
6753
  }] });
6689
6754
 
6690
6755
  var colorBoxWidgetColumn_component = /*#__PURE__*/Object.freeze({
6691
- __proto__: null,
6692
- AXPColorBoxWidgetColumnComponent: AXPColorBoxWidgetColumnComponent
6756
+ __proto__: null,
6757
+ AXPColorBoxWidgetColumnComponent: AXPColorBoxWidgetColumnComponent
6693
6758
  });
6694
6759
 
6695
6760
  class AXPColorBoxWidgetPrintComponent extends AXPWidgetComponent {
@@ -6708,8 +6773,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6708
6773
  }] });
6709
6774
 
6710
6775
  var colorBoxWidgetPrint_component = /*#__PURE__*/Object.freeze({
6711
- __proto__: null,
6712
- AXPColorBoxWidgetPrintComponent: AXPColorBoxWidgetPrintComponent
6776
+ __proto__: null,
6777
+ AXPColorBoxWidgetPrintComponent: AXPColorBoxWidgetPrintComponent
6713
6778
  });
6714
6779
 
6715
6780
  const AXPColorBoxWidget = {
@@ -6770,14 +6835,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6770
6835
  }] });
6771
6836
 
6772
6837
  var textBlockWidgetView_component = /*#__PURE__*/Object.freeze({
6773
- __proto__: null,
6774
- AXPTextBlockWidgetViewComponent: AXPTextBlockWidgetViewComponent
6838
+ __proto__: null,
6839
+ AXPTextBlockWidgetViewComponent: AXPTextBlockWidgetViewComponent
6775
6840
  });
6776
6841
 
6777
6842
  const AXPTextBlockWidget = {
6778
6843
  title: "Text Block",
6779
6844
  name: "text-block",
6780
- icon: "fa-solid fa-square",
6845
+ icon: "fa-solid fa-text",
6781
6846
  properties: [
6782
6847
  AXP_PLACEHOLDER_PROPERTY,
6783
6848
  {
@@ -6890,5 +6955,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
6890
6955
  * Generated bundle index. Do not edit.
6891
6956
  */
6892
6957
 
6893
- export { AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetFilterComponent, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPFileBoxWidget, AXPFileBoxWidgetColumnComponent, AXPFileBoxWidgetEditComponent, AXPFileBoxWidgetFilterComponent, AXPFileBoxWidgetPrintComponent, AXPFileBoxWidgetViewComponent, AXPFileManagementService, AXPGalleryWidget, AXPGalleryWidgetColumnComponent, AXPGalleryWidgetEditComponent, AXPGalleryWidgetFilterComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetColumnComponent, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetFilterComponent, AXPMapBoxWidgetPrintComponent, AXPMapBoxWidgetViewComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BG_COLOR_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATE_FROMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, booleanDefaultProperty, plainTextDefaultProperty };
6958
+ export { AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetFilterComponent, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPFileBoxWidget, AXPFileBoxWidgetColumnComponent, AXPFileBoxWidgetEditComponent, AXPFileBoxWidgetFilterComponent, AXPFileBoxWidgetPrintComponent, AXPFileBoxWidgetViewComponent, AXPFileManagementService, AXPGalleryWidget, AXPGalleryWidgetColumnComponent, AXPGalleryWidgetEditComponent, AXPGalleryWidgetFilterComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetColumnComponent, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetFilterComponent, AXPMapBoxWidgetPrintComponent, AXPMapBoxWidgetViewComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BG_COLOR_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATE_FROMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, booleanDefaultProperty, plainTextDefaultProperty };
6894
6959
  //# sourceMappingURL=acorex-platform-widgets.mjs.map