@acorex/platform 20.3.0-next.2 → 20.3.0-next.3

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.
@@ -60,7 +60,8 @@ import { AXDropdownModule } from '@acorex/components/dropdown';
60
60
  import * as i2$7 from '@acorex/components/switch';
61
61
  import { AXSwitchModule } from '@acorex/components/switch';
62
62
  import { AXFileService } from '@acorex/core/file';
63
- import { AXPComponentSlotModule, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryColumnsComponent } from '@acorex/platform/layout/components';
63
+ import { AXPComponentSlotModule, AXPDynamicDialogService, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryColumnsComponent } from '@acorex/platform/layout/components';
64
+ import { AXPCommandExecutor, provideCommandSetups } from '@acorex/platform/runtime';
64
65
  import { AXUploaderModule } from '@acorex/components/uploader';
65
66
  import * as i1$8 from '@acorex/components/media-viewer';
66
67
  import { AXMediaViewerModule } from '@acorex/components/media-viewer';
@@ -7412,6 +7413,7 @@ class AXPFileListComponent {
7412
7413
  this.fileTypeService = inject(AXPFileTypeProviderService);
7413
7414
  this.fileStorageService = inject(AXPFileStorageService);
7414
7415
  this.popupService = inject(AXPopupService);
7416
+ this.commandExecutor = inject(AXPCommandExecutor);
7415
7417
  this.isLoading = signal(true, ...(ngDevMode ? [{ debugName: "isLoading" }] : []));
7416
7418
  this.fileTypes = signal([], ...(ngDevMode ? [{ debugName: "fileTypes" }] : []));
7417
7419
  this.onRemove = output();
@@ -7420,6 +7422,9 @@ class AXPFileListComponent {
7420
7422
  this.readonly = input(false, ...(ngDevMode ? [{ debugName: "readonly" }] : []));
7421
7423
  this.fileEditable = input(true, ...(ngDevMode ? [{ debugName: "fileEditable" }] : []));
7422
7424
  this.files = input([], ...(ngDevMode ? [{ debugName: "files" }] : []));
7425
+ // Plugin context (passed from parent widget)
7426
+ this.plugins = input(undefined, ...(ngDevMode ? [{ debugName: "plugins" }] : []));
7427
+ this.excludePlugins = input(undefined, ...(ngDevMode ? [{ debugName: "excludePlugins" }] : []));
7423
7428
  /**
7424
7429
  * All files should be displayed, even those with `deleted` status.
7425
7430
  * The template will handle the visual differences based on the status.
@@ -7528,24 +7533,16 @@ class AXPFileListComponent {
7528
7533
  if (this.readonly()) {
7529
7534
  return;
7530
7535
  }
7531
- const comp = (await import('./acorex-platform-widgets-file-rename-popup.component-DHFMnkls.mjs')).AXPFileRenamePopupComponent;
7532
- const popup = await this.popupService.open(comp, {
7533
- title: 'Rename File',
7534
- data: {
7535
- file: file
7536
- }
7536
+ const newFile = await this.commandExecutor.execute('FileUploader:Edit', {
7537
+ file,
7538
+ plugins: this.plugins() ?? [],
7539
+ excludePlugins: this.excludePlugins() ?? [],
7537
7540
  });
7538
- if (popup.data?.result && popup.data?.fileName) {
7539
- this.onRename.emit({
7540
- file: file,
7541
- newName: popup.data.fileName
7542
- });
7543
- }
7544
- }
7545
- ngOnDestroy() {
7541
+ this.onRename.emit(newFile);
7546
7542
  }
7543
+ ngOnDestroy() { }
7547
7544
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPFileListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7548
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.8", type: AXPFileListComponent, isStandalone: true, selector: "axp-file-list", inputs: { readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, fileEditable: { classPropertyName: "fileEditable", publicName: "fileEditable", isSignal: true, isRequired: false, transformFunction: null }, files: { classPropertyName: "files", publicName: "files", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onRemove: "onRemove", onRevert: "onRevert", onRename: "onRename" }, providers: [], ngImport: i0, template: "@for (file of displayFiles(); track $index) {\n <div class=\"__item\" [ngClass]=\"{'--removed': file.status === 'deleted', '--attached': file.status === 'attached'}\" (dblclick)=\"handleFileEdit(file)\">\n <div class=\"__icon\">\n <i class=\"fa-fw {{ getFileInfo(file.name).icon }} fa-solid\"></i>\n </div>\n <div class=\"__name\">{{ file.name }}</div>\n <div class=\"__actions\">\n @if (file.status === 'deleted') {\n <!-- Revert button -->\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"warning\" (onClick)=\"handleFileRevert(file)\">\n <ax-icon class=\"fa-light fa-rotate-left\"></ax-icon>\n </ax-button>\n } @else {\n <!-- Regular actions -->\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"primary\" (onClick)=\"handleFileDownload(file)\">\n <ax-icon class=\"fa-light fa-download\"></ax-icon>\n </ax-button>\n @if (!readonly() && ((!fileEditable() && file.status === 'attached') || fileEditable())) {\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"secondary\" (onClick)=\"handleFileEdit(file)\">\n <ax-icon class=\"fa-light fa-pencil\"></ax-icon>\n </ax-button>\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"danger\" (onClick)=\"handleFileRemove(file)\">\n <ax-icon class=\"fa-light fa-trash-can\"></ax-icon>\n </ax-button>\n }\n }\n </div>\n </div>\n} @empty {\n <div class=\"ax-text-center ax-text-muted ax-text-sm ax-p-4\">\n {{ '@document-management:no-files' | translate | async }}\n </div>\n}\n", styles: [":host{display:flex;width:100%;flex-direction:column;gap:.125rem;padding-top:.5rem;padding-bottom:.5rem}:host .__item{display:flex;cursor:pointer;align-items:center;gap:.75rem;border-left-width:4px;border-color:transparent;padding:.5rem}:host .__item:hover{background-color:rgb(var(--ax-sys-color-lighter-surface));color:rgb(var(--ax-sys-color-on-lighter-surface));border-color:rgb(var(--ax-sys-color-border-lighter-surface))}:host .__item.--removed{--tw-border-opacity: 1;border-color:rgba(var(--ax-sys-color-danger-500),var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgba(var(--ax-sys-color-danger-50),var(--tw-bg-opacity, 1))}:host .__item.--attached{--tw-border-opacity: 1;border-color:rgba(var(--ax-sys-color-success-500),var(--tw-border-opacity, 1));animation:attached-flash 1s ease-out forwards}:host .__item .__icon{width:1.5rem;flex-shrink:0}:host .__item .__name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:start;font-size:.875rem;line-height:1.25rem;font-weight:500}:host .__item .__actions{margin-left:auto;display:flex}@keyframes attached-flash{0%{background-color:rgb(var(--ax-sys-color-success-50))}to{background-color:transparent}}\n"], dependencies: [{ kind: "ngmodule", type:
7545
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.8", type: AXPFileListComponent, isStandalone: true, selector: "axp-file-list", inputs: { readonly: { classPropertyName: "readonly", publicName: "readonly", isSignal: true, isRequired: false, transformFunction: null }, fileEditable: { classPropertyName: "fileEditable", publicName: "fileEditable", isSignal: true, isRequired: false, transformFunction: null }, files: { classPropertyName: "files", publicName: "files", isSignal: true, isRequired: false, transformFunction: null }, plugins: { classPropertyName: "plugins", publicName: "plugins", isSignal: true, isRequired: false, transformFunction: null }, excludePlugins: { classPropertyName: "excludePlugins", publicName: "excludePlugins", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onRemove: "onRemove", onRevert: "onRevert", onRename: "onRename" }, providers: [], ngImport: i0, template: "@for (file of displayFiles(); track $index) {\n <div class=\"__item\" [ngClass]=\"{'--removed': file.status === 'deleted', '--attached': file.status === 'attached'}\" (dblclick)=\"handleFileEdit(file)\">\n <div class=\"__icon\">\n <i class=\"fa-fw {{ getFileInfo(file.name).icon }} fa-solid\"></i>\n </div>\n <div class=\"__name\">{{ file.name }}</div>\n <div class=\"__actions\">\n @if (file.status === 'deleted') {\n <!-- Revert button -->\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"warning\" (onClick)=\"handleFileRevert(file)\">\n <ax-icon class=\"fa-light fa-rotate-left\"></ax-icon>\n </ax-button>\n } @else {\n <!-- Regular actions -->\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"primary\" (onClick)=\"handleFileDownload(file)\">\n <ax-icon class=\"fa-light fa-download\"></ax-icon>\n </ax-button>\n @if (!readonly() && ((!fileEditable() && file.status === 'attached') || fileEditable())) {\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"secondary\" (onClick)=\"handleFileEdit(file)\">\n <ax-icon class=\"fa-light fa-pencil\"></ax-icon>\n </ax-button>\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"danger\" (onClick)=\"handleFileRemove(file)\">\n <ax-icon class=\"fa-light fa-trash-can\"></ax-icon>\n </ax-button>\n }\n }\n </div>\n </div>\n} @empty {\n <div class=\"ax-text-center ax-text-muted ax-text-sm ax-p-4\">\n {{ '@document-management:no-files' | translate | async }}\n </div>\n}\n", styles: [":host{display:flex;width:100%;flex-direction:column;gap:.125rem;padding-top:.5rem;padding-bottom:.5rem}:host .__item{display:flex;cursor:pointer;align-items:center;gap:.75rem;border-left-width:4px;border-color:transparent;padding:.5rem}:host .__item:hover{background-color:rgb(var(--ax-sys-color-lighter-surface));color:rgb(var(--ax-sys-color-on-lighter-surface));border-color:rgb(var(--ax-sys-color-border-lighter-surface))}:host .__item.--removed{--tw-border-opacity: 1;border-color:rgba(var(--ax-sys-color-danger-500),var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgba(var(--ax-sys-color-danger-50),var(--tw-bg-opacity, 1))}:host .__item.--attached{--tw-border-opacity: 1;border-color:rgba(var(--ax-sys-color-success-500),var(--tw-border-opacity, 1));animation:attached-flash 1s ease-out forwards}:host .__item .__icon{width:1.5rem;flex-shrink:0}:host .__item .__name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:start;font-size:.875rem;line-height:1.25rem;font-weight:500}:host .__item .__actions{margin-left:auto;display:flex}@keyframes attached-flash{0%{background-color:rgb(var(--ax-sys-color-success-50))}to{background-color:transparent}}\n"], dependencies: [{ kind: "ngmodule", type:
7549
7546
  // Angular
7550
7547
  CommonModule }, { kind: "directive", type: i1$4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type:
7551
7548
  // ACoreX
@@ -7563,11 +7560,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
7563
7560
  AXLabelModule,
7564
7561
  AXCheckBoxModule,
7565
7562
  AXDecoratorModule,
7566
- AXTranslationModule
7563
+ AXTranslationModule,
7567
7564
  // Platform
7568
7565
  ], providers: [], template: "@for (file of displayFiles(); track $index) {\n <div class=\"__item\" [ngClass]=\"{'--removed': file.status === 'deleted', '--attached': file.status === 'attached'}\" (dblclick)=\"handleFileEdit(file)\">\n <div class=\"__icon\">\n <i class=\"fa-fw {{ getFileInfo(file.name).icon }} fa-solid\"></i>\n </div>\n <div class=\"__name\">{{ file.name }}</div>\n <div class=\"__actions\">\n @if (file.status === 'deleted') {\n <!-- Revert button -->\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"warning\" (onClick)=\"handleFileRevert(file)\">\n <ax-icon class=\"fa-light fa-rotate-left\"></ax-icon>\n </ax-button>\n } @else {\n <!-- Regular actions -->\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"primary\" (onClick)=\"handleFileDownload(file)\">\n <ax-icon class=\"fa-light fa-download\"></ax-icon>\n </ax-button>\n @if (!readonly() && ((!fileEditable() && file.status === 'attached') || fileEditable())) {\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"secondary\" (onClick)=\"handleFileEdit(file)\">\n <ax-icon class=\"fa-light fa-pencil\"></ax-icon>\n </ax-button>\n <ax-button [look]=\"'blank'\" class=\"ax-sm\" color=\"danger\" (onClick)=\"handleFileRemove(file)\">\n <ax-icon class=\"fa-light fa-trash-can\"></ax-icon>\n </ax-button>\n }\n }\n </div>\n </div>\n} @empty {\n <div class=\"ax-text-center ax-text-muted ax-text-sm ax-p-4\">\n {{ '@document-management:no-files' | translate | async }}\n </div>\n}\n", styles: [":host{display:flex;width:100%;flex-direction:column;gap:.125rem;padding-top:.5rem;padding-bottom:.5rem}:host .__item{display:flex;cursor:pointer;align-items:center;gap:.75rem;border-left-width:4px;border-color:transparent;padding:.5rem}:host .__item:hover{background-color:rgb(var(--ax-sys-color-lighter-surface));color:rgb(var(--ax-sys-color-on-lighter-surface));border-color:rgb(var(--ax-sys-color-border-lighter-surface))}:host .__item.--removed{--tw-border-opacity: 1;border-color:rgba(var(--ax-sys-color-danger-500),var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgba(var(--ax-sys-color-danger-50),var(--tw-bg-opacity, 1))}:host .__item.--attached{--tw-border-opacity: 1;border-color:rgba(var(--ax-sys-color-success-500),var(--tw-border-opacity, 1));animation:attached-flash 1s ease-out forwards}:host .__item .__icon{width:1.5rem;flex-shrink:0}:host .__item .__name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:start;font-size:.875rem;line-height:1.25rem;font-weight:500}:host .__item .__actions{margin-left:auto;display:flex}@keyframes attached-flash{0%{background-color:rgb(var(--ax-sys-color-success-50))}to{background-color:transparent}}\n"] }]
7569
7566
  }] });
7570
7567
 
7568
+ const FileUploaderWebhookKeys = {
7569
+ Actions: 'file-uploader.actions',
7570
+ Configure: 'file-uploader.configure',
7571
+ BeforeFilesAdded: 'file-uploader.beforeFilesAdded',
7572
+ AfterFilesAdded: 'file-uploader.afterFilesAdded',
7573
+ EditDialog: {
7574
+ Params: {
7575
+ BeforeRename: 'file-uploader.edit-dialog.params.before-rename',
7576
+ AfterRename: 'file-uploader.edit-dialog.params.after-rename',
7577
+ },
7578
+ Groups: {
7579
+ BeforeForm: 'file-uploader.edit-dialog.groups.before-form',
7580
+ AfterForm: 'file-uploader.edit-dialog.groups.after-form',
7581
+ },
7582
+ },
7583
+ };
7584
+
7571
7585
  class AXPFileUploaderWidgetEditComponent extends AXPValueWidgetComponent {
7572
7586
  constructor() {
7573
7587
  super(...arguments);
@@ -7636,7 +7650,7 @@ class AXPFileUploaderWidgetEditComponent extends AXPValueWidgetComponent {
7636
7650
  this.loadActions();
7637
7651
  }
7638
7652
  async loadActions() {
7639
- const payload = await this.hooks.runAsync('file-uploader.actions', {
7653
+ const payload = await this.hooks.runAsync(FileUploaderWebhookKeys.Actions, {
7640
7654
  host: this,
7641
7655
  plugins: this.plugins() ?? [],
7642
7656
  excludePlugins: this.excludePlugins() ?? [],
@@ -7646,7 +7660,7 @@ class AXPFileUploaderWidgetEditComponent extends AXPValueWidgetComponent {
7646
7660
  this.actions.set(payload?.actions ?? []);
7647
7661
  }
7648
7662
  async configureFromHooks() {
7649
- const payload = await this.hooks.runAsync('file-uploader.configure', {
7663
+ const payload = await this.hooks.runAsync(FileUploaderWebhookKeys.Configure, {
7650
7664
  host: this,
7651
7665
  plugins: this.plugins() ?? [],
7652
7666
  excludePlugins: this.excludePlugins() ?? [],
@@ -7685,7 +7699,7 @@ class AXPFileUploaderWidgetEditComponent extends AXPValueWidgetComponent {
7685
7699
  },
7686
7700
  }));
7687
7701
  // allow plugins to transform items IN-PLACE before adding (no reassignment)
7688
- await this.hooks.runAsync('file-uploader.beforeFilesAdded', {
7702
+ await this.hooks.runAsync(FileUploaderWebhookKeys.BeforeFilesAdded, {
7689
7703
  host: this,
7690
7704
  plugins: this.plugins() ?? [],
7691
7705
  excludePlugins: this.excludePlugins() ?? [],
@@ -7694,7 +7708,7 @@ class AXPFileUploaderWidgetEditComponent extends AXPValueWidgetComponent {
7694
7708
  });
7695
7709
  this.setValue([...(this.getValue() ?? []), ...fileUploadRequests]);
7696
7710
  console.log(this.getValue());
7697
- await this.hooks.runAsync('file-uploader.afterFilesAdded', {
7711
+ await this.hooks.runAsync(FileUploaderWebhookKeys.AfterFilesAdded, {
7698
7712
  host: this,
7699
7713
  plugins: this.plugins() ?? [],
7700
7714
  excludePlugins: this.excludePlugins() ?? [],
@@ -7724,9 +7738,7 @@ class AXPFileUploaderWidgetEditComponent extends AXPValueWidgetComponent {
7724
7738
  /**
7725
7739
  * Handle file rename action
7726
7740
  */
7727
- handleFileRename(data) {
7728
- const { file, newName } = data;
7729
- file.name = newName;
7741
+ handleFileRename(file) {
7730
7742
  this.setValue((this.getValue() ?? []).map((f) => (f.id === file.id ? file : f)) ?? []);
7731
7743
  }
7732
7744
  clear() {
@@ -7784,13 +7796,15 @@ class AXPFileUploaderWidgetEditComponent extends AXPValueWidgetComponent {
7784
7796
  [files]="files()"
7785
7797
  [readonly]="readonly()"
7786
7798
  [fileEditable]="fileEditable()"
7799
+ [plugins]="plugins()"
7800
+ [excludePlugins]="excludePlugins()"
7787
7801
  (onRemove)="handleFileRemove($event)"
7788
7802
  (onRevert)="handleFileRevert($event)"
7789
7803
  (onRename)="handleFileRename($event)"
7790
7804
  [readonly]="readonly()"
7791
7805
  ></axp-file-list>
7792
7806
  </div>
7793
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { 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: "component", type: i1.AXButtonItemComponent, selector: "ax-button-item", inputs: ["color", "disabled", "text", "selected", "divided", "data", "name"], outputs: ["onClick", "onFocus", "onBlur", "disabledChange"] }, { kind: "component", type: i1.AXButtonItemListComponent, selector: "ax-button-item-list", inputs: ["items"], outputs: ["onItemClick"] }, { 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: AXLoadingModule }, { kind: "ngmodule", type: AXDropdownModule }, { kind: "component", type: i5$2.AXDropdownPanelComponent, selector: "ax-dropdown-panel", inputs: ["isOpen", "fitParent", "dropdownWidth", "position", "placement", "_target", "adaptivityEnabled"], outputs: ["onOpened", "onClosed"] }, { kind: "ngmodule", type: AXPComponentSlotModule }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "directive", type: i5.AXTranslatorDirective, selector: "[translate]" }, { kind: "component", type: AXPFileListComponent, selector: "axp-file-list", inputs: ["readonly", "fileEditable", "files"], outputs: ["onRemove", "onRevert", "onRename"] }, { kind: "pipe", type: i1$4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7807
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { 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: "component", type: i1.AXButtonItemComponent, selector: "ax-button-item", inputs: ["color", "disabled", "text", "selected", "divided", "data", "name"], outputs: ["onClick", "onFocus", "onBlur", "disabledChange"] }, { kind: "component", type: i1.AXButtonItemListComponent, selector: "ax-button-item-list", inputs: ["items"], outputs: ["onItemClick"] }, { 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: AXLoadingModule }, { kind: "ngmodule", type: AXDropdownModule }, { kind: "component", type: i5$2.AXDropdownPanelComponent, selector: "ax-dropdown-panel", inputs: ["isOpen", "fitParent", "dropdownWidth", "position", "placement", "_target", "adaptivityEnabled"], outputs: ["onOpened", "onClosed"] }, { kind: "ngmodule", type: AXPComponentSlotModule }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "directive", type: i5.AXTranslatorDirective, selector: "[translate]" }, { kind: "component", type: AXPFileListComponent, selector: "axp-file-list", inputs: ["readonly", "fileEditable", "files", "plugins", "excludePlugins"], outputs: ["onRemove", "onRevert", "onRename"] }, { kind: "pipe", type: i1$4.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7794
7808
  }
7795
7809
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPFileUploaderWidgetEditComponent, decorators: [{
7796
7810
  type: Component,
@@ -7836,6 +7850,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
7836
7850
  [files]="files()"
7837
7851
  [readonly]="readonly()"
7838
7852
  [fileEditable]="fileEditable()"
7853
+ [plugins]="plugins()"
7854
+ [excludePlugins]="excludePlugins()"
7839
7855
  (onRemove)="handleFileRemove($event)"
7840
7856
  (onRevert)="handleFileRevert($event)"
7841
7857
  (onRename)="handleFileRename($event)"
@@ -7903,7 +7919,7 @@ class AXPFileUploaderWidgetViewComponent extends AXPValueWidgetComponent {
7903
7919
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPFileUploaderWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7904
7920
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.8", type: AXPFileUploaderWidgetViewComponent, isStandalone: true, selector: "axp-file-uploader-widget-view", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
7905
7921
  <axp-file-list [files]="files()" [readonly]="true"></axp-file-list>
7906
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "ngmodule", type: AXUploaderModule }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "component", type: AXPFileListComponent, selector: "axp-file-list", inputs: ["readonly", "fileEditable", "files"], outputs: ["onRemove", "onRevert", "onRename"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7922
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "ngmodule", type: AXUploaderModule }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "component", type: AXPFileListComponent, selector: "axp-file-list", inputs: ["readonly", "fileEditable", "files", "plugins", "excludePlugins"], outputs: ["onRemove", "onRevert", "onRename"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7907
7923
  }
7908
7924
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPFileUploaderWidgetViewComponent, decorators: [{
7909
7925
  type: Component,
@@ -7984,6 +8000,97 @@ const AXPFileUploaderWidget = {
7984
8000
  },
7985
8001
  };
7986
8002
 
8003
+ class AXPEditFileUploaderCommand {
8004
+ constructor() {
8005
+ //#region ---- Services & Dependencies ----
8006
+ this.dialogService = inject(AXPDynamicDialogService);
8007
+ this.translationService = inject(AXTranslationService);
8008
+ this.hooks = inject(AXPHookService);
8009
+ }
8010
+ //#endregion
8011
+ //#region ---- Command Execution ----
8012
+ async execute(input) {
8013
+ // Show dialog to edit file details
8014
+ return await this.showEditDialog(input.file, input.plugins ?? [], input.excludePlugins ?? []);
8015
+ // if (dialogResult.cancelled) {
8016
+ // return;
8017
+ // }
8018
+ }
8019
+ //#endregion
8020
+ //#region ---- Dialog Logic ----
8021
+ async showEditDialog(file, plugins, excludePlugins) {
8022
+ const title = await this.translationService.translateAsync('@common:file-uploader.edit-dialog.title');
8023
+ const renameLabel = await this.translationService.translateAsync('@common:rename');
8024
+ const renamePlaceholder = await this.translationService.translateAsync('@common:rename');
8025
+ console.log(file);
8026
+ // Hooks: parameter insertion points
8027
+ const beforeRenamePayload = await this.hooks.runAsync(FileUploaderWebhookKeys.EditDialog.Params.BeforeRename, {
8028
+ host: this,
8029
+ file: file,
8030
+ plugins,
8031
+ excludePlugins,
8032
+ items: [],
8033
+ });
8034
+ const afterRenamePayload = await this.hooks.runAsync(FileUploaderWebhookKeys.EditDialog.Params.AfterRename, {
8035
+ host: this,
8036
+ file: file,
8037
+ plugins,
8038
+ excludePlugins,
8039
+ items: [],
8040
+ });
8041
+ const renameParam = { path: 'name', title: renameLabel, widget: { type: 'text-editor', path: 'name', options: { placeholder: renamePlaceholder, maxLength: 256 } } };
8042
+ const formParameters = [
8043
+ ...(beforeRenamePayload?.items ?? []),
8044
+ renameParam,
8045
+ ...(afterRenamePayload?.items ?? []),
8046
+ ];
8047
+ // Hooks: group insertion points around 'form'
8048
+ const groupsBeforePayload = await this.hooks.runAsync(FileUploaderWebhookKeys.EditDialog.Groups.BeforeForm, {
8049
+ host: this,
8050
+ file: file,
8051
+ plugins,
8052
+ excludePlugins,
8053
+ groups: [],
8054
+ });
8055
+ const groupsAfterPayload = await this.hooks.runAsync(FileUploaderWebhookKeys.EditDialog.Groups.AfterForm, {
8056
+ host: this,
8057
+ file: file,
8058
+ plugins,
8059
+ excludePlugins,
8060
+ groups: [],
8061
+ });
8062
+ const config = {
8063
+ title,
8064
+ formDefinition: {
8065
+ groups: [
8066
+ ...(groupsBeforePayload?.groups ?? []),
8067
+ {
8068
+ name: 'form',
8069
+ parameters: formParameters,
8070
+ },
8071
+ ...(groupsAfterPayload?.groups ?? []),
8072
+ ],
8073
+ },
8074
+ context: file,
8075
+ actions: {
8076
+ footer: {
8077
+ suffix: [
8078
+ { title: await this.translationService.translateAsync('@common:submit'), icon: 'fa-check', color: 'primary', command: { name: 'submit', options: { validate: true } } },
8079
+ ]
8080
+ }
8081
+ },
8082
+ };
8083
+ const result = await this.dialogService.showDialog(config);
8084
+ return result.context;
8085
+ }
8086
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPEditFileUploaderCommand, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
8087
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPEditFileUploaderCommand, providedIn: 'root' }); }
8088
+ }
8089
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPEditFileUploaderCommand, decorators: [{
8090
+ type: Injectable,
8091
+ args: [{ providedIn: 'root' }]
8092
+ }] });
8093
+
7987
8094
  class AXPGalleryWidgetEditComponent extends AXPValueWidgetComponent {
7988
8095
  constructor() {
7989
8096
  super(...arguments);
@@ -14069,6 +14176,199 @@ const AXPRequiredValidationWidget = {
14069
14176
  },
14070
14177
  };
14071
14178
 
14179
+ var index = /*#__PURE__*/Object.freeze({
14180
+ __proto__: null,
14181
+ AXPAdvancedGridItemWidget: AXPAdvancedGridItemWidget,
14182
+ AXPAdvancedGridItemWidgetDesignerComponent: AXPAdvancedGridItemWidgetDesignerComponent,
14183
+ AXPAdvancedGridItemWidgetPrintComponent: AXPAdvancedGridItemWidgetPrintComponent,
14184
+ AXPAdvancedGridItemWidgetViewComponent: AXPAdvancedGridItemWidgetViewComponent,
14185
+ AXPAdvancedGridOptionsWidget: AXPAdvancedGridOptionsWidget,
14186
+ AXPAdvancedGridOptionsWidgetEditComponent: AXPAdvancedGridOptionsWidgetEditComponent,
14187
+ AXPAdvancedGridWidget: AXPAdvancedGridWidget,
14188
+ AXPAdvancedGridWidgetDesignerComponent: AXPAdvancedGridWidgetDesignerComponent,
14189
+ AXPAdvancedGridWidgetViewComponent: AXPAdvancedGridWidgetViewComponent,
14190
+ AXPAvatarWidget: AXPAvatarWidget,
14191
+ AXPAvatarWidgetColumnComponent: AXPAvatarWidgetColumnComponent,
14192
+ AXPAvatarWidgetDesignerComponent: AXPAvatarWidgetDesignerComponent,
14193
+ AXPAvatarWidgetEditComponent: AXPAvatarWidgetEditComponent,
14194
+ AXPAvatarWidgetPrintComponent: AXPAvatarWidgetPrintComponent,
14195
+ AXPAvatarWidgetViewComponent: AXPAvatarWidgetViewComponent,
14196
+ AXPBetweenExpressionValidationWidget: AXPBetweenExpressionValidationWidget,
14197
+ AXPBetweenValidationWidgetEditComponent: AXPBetweenValidationWidgetEditComponent,
14198
+ AXPBlockWidget: AXPBlockWidget,
14199
+ AXPBlockWidgetDesignerComponent: AXPBlockWidgetDesignerComponent,
14200
+ AXPBlockWidgetViewComponent: AXPBlockWidgetViewComponent,
14201
+ AXPBorderWidget: AXPBorderWidget,
14202
+ AXPBorderWidgetEditComponent: AXPBorderWidgetEditComponent,
14203
+ AXPButtonWidget: AXPButtonWidget,
14204
+ AXPButtonWidgetViewComponent: AXPButtonWidgetViewComponent,
14205
+ AXPCallbackValidationWidget: AXPCallbackValidationWidget,
14206
+ AXPCallbackValidationWidgetEditComponent: AXPCallbackValidationWidgetEditComponent,
14207
+ AXPCheckBoxWidget: AXPCheckBoxWidget,
14208
+ AXPCheckBoxWidgetEditComponent: AXPCheckBoxWidgetEditComponent,
14209
+ AXPContactWidget: AXPContactWidget,
14210
+ AXPContactWidgetColumnComponent: AXPContactWidgetColumnComponent,
14211
+ AXPContactWidgetEditComponent: AXPContactWidgetEditComponent,
14212
+ AXPContactWidgetViewComponent: AXPContactWidgetViewComponent,
14213
+ AXPDateTimeBoxWidget: AXPDateTimeBoxWidget,
14214
+ AXPDateTimeBoxWidgetColumnComponent: AXPDateTimeBoxWidgetColumnComponent,
14215
+ AXPDateTimeBoxWidgetEditComponent: AXPDateTimeBoxWidgetEditComponent,
14216
+ AXPDateTimeBoxWidgetPrintComponent: AXPDateTimeBoxWidgetPrintComponent,
14217
+ AXPDateTimeBoxWidgetViewComponent: AXPDateTimeBoxWidgetViewComponent,
14218
+ AXPDirectionWidget: AXPDirectionWidget,
14219
+ AXPDirectionWidgetEditComponent: AXPDirectionWidgetEditComponent,
14220
+ AXPEditFileUploaderCommand: AXPEditFileUploaderCommand,
14221
+ AXPEmailBoxWidget: AXPEmailBoxWidget,
14222
+ AXPEmailBoxWidgetColumnComponent: AXPEmailBoxWidgetColumnComponent,
14223
+ AXPEmailBoxWidgetEditComponent: AXPEmailBoxWidgetEditComponent,
14224
+ AXPEmailBoxWidgetFilterComponent: AXPEmailBoxWidgetFilterComponent,
14225
+ AXPEmailBoxWidgetPrintComponent: AXPEmailBoxWidgetPrintComponent,
14226
+ AXPEmailBoxWidgetViewComponent: AXPEmailBoxWidgetViewComponent,
14227
+ AXPEqualValidationWidget: AXPEqualValidationWidget,
14228
+ AXPEqualValidationWidgetEditComponent: AXPEqualValidationWidgetEditComponent,
14229
+ AXPExtraPropertiesSchemaWidget: AXPExtraPropertiesSchemaWidget,
14230
+ AXPExtraPropertiesValuesWidget: AXPExtraPropertiesValuesWidget,
14231
+ AXPExtraPropertiesWidget: AXPExtraPropertiesWidget,
14232
+ AXPFileListComponent: AXPFileListComponent,
14233
+ AXPFileUploaderWidget: AXPFileUploaderWidget,
14234
+ AXPFileUploaderWidgetColumnComponent: AXPFileUploaderWidgetColumnComponent,
14235
+ AXPFileUploaderWidgetEditComponent: AXPFileUploaderWidgetEditComponent,
14236
+ AXPFileUploaderWidgetPrintComponent: AXPFileUploaderWidgetPrintComponent,
14237
+ AXPFileUploaderWidgetService: AXPFileUploaderWidgetService,
14238
+ AXPFileUploaderWidgetViewComponent: AXPFileUploaderWidgetViewComponent,
14239
+ AXPFlexItemOptionsWidget: AXPFlexItemOptionsWidget,
14240
+ AXPFlexItemOptionsWidgetEditComponent: AXPFlexItemOptionsWidgetEditComponent,
14241
+ AXPFlexItemWidget: AXPFlexItemWidget,
14242
+ AXPFlexItemWidgetDesignerComponent: AXPFlexItemWidgetDesignerComponent,
14243
+ AXPFlexItemWidgetViewComponent: AXPFlexItemWidgetViewComponent,
14244
+ AXPFlexOptionsWidget: AXPFlexOptionsWidget,
14245
+ AXPFlexOptionsWidgetEditComponent: AXPFlexOptionsWidgetEditComponent,
14246
+ AXPFlexWidget: AXPFlexWidget,
14247
+ AXPFlexWidgetDesignerComponent: AXPFlexWidgetDesignerComponent,
14248
+ AXPFlexWidgetViewComponent: AXPFlexWidgetViewComponent,
14249
+ AXPGalleryWidget: AXPGalleryWidget,
14250
+ AXPGalleryWidgetEditComponent: AXPGalleryWidgetEditComponent,
14251
+ AXPGalleryWidgetPrintComponent: AXPGalleryWidgetPrintComponent,
14252
+ AXPGalleryWidgetViewComponent: AXPGalleryWidgetViewComponent,
14253
+ AXPGreaterThanExpressionValidationWidget: AXPGreaterThanExpressionValidationWidget,
14254
+ AXPGreaterThanValidationWidgetEditComponent: AXPGreaterThanValidationWidgetEditComponent,
14255
+ AXPGridItemOptionsWidget: AXPGridItemOptionsWidget,
14256
+ AXPGridItemOptionsWidgetEditComponent: AXPGridItemOptionsWidgetEditComponent,
14257
+ AXPGridOptionsWidget: AXPGridOptionsWidget,
14258
+ AXPGridOptionsWidgetEditComponent: AXPGridOptionsWidgetEditComponent,
14259
+ AXPImageMarkerPopupComponent: AXPImageMarkerPopupComponent,
14260
+ AXPImageMarkerWidget: AXPImageMarkerWidget,
14261
+ AXPImageMarkerWidgetColumnComponent: AXPImageMarkerWidgetColumnComponent,
14262
+ AXPImageMarkerWidgetEditComponent: AXPImageMarkerWidgetEditComponent,
14263
+ AXPImageMarkerWidgetViewComponent: AXPImageMarkerWidgetViewComponent,
14264
+ AXPLargeTextWidget: AXPLargeTextWidget,
14265
+ AXPLargeTextWidgetColumnComponent: AXPLargeTextWidgetColumnComponent,
14266
+ AXPLargeTextWidgetEditComponent: AXPLargeTextWidgetEditComponent,
14267
+ AXPLargeTextWidgetFilterComponent: AXPLargeTextWidgetFilterComponent,
14268
+ AXPLargeTextWidgetPrintComponent: AXPLargeTextWidgetPrintComponent,
14269
+ AXPLargeTextWidgetViewComponent: AXPLargeTextWidgetViewComponent,
14270
+ AXPLessThanExpressionValidationWidget: AXPLessThanExpressionValidationWidget,
14271
+ AXPLessThanValidationWidgetEditComponent: AXPLessThanValidationWidgetEditComponent,
14272
+ AXPLinkWidget: AXPLinkWidget,
14273
+ AXPLinkWidgetColumnComponent: AXPLinkWidgetColumnComponent,
14274
+ AXPLinkWidgetEditComponent: AXPLinkWidgetEditComponent,
14275
+ AXPLinkWidgetFilterComponent: AXPLinkWidgetFilterComponent,
14276
+ AXPLinkWidgetPrintComponent: AXPLinkWidgetPrintComponent,
14277
+ AXPLinkWidgetViewComponent: AXPLinkWidgetViewComponent,
14278
+ AXPListWidget: AXPListWidget,
14279
+ AXPListWidgetViewComponent: AXPListWidgetViewComponent,
14280
+ AXPMapBoxWidget: AXPMapBoxWidget,
14281
+ AXPMapBoxWidgetEditComponent: AXPMapBoxWidgetEditComponent,
14282
+ AXPMapBoxWidgetViewComponent: AXPMapBoxWidgetViewComponent,
14283
+ AXPMaxLengthExpressionValidationWidget: AXPMaxLengthExpressionValidationWidget,
14284
+ AXPMaxLengthValidationWidgetEditComponent: AXPMaxLengthValidationWidgetEditComponent,
14285
+ AXPMinLengthExpressionValidationWidget: AXPMinLengthExpressionValidationWidget,
14286
+ AXPMinLengthValidationWidgetEditComponent: AXPMinLengthValidationWidgetEditComponent,
14287
+ AXPNumberBoxWidget: AXPNumberBoxWidget,
14288
+ AXPNumberBoxWidgetColumnComponent: AXPNumberBoxWidgetColumnComponent,
14289
+ AXPNumberBoxWidgetEditComponent: AXPNumberBoxWidgetEditComponent,
14290
+ AXPNumberBoxWidgetFilterComponent: AXPNumberBoxWidgetFilterComponent,
14291
+ AXPNumberBoxWidgetPrintComponent: AXPNumberBoxWidgetPrintComponent,
14292
+ AXPNumberBoxWidgetViewComponent: AXPNumberBoxWidgetViewComponent,
14293
+ AXPPageWidget: AXPPageWidget,
14294
+ AXPPageWidgetViewComponent: AXPPageWidgetViewComponent,
14295
+ AXPPasswordBoxWidget: AXPPasswordBoxWidget,
14296
+ AXPPasswordBoxWidgetColumnComponent: AXPPasswordBoxWidgetColumnComponent,
14297
+ AXPPasswordBoxWidgetEditComponent: AXPPasswordBoxWidgetEditComponent,
14298
+ AXPPasswordBoxWidgetFilterComponent: AXPPasswordBoxWidgetFilterComponent,
14299
+ AXPPasswordBoxWidgetPrintComponent: AXPPasswordBoxWidgetPrintComponent,
14300
+ AXPPasswordBoxWidgetViewComponent: AXPPasswordBoxWidgetViewComponent,
14301
+ AXPPhoneBoxWidget: AXPPhoneBoxWidget,
14302
+ AXPPhoneBoxWidgetColumnComponent: AXPPhoneBoxWidgetColumnComponent,
14303
+ AXPPhoneBoxWidgetEditComponent: AXPPhoneBoxWidgetEditComponent,
14304
+ AXPPhoneBoxWidgetFilterComponent: AXPPhoneBoxWidgetFilterComponent,
14305
+ AXPPhoneBoxWidgetPrintComponent: AXPPhoneBoxWidgetPrintComponent,
14306
+ AXPPhoneBoxWidgetViewComponent: AXPPhoneBoxWidgetViewComponent,
14307
+ AXPRegularExpressionValidationWidget: AXPRegularExpressionValidationWidget,
14308
+ AXPRegularExpressionValidationWidgetEditComponent: AXPRegularExpressionValidationWidgetEditComponent,
14309
+ AXPRepeaterWidget: AXPRepeaterWidget,
14310
+ AXPRepeaterWidgetDesignerComponent: AXPRepeaterWidgetDesignerComponent,
14311
+ AXPRepeaterWidgetEditComponent: AXPRepeaterWidgetEditComponent,
14312
+ AXPRepeaterWidgetPrintComponent: AXPRepeaterWidgetPrintComponent,
14313
+ AXPRepeaterWidgetViewComponent: AXPRepeaterWidgetViewComponent,
14314
+ AXPRequiredValidationWidget: AXPRequiredValidationWidget,
14315
+ AXPRequiredValidationWidgetEditComponent: AXPRequiredValidationWidgetEditComponent,
14316
+ AXPRichTextWidget: AXPRichTextWidget,
14317
+ AXPRichTextWidgetColumnComponent: AXPRichTextWidgetColumnComponent,
14318
+ AXPRichTextWidgetEditComponent: AXPRichTextWidgetEditComponent,
14319
+ AXPRichTextWidgetFilterComponent: AXPRichTextWidgetFilterComponent,
14320
+ AXPRichTextWidgetPrintComponent: AXPRichTextWidgetPrintComponent,
14321
+ AXPRichTextWidgetViewComponent: AXPRichTextWidgetViewComponent,
14322
+ AXPSelectBoxWidget: AXPSelectBoxWidget,
14323
+ AXPSelectBoxWidgetColumnComponent: AXPSelectBoxWidgetColumnComponent,
14324
+ AXPSelectBoxWidgetEditComponent: AXPSelectBoxWidgetEditComponent,
14325
+ AXPSelectBoxWidgetPrintComponent: AXPSelectBoxWidgetPrintComponent,
14326
+ AXPSelectBoxWidgetViewComponent: AXPSelectBoxWidgetViewComponent,
14327
+ AXPSelectionListWidget: AXPSelectionListWidget,
14328
+ AXPSelectionListWidgetColumnComponent: AXPSelectionListWidgetColumnComponent,
14329
+ AXPSelectionListWidgetDesignerComponent: AXPSelectionListWidgetDesignerComponent,
14330
+ AXPSelectionListWidgetEditComponent: AXPSelectionListWidgetEditComponent,
14331
+ AXPSelectionListWidgetFilterComponent: AXPSelectionListWidgetFilterComponent,
14332
+ AXPSelectionListWidgetPrintComponent: AXPSelectionListWidgetPrintComponent,
14333
+ AXPSelectionListWidgetViewComponent: AXPSelectionListWidgetViewComponent,
14334
+ AXPSignatureWidget: AXPSignatureWidget,
14335
+ AXPSignatureWidgetColumnComponent: AXPSignatureWidgetColumnComponent,
14336
+ AXPSignatureWidgetEditComponent: AXPSignatureWidgetEditComponent,
14337
+ AXPSignatureWidgetFilterComponent: AXPSignatureWidgetFilterComponent,
14338
+ AXPSignatureWidgetPrintComponent: AXPSignatureWidgetPrintComponent,
14339
+ AXPSignatureWidgetViewComponent: AXPSignatureWidgetViewComponent,
14340
+ AXPSpacingWidget: AXPSpacingWidget,
14341
+ AXPSpacingWidgetEditComponent: AXPSpacingWidgetEditComponent,
14342
+ AXPTemplateBoxWidget: AXPTemplateBoxWidget,
14343
+ AXPTemplateBoxWidgetColumnComponent: AXPTemplateBoxWidgetColumnComponent,
14344
+ AXPTemplateBoxWidgetEditComponent: AXPTemplateBoxWidgetEditComponent,
14345
+ AXPTemplateBoxWidgetFilterComponent: AXPTemplateBoxWidgetFilterComponent,
14346
+ AXPTemplateBoxWidgetPrintComponent: AXPTemplateBoxWidgetPrintComponent,
14347
+ AXPTemplateBoxWidgetViewComponent: AXPTemplateBoxWidgetViewComponent,
14348
+ AXPTextBoxWidget: AXPTextBoxWidget,
14349
+ AXPTextBoxWidgetColumnComponent: AXPTextBoxWidgetColumnComponent,
14350
+ AXPTextBoxWidgetEditComponent: AXPTextBoxWidgetEditComponent,
14351
+ AXPTextBoxWidgetFilterComponent: AXPTextBoxWidgetFilterComponent,
14352
+ AXPTextBoxWidgetPrintComponent: AXPTextBoxWidgetPrintComponent$1,
14353
+ AXPTextBoxWidgetViewComponent: AXPTextBoxWidgetViewComponent,
14354
+ AXPToggleWidget: AXPToggleWidget,
14355
+ AXPToggleWidgetColumnComponent: AXPToggleWidgetColumnComponent,
14356
+ AXPToggleWidgetEditComponent: AXPToggleWidgetEditComponent,
14357
+ AXPToggleWidgetFilterComponent: AXPToggleWidgetFilterComponent,
14358
+ AXPToggleWidgetPrintComponent: AXPToggleWidgetPrintComponent,
14359
+ AXPToggleWidgetViewComponent: AXPToggleWidgetViewComponent,
14360
+ AXP_Flex_Box_Align_Options: AXP_Flex_Box_Align_Options,
14361
+ AXP_Flex_Box_Alignments: AXP_Flex_Box_Alignments,
14362
+ AXP_Flex_Box_Justify_Options: AXP_Flex_Box_Justify_Options,
14363
+ AXP_Grid_Box_Align_Items_Options: AXP_Grid_Box_Align_Items_Options,
14364
+ AXP_Grid_Box_Alignments: AXP_Grid_Box_Alignments,
14365
+ AXP_Grid_Box_Justify_Items_Options: AXP_Grid_Box_Justify_Items_Options,
14366
+ AXP_default_Border_Box_Units: AXP_default_Border_Box_Units,
14367
+ AXP_default_Border_Box_Value: AXP_default_Border_Box_Value,
14368
+ AXP_default_Spacing_Box_Units: AXP_default_Spacing_Box_Units,
14369
+ AXP_default_Spacing_Box_Value: AXP_default_Spacing_Box_Value
14370
+ });
14371
+
14072
14372
  class AXPCronJobWidgetViewComponent extends AXPValueWidgetComponent {
14073
14373
  constructor() {
14074
14374
  super(...arguments);
@@ -18499,6 +18799,9 @@ class AXPWidgetsModule {
18499
18799
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.8", ngImport: i0, type: AXPWidgetsModule, providers: [
18500
18800
  { provide: STRATEGY_CONFIG_TOKEN, useValue: DEFAULT_STRATEGY_CONFIG },
18501
18801
  importProvidersFrom(AXMediaViewerModule.forRoot()),
18802
+ provideCommandSetups([
18803
+ { key: 'FileUploader:Edit', command: () => Promise.resolve().then(function () { return index; }).then((c) => c.AXPEditFileUploaderCommand) },
18804
+ ]),
18502
18805
  ], imports: [AXPLayoutBuilderModule.forChild({
18503
18806
  widgets: [
18504
18807
  AXPDocumentWidget,
@@ -18672,6 +18975,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
18672
18975
  providers: [
18673
18976
  { provide: STRATEGY_CONFIG_TOKEN, useValue: DEFAULT_STRATEGY_CONFIG },
18674
18977
  importProvidersFrom(AXMediaViewerModule.forRoot()),
18978
+ provideCommandSetups([
18979
+ { key: 'FileUploader:Edit', command: () => Promise.resolve().then(function () { return index; }).then((c) => c.AXPEditFileUploaderCommand) },
18980
+ ]),
18675
18981
  ],
18676
18982
  exports: [],
18677
18983
  declarations: [],
@@ -18682,5 +18988,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.8", ngImpor
18682
18988
  * Generated bundle index. Do not edit.
18683
18989
  */
18684
18990
 
18685
- export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetPrintComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetPrintComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPExtraPropertiesSchemaWidget, AXPExtraPropertiesValuesWidget, AXPExtraPropertiesWidget, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetPrintComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPListWidget, AXPListWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetFilterComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent$1 as AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, 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_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_PROPERTIES, AXP_DATA_SOURCE_PROPERTY, AXP_DATA_SOURCE_TEXT_FIELD, AXP_DATA_SOURCE_VALUE_FIELD, AXP_DATE_FORMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_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_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, AXP_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, DEFAULT_STRATEGY_CONFIG, STRATEGY_CONFIG_TOKEN, booleanDefaultProperty, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
18991
+ export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetPrintComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetPrintComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPEditFileUploaderCommand, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPExtraPropertiesSchemaWidget, AXPExtraPropertiesValuesWidget, AXPExtraPropertiesWidget, AXPFileListComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetPrintComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPListWidget, AXPListWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetFilterComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent$1 as AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, 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_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_PROPERTIES, AXP_DATA_SOURCE_PROPERTY, AXP_DATA_SOURCE_TEXT_FIELD, AXP_DATA_SOURCE_VALUE_FIELD, AXP_DATE_FORMAT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_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_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, AXP_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, DEFAULT_STRATEGY_CONFIG, STRATEGY_CONFIG_TOKEN, booleanDefaultProperty, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
18686
18992
  //# sourceMappingURL=acorex-platform-widgets.mjs.map