@acorex/platform 21.0.0-next.42 → 21.0.0-next.43

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 (33) hide show
  1. package/fesm2022/{acorex-platform-common-common-settings.provider-G9XcXXOG.mjs → acorex-platform-common-common-settings.provider-lWz_f-Ia.mjs} +22 -24
  2. package/fesm2022/acorex-platform-common-common-settings.provider-lWz_f-Ia.mjs.map +1 -0
  3. package/fesm2022/acorex-platform-common.mjs +115 -23
  4. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  5. package/fesm2022/acorex-platform-core.mjs +172 -19
  6. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  7. package/fesm2022/acorex-platform-layout-builder.mjs +164 -24
  8. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  9. package/fesm2022/acorex-platform-layout-components.mjs +235 -15
  10. package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
  11. package/fesm2022/acorex-platform-layout-designer.mjs +40 -5
  12. package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
  13. package/fesm2022/acorex-platform-layout-entity.mjs +166 -8
  14. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  15. package/fesm2022/acorex-platform-layout-widgets.mjs +161 -130
  16. package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
  17. package/fesm2022/acorex-platform-runtime.mjs +65 -2
  18. package/fesm2022/acorex-platform-runtime.mjs.map +1 -1
  19. package/fesm2022/acorex-platform-themes-default.mjs +1 -1
  20. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  21. package/fesm2022/{acorex-platform-themes-shared-settings.provider-D13QB3Hr.mjs → acorex-platform-themes-shared-settings.provider-DK6R87Lf.mjs} +23 -24
  22. package/fesm2022/acorex-platform-themes-shared-settings.provider-DK6R87Lf.mjs.map +1 -0
  23. package/fesm2022/acorex-platform-themes-shared.mjs +2 -2
  24. package/package.json +1 -1
  25. package/types/acorex-platform-common.d.ts +38 -4
  26. package/types/acorex-platform-core.d.ts +20 -2
  27. package/types/acorex-platform-layout-builder.d.ts +63 -21
  28. package/types/acorex-platform-layout-components.d.ts +54 -3
  29. package/types/acorex-platform-layout-entity.d.ts +19 -2
  30. package/types/acorex-platform-layout-widgets.d.ts +19 -5
  31. package/types/acorex-platform-runtime.d.ts +6 -0
  32. package/fesm2022/acorex-platform-common-common-settings.provider-G9XcXXOG.mjs.map +0 -1
  33. package/fesm2022/acorex-platform-themes-shared-settings.provider-D13QB3Hr.mjs.map +0 -1
@@ -34,6 +34,7 @@ import { AXSelectBoxComponent, AXSelectBoxModule } from '@acorex/components/sele
34
34
  import { set, get, castArray, isNil, isNull, isEmpty, isNumber, isEqual, cloneDeep } from 'lodash-es';
35
35
  import * as i2$2 from '@acorex/components/loading';
36
36
  import { AXLoadingModule } from '@acorex/components/loading';
37
+ import { AXPCommandService, AXPCommandExecutor, provideCommandSetups, provideQuerySetups } from '@acorex/platform/runtime';
37
38
  import { AXPConditionBuilderComponent, AXPColorPalettePickerComponent, AXPDragDropListComponent, AXPColumnItemListComponent, AXPImageEditorService, AXPStateMessageComponent, AXPStopwatchComponent, AXPWidgetFieldConfiguratorComponent, AXPItemConfiguratorComponent, AXPRepeaterRowsLayoutComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryColumnsComponent } from '@acorex/platform/layout/components';
38
39
  import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
39
40
  import { AXColorUtil } from '@acorex/core/utils';
@@ -83,7 +84,6 @@ import * as i1$b from '@acorex/components/code-editor';
83
84
  import { AXCodeEditorModule } from '@acorex/components/code-editor';
84
85
  import * as i1$c from '@acorex/components/data-table';
85
86
  import { AXDataTableModule } from '@acorex/components/data-table';
86
- import { AXPCommandExecutor, provideCommandSetups, provideQuerySetups } from '@acorex/platform/runtime';
87
87
  import { AXUploaderZoneDirective } from '@acorex/cdk/uploader';
88
88
  import { AXUploaderModule } from '@acorex/components/uploader';
89
89
  import { AXLoadingDialogService } from '@acorex/components/loading-dialog';
@@ -1926,25 +1926,67 @@ var buttonWidgetColumn_component = /*#__PURE__*/Object.freeze({
1926
1926
  class AXPButtonWidgetViewComponent extends AXPLayoutBaseWidgetComponent {
1927
1927
  constructor() {
1928
1928
  super(...arguments);
1929
+ //#region ---- Services & Dependencies ----
1930
+ this.commandService = inject(AXPCommandService);
1931
+ //#endregion
1932
+ //#region ---- Computed ----
1929
1933
  this.disabled = computed(() => this.options()['disabled'], ...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
1930
1934
  this.color = computed(() => this.options()['color']?.id ?? 'primary', ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
1931
1935
  this.look = computed(() => this.options()['look']?.id ?? 'solid', ...(ngDevMode ? [{ debugName: "look" }] : /* istanbul ignore next */ []));
1932
1936
  this.text = computed(() => this.options()['text'], ...(ngDevMode ? [{ debugName: "text" }] : /* istanbul ignore next */ []));
1933
1937
  this.loading = computed(() => this.options()['loading'] ?? false, ...(ngDevMode ? [{ debugName: "loading" }] : /* istanbul ignore next */ []));
1934
1938
  this.icon = computed(() => this.options()['icon'], ...(ngDevMode ? [{ debugName: "icon" }] : /* istanbul ignore next */ []));
1939
+ //#endregion
1940
+ //#region ---- Events ----
1935
1941
  this.onClick = new EventEmitter();
1936
1942
  }
1943
+ //#endregion
1944
+ //#region ---- UI Handlers ----
1937
1945
  handleClick(e) {
1938
1946
  this.onClick.emit(e);
1947
+ void this.runOptionsCommand();
1939
1948
  }
1949
+ //#endregion
1950
+ //#region ---- API ----
1940
1951
  api() {
1941
1952
  return {
1942
1953
  onClick: this.onClick,
1943
1954
  };
1944
1955
  }
1956
+ //#endregion
1957
+ //#region ---- Command execution ----
1958
+ /**
1959
+ * When **`options.command`** matches {@link AXPCommandActionCallback}, runs the registered **`AXPCommand`**
1960
+ * via {@link AXPCommandService.execute} (`name` registry key + `options` payload).
1961
+ */
1962
+ async runOptionsCommand() {
1963
+ const raw = this.options()['command'];
1964
+ if (raw == null || raw === '') {
1965
+ return;
1966
+ }
1967
+ if (typeof raw === 'string') {
1968
+ await this.safeExecute(raw.trim(), {});
1969
+ return;
1970
+ }
1971
+ if (typeof raw === 'object' && typeof raw.name === 'string' && raw.name.trim().length > 0) {
1972
+ await this.safeExecute(raw.name.trim(), (raw.options ?? {}));
1973
+ }
1974
+ }
1975
+ async safeExecute(key, input) {
1976
+ if (!this.commandService.exists(key)) {
1977
+ console.warn('[AXP button-action] Command is not registered on AXPCommandRegistry:', key);
1978
+ return;
1979
+ }
1980
+ try {
1981
+ await this.commandService.execute(key, input);
1982
+ }
1983
+ catch (err) {
1984
+ console.warn('[AXP button-action] Command execution failed:', key, err);
1985
+ }
1986
+ }
1945
1987
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPButtonWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1946
1988
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "axp-button-widget-view", usesInheritance: true, ngImport: i0, template: `
1947
- <ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
1989
+ <ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()" (onClick)="handleClick($event)">
1948
1990
  @if (icon() && text()) {
1949
1991
  <ax-prefix
1950
1992
  ><ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon
@@ -1963,7 +2005,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
1963
2005
  args: [{
1964
2006
  selector: 'axp-button-widget-view',
1965
2007
  template: `
1966
- <ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()">
2008
+ <ax-button [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()" (onClick)="handleClick($event)">
1967
2009
  @if (icon() && text()) {
1968
2010
  <ax-prefix
1969
2011
  ><ax-icon> <i class="fa-solid" [class]="icon()"></i> </ax-icon
@@ -8654,8 +8696,8 @@ class AXPTagEditorWidgetEditComponent extends AXPValueWidgetComponent {
8654
8696
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPTagEditorWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
8655
8697
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: AXPTagEditorWidgetEditComponent, isStandalone: true, selector: "axp-tag-editor-widget-edit", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
8656
8698
  <ax-tag-box
8657
- #tagBoxComponent
8658
- [tagTemplate]="tagTemplate"
8699
+ #tagBoxComponent
8700
+ [tagTemplate]="tagTemplate"
8659
8701
  [ngModel]="internalValue()"
8660
8702
  [textField]="'title'"
8661
8703
  (onValueChanged)="handleValueChange($event)"
@@ -8684,63 +8726,55 @@ class AXPTagEditorWidgetEditComponent extends AXPValueWidgetComponent {
8684
8726
  }
8685
8727
  </ax-tag-box>
8686
8728
 
8729
+ <!-- Custom Tag Template -->
8730
+ <ng-template #tagTemplate let-item let-index="index">
8731
+ <div
8732
+ class="ax-inline-flex ax-items-center ax-gap-1.5 ax-rounded-md ax-px-3 ax-py-1 ax-text-sm ax-surface"
8733
+ [style.background-color]="item.color || null"
8734
+ [style.color]="item.color ? 'white' : null"
8735
+ >
8736
+ <i class="fa-solid fa-tag" [style.color]="item.color ? 'white' : null"></i>
8737
+ <span>{{ item.title }}</span>
8738
+ <button (click)="tagBoxComponent.removeItem(index)" type="button">
8739
+ <ax-icon class="ax-icon ax-icon-close"></ax-icon>
8740
+ </button>
8741
+ </div>
8742
+ </ng-template>
8687
8743
 
8688
- <!-- Custom Tag Template -->
8689
- <ng-template #tagTemplate let-item let-index="index">
8690
- <div
8691
- class="ax-inline-flex ax-items-center ax-gap-1.5 ax-rounded-md ax-px-3 ax-py-1 ax-text-sm ax-surface"
8692
- [style.background-color]="item.color || null"
8693
- [style.color]="item.color ? 'white' : null"
8694
- >
8695
- <i
8696
- class="fa-solid fa-tag"
8697
- [style.color]="item.color ? 'white' : null"
8698
- ></i>
8699
- <span>{{ item.title }}</span>
8700
- <button (click)="tagBoxComponent.removeItem(index)" type="button">
8701
- <ax-icon class="ax-icon ax-icon-close"></ax-icon>
8702
- </button>
8703
- </div>
8704
- </ng-template>
8705
-
8706
- <!-- Custom Autocomplete Item Template -->
8707
- <ng-template #itemTemplate let-context>
8708
- @let item = context.data;
8709
- <div class="ax-flex ax-w-full ax-items-center ax-gap-3 ax-rounded ax-p-2 ">
8710
- <i
8711
- class="fa-solid fa-tag ax-text-xl"
8712
- [style.color]="item.color || null"
8713
- ></i>
8714
- <div class="ax-flex-1">
8715
- <ax-title>{{ item.title }}</ax-title>
8716
- @if (item.description) {
8717
- <ax-subtitle>{{ item.description }}</ax-subtitle>
8718
- }
8719
- </div>
8720
- </div>
8721
- </ng-template>
8722
-
8744
+ <!-- Custom Autocomplete Item Template -->
8745
+ <ng-template #itemTemplate let-context>
8746
+ @let item = context.data;
8747
+ <div class="ax-flex ax-w-full ax-items-center ax-gap-3 ax-rounded ax-p-2 ">
8748
+ <i class="fa-solid fa-tag ax-text-xl" [style.color]="item.color || null"></i>
8749
+ <div class="ax-flex-1">
8750
+ <ax-title>{{ item.title }}</ax-title>
8751
+ @if (item.description) {
8752
+ <ax-subtitle>{{ item.description }}</ax-subtitle>
8753
+ }
8754
+ </div>
8755
+ </div>
8756
+ </ng-template>
8723
8757
 
8724
- <!-- Custom Empty Template -->
8725
- <ng-template #emptyTemplate>
8726
- <div
8727
- class="ax-flex ax-flex-col ax-items-center ax-justify-center ax-px-4 ax-py-8"
8728
- >
8729
- <ax-title>{{ '@general:state-message.no-results.title' | translate | async }}</ax-title>
8730
- </div>
8731
- </ng-template>
8758
+ <!-- Custom Empty Template -->
8759
+ <ng-template #emptyTemplate>
8760
+ <div class="ax-flex ax-flex-col ax-items-center ax-justify-center ax-px-4 ax-py-8">
8761
+ <ax-title>{{ '@general:state-message.no-results.title' | translate | async }}</ax-title>
8762
+ </div>
8763
+ </ng-template>
8732
8764
 
8733
- <!-- Custom Loading Template -->
8734
- <ng-template #loadingTemplate>
8735
- <div class="ax-flex ax-items-center ax-justify-center ax-py-4">
8736
- <div class="ax-flex ax-items-center ax-gap-2">
8737
- <div
8738
- class="ax-animate-spin ax-h-4 ax-w-4 ax-rounded-full ax-border-2 ax-border-primary ax-border-t-transparent"
8739
- ></div>
8740
- <span class="ax-text-sm ax-text-gray-500">{{ '@general:state-message.searching.title' | translate | async }}</span>
8741
- </div>
8742
- </div>
8743
- </ng-template>
8765
+ <!-- Custom Loading Template -->
8766
+ <ng-template #loadingTemplate>
8767
+ <div class="ax-flex ax-items-center ax-justify-center ax-py-4">
8768
+ <div class="ax-flex ax-items-center ax-gap-2">
8769
+ <div
8770
+ class="fa-spin ax-h-4 ax-w-4 ax-rounded-full ax-border-2 ax-border-primary ax-border-t-transparent"
8771
+ ></div>
8772
+ <span class="ax-text-sm ax-text-gray-500">{{
8773
+ '@general:state-message.searching.title' | translate | async
8774
+ }}</span>
8775
+ </div>
8776
+ </div>
8777
+ </ng-template>
8744
8778
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXTagBoxModule }, { kind: "component", type: i1$9.AXTagBoxComponent, selector: "ax-tag-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "allowNull", "type", "look", "addOnComma", "addOnEnter", "valueField", "textField", "readonlyField", "allowDuplicateValues", "tagTemplate"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress", "onTagClick", "onTagDblClick", "onTagContextMenu"] }, { kind: "ngmodule", type: AXAutocompleteModule }, { kind: "component", type: i2$6.AXAutocompleteComponent, selector: "ax-autocomplete", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "disabledField", "textTemplate", "selectedItems", "delayTime", "itemHeight", "maxVisibleItems", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "listHeaderTemplate", "listFooterTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed", "onItemClick", "onItemSelected"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i3.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message", "disabled"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i2$1.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i1$4.AsyncPipe, name: "async" }, { kind: "pipe", type: i6.AXTranslatorPipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8745
8779
  }
8746
8780
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPTagEditorWidgetEditComponent, decorators: [{
@@ -8749,8 +8783,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
8749
8783
  selector: 'axp-tag-editor-widget-edit',
8750
8784
  template: `
8751
8785
  <ax-tag-box
8752
- #tagBoxComponent
8753
- [tagTemplate]="tagTemplate"
8786
+ #tagBoxComponent
8787
+ [tagTemplate]="tagTemplate"
8754
8788
  [ngModel]="internalValue()"
8755
8789
  [textField]="'title'"
8756
8790
  (onValueChanged)="handleValueChange($event)"
@@ -8779,63 +8813,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
8779
8813
  }
8780
8814
  </ax-tag-box>
8781
8815
 
8816
+ <!-- Custom Tag Template -->
8817
+ <ng-template #tagTemplate let-item let-index="index">
8818
+ <div
8819
+ class="ax-inline-flex ax-items-center ax-gap-1.5 ax-rounded-md ax-px-3 ax-py-1 ax-text-sm ax-surface"
8820
+ [style.background-color]="item.color || null"
8821
+ [style.color]="item.color ? 'white' : null"
8822
+ >
8823
+ <i class="fa-solid fa-tag" [style.color]="item.color ? 'white' : null"></i>
8824
+ <span>{{ item.title }}</span>
8825
+ <button (click)="tagBoxComponent.removeItem(index)" type="button">
8826
+ <ax-icon class="ax-icon ax-icon-close"></ax-icon>
8827
+ </button>
8828
+ </div>
8829
+ </ng-template>
8782
8830
 
8783
- <!-- Custom Tag Template -->
8784
- <ng-template #tagTemplate let-item let-index="index">
8785
- <div
8786
- class="ax-inline-flex ax-items-center ax-gap-1.5 ax-rounded-md ax-px-3 ax-py-1 ax-text-sm ax-surface"
8787
- [style.background-color]="item.color || null"
8788
- [style.color]="item.color ? 'white' : null"
8789
- >
8790
- <i
8791
- class="fa-solid fa-tag"
8792
- [style.color]="item.color ? 'white' : null"
8793
- ></i>
8794
- <span>{{ item.title }}</span>
8795
- <button (click)="tagBoxComponent.removeItem(index)" type="button">
8796
- <ax-icon class="ax-icon ax-icon-close"></ax-icon>
8797
- </button>
8798
- </div>
8799
- </ng-template>
8800
-
8801
- <!-- Custom Autocomplete Item Template -->
8802
- <ng-template #itemTemplate let-context>
8803
- @let item = context.data;
8804
- <div class="ax-flex ax-w-full ax-items-center ax-gap-3 ax-rounded ax-p-2 ">
8805
- <i
8806
- class="fa-solid fa-tag ax-text-xl"
8807
- [style.color]="item.color || null"
8808
- ></i>
8809
- <div class="ax-flex-1">
8810
- <ax-title>{{ item.title }}</ax-title>
8811
- @if (item.description) {
8812
- <ax-subtitle>{{ item.description }}</ax-subtitle>
8813
- }
8814
- </div>
8815
- </div>
8816
- </ng-template>
8817
-
8831
+ <!-- Custom Autocomplete Item Template -->
8832
+ <ng-template #itemTemplate let-context>
8833
+ @let item = context.data;
8834
+ <div class="ax-flex ax-w-full ax-items-center ax-gap-3 ax-rounded ax-p-2 ">
8835
+ <i class="fa-solid fa-tag ax-text-xl" [style.color]="item.color || null"></i>
8836
+ <div class="ax-flex-1">
8837
+ <ax-title>{{ item.title }}</ax-title>
8838
+ @if (item.description) {
8839
+ <ax-subtitle>{{ item.description }}</ax-subtitle>
8840
+ }
8841
+ </div>
8842
+ </div>
8843
+ </ng-template>
8818
8844
 
8819
- <!-- Custom Empty Template -->
8820
- <ng-template #emptyTemplate>
8821
- <div
8822
- class="ax-flex ax-flex-col ax-items-center ax-justify-center ax-px-4 ax-py-8"
8823
- >
8824
- <ax-title>{{ '@general:state-message.no-results.title' | translate | async }}</ax-title>
8825
- </div>
8826
- </ng-template>
8845
+ <!-- Custom Empty Template -->
8846
+ <ng-template #emptyTemplate>
8847
+ <div class="ax-flex ax-flex-col ax-items-center ax-justify-center ax-px-4 ax-py-8">
8848
+ <ax-title>{{ '@general:state-message.no-results.title' | translate | async }}</ax-title>
8849
+ </div>
8850
+ </ng-template>
8827
8851
 
8828
- <!-- Custom Loading Template -->
8829
- <ng-template #loadingTemplate>
8830
- <div class="ax-flex ax-items-center ax-justify-center ax-py-4">
8831
- <div class="ax-flex ax-items-center ax-gap-2">
8832
- <div
8833
- class="ax-animate-spin ax-h-4 ax-w-4 ax-rounded-full ax-border-2 ax-border-primary ax-border-t-transparent"
8834
- ></div>
8835
- <span class="ax-text-sm ax-text-gray-500">{{ '@general:state-message.searching.title' | translate | async }}</span>
8836
- </div>
8837
- </div>
8838
- </ng-template>
8852
+ <!-- Custom Loading Template -->
8853
+ <ng-template #loadingTemplate>
8854
+ <div class="ax-flex ax-items-center ax-justify-center ax-py-4">
8855
+ <div class="ax-flex ax-items-center ax-gap-2">
8856
+ <div
8857
+ class="fa-spin ax-h-4 ax-w-4 ax-rounded-full ax-border-2 ax-border-primary ax-border-t-transparent"
8858
+ ></div>
8859
+ <span class="ax-text-sm ax-text-gray-500">{{
8860
+ '@general:state-message.searching.title' | translate | async
8861
+ }}</span>
8862
+ </div>
8863
+ </div>
8864
+ </ng-template>
8839
8865
  `,
8840
8866
  changeDetection: ChangeDetectionStrategy.OnPush,
8841
8867
  imports: [
@@ -11923,7 +11949,7 @@ class AXPFileListComponent {
11923
11949
  // ACoreX
11924
11950
  AXFormModule }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXLabelModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "component", type:
11925
11951
  // Platform
11926
- AXPStateMessageComponent, selector: "axp-state-message", inputs: ["mode", "icon", "title", "description", "variant"] }] }); }
11952
+ AXPStateMessageComponent, selector: "axp-state-message", inputs: ["mode", "icon", "title", "description", "look"] }] }); }
11927
11953
  }
11928
11954
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPFileListComponent, decorators: [{
11929
11955
  type: Component,
@@ -13085,7 +13111,7 @@ class AXPGalleryWidgetViewComponent extends AXPValueWidgetComponent {
13085
13111
  </axp-state-message>
13086
13112
  }
13087
13113
  </div>
13088
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i1$e.AXImageComponent, selector: "ax-image", inputs: ["width", "height", "overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i2$1.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "component", type: i2$1.AXDecoratorFullScreenButtonComponent, selector: "ax-fullscreen-button", inputs: ["element", "isActive"], outputs: ["elementChange", "isActiveChange"] }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i2$2.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "component", type: AXPStateMessageComponent, selector: "axp-state-message", inputs: ["mode", "icon", "title", "description", "variant"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXMediaViewerModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13114
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i1$e.AXImageComponent, selector: "ax-image", inputs: ["width", "height", "overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i2$1.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "component", type: i2$1.AXDecoratorFullScreenButtonComponent, selector: "ax-fullscreen-button", inputs: ["element", "isActive"], outputs: ["elementChange", "isActiveChange"] }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i2$2.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "component", type: AXPStateMessageComponent, selector: "axp-state-message", inputs: ["mode", "icon", "title", "description", "look"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXMediaViewerModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13089
13115
  }
13090
13116
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPGalleryWidgetViewComponent, decorators: [{
13091
13117
  type: Component,
@@ -27444,8 +27470,7 @@ class AXPFormFieldWidgetViewComponent extends AXPGridItemBaseLayoutWidgetCompone
27444
27470
  <div class="ax-flex ax-min-w-0 ax-flex-wrap ax-items-center ax-gap-1 ax-leading-none">
27445
27471
  @if (showLabel()) {
27446
27472
  <ax-label [required]="isRequired()" class="ax-inline-flex ax-min-w-0 ax-items-center">{{ label() | translate | async }}</ax-label>
27447
- }
27448
- @if (hintAsIcon()) {
27473
+ @if (hintAsIcon()) {
27449
27474
  <i
27450
27475
  role="button"
27451
27476
  tabindex="0"
@@ -27455,6 +27480,8 @@ class AXPFormFieldWidgetViewComponent extends AXPGridItemBaseLayoutWidgetCompone
27455
27480
  [attr.aria-label]="(hintText()! | translate | async) ?? ''"
27456
27481
  ></i>
27457
27482
  }
27483
+ }
27484
+
27458
27485
  </div>
27459
27486
  @if (badge()) {
27460
27487
  <span class="ax-text ax-p-1 ax-text-xs ax-rounded-md">{{ badge() | translate | async }}</span>
@@ -27490,8 +27517,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
27490
27517
  <div class="ax-flex ax-min-w-0 ax-flex-wrap ax-items-center ax-gap-1 ax-leading-none">
27491
27518
  @if (showLabel()) {
27492
27519
  <ax-label [required]="isRequired()" class="ax-inline-flex ax-min-w-0 ax-items-center">{{ label() | translate | async }}</ax-label>
27493
- }
27494
- @if (hintAsIcon()) {
27520
+ @if (hintAsIcon()) {
27495
27521
  <i
27496
27522
  role="button"
27497
27523
  tabindex="0"
@@ -27501,6 +27527,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
27501
27527
  [attr.aria-label]="(hintText()! | translate | async) ?? ''"
27502
27528
  ></i>
27503
27529
  }
27530
+ }
27531
+
27504
27532
  </div>
27505
27533
  @if (badge()) {
27506
27534
  <span class="ax-text ax-p-1 ax-text-xs ax-rounded-md">{{ badge() | translate | async }}</span>
@@ -29561,7 +29589,7 @@ class AXPTriggersWidgetEditComponent extends AXPValueWidgetComponent {
29561
29589
  </div>
29562
29590
  }
29563
29591
  </div>
29564
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i2$1.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "component", type: AXPStateMessageComponent, selector: "axp-state-message", inputs: ["mode", "icon", "title", "description", "variant"] }, { kind: "pipe", type: i1$4.AsyncPipe, name: "async" }, { kind: "pipe", type: i6.AXTranslatorPipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
29592
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "iconOnly", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i2$1.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-subtitle, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "component", type: AXPStateMessageComponent, selector: "axp-state-message", inputs: ["mode", "icon", "title", "description", "look"] }, { kind: "pipe", type: i1$4.AsyncPipe, name: "async" }, { kind: "pipe", type: i6.AXTranslatorPipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
29565
29593
  }
29566
29594
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPTriggersWidgetEditComponent, decorators: [{
29567
29595
  type: Component,
@@ -29976,16 +30004,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
29976
30004
  /** AI agent catalog `name` values that scope {@link AXPGetWidgetsForAIQuery} list/detail rows. */
29977
30005
  const AXP_WIDGET_AI_AGENT_FORM_LAYOUT = 'widget-form-layout';
29978
30006
  const AXP_WIDGET_AI_AGENT_CHART_LAYOUT = 'widget-chart-layout';
29979
- const AXP_WIDGET_AI_AGENT_DASHBOARD_LAYOUT = 'widget-dashboard-layout';
30007
+ /** Assist/conversation chip rows — only `flex-layout` + `button-action` catalog rows. */
30008
+ const AXP_WIDGET_AI_AGENT_ASSIST_FOLLOW_UP_CHIPS_LAYOUT = 'widget-follow-up-chips-layout';
29980
30009
  const AXP_WIDGET_AI_AGENT_NAMES = [
29981
30010
  AXP_WIDGET_AI_AGENT_FORM_LAYOUT,
29982
30011
  AXP_WIDGET_AI_AGENT_CHART_LAYOUT,
29983
- AXP_WIDGET_AI_AGENT_DASHBOARD_LAYOUT,
30012
+ AXP_WIDGET_AI_AGENT_ASSIST_FOLLOW_UP_CHIPS_LAYOUT,
29984
30013
  ];
30014
+ const FOLLOW_UP_CHIP_WIDGET_NAMES = new Set(['flex-layout', 'button-action']);
29985
30015
  //#endregion
29986
30016
  //#region ---- Agent scope (catalog filtering) ----
29987
30017
  const DASHBOARD_WIDGET_NAME_PREFIX = 'DashboardManagement:Widget:Dashboard:';
29988
- const CHART_BUILDER_SUBCATEGORIES = new Set([
30018
+ /** Catalog `subCategory.name` values that identify chart widgets for {@link AXP_WIDGET_AI_AGENT_CHART_LAYOUT}. */
30019
+ const CHART_WIDGET_SUBCATEGORIES = new Set([
29989
30020
  'dashboard-chart-cartesian',
29990
30021
  'dashboard-chart-radial',
29991
30022
  'dashboard-chart-specialized',
@@ -30010,14 +30041,14 @@ function readSubCategoryNameFromMetadata(metadata) {
30010
30041
  function matchesWidgetAiAgent(agent, definitionName, metadata) {
30011
30042
  const isDashboardTile = definitionName.startsWith(DASHBOARD_WIDGET_NAME_PREFIX);
30012
30043
  const sub = readSubCategoryNameFromMetadata(metadata);
30013
- const isChartSpecialistSub = sub != null && CHART_BUILDER_SUBCATEGORIES.has(sub);
30044
+ const isChartSpecialistSub = sub != null && CHART_WIDGET_SUBCATEGORIES.has(sub);
30014
30045
  switch (agent) {
30015
30046
  case AXP_WIDGET_AI_AGENT_FORM_LAYOUT:
30016
30047
  return !isDashboardTile;
30017
30048
  case AXP_WIDGET_AI_AGENT_CHART_LAYOUT:
30018
30049
  return isDashboardTile && isChartSpecialistSub;
30019
- case AXP_WIDGET_AI_AGENT_DASHBOARD_LAYOUT:
30020
- return isDashboardTile && !isChartSpecialistSub;
30050
+ case AXP_WIDGET_AI_AGENT_ASSIST_FOLLOW_UP_CHIPS_LAYOUT:
30051
+ return FOLLOW_UP_CHIP_WIDGET_NAMES.has(definitionName);
30021
30052
  default:
30022
30053
  return false;
30023
30054
  }
@@ -30410,8 +30441,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
30410
30441
  var getWidgetsForAi_query = /*#__PURE__*/Object.freeze({
30411
30442
  __proto__: null,
30412
30443
  AXPGetWidgetsForAIQuery: AXPGetWidgetsForAIQuery,
30444
+ AXP_WIDGET_AI_AGENT_ASSIST_FOLLOW_UP_CHIPS_LAYOUT: AXP_WIDGET_AI_AGENT_ASSIST_FOLLOW_UP_CHIPS_LAYOUT,
30413
30445
  AXP_WIDGET_AI_AGENT_CHART_LAYOUT: AXP_WIDGET_AI_AGENT_CHART_LAYOUT,
30414
- AXP_WIDGET_AI_AGENT_DASHBOARD_LAYOUT: AXP_WIDGET_AI_AGENT_DASHBOARD_LAYOUT,
30415
30446
  AXP_WIDGET_AI_AGENT_FORM_LAYOUT: AXP_WIDGET_AI_AGENT_FORM_LAYOUT,
30416
30447
  AXP_WIDGET_AI_AGENT_NAMES: AXP_WIDGET_AI_AGENT_NAMES,
30417
30448
  matchesWidgetAiAgent: matchesWidgetAiAgent
@@ -30421,5 +30452,5 @@ var getWidgetsForAi_query = /*#__PURE__*/Object.freeze({
30421
30452
  * Generated bundle index. Do not edit.
30422
30453
  */
30423
30454
 
30424
- export { AXPAddressWidget, AXPAddressWidgetColumnComponent, AXPAddressWidgetEditComponent, AXPAddressWidgetService, AXPAddressWidgetViewComponent, AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetColumnComponent, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetColumnComponent, AXPCheckBoxWidgetDesignerComponent, AXPCheckBoxWidgetEditComponent, AXPCheckBoxWidgetViewComponent, AXPCodeEditorWidget, AXPCodeEditorWidgetColumnComponent, AXPCodeEditorWidgetEditComponent, AXPCodeEditorWidgetViewComponent, AXPColorBoxWidget, AXPColorBoxWidgetColumnComponent, AXPColorBoxWidgetDesignerComponent, AXPColorBoxWidgetEditComponent, AXPColorBoxWidgetViewComponent, AXPColorPaletteWidget, AXPColorPaletteWidgetColumnComponent, AXPColorPaletteWidgetDesignerComponent, AXPColorPaletteWidgetEditComponent, AXPColorPaletteWidgetViewComponent, AXPConditionBuilderWidget, AXPConditionBuilderWidgetEditComponent, AXPConditionBuilderWidgetViewComponent, AXPConnectedDragDropListsWidget, AXPConnectedListsWidgetColumnComponent, AXPConnectedListsWidgetEditComponent, AXPConnectedListsWidgetViewComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDataListWidget, AXPDataListWidgetViewComponent, AXPDataSourceOptionsWidget, AXPDataSourceOptionsWidgetEditComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPDragDropListWidget, AXPEditFileUploaderCommand, AXPEditorJsWidget, AXPEditorJsWidgetColumnComponent, AXPEditorJsWidgetEditComponent, AXPEditorJsWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, AXPFileListComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetViewComponent, AXPGetWidgetsForAIQuery, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPItemConfiguratorWidget, AXPItemConfiguratorWidgetColumnComponent, AXPItemConfiguratorWidgetEditComponent, AXPJsonViewerWidget, AXPJsonViewerWidgetEditComponent, AXPJsonViewerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPListWidgetColumnComponent, AXPListWidgetEditComponent, AXPListWidgetViewComponent, AXPMapWidgetEditComponent, AXPMapWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetViewComponent, AXPProgressBarWidget, AXPProgressBarWidgetColumnComponent, AXPProgressBarWidgetEditComponent, AXPProgressBarWidgetViewComponent, AXPProviderSelectWidgetColumnComponent, AXPProviderSelectWidgetEditBase, AXPProviderSelectWidgetViewComponent, AXPQrcodeWidget, AXPQrcodeWidgetColumnComponent, AXPQrcodeWidgetEditComponent, AXPQrcodeWidgetViewComponent, AXPRatePickerWidget, AXPRatePickerWidgetColumnComponent, AXPRatePickerWidgetEditComponent, AXPRatePickerWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetViewComponent, AXPSchedulerPickerWidget, AXPSchedulerPickerWidgetColumnComponent, AXPSchedulerPickerWidgetEditComponent, AXPSchedulerPickerWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetViewComponent, AXPSelectLanguagePopup, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPStatusChipComponent, AXPStatusWidget, AXPStatusWidgetColumnComponent, AXPStatusWidgetEditComponent, AXPStatusWidgetViewComponent, AXPStepWizardWidget, AXPStepWizardWidgetViewComponent, AXPStopwatchWidget, AXPStopwatchWidgetViewComponent, AXPTableItemWidget, AXPTableItemWidgetDesignerComponent, AXPTableItemWidgetViewComponent, AXPTableWidget, AXPTableWidgetDesignerComponent, AXPTableWidgetViewComponent, AXPTagEditorWidget, AXPTagEditorWidgetColumnComponent, AXPTagEditorWidgetEditComponent, AXPTagEditorWidgetViewComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetViewComponent, AXPWidgetFieldConfiguratorWidget, AXPWidgetFieldConfiguratorWidgetColumnComponent, AXPWidgetFieldConfiguratorWidgetEditComponent, AXPWidgetsModule, AXP_ABSOLUTE_UNITS, AXP_ALLOW_CLEAR_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_ANIMATION_PROPERTY_GROUP, AXP_APPEARANCE_PROPERTY_GROUP, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BETWEEN_VALIDATION_PROPERTY, AXP_BG_COLOR_PROPERTY, AXP_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_LIST_CMD_DELETE, AXP_DATA_LIST_CMD_EDIT, AXP_DATA_LIST_PENDING_DELETE_KEY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_OPTIONS_PROPERTY, AXP_DATE_FORMAT_PROPERTY, AXP_DEFAULT_ROW_COUNT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FIT_LINE_COUNT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_GREATER_THAN_VALIDATION_PROPERTY, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ADVANCED_GRID_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_ITEM_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTY, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SHOW_HEADER_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_LAYOUT_TABLE_PROPERTY_GROUP, AXP_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MAX_LINE_COUNT_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LINE_COUNT_PROPERTY, AXP_MULTI_LANGUAGE_PROPERTY, AXP_NAME_PROPERTY, AXP_NUMBER_SEPARATOR_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_RELATIVE_UNITS, AXP_RELATIVE_UNITS_NO_PERCENT, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_ROW_EXPR_PREFIX, AXP_SHOW_PASSWORD_PROPERTY, AXP_SPACING_UNITS, AXP_SPIN_BUTTON_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMNS_PROPERTY, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TABLE_ITEM_COLSPAN_PROPERTY, AXP_TABLE_ITEM_ROWSPAN_PROPERTY, AXP_TEXT_ALIGN_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRIGGERS_PROPERTY, AXP_TRIGGERS_PROPERTY_GROUP, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_VERTICAL_ALIGN_PROPERTY, AXP_WIDGET_AI_AGENT_CHART_LAYOUT, AXP_WIDGET_AI_AGENT_DASHBOARD_LAYOUT, AXP_WIDGET_AI_AGENT_FORM_LAYOUT, AXP_WIDGET_AI_AGENT_NAMES, AXP_WIDGET_PROPERTY_GROUP, AXP_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, DEFAULT_STRATEGY_CONFIG, STRATEGY_CONFIG_TOKEN, booleanDefaultProperty, largeTextDefaultProperty, matchesWidgetAiAgent, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty, richTextDefaultProperty, selectEditorDefaultValueProperty, selectionListEditorDefaultValueProperty };
30455
+ export { AXPAddressWidget, AXPAddressWidgetColumnComponent, AXPAddressWidgetEditComponent, AXPAddressWidgetService, AXPAddressWidgetViewComponent, AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetColumnComponent, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetColumnComponent, AXPCheckBoxWidgetDesignerComponent, AXPCheckBoxWidgetEditComponent, AXPCheckBoxWidgetViewComponent, AXPCodeEditorWidget, AXPCodeEditorWidgetColumnComponent, AXPCodeEditorWidgetEditComponent, AXPCodeEditorWidgetViewComponent, AXPColorBoxWidget, AXPColorBoxWidgetColumnComponent, AXPColorBoxWidgetDesignerComponent, AXPColorBoxWidgetEditComponent, AXPColorBoxWidgetViewComponent, AXPColorPaletteWidget, AXPColorPaletteWidgetColumnComponent, AXPColorPaletteWidgetDesignerComponent, AXPColorPaletteWidgetEditComponent, AXPColorPaletteWidgetViewComponent, AXPConditionBuilderWidget, AXPConditionBuilderWidgetEditComponent, AXPConditionBuilderWidgetViewComponent, AXPConnectedDragDropListsWidget, AXPConnectedListsWidgetColumnComponent, AXPConnectedListsWidgetEditComponent, AXPConnectedListsWidgetViewComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDataListWidget, AXPDataListWidgetViewComponent, AXPDataSourceOptionsWidget, AXPDataSourceOptionsWidgetEditComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPDragDropListWidget, AXPEditFileUploaderCommand, AXPEditorJsWidget, AXPEditorJsWidgetColumnComponent, AXPEditorJsWidgetEditComponent, AXPEditorJsWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, AXPFileListComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetViewComponent, AXPGetWidgetsForAIQuery, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPItemConfiguratorWidget, AXPItemConfiguratorWidgetColumnComponent, AXPItemConfiguratorWidgetEditComponent, AXPJsonViewerWidget, AXPJsonViewerWidgetEditComponent, AXPJsonViewerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPListWidgetColumnComponent, AXPListWidgetEditComponent, AXPListWidgetViewComponent, AXPMapWidgetEditComponent, AXPMapWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetViewComponent, AXPProgressBarWidget, AXPProgressBarWidgetColumnComponent, AXPProgressBarWidgetEditComponent, AXPProgressBarWidgetViewComponent, AXPProviderSelectWidgetColumnComponent, AXPProviderSelectWidgetEditBase, AXPProviderSelectWidgetViewComponent, AXPQrcodeWidget, AXPQrcodeWidgetColumnComponent, AXPQrcodeWidgetEditComponent, AXPQrcodeWidgetViewComponent, AXPRatePickerWidget, AXPRatePickerWidgetColumnComponent, AXPRatePickerWidgetEditComponent, AXPRatePickerWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetViewComponent, AXPSchedulerPickerWidget, AXPSchedulerPickerWidgetColumnComponent, AXPSchedulerPickerWidgetEditComponent, AXPSchedulerPickerWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetViewComponent, AXPSelectLanguagePopup, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPStatusChipComponent, AXPStatusWidget, AXPStatusWidgetColumnComponent, AXPStatusWidgetEditComponent, AXPStatusWidgetViewComponent, AXPStepWizardWidget, AXPStepWizardWidgetViewComponent, AXPStopwatchWidget, AXPStopwatchWidgetViewComponent, AXPTableItemWidget, AXPTableItemWidgetDesignerComponent, AXPTableItemWidgetViewComponent, AXPTableWidget, AXPTableWidgetDesignerComponent, AXPTableWidgetViewComponent, AXPTagEditorWidget, AXPTagEditorWidgetColumnComponent, AXPTagEditorWidgetEditComponent, AXPTagEditorWidgetViewComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetViewComponent, AXPWidgetFieldConfiguratorWidget, AXPWidgetFieldConfiguratorWidgetColumnComponent, AXPWidgetFieldConfiguratorWidgetEditComponent, AXPWidgetsModule, AXP_ABSOLUTE_UNITS, AXP_ALLOW_CLEAR_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_ANIMATION_PROPERTY_GROUP, AXP_APPEARANCE_PROPERTY_GROUP, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BETWEEN_VALIDATION_PROPERTY, AXP_BG_COLOR_PROPERTY, AXP_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_LIST_CMD_DELETE, AXP_DATA_LIST_CMD_EDIT, AXP_DATA_LIST_PENDING_DELETE_KEY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_OPTIONS_PROPERTY, AXP_DATE_FORMAT_PROPERTY, AXP_DEFAULT_ROW_COUNT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FIT_LINE_COUNT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_GREATER_THAN_VALIDATION_PROPERTY, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ADVANCED_GRID_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_ITEM_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTY, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SHOW_HEADER_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_LAYOUT_TABLE_PROPERTY_GROUP, AXP_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MAX_LINE_COUNT_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LINE_COUNT_PROPERTY, AXP_MULTI_LANGUAGE_PROPERTY, AXP_NAME_PROPERTY, AXP_NUMBER_SEPARATOR_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_RELATIVE_UNITS, AXP_RELATIVE_UNITS_NO_PERCENT, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_ROW_EXPR_PREFIX, AXP_SHOW_PASSWORD_PROPERTY, AXP_SPACING_UNITS, AXP_SPIN_BUTTON_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMNS_PROPERTY, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TABLE_ITEM_COLSPAN_PROPERTY, AXP_TABLE_ITEM_ROWSPAN_PROPERTY, AXP_TEXT_ALIGN_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRIGGERS_PROPERTY, AXP_TRIGGERS_PROPERTY_GROUP, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_VERTICAL_ALIGN_PROPERTY, AXP_WIDGET_AI_AGENT_ASSIST_FOLLOW_UP_CHIPS_LAYOUT, AXP_WIDGET_AI_AGENT_CHART_LAYOUT, AXP_WIDGET_AI_AGENT_FORM_LAYOUT, AXP_WIDGET_AI_AGENT_NAMES, AXP_WIDGET_PROPERTY_GROUP, AXP_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, DEFAULT_STRATEGY_CONFIG, STRATEGY_CONFIG_TOKEN, booleanDefaultProperty, largeTextDefaultProperty, matchesWidgetAiAgent, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty, richTextDefaultProperty, selectEditorDefaultValueProperty, selectionListEditorDefaultValueProperty };
30425
30456
  //# sourceMappingURL=acorex-platform-layout-widgets.mjs.map