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

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 (29) hide show
  1. package/fesm2022/acorex-platform-auth.mjs +4 -0
  2. package/fesm2022/acorex-platform-auth.mjs.map +1 -1
  3. package/fesm2022/{acorex-platform-common-common-settings.provider-lWz_f-Ia.mjs → acorex-platform-common-common-settings.provider-CsOyxClO.mjs} +17 -3
  4. package/fesm2022/acorex-platform-common-common-settings.provider-CsOyxClO.mjs.map +1 -0
  5. package/fesm2022/acorex-platform-common.mjs +204 -164
  6. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  7. package/fesm2022/acorex-platform-core.mjs +5 -4
  8. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  9. package/fesm2022/acorex-platform-layout-entity.mjs +754 -49
  10. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  11. package/fesm2022/acorex-platform-layout-views.mjs +5 -3
  12. package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
  13. package/fesm2022/acorex-platform-layout-widget-core.mjs +72 -6
  14. package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
  15. package/fesm2022/acorex-platform-layout-widgets.mjs +109 -131
  16. package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
  17. package/fesm2022/acorex-platform-themes-default.mjs +71 -5
  18. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  19. package/fesm2022/acorex-platform-workflow.mjs +85 -4
  20. package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
  21. package/package.json +1 -1
  22. package/types/acorex-platform-common.d.ts +65 -48
  23. package/types/acorex-platform-core.d.ts +1 -1
  24. package/types/acorex-platform-layout-entity.d.ts +203 -8
  25. package/types/acorex-platform-layout-widget-core.d.ts +15 -0
  26. package/types/acorex-platform-layout-widgets.d.ts +15 -19
  27. package/types/acorex-platform-themes-default.d.ts +6 -0
  28. package/types/acorex-platform-workflow.d.ts +68 -2
  29. package/fesm2022/acorex-platform-common-common-settings.provider-lWz_f-Ia.mjs.map +0 -1
@@ -1111,6 +1111,52 @@ const AXP_LAYOUT_DIRECTION_PROPERTY = {
1111
1111
  visible: true,
1112
1112
  };
1113
1113
 
1114
+ const TABLE_COLUMN_ALIGN_DATA_SOURCE = [
1115
+ { id: 'start', title: 'Start' },
1116
+ { id: 'center', title: 'Center' },
1117
+ { id: 'end', title: 'End' },
1118
+ ];
1119
+ const AXP_TABLE_COLUMN_HEADER_ALIGN_PROPERTY = {
1120
+ name: 'alignHeader',
1121
+ title: 'Header alignment',
1122
+ group: AXP_STYLING_PROPERTY_GROUP,
1123
+ schema: {
1124
+ dataType: 'string',
1125
+ defaultValue: 'start',
1126
+ interface: {
1127
+ name: 'alignHeader',
1128
+ path: 'options.align.header',
1129
+ type: AXPWidgetsCatalog.select,
1130
+ options: {
1131
+ dataSource: [...TABLE_COLUMN_ALIGN_DATA_SOURCE],
1132
+ },
1133
+ },
1134
+ },
1135
+ visible: true,
1136
+ };
1137
+ const AXP_TABLE_COLUMN_CELL_ALIGN_PROPERTY = {
1138
+ name: 'alignCell',
1139
+ title: 'Cell alignment',
1140
+ group: AXP_STYLING_PROPERTY_GROUP,
1141
+ schema: {
1142
+ dataType: 'string',
1143
+ defaultValue: 'start',
1144
+ interface: {
1145
+ name: 'alignCell',
1146
+ path: 'options.align.cell',
1147
+ type: AXPWidgetsCatalog.select,
1148
+ options: {
1149
+ dataSource: [...TABLE_COLUMN_ALIGN_DATA_SOURCE],
1150
+ },
1151
+ },
1152
+ },
1153
+ visible: true,
1154
+ };
1155
+ /** Optional column designer fields; spread next to `AXP_TABLE_COLUMN_WIDTH_PROPERTY` where needed. */
1156
+ const AXP_TABLE_COLUMN_ALIGNMENT_PROPERTIES = [
1157
+ AXP_TABLE_COLUMN_HEADER_ALIGN_PROPERTY,
1158
+ AXP_TABLE_COLUMN_CELL_ALIGN_PROPERTY,
1159
+ ];
1114
1160
  const AXP_TABLE_COLUMN_WIDTH_PROPERTY = {
1115
1161
  name: 'width',
1116
1162
  title: 'Width',
@@ -4989,8 +5035,7 @@ class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
4989
5035
  super(...arguments);
4990
5036
  this.formatter = inject(AXFormatService);
4991
5037
  this.settingsService = inject(AXPSettingsService);
4992
- this.convertedValue = signal(this.rawValue, ...(ngDevMode ? [{ debugName: "convertedValue" }] : /* istanbul ignore next */ []));
4993
- this.multiple = this.options['multiple'] || false;
5038
+ this.convertedValue = signal(typeof this.rawValue === 'string' ? this.rawValue : null, ...(ngDevMode ? [{ debugName: "convertedValue" }] : /* istanbul ignore next */ []));
4994
5039
  this.dateMode = computed(() => this.options['mode'] || 'short', ...(ngDevMode ? [{ debugName: "dateMode" }] : /* istanbul ignore next */ []));
4995
5040
  this.format = computed(() => {
4996
5041
  const rawValue = this.options['format'];
@@ -5008,13 +5053,9 @@ class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
5008
5053
  const rawValue = this.rawValue;
5009
5054
  if (rawValue == null) {
5010
5055
  this.convertedValue.set(null);
5056
+ return;
5011
5057
  }
5012
- if (this.isArray(rawValue)) {
5013
- this.convertedValue.set(rawValue.map((item) => this.handleFormat(item)).join(', '));
5014
- }
5015
- else {
5016
- this.convertedValue.set(await this.handleFormat(rawValue));
5017
- }
5058
+ this.convertedValue.set(await this.handleFormat(rawValue));
5018
5059
  };
5019
5060
  }
5020
5061
  #effect;
@@ -5040,9 +5081,6 @@ class AXPDateTimeBoxWidgetColumnComponent extends AXPColumnWidgetComponent {
5040
5081
  })
5041
5082
  : '---';
5042
5083
  }
5043
- isArray(val) {
5044
- return Array.isArray(val);
5045
- }
5046
5084
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPDateTimeBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5047
5085
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: AXPDateTimeBoxWidgetColumnComponent, isStandalone: true, selector: "axp-date-time-box-widget-column", inputs: { rawValue: "rawValue", rowData: "rowData" }, usesInheritance: true, ngImport: i0, template: `<div class="ax-flex">
5048
5086
  <span [dir]="'ltr'" [title]="convertedValue()">{{ convertedValue() }}</span>
@@ -5071,7 +5109,6 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPValueWidgetComponent {
5071
5109
  super(...arguments);
5072
5110
  this.validationService = inject(AXValidationService);
5073
5111
  this.settingsService = inject(AXPSettingsService);
5074
- this.multiple = computed(() => this.options()['multiple'], ...(ngDevMode ? [{ debugName: "multiple" }] : /* istanbul ignore next */ []));
5075
5112
  this.clearButton = computed(() => this.options()['clearButton'], ...(ngDevMode ? [{ debugName: "clearButton" }] : /* istanbul ignore next */ []));
5076
5113
  this.minValue = computed(() => this.options()['minValue'], ...(ngDevMode ? [{ debugName: "minValue" }] : /* istanbul ignore next */ []));
5077
5114
  this.maxValue = computed(() => this.options()['maxValue'], ...(ngDevMode ? [{ debugName: "maxValue" }] : /* istanbul ignore next */ []));
@@ -5089,8 +5126,8 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPValueWidgetComponent {
5089
5126
  this.readonly = computed(() => this.options()['readonly'], ...(ngDevMode ? [{ debugName: "readonly" }] : /* istanbul ignore next */ []));
5090
5127
  this.placeholder = computed(() => this.options()['placeholder'], ...(ngDevMode ? [{ debugName: "placeholder" }] : /* istanbul ignore next */ []));
5091
5128
  this.internalValue = computed(() => {
5092
- const values = Array.isArray(this.getValue()) ? this.getValue() : [this.getValue()];
5093
- return values;
5129
+ const value = this.getValue();
5130
+ return value ?? '';
5094
5131
  }, ...(ngDevMode ? [{ debugName: "internalValue" }] : /* istanbul ignore next */ []));
5095
5132
  this.calendarFormat = signal('date', ...(ngDevMode ? [{ debugName: "calendarFormat" }] : /* istanbul ignore next */ []));
5096
5133
  this.#effect = effect(async () => {
@@ -5109,30 +5146,18 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPValueWidgetComponent {
5109
5146
  const timeKey = dateMode === 'short' ? AXPRegionalSetting.ShortTime : AXPRegionalSetting.LongTime;
5110
5147
  mode = `${await this.settingsService.get(dateKey)} ${await this.settingsService.get(timeKey)}`;
5111
5148
  }
5112
- console.log('mode', mode);
5113
5149
  this.calendarFormat.set(mode);
5114
5150
  }, ...(ngDevMode ? [{ debugName: "#effect" }] : /* istanbul ignore next */ []));
5115
5151
  }
5116
- handleValueChange(e, i) {
5152
+ /**
5153
+ * Syncs context only for user-driven changes (same pattern as `AXPValueWidgetComponent.handleValueChanged`).
5154
+ */
5155
+ handleValueChange(e) {
5117
5156
  if (e.isUserInteraction) {
5118
- const newValues = this.internalValue().map((item, index) => (i === index ? e.value : item));
5119
- if (this.multiple()) {
5120
- this.setValue(newValues);
5121
- }
5122
- else {
5123
- this.setValue(newValues[0]);
5124
- }
5157
+ this.setValue(e.value);
5125
5158
  }
5126
5159
  }
5127
5160
  #effect;
5128
- addItem() {
5129
- const newValues = [...this.internalValue(), ''];
5130
- this.setValue(newValues);
5131
- }
5132
- deleteItem(i) {
5133
- const newValues = this.internalValue().filter((_, index) => index != i);
5134
- this.setValue(newValues);
5135
- }
5136
5161
  get __class() {
5137
5162
  const cls = {};
5138
5163
  cls[`ax-block`] = true;
@@ -5142,49 +5167,31 @@ class AXPDateTimeBoxWidgetEditComponent extends AXPValueWidgetComponent {
5142
5167
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5143
5168
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: AXPDateTimeBoxWidgetEditComponent, isStandalone: true, selector: "axp-date-time-box-widget-edit", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
5144
5169
  <div class="ax-grid ax-grid-cols-12 ax-gap-4">
5145
- @for (datetime of internalValue(); track $index) {
5146
- <ax-datetime-box
5147
- class="ax-col-span-12"
5148
- [ngModel]="datetime"
5149
- [picker]="format()"
5150
- (onValueChanged)="handleValueChange($event, $index)"
5151
- [minValue]="minValue()"
5152
- [maxValue]="maxValue()"
5153
- [disabled]="disabled()"
5154
- [readonly]="readonly()"
5155
- [format]="calendarFormat()"
5156
- [placeholder]="(placeholder() | translate | async) ?? ''"
5157
- >
5158
- @for (validation of validationRules(); track $index) {
5159
- <ax-validation-rule
5160
- [rule]="validation.rule"
5161
- [message]="validation.options?.message"
5162
- [options]="validation.options"
5163
- ></ax-validation-rule>
5164
- }
5165
- @if (clearButton()) {
5166
- <ax-clear-button></ax-clear-button>
5167
- }
5168
- @if (multiple()) {
5169
- <ax-suffix>
5170
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
5171
- <ax-icon class="far fa-trash"> </ax-icon>
5172
- </ax-button>
5173
- </ax-suffix>
5174
- }
5175
- </ax-datetime-box>
5176
- }
5177
- @if (multiple()) {
5178
- <ax-button
5179
- class="ax-col-start-9 lg:ax-col-start-10 xl:ax-col-start-11 ax-col-end-13"
5180
- [text]="!internalValue().length ? 'Add New' : 'Add Another'"
5181
- look="twotone"
5182
- (onClick)="addItem()"
5183
- [disabled]="disabled()"
5184
- ></ax-button>
5185
- }
5170
+ <ax-datetime-box
5171
+ class="ax-col-span-12"
5172
+ [ngModel]="internalValue()"
5173
+ [picker]="format()"
5174
+ (onValueChanged)="handleValueChange($event)"
5175
+ [minValue]="minValue()"
5176
+ [maxValue]="maxValue()"
5177
+ [disabled]="disabled()"
5178
+ [readonly]="readonly()"
5179
+ [format]="calendarFormat()"
5180
+ [placeholder]="(placeholder() | translate | async) ?? ''"
5181
+ >
5182
+ @for (validation of validationRules(); track $index) {
5183
+ <ax-validation-rule
5184
+ [rule]="validation.rule"
5185
+ [message]="validation.options?.message"
5186
+ [options]="validation.options"
5187
+ ></ax-validation-rule>
5188
+ }
5189
+ @if (clearButton()) {
5190
+ <ax-clear-button></ax-clear-button>
5191
+ }
5192
+ </ax-datetime-box>
5186
5193
  </div>
5187
- `, isInline: true, dependencies: [{ 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: 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", "picker", "calendar", "weekend", "weekdays", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { 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.AXDecoratorClearButtonComponent, selector: "ax-clear-button", 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: "pipe", type: i6.AXTranslatorPipe, name: "translate" }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5194
+ `, isInline: true, dependencies: [{ 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: 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", "picker", "calendar", "weekend", "weekdays", "format"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "onOpened", "onClosed", "readonlyChange", "disabledChange", "formatChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i2$1.AXDecoratorClearButtonComponent, selector: "ax-clear-button", inputs: ["icon"] }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "pipe", type: i6.AXTranslatorPipe, name: "translate" }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5188
5195
  }
5189
5196
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPDateTimeBoxWidgetEditComponent, decorators: [{
5190
5197
  type: Component,
@@ -5192,47 +5199,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
5192
5199
  selector: 'axp-date-time-box-widget-edit',
5193
5200
  template: `
5194
5201
  <div class="ax-grid ax-grid-cols-12 ax-gap-4">
5195
- @for (datetime of internalValue(); track $index) {
5196
- <ax-datetime-box
5197
- class="ax-col-span-12"
5198
- [ngModel]="datetime"
5199
- [picker]="format()"
5200
- (onValueChanged)="handleValueChange($event, $index)"
5201
- [minValue]="minValue()"
5202
- [maxValue]="maxValue()"
5203
- [disabled]="disabled()"
5204
- [readonly]="readonly()"
5205
- [format]="calendarFormat()"
5206
- [placeholder]="(placeholder() | translate | async) ?? ''"
5207
- >
5208
- @for (validation of validationRules(); track $index) {
5209
- <ax-validation-rule
5210
- [rule]="validation.rule"
5211
- [message]="validation.options?.message"
5212
- [options]="validation.options"
5213
- ></ax-validation-rule>
5214
- }
5215
- @if (clearButton()) {
5216
- <ax-clear-button></ax-clear-button>
5217
- }
5218
- @if (multiple()) {
5219
- <ax-suffix>
5220
- <ax-button class="ax-border-s" (onClick)="deleteItem($index)" look="blank" color="danger">
5221
- <ax-icon class="far fa-trash"> </ax-icon>
5222
- </ax-button>
5223
- </ax-suffix>
5224
- }
5225
- </ax-datetime-box>
5226
- }
5227
- @if (multiple()) {
5228
- <ax-button
5229
- class="ax-col-start-9 lg:ax-col-start-10 xl:ax-col-start-11 ax-col-end-13"
5230
- [text]="!internalValue().length ? 'Add New' : 'Add Another'"
5231
- look="twotone"
5232
- (onClick)="addItem()"
5233
- [disabled]="disabled()"
5234
- ></ax-button>
5235
- }
5202
+ <ax-datetime-box
5203
+ class="ax-col-span-12"
5204
+ [ngModel]="internalValue()"
5205
+ [picker]="format()"
5206
+ (onValueChanged)="handleValueChange($event)"
5207
+ [minValue]="minValue()"
5208
+ [maxValue]="maxValue()"
5209
+ [disabled]="disabled()"
5210
+ [readonly]="readonly()"
5211
+ [format]="calendarFormat()"
5212
+ [placeholder]="(placeholder() | translate | async) ?? ''"
5213
+ >
5214
+ @for (validation of validationRules(); track $index) {
5215
+ <ax-validation-rule
5216
+ [rule]="validation.rule"
5217
+ [message]="validation.options?.message"
5218
+ [options]="validation.options"
5219
+ ></ax-validation-rule>
5220
+ }
5221
+ @if (clearButton()) {
5222
+ <ax-clear-button></ax-clear-button>
5223
+ }
5224
+ </ax-datetime-box>
5236
5225
  </div>
5237
5226
  `,
5238
5227
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -5241,9 +5230,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
5241
5230
  AXFormModule,
5242
5231
  AXValidationModule,
5243
5232
  AXDateTimeBoxModule,
5244
- AXButtonModule,
5245
5233
  AXDecoratorModule,
5246
- AXValidationModule,
5247
5234
  AXTranslationModule,
5248
5235
  AsyncPipe,
5249
5236
  ],
@@ -5263,7 +5250,6 @@ class AXPDateTimeBoxWidgetViewComponent extends AXPValueWidgetComponent {
5263
5250
  super(...arguments);
5264
5251
  this.formatter = inject(AXFormatService);
5265
5252
  this.settingsService = inject(AXPSettingsService);
5266
- this.multiple = computed(() => this.options()['multiple'], ...(ngDevMode ? [{ debugName: "multiple" }] : /* istanbul ignore next */ []));
5267
5253
  this.dateMode = computed(() => this.options()['mode'] || 'short', ...(ngDevMode ? [{ debugName: "dateMode" }] : /* istanbul ignore next */ []));
5268
5254
  this.convertedValue = signal(null, ...(ngDevMode ? [{ debugName: "convertedValue" }] : /* istanbul ignore next */ []));
5269
5255
  this.format = computed(() => {
@@ -5282,13 +5268,9 @@ class AXPDateTimeBoxWidgetViewComponent extends AXPValueWidgetComponent {
5282
5268
  const rawValue = this.getValue();
5283
5269
  if (rawValue == null) {
5284
5270
  this.convertedValue.set(null);
5271
+ return;
5285
5272
  }
5286
- if (this.isArray(rawValue)) {
5287
- this.convertedValue.set(rawValue.map((item) => this.handleFormat(item)).join(', '));
5288
- }
5289
- else {
5290
- this.convertedValue.set(await this.handleFormat(rawValue));
5291
- }
5273
+ this.convertedValue.set(await this.handleFormat(rawValue));
5292
5274
  };
5293
5275
  }
5294
5276
  #effect;
@@ -5314,9 +5296,6 @@ class AXPDateTimeBoxWidgetViewComponent extends AXPValueWidgetComponent {
5314
5296
  })
5315
5297
  : '---';
5316
5298
  }
5317
- isArray(val) {
5318
- return Array.isArray(val);
5319
- }
5320
5299
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: AXPDateTimeBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5321
5300
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.9", type: AXPDateTimeBoxWidgetViewComponent, isStandalone: true, selector: "axp-date-time-box-widget-view", usesInheritance: true, ngImport: i0, template: `
5322
5301
  <div class="ax-text-muted">
@@ -5355,7 +5334,6 @@ const AXPDateTimeBoxWidget = {
5355
5334
  properties: [
5356
5335
  AXP_NAME_PROPERTY,
5357
5336
  AXP_DATA_PATH_PROPERTY,
5358
- AXP_ALLOW_MULTIPLE_PROPERTY,
5359
5337
  AXP_HAS_CLEAR_BUTTON_PROPERTY,
5360
5338
  AXP_DATE_FORMAT_PROPERTY,
5361
5339
  AXP_READONLY_PROPERTY,
@@ -10833,7 +10811,7 @@ class AXPDataListWidgetViewComponent extends AXPValueWidgetComponent {
10833
10811
  this.fetchDataMode = computed(() => this.options()['fetchDataMode'] ?? 'auto', ...(ngDevMode ? [{ debugName: "fetchDataMode" }] : /* istanbul ignore next */ []));
10834
10812
  this.parentField = computed(() => this.options()['parentField'], ...(ngDevMode ? [{ debugName: "parentField" }] : /* istanbul ignore next */ []));
10835
10813
  this.minHeight = computed(() => this.options()['minHeight'] ?? 200, ...(ngDevMode ? [{ debugName: "minHeight" }] : /* istanbul ignore next */ []));
10836
- // Simple Flags
10814
+ // Simple Flags (entity list resolves `showIndex` in AXPEntityListTableService, including common setting)
10837
10815
  this.showIndex = computed(() => this.options()['showIndex'] ?? false, ...(ngDevMode ? [{ debugName: "showIndex" }] : /* istanbul ignore next */ []));
10838
10816
  this.allowSelection = computed(() => this.options()['allowSelection'] ?? false, ...(ngDevMode ? [{ debugName: "allowSelection" }] : /* istanbul ignore next */ []));
10839
10817
  // Row Commands
@@ -10960,7 +10938,7 @@ class AXPDataListWidgetViewComponent extends AXPValueWidgetComponent {
10960
10938
  >
10961
10939
  <!-- Index Column -->
10962
10940
  @if (showIndex()) {
10963
- <ax-index-column fixed="start" [width]="'80px'" [padZero]="true"> </ax-index-column>
10941
+ <ax-index-column fixed="start" [width]="'80px'" [padZero]="false"> </ax-index-column>
10964
10942
  }
10965
10943
 
10966
10944
  <!-- Select Column -->
@@ -11027,7 +11005,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
11027
11005
  >
11028
11006
  <!-- Index Column -->
11029
11007
  @if (showIndex()) {
11030
- <ax-index-column fixed="start" [width]="'80px'" [padZero]="true"> </ax-index-column>
11008
+ <ax-index-column fixed="start" [width]="'80px'" [padZero]="false"> </ax-index-column>
11031
11009
  }
11032
11010
 
11033
11011
  <!-- Select Column -->
@@ -30452,5 +30430,5 @@ var getWidgetsForAi_query = /*#__PURE__*/Object.freeze({
30452
30430
  * Generated bundle index. Do not edit.
30453
30431
  */
30454
30432
 
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 };
30433
+ 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_ALIGNMENT_PROPERTIES, AXP_TABLE_COLUMN_CELL_ALIGN_PROPERTY, AXP_TABLE_COLUMN_HEADER_ALIGN_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 };
30456
30434
  //# sourceMappingURL=acorex-platform-layout-widgets.mjs.map