@acorex/platform 19.4.5 → 19.4.6

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 (24) hide show
  1. package/fesm2022/acorex-platform-layout-builder.mjs +2 -0
  2. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  3. package/fesm2022/acorex-platform-layout-entity.mjs +4 -2
  4. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  5. package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-9XMpubtr.mjs → acorex-platform-widgets-page-widget-designer.component-DuKrIkHh.mjs} +2 -1
  6. package/fesm2022/{acorex-platform-widgets-page-widget-designer.component-9XMpubtr.mjs.map → acorex-platform-widgets-page-widget-designer.component-DuKrIkHh.mjs.map} +1 -1
  7. package/fesm2022/acorex-platform-widgets.mjs +389 -70
  8. package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
  9. package/layout/builder/lib/builder/widget-map.d.ts +2 -0
  10. package/package.json +11 -11
  11. package/widgets/lib/properties/layout.props.d.ts +1 -0
  12. package/widgets/lib/widgets/advance/map/map-box-widget-edit.component.d.ts +0 -1
  13. package/widgets/lib/widgets/index.d.ts +2 -0
  14. package/widgets/lib/widgets/layout/block/block-widget-view.component.d.ts +0 -2
  15. package/widgets/lib/widgets/layout/block/block-widget.config.d.ts +1 -0
  16. package/widgets/lib/widgets/layout/flex/flex-widget-designer.component.d.ts +10 -0
  17. package/widgets/lib/widgets/layout/flex/flex-widget-view.component.d.ts +10 -0
  18. package/widgets/lib/widgets/layout/flex/flex-widget.config.d.ts +28 -0
  19. package/widgets/lib/widgets/layout/flex/index.d.ts +3 -0
  20. package/widgets/lib/widgets/layout/grid/grid-widget-view.component.d.ts +6 -1
  21. package/widgets/lib/widgets/property-editors/direction/direction-widget-editor.component.d.ts +13 -0
  22. package/widgets/lib/widgets/property-editors/direction/direction-widget.config.d.ts +7 -0
  23. package/widgets/lib/widgets/property-editors/direction/index.d.ts +2 -0
  24. package/widgets/lib/widgets/property-editors/spacing/spacing-widget-editor.component.d.ts +1 -1
@@ -822,6 +822,22 @@ const AXP_LAYOUT_SHOW_HEADER_PROPERTY = createBooleanProperty({
822
822
  path: 'options.showHeader',
823
823
  defaultValue: true,
824
824
  });
825
+ const AXP_LAYOUT_DIRECTION_PROPERTY = {
826
+ name: 'direction',
827
+ title: 'Direction',
828
+ group: AXP_BOX_MODEL_PROPERTY_GROUP,
829
+ schema: {
830
+ dataType: 'string',
831
+ defaultValue: 'ltr',
832
+ interface: {
833
+ name: 'direction',
834
+ path: 'options.direction',
835
+ type: AXPWidgetsCatalog.direction,
836
+ options: {},
837
+ },
838
+ },
839
+ visible: true,
840
+ };
825
841
 
826
842
  const AXP_TABLE_COLUMN_WIDTH_PROPERTY = {
827
843
  name: 'width',
@@ -2774,7 +2790,7 @@ class AXPLargeTextWidgetEditComponent extends AXPValueWidgetComponent {
2774
2790
  }
2775
2791
  ngOnInit() {
2776
2792
  super.ngOnInit();
2777
- console.log(this.multiLanguage());
2793
+ //console.log(this.multiLanguage());
2778
2794
  this.getCurrentLanguage();
2779
2795
  }
2780
2796
  handleValueChange(e) {
@@ -7796,11 +7812,7 @@ class AXPMapBoxWidgetEditComponent extends AXPValueWidgetComponent {
7796
7812
  this.height = computed(() => this.options()['height'] ?? 300);
7797
7813
  this.fitToDraw = computed(() => this.options()['fitToDraw'] ?? false);
7798
7814
  this.limitDraw = computed(() => this.options()?.limitDraw ?? undefined);
7799
- this.#effect2 = effect(() => {
7800
- console.log('limitDraw', this.limitDraw());
7801
- });
7802
7815
  }
7803
- #effect2;
7804
7816
  onMarkerChanged($event) {
7805
7817
  this.setValue({ polygons: this.getValue()?.polygons ?? [], markers: $event });
7806
7818
  }
@@ -9291,7 +9303,7 @@ class AXPBlockWidgetDesignerComponent extends AXPLayoutWidgetComponent {
9291
9303
  get __style() {
9292
9304
  const spacing = this.options()?.['spacing'];
9293
9305
  const border = this.options()?.['border'];
9294
- const flex = this.options()?.['flex'];
9306
+ const direction = this.options()?.['direction'];
9295
9307
  return {
9296
9308
  // Background
9297
9309
  'background-color': this.backgroundColor(),
@@ -9303,12 +9315,8 @@ class AXPBlockWidgetDesignerComponent extends AXPLayoutWidgetComponent {
9303
9315
  'border-width': border?.width ?? 0,
9304
9316
  'border-color': border?.color ?? '#000000',
9305
9317
  'border-style': border?.style ?? 'none',
9306
- // Flexbox
9307
- 'flex-direction': flex?.direction ?? 'row',
9308
- 'flex-wrap': flex?.wrap ?? 'nowrap',
9309
- 'justify-content': flex?.justify ?? 'flex-start',
9310
- 'align-items': flex?.align ?? 'flex-start',
9311
- gap: flex?.gap ?? '0px',
9318
+ // Direction
9319
+ direction: direction ?? 'ltr',
9312
9320
  };
9313
9321
  }
9314
9322
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPBlockWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
@@ -9319,17 +9327,17 @@ class AXPBlockWidgetDesignerComponent extends AXPLayoutWidgetComponent {
9319
9327
  },
9320
9328
  ], usesInheritance: true, ngImport: i0, template: `
9321
9329
  @for (node of children(); track $index) {
9322
- <ng-container
9323
- axp-widget-designer-renderer
9324
- [node]="node"
9325
- [parentNode]="this"
9326
- [mode]="this.mode"
9327
- [locked]="this.locked"
9328
- ></ng-container>
9330
+ <ng-container
9331
+ axp-widget-designer-renderer
9332
+ [node]="node"
9333
+ [parentNode]="this"
9334
+ [mode]="this.mode"
9335
+ [locked]="this.locked"
9336
+ ></ng-container>
9329
9337
  } @empty {
9330
- <axp-designer-add-widget-mini-button
9331
- class="ax-flex-1 ax-self-center ax-place-self-end"
9332
- ></axp-designer-add-widget-mini-button>
9338
+ <axp-designer-add-widget-mini-button
9339
+ class="ax-flex-1 ax-self-center ax-place-self-end"
9340
+ ></axp-designer-add-widget-mini-button>
9333
9341
  }
9334
9342
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "locked", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetMiniButtonComponent, selector: "axp-designer-add-widget-mini-button", outputs: ["onClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
9335
9343
  }
@@ -9339,17 +9347,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
9339
9347
  selector: 'axp-block-widget',
9340
9348
  template: `
9341
9349
  @for (node of children(); track $index) {
9342
- <ng-container
9343
- axp-widget-designer-renderer
9344
- [node]="node"
9345
- [parentNode]="this"
9346
- [mode]="this.mode"
9347
- [locked]="this.locked"
9348
- ></ng-container>
9350
+ <ng-container
9351
+ axp-widget-designer-renderer
9352
+ [node]="node"
9353
+ [parentNode]="this"
9354
+ [mode]="this.mode"
9355
+ [locked]="this.locked"
9356
+ ></ng-container>
9349
9357
  } @empty {
9350
- <axp-designer-add-widget-mini-button
9351
- class="ax-flex-1 ax-self-center ax-place-self-end"
9352
- ></axp-designer-add-widget-mini-button>
9358
+ <axp-designer-add-widget-mini-button
9359
+ class="ax-flex-1 ax-self-center ax-place-self-end"
9360
+ ></axp-designer-add-widget-mini-button>
9353
9361
  }
9354
9362
  `,
9355
9363
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -9384,7 +9392,6 @@ class AXPBlockWidgetViewComponent extends AXPLayoutWidgetComponent {
9384
9392
  super(...arguments);
9385
9393
  this.backgroundColor = computed(() => this.options()['backgroundColor']);
9386
9394
  this.cssClass = computed(() => this.options()['cssClass']);
9387
- this.flex = computed(() => (this.options()['flex'] ?? {}));
9388
9395
  }
9389
9396
  get __class() {
9390
9397
  const cls = {};
@@ -9398,7 +9405,7 @@ class AXPBlockWidgetViewComponent extends AXPLayoutWidgetComponent {
9398
9405
  get __style() {
9399
9406
  const spacing = this.options()?.['spacing'];
9400
9407
  const border = this.options()?.['border'];
9401
- const flex = this.flex();
9408
+ const direction = this.options()?.['direction'];
9402
9409
  return {
9403
9410
  // Background
9404
9411
  'background-color': this.backgroundColor(),
@@ -9410,24 +9417,20 @@ class AXPBlockWidgetViewComponent extends AXPLayoutWidgetComponent {
9410
9417
  'border-width': border?.width ?? 0,
9411
9418
  'border-color': border?.color ?? '#000000',
9412
9419
  'border-style': border?.style ?? 'none',
9413
- // Flexbox
9414
- 'flex-direction': flex?.direction ?? 'row',
9415
- 'flex-wrap': flex?.wrap ?? 'nowrap',
9416
- 'justify-content': flex?.justify ?? 'flex-start',
9417
- 'align-items': flex?.align ?? 'flex-start',
9418
- gap: flex?.gap ?? '0px',
9420
+ // Direction
9421
+ direction: direction ?? 'ltr',
9419
9422
  };
9420
9423
  }
9421
9424
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPBlockWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
9422
9425
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.10", type: AXPBlockWidgetViewComponent, isStandalone: true, selector: "axp-block-widget", host: { properties: { "class": "this.__class", "style": "this.__style" } }, usesInheritance: true, ngImport: i0, template: `
9423
9426
  @for (node of children(); track $index) {
9424
- <ng-container
9425
- axp-widget-renderer
9426
- [node]="node"
9427
- [index]="index"
9428
- [parentNode]="this"
9429
- [mode]="this.mode"
9430
- ></ng-container>
9427
+ <ng-container
9428
+ axp-widget-renderer
9429
+ [node]="node"
9430
+ [index]="index"
9431
+ [parentNode]="this"
9432
+ [mode]="this.mode"
9433
+ ></ng-container>
9431
9434
  }
9432
9435
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: i1$3.AXPWidgetRendererDirective, selector: "[axp-widget-renderer]", inputs: ["parentNode", "index", "mode", "node"], outputs: ["onOptionsChanged", "onValueChanged"], exportAs: ["widgetRenderer"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
9433
9436
  }
@@ -9437,13 +9440,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
9437
9440
  selector: 'axp-block-widget',
9438
9441
  template: `
9439
9442
  @for (node of children(); track $index) {
9440
- <ng-container
9441
- axp-widget-renderer
9442
- [node]="node"
9443
- [index]="index"
9444
- [parentNode]="this"
9445
- [mode]="this.mode"
9446
- ></ng-container>
9443
+ <ng-container
9444
+ axp-widget-renderer
9445
+ [node]="node"
9446
+ [index]="index"
9447
+ [parentNode]="this"
9448
+ [mode]="this.mode"
9449
+ ></ng-container>
9447
9450
  }
9448
9451
  `,
9449
9452
  changeDetection: ChangeDetectionStrategy.OnPush,
@@ -9479,7 +9482,7 @@ const AXPBlockWidget = {
9479
9482
  // cloneProperty(AXP_BG_COLOR_PROPERTY, { schema: { defaultValue: null } }),
9480
9483
  AXP_LAYOUT_SPACING_PROPERTY,
9481
9484
  AXP_LAYOUT_BORDER_PROPERTY,
9482
- AXP_LAYOUT_FLEX_PROPERTY,
9485
+ AXP_LAYOUT_DIRECTION_PROPERTY,
9483
9486
  ],
9484
9487
  components: {
9485
9488
  designer: {
@@ -9497,6 +9500,222 @@ const AXPBlockWidget = {
9497
9500
  },
9498
9501
  };
9499
9502
 
9503
+ class AXPFlexWidgetDesignerComponent extends AXPLayoutWidgetComponent {
9504
+ constructor() {
9505
+ super(...arguments);
9506
+ this.backgroundColor = computed(() => this.options()['backgroundColor']);
9507
+ this.cssClass = computed(() => this.options()['cssClass']);
9508
+ }
9509
+ get __class() {
9510
+ const cls = {};
9511
+ //
9512
+ cls[`ax-w-full`] = true;
9513
+ //
9514
+ cls[`ax-flex`] = true;
9515
+ return cls;
9516
+ }
9517
+ get __style() {
9518
+ const spacing = this.options()?.['spacing'];
9519
+ const border = this.options()?.['border'];
9520
+ const flex = this.options()?.['flex'];
9521
+ return {
9522
+ // Background
9523
+ 'background-color': this.backgroundColor(),
9524
+ // Spacing
9525
+ padding: spacing?.padding ?? 0,
9526
+ margin: spacing?.margin ?? 0,
9527
+ // Border
9528
+ 'border-radius': border?.radius ?? 0,
9529
+ 'border-width': border?.width ?? 0,
9530
+ 'border-color': border?.color ?? '#000000',
9531
+ 'border-style': border?.style ?? 'none',
9532
+ // Flexbox
9533
+ 'flex-direction': flex?.direction ?? 'row',
9534
+ 'flex-wrap': flex?.wrap ?? 'nowrap',
9535
+ 'overflow-x': flex?.wrap === 'nowrap' ? 'auto' : '',
9536
+ 'justify-content': flex?.justify ?? 'flex-start',
9537
+ 'align-items': flex?.align ?? 'flex-start',
9538
+ gap: flex?.gap ?? '0px',
9539
+ };
9540
+ }
9541
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPFlexWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
9542
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.10", type: AXPFlexWidgetDesignerComponent, isStandalone: true, selector: "axp-flex-widget", host: { properties: { "class": "this.__class", "style": "this.__style" } }, providers: [
9543
+ {
9544
+ provide: AXPLayoutWidgetComponent,
9545
+ useExisting: AXPFlexWidgetDesignerComponent,
9546
+ },
9547
+ ], usesInheritance: true, ngImport: i0, template: `
9548
+ @for (node of children(); track $index) {
9549
+ <ng-container
9550
+ axp-widget-designer-renderer
9551
+ [node]="node"
9552
+ [parentNode]="this"
9553
+ [mode]="this.mode"
9554
+ [locked]="this.locked"
9555
+ ></ng-container>
9556
+ }
9557
+ <axp-designer-add-widget-mini-button
9558
+ class="ax-p-1 ax-flex-1 ax-self-center ax-place-self-end"
9559
+ ></axp-designer-add-widget-mini-button>
9560
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: AXPWidgetDesignerRendererDirective, selector: "[axp-widget-designer-renderer]", inputs: ["parentNode", "index", "locked", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetMiniButtonComponent, selector: "axp-designer-add-widget-mini-button", outputs: ["onClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
9561
+ }
9562
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPFlexWidgetDesignerComponent, decorators: [{
9563
+ type: Component,
9564
+ args: [{
9565
+ selector: 'axp-flex-widget',
9566
+ template: `
9567
+ @for (node of children(); track $index) {
9568
+ <ng-container
9569
+ axp-widget-designer-renderer
9570
+ [node]="node"
9571
+ [parentNode]="this"
9572
+ [mode]="this.mode"
9573
+ [locked]="this.locked"
9574
+ ></ng-container>
9575
+ }
9576
+ <axp-designer-add-widget-mini-button
9577
+ class="ax-p-1 ax-flex-1 ax-self-center ax-place-self-end"
9578
+ ></axp-designer-add-widget-mini-button>
9579
+ `,
9580
+ changeDetection: ChangeDetectionStrategy.OnPush,
9581
+ imports: [
9582
+ CommonModule,
9583
+ AXPLayoutBuilderModule,
9584
+ AXPWidgetDesignerRendererDirective,
9585
+ AXPDesignerAddWidgetMiniButtonComponent,
9586
+ ],
9587
+ providers: [
9588
+ {
9589
+ provide: AXPLayoutWidgetComponent,
9590
+ useExisting: AXPFlexWidgetDesignerComponent,
9591
+ },
9592
+ ],
9593
+ }]
9594
+ }], propDecorators: { __class: [{
9595
+ type: HostBinding,
9596
+ args: ['class']
9597
+ }], __style: [{
9598
+ type: HostBinding,
9599
+ args: ['style']
9600
+ }] } });
9601
+
9602
+ var flexWidgetDesigner_component = /*#__PURE__*/Object.freeze({
9603
+ __proto__: null,
9604
+ AXPFlexWidgetDesignerComponent: AXPFlexWidgetDesignerComponent
9605
+ });
9606
+
9607
+ class AXPFlexWidgetViewComponent extends AXPLayoutWidgetComponent {
9608
+ constructor() {
9609
+ super(...arguments);
9610
+ this.backgroundColor = computed(() => this.options()['backgroundColor']);
9611
+ this.cssClass = computed(() => this.options()['cssClass']);
9612
+ }
9613
+ get __class() {
9614
+ const cls = {};
9615
+ //
9616
+ cls[`ax-w-full`] = true;
9617
+ cls[`ax-widget-outline`] = true;
9618
+ //
9619
+ cls[`ax-flex`] = true;
9620
+ // cls[`ax-overflow-auto`] = true;
9621
+ return cls;
9622
+ }
9623
+ get __style() {
9624
+ const spacing = this.options()?.['spacing'];
9625
+ const border = this.options()?.['border'];
9626
+ const flex = this.options()?.['flex'];
9627
+ return {
9628
+ // Background
9629
+ 'background-color': this.backgroundColor(),
9630
+ // Spacing
9631
+ padding: spacing?.padding ?? 0,
9632
+ margin: spacing?.margin ?? 0,
9633
+ // Border
9634
+ 'border-radius': border?.radius ?? 0,
9635
+ 'border-width': border?.width ?? 0,
9636
+ 'border-color': border?.color ?? '#000000',
9637
+ 'border-style': border?.style ?? 'none',
9638
+ // Flexbox
9639
+ 'flex-direction': flex?.direction ?? 'row',
9640
+ 'flex-wrap': flex?.wrap ?? 'nowrap',
9641
+ 'overflow-x': flex?.wrap === 'nowrap' ? 'auto' : '',
9642
+ 'justify-content': flex?.justify ?? 'flex-start',
9643
+ 'align-items': flex?.align ?? 'flex-start',
9644
+ gap: flex?.gap ?? '0px',
9645
+ };
9646
+ }
9647
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPFlexWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
9648
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.10", type: AXPFlexWidgetViewComponent, isStandalone: true, selector: "axp-flex-widget", host: { properties: { "class": "this.__class", "style": "this.__style" } }, usesInheritance: true, ngImport: i0, template: `
9649
+ @for (node of children(); track $index) {
9650
+ <ng-container
9651
+ axp-widget-renderer
9652
+ [node]="node"
9653
+ [index]="index"
9654
+ [parentNode]="this"
9655
+ [mode]="this.mode"
9656
+ ></ng-container>
9657
+ }
9658
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: i1$3.AXPWidgetRendererDirective, selector: "[axp-widget-renderer]", inputs: ["parentNode", "index", "mode", "node"], outputs: ["onOptionsChanged", "onValueChanged"], exportAs: ["widgetRenderer"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
9659
+ }
9660
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPFlexWidgetViewComponent, decorators: [{
9661
+ type: Component,
9662
+ args: [{
9663
+ selector: 'axp-flex-widget',
9664
+ template: `
9665
+ @for (node of children(); track $index) {
9666
+ <ng-container
9667
+ axp-widget-renderer
9668
+ [node]="node"
9669
+ [index]="index"
9670
+ [parentNode]="this"
9671
+ [mode]="this.mode"
9672
+ ></ng-container>
9673
+ }
9674
+ `,
9675
+ changeDetection: ChangeDetectionStrategy.OnPush,
9676
+ imports: [CommonModule, AXPLayoutBuilderModule],
9677
+ }]
9678
+ }], propDecorators: { __class: [{
9679
+ type: HostBinding,
9680
+ args: ['class']
9681
+ }], __style: [{
9682
+ type: HostBinding,
9683
+ args: ['style']
9684
+ }] } });
9685
+
9686
+ var flexWidgetView_component = /*#__PURE__*/Object.freeze({
9687
+ __proto__: null,
9688
+ AXPFlexWidgetViewComponent: AXPFlexWidgetViewComponent
9689
+ });
9690
+
9691
+ const AXPFlexWidget = {
9692
+ name: 'flex-layout',
9693
+ type: 'container',
9694
+ title: 'Flex Layout',
9695
+ description: 'Organizes content in flexible layout',
9696
+ icon: 'fa-light fa-box-taped',
9697
+ categories: AXP_WIDGETS_LAYOUT_CATEGORY,
9698
+ groups: [AXPWidgetGroupEnum.FormElement],
9699
+ options: {
9700
+ canInsert: true,
9701
+ },
9702
+ properties: [AXP_NAME_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY],
9703
+ components: {
9704
+ designer: {
9705
+ component: () => Promise.resolve().then(function () { return flexWidgetDesigner_component; }).then((c) => c.AXPFlexWidgetDesignerComponent),
9706
+ },
9707
+ edit: {
9708
+ component: () => Promise.resolve().then(function () { return flexWidgetView_component; }).then((c) => c.AXPFlexWidgetViewComponent),
9709
+ },
9710
+ print: {
9711
+ component: () => Promise.resolve().then(function () { return flexWidgetView_component; }).then((c) => c.AXPFlexWidgetViewComponent),
9712
+ },
9713
+ view: {
9714
+ component: () => Promise.resolve().then(function () { return flexWidgetView_component; }).then((c) => c.AXPFlexWidgetViewComponent),
9715
+ },
9716
+ },
9717
+ };
9718
+
9500
9719
  class AXPPageWidgetViewComponent extends AXPLayoutWidgetComponent {
9501
9720
  constructor() {
9502
9721
  super(...arguments);
@@ -9574,7 +9793,7 @@ const AXPPageWidget = {
9574
9793
  component: () => Promise.resolve().then(function () { return pageWidgetView_component; }).then((c) => c.AXPPageWidgetViewComponent),
9575
9794
  },
9576
9795
  designer: {
9577
- component: () => import('./acorex-platform-widgets-page-widget-designer.component-9XMpubtr.mjs').then((c) => c.AXPPageWidgetDesignerComponent),
9796
+ component: () => import('./acorex-platform-widgets-page-widget-designer.component-DuKrIkHh.mjs').then((c) => c.AXPPageWidgetDesignerComponent),
9578
9797
  },
9579
9798
  },
9580
9799
  };
@@ -10701,6 +10920,47 @@ const AXPBorderWidget = {
10701
10920
  },
10702
10921
  };
10703
10922
 
10923
+ class AXPDirectionWidgetEditComponent extends AXPValueWidgetComponent {
10924
+ constructor() {
10925
+ super(...arguments);
10926
+ this.direction = computed(() => this.getValue() || 'ltr');
10927
+ this.directionOptions = [
10928
+ { id: 'ltr', text: 'Left to Right', icon: 'fa-light fa-arrow-right' },
10929
+ { id: 'rtl', text: 'Right to Left', icon: 'fa-light fa-arrow-left' },
10930
+ ];
10931
+ }
10932
+ setDirection(value) {
10933
+ const data = value || 'ltr';
10934
+ this.setValue(data);
10935
+ }
10936
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPDirectionWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
10937
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.10", type: AXPDirectionWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<div class=\"ax-pt-2\">\n <span class=\"ax-text-sm ax-font-light\">Direction</span>\n <div class=\"ax-mt-2\">\n <ax-selection-list\n [items]=\"directionOptions\"\n [ngModel]=\"direction()\"\n (ngModelChange)=\"setDirection($event)\"\n direction=\"horizontal\"\n [multiple]=\"false\"\n [showControl]=\"true\"\n look=\"card\"\n valueField=\"id\"\n textField=\"text\"\n >\n <ng-template #itemTemplate let-item>\n <div class=\"ax-flex ax-items-center\">\n <i [class]=\"item.icon\"></i>\n <span class=\"ax-ml-2\">{{ item.text }}</span>\n </div>\n </ng-template>\n </ax-selection-list>\n </div>\n</div>\n", styles: [".ax-selection-list-item{min-width:80px;text-align:center}\n"], dependencies: [{ kind: "ngmodule", type: AXSelectionListModule }, { kind: "component", type: i2$5.AXSelectionListComponent, selector: "ax-selection-list", inputs: ["id", "name", "disabled", "readonly", "tabIndex", "size", "value", "valueField", "textField", "disabledField", "readonlyField", "multiple", "direction", "customTemplate", "showControl", "items", "look"], outputs: ["onValueChanged", "onBlur", "onFocus"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
10938
+ }
10939
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPDirectionWidgetEditComponent, decorators: [{
10940
+ type: Component,
10941
+ args: [{ changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, imports: [AXSelectionListModule, FormsModule], template: "<div class=\"ax-pt-2\">\n <span class=\"ax-text-sm ax-font-light\">Direction</span>\n <div class=\"ax-mt-2\">\n <ax-selection-list\n [items]=\"directionOptions\"\n [ngModel]=\"direction()\"\n (ngModelChange)=\"setDirection($event)\"\n direction=\"horizontal\"\n [multiple]=\"false\"\n [showControl]=\"true\"\n look=\"card\"\n valueField=\"id\"\n textField=\"text\"\n >\n <ng-template #itemTemplate let-item>\n <div class=\"ax-flex ax-items-center\">\n <i [class]=\"item.icon\"></i>\n <span class=\"ax-ml-2\">{{ item.text }}</span>\n </div>\n </ng-template>\n </ax-selection-list>\n </div>\n</div>\n", styles: [".ax-selection-list-item{min-width:80px;text-align:center}\n"] }]
10942
+ }] });
10943
+
10944
+ var directionWidgetEditor_component = /*#__PURE__*/Object.freeze({
10945
+ __proto__: null,
10946
+ AXPDirectionWidgetEditComponent: AXPDirectionWidgetEditComponent
10947
+ });
10948
+
10949
+ const AXPDirectionWidget = {
10950
+ name: 'direction',
10951
+ title: 'Direction',
10952
+ description: 'Setting text direction (RTL/LTR)',
10953
+ categories: AXP_WIDGETS_EDITOR_CATEGORY,
10954
+ icon: 'fa-light fa-directions',
10955
+ type: 'editor',
10956
+ properties: [AXP_NAME_PROPERTY, AXP_DATA_PATH_PROPERTY],
10957
+ components: {
10958
+ edit: {
10959
+ component: () => Promise.resolve().then(function () { return directionWidgetEditor_component; }).then((c) => c.AXPDirectionWidgetEditComponent),
10960
+ },
10961
+ },
10962
+ };
10963
+
10704
10964
  const AXP_Flex_Box_Alignments = [
10705
10965
  { value: 'top-left', label: 'Top Left', align: 'flex-start', justify: 'flex-start' },
10706
10966
  { value: 'top-center', label: 'Top Center', align: 'flex-start', justify: 'center' },
@@ -11030,7 +11290,7 @@ class AXPSpacingWidgetEditComponent extends AXPValueWidgetComponent {
11030
11290
  { label: '200', value: 200 },
11031
11291
  ];
11032
11292
  this.popover = viewChild.required(AXPopoverComponent);
11033
- this.afterRender = afterNextRender(() => {
11293
+ this.#afterRender = afterNextRender(() => {
11034
11294
  if (this.getValue()) {
11035
11295
  this.calculatedValues.set(AXPPropertyEditorHelper.parseSpacingBox(this.getValue()));
11036
11296
  this.originalValues.set(AXPPropertyEditorHelper.parseSpacingBox(this.getValue()));
@@ -11109,6 +11369,7 @@ class AXPSpacingWidgetEditComponent extends AXPValueWidgetComponent {
11109
11369
  const touch = e.touches[0];
11110
11370
  return { clientX: touch.clientX, clientY: touch.clientY };
11111
11371
  }
11372
+ #afterRender;
11112
11373
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSpacingWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
11113
11374
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.10", type: AXPSpacingWidgetEditComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "popover", first: true, predicate: AXPopoverComponent, descendants: true, isSignal: true }], usesInheritance: true, ngImport: i0, template: "<div class=\"axp-spacing-box ax-flex ax-justify-center ax-items-center ax-pt-4 ax-pb-2\">\n <div class=\"axp-spacing-inner-box\">\n <div class=\"axp-spacing-margin-box\">\n <!--MARGIN SVG DEFINE-->\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"224\" height=\"112\" class=\"area\">\n <mask id=\"margin-mask\" width=\"224\" height=\"112\">\n <rect fill=\"#000\" height=\"112\" width=\"224\" x=\"0\" y=\"0\"></rect>\n <rect fill=\"#fff\" height=\"112\" rx=\"4\" width=\"224\" x=\"0\" y=\"0\"></rect>\n <rect fill=\"#000\" height=\"66\" rx=\"4\" width=\"154\" x=\"35\" y=\"23\"></rect>\n </mask>\n <defs>\n <linearGradient id=\"FuseLinearGradient\" x1=\"0\" y1=\"0\" x2=\"0\" y2=\"1\">\n <stop stop-color=\"white\"></stop>\n <stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"></stop>\n </linearGradient>\n </defs>\n\n <!--MARGIN TOP SVG-->\n <g\n class=\"hover:ax-brightness-75\"\n style=\"cursor: s-resize\"\n (click)=\"openPopUp($event, 'margin', 'top')\"\n (mousedown)=\"listenToMove($event, 'margin', 'top')\"\n >\n <g>\n <path\n mode=\"delta\"\n fill=\"var(--color-background-1)\"\n d=\"\n m0,0\n h224\n l-36,24\n h-152\n l-36,-24z\n \"\n mask=\"url(#margin-mask)\"\n ></path>\n <path\n mode=\"delta\"\n fill=\"white\"\n d=\"\n m0,0\n h224\n l-36,24\n h-152\n l-36,-24z\n \"\n fill-opacity=\"0.12\"\n mask=\"url(#margin-mask)\"\n ></path>\n <path\n mode=\"delta\"\n fill=\"url(#FuseLinearGradient)\"\n d=\"\n m0,0\n h224\n l-36,24\n h-152\n l-36,-24z\n \"\n fill-opacity=\"0.02\"\n mask=\"url(#margin-mask)\"\n ></path>\n </g>\n </g>\n <!--MARGIN RIGHT SVG-->\n <g\n class=\"hover:ax-brightness-75\"\n style=\"cursor: s-resize\"\n (click)=\"openPopUp($event, 'margin', 'right')\"\n (mousedown)=\"listenToMove($event, 'margin', 'right')\"\n >\n <g>\n <path\n mode=\"delta\"\n fill=\"var(--color-background-1)\"\n d=\"\n m224,0\n v112\n l-36,-24\n v-64\n l36,-24z\n \"\n mask=\"url(#margin-mask)\"\n ></path>\n <path\n mode=\"delta\"\n fill=\"white\"\n d=\"\n m224,0\n v112\n l-36,-24\n v-64\n l36,-24z\n \"\n fill-opacity=\"0.094\"\n mask=\"url(#margin-mask)\"\n ></path>\n </g>\n </g>\n <!--MARGIN BOTTOM SVG-->\n <g\n class=\"hover:ax-brightness-75\"\n style=\"cursor: s-resize\"\n (click)=\"openPopUp($event, 'margin', 'bottom')\"\n (mousedown)=\"listenToMove($event, 'margin', 'bottom')\"\n >\n <g>\n <path\n mode=\"delta\"\n fill=\"var(--color-background-1)\"\n d=\"\n m0,112\n h224\n l-36,-24\n h-152\n l-36,24z\n \"\n mask=\"url(#margin-mask)\"\n ></path>\n <path\n mode=\"delta\"\n fill=\"white\"\n d=\"\n m0,112\n h224\n l-36,-24\n h-152\n l-36,24z\n \"\n fill-opacity=\"0.064\"\n mask=\"url(#margin-mask)\"\n ></path>\n </g>\n </g>\n <!--MARGIN LEFT SVG-->\n <g\n class=\"hover:ax-brightness-75\"\n style=\"cursor: s-resize\"\n (click)=\"openPopUp($event, 'margin', 'left')\"\n (mousedown)=\"listenToMove($event, 'margin', 'left')\"\n >\n <g>\n <path\n mode=\"delta\"\n fill=\"var(--color-background-1)\"\n d=\"\n m0,0\n v112\n l36,-24\n v-64\n l-36,-24z\n \"\n mask=\"url(#margin-mask)\"\n ></path>\n <path\n mode=\"delta\"\n fill=\"white\"\n d=\"\n m0,0\n v112\n l36,-24\n v-64\n l-36,-24z\n \"\n fill-opacity=\"0.094\"\n mask=\"url(#margin-mask)\"\n ></path>\n </g>\n </g>\n </svg>\n\n <!--MARGIN TOP VALUE-->\n <div tabindex=\"0\" class=\"axp-spacing-value-container\" style=\"grid-area: 1 / 2 / 2 / 3\">\n <div class=\"axp-spacing-value-field\" style=\"grid-area: 1 / 2 / 2 / 3\">\n <span>{{ calculatedValues().margin.top + ' ' + units().margin.top }}</span>\n </div>\n </div>\n\n <!--MARGIN RIGHT VALUE-->\n <div tabindex=\"0\" class=\"axp-spacing-value-container\" style=\"grid-area: 2 / 3 / 3 / 4\">\n <div class=\"axp-spacing-value-field\" style=\"grid-area: 2 / 3 / 3 / 4\">\n <span>{{ calculatedValues().margin.right + ' ' + units().margin.right }}</span>\n </div>\n </div>\n\n <!--MARGIN BOTTOM VALUE-->\n <div tabindex=\"0\" class=\"axp-spacing-value-container\" style=\"grid-area: 3 / 2 / 4 / 3\">\n <div class=\"axp-spacing-value-field\" style=\"grid-area: 3 / 2 / 4 / 3\">\n <span>{{ calculatedValues().margin.bottom + ' ' + units().margin.bottom }}</span>\n </div>\n </div>\n\n <!--MARGIN LEFT VALUE-->\n <div tabindex=\"0\" style=\"grid-area: 2 / 1 / 3 / 2\" class=\"axp-spacing-value-container\">\n <div class=\"axp-spacing-value-field\" style=\"grid-area: 2 / 1 / 3 / 2\">\n <span>{{ calculatedValues().margin.left + ' ' + units().margin.left }}</span>\n </div>\n </div>\n </div>\n\n <div class=\"axp-spacing-padding-box\">\n <!--SVG DEFINE-->\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"150\" height=\"62\" class=\"area\">\n <mask id=\"padding-mask\" width=\"150\" height=\"62\">\n <rect fill=\"#000\" height=\"60\" width=\"150\" x=\"0\" y=\"0\"></rect>\n <rect fill=\"#fff\" height=\"60\" rx=\"2\" width=\"150\" x=\"0\" y=\"0\"></rect>\n <rect fill=\"#000\" height=\"14\" rx=\"2\" width=\"80\" x=\"35\" y=\"23\"></rect>\n </mask>\n\n <!--PADDING TOP SVG-->\n <g\n class=\"hover:ax-brightness-75\"\n style=\"cursor: s-resize\"\n (click)=\"openPopUp($event, 'padding', 'top')\"\n (mousedown)=\"listenToMove($event, 'padding', 'top')\"\n >\n <g>\n <path\n mode=\"delta\"\n fill=\"var(--color-background-1)\"\n d=\"\n m0,0\n h150\n l-36,24\n h-78\n l-36,-24z\n \"\n mask=\"url(#padding-mask)\"\n ></path>\n <path\n mode=\"delta\"\n fill=\"white\"\n d=\"\n m0,0\n h150\n l-36,24\n h-78\n l-36,-24z\n \"\n fill-opacity=\"0.064\"\n mask=\"url(#padding-mask)\"\n ></path>\n </g>\n </g>\n\n <!--PADDING RIGHT SVG-->\n <g\n class=\"hover:ax-brightness-75\"\n style=\"cursor: s-resize\"\n (click)=\"openPopUp($event, 'padding', 'right')\"\n (mousedown)=\"listenToMove($event, 'padding', 'right')\"\n >\n <g>\n <path\n mode=\"delta\"\n fill=\"var(--color-background-1)\"\n d=\"\n m150,0\n v60\n l-36,-24\n v-12\n l36,-24z\n \"\n mask=\"url(#padding-mask)\"\n ></path>\n <path\n mode=\"delta\"\n fill=\"white\"\n d=\"\n m150,0\n v60\n l-36,-24\n v-12\n l36,-24z\n \"\n fill-opacity=\"0.094\"\n mask=\"url(#padding-mask)\"\n ></path>\n </g>\n </g>\n\n <!--PADDING BOTTOM SVG-->\n <g\n class=\"hover:ax-brightness-75\"\n style=\"cursor: s-resize\"\n (click)=\"openPopUp($event, 'padding', 'bottom')\"\n (mousedown)=\"listenToMove($event, 'padding', 'bottom')\"\n >\n <g>\n <path\n mode=\"delta\"\n fill=\"var(--color-background-1)\"\n d=\"\n m0,60\n h150\n l-36,-24\n h-78\n l-36,24z\n \"\n mask=\"url(#padding-mask)\"\n ></path>\n <path\n mode=\"delta\"\n fill=\"white\"\n d=\"\n m0,60\n h150\n l-36,-24\n h-78\n l-36,24z\n \"\n fill-opacity=\"0.12\"\n mask=\"url(#padding-mask)\"\n ></path>\n </g>\n </g>\n\n <!--PADDING LEFT SVG-->\n <g\n class=\"hover:ax-brightness-75\"\n style=\"cursor: s-resize\"\n (click)=\"openPopUp($event, 'padding', 'left')\"\n (mousedown)=\"listenToMove($event, 'padding', 'left')\"\n >\n <g>\n <path\n mode=\"delta\"\n fill=\"var(--color-background-1)\"\n d=\"\n m0,0\n v60\n l36,-24\n v-12\n l-36,-24z\n \"\n mask=\"url(#padding-mask)\"\n ></path>\n <path\n mode=\"delta\"\n fill=\"white\"\n d=\"\n m0,0\n v60\n l36,-24\n v-12\n l-36,-24z\n \"\n fill-opacity=\"0.094\"\n mask=\"url(#padding-mask)\"\n ></path>\n </g>\n </g>\n </svg>\n\n <!--PADDING TOP SVG-->\n <div tabindex=\"0\" class=\"axp-spacing-value-container\" style=\"grid-area: 1 / 2 / 2 / 3\">\n <div class=\"axp-spacing-value-field\" style=\"grid-area: 1 / 2 / 2 / 3\">\n <span>{{ this.calculatedValues().padding.top + ' ' + units().padding.top }}</span>\n </div>\n </div>\n\n <!--PADDING RIGHT SVG-->\n <div tabindex=\"0\" class=\"axp-spacing-value-container\" style=\"grid-area: 2 / 3 / 3 / 4\">\n <div class=\"axp-spacing-value-field\" style=\"grid-area: 2 / 3 / 3 / 4\">\n <span>{{ this.calculatedValues().padding.right + ' ' + units().padding.right }}</span>\n </div>\n </div>\n\n <!--PADDING BOTTOM SVG-->\n <div tabindex=\"0\" class=\"axp-spacing-value-container\" style=\"grid-area: 3 / 2 / 4 / 3\">\n <div class=\"axp-spacing-value-field\" style=\"grid-area: 3 / 2 / 4 / 3\">\n <span>{{ this.calculatedValues().padding.bottom + ' ' + units().padding.bottom }}</span>\n </div>\n </div>\n\n <!--PADDING LEFT SVG-->\n <div tabindex=\"0\" class=\"axp-spacing-value-container\" style=\"grid-area: 2 / 1 / 3 / 2\">\n <div class=\"axp-spacing-value-field\" style=\"grid-area: 2 / 1 / 3 / 2\">\n <span>{{ this.calculatedValues().padding.left + ' ' + units().padding.left }}</span>\n </div>\n </div>\n </div>\n\n <!--PADDING TEXT-->\n <svg class=\"axp-spacing-padding-text\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\">\n <text x=\"5\" y=\"10\" fill=\"white\" font-weight=\"500\" font-size=\"7\">PADDING</text>\n </svg>\n\n <!--MARGIN TEXT-->\n <svg class=\"axp-spacing-margin-text\" xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\">\n <text x=\"5\" y=\"10\" fill=\"white\" font-weight=\"500\" font-size=\"7\">MARGIN</text>\n </svg>\n </div>\n</div>\n\n<ng-template #template let-type=\"type\" let-side=\"side\" let-value=\"value\">\n <div\n class=\"axp-spacing-popup-container\"\n (keydown.control.b)=\"setSpacing(originalValues()[this.current().type][this.current().side], type, side)\"\n >\n <div class=\"axp-spacing-popover\">\n <!--SET EMPTY-->\n <div class=\"ax-size-4 ax-cursor-pointer\" (click)=\"setSpacing(0, type, side)\">\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path opacity=\"0.4\" d=\"M14 2L14 13L10 13L10 2L14 2Z\" fill=\"currentColor\" fill-opacity=\"0.67\"></path>\n <path\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M7.99995 7L7.99995 1H8.99995L8.99995 14H7.99995L7.99995 8L3.70706 8L5.85351 10.1464L5.1464 10.8536L1.79285 7.5L5.1464 4.14645L5.85351 4.85355L3.70706 7L7.99995 7Z\"\n fill=\"currentColor\"\n ></path>\n </svg>\n </div>\n\n <div class=\"ax-flex ax-justify-center ax-h-6 ax-flex-col\">\n <input\n type=\"range\"\n name=\"range\"\n [min]=\"0\"\n [max]=\"200\"\n [value]=\"this.calculatedValues()[this.current().type][this.current().side]\"\n (input)=\"setSpacing($event, type, side)\"\n />\n </div>\n <div>\n <!--INPUT NUMBER-->\n <div style=\"--local-gap: 8px\">\n <div\n style=\"\n gap: 8px;\n height: auto;\n display: flex;\n flex-flow: column;\n -webkit-box-align: stretch;\n align-items: stretch;\n -webkit-box-pack: start;\n position: relative;\n justify-content: stretch;\n width: 100%;\n -webkit-box-flex: 1;\n flex-grow: 1;\n \"\n >\n <div style=\"display: grid; grid-template-columns: 1fr auto; transform: translate3d(0px, 0px, 0px)\">\n <div\n data-legacy-styled=\"true\"\n style=\"\n grid-area: 1 / 1 / 2 / -1;\n align-items: stretch;\n background-color: var(--color-ui-input-background);\n border-color: var(--color-border-2);\n border-radius: 4px;\n border-style: solid;\n border-width: 1px;\n display: flex;\n flex: 0 1 auto;\n height: 24px;\n position: relative;\n \"\n >\n <input\n autocomplete=\"off\"\n data-wf-text-input=\"true\"\n name=\"spacing\"\n placeholder=\"\"\n aria-label=\"Edit spacing input\"\n type=\"text\"\n aria-disabled=\"false\"\n [value]=\"value\"\n (input)=\"setSpacing($event, type, side)\"\n style=\"\n padding-right: 20px;\n background-color: transparent;\n border-color: transparent;\n border-radius: 4px;\n border-style: solid;\n border-width: 0px;\n box-sizing: border-box;\n color: var(--color-text-primary);\n cursor: auto;\n display: block;\n font-family: inherit;\n font-size: inherit;\n height: 100%;\n line-height: 1;\n outline: transparent solid 2px;\n padding: 0px 4px;\n width: 100%;\n \"\n />\n </div>\n <div\n id=\"spacing-UnitSelect\"\n data-prevent-global-event-handlers=\"true\"\n tabindex=\"-1\"\n data-legacy-styled=\"true\"\n aria-expanded=\"false\"\n aria-haspopup=\"listbox\"\n data-focus=\"false\"\n style=\"\n border-color: transparent;\n outline: 0px;\n cursor: default;\n user-select: none;\n font-size: 9px;\n font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu,\n Cantarell, 'Helvetica Neue', Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji',\n 'Segoe UI Symbol', sans-serif;\n line-height: 12px;\n letter-spacing: -0.115px;\n text-transform: none;\n color: var(--color-text-primary);\n place-self: center stretch;\n grid-area: 1 / 2 / 2 / 3;\n z-index: 1;\n min-width: 16px;\n border-radius: 1px;\n height: calc(100% - 2px);\n text-align: center;\n background: transparent;\n box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;\n border-width: 0px;\n margin: 1px;\n position: relative;\n right: 2px;\n display: grid;\n grid-template-columns: auto;\n grid-auto-flow: column;\n justify-content: unset;\n width: 100%;\n flex-grow: unset;\n padding: 0px;\n box-sizing: border-box;\n --component-icon-color: var(--color-text-secondary);\n align-items: center;\n border-style: solid;\n \"\n >\n <div\n data-legacy-styled=\"true\"\n style=\"\n justify-self: start;\n width: 100%;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n \"\n >\n PX\n <!--PX-->\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class=\"axp-spacing-template-values\">\n @for(i of FixedValues; track $index){\n <div\n (click)=\"setSpacing(i.value, type, side)\"\n class=\"hover:!ax-bg-gradient-to-b hover:!ax-from-white/20 hover:!ax-to-white/5 !ax-cursor-pointer\"\n [class]=\"i.colspan ? 'ax-col-span-' + i.colspan : ''\"\n [class]=\"i.rowspan ? 'ax-row-span-' + i.rowspan : ''\"\n tabindex=\"0\"\n style=\"\n border-bottom-color: var(--color-border-1);\n border-left-color: var(--color-border-1);\n border-right-color: var(--color-border-1);\n border-top-color: var(--color-border-1);\n outline: 0px;\n cursor: default;\n user-select: none;\n padding: 0px;\n box-sizing: border-box;\n font-family: inherit;\n font-size: inherit;\n --component-icon-color: var(--color-text-secondary);\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n height: 100%;\n border-radius: 4px;\n color: var(--color-action-secondary-text);\n background: var(--color-action-secondary-background);\n border-width: 0px;\n border-style: solid;\n box-shadow: var(--box-shadows-action-secondary);\n align-self: center;\n \"\n >\n <div class=\"ax-truncate\">\n {{ i.label }}\n <span class=\"ax-text-xs ax-text-neutral-400\"> {{ units()[this.current().type][this.current().side] }}</span>\n </div>\n </div>\n }\n </div>\n </div>\n\n <div class=\"ax-h-[1px] ax-mt-1 ax-mb-1 ax-bg-border-1 ax-pointer-events-none\"></div>\n\n <div\n [class.ax-opacity-50]=\"\n originalValues()[this.current().type][this.current().side] ===\n calculatedValues()[this.current().type][this.current().side]\n \"\n (click)=\"setSpacing(originalValues()[this.current().type][this.current().side], type, side)\"\n tabindex=\"0\"\n class=\"ax-outline-none ax-select-none ax-py-1 ax-px-2 ax-my-1 ax-min-h-6 ax-cursor-pointer hover:!ax-bg-[#404040]\"\n >\n <div class=\"ax-flex ax-flex-row ax-items-center\">\n <div class=\"ax-min-w-6 ax-self-center ax-grow ax-basis-0\">\n <div class=\"ax-items-center ax-box-border ax-grid ax-grid-cols-[16px_1fr_auto] ax-gap-x-2 ax-gap-y-1\">\n <div class=\"ax-size-4\">\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"M3.70712 5.00004L6.35357 2.35359L5.64646 1.64648L1.79291 5.50004L5.64646 9.35359L6.35357 8.64648L3.70712 6.00004H10C11.6569 6.00004 13 7.34318 13 9.00004C13 10.6569 11.6569 12 10 12H8.00001V13H10C12.2092 13 14 11.2092 14 9.00004C14 6.7909 12.2092 5.00004 10 5.00004H3.70712Z\"\n fill=\"currentColor\"\n ></path>\n </svg>\n </div>\n <div>Reset</div>\n </div>\n </div>\n <div class=\"ax-self-center\">\n <div\n class=\"ax-cursor-default ax-select-none ax-text-[11.5px] ax-font-normal ax-leading-4 ax-tracking-tight ax-text-secondary ax-justify-self-end ax-ml-[1px]\"\n >\n <span><kbd>Ctrl</kbd> + <kbd>B</kbd></span>\n </div>\n </div>\n </div>\n </div>\n </div>\n</ng-template>\n\n<ax-popover #popover [openOn]=\"'click'\" [offsetY]=\"10\" [closeOn]=\"'clickOut'\">\n <ng-container\n [ngTemplateOutlet]=\"template\"\n [ngTemplateOutletContext]=\"{\n type: this.current().type,\n side: this.current().side,\n value: this.calculatedValues()[this.current().type][this.current().side]\n }\"\n ></ng-container>\n</ax-popover>\n", styles: [".axp-spacing-box{--color-text-secondary: rgba(255, 255, 255, .67);--color-ui-scrollbar-thumb: rgba(255, 255, 255, .67);--color-background-1: #292929;--color-text-secondary: white;--color-border-2: rgba(255, 255, 255, .16);--color-changed: rgb(167, 209, 255);--color-background: rgba(0, 106, 204, .18)}.axp-spacing-box .axp-spacing-inner-box{transform:scale(1.2);position:relative;display:grid;width:224px;height:112px;grid-template-columns:36px 1px 36px 1fr 36px 1px 36px;grid-template-rows:24px 2px 24px 1fr 24px 2px 24px;outline-style:none;cursor:default;-webkit-user-select:none;-moz-user-select:-moz-none;user-select:none}.axp-spacing-box .axp-spacing-inner-box .axp-spacing-value-container{pointer-events:none;border:none;outline:0px;cursor:default;-webkit-user-select:none;-moz-user-select:-moz-none;user-select:none;display:flex;align-items:center;justify-content:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;place-self:center;padding:2px;height:auto;width:auto;font-family:inherit;font-size:inherit;position:relative;border-radius:4px;color:var(--color-text-secondary);background:transparent;box-sizing:border-box;box-shadow:none}.axp-spacing-box .axp-spacing-inner-box .axp-spacing-value-container .axp-spacing-value-field{cursor:default;-webkit-user-select:none;-moz-user-select:-moz-none;user-select:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:10px;font-weight:400;line-height:10px;letter-spacing:-.115px;display:flex;color:var(--color-text-secondary);background:transparent;padding:2px;margin:0;border-radius:2px;max-width:100%;box-sizing:content-box;place-self:center;position:relative;opacity:1;align-items:center;justify-content:center}.axp-spacing-box .axp-spacing-inner-box .axp-spacing-margin-box{border-radius:4px;grid-area:1/1/-1/-1;display:grid;grid-template-columns:36px 1fr 36px;grid-template-rows:24px minmax(8px,1fr) 24px;justify-items:center;width:224px;height:112px}.axp-spacing-box .axp-spacing-inner-box .axp-spacing-padding-box{border-radius:4px;grid-area:3/3/span 3/span 3;display:grid;grid-template-columns:36px 1fr 36px;grid-template-rows:24px minmax(8px,1fr) 24px;justify-items:center;width:150px;height:60px}.axp-spacing-box .axp-spacing-inner-box .axp-spacing-padding-text{grid-area:3/3/span 3/span 3;pointer-events:none;position:relative}.axp-spacing-box .axp-spacing-inner-box .axp-spacing-margin-text{grid-area:1/1/-1/-1;pointer-events:none;position:relative}.axp-spacing-popup-container{--color-action-secondary-text: white;--color-action-secondary-background: linear-gradient( 180deg, rgba(255, 255, 255, .13) 0%, rgba(255, 255, 255, .11) 100% );--box-shadows-action-secondary: 0px .5px 1px rgba(0, 0, 0, .8), inset 0px .5px .5px rgba(255, 255, 255, .12);--color-border-1: rgba(255, 255, 255, .13);max-width:239px;min-width:201px;background:#353535;border-radius:.5rem;color:var(--color-text-secondary, white);font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,\"Apple Color Emoji\",\"Segoe UI Emoji\",Segoe UI Symbol,sans-serif;font-size:11.5px;line-height:16px}.axp-spacing-popup-container .axp-spacing-popover{display:grid;grid-template-columns:16px 1fr 56px;grid-template-rows:24px 1fr;align-items:center;gap:8px;width:241px;padding:8px}.axp-spacing-popup-container .axp-spacing-popover .axp-spacing-template-values{display:grid;grid-area:2/1/3/-1;grid-template-columns:repeat(5,1fr);grid-template-rows:24px 24px;gap:4px}.axp-spacing-popup-container .axp-spacing-popover input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;cursor:pointer;outline:none;overflow:hidden;border-radius:12px}.axp-spacing-popup-container .axp-spacing-popover input[type=range]::-webkit-slider-runnable-track{height:10px;background:#ccc;border-radius:12px}.axp-spacing-popup-container .axp-spacing-popover input[type=range]::-moz-range-track{height:10px;background:#ccc;border-radius:12px}.axp-spacing-popup-container .axp-spacing-popover input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:10px;width:10px;background-color:#fff;border-radius:50%;border:1px solid #353535;box-shadow:-407px 0 0 400px rgba(41,41,41,.44)}.axp-spacing-popup-container .axp-spacing-popover input[type=range]::-moz-range-thumb{height:10px;width:10px;background-color:#fff;border-radius:50%;border:1px solid #353535;box-shadow:-407px 0 0 400px rgba(41,41,41,.44)}.area{grid-area:1/1/-1/-1;overflow:hidden;border-radius:2px;filter:drop-shadow(rgba(255,255,255,.2) 0px -.5px 0px) drop-shadow(rgba(0,0,0,.4) 0px 0px 1px) drop-shadow(rgba(0,0,0,.2) 0px 1px 0px)}\n"], dependencies: [{ kind: "ngmodule", type: AXNumberBoxModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "ngmodule", type: AXPopoverModule }, { kind: "component", type: i1$9.AXPopoverComponent, selector: "ax-popover", inputs: ["offsetX", "offsetY", "target", "placement", "content", "openOn", "closeOn", "hasBackdrop", "openAfter", "closeAfter", "backdropClass", "panelClass", "adaptivityEnabled"], outputs: ["onOpened", "onClosed"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXRangeSliderModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
11114
11375
  }
@@ -14700,17 +14961,49 @@ var gridWidgetDesigner_component = /*#__PURE__*/Object.freeze({
14700
14961
  class AXPGridWidgetViewComponent extends AXPLayoutWidgetComponent {
14701
14962
  constructor() {
14702
14963
  super(...arguments);
14703
- this.cols = computed(() => this.options()['cols'] ?? 1);
14704
- this.rows = computed(() => this.options()['rows'] ?? 1);
14705
- this.gap = computed(() => this.options()['gap'] ?? 0);
14964
+ this.cols = computed(() => this.calcGridRowOrColumn(this.options()['grid']?.default?.gridTemplateColumns ?? 'repeat(1, 1fr)'));
14965
+ this.rows = computed(() => this.calcGridRowOrColumn(this.options()['grid']?.default?.gridTemplateRows ?? 'repeat(1, 1fr)'));
14966
+ this.align = computed(() => this.options()['grid']?.default?.alignItems ?? 'stretch');
14967
+ this.justify = computed(() => this.options()['grid']?.default?.justifyItems ?? 'stretch');
14968
+ this.autoFlow = computed(() => this.options()['grid']?.default?.gridAutoFlow ?? 'row');
14969
+ this.gap = computed(() => this.options()['grid']?.default?.gap ?? '1px');
14970
+ }
14971
+ calcGridRowOrColumn(value) {
14972
+ return AXPPropertyEditorHelper.parseGridTemplate(value);
14973
+ }
14974
+ get __class() {
14975
+ return {
14976
+ 'ax-widget-container': true,
14977
+ 'ax-block': true,
14978
+ 'ax-w-full': true,
14979
+ };
14706
14980
  }
14707
14981
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPGridWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
14708
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.10", type: AXPGridWidgetViewComponent, isStandalone: true, selector: "axp-grid-layout-widget", usesInheritance: true, ngImport: i0, template: `
14709
- <div class="ax-grid ax-grid-cols-{{ cols() }} ax-grid-rows-{{ rows() }} ax-gap-{{ gap() }}">
14710
- @for (child of children(); track $index) {
14711
- <ng-container axp-widget-renderer [node]="child" [index]="index" [parentNode]="this" [mode]="this.mode"> </ng-container>
14982
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.10", type: AXPGridWidgetViewComponent, isStandalone: true, selector: "axp-grid-layout-widget", host: { properties: { "class": "this.__class" } }, usesInheritance: true, ngImport: i0, template: `
14983
+ <div
14984
+ class="ax-grid ax-grid-flow-{{ autoFlow() }} ax-grid-cols-{{ cols() }} ax-grid-rows-{{ rows() }} ax-items-{{
14985
+ align()
14986
+ }} ax-justify-items-{{ justify() }}"
14987
+ [style]="{ gap: gap() }"
14988
+ >
14989
+ @for (node of children(); track $index) {
14990
+ <ng-container
14991
+ axp-widget-renderer
14992
+ [node]="node"
14993
+ [index]="index"
14994
+ [parentNode]="this"
14995
+ [mode]="this.mode"
14996
+ ></ng-container>
14712
14997
  }
14713
14998
  </div>
14999
+
15000
+ <!--TO BE SURE ALL DYNAMIC TAILWIND CLASSES WORK WELL!-->
15001
+ @if (false) {
15002
+ <div class="ax-hidden">
15003
+ ax-items-start ax-items-center ax-items-end ax-items-stretch ax-justify-items-start ax-justify-items-center
15004
+ ax-justify-items-end ax-justify-items-stretch ax-grid-flow-row ax-grid-flow-col
15005
+ </div>
15006
+ }
14714
15007
  `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "directive", type: i1$3.AXPWidgetRendererDirective, selector: "[axp-widget-renderer]", inputs: ["parentNode", "index", "mode", "node"], outputs: ["onOptionsChanged", "onValueChanged"], exportAs: ["widgetRenderer"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14715
15008
  }
14716
15009
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPGridWidgetViewComponent, decorators: [{
@@ -14718,16 +15011,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
14718
15011
  args: [{
14719
15012
  selector: 'axp-grid-layout-widget',
14720
15013
  template: `
14721
- <div class="ax-grid ax-grid-cols-{{ cols() }} ax-grid-rows-{{ rows() }} ax-gap-{{ gap() }}">
14722
- @for (child of children(); track $index) {
14723
- <ng-container axp-widget-renderer [node]="child" [index]="index" [parentNode]="this" [mode]="this.mode"> </ng-container>
15014
+ <div
15015
+ class="ax-grid ax-grid-flow-{{ autoFlow() }} ax-grid-cols-{{ cols() }} ax-grid-rows-{{ rows() }} ax-items-{{
15016
+ align()
15017
+ }} ax-justify-items-{{ justify() }}"
15018
+ [style]="{ gap: gap() }"
15019
+ >
15020
+ @for (node of children(); track $index) {
15021
+ <ng-container
15022
+ axp-widget-renderer
15023
+ [node]="node"
15024
+ [index]="index"
15025
+ [parentNode]="this"
15026
+ [mode]="this.mode"
15027
+ ></ng-container>
14724
15028
  }
14725
15029
  </div>
15030
+
15031
+ <!--TO BE SURE ALL DYNAMIC TAILWIND CLASSES WORK WELL!-->
15032
+ @if (false) {
15033
+ <div class="ax-hidden">
15034
+ ax-items-start ax-items-center ax-items-end ax-items-stretch ax-justify-items-start ax-justify-items-center
15035
+ ax-justify-items-end ax-justify-items-stretch ax-grid-flow-row ax-grid-flow-col
15036
+ </div>
15037
+ }
14726
15038
  `,
14727
15039
  changeDetection: ChangeDetectionStrategy.OnPush,
14728
- imports: [CommonModule, AXPLayoutBuilderModule]
15040
+ imports: [CommonModule, AXPLayoutBuilderModule],
14729
15041
  }]
14730
- }] });
15042
+ }], propDecorators: { __class: [{
15043
+ type: HostBinding,
15044
+ args: ['class']
15045
+ }] } });
14731
15046
 
14732
15047
  var gridWidgetView_component = /*#__PURE__*/Object.freeze({
14733
15048
  __proto__: null,
@@ -15789,6 +16104,7 @@ class AXPWidgetsModule {
15789
16104
  AXPDocumentWidget,
15790
16105
  //
15791
16106
  AXPBlockWidget,
16107
+ AXPFlexWidget,
15792
16108
  AXPPageWidget,
15793
16109
  AXPRepeaterWidget,
15794
16110
  AXPTextBlockWidget,
@@ -15828,6 +16144,7 @@ class AXPWidgetsModule {
15828
16144
  //
15829
16145
  AXPSpacingWidget,
15830
16146
  AXPBorderWidget,
16147
+ AXPDirectionWidget,
15831
16148
  //
15832
16149
  AXPStringFilterWidget,
15833
16150
  AXPBooleanFilterWidget,
@@ -15863,6 +16180,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
15863
16180
  AXPDocumentWidget,
15864
16181
  //
15865
16182
  AXPBlockWidget,
16183
+ AXPFlexWidget,
15866
16184
  AXPPageWidget,
15867
16185
  AXPRepeaterWidget,
15868
16186
  AXPTextBlockWidget,
@@ -15902,6 +16220,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
15902
16220
  //
15903
16221
  AXPSpacingWidget,
15904
16222
  AXPBorderWidget,
16223
+ AXPDirectionWidget,
15905
16224
  //
15906
16225
  AXPStringFilterWidget,
15907
16226
  AXPBooleanFilterWidget,
@@ -15941,5 +16260,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
15941
16260
  * Generated bundle index. Do not edit.
15942
16261
  */
15943
16262
 
15944
- 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, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetPrintComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, 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, AXPPropertyEditorHelper, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetFilterComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent$1 as AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, 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_COL_END_PROPERTY, AXP_LAYOUT_COL_SPAN_PROPERTY, AXP_LAYOUT_COL_START_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTIES, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_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, findNonEmptyBreakpoints, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
16263
+ 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, AXPContactWidgetPrintComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetPrintComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, 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, AXPPropertyEditorHelper, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetFilterComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent$1 as AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, 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_COL_END_PROPERTY, AXP_LAYOUT_COL_SPAN_PROPERTY, AXP_LAYOUT_COL_START_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTIES, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_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, findNonEmptyBreakpoints, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
15945
16264
  //# sourceMappingURL=acorex-platform-widgets.mjs.map