@acorex/platform 20.3.0-next.6 → 20.3.0-next.8

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 (32) hide show
  1. package/core/index.d.ts +331 -2
  2. package/fesm2022/acorex-platform-core.mjs +347 -45
  3. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  4. package/fesm2022/acorex-platform-layout-builder.mjs +2 -2
  5. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  6. package/fesm2022/acorex-platform-layout-components.mjs +670 -51
  7. package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
  8. package/fesm2022/acorex-platform-layout-entity.mjs +9 -5
  9. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  10. package/fesm2022/acorex-platform-layout-views.mjs +15 -0
  11. package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
  12. package/fesm2022/{acorex-platform-themes-shared-icon-chooser-view.component-KpZWpnOJ.mjs → acorex-platform-themes-shared-icon-chooser-view.component-BgEh06Tn.mjs} +21 -11
  13. package/fesm2022/acorex-platform-themes-shared-icon-chooser-view.component-BgEh06Tn.mjs.map +1 -0
  14. package/fesm2022/{acorex-platform-themes-shared-theme-color-chooser-column.component-BvOiVCgt.mjs → acorex-platform-themes-shared-theme-color-chooser-column.component-AeOQxjbS.mjs} +20 -5
  15. package/fesm2022/acorex-platform-themes-shared-theme-color-chooser-column.component-AeOQxjbS.mjs.map +1 -0
  16. package/fesm2022/{acorex-platform-themes-shared-theme-color-chooser-view.component-BW0rfkjk.mjs → acorex-platform-themes-shared-theme-color-chooser-view.component-DEVzRd6-.mjs} +20 -5
  17. package/fesm2022/acorex-platform-themes-shared-theme-color-chooser-view.component-DEVzRd6-.mjs.map +1 -0
  18. package/fesm2022/acorex-platform-themes-shared.mjs +51 -15
  19. package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
  20. package/fesm2022/{acorex-platform-widgets-checkbox-widget-view.component-C-4bWr9G.mjs → acorex-platform-widgets-checkbox-widget-view.component-KYCQ2qTJ.mjs} +51 -35
  21. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-KYCQ2qTJ.mjs.map +1 -0
  22. package/fesm2022/acorex-platform-widgets.mjs +1089 -1657
  23. package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
  24. package/layout/builder/index.d.ts +2 -3
  25. package/layout/components/index.d.ts +286 -7
  26. package/layout/entity/index.d.ts +8 -1
  27. package/package.json +1 -1
  28. package/widgets/index.d.ts +1240 -284
  29. package/fesm2022/acorex-platform-themes-shared-icon-chooser-view.component-KpZWpnOJ.mjs.map +0 -1
  30. package/fesm2022/acorex-platform-themes-shared-theme-color-chooser-column.component-BvOiVCgt.mjs.map +0 -1
  31. package/fesm2022/acorex-platform-themes-shared-theme-color-chooser-view.component-BW0rfkjk.mjs.map +0 -1
  32. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-C-4bWr9G.mjs.map +0 -1
@@ -3,9 +3,9 @@ import { AXPWidgetPropertyGroup, AXPWidgetProperty, AXPLayoutBaseWidgetComponent
3
3
  import * as _angular_core from '@angular/core';
4
4
  import { EventEmitter, Signal, InjectionToken, OnInit, OnDestroy, WritableSignal, ElementRef, ChangeDetectorRef } from '@angular/core';
5
5
  import { AXStyleColorType, AXStyleLookType, AXClickEvent, AXDataSource, AXValueChangedEvent, AXDataSourceFilterOption, AXDirection, AXButtonClickEvent } from '@acorex/cdk/common';
6
- import * as _acorex_platform_core from '@acorex/platform/core';
7
- import { AXPExpression, AXPValidationRule, AXPStringValidationRules, AXPFileListItem, AXPExpressionEvaluatorService } from '@acorex/platform/core';
8
6
  import { AXPClipBoardService, AXPLanguage } from '@acorex/platform/common';
7
+ import * as _acorex_platform_core from '@acorex/platform/core';
8
+ import { AXPValidationRule, AXPFileListItem, AXPExpressionEvaluatorService } from '@acorex/platform/core';
9
9
  import { AXValidationService } from '@acorex/core/validation';
10
10
  import { AXTranslationService } from '@acorex/core/translation';
11
11
  import { AXNumberFormatterOptions } from '@acorex/core/format';
@@ -125,6 +125,35 @@ declare class AXPButtonWidgetViewComponent extends AXPLayoutBaseWidgetComponent
125
125
  }
126
126
 
127
127
  declare const AXPButtonWidget: AXPWidgetConfig;
128
+ interface AXPButtonWidgetDesignerOptions {
129
+ disabled?: boolean;
130
+ color?: AXStyleColorType;
131
+ look?: AXStyleLookType;
132
+ text?: string;
133
+ loading?: boolean;
134
+ icon?: string;
135
+ }
136
+ interface AXPButtonWidgetViewOptions {
137
+ disabled?: boolean;
138
+ color?: AXStyleColorType;
139
+ look?: AXStyleLookType;
140
+ text?: string;
141
+ loading?: boolean;
142
+ icon?: string;
143
+ }
144
+ interface AXPButtonWidgetEditOptions {
145
+ disabled?: boolean;
146
+ color?: AXStyleColorType;
147
+ look?: AXStyleLookType;
148
+ text?: string;
149
+ loading?: boolean;
150
+ icon?: string;
151
+ }
152
+ interface AXPButtonWidgetOptions {
153
+ designer: AXPButtonWidgetDesignerOptions;
154
+ view: AXPButtonWidgetViewOptions;
155
+ edit: AXPButtonWidgetEditOptions;
156
+ }
128
157
  declare module '@acorex/platform/layout/builder' {
129
158
  interface AXPWidgetTypesMap {
130
159
  buttonAction: 'button-action';
@@ -143,11 +172,37 @@ declare const AXPCheckBoxWidget: AXPWidgetConfig<AXPCheckBoxWidgetConfigType>;
143
172
  type AXPCheckBoxWidgetConfigType = {
144
173
  type: 'editor';
145
174
  };
146
- interface AXPCheckBoxWidgetOptions {
147
- disabled?: boolean | AXPExpression;
148
- readonly?: boolean | AXPExpression;
175
+ interface AXPCheckBoxWidgetDesignerOptions {
176
+ disabled?: boolean;
177
+ readonly?: boolean;
178
+ label?: string;
179
+ }
180
+ interface AXPCheckBoxWidgetViewOptions {
181
+ negative?: boolean;
182
+ trulyText?: string;
183
+ falsyText?: string;
184
+ nullText?: string;
185
+ disabled?: boolean;
186
+ readonly?: boolean;
187
+ label?: string;
188
+ }
189
+ interface AXPCheckBoxWidgetEditOptions {
190
+ disabled?: boolean;
191
+ readonly?: boolean;
149
192
  label?: string;
150
- needLabel?: boolean;
193
+ }
194
+ interface AXPCheckBoxWidgetColumnOptions {
195
+ negative?: boolean;
196
+ trulyText?: string;
197
+ falsyText?: string;
198
+ nullText?: string;
199
+ }
200
+ interface AXPCheckBoxWidgetOptions {
201
+ designer: AXPCheckBoxWidgetDesignerOptions;
202
+ view: AXPCheckBoxWidgetViewOptions;
203
+ edit: AXPCheckBoxWidgetEditOptions;
204
+ print: AXPCheckBoxWidgetEditOptions;
205
+ column: AXPCheckBoxWidgetColumnOptions;
151
206
  }
152
207
 
153
208
  declare class AXPContactWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
@@ -228,13 +283,44 @@ declare module '@acorex/platform/layout/builder' {
228
283
  contact: 'contact-editor';
229
284
  }
230
285
  }
231
- interface AXPContactWidgetOptions {
232
- disabled?: boolean | AXPExpression;
286
+ interface AXPContactWidgetDesignerOptions {
287
+ type?: string;
233
288
  placeholder?: string;
234
- multiple?: boolean;
289
+ labels?: {
290
+ id: string;
291
+ name: string;
292
+ }[];
293
+ icon?: string;
294
+ disabled?: boolean;
295
+ hasLabel?: boolean;
296
+ hasIcon?: boolean;
297
+ }
298
+ interface AXPContactWidgetViewOptions {
299
+ type?: string;
300
+ icon?: string;
301
+ hasLabel?: boolean;
302
+ hasIcon?: boolean;
303
+ }
304
+ interface AXPContactWidgetEditOptions {
305
+ type?: string;
306
+ placeholder?: string;
307
+ labels?: {
308
+ id: string;
309
+ name: string;
310
+ }[];
311
+ icon?: string;
312
+ disabled?: boolean;
235
313
  hasLabel?: boolean;
236
314
  hasIcon?: boolean;
237
- type?: 'link' | 'email' | 'phone';
315
+ }
316
+ interface AXPContactWidgetColumnOptions {
317
+ }
318
+ interface AXPContactWidgetOptions {
319
+ designer: AXPContactWidgetDesignerOptions;
320
+ view: AXPContactWidgetViewOptions;
321
+ edit: AXPContactWidgetEditOptions;
322
+ print: AXPContactWidgetViewOptions;
323
+ column: AXPContactWidgetColumnOptions;
238
324
  }
239
325
 
240
326
  declare class AXPDateTimeBoxWidgetViewComponent extends AXPValueWidgetComponent<string | string[]> {
@@ -296,23 +382,50 @@ declare module '@acorex/platform/layout/builder' {
296
382
  dateTime: 'date-time-editor';
297
383
  }
298
384
  }
299
-
300
- interface AXPDateTimeBoxWidgetOptions {
301
- disabled?: boolean | AXPExpression;
302
- readonly?: boolean | AXPExpression;
385
+ interface AXPDateTimeBoxWidgetDesignerOptions {
386
+ multiple?: boolean;
387
+ clearButton?: boolean;
388
+ format?: any;
389
+ disabled?: boolean;
303
390
  placeholder?: string;
391
+ }
392
+ interface AXPDateTimeBoxWidgetViewOptions {
393
+ multiple?: boolean;
394
+ format?: any;
395
+ }
396
+ interface AXPDateTimeBoxWidgetEditOptions {
397
+ multiple?: boolean;
398
+ clearButton?: boolean;
399
+ format?: any;
400
+ disabled?: boolean;
401
+ placeholder?: string;
402
+ }
403
+ interface AXPDateTimeBoxWidgetColumnOptions {
304
404
  multiple?: boolean;
305
- dateFormat?: string;
405
+ format?: any;
406
+ }
407
+ interface AXPDateTimeBoxWidgetPrintOptions {
408
+ }
409
+ interface AXPDateTimeBoxWidgetOptions {
410
+ designer: AXPDateTimeBoxWidgetDesignerOptions;
411
+ view: AXPDateTimeBoxWidgetViewOptions;
412
+ edit: AXPDateTimeBoxWidgetEditOptions;
413
+ print: AXPDateTimeBoxWidgetPrintOptions;
414
+ column: AXPDateTimeBoxWidgetColumnOptions;
306
415
  }
307
416
 
308
- declare class AXPEmailBoxWidgetViewComponent extends AXPValueWidgetComponent<any> {
309
- protected clipboard: AXPClipBoardService;
310
- protected multiple: _angular_core.Signal<boolean>;
311
- protected hasLabel: _angular_core.Signal<boolean>;
312
- protected internalValue: _angular_core.Signal<any>;
417
+ declare class AXPEmailBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
418
+ protected list: Signal<{
419
+ value: string;
420
+ label: string;
421
+ }[]>;
422
+ protected text: Signal<string>;
423
+ protected multiple: boolean;
424
+ protected hasLabel: boolean;
425
+ protected dot3(text: string): string;
313
426
  private extractItem;
314
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEmailBoxWidgetViewComponent, never>;
315
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPEmailBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
427
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEmailBoxWidgetColumnComponent, never>;
428
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPEmailBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
316
429
  }
317
430
 
318
431
  declare class AXPEmailBoxWidgetEditComponent extends AXPValueWidgetComponent<any> {
@@ -340,47 +453,62 @@ declare class AXPEmailBoxWidgetEditComponent extends AXPValueWidgetComponent<any
340
453
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPEmailBoxWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
341
454
  }
342
455
 
343
- declare class AXPEmailBoxWidgetFilterComponent extends AXPValueWidgetComponent<any> {
344
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEmailBoxWidgetFilterComponent, never>;
345
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPEmailBoxWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
346
- }
347
-
348
- declare class AXPEmailBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
349
- protected list: Signal<{
350
- value: string;
351
- label: string;
352
- }[]>;
353
- protected text: Signal<string>;
354
- protected multiple: boolean;
355
- protected hasLabel: boolean;
356
- protected dot3(text: string): string;
357
- private extractItem;
358
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEmailBoxWidgetColumnComponent, never>;
359
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPEmailBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
360
- }
361
-
362
456
  declare class AXPEmailBoxWidgetPrintComponent extends AXPValueWidgetComponent<any> {
363
457
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEmailBoxWidgetPrintComponent, never>;
364
458
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPEmailBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
365
459
  }
366
460
 
461
+ declare class AXPEmailBoxWidgetViewComponent extends AXPValueWidgetComponent<any> {
462
+ protected clipboard: AXPClipBoardService;
463
+ protected multiple: _angular_core.Signal<boolean>;
464
+ protected hasLabel: _angular_core.Signal<boolean>;
465
+ protected internalValue: _angular_core.Signal<any>;
466
+ private extractItem;
467
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEmailBoxWidgetViewComponent, never>;
468
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPEmailBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
469
+ }
470
+
367
471
  declare const AXPEmailBoxWidget: AXPWidgetConfig;
368
472
  declare module '@acorex/platform/layout/builder' {
369
473
  interface AXPWidgetTypesMap {
370
474
  email: 'email-editor';
371
475
  }
372
476
  }
373
-
374
- interface AXPEmailBoxWidgetOptions {
375
- disabled?: boolean | AXPExpression;
477
+ interface AXPEmailBoxWidgetDesignerOptions {
478
+ multiple?: boolean;
479
+ disabled?: boolean;
480
+ clearButton?: boolean;
376
481
  placeholder?: string;
482
+ hasLabel?: boolean;
483
+ lables?: string[];
484
+ }
485
+ interface AXPEmailBoxWidgetViewOptions {
377
486
  multiple?: boolean;
378
487
  hasLabel?: boolean;
379
488
  }
489
+ interface AXPEmailBoxWidgetEditOptions {
490
+ multiple?: boolean;
491
+ disabled?: boolean;
492
+ clearButton?: boolean;
493
+ placeholder?: string;
494
+ hasLabel?: boolean;
495
+ lables?: string[];
496
+ }
497
+ interface AXPEmailBoxWidgetColumnOptions {
498
+ }
499
+ interface AXPEmailBoxWidgetPrintOptions {
500
+ }
501
+ interface AXPEmailBoxWidgetOptions {
502
+ designer: AXPEmailBoxWidgetDesignerOptions;
503
+ view: AXPEmailBoxWidgetViewOptions;
504
+ edit: AXPEmailBoxWidgetEditOptions;
505
+ print: AXPEmailBoxWidgetPrintOptions;
506
+ column: AXPEmailBoxWidgetColumnOptions;
507
+ }
380
508
 
381
- declare class AXPLargeTextWidgetViewComponent extends AXPValueWidgetComponent<string> {
382
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLargeTextWidgetViewComponent, never>;
383
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLargeTextWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
509
+ declare class AXPLargeTextWidgetColumnComponent extends AXPColumnWidgetComponent<string> {
510
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLargeTextWidgetColumnComponent, never>;
511
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLargeTextWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
384
512
  }
385
513
 
386
514
  declare class AXPLargeTextWidgetEditComponent extends AXPValueWidgetComponent<string> {
@@ -404,42 +532,53 @@ declare class AXPLargeTextWidgetEditComponent extends AXPValueWidgetComponent<st
404
532
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLargeTextWidgetEditComponent, "axp-large-text-box-widget", never, { "disabled": { "alias": "disabled"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; }, {}, never, never, true, never>;
405
533
  }
406
534
 
407
- declare class AXPLargeTextWidgetFilterComponent extends AXPValueWidgetComponent<any> {
408
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLargeTextWidgetFilterComponent, never>;
409
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLargeTextWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
410
- }
411
-
412
- declare class AXPLargeTextWidgetColumnComponent extends AXPColumnWidgetComponent<string> {
413
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLargeTextWidgetColumnComponent, never>;
414
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLargeTextWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
415
- }
416
-
417
535
  declare class AXPLargeTextWidgetPrintComponent extends AXPValueWidgetComponent<any> {
418
536
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLargeTextWidgetPrintComponent, never>;
419
537
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLargeTextWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
420
538
  }
421
539
 
540
+ declare class AXPLargeTextWidgetViewComponent extends AXPValueWidgetComponent<string> {
541
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLargeTextWidgetViewComponent, never>;
542
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLargeTextWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
543
+ }
544
+
422
545
  declare const AXPLargeTextWidget: AXPWidgetConfig;
423
546
  declare module '@acorex/platform/layout/builder' {
424
547
  interface AXPWidgetTypesMap {
425
548
  largeText: 'large-text-editor';
426
549
  }
427
550
  }
428
-
429
- interface AXPLargeTextWidgetOptions {
430
- disabled?: boolean | AXPExpression;
551
+ interface AXPLargeTextWidgetDesignerOptions {
552
+ multiple?: boolean;
553
+ multiLanguage?: boolean;
554
+ disabled?: boolean;
555
+ clearButton?: boolean;
556
+ placeholder?: string;
557
+ }
558
+ interface AXPLargeTextWidgetViewOptions {
559
+ }
560
+ interface AXPLargeTextWidgetEditOptions {
561
+ multiple?: boolean;
562
+ multiLanguage?: boolean;
563
+ disabled?: boolean;
564
+ clearButton?: boolean;
431
565
  placeholder?: string;
432
566
  }
567
+ interface AXPLargeTextWidgetColumnOptions {
568
+ }
569
+ interface AXPLargeTextWidgetPrintOptions {
570
+ }
571
+ interface AXPLargeTextWidgetOptions {
572
+ designer: AXPLargeTextWidgetDesignerOptions;
573
+ view: AXPLargeTextWidgetViewOptions;
574
+ edit: AXPLargeTextWidgetEditOptions;
575
+ print: AXPLargeTextWidgetPrintOptions;
576
+ column: AXPLargeTextWidgetColumnOptions;
577
+ }
433
578
 
434
- declare class AXPLinkWidgetViewComponent extends AXPValueWidgetComponent<any> {
435
- protected clipboard: AXPClipBoardService;
436
- protected multiple: boolean;
437
- protected hasLabel: boolean;
438
- protected target: 'self' | 'blank';
439
- protected internalValue: _angular_core.Signal<any>;
440
- private extractItem;
441
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLinkWidgetViewComponent, never>;
442
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLinkWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
579
+ declare class AXPLinkWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
580
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLinkWidgetColumnComponent, never>;
581
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLinkWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
443
582
  }
444
583
 
445
584
  declare class AXPLinkWidgetEditComponent extends AXPValueWidgetComponent<any> {
@@ -472,42 +611,65 @@ declare class AXPLinkWidgetEditComponent extends AXPValueWidgetComponent<any> {
472
611
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLinkWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
473
612
  }
474
613
 
475
- declare class AXPLinkWidgetFilterComponent extends AXPValueWidgetComponent<any> {
476
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLinkWidgetFilterComponent, never>;
477
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLinkWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
478
- }
479
-
480
- declare class AXPLinkWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
481
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLinkWidgetColumnComponent, never>;
482
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLinkWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
483
- }
484
-
485
614
  declare class AXPLinkWidgetPrintComponent extends AXPValueWidgetComponent<any> {
486
615
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLinkWidgetPrintComponent, never>;
487
616
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLinkWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
488
617
  }
489
618
 
619
+ declare class AXPLinkWidgetViewComponent extends AXPValueWidgetComponent<any> {
620
+ protected clipboard: AXPClipBoardService;
621
+ protected multiple: boolean;
622
+ protected hasLabel: boolean;
623
+ protected target: 'self' | 'blank';
624
+ protected internalValue: _angular_core.Signal<any>;
625
+ private extractItem;
626
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLinkWidgetViewComponent, never>;
627
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLinkWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
628
+ }
629
+
490
630
  declare const AXPLinkWidget: AXPWidgetConfig;
491
631
  declare module '@acorex/platform/layout/builder' {
492
632
  interface AXPWidgetTypesMap {
493
633
  link: 'link-editor';
494
634
  }
495
635
  }
496
-
636
+ interface AXPLinkWidgetDesignerOptions {
637
+ multiple?: boolean;
638
+ disabled?: boolean;
639
+ clearButton?: boolean;
640
+ hasLabel?: boolean;
641
+ hasTitle?: boolean;
642
+ labelTypes?: string[];
643
+ linkTypes?: string[];
644
+ }
645
+ interface AXPLinkWidgetViewOptions {
646
+ }
647
+ interface AXPLinkWidgetEditOptions {
648
+ multiple?: boolean;
649
+ disabled?: boolean;
650
+ clearButton?: boolean;
651
+ hasLabel?: boolean;
652
+ hasTitle?: boolean;
653
+ labelTypes?: string[];
654
+ linkTypes?: string[];
655
+ }
656
+ interface AXPLinkWidgetColumnOptions {
657
+ }
658
+ interface AXPLinkWidgetPrintOptions {
659
+ }
497
660
  interface AXPLinkWidgetOptions {
498
- disabled?: boolean | AXPExpression;
499
- placeholder?: string;
500
- label?: string;
661
+ designer: AXPLinkWidgetDesignerOptions;
662
+ view: AXPLinkWidgetViewOptions;
663
+ edit: AXPLinkWidgetEditOptions;
664
+ print: AXPLinkWidgetPrintOptions;
665
+ column: AXPLinkWidgetColumnOptions;
501
666
  }
502
667
 
503
- declare class AXPNumberBoxWidgetViewComponent extends AXPValueWidgetComponent<any> {
504
- protected internalValue: _angular_core.Signal<string | string[]>;
505
- protected multiple: _angular_core.Signal<boolean>;
506
- protected format: _angular_core.Signal<AXNumberFormatterOptions>;
668
+ declare class AXPNumberBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
507
669
  private formatService;
508
- private formattedValue;
509
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPNumberBoxWidgetViewComponent, never>;
510
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPNumberBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
670
+ protected value: _angular_core.Signal<any>;
671
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPNumberBoxWidgetColumnComponent, never>;
672
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPNumberBoxWidgetColumnComponent, "axp-number-box-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
511
673
  }
512
674
 
513
675
  declare class AXPNumberBoxWidgetEditComponent extends AXPValueWidgetComponent<number | number[]> {
@@ -529,49 +691,73 @@ declare class AXPNumberBoxWidgetEditComponent extends AXPValueWidgetComponent<nu
529
691
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPNumberBoxWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
530
692
  }
531
693
 
532
- declare class AXPNumberBoxWidgetFilterComponent extends AXPValueWidgetComponent<any> {
533
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPNumberBoxWidgetFilterComponent, never>;
534
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPNumberBoxWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
535
- }
536
-
537
- declare class AXPNumberBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
538
- private formatService;
539
- protected value: _angular_core.Signal<any>;
540
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPNumberBoxWidgetColumnComponent, never>;
541
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPNumberBoxWidgetColumnComponent, "axp-number-box-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
542
- }
543
-
544
694
  declare class AXPNumberBoxWidgetPrintComponent extends AXPValueWidgetComponent<any> {
545
695
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPNumberBoxWidgetPrintComponent, never>;
546
696
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPNumberBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
547
697
  }
548
698
 
699
+ declare class AXPNumberBoxWidgetViewComponent extends AXPValueWidgetComponent<any> {
700
+ protected internalValue: _angular_core.Signal<string | string[]>;
701
+ protected multiple: _angular_core.Signal<boolean>;
702
+ protected format: _angular_core.Signal<AXNumberFormatterOptions>;
703
+ private formatService;
704
+ private formattedValue;
705
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPNumberBoxWidgetViewComponent, never>;
706
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPNumberBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
707
+ }
708
+
549
709
  declare const AXPNumberBoxWidget: AXPWidgetConfig;
550
710
  declare module '@acorex/platform/layout/builder' {
551
711
  interface AXPWidgetTypesMap {
552
712
  number: 'number-editor';
553
713
  }
554
714
  }
555
- interface AXPNumberBoxWidgetOptions {
556
- disabled?: boolean | AXPExpression;
557
- readonly?: boolean | AXPExpression;
715
+ interface AXPNumberBoxWidgetDesignerOptions {
716
+ disabled?: boolean;
717
+ multiple?: boolean;
558
718
  hasClearButton?: boolean;
719
+ spinButton?: boolean;
720
+ decimals?: number;
721
+ minValue?: number;
722
+ maxValue?: number;
723
+ seprator?: string;
559
724
  placeholder?: string;
725
+ }
726
+ interface AXPNumberBoxWidgetViewOptions {
727
+ multiple?: boolean;
728
+ format?: AXNumberFormatterOptions;
729
+ }
730
+ interface AXPNumberBoxWidgetEditOptions {
731
+ disabled?: boolean;
732
+ multiple?: boolean;
733
+ hasClearButton?: boolean;
734
+ spinButton?: boolean;
560
735
  decimals?: number;
561
736
  minValue?: number;
562
737
  maxValue?: number;
738
+ seprator?: string;
739
+ placeholder?: string;
740
+ }
741
+ interface AXPNumberBoxWidgetColumnOptions {
742
+ format?: any;
743
+ }
744
+ interface AXPNumberBoxWidgetPrintOptions {
745
+ }
746
+ interface AXPNumberBoxWidgetOptions {
747
+ designer: AXPNumberBoxWidgetDesignerOptions;
748
+ view: AXPNumberBoxWidgetViewOptions;
749
+ edit: AXPNumberBoxWidgetEditOptions;
750
+ print: AXPNumberBoxWidgetPrintOptions;
751
+ column: AXPNumberBoxWidgetColumnOptions;
563
752
  }
564
753
 
565
- declare class AXPPasswordBoxWidgetViewComponent extends AXPValueWidgetComponent<string> {
566
- protected internalValue: _angular_core.Signal<string>;
567
- protected hasCopyIcon: _angular_core.Signal<boolean>;
568
- protected hasEyeIcon: _angular_core.Signal<boolean>;
569
- protected showPassword: _angular_core.Signal<boolean>;
754
+ declare class AXPPasswordBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
755
+ protected hasEyeIcon: any;
756
+ protected showPassword: any;
570
757
  protected show: _angular_core.WritableSignal<boolean>;
571
- protected clipboard: AXPClipBoardService;
572
758
  toggleEye(): void;
573
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPasswordBoxWidgetViewComponent, never>;
574
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
759
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPasswordBoxWidgetColumnComponent, never>;
760
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
575
761
  }
576
762
 
577
763
  declare class AXPPasswordBoxWidgetEditComponent extends AXPValueWidgetComponent<string> {
@@ -582,23 +768,21 @@ declare class AXPPasswordBoxWidgetEditComponent extends AXPValueWidgetComponent<
582
768
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
583
769
  }
584
770
 
585
- declare class AXPPasswordBoxWidgetFilterComponent extends AXPValueWidgetComponent<any> {
586
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPasswordBoxWidgetFilterComponent, never>;
587
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
771
+ declare class AXPPasswordBoxWidgetPrintComponent extends AXPValueWidgetComponent<any> {
772
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPasswordBoxWidgetPrintComponent, never>;
773
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
588
774
  }
589
775
 
590
- declare class AXPPasswordBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
591
- protected hasEyeIcon: any;
592
- protected showPassword: any;
776
+ declare class AXPPasswordBoxWidgetViewComponent extends AXPValueWidgetComponent<string> {
777
+ protected internalValue: _angular_core.Signal<string>;
778
+ protected hasCopyIcon: _angular_core.Signal<boolean>;
779
+ protected hasEyeIcon: _angular_core.Signal<boolean>;
780
+ protected showPassword: _angular_core.Signal<boolean>;
593
781
  protected show: _angular_core.WritableSignal<boolean>;
782
+ protected clipboard: AXPClipBoardService;
594
783
  toggleEye(): void;
595
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPasswordBoxWidgetColumnComponent, never>;
596
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
597
- }
598
-
599
- declare class AXPPasswordBoxWidgetPrintComponent extends AXPValueWidgetComponent<any> {
600
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPasswordBoxWidgetPrintComponent, never>;
601
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
784
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPasswordBoxWidgetViewComponent, never>;
785
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
602
786
  }
603
787
 
604
788
  declare const AXPPasswordBoxWidget: AXPWidgetConfig;
@@ -607,22 +791,45 @@ declare module '@acorex/platform/layout/builder' {
607
791
  password: 'password-editor';
608
792
  }
609
793
  }
610
-
611
- interface AXPPasswordBoxWidgetOptions {
612
- disabled?: boolean | AXPExpression;
794
+ interface AXPPasswordBoxWidgetDesignerOptions {
795
+ disabled?: boolean;
613
796
  hasClearButton?: boolean;
797
+ }
798
+ interface AXPPasswordBoxWidgetViewOptions {
614
799
  hasCopyIcon?: boolean;
615
800
  hasEyeIcon?: boolean;
801
+ showPassword?: boolean;
802
+ }
803
+ interface AXPPasswordBoxWidgetEditOptions {
804
+ disabled?: boolean;
805
+ hasClearButton?: boolean;
806
+ }
807
+ interface AXPPasswordBoxWidgetColumnOptions {
808
+ hasEyeIcon?: any;
809
+ showPassword?: any;
810
+ }
811
+ interface AXPPasswordBoxWidgetPrintOptions {
812
+ }
813
+ interface AXPPasswordBoxWidgetOptions {
814
+ designer: AXPPasswordBoxWidgetDesignerOptions;
815
+ view: AXPPasswordBoxWidgetViewOptions;
816
+ edit: AXPPasswordBoxWidgetEditOptions;
817
+ print: AXPPasswordBoxWidgetPrintOptions;
818
+ column: AXPPasswordBoxWidgetColumnOptions;
616
819
  }
617
820
 
618
- declare class AXPPhoneBoxWidgetViewComponent extends AXPValueWidgetComponent<any> {
619
- protected clipboard: AXPClipBoardService;
620
- protected multiple: _angular_core.Signal<boolean>;
621
- protected hasLabel: _angular_core.Signal<boolean>;
622
- protected internalValue: _angular_core.Signal<any>;
821
+ declare class AXPPhoneBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
822
+ protected list: Signal<{
823
+ value: string;
824
+ label: string;
825
+ }[]>;
826
+ protected text: Signal<string>;
827
+ protected multiple: boolean;
828
+ protected hasLabel: boolean;
829
+ protected dot3(text: string): string;
623
830
  private extractItem;
624
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPhoneBoxWidgetViewComponent, never>;
625
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPhoneBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
831
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPhoneBoxWidgetColumnComponent, never>;
832
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPhoneBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
626
833
  }
627
834
 
628
835
  declare class AXPPhoneBoxWidgetEditComponent extends AXPValueWidgetComponent<any> {
@@ -647,47 +854,63 @@ declare class AXPPhoneBoxWidgetEditComponent extends AXPValueWidgetComponent<any
647
854
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPhoneBoxWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
648
855
  }
649
856
 
650
- declare class AXPPhoneBoxWidgetFilterComponent extends AXPValueWidgetComponent<any> {
651
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPhoneBoxWidgetFilterComponent, never>;
652
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPhoneBoxWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
653
- }
654
-
655
- declare class AXPPhoneBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
656
- protected list: Signal<{
657
- value: string;
658
- label: string;
659
- }[]>;
660
- protected text: Signal<string>;
661
- protected multiple: boolean;
662
- protected hasLabel: boolean;
663
- protected dot3(text: string): string;
664
- private extractItem;
665
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPhoneBoxWidgetColumnComponent, never>;
666
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPhoneBoxWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
667
- }
668
-
669
857
  declare class AXPPhoneBoxWidgetPrintComponent extends AXPValueWidgetComponent<any> {
670
858
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPhoneBoxWidgetPrintComponent, never>;
671
859
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPhoneBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
672
860
  }
673
861
 
862
+ declare class AXPPhoneBoxWidgetViewComponent extends AXPValueWidgetComponent<any> {
863
+ protected clipboard: AXPClipBoardService;
864
+ protected multiple: _angular_core.Signal<boolean>;
865
+ protected hasLabel: _angular_core.Signal<boolean>;
866
+ protected internalValue: _angular_core.Signal<any>;
867
+ private extractItem;
868
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPhoneBoxWidgetViewComponent, never>;
869
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPhoneBoxWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
870
+ }
871
+
674
872
  declare const AXPPhoneBoxWidget: AXPWidgetConfig;
675
873
  declare module '@acorex/platform/layout/builder' {
676
874
  interface AXPWidgetTypesMap {
677
875
  phone: 'phone-editor';
678
876
  }
679
877
  }
680
- interface AXPPhoneBoxWidgetOptions {
878
+ interface AXPPhoneBoxWidgetDesignerOptions {
879
+ multiple?: boolean;
880
+ disabled?: boolean;
881
+ clearButton?: boolean;
681
882
  hasLabel?: boolean;
883
+ phoneLabels?: string[];
884
+ }
885
+ interface AXPPhoneBoxWidgetViewOptions {
682
886
  multiple?: boolean;
887
+ hasLabel?: boolean;
888
+ }
889
+ interface AXPPhoneBoxWidgetEditOptions {
890
+ multiple?: boolean;
891
+ disabled?: boolean;
892
+ clearButton?: boolean;
893
+ hasLabel?: boolean;
894
+ phoneLabels?: string[];
895
+ }
896
+ interface AXPPhoneBoxWidgetColumnOptions {
897
+ }
898
+ interface AXPPhoneBoxWidgetPrintOptions {
899
+ }
900
+ interface AXPPhoneBoxWidgetOptions {
901
+ designer: AXPPhoneBoxWidgetDesignerOptions;
902
+ view: AXPPhoneBoxWidgetViewOptions;
903
+ edit: AXPPhoneBoxWidgetEditOptions;
904
+ print: AXPPhoneBoxWidgetPrintOptions;
905
+ column: AXPPhoneBoxWidgetColumnOptions;
683
906
  }
684
907
 
685
- declare class AXPRichTextWidgetViewComponent extends AXPValueWidgetComponent<any> {
908
+ declare class AXPRichTextWidgetColumnComponent extends AXPColumnWidgetComponent<string | null | undefined> {
686
909
  private popupService;
687
910
  private platform;
688
911
  protected openPopup(): Promise<void>;
689
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPRichTextWidgetViewComponent, never>;
690
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRichTextWidgetViewComponent, "axp-rich-text-widget", never, {}, {}, never, never, true, never>;
912
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPRichTextWidgetColumnComponent, never>;
913
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRichTextWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
691
914
  }
692
915
 
693
916
  declare class AXPRichTextWidgetEditComponent extends AXPValueWidgetComponent<any> {
@@ -714,22 +937,17 @@ declare class AXPRichTextWidgetEditComponent extends AXPValueWidgetComponent<any
714
937
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRichTextWidgetEditComponent, "axp-rich-text-widget", never, {}, {}, never, never, true, never>;
715
938
  }
716
939
 
717
- declare class AXPRichTextWidgetFilterComponent extends AXPValueWidgetComponent<any> {
718
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPRichTextWidgetFilterComponent, never>;
719
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRichTextWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
940
+ declare class AXPRichTextWidgetPrintComponent extends AXPValueWidgetComponent<any> {
941
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPRichTextWidgetPrintComponent, never>;
942
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRichTextWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
720
943
  }
721
944
 
722
- declare class AXPRichTextWidgetColumnComponent extends AXPColumnWidgetComponent<string | null | undefined> {
945
+ declare class AXPRichTextWidgetViewComponent extends AXPValueWidgetComponent<any> {
723
946
  private popupService;
724
947
  private platform;
725
948
  protected openPopup(): Promise<void>;
726
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPRichTextWidgetColumnComponent, never>;
727
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRichTextWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
728
- }
729
-
730
- declare class AXPRichTextWidgetPrintComponent extends AXPValueWidgetComponent<any> {
731
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPRichTextWidgetPrintComponent, never>;
732
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRichTextWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
949
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPRichTextWidgetViewComponent, never>;
950
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRichTextWidgetViewComponent, "axp-rich-text-widget", never, {}, {}, never, never, true, never>;
733
951
  }
734
952
 
735
953
  declare const AXPRichTextWidget: AXPWidgetConfig;
@@ -738,9 +956,34 @@ declare module '@acorex/platform/layout/builder' {
738
956
  richText: 'rich-text-editor';
739
957
  }
740
958
  }
741
- interface AXPRichTextWidgetOptions {
742
- disabled?: boolean | AXPExpression;
959
+ interface AXPRichTextWidgetDesignerOptions {
743
960
  placeholder?: string;
961
+ disabled?: boolean;
962
+ multiLanguage?: boolean;
963
+ minLineCount?: number;
964
+ maxLineCount?: number;
965
+ fitLineCount?: boolean;
966
+ }
967
+ interface AXPRichTextWidgetViewOptions {
968
+ }
969
+ interface AXPRichTextWidgetEditOptions {
970
+ placeholder?: string;
971
+ disabled?: boolean;
972
+ multiLanguage?: boolean;
973
+ minLineCount?: number;
974
+ maxLineCount?: number;
975
+ fitLineCount?: boolean;
976
+ }
977
+ interface AXPRichTextWidgetColumnOptions {
978
+ }
979
+ interface AXPRichTextWidgetPrintOptions {
980
+ }
981
+ interface AXPRichTextWidgetOptions {
982
+ designer: AXPRichTextWidgetDesignerOptions;
983
+ view: AXPRichTextWidgetViewOptions;
984
+ edit: AXPRichTextWidgetEditOptions;
985
+ print: AXPRichTextWidgetPrintOptions;
986
+ column: AXPRichTextWidgetColumnOptions;
744
987
  }
745
988
 
746
989
  declare class AXPSelectBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
@@ -816,27 +1059,55 @@ declare module '@acorex/platform/layout/builder' {
816
1059
  select: 'select-editor';
817
1060
  }
818
1061
  }
819
-
820
- interface AXPSelectBoxWidgetOptions {
821
- disabled?: boolean | AXPExpression;
1062
+ interface AXPSelectBoxWidgetDesignerOptions {
1063
+ multiple?: boolean;
1064
+ disabled?: boolean;
1065
+ readonly?: boolean;
822
1066
  placeholder?: string;
1067
+ hasClearButton?: boolean;
1068
+ allowSearch?: boolean;
1069
+ filter?: AXDataSourceFilterOption;
1070
+ expose?: any;
1071
+ }
1072
+ interface AXPSelectBoxWidgetViewOptions {
1073
+ badgeClass?: string;
1074
+ }
1075
+ interface AXPSelectBoxWidgetEditOptions {
823
1076
  multiple?: boolean;
1077
+ disabled?: boolean;
1078
+ readonly?: boolean;
1079
+ placeholder?: string;
824
1080
  hasClearButton?: boolean;
825
1081
  allowSearch?: boolean;
826
- textField?: string;
827
- valueField?: string;
828
- dataSource?: any;
1082
+ filter?: AXDataSourceFilterOption;
1083
+ expose?: any;
1084
+ }
1085
+ interface AXPSelectBoxWidgetColumnOptions {
1086
+ valueField?: any;
1087
+ textField?: any;
1088
+ badgeClass?: any;
1089
+ }
1090
+ interface AXPSelectBoxWidgetPrintOptions {
1091
+ }
1092
+ interface AXPSelectBoxWidgetOptions {
1093
+ designer: AXPSelectBoxWidgetDesignerOptions;
1094
+ view: AXPSelectBoxWidgetViewOptions;
1095
+ edit: AXPSelectBoxWidgetEditOptions;
1096
+ print: AXPSelectBoxWidgetPrintOptions;
1097
+ column: AXPSelectBoxWidgetColumnOptions;
829
1098
  }
830
1099
 
831
- declare class AXPSelectionListWidgetViewComponent extends AXPValueWidgetComponent<any> {
832
- protected items: _angular_core.Signal<any[]>;
833
- protected valueField: _angular_core.Signal<string>;
834
- protected textField: _angular_core.Signal<string>;
835
- protected imageMode: _angular_core.Signal<boolean>;
836
- protected internalValue: _angular_core.Signal<any[]>;
837
- private get __class();
838
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPSelectionListWidgetViewComponent, never>;
839
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPSelectionListWidgetViewComponent, "axp-selection-list-widget-view", never, {}, {}, never, never, true, never>;
1100
+ declare class AXPSelectionListWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
1101
+ protected valueField: string;
1102
+ protected textField: string;
1103
+ protected items: any[];
1104
+ protected multiple: boolean;
1105
+ protected imageMode: boolean;
1106
+ protected selectedItemIds: Signal<string[]>;
1107
+ protected selectedItems: Signal<any[]>;
1108
+ protected firstItem: Signal<any>;
1109
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPSelectionListWidgetColumnComponent, never>;
1110
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPSelectionListWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
840
1111
  }
841
1112
 
842
1113
  declare class AXPSelectionListWidgetDesignerComponent extends AXPDataListWidgetComponent {
@@ -868,42 +1139,64 @@ declare class AXPSelectionListWidgetEditComponent extends AXPDataListWidgetCompo
868
1139
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPSelectionListWidgetEditComponent, "axp-selection-list-widget-edit", never, {}, {}, never, never, true, never>;
869
1140
  }
870
1141
 
871
- declare class AXPSelectionListWidgetFilterComponent extends AXPValueWidgetComponent<any> {
872
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPSelectionListWidgetFilterComponent, never>;
873
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPSelectionListWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
874
- }
875
-
876
- declare class AXPSelectionListWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
877
- protected valueField: string;
878
- protected textField: string;
879
- protected items: any[];
880
- protected multiple: boolean;
881
- protected imageMode: boolean;
882
- protected selectedItemIds: Signal<string[]>;
883
- protected selectedItems: Signal<any[]>;
884
- protected firstItem: Signal<any>;
885
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPSelectionListWidgetColumnComponent, never>;
886
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPSelectionListWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
887
- }
888
-
889
1142
  declare class AXPSelectionListWidgetPrintComponent extends AXPValueWidgetComponent<any> {
890
1143
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPSelectionListWidgetPrintComponent, never>;
891
1144
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPSelectionListWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
892
1145
  }
893
1146
 
1147
+ declare class AXPSelectionListWidgetViewComponent extends AXPValueWidgetComponent<any> {
1148
+ protected items: _angular_core.Signal<any[]>;
1149
+ protected valueField: _angular_core.Signal<string>;
1150
+ protected textField: _angular_core.Signal<string>;
1151
+ protected imageMode: _angular_core.Signal<boolean>;
1152
+ protected internalValue: _angular_core.Signal<any[]>;
1153
+ private get __class();
1154
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPSelectionListWidgetViewComponent, never>;
1155
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPSelectionListWidgetViewComponent, "axp-selection-list-widget-view", never, {}, {}, never, never, true, never>;
1156
+ }
1157
+
894
1158
  declare const AXPSelectionListWidget: AXPWidgetConfig;
895
1159
  declare module '@acorex/platform/layout/builder' {
896
1160
  interface AXPWidgetTypesMap {
897
1161
  selectionList: 'selection-list-editor';
898
1162
  }
899
1163
  }
900
-
901
- interface AXPSelectionListWidgetOptions {
902
- disabled?: boolean | AXPExpression;
903
- readonly?: boolean | AXPExpression;
1164
+ interface AXPSelectionListWidgetDesignerOptions {
904
1165
  multiple?: boolean;
905
- direction?: string;
906
- dataSource?: any;
1166
+ direction?: AXDirection;
1167
+ disabled?: boolean;
1168
+ readonly?: boolean;
1169
+ }
1170
+ interface AXPSelectionListWidgetViewOptions {
1171
+ items?: any;
1172
+ valueField?: string;
1173
+ textField?: string;
1174
+ imageMode?: boolean;
1175
+ }
1176
+ interface AXPSelectionListWidgetEditOptions {
1177
+ multiple?: boolean;
1178
+ direction?: AXDirection;
1179
+ disabled?: boolean;
1180
+ readonly?: boolean;
1181
+ look?: AXSelectionListLook;
1182
+ showControl?: boolean;
1183
+ imageMode?: boolean;
1184
+ }
1185
+ interface AXPSelectionListWidgetColumnOptions {
1186
+ valueField?: any;
1187
+ textField?: any;
1188
+ items?: any;
1189
+ multiple?: any;
1190
+ imageMode?: any;
1191
+ }
1192
+ interface AXPSelectionListWidgetPrintOptions {
1193
+ }
1194
+ interface AXPSelectionListWidgetOptions {
1195
+ designer: AXPSelectionListWidgetDesignerOptions;
1196
+ view: AXPSelectionListWidgetViewOptions;
1197
+ edit: AXPSelectionListWidgetEditOptions;
1198
+ print: AXPSelectionListWidgetPrintOptions;
1199
+ column: AXPSelectionListWidgetColumnOptions;
907
1200
  }
908
1201
 
909
1202
  declare class AXPTemplateBoxWidgetColumnComponent extends AXPValueWidgetComponent<any> implements OnInit {
@@ -938,11 +1231,6 @@ declare class AXPTemplateBoxWidgetEditComponent extends AXPValueWidgetComponent<
938
1231
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTemplateBoxWidgetEditComponent, "axp-template-box-widget", never, { "disabled": { "alias": "disabled"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; }, {}, never, never, true, never>;
939
1232
  }
940
1233
 
941
- declare class AXPTemplateBoxWidgetFilterComponent extends AXPValueWidgetComponent<string> {
942
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPTemplateBoxWidgetFilterComponent, never>;
943
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTemplateBoxWidgetFilterComponent, "axp-template-box-widget-filter", never, {}, {}, never, never, true, never>;
944
- }
945
-
946
1234
  declare class AXPTemplateBoxWidgetPrintComponent extends AXPValueWidgetComponent<any> implements OnInit {
947
1235
  private translationService;
948
1236
  protected displayText: _angular_core.WritableSignal<string>;
@@ -966,17 +1254,33 @@ declare module '@acorex/platform/layout/builder' {
966
1254
  templateEditor: 'template-box-editor';
967
1255
  }
968
1256
  }
969
- interface AXPTemplateBoxWidgetOptions {
1257
+ interface AXPTemplateBoxWidgetDesignerOptions {
970
1258
  disabled?: boolean;
1259
+ clearButton?: boolean;
971
1260
  placeholder?: string;
972
- hasClearButton?: boolean;
1261
+ }
1262
+ interface AXPTemplateBoxWidgetViewOptions {
1263
+ }
1264
+ interface AXPTemplateBoxWidgetEditOptions {
1265
+ disabled?: boolean;
1266
+ clearButton?: boolean;
1267
+ placeholder?: string;
1268
+ }
1269
+ interface AXPTemplateBoxWidgetColumnOptions {
1270
+ }
1271
+ interface AXPTemplateBoxWidgetPrintOptions {
1272
+ }
1273
+ interface AXPTemplateBoxWidgetOptions {
1274
+ designer: AXPTemplateBoxWidgetDesignerOptions;
1275
+ view: AXPTemplateBoxWidgetViewOptions;
1276
+ edit: AXPTemplateBoxWidgetEditOptions;
1277
+ print: AXPTemplateBoxWidgetPrintOptions;
1278
+ column: AXPTemplateBoxWidgetColumnOptions;
973
1279
  }
974
1280
 
975
- declare class AXPTextBoxWidgetViewComponent extends AXPValueWidgetComponent<any> {
976
- protected internalValue: _angular_core.Signal<any>;
977
- protected multiple: _angular_core.Signal<boolean>;
978
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPTextBoxWidgetViewComponent, never>;
979
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTextBoxWidgetViewComponent, "axp-text-box-widget", never, {}, {}, never, never, true, never>;
1281
+ declare class AXPTextBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
1282
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPTextBoxWidgetColumnComponent, never>;
1283
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTextBoxWidgetColumnComponent, "axp-text-box-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
980
1284
  }
981
1285
 
982
1286
  declare class AXPTextBoxWidgetEditComponent extends AXPValueWidgetComponent<any> {
@@ -1004,42 +1308,61 @@ declare class AXPTextBoxWidgetEditComponent extends AXPValueWidgetComponent<any>
1004
1308
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTextBoxWidgetEditComponent, "axp-text-box-widget", never, {}, {}, never, never, true, never>;
1005
1309
  }
1006
1310
 
1007
- declare class AXPTextBoxWidgetFilterComponent extends AXPValueWidgetComponent<any> {
1008
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPTextBoxWidgetFilterComponent, never>;
1009
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTextBoxWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
1010
- }
1011
-
1012
- declare class AXPTextBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
1013
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPTextBoxWidgetColumnComponent, never>;
1014
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTextBoxWidgetColumnComponent, "axp-text-box-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
1015
- }
1016
-
1017
1311
  declare class AXPTextBoxWidgetPrintComponent extends AXPValueWidgetComponent<any> {
1018
1312
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPTextBoxWidgetPrintComponent, never>;
1019
1313
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTextBoxWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
1020
1314
  }
1021
1315
 
1316
+ declare class AXPTextBoxWidgetViewComponent extends AXPValueWidgetComponent<any> {
1317
+ protected internalValue: _angular_core.Signal<any>;
1318
+ protected multiple: _angular_core.Signal<boolean>;
1319
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPTextBoxWidgetViewComponent, never>;
1320
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPTextBoxWidgetViewComponent, "axp-text-box-widget", never, {}, {}, never, never, true, never>;
1321
+ }
1322
+
1022
1323
  declare const AXPTextBoxWidget: AXPWidgetConfig;
1023
1324
  declare module '@acorex/platform/layout/builder' {
1024
1325
  interface AXPWidgetTypesMap {
1025
1326
  text: 'text-editor';
1026
1327
  }
1027
1328
  }
1028
- interface AXPTextBoxWidgetOptions {
1029
- disabled?: boolean | AXPExpression;
1030
- readonly?: boolean | AXPExpression;
1329
+ interface AXPTextBoxWidgetDesignerOptions {
1330
+ multiple?: boolean;
1331
+ multiLanguage?: boolean;
1031
1332
  hasClearButton?: boolean;
1333
+ disabled?: boolean;
1334
+ readonly?: boolean;
1335
+ placeholder?: string;
1336
+ }
1337
+ interface AXPTextBoxWidgetViewOptions {
1338
+ multiple?: boolean;
1339
+ }
1340
+ interface AXPTextBoxWidgetEditOptions {
1341
+ multiple?: boolean;
1342
+ multiLanguage?: boolean;
1343
+ hasClearButton?: boolean;
1344
+ disabled?: boolean;
1345
+ readonly?: boolean;
1032
1346
  placeholder?: string;
1033
- validations?: AXPStringValidationRules;
1347
+ }
1348
+ interface AXPTextBoxWidgetColumnOptions {
1349
+ }
1350
+ interface AXPTextBoxWidgetPrintOptions {
1351
+ }
1352
+ interface AXPTextBoxWidgetOptions {
1353
+ designer: AXPTextBoxWidgetDesignerOptions;
1354
+ view: AXPTextBoxWidgetViewOptions;
1355
+ edit: AXPTextBoxWidgetEditOptions;
1356
+ print: AXPTextBoxWidgetPrintOptions;
1357
+ column: AXPTextBoxWidgetColumnOptions;
1034
1358
  }
1035
1359
 
1036
- declare class AXPToggleWidgetViewComponent extends AXPValueWidgetComponent<boolean | null | undefined> {
1037
- protected negative: _angular_core.Signal<boolean>;
1038
- protected falsyText: _angular_core.Signal<string>;
1039
- protected trulyText: _angular_core.Signal<string>;
1040
- protected nullText: _angular_core.Signal<string>;
1041
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPToggleWidgetViewComponent, never>;
1042
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPToggleWidgetViewComponent, "axp-switch-widget-view", never, {}, {}, never, never, true, never>;
1360
+ declare class AXPToggleWidgetColumnComponent extends AXPColumnWidgetComponent<boolean | null | undefined> {
1361
+ protected negative: boolean;
1362
+ protected trulyText: string;
1363
+ protected falsyText: string;
1364
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPToggleWidgetColumnComponent, never>;
1365
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPToggleWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
1043
1366
  }
1044
1367
 
1045
1368
  declare class AXPToggleWidgetEditComponent extends AXPValueWidgetComponent<any> {
@@ -1052,35 +1375,57 @@ declare class AXPToggleWidgetEditComponent extends AXPValueWidgetComponent<any>
1052
1375
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPToggleWidgetEditComponent, "axp-switch-widget-edit", never, {}, {}, never, never, true, never>;
1053
1376
  }
1054
1377
 
1055
- declare class AXPToggleWidgetFilterComponent extends AXPValueWidgetComponent<any> {
1056
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPToggleWidgetFilterComponent, never>;
1057
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPToggleWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
1058
- }
1059
-
1060
- declare class AXPToggleWidgetColumnComponent extends AXPColumnWidgetComponent<boolean | null | undefined> {
1061
- protected negative: boolean;
1062
- protected trulyText: string;
1063
- protected falsyText: string;
1064
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPToggleWidgetColumnComponent, never>;
1065
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPToggleWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
1066
- }
1067
-
1068
1378
  declare class AXPToggleWidgetPrintComponent extends AXPValueWidgetComponent<any> {
1069
1379
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPToggleWidgetPrintComponent, never>;
1070
1380
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPToggleWidgetPrintComponent, "axp-swith-widget-print", never, {}, {}, never, never, true, never>;
1071
1381
  }
1072
1382
 
1383
+ declare class AXPToggleWidgetViewComponent extends AXPValueWidgetComponent<boolean | null | undefined> {
1384
+ protected negative: _angular_core.Signal<boolean>;
1385
+ protected falsyText: _angular_core.Signal<string>;
1386
+ protected trulyText: _angular_core.Signal<string>;
1387
+ protected nullText: _angular_core.Signal<string>;
1388
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPToggleWidgetViewComponent, never>;
1389
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPToggleWidgetViewComponent, "axp-switch-widget-view", never, {}, {}, never, never, true, never>;
1390
+ }
1391
+
1073
1392
  declare const AXPToggleWidget: AXPWidgetConfig;
1074
1393
  declare module '@acorex/platform/layout/builder' {
1075
1394
  interface AXPWidgetTypesMap {
1076
1395
  toggle: 'toggle-editor';
1077
1396
  }
1078
1397
  }
1079
- interface AXPToggleWidgetOptions {
1398
+ interface AXPToggleWidgetDesignerOptions {
1080
1399
  disabled?: boolean;
1400
+ readonly?: boolean;
1401
+ label?: string;
1081
1402
  color?: AXStyleColorType;
1082
- falsyText?: boolean;
1083
- trueText?: boolean;
1403
+ }
1404
+ interface AXPToggleWidgetViewOptions {
1405
+ negative?: boolean;
1406
+ falsyText?: string;
1407
+ trulyText?: string;
1408
+ nullText?: string;
1409
+ }
1410
+ interface AXPToggleWidgetEditOptions {
1411
+ disabled?: boolean;
1412
+ readonly?: boolean;
1413
+ label?: string;
1414
+ color?: AXStyleColorType;
1415
+ }
1416
+ interface AXPToggleWidgetColumnOptions {
1417
+ negative?: boolean;
1418
+ trulyText?: string;
1419
+ falsyText?: string;
1420
+ }
1421
+ interface AXPToggleWidgetPrintOptions {
1422
+ }
1423
+ interface AXPToggleWidgetOptions {
1424
+ designer: AXPToggleWidgetDesignerOptions;
1425
+ view: AXPToggleWidgetViewOptions;
1426
+ edit: AXPToggleWidgetEditOptions;
1427
+ print: AXPToggleWidgetPrintOptions;
1428
+ column: AXPToggleWidgetColumnOptions;
1084
1429
  }
1085
1430
 
1086
1431
  declare class AXPAvatarWidgetViewComponent extends AXPValueWidgetComponent<any> {
@@ -1121,6 +1466,25 @@ declare class AXPAvatarWidgetDesignerComponent extends AXPValueWidgetComponent<a
1121
1466
  }
1122
1467
 
1123
1468
  declare const AXPAvatarWidget: AXPWidgetConfig;
1469
+ interface AXPAvatarWidgetDesignerOptions {
1470
+ }
1471
+ interface AXPAvatarWidgetViewOptions {
1472
+ }
1473
+ interface AXPAvatarWidgetEditOptions {
1474
+ refId?: string;
1475
+ refType?: string;
1476
+ }
1477
+ interface AXPAvatarWidgetColumnOptions {
1478
+ }
1479
+ interface AXPAvatarWidgetPrintOptions {
1480
+ }
1481
+ interface AXPAvatarWidgetOptions {
1482
+ designer: AXPAvatarWidgetDesignerOptions;
1483
+ view: AXPAvatarWidgetViewOptions;
1484
+ edit: AXPAvatarWidgetEditOptions;
1485
+ print: AXPAvatarWidgetPrintOptions;
1486
+ column: AXPAvatarWidgetColumnOptions;
1487
+ }
1124
1488
  declare module '@acorex/platform/layout/builder' {
1125
1489
  interface AXPWidgetTypesMap {
1126
1490
  avatar: 'avatar';
@@ -1204,6 +1568,43 @@ declare class AXPFileUploaderWidgetViewComponent extends AXPValueWidgetComponent
1204
1568
  }
1205
1569
 
1206
1570
  declare const AXPFileUploaderWidget: AXPWidgetConfig;
1571
+ interface AXPFileUploaderWidgetDesignerOptions {
1572
+ multiple?: boolean;
1573
+ accept?: string;
1574
+ plugins?: {
1575
+ name: string;
1576
+ options?: unknown;
1577
+ }[];
1578
+ excludePlugins?: string[];
1579
+ readonly?: boolean;
1580
+ fileEditable?: boolean;
1581
+ maxFileSize?: number;
1582
+ }
1583
+ interface AXPFileUploaderWidgetViewOptions {
1584
+ }
1585
+ interface AXPFileUploaderWidgetEditOptions {
1586
+ multiple?: boolean;
1587
+ accept?: string;
1588
+ plugins?: {
1589
+ name: string;
1590
+ options?: unknown;
1591
+ }[];
1592
+ excludePlugins?: string[];
1593
+ readonly?: boolean;
1594
+ fileEditable?: boolean;
1595
+ maxFileSize?: number;
1596
+ }
1597
+ interface AXPFileUploaderWidgetColumnOptions {
1598
+ }
1599
+ interface AXPFileUploaderWidgetPrintOptions {
1600
+ }
1601
+ interface AXPFileUploaderWidgetOptions {
1602
+ designer: AXPFileUploaderWidgetDesignerOptions;
1603
+ view: AXPFileUploaderWidgetViewOptions;
1604
+ edit: AXPFileUploaderWidgetEditOptions;
1605
+ print: AXPFileUploaderWidgetPrintOptions;
1606
+ column: AXPFileUploaderWidgetColumnOptions;
1607
+ }
1207
1608
  declare module '@acorex/platform/layout/builder' {
1208
1609
  interface AXPWidgetTypesMap {
1209
1610
  fileUploader: 'file-uploader';
@@ -1338,13 +1739,36 @@ declare class AXPGalleryWidgetViewComponent extends AXPValueWidgetComponent<any>
1338
1739
  }
1339
1740
 
1340
1741
  declare const AXPGalleryWidget: AXPWidgetConfig;
1742
+ interface AXPGalleryWidgetDesignerOptions {
1743
+ thumbnail?: boolean;
1744
+ header?: boolean;
1745
+ fileInfo?: boolean;
1746
+ fullScreenButton?: boolean;
1747
+ }
1748
+ interface AXPGalleryWidgetViewOptions {
1749
+ multiple?: boolean;
1750
+ }
1751
+ interface AXPGalleryWidgetEditOptions {
1752
+ thumbnail?: boolean;
1753
+ header?: boolean;
1754
+ fileInfo?: boolean;
1755
+ fullScreenButton?: boolean;
1756
+ }
1757
+ interface AXPGalleryWidgetPrintOptions {
1758
+ }
1759
+ interface AXPGalleryWidgetOptions {
1760
+ designer: AXPGalleryWidgetDesignerOptions;
1761
+ view: AXPGalleryWidgetViewOptions;
1762
+ edit: AXPGalleryWidgetEditOptions;
1763
+ print: AXPGalleryWidgetPrintOptions;
1764
+ }
1341
1765
  declare module '@acorex/platform/layout/builder' {
1342
1766
  interface AXPWidgetTypesMap {
1343
1767
  gallery: 'gallery';
1344
1768
  }
1345
1769
  }
1346
1770
 
1347
- interface AXPImageMarkerWidgetOptions {
1771
+ interface AXPImageMarkerWidgetComponentOptions {
1348
1772
  width?: string;
1349
1773
  image?: string | URL | Blob | ArrayBuffer;
1350
1774
  radius?: number;
@@ -1420,8 +1844,43 @@ declare class AXPImageMarkerWidgetViewComponent extends AXPValueWidgetComponent<
1420
1844
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPImageMarkerWidgetViewComponent, never>;
1421
1845
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPImageMarkerWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
1422
1846
  }
1423
-
1424
- declare const AXPImageMarkerWidget: AXPWidgetConfig;
1847
+
1848
+ declare const AXPImageMarkerWidget: AXPWidgetConfig;
1849
+ interface AXPImageMarkerWidgetViewOptions {
1850
+ width?: string;
1851
+ radius?: number;
1852
+ color?: string;
1853
+ image?: string | URL | Blob | ArrayBuffer | null | undefined;
1854
+ }
1855
+ interface AXPImageMarkerWidgetEditOptions {
1856
+ width?: string;
1857
+ radius?: number;
1858
+ color?: string;
1859
+ showGrid?: boolean;
1860
+ gridColor?: string;
1861
+ gridX?: number;
1862
+ gridY?: number;
1863
+ image?: string | URL | Blob | ArrayBuffer | null | undefined;
1864
+ }
1865
+ interface AXPImageMarkerWidgetDesignerOptions {
1866
+ width?: string;
1867
+ radius?: number;
1868
+ color?: string;
1869
+ showGrid?: boolean;
1870
+ gridColor?: string;
1871
+ gridX?: number;
1872
+ gridY?: number;
1873
+ image?: string | URL | Blob | ArrayBuffer | null | undefined;
1874
+ }
1875
+ interface AXPImageMarkerWidgetColumnOptions {
1876
+ image?: string | URL | Blob | ArrayBuffer | null | undefined;
1877
+ }
1878
+ interface AXPImageMarkerWidgetOptions {
1879
+ view: AXPImageMarkerWidgetViewOptions;
1880
+ edit: AXPImageMarkerWidgetEditOptions;
1881
+ designer: AXPImageMarkerWidgetDesignerOptions;
1882
+ column: AXPImageMarkerWidgetColumnOptions;
1883
+ }
1425
1884
  declare module '@acorex/platform/layout/builder' {
1426
1885
  interface AXPWidgetTypesMap {
1427
1886
  imageMarker: 'image-marker';
@@ -1448,7 +1907,7 @@ interface AXPListWidgetRowCommand {
1448
1907
  disabled?: boolean | string;
1449
1908
  hidden?: boolean | string;
1450
1909
  }
1451
- interface AXPListWidgetOptions {
1910
+ interface AXPListWidgetComponentOptions {
1452
1911
  dataSource: AXDataSource;
1453
1912
  columns: AXPListWidgetColumn[];
1454
1913
  primaryCommands?: AXPListWidgetRowCommand[];
@@ -1516,6 +1975,36 @@ declare class AXPListWidgetViewComponent extends AXPValueWidgetComponent<any[]>
1516
1975
  }
1517
1976
 
1518
1977
  declare const AXPListWidget: AXPWidgetConfig;
1978
+ interface AXPListWidgetViewOptions {
1979
+ dataSource?: AXDataSource;
1980
+ columns?: AXPListWidgetColumn[];
1981
+ primaryCommands?: AXPListWidgetRowCommand[];
1982
+ secondaryCommands?: AXPListWidgetRowCommand[];
1983
+ showIndex?: boolean;
1984
+ allowSelection?: boolean;
1985
+ paging?: boolean;
1986
+ showHeader?: boolean;
1987
+ showFooter?: boolean;
1988
+ fixHeader?: boolean;
1989
+ fixFooter?: boolean;
1990
+ fetchDataMode?: 'auto' | 'manual';
1991
+ minHeight?: string;
1992
+ parentField?: string;
1993
+ onRowClick?: (row: any) => void | string;
1994
+ onRowDoubleClick?: (row: any) => void | string;
1995
+ onSelectionChange?: (selectedRows: any[]) => void | string;
1996
+ onRowCommand?: (command: AXRowCommandItemClickEvent, selectedRows: any[]) => Promise<void> | string;
1997
+ loading?: {
1998
+ enabled?: boolean;
1999
+ animation?: boolean;
2000
+ };
2001
+ }
2002
+ interface AXPListWidgetEditOptions extends AXPListWidgetViewOptions {
2003
+ }
2004
+ interface AXPListWidgetOptions {
2005
+ view: AXPListWidgetViewOptions;
2006
+ edit: AXPListWidgetEditOptions;
2007
+ }
1519
2008
 
1520
2009
  declare class AXPMapBoxWidgetViewComponent extends AXPValueWidgetComponent<AXMapData | undefined> {
1521
2010
  markers: _angular_core.Signal<_acorex_components_map.AXMapMarker[]>;
@@ -1551,6 +2040,35 @@ declare class AXPMapBoxWidgetEditComponent extends AXPValueWidgetComponent<AXMap
1551
2040
  }
1552
2041
 
1553
2042
  declare const AXPMapBoxWidget: AXPWidgetConfig;
2043
+ interface AXPMapBoxWidgetViewOptions {
2044
+ height?: number;
2045
+ zoomLevel?: number;
2046
+ latitude?: number;
2047
+ longitude?: number;
2048
+ }
2049
+ interface AXPMapBoxWidgetEditOptions {
2050
+ hasDraw?: boolean;
2051
+ hasLocate?: boolean;
2052
+ maxMarker?: number;
2053
+ maxPolygon?: number;
2054
+ zoomLevel?: number;
2055
+ latitude?: number;
2056
+ longitude?: number;
2057
+ height?: number;
2058
+ fitToDraw?: boolean;
2059
+ limitDraw?: AXMapPolygon[];
2060
+ pois?: AXPoiMarker[];
2061
+ }
2062
+ interface AXPMapBoxWidgetPrintOptions extends AXPMapBoxWidgetViewOptions {
2063
+ }
2064
+ interface AXPMapBoxWidgetDesignerOptions extends AXPMapBoxWidgetEditOptions {
2065
+ }
2066
+ interface AXPMapBoxWidgetOptions {
2067
+ view: AXPMapBoxWidgetViewOptions;
2068
+ edit: AXPMapBoxWidgetEditOptions;
2069
+ print: AXPMapBoxWidgetPrintOptions;
2070
+ designer: AXPMapBoxWidgetDesignerOptions;
2071
+ }
1554
2072
  declare module '@acorex/platform/layout/builder' {
1555
2073
  interface AXPWidgetTypesMap {
1556
2074
  map: 'map';
@@ -1600,6 +2118,28 @@ declare class AXPSignatureWidgetViewComponent extends AXPValueWidgetComponent<an
1600
2118
  }
1601
2119
 
1602
2120
  declare const AXPSignatureWidget: AXPWidgetConfig;
2121
+ interface AXPSignatureWidgetViewOptions {
2122
+ placeholder?: string;
2123
+ }
2124
+ interface AXPSignatureWidgetEditOptions {
2125
+ disabled?: boolean;
2126
+ placeholder?: string;
2127
+ }
2128
+ interface AXPSignatureWidgetDesignerOptions {
2129
+ disabled?: boolean;
2130
+ placeholder?: string;
2131
+ }
2132
+ interface AXPSignatureWidgetColumnOptions {
2133
+ }
2134
+ interface AXPSignatureWidgetPrintOptions {
2135
+ }
2136
+ interface AXPSignatureWidgetOptions {
2137
+ view: AXPSignatureWidgetViewOptions;
2138
+ edit: AXPSignatureWidgetEditOptions;
2139
+ designer: AXPSignatureWidgetDesignerOptions;
2140
+ column: AXPSignatureWidgetColumnOptions;
2141
+ print: AXPSignatureWidgetPrintOptions;
2142
+ }
1603
2143
  declare module '@acorex/platform/layout/builder' {
1604
2144
  interface AXPWidgetTypesMap {
1605
2145
  signature: 'signature';
@@ -1655,7 +2195,37 @@ declare module '@acorex/platform/layout/builder' {
1655
2195
  advancedGrid: 'advanced-grid-layout';
1656
2196
  }
1657
2197
  }
2198
+ interface AXPAdvancedGridWidgetDesignerOptions {
2199
+ gridOptions?: {
2200
+ default?: {
2201
+ columns?: number;
2202
+ rows?: number;
2203
+ alignItems?: string;
2204
+ justifyItems?: string;
2205
+ gap?: string;
2206
+ };
2207
+ };
2208
+ }
2209
+ interface AXPAdvancedGridWidgetViewOptions {
2210
+ advancedGridOptions?: {
2211
+ itemsCount?: number;
2212
+ columns?: number;
2213
+ justifyItems?: 'start' | 'end' | 'center' | 'stretch';
2214
+ alignItems?: 'start' | 'end' | 'center' | 'stretch';
2215
+ };
2216
+ }
2217
+ interface AXPAdvancedGridWidgetEditOptions {
2218
+ advancedGridOptions?: {
2219
+ itemsCount?: number;
2220
+ columns?: number;
2221
+ justifyItems?: 'start' | 'end' | 'center' | 'stretch';
2222
+ alignItems?: 'start' | 'end' | 'center' | 'stretch';
2223
+ };
2224
+ }
1658
2225
  interface AXPAdvancedGridWidgetOptions {
2226
+ designer: AXPAdvancedGridWidgetDesignerOptions;
2227
+ view: AXPAdvancedGridWidgetViewOptions;
2228
+ edit: AXPAdvancedGridWidgetEditOptions;
1659
2229
  }
1660
2230
 
1661
2231
  declare class AXPAdvancedGridItemWidgetDesignerComponent extends AXPLayoutBaseWidgetComponent {
@@ -1692,7 +2262,67 @@ declare module '@acorex/platform/layout/builder' {
1692
2262
  advancedGridItem: 'advanced-grid-item-layout';
1693
2263
  }
1694
2264
  }
2265
+ interface AXPAdvancedGridItemWidgetDesignerOptions {
2266
+ colSpan?: number;
2267
+ colStart?: number;
2268
+ colEnd?: number;
2269
+ gap?: number;
2270
+ flexAlignItems?: {
2271
+ id: string;
2272
+ };
2273
+ flexJustifyContent?: {
2274
+ id: string;
2275
+ };
2276
+ flexWrap?: {
2277
+ id: string;
2278
+ };
2279
+ flexDirection?: {
2280
+ id: string;
2281
+ };
2282
+ }
2283
+ interface AXPAdvancedGridItemWidgetViewOptions {
2284
+ colSpan?: number;
2285
+ colStart?: number;
2286
+ colEnd?: number;
2287
+ gap?: number;
2288
+ flexAlignItems?: {
2289
+ id: string;
2290
+ };
2291
+ flexJustifyContent?: {
2292
+ id: string;
2293
+ };
2294
+ flexWrap?: {
2295
+ id: string;
2296
+ };
2297
+ flexDirection?: {
2298
+ id: string;
2299
+ };
2300
+ }
2301
+ interface AXPAdvancedGridItemWidgetEditOptions {
2302
+ colSpan?: number;
2303
+ colStart?: number;
2304
+ colEnd?: number;
2305
+ gap?: number;
2306
+ flexAlignItems?: {
2307
+ id: string;
2308
+ };
2309
+ flexJustifyContent?: {
2310
+ id: string;
2311
+ };
2312
+ flexWrap?: {
2313
+ id: string;
2314
+ };
2315
+ flexDirection?: {
2316
+ id: string;
2317
+ };
2318
+ }
2319
+ interface AXPAdvancedGridItemWidgetPrintOptions {
2320
+ }
1695
2321
  interface AXPAdvancedGridItemWidgetOptions {
2322
+ designer: AXPAdvancedGridItemWidgetDesignerOptions;
2323
+ view: AXPAdvancedGridItemWidgetViewOptions;
2324
+ edit: AXPAdvancedGridItemWidgetEditOptions;
2325
+ print: AXPAdvancedGridItemWidgetPrintOptions;
1696
2326
  }
1697
2327
 
1698
2328
  declare class AXPBlockWidgetDesignerComponent extends AXPBlockBaseLayoutWidgetComponent {
@@ -1713,11 +2343,76 @@ declare const AXPBlockWidget: AXPWidgetConfig<AXPBlockWidgetConfigType>;
1713
2343
  type AXPBlockWidgetConfigType = {
1714
2344
  type: 'container';
1715
2345
  };
1716
- interface AXPBlockWidgetOptions {
2346
+ interface AXPBlockWidgetDesignerOptions {
2347
+ spacing?: {
2348
+ padding?: string;
2349
+ margin?: string;
2350
+ };
2351
+ border?: {
2352
+ radius?: string;
2353
+ width?: string;
2354
+ color?: string;
2355
+ style?: string;
2356
+ };
2357
+ backgroundColor?: string;
2358
+ direction?: string;
2359
+ overflow?: string;
2360
+ overflowX?: string;
2361
+ overflowY?: string;
2362
+ width?: string;
2363
+ minWidth?: string;
2364
+ maxWidth?: string;
2365
+ height?: string;
2366
+ minHeight?: string;
2367
+ maxHeight?: string;
2368
+ }
2369
+ interface AXPBlockWidgetViewOptions {
2370
+ spacing?: {
2371
+ padding?: string;
2372
+ margin?: string;
2373
+ };
2374
+ border?: {
2375
+ radius?: string;
2376
+ width?: string;
2377
+ color?: string;
2378
+ style?: string;
2379
+ };
2380
+ backgroundColor?: string;
2381
+ direction?: string;
2382
+ overflow?: string;
2383
+ overflowX?: string;
2384
+ overflowY?: string;
2385
+ width?: string;
2386
+ minWidth?: string;
2387
+ maxWidth?: string;
2388
+ height?: string;
2389
+ minHeight?: string;
2390
+ maxHeight?: string;
2391
+ }
2392
+ interface AXPBlockWidgetEditOptions {
2393
+ spacing?: {
2394
+ padding?: string;
2395
+ margin?: string;
2396
+ };
2397
+ border?: {
2398
+ radius?: string;
2399
+ width?: string;
2400
+ color?: string;
2401
+ style?: string;
2402
+ };
1717
2403
  backgroundColor?: string;
1718
- cssClass?: string;
1719
- canInsert?: boolean;
1720
2404
  direction?: string;
2405
+ overflow?: string;
2406
+ overflowX?: string;
2407
+ overflowY?: string;
2408
+ width?: string;
2409
+ minWidth?: string;
2410
+ maxWidth?: string;
2411
+ height?: string;
2412
+ minHeight?: string;
2413
+ maxHeight?: string;
2414
+ }
2415
+ interface AXPBlockWidgetPrintOptions {
1721
2416
  spacing?: {
1722
2417
  padding?: string;
1723
2418
  margin?: string;
@@ -1728,6 +2423,23 @@ interface AXPBlockWidgetOptions {
1728
2423
  color?: string;
1729
2424
  style?: string;
1730
2425
  };
2426
+ backgroundColor?: string;
2427
+ direction?: string;
2428
+ overflow?: string;
2429
+ overflowX?: string;
2430
+ overflowY?: string;
2431
+ width?: string;
2432
+ minWidth?: string;
2433
+ maxWidth?: string;
2434
+ height?: string;
2435
+ minHeight?: string;
2436
+ maxHeight?: string;
2437
+ }
2438
+ interface AXPBlockWidgetOptions {
2439
+ designer: AXPBlockWidgetDesignerOptions;
2440
+ view: AXPBlockWidgetViewOptions;
2441
+ edit: AXPBlockWidgetEditOptions;
2442
+ print: AXPBlockWidgetPrintOptions;
1731
2443
  }
1732
2444
 
1733
2445
  declare class AXPFlexWidgetDesignerComponent extends AXPFlexBaseLayoutWidgetComponent {
@@ -1755,11 +2467,96 @@ declare module '@acorex/platform/layout/builder' {
1755
2467
  type AXPFlexWidgetConfigType = {
1756
2468
  type: 'container';
1757
2469
  };
1758
- interface AXPFlexWidgetOptions {
2470
+ interface AXPFlexWidgetDesignerOptions {
2471
+ flexDirection?: string;
2472
+ flexWrap?: string;
2473
+ justifyContent?: string;
2474
+ alignItems?: string;
2475
+ gap?: string;
2476
+ spacing?: {
2477
+ padding?: string;
2478
+ margin?: string;
2479
+ };
2480
+ border?: {
2481
+ radius?: string;
2482
+ width?: string;
2483
+ color?: string;
2484
+ style?: string;
2485
+ };
2486
+ backgroundColor?: string;
2487
+ direction?: string;
2488
+ overflow?: string;
2489
+ overflowX?: string;
2490
+ overflowY?: string;
2491
+ width?: string;
2492
+ minWidth?: string;
2493
+ maxWidth?: string;
2494
+ height?: string;
2495
+ minHeight?: string;
2496
+ maxHeight?: string;
2497
+ }
2498
+ interface AXPFlexWidgetViewOptions {
2499
+ flexDirection?: string;
2500
+ flexWrap?: string;
2501
+ justifyContent?: string;
2502
+ alignItems?: string;
2503
+ gap?: string;
2504
+ spacing?: {
2505
+ padding?: string;
2506
+ margin?: string;
2507
+ };
2508
+ border?: {
2509
+ radius?: string;
2510
+ width?: string;
2511
+ color?: string;
2512
+ style?: string;
2513
+ };
2514
+ backgroundColor?: string;
2515
+ direction?: string;
2516
+ overflow?: string;
2517
+ overflowX?: string;
2518
+ overflowY?: string;
2519
+ width?: string;
2520
+ minWidth?: string;
2521
+ maxWidth?: string;
2522
+ height?: string;
2523
+ minHeight?: string;
2524
+ maxHeight?: string;
2525
+ }
2526
+ interface AXPFlexWidgetEditOptions {
2527
+ flexDirection?: string;
2528
+ flexWrap?: string;
2529
+ justifyContent?: string;
2530
+ alignItems?: string;
2531
+ gap?: string;
2532
+ spacing?: {
2533
+ padding?: string;
2534
+ margin?: string;
2535
+ };
2536
+ border?: {
2537
+ radius?: string;
2538
+ width?: string;
2539
+ color?: string;
2540
+ style?: string;
2541
+ };
1759
2542
  backgroundColor?: string;
1760
- cssClass?: string;
1761
- canInsert?: boolean;
1762
2543
  direction?: string;
2544
+ overflow?: string;
2545
+ overflowX?: string;
2546
+ overflowY?: string;
2547
+ width?: string;
2548
+ minWidth?: string;
2549
+ maxWidth?: string;
2550
+ height?: string;
2551
+ minHeight?: string;
2552
+ maxHeight?: string;
2553
+ }
2554
+ interface AXPFlexWidgetPrintOptions {
2555
+ flexDirection?: string;
2556
+ flexWrap?: string;
2557
+ justifyContent?: string;
2558
+ alignItems?: string;
2559
+ gap?: string;
1763
2560
  spacing?: {
1764
2561
  padding?: string;
1765
2562
  margin?: string;
@@ -1770,6 +2567,23 @@ interface AXPFlexWidgetOptions {
1770
2567
  color?: string;
1771
2568
  style?: string;
1772
2569
  };
2570
+ backgroundColor?: string;
2571
+ direction?: string;
2572
+ overflow?: string;
2573
+ overflowX?: string;
2574
+ overflowY?: string;
2575
+ width?: string;
2576
+ minWidth?: string;
2577
+ maxWidth?: string;
2578
+ height?: string;
2579
+ minHeight?: string;
2580
+ maxHeight?: string;
2581
+ }
2582
+ interface AXPFlexWidgetOptions {
2583
+ designer: AXPFlexWidgetDesignerOptions;
2584
+ view: AXPFlexWidgetViewOptions;
2585
+ edit: AXPFlexWidgetEditOptions;
2586
+ print: AXPFlexWidgetPrintOptions;
1773
2587
  }
1774
2588
 
1775
2589
  declare class AXPFlexItemWidgetDesignerComponent extends AXPFlexItemBaseLayoutWidgetComponent {
@@ -1792,8 +2606,68 @@ declare module '@acorex/platform/layout/builder' {
1792
2606
  flexItem: 'flex-item-layout';
1793
2607
  }
1794
2608
  }
1795
- interface AXPFlexItemWidgetOptions {
2609
+ interface AXPFlexItemWidgetDesignerOptions {
2610
+ order?: number;
2611
+ grow?: number;
2612
+ shrink?: number;
2613
+ basis?: string;
2614
+ alignSelf?: string;
2615
+ spacing?: {
2616
+ padding?: string;
2617
+ margin?: string;
2618
+ };
2619
+ border?: {
2620
+ radius?: string;
2621
+ width?: string;
2622
+ color?: string;
2623
+ style?: string;
2624
+ };
2625
+ backgroundColor?: string;
2626
+ direction?: string;
2627
+ overflow?: string;
2628
+ overflowX?: string;
2629
+ overflowY?: string;
2630
+ width?: string;
2631
+ minWidth?: string;
2632
+ maxWidth?: string;
2633
+ height?: string;
2634
+ minHeight?: string;
2635
+ maxHeight?: string;
2636
+ }
2637
+ interface AXPFlexItemWidgetViewOptions {
2638
+ order?: number;
2639
+ grow?: number;
2640
+ shrink?: number;
2641
+ basis?: string;
2642
+ alignSelf?: string;
2643
+ spacing?: {
2644
+ padding?: string;
2645
+ margin?: string;
2646
+ };
2647
+ border?: {
2648
+ radius?: string;
2649
+ width?: string;
2650
+ color?: string;
2651
+ style?: string;
2652
+ };
2653
+ backgroundColor?: string;
1796
2654
  direction?: string;
2655
+ overflow?: string;
2656
+ overflowX?: string;
2657
+ overflowY?: string;
2658
+ width?: string;
2659
+ minWidth?: string;
2660
+ maxWidth?: string;
2661
+ height?: string;
2662
+ minHeight?: string;
2663
+ maxHeight?: string;
2664
+ }
2665
+ interface AXPFlexItemWidgetEditOptions {
2666
+ order?: number;
2667
+ grow?: number;
2668
+ shrink?: number;
2669
+ basis?: string;
2670
+ alignSelf?: string;
1797
2671
  spacing?: {
1798
2672
  padding?: string;
1799
2673
  margin?: string;
@@ -1804,13 +2678,51 @@ interface AXPFlexItemWidgetOptions {
1804
2678
  color?: string;
1805
2679
  style?: string;
1806
2680
  };
1807
- flexItem?: {
1808
- order?: number;
1809
- grow?: number;
1810
- shrink?: number;
1811
- basis?: string;
1812
- alignSelf?: 'auto' | 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch';
2681
+ backgroundColor?: string;
2682
+ direction?: string;
2683
+ overflow?: string;
2684
+ overflowX?: string;
2685
+ overflowY?: string;
2686
+ width?: string;
2687
+ minWidth?: string;
2688
+ maxWidth?: string;
2689
+ height?: string;
2690
+ minHeight?: string;
2691
+ maxHeight?: string;
2692
+ }
2693
+ interface AXPFlexItemWidgetPrintOptions {
2694
+ order?: number;
2695
+ grow?: number;
2696
+ shrink?: number;
2697
+ basis?: string;
2698
+ alignSelf?: string;
2699
+ spacing?: {
2700
+ padding?: string;
2701
+ margin?: string;
2702
+ };
2703
+ border?: {
2704
+ radius?: string;
2705
+ width?: string;
2706
+ color?: string;
2707
+ style?: string;
1813
2708
  };
2709
+ backgroundColor?: string;
2710
+ direction?: string;
2711
+ overflow?: string;
2712
+ overflowX?: string;
2713
+ overflowY?: string;
2714
+ width?: string;
2715
+ minWidth?: string;
2716
+ maxWidth?: string;
2717
+ height?: string;
2718
+ minHeight?: string;
2719
+ maxHeight?: string;
2720
+ }
2721
+ interface AXPFlexItemWidgetOptions {
2722
+ designer: AXPFlexItemWidgetDesignerOptions;
2723
+ view: AXPFlexItemWidgetViewOptions;
2724
+ edit: AXPFlexItemWidgetEditOptions;
2725
+ print: AXPFlexItemWidgetPrintOptions;
1814
2726
  }
1815
2727
 
1816
2728
  declare class AXPPageWidgetViewComponent extends AXPLayoutBaseWidgetComponent {
@@ -1829,12 +2741,41 @@ declare module '@acorex/platform/layout/builder' {
1829
2741
  pageLayout: 'page-layout';
1830
2742
  }
1831
2743
  }
1832
- interface AXPPageWidgetOptions {
2744
+ interface AXPPageWidgetDesignerOptions {
1833
2745
  backgroundColor?: string;
2746
+ theme?: {
2747
+ id: string;
2748
+ };
1834
2749
  hasHeader?: boolean;
1835
2750
  hasFooter?: boolean;
1836
- theme?: string;
1837
- fontSize?: string;
2751
+ direction?: string;
2752
+ }
2753
+ interface AXPPageWidgetViewOptions {
2754
+ backgroundColor?: string;
2755
+ theme?: {
2756
+ id: string;
2757
+ };
2758
+ direction?: string;
2759
+ }
2760
+ interface AXPPageWidgetEditOptions {
2761
+ backgroundColor?: string;
2762
+ theme?: {
2763
+ id: string;
2764
+ };
2765
+ direction?: string;
2766
+ }
2767
+ interface AXPPageWidgetPrintOptions {
2768
+ backgroundColor?: string;
2769
+ theme?: {
2770
+ id: string;
2771
+ };
2772
+ direction?: string;
2773
+ }
2774
+ interface AXPPageWidgetOptions {
2775
+ designer: AXPPageWidgetDesignerOptions;
2776
+ view: AXPPageWidgetViewOptions;
2777
+ edit: AXPPageWidgetEditOptions;
2778
+ print: AXPPageWidgetPrintOptions;
1838
2779
  }
1839
2780
 
1840
2781
  declare class AXPRepeaterWidgetViewComponent extends AXPValueWidgetComponent<any[]> {
@@ -1879,9 +2820,24 @@ declare module '@acorex/platform/layout/builder' {
1879
2820
  repeaterLayout: 'repeater-layout';
1880
2821
  }
1881
2822
  }
1882
- interface AXPRepeaterWidgetOptions {
1883
- disabled?: boolean | AXPExpression;
2823
+ interface AXPRepeaterWidgetDesignerOptions {
2824
+ disabled?: boolean;
2825
+ hasControls?: boolean;
2826
+ }
2827
+ interface AXPRepeaterWidgetViewOptions {
2828
+ }
2829
+ interface AXPRepeaterWidgetEditOptions {
2830
+ disabled?: boolean;
1884
2831
  hasControls?: boolean;
2832
+ isDraggable?: boolean;
2833
+ }
2834
+ interface AXPRepeaterWidgetPrintOptions {
2835
+ }
2836
+ interface AXPRepeaterWidgetOptions {
2837
+ designer: AXPRepeaterWidgetDesignerOptions;
2838
+ view: AXPRepeaterWidgetViewOptions;
2839
+ edit: AXPRepeaterWidgetEditOptions;
2840
+ print: AXPRepeaterWidgetPrintOptions;
1885
2841
  }
1886
2842
 
1887
2843
  interface AXPGridBoxOption {
@@ -2394,5 +3350,5 @@ declare class AXPWidgetsModule {
2394
3350
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXPWidgetsModule>;
2395
3351
  }
2396
3352
 
2397
- 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, 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 };
2398
- export type { AXPAdvancedGridItemWidgetOptions, AXPAdvancedGridWidgetOptions, AXPBlockWidgetConfigType, AXPBlockWidgetOptions, AXPCheckBoxWidgetConfigType, AXPCheckBoxWidgetOptions, AXPContactWidgetOptions, AXPDateTimeBoxWidgetOptions, AXPEmailBoxWidgetOptions, AXPFlexBoxAlignmentOption, AXPFlexBoxOption, AXPFlexItemStyles, AXPFlexItemWidgetOptions, AXPFlexWidgetConfigType, AXPFlexWidgetOptions, AXPGridBoxAlignmentOption, AXPGridBoxOption, AXPImageMarkerWidgetOptions, AXPImageMarkerWidgetPoint, AXPLargeTextWidgetOptions, AXPLinkWidgetOptions, AXPListWidgetColumn, AXPListWidgetOptions, AXPListWidgetRowCommand, AXPNumberBoxWidgetOptions, AXPPageWidgetOptions, AXPPasswordBoxWidgetOptions, AXPPhoneBoxWidgetOptions, AXPRepeaterWidgetOptions, AXPRichTextWidgetOptions, AXPSelectBoxWidgetOptions, AXPSelectionListWidgetOptions, AXPSpacingBoxDefaultValues, AXPTemplateBoxWidgetOptions, AXPTextBoxWidgetOptions, AXPToggleWidgetOptions, StrategyConfig };
3353
+ 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, 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, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPListWidget, AXPListWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, 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 };
3354
+ export type { AXPAdvancedGridItemWidgetDesignerOptions, AXPAdvancedGridItemWidgetEditOptions, AXPAdvancedGridItemWidgetOptions, AXPAdvancedGridItemWidgetPrintOptions, AXPAdvancedGridItemWidgetViewOptions, AXPAdvancedGridWidgetDesignerOptions, AXPAdvancedGridWidgetEditOptions, AXPAdvancedGridWidgetOptions, AXPAdvancedGridWidgetViewOptions, AXPAvatarWidgetColumnOptions, AXPAvatarWidgetDesignerOptions, AXPAvatarWidgetEditOptions, AXPAvatarWidgetOptions, AXPAvatarWidgetPrintOptions, AXPAvatarWidgetViewOptions, AXPBlockWidgetConfigType, AXPBlockWidgetDesignerOptions, AXPBlockWidgetEditOptions, AXPBlockWidgetOptions, AXPBlockWidgetPrintOptions, AXPBlockWidgetViewOptions, AXPButtonWidgetDesignerOptions, AXPButtonWidgetEditOptions, AXPButtonWidgetOptions, AXPButtonWidgetViewOptions, AXPCheckBoxWidgetColumnOptions, AXPCheckBoxWidgetConfigType, AXPCheckBoxWidgetDesignerOptions, AXPCheckBoxWidgetEditOptions, AXPCheckBoxWidgetOptions, AXPCheckBoxWidgetViewOptions, AXPContactWidgetColumnOptions, AXPContactWidgetDesignerOptions, AXPContactWidgetEditOptions, AXPContactWidgetOptions, AXPContactWidgetViewOptions, AXPDateTimeBoxWidgetColumnOptions, AXPDateTimeBoxWidgetDesignerOptions, AXPDateTimeBoxWidgetEditOptions, AXPDateTimeBoxWidgetOptions, AXPDateTimeBoxWidgetPrintOptions, AXPDateTimeBoxWidgetViewOptions, AXPEmailBoxWidgetColumnOptions, AXPEmailBoxWidgetDesignerOptions, AXPEmailBoxWidgetEditOptions, AXPEmailBoxWidgetOptions, AXPEmailBoxWidgetPrintOptions, AXPEmailBoxWidgetViewOptions, AXPFileUploaderWidgetColumnOptions, AXPFileUploaderWidgetDesignerOptions, AXPFileUploaderWidgetEditOptions, AXPFileUploaderWidgetOptions, AXPFileUploaderWidgetPrintOptions, AXPFileUploaderWidgetViewOptions, AXPFlexBoxAlignmentOption, AXPFlexBoxOption, AXPFlexItemStyles, AXPFlexItemWidgetDesignerOptions, AXPFlexItemWidgetEditOptions, AXPFlexItemWidgetOptions, AXPFlexItemWidgetPrintOptions, AXPFlexItemWidgetViewOptions, AXPFlexWidgetConfigType, AXPFlexWidgetDesignerOptions, AXPFlexWidgetEditOptions, AXPFlexWidgetOptions, AXPFlexWidgetPrintOptions, AXPFlexWidgetViewOptions, AXPGalleryWidgetDesignerOptions, AXPGalleryWidgetEditOptions, AXPGalleryWidgetOptions, AXPGalleryWidgetPrintOptions, AXPGalleryWidgetViewOptions, AXPGridBoxAlignmentOption, AXPGridBoxOption, AXPImageMarkerWidgetColumnOptions, AXPImageMarkerWidgetComponentOptions, AXPImageMarkerWidgetDesignerOptions, AXPImageMarkerWidgetEditOptions, AXPImageMarkerWidgetOptions, AXPImageMarkerWidgetPoint, AXPImageMarkerWidgetViewOptions, AXPLargeTextWidgetColumnOptions, AXPLargeTextWidgetDesignerOptions, AXPLargeTextWidgetEditOptions, AXPLargeTextWidgetOptions, AXPLargeTextWidgetPrintOptions, AXPLargeTextWidgetViewOptions, AXPLinkWidgetColumnOptions, AXPLinkWidgetDesignerOptions, AXPLinkWidgetEditOptions, AXPLinkWidgetOptions, AXPLinkWidgetPrintOptions, AXPLinkWidgetViewOptions, AXPListWidgetColumn, AXPListWidgetComponentOptions, AXPListWidgetEditOptions, AXPListWidgetOptions, AXPListWidgetRowCommand, AXPListWidgetViewOptions, AXPMapBoxWidgetDesignerOptions, AXPMapBoxWidgetEditOptions, AXPMapBoxWidgetOptions, AXPMapBoxWidgetPrintOptions, AXPMapBoxWidgetViewOptions, AXPNumberBoxWidgetColumnOptions, AXPNumberBoxWidgetDesignerOptions, AXPNumberBoxWidgetEditOptions, AXPNumberBoxWidgetOptions, AXPNumberBoxWidgetPrintOptions, AXPNumberBoxWidgetViewOptions, AXPPageWidgetDesignerOptions, AXPPageWidgetEditOptions, AXPPageWidgetOptions, AXPPageWidgetPrintOptions, AXPPageWidgetViewOptions, AXPPasswordBoxWidgetColumnOptions, AXPPasswordBoxWidgetDesignerOptions, AXPPasswordBoxWidgetEditOptions, AXPPasswordBoxWidgetOptions, AXPPasswordBoxWidgetPrintOptions, AXPPasswordBoxWidgetViewOptions, AXPPhoneBoxWidgetColumnOptions, AXPPhoneBoxWidgetDesignerOptions, AXPPhoneBoxWidgetEditOptions, AXPPhoneBoxWidgetOptions, AXPPhoneBoxWidgetPrintOptions, AXPPhoneBoxWidgetViewOptions, AXPRepeaterWidgetDesignerOptions, AXPRepeaterWidgetEditOptions, AXPRepeaterWidgetOptions, AXPRepeaterWidgetPrintOptions, AXPRepeaterWidgetViewOptions, AXPRichTextWidgetColumnOptions, AXPRichTextWidgetDesignerOptions, AXPRichTextWidgetEditOptions, AXPRichTextWidgetOptions, AXPRichTextWidgetPrintOptions, AXPRichTextWidgetViewOptions, AXPSelectBoxWidgetColumnOptions, AXPSelectBoxWidgetDesignerOptions, AXPSelectBoxWidgetEditOptions, AXPSelectBoxWidgetOptions, AXPSelectBoxWidgetPrintOptions, AXPSelectBoxWidgetViewOptions, AXPSelectionListWidgetColumnOptions, AXPSelectionListWidgetDesignerOptions, AXPSelectionListWidgetEditOptions, AXPSelectionListWidgetOptions, AXPSelectionListWidgetPrintOptions, AXPSelectionListWidgetViewOptions, AXPSignatureWidgetColumnOptions, AXPSignatureWidgetDesignerOptions, AXPSignatureWidgetEditOptions, AXPSignatureWidgetOptions, AXPSignatureWidgetPrintOptions, AXPSignatureWidgetViewOptions, AXPSpacingBoxDefaultValues, AXPTemplateBoxWidgetColumnOptions, AXPTemplateBoxWidgetDesignerOptions, AXPTemplateBoxWidgetEditOptions, AXPTemplateBoxWidgetOptions, AXPTemplateBoxWidgetPrintOptions, AXPTemplateBoxWidgetViewOptions, AXPTextBoxWidgetColumnOptions, AXPTextBoxWidgetDesignerOptions, AXPTextBoxWidgetEditOptions, AXPTextBoxWidgetOptions, AXPTextBoxWidgetPrintOptions, AXPTextBoxWidgetViewOptions, AXPToggleWidgetColumnOptions, AXPToggleWidgetDesignerOptions, AXPToggleWidgetEditOptions, AXPToggleWidgetOptions, AXPToggleWidgetPrintOptions, AXPToggleWidgetViewOptions, StrategyConfig };