@acorex/platform 20.6.0-next.10 → 20.6.0-next.11
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.
- package/common/index.d.ts +3 -0
- package/core/index.d.ts +102 -32
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +44 -22
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-domain.mjs +49 -4
- package/fesm2022/acorex-platform-domain.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +873 -140
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +2 -2
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/{acorex-platform-layout-entity-create-entity.command-DGeylNSY.mjs → acorex-platform-layout-entity-create-entity.command-Bui87lV1.mjs} +37 -6
- package/fesm2022/acorex-platform-layout-entity-create-entity.command-Bui87lV1.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-entity.mjs +528 -118
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +7 -7
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +2 -8
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +761 -336
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-runtime.mjs +79 -3
- package/fesm2022/acorex-platform-runtime.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-CD7rJIMh.mjs → acorex-platform-themes-default-entity-master-list-view.component-xq3eQ6t2.mjs} +3 -3
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-xq3eQ6t2.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +112 -11
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared-icon-chooser-column.component-C0EpfU2k.mjs +55 -0
- package/fesm2022/acorex-platform-themes-shared-icon-chooser-column.component-C0EpfU2k.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-shared.mjs +3 -3
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +277 -38
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/layout/components/index.d.ts +248 -11
- package/layout/entity/index.d.ts +57 -9
- package/layout/widget-core/index.d.ts +4 -5
- package/layout/widgets/index.d.ts +57 -23
- package/package.json +1 -1
- package/runtime/index.d.ts +36 -8
- package/themes/default/index.d.ts +25 -2
- package/workflow/index.d.ts +38 -37
- package/fesm2022/acorex-platform-layout-entity-create-entity.command-DGeylNSY.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-CD7rJIMh.mjs.map +0 -1
|
@@ -7,7 +7,7 @@ import { AXPClipBoardService, AXPLanguage } from '@acorex/platform/common';
|
|
|
7
7
|
import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
|
|
8
8
|
import { AXPDragDropListItem } from '@acorex/platform/layout/components';
|
|
9
9
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
10
|
-
import { AXPValidationRule, AXPTag, AXPFileListItem, AXPExpressionEvaluatorService, AXPStatusDefinition, AXPStatusTransition, AXPActionMenuItem } from '@acorex/platform/core';
|
|
10
|
+
import { AXPValidationRule, AXPTag, AXPFileListItem, AXPExpressionEvaluatorService, AXPExecuteCommandResult, AXPStatusDefinition, AXPStatusTransition, AXPActionMenuItem } from '@acorex/platform/core';
|
|
11
11
|
import { AXValidationService } from '@acorex/core/validation';
|
|
12
12
|
import { ImageToolConfig, EditorJsTool } from '@acorex/components/editor';
|
|
13
13
|
import { AXNumberFormatterOptions } from '@acorex/core/format';
|
|
@@ -199,10 +199,18 @@ declare module '@acorex/platform/layout/widget-core' {
|
|
|
199
199
|
}
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
+
interface AXPStatusVisual {
|
|
203
|
+
chipClass?: string;
|
|
204
|
+
chipStyle?: Record<string, string>;
|
|
205
|
+
iconClass?: string;
|
|
206
|
+
iconStyle?: Record<string, string>;
|
|
207
|
+
}
|
|
208
|
+
|
|
202
209
|
declare class AXPCheckBoxWidgetColumnComponent extends AXPColumnWidgetComponent<boolean | null | undefined> {
|
|
203
210
|
protected negative: boolean;
|
|
204
211
|
protected trulyText: string;
|
|
205
212
|
protected falsyText: string;
|
|
213
|
+
protected getVisual(isTrue: boolean): AXPStatusVisual;
|
|
206
214
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPCheckBoxWidgetColumnComponent, never>;
|
|
207
215
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPCheckBoxWidgetColumnComponent, "axp-checkbox-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
208
216
|
}
|
|
@@ -226,12 +234,14 @@ declare class AXPCheckBoxWidgetEditComponent extends AXPValueWidgetComponent<boo
|
|
|
226
234
|
|
|
227
235
|
declare class AXPCheckBoxWidgetViewComponent extends AXPValueWidgetComponent<boolean | null | undefined> {
|
|
228
236
|
protected negative: _angular_core.Signal<boolean>;
|
|
229
|
-
protected trulyText: _angular_core.Signal<
|
|
230
|
-
protected falsyText: _angular_core.Signal<
|
|
237
|
+
protected trulyText: _angular_core.Signal<string>;
|
|
238
|
+
protected falsyText: _angular_core.Signal<string>;
|
|
231
239
|
protected nullText: _angular_core.Signal<string>;
|
|
232
240
|
protected disabled: _angular_core.Signal<boolean>;
|
|
233
241
|
protected readonly: _angular_core.Signal<boolean>;
|
|
234
242
|
protected label: _angular_core.Signal<string>;
|
|
243
|
+
protected trueVisual: _angular_core.Signal<AXPStatusVisual>;
|
|
244
|
+
protected falseVisual: _angular_core.Signal<AXPStatusVisual>;
|
|
235
245
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPCheckBoxWidgetViewComponent, never>;
|
|
236
246
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPCheckBoxWidgetViewComponent, "axp-checkbox-widget-view", never, {}, {}, never, never, true, never>;
|
|
237
247
|
}
|
|
@@ -354,7 +364,7 @@ declare class AXPColorPaletteWidgetDesignerComponent extends AXPValueWidgetCompo
|
|
|
354
364
|
*/
|
|
355
365
|
private loadPaletteEffect;
|
|
356
366
|
ngOnInit(): Promise<void>;
|
|
357
|
-
protected handleColorSelect(color: string): void;
|
|
367
|
+
protected handleColorSelect(color: string | null | undefined): void;
|
|
358
368
|
/**
|
|
359
369
|
* Load the default material-design palette
|
|
360
370
|
*/
|
|
@@ -374,7 +384,7 @@ declare class AXPColorPaletteWidgetEditComponent extends AXPValueWidgetComponent
|
|
|
374
384
|
*/
|
|
375
385
|
private loadPaletteEffect;
|
|
376
386
|
ngOnInit(): Promise<void>;
|
|
377
|
-
protected handleColorSelect(color: string): void;
|
|
387
|
+
protected handleColorSelect(color: string | null | undefined): void;
|
|
378
388
|
/**
|
|
379
389
|
* Load the default material-design palette
|
|
380
390
|
*/
|
|
@@ -1094,6 +1104,7 @@ declare class AXPSelectBoxWidgetColumnComponent extends AXPColumnWidgetComponent
|
|
|
1094
1104
|
protected valueField: string;
|
|
1095
1105
|
protected textField: string;
|
|
1096
1106
|
protected badgeClass: string;
|
|
1107
|
+
protected dataSource: any[];
|
|
1097
1108
|
protected internalValue: _angular_core.Signal<any[]>;
|
|
1098
1109
|
private extractItem;
|
|
1099
1110
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPSelectBoxWidgetColumnComponent, never>;
|
|
@@ -1159,7 +1170,6 @@ declare class AXPSelectBoxWidgetEditComponent extends AXPDataListWidgetComponent
|
|
|
1159
1170
|
}
|
|
1160
1171
|
|
|
1161
1172
|
declare class AXPSelectBoxWidgetViewComponent extends AXPDataListWidgetComponent {
|
|
1162
|
-
protected badgeClass: _angular_core.Signal<string>;
|
|
1163
1173
|
private get __class();
|
|
1164
1174
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPSelectBoxWidgetViewComponent, never>;
|
|
1165
1175
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPSelectBoxWidgetViewComponent, "axp-select-box-widget-view", never, {}, {}, never, never, true, never>;
|
|
@@ -1532,6 +1542,7 @@ declare class AXPToggleWidgetColumnComponent extends AXPColumnWidgetComponent<bo
|
|
|
1532
1542
|
protected negative: boolean;
|
|
1533
1543
|
protected trulyText: string;
|
|
1534
1544
|
protected falsyText: string;
|
|
1545
|
+
protected getVisual(isTrue: boolean): AXPStatusVisual;
|
|
1535
1546
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPToggleWidgetColumnComponent, never>;
|
|
1536
1547
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPToggleWidgetColumnComponent, "axp-toggle-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
1537
1548
|
}
|
|
@@ -1551,6 +1562,8 @@ declare class AXPToggleWidgetViewComponent extends AXPValueWidgetComponent<boole
|
|
|
1551
1562
|
protected falsyText: _angular_core.Signal<string>;
|
|
1552
1563
|
protected trulyText: _angular_core.Signal<string>;
|
|
1553
1564
|
protected nullText: _angular_core.Signal<string>;
|
|
1565
|
+
protected trueVisual: _angular_core.Signal<AXPStatusVisual>;
|
|
1566
|
+
protected falseVisual: _angular_core.Signal<AXPStatusVisual>;
|
|
1554
1567
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPToggleWidgetViewComponent, never>;
|
|
1555
1568
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPToggleWidgetViewComponent, "axp-toggle-widget-view", never, {}, {}, never, never, true, never>;
|
|
1556
1569
|
}
|
|
@@ -1841,7 +1854,7 @@ declare class AXPEditFileUploaderCommand implements AXPCommand<{
|
|
|
1841
1854
|
options?: unknown;
|
|
1842
1855
|
}[];
|
|
1843
1856
|
excludePlugins?: string[];
|
|
1844
|
-
}): Promise<AXPFileListItem
|
|
1857
|
+
}): Promise<AXPExecuteCommandResult<AXPFileListItem>>;
|
|
1845
1858
|
private showEditDialog;
|
|
1846
1859
|
/**
|
|
1847
1860
|
* Build form fields from hook items (old format parameters)
|
|
@@ -2444,11 +2457,20 @@ declare module '@acorex/platform/layout/widget-core' {
|
|
|
2444
2457
|
}
|
|
2445
2458
|
|
|
2446
2459
|
declare class AXPStatusWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
|
|
2460
|
+
private readonly statusService;
|
|
2461
|
+
private readonly rawValueSignal;
|
|
2462
|
+
set rawValueInput(value: any);
|
|
2463
|
+
private readonly resolvedStatuses;
|
|
2464
|
+
protected statusItem: _angular_core.Signal<AXPStatusDefinition | null>;
|
|
2465
|
+
protected getStatusVisual(status: AXPStatusDefinition | null): AXPStatusVisual;
|
|
2447
2466
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPStatusWidgetColumnComponent, never>;
|
|
2448
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPStatusWidgetColumnComponent, "axp-status-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
2467
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPStatusWidgetColumnComponent, "axp-status-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; "rawValueInput": { "alias": "rawValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
2449
2468
|
}
|
|
2450
2469
|
|
|
2451
2470
|
declare class AXPStatusWidgetEditComponent extends AXPValueWidgetComponent<any | null> {
|
|
2471
|
+
private readonly statusService;
|
|
2472
|
+
protected definitionKey: _angular_core.Signal<string | null>;
|
|
2473
|
+
protected provider: _angular_core.Signal<_acorex_platform_core.AXPStatusProvider | undefined>;
|
|
2452
2474
|
protected statuses: _angular_core.Signal<AXPStatusDefinition[]>;
|
|
2453
2475
|
protected transitions: _angular_core.Signal<AXPStatusTransition[]>;
|
|
2454
2476
|
protected entityPath: _angular_core.WritableSignal<string | null>;
|
|
@@ -2456,18 +2478,21 @@ declare class AXPStatusWidgetEditComponent extends AXPValueWidgetComponent<any |
|
|
|
2456
2478
|
protected currentValue: _angular_core.Signal<AXPStatusDefinition | null>;
|
|
2457
2479
|
private trackEntityPath;
|
|
2458
2480
|
private setInitialValue;
|
|
2481
|
+
private normalizeValue;
|
|
2459
2482
|
protected statusItems: _angular_core.Signal<AXPStatusDefinition[]>;
|
|
2460
2483
|
protected handleValueChange(e: AXValueChangedEvent<any | null>): void;
|
|
2484
|
+
protected getStatusVisual(status: AXPStatusDefinition | null): AXPStatusVisual;
|
|
2461
2485
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPStatusWidgetEditComponent, never>;
|
|
2462
2486
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPStatusWidgetEditComponent, "axp-status-widget-edit", never, {}, {}, never, never, true, never>;
|
|
2463
2487
|
}
|
|
2464
2488
|
|
|
2465
2489
|
declare class AXPStatusWidgetViewComponent extends AXPDataListWidgetComponent {
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2490
|
+
private readonly statusService;
|
|
2491
|
+
protected definitionKey: _angular_core.Signal<string | null>;
|
|
2492
|
+
private provider;
|
|
2493
|
+
private resolvedStatuses;
|
|
2494
|
+
private synchronizeOptions;
|
|
2495
|
+
protected getStatusVisual(status: AXPStatusDefinition | null): AXPStatusVisual;
|
|
2471
2496
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPStatusWidgetViewComponent, never>;
|
|
2472
2497
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPStatusWidgetViewComponent, "axp-status-widget-view", never, {}, {}, never, never, true, never>;
|
|
2473
2498
|
}
|
|
@@ -2482,8 +2507,7 @@ interface AXPStatusWidgetDesignerOptions {
|
|
|
2482
2507
|
disabled?: boolean;
|
|
2483
2508
|
readonly?: boolean;
|
|
2484
2509
|
placeholder?: string;
|
|
2485
|
-
|
|
2486
|
-
transitions?: Array<any>;
|
|
2510
|
+
definitionKey?: string;
|
|
2487
2511
|
showIcon?: boolean;
|
|
2488
2512
|
showBadge?: boolean;
|
|
2489
2513
|
badgeStyle?: 'default' | 'outline' | 'solid';
|
|
@@ -2493,8 +2517,7 @@ interface AXPStatusWidgetDesignerOptions {
|
|
|
2493
2517
|
expose?: any;
|
|
2494
2518
|
}
|
|
2495
2519
|
interface AXPStatusWidgetViewOptions {
|
|
2496
|
-
|
|
2497
|
-
transitions?: Array<any>;
|
|
2520
|
+
definitionKey?: string;
|
|
2498
2521
|
showIcon?: boolean;
|
|
2499
2522
|
showBadge?: boolean;
|
|
2500
2523
|
badgeStyle?: 'default' | 'outline' | 'solid';
|
|
@@ -2505,8 +2528,7 @@ interface AXPStatusWidgetEditOptions {
|
|
|
2505
2528
|
disabled?: boolean;
|
|
2506
2529
|
readonly?: boolean;
|
|
2507
2530
|
placeholder?: string;
|
|
2508
|
-
|
|
2509
|
-
transitions?: Array<any>;
|
|
2531
|
+
definitionKey?: string;
|
|
2510
2532
|
showIcon?: boolean;
|
|
2511
2533
|
showBadge?: boolean;
|
|
2512
2534
|
badgeStyle?: 'default' | 'outline' | 'solid';
|
|
@@ -2518,8 +2540,7 @@ interface AXPStatusWidgetEditOptions {
|
|
|
2518
2540
|
interface AXPStatusWidgetColumnOptions {
|
|
2519
2541
|
valueField?: any;
|
|
2520
2542
|
textField?: any;
|
|
2521
|
-
|
|
2522
|
-
transitions?: Array<any>;
|
|
2543
|
+
definitionKey?: string;
|
|
2523
2544
|
colorField?: any;
|
|
2524
2545
|
iconField?: any;
|
|
2525
2546
|
showIcon?: boolean;
|
|
@@ -2536,6 +2557,20 @@ interface AXPStatusWidgetOptions {
|
|
|
2536
2557
|
column: AXPStatusWidgetColumnOptions;
|
|
2537
2558
|
}
|
|
2538
2559
|
|
|
2560
|
+
declare const AXPWidgetFieldConfiguratorWidget: AXPWidgetConfig;
|
|
2561
|
+
|
|
2562
|
+
declare class AXPWidgetFieldConfiguratorWidgetEditComponent extends AXPValueWidgetComponent<AXPWidgetNode> {
|
|
2563
|
+
protected readonly: _angular_core.Signal<boolean>;
|
|
2564
|
+
protected fieldName: _angular_core.Signal<string>;
|
|
2565
|
+
protected label: _angular_core.Signal<string>;
|
|
2566
|
+
protected isInitialized: _angular_core.WritableSignal<boolean>;
|
|
2567
|
+
protected widgetConfigModel: _angular_core.ModelSignal<AXPWidgetNode>;
|
|
2568
|
+
private syncValueToConfigurator;
|
|
2569
|
+
private syncConfiguratorToValue;
|
|
2570
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetFieldConfiguratorWidgetEditComponent, never>;
|
|
2571
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetFieldConfiguratorWidgetEditComponent, "axp-widget-field-configurator-widget-edit", never, { "widgetConfigModel": { "alias": "widgetConfigModel"; "required": false; "isSignal": true; }; }, { "widgetConfigModel": "widgetConfigModelChange"; }, never, never, true, never>;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2539
2574
|
declare class AXPAdvancedGridWidgetDesignerComponent extends AXPLayoutBaseWidgetComponent {
|
|
2540
2575
|
#private;
|
|
2541
2576
|
private grid;
|
|
@@ -2852,7 +2887,6 @@ declare class AXPFieldsetWidgetViewComponent extends AXPLayoutBaseWidgetComponen
|
|
|
2852
2887
|
protected look: _angular_core.Signal<AXPFieldsetWidgetLook>;
|
|
2853
2888
|
protected cols: _angular_core.Signal<number>;
|
|
2854
2889
|
protected showTitle: _angular_core.Signal<boolean>;
|
|
2855
|
-
protected hasMultipleGroups: _angular_core.Signal<boolean>;
|
|
2856
2890
|
protected shouldShowTitle: _angular_core.Signal<boolean>;
|
|
2857
2891
|
protected toggleCollapse(): void;
|
|
2858
2892
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPFieldsetWidgetViewComponent, never>;
|
|
@@ -4306,5 +4340,5 @@ declare class AXPWidgetsModule {
|
|
|
4306
4340
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXPWidgetsModule>;
|
|
4307
4341
|
}
|
|
4308
4342
|
|
|
4309
|
-
export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetColumnComponent, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetColumnComponent, AXPCheckBoxWidgetDesignerComponent, AXPCheckBoxWidgetEditComponent, AXPCheckBoxWidgetViewComponent, AXPColorBoxWidget, AXPColorBoxWidgetColumnComponent, AXPColorBoxWidgetDesignerComponent, AXPColorBoxWidgetEditComponent, AXPColorBoxWidgetViewComponent, AXPColorPaletteWidget, AXPColorPaletteWidgetColumnComponent, AXPColorPaletteWidgetDesignerComponent, AXPColorPaletteWidgetEditComponent, AXPColorPaletteWidgetViewComponent, AXPConnectedDragDropListsWidget, AXPConnectedListsWidgetColumnComponent, AXPConnectedListsWidgetEditComponent, AXPConnectedListsWidgetViewComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDataListWidget, AXPDataListWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPDragDropListWidget, AXPDynamicFormDesignerWidget, AXPDynamicFormDesignerWidgetColumnComponent, AXPDynamicFormDesignerWidgetEditComponent, AXPDynamicFormDesignerWidgetViewComponent, AXPEditFileUploaderCommand, AXPEditorJsWidget, AXPEditorJsWidgetColumnComponent, AXPEditorJsWidgetEditComponent, AXPEditorJsWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPExtraPropertiesSchemaWidget, AXPExtraPropertiesValuesWidget, AXPExtraPropertiesWidget, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, AXPFileListComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPListWidgetColumnComponent, AXPListWidgetEditComponent, AXPListWidgetViewComponent, AXPMapWidgetEditComponent, AXPMapWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetViewComponent, AXPQrcodeWidget, AXPQrcodeWidgetEditComponent, AXPQrcodeWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetViewComponent, AXPSchedulerPickerWidget, AXPSchedulerPickerWidgetColumnComponent, AXPSchedulerPickerWidgetEditComponent, AXPSchedulerPickerWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPStatusWidget, AXPStatusWidgetColumnComponent, AXPStatusWidgetEditComponent, AXPStatusWidgetViewComponent, AXPStepWizardWidget, AXPStepWizardWidgetViewComponent, AXPTableItemWidget, AXPTableItemWidgetDesignerComponent, AXPTableItemWidgetViewComponent, AXPTableWidget, AXPTableWidgetDesignerComponent, AXPTableWidgetViewComponent, AXPTagEditorWidget, AXPTagEditorWidgetColumnComponent, AXPTagEditorWidgetEditComponent, AXPTagEditorWidgetViewComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ABSOLUTE_UNITS, AXP_ALLOW_CLEAR_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_ANIMATION_PROPERTY_GROUP, AXP_APPEARANCE_PROPERTY_GROUP, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BETWEEN_VALIDATION_PROPERTY, AXP_BG_COLOR_PROPERTY, AXP_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_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_DEFAULT_ROW_COUNT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FIT_LINE_COUNT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_GREATER_THAN_VALIDATION_PROPERTY, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ADVANCED_GRID_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_ITEM_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTY, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SHOW_HEADER_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_LAYOUT_TABLE_PROPERTY_GROUP, AXP_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MAX_LINE_COUNT_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LINE_COUNT_PROPERTY, AXP_MULTI_LANGUAGE_PROPERTY, AXP_NAME_PROPERTY, AXP_NUMBER_SEPARATOR_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_RELATIVE_UNITS, AXP_RELATIVE_UNITS_NO_PERCENT, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_SHOW_PASSWORD_PROPERTY, AXP_SPACING_UNITS, AXP_SPIN_BUTTON_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMNS_PROPERTY, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TABLE_ITEM_COLSPAN_PROPERTY, AXP_TABLE_ITEM_ROWSPAN_PROPERTY, AXP_TEXT_ALIGN_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_VERTICAL_ALIGN_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 };
|
|
4343
|
+
export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetColumnComponent, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetColumnComponent, AXPCheckBoxWidgetDesignerComponent, AXPCheckBoxWidgetEditComponent, AXPCheckBoxWidgetViewComponent, AXPColorBoxWidget, AXPColorBoxWidgetColumnComponent, AXPColorBoxWidgetDesignerComponent, AXPColorBoxWidgetEditComponent, AXPColorBoxWidgetViewComponent, AXPColorPaletteWidget, AXPColorPaletteWidgetColumnComponent, AXPColorPaletteWidgetDesignerComponent, AXPColorPaletteWidgetEditComponent, AXPColorPaletteWidgetViewComponent, AXPConnectedDragDropListsWidget, AXPConnectedListsWidgetColumnComponent, AXPConnectedListsWidgetEditComponent, AXPConnectedListsWidgetViewComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDataListWidget, AXPDataListWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPDragDropListWidget, AXPDynamicFormDesignerWidget, AXPDynamicFormDesignerWidgetColumnComponent, AXPDynamicFormDesignerWidgetEditComponent, AXPDynamicFormDesignerWidgetViewComponent, AXPEditFileUploaderCommand, AXPEditorJsWidget, AXPEditorJsWidgetColumnComponent, AXPEditorJsWidgetEditComponent, AXPEditorJsWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPExtraPropertiesSchemaWidget, AXPExtraPropertiesValuesWidget, AXPExtraPropertiesWidget, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, AXPFileListComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPListWidgetColumnComponent, AXPListWidgetEditComponent, AXPListWidgetViewComponent, AXPMapWidgetEditComponent, AXPMapWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetViewComponent, AXPQrcodeWidget, AXPQrcodeWidgetEditComponent, AXPQrcodeWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetViewComponent, AXPSchedulerPickerWidget, AXPSchedulerPickerWidgetColumnComponent, AXPSchedulerPickerWidgetEditComponent, AXPSchedulerPickerWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPStatusWidget, AXPStatusWidgetColumnComponent, AXPStatusWidgetEditComponent, AXPStatusWidgetViewComponent, AXPStepWizardWidget, AXPStepWizardWidgetViewComponent, AXPTableItemWidget, AXPTableItemWidgetDesignerComponent, AXPTableItemWidgetViewComponent, AXPTableWidget, AXPTableWidgetDesignerComponent, AXPTableWidgetViewComponent, AXPTagEditorWidget, AXPTagEditorWidgetColumnComponent, AXPTagEditorWidgetEditComponent, AXPTagEditorWidgetViewComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetViewComponent, AXPWidgetFieldConfiguratorWidget, AXPWidgetFieldConfiguratorWidgetEditComponent, AXPWidgetsModule, AXP_ABSOLUTE_UNITS, AXP_ALLOW_CLEAR_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_ANIMATION_PROPERTY_GROUP, AXP_APPEARANCE_PROPERTY_GROUP, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BETWEEN_VALIDATION_PROPERTY, AXP_BG_COLOR_PROPERTY, AXP_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_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_DEFAULT_ROW_COUNT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FIT_LINE_COUNT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_GREATER_THAN_VALIDATION_PROPERTY, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ADVANCED_GRID_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_ITEM_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTY, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SHOW_HEADER_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_LAYOUT_TABLE_PROPERTY_GROUP, AXP_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MAX_LINE_COUNT_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LINE_COUNT_PROPERTY, AXP_MULTI_LANGUAGE_PROPERTY, AXP_NAME_PROPERTY, AXP_NUMBER_SEPARATOR_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_RELATIVE_UNITS, AXP_RELATIVE_UNITS_NO_PERCENT, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_SHOW_PASSWORD_PROPERTY, AXP_SPACING_UNITS, AXP_SPIN_BUTTON_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMNS_PROPERTY, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TABLE_ITEM_COLSPAN_PROPERTY, AXP_TABLE_ITEM_ROWSPAN_PROPERTY, AXP_TEXT_ALIGN_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_VERTICAL_ALIGN_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 };
|
|
4310
4344
|
export type { AXPAbsoluteUnit, AXPAdvancedGridItemWidgetDesignerOptions, AXPAdvancedGridItemWidgetEditOptions, AXPAdvancedGridItemWidgetOptions, AXPAdvancedGridItemWidgetPrintOptions, AXPAdvancedGridItemWidgetViewOptions, AXPAdvancedGridWidgetDesignerOptions, AXPAdvancedGridWidgetEditOptions, AXPAdvancedGridWidgetOptions, AXPAdvancedGridWidgetViewOptions, AXPAvatarWidgetColumnOptions, AXPAvatarWidgetDesignerOptions, AXPAvatarWidgetEditOptions, AXPAvatarWidgetOptions, AXPAvatarWidgetPrintOptions, AXPAvatarWidgetViewOptions, AXPBlockWidgetConfigType, AXPBlockWidgetDesignerOptions, AXPBlockWidgetEditOptions, AXPBlockWidgetOptions, AXPBlockWidgetPrintOptions, AXPBlockWidgetViewOptions, AXPBorderRadiusUnit, AXPBorderWidthUnit, AXPButtonWidgetColumnOptions, AXPButtonWidgetDesignerOptions, AXPButtonWidgetEditOptions, AXPButtonWidgetOptions, AXPButtonWidgetViewOptions, AXPCheckBoxWidgetColumnOptions, AXPCheckBoxWidgetConfigType, AXPCheckBoxWidgetDesignerOptions, AXPCheckBoxWidgetEditOptions, AXPCheckBoxWidgetOptions, AXPCheckBoxWidgetViewOptions, AXPColorBoxWidgetColumnOptions, AXPColorBoxWidgetDesignerOptions, AXPColorBoxWidgetEditOptions, AXPColorBoxWidgetOptions, AXPColorBoxWidgetViewOptions, AXPColorPaletteWidgetColumnOptions, AXPColorPaletteWidgetDesignerOptions, AXPColorPaletteWidgetEditOptions, AXPColorPaletteWidgetOptions, AXPColorPaletteWidgetViewOptions, AXPConnectedListsWidgetColumnOptions, AXPConnectedListsWidgetDesignerOptions, AXPConnectedListsWidgetEditOptions, AXPConnectedListsWidgetOptions, AXPConnectedListsWidgetViewOptions, AXPContactWidgetColumnOptions, AXPContactWidgetDesignerOptions, AXPContactWidgetEditOptions, AXPContactWidgetOptions, AXPContactWidgetViewOptions, AXPDataListWidgetColumn, AXPDataListWidgetComponentOptions, AXPDataListWidgetEditOptions, AXPDataListWidgetOptions, AXPDataListWidgetRowCommand, AXPDataListWidgetViewOptions, AXPDateTimeBoxWidgetColumnOptions, AXPDateTimeBoxWidgetDesignerOptions, AXPDateTimeBoxWidgetEditOptions, AXPDateTimeBoxWidgetOptions, AXPDateTimeBoxWidgetPrintOptions, AXPDateTimeBoxWidgetViewOptions, AXPEditorJsWidgetColumnOptions, AXPEditorJsWidgetDesignerOptions, AXPEditorJsWidgetEditOptions, AXPEditorJsWidgetOptions, AXPEditorJsWidgetPrintOptions, AXPEditorJsWidgetViewOptions, AXPFieldsetWidgetDesignerOptions, AXPFieldsetWidgetEditOptions, AXPFieldsetWidgetLook, AXPFieldsetWidgetOptions, AXPFieldsetWidgetPrintOptions, AXPFieldsetWidgetViewOptions, 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, AXPListWidgetColumnOptions, AXPListWidgetDesignerOptions, AXPListWidgetEditOptions, AXPListWidgetOptions, AXPListWidgetViewOptions, AXPNumberBoxWidgetColumnOptions, AXPNumberBoxWidgetDesignerOptions, AXPNumberBoxWidgetEditOptions, AXPNumberBoxWidgetOptions, AXPNumberBoxWidgetPrintOptions, AXPNumberBoxWidgetViewOptions, AXPPageWidgetDesignerOptions, AXPPageWidgetEditOptions, AXPPageWidgetOptions, AXPPageWidgetPrintOptions, AXPPageWidgetViewOptions, AXPPasswordBoxWidgetColumnOptions, AXPPasswordBoxWidgetDesignerOptions, AXPPasswordBoxWidgetEditOptions, AXPPasswordBoxWidgetOptions, AXPPasswordBoxWidgetPrintOptions, AXPPasswordBoxWidgetViewOptions, AXPQrcodeWidgetDesignerOptions, AXPQrcodeWidgetEditOptions, AXPQrcodeWidgetOptions, AXPQrcodeWidgetPrintOptions, AXPQrcodeWidgetViewOptions, AXPRelativeUnit, AXPRelativeUnitNoPercent, AXPRepeaterWidgetDesignerOptions, AXPRepeaterWidgetEditOptions, AXPRepeaterWidgetOptions, AXPRepeaterWidgetPrintOptions, AXPRepeaterWidgetViewOptions, AXPRichTextWidgetColumnOptions, AXPRichTextWidgetDesignerOptions, AXPRichTextWidgetEditOptions, AXPRichTextWidgetOptions, AXPRichTextWidgetPrintOptions, AXPRichTextWidgetViewOptions, AXPSchedulerPickerWidgetColumnOptions, AXPSchedulerPickerWidgetDesignerOptions, AXPSchedulerPickerWidgetEditOptions, AXPSchedulerPickerWidgetOptions, AXPSchedulerPickerWidgetPrintOptions, AXPSchedulerPickerWidgetViewOptions, AXPSelectBoxWidgetColumnOptions, AXPSelectBoxWidgetDesignerOptions, AXPSelectBoxWidgetEditOptions, AXPSelectBoxWidgetOptions, AXPSelectBoxWidgetPrintOptions, AXPSelectBoxWidgetViewOptions, AXPSelectionListWidgetColumnOptions, AXPSelectionListWidgetDesignerOptions, AXPSelectionListWidgetEditOptions, AXPSelectionListWidgetOptions, AXPSelectionListWidgetPrintOptions, AXPSelectionListWidgetViewOptions, AXPSignatureWidgetColumnOptions, AXPSignatureWidgetDesignerOptions, AXPSignatureWidgetEditOptions, AXPSignatureWidgetOptions, AXPSignatureWidgetPrintOptions, AXPSignatureWidgetViewOptions, AXPSpacingBoxDefaultValues, AXPSpacingUnit, AXPStatusWidgetColumnOptions, AXPStatusWidgetDesignerOptions, AXPStatusWidgetEditOptions, AXPStatusWidgetOptions, AXPStatusWidgetPrintOptions, AXPStatusWidgetViewOptions, AXPStepStatus, AXPStepWizardActionConfig, AXPStepWizardDirection, AXPStepWizardEvents, AXPStepWizardGlobalActions, AXPStepWizardGuard, AXPStepWizardGuardPayload, AXPStepWizardStatus, AXPStepWizardStep, AXPStepWizardWidgetDefinition, AXPTableItemWidgetDesignerOptions, AXPTableItemWidgetEditOptions, AXPTableItemWidgetOptions, AXPTableItemWidgetPrintOptions, AXPTableItemWidgetViewOptions, AXPTableWidgetConfigType, AXPTableWidgetDesignerOptions, AXPTableWidgetEditOptions, AXPTableWidgetOptions, AXPTableWidgetPrintOptions, AXPTableWidgetViewOptions, AXPTagEditorWidgetColumnOptions, AXPTagEditorWidgetDesignerOptions, AXPTagEditorWidgetEditOptions, AXPTagEditorWidgetOptions, AXPTagEditorWidgetPrintOptions, AXPTagEditorWidgetViewOptions, AXPTemplateBoxWidgetColumnOptions, AXPTemplateBoxWidgetDesignerOptions, AXPTemplateBoxWidgetEditOptions, AXPTemplateBoxWidgetOptions, AXPTemplateBoxWidgetPrintOptions, AXPTemplateBoxWidgetViewOptions, AXPTextBoxWidgetColumnOptions, AXPTextBoxWidgetDesignerOptions, AXPTextBoxWidgetEditOptions, AXPTextBoxWidgetOptions, AXPTextBoxWidgetPrintOptions, AXPTextBoxWidgetViewOptions, AXPToggleWidgetColumnOptions, AXPToggleWidgetDesignerOptions, AXPToggleWidgetEditOptions, AXPToggleWidgetOptions, AXPToggleWidgetPrintOptions, AXPToggleWidgetViewOptions, AXStepWizardLook, StrategyConfig };
|
package/package.json
CHANGED
package/runtime/index.d.ts
CHANGED
|
@@ -1,14 +1,21 @@
|
|
|
1
|
+
import { AXPExecuteCommandResult, AXPViewDefinition, AXPMetaData } from '@acorex/platform/core';
|
|
1
2
|
import * as i0 from '@angular/core';
|
|
2
3
|
import { InjectionToken, Type, EnvironmentProviders, Provider } from '@angular/core';
|
|
3
|
-
import { AXPViewDefinition, AXPMetaData } from '@acorex/platform/core';
|
|
4
4
|
import { AXComponent } from '@acorex/cdk/common';
|
|
5
5
|
|
|
6
|
+
type AXPExecuteCommandResultPromise<TResult = any> = Promise<AXPExecuteCommandResult<TResult>>;
|
|
6
7
|
interface AXPCommand<TInput = any, TResult = any> {
|
|
7
|
-
execute(input: TInput):
|
|
8
|
+
execute(input: TInput): AXPExecuteCommandResultPromise<TResult>;
|
|
8
9
|
}
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Represents a middleware function in the command execution pipeline.
|
|
13
|
+
*/
|
|
14
|
+
type AXPCommandMiddleware<TInput = any, TResult = any> = (input: TInput, next: (input: TInput) => Promise<AXPExecuteCommandResult<TResult>>) => Promise<AXPExecuteCommandResult<TResult>>;
|
|
15
|
+
/**
|
|
16
|
+
* Creates a composed handler by chaining the provided command middlewares.
|
|
17
|
+
*/
|
|
18
|
+
declare function composeCommandMiddlewares<TInput, TResult>(middlewares: AXPCommandMiddleware<TInput, TResult>[]): (handler: (input: TInput) => Promise<AXPExecuteCommandResult<TResult>>) => (input: TInput) => Promise<AXPExecuteCommandResult<TResult>>;
|
|
12
19
|
|
|
13
20
|
declare class AXPCommandRegistry {
|
|
14
21
|
private registry;
|
|
@@ -29,7 +36,8 @@ declare class AXPCommandExecutor {
|
|
|
29
36
|
private readonly injector;
|
|
30
37
|
private readonly registry;
|
|
31
38
|
private readonly extensions;
|
|
32
|
-
|
|
39
|
+
private readonly commandEvents;
|
|
40
|
+
execute<TInput = any, TResult = any>(key: string, input: TInput): Promise<AXPExecuteCommandResult<TResult> | null>;
|
|
33
41
|
private getPluginMiddlewares;
|
|
34
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCommandExecutor, never>;
|
|
35
43
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPCommandExecutor>;
|
|
@@ -44,7 +52,7 @@ declare class AXPCommandService {
|
|
|
44
52
|
exists(key: string): boolean;
|
|
45
53
|
getRegisteredKeys(): string[];
|
|
46
54
|
clear(): void;
|
|
47
|
-
execute<TInput = any, TResult = any>(key: string, input: TInput): Promise<TResult | null>;
|
|
55
|
+
execute<TInput = any, TResult = any>(key: string, input: TInput): Promise<AXPExecuteCommandResult<TResult> | null>;
|
|
48
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCommandService, never>;
|
|
49
57
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPCommandService>;
|
|
50
58
|
}
|
|
@@ -61,6 +69,7 @@ type AXPCommandLoader = {
|
|
|
61
69
|
command: () => Type<AXPCommand> | Promise<Type<AXPCommand>>;
|
|
62
70
|
};
|
|
63
71
|
declare function provideCommandSetups(entries: AXPCommandLoader[]): EnvironmentProviders;
|
|
72
|
+
declare function provideCommand(key: string, loader: () => Type<AXPCommand> | Promise<Type<AXPCommand>>): EnvironmentProviders;
|
|
64
73
|
|
|
65
74
|
declare const AXP_COMMAND_MIDDLEWARE_SETUP: InjectionToken<void>;
|
|
66
75
|
type AXPCommandMiddlewareEntry = (AXPCommandMiddleware | {
|
|
@@ -69,6 +78,25 @@ type AXPCommandMiddlewareEntry = (AXPCommandMiddleware | {
|
|
|
69
78
|
})[];
|
|
70
79
|
declare function provideCommandMiddleware(entries: AXPCommandMiddlewareEntry): EnvironmentProviders;
|
|
71
80
|
|
|
81
|
+
type AXPCommandExecutionStage = 'before' | 'after';
|
|
82
|
+
interface AXPCommandExecutionEvent<TInput = unknown, TResult = unknown> {
|
|
83
|
+
stage: AXPCommandExecutionStage;
|
|
84
|
+
key: string;
|
|
85
|
+
input: TInput;
|
|
86
|
+
success?: boolean;
|
|
87
|
+
result?: AXPExecuteCommandResult<TResult> | null;
|
|
88
|
+
error?: unknown;
|
|
89
|
+
}
|
|
90
|
+
type CommandExecutionHandler<TInput, TResult> = (event: AXPCommandExecutionEvent<TInput, TResult>) => void;
|
|
91
|
+
declare class AXPCommandEventsService {
|
|
92
|
+
private readonly broadcast;
|
|
93
|
+
private readonly distributedEvents;
|
|
94
|
+
listen<TInput = unknown, TResult = unknown>(handler: CommandExecutionHandler<TInput, TResult>): () => void;
|
|
95
|
+
emit<TInput = unknown, TResult = unknown>(event: AXPCommandExecutionEvent<TInput, TResult>): Promise<void>;
|
|
96
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCommandEventsService, never>;
|
|
97
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPCommandEventsService>;
|
|
98
|
+
}
|
|
99
|
+
|
|
72
100
|
interface AXPQuery<TInput = any, TResult = any> {
|
|
73
101
|
fetch(input: TInput): Promise<TResult>;
|
|
74
102
|
}
|
|
@@ -275,5 +303,5 @@ declare class AXPRuntimeModule {
|
|
|
275
303
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXPRuntimeModule>;
|
|
276
304
|
}
|
|
277
305
|
|
|
278
|
-
export { AXPCommandExecutor, AXPCommandRegistry, AXPCommandService, AXPPolicyEngineContext, AXPPolicyEngineDirective, AXPPolicyEngineRegistry, AXPPolicyEngineService, AXPQueryExecutor, AXPQueryRegistry, AXPQueryService, AXPRuntimeModule, AXPViewExecutor, AXPViewRegistry, AXPViewService, AXP_COMMAND_EXTENSION, AXP_COMMAND_MIDDLEWARE_SETUP, AXP_COMMAND_SETUP, AXP_POLICY_ENGINE_MIDDLEWARE_SETUP, AXP_POLICY_EXTENSION, AXP_QUERY_EXTENSION, AXP_QUERY_MIDDLEWARE_SETUP, AXP_QUERY_SETUP, AXP_VIEW_EXTENSION, AXP_VIEW_SETUP, composeCommandMiddlewares, composePolicyEngineMiddlewares, composeQueryMiddlewares, composeViewMiddlewares, provideCommandMiddleware, provideCommandSetups, providePolicySetups, provideQueryMiddleware, provideQuerySetups, provideViewSetup, provideViewSetups };
|
|
279
|
-
export type { AXPCommand, AXPCommandExtension, AXPCommandMiddleware, AXPPolicy, AXPPolicyEngineMiddleware, AXPPolicyExtension, AXPQuery, AXPQueryExtension, AXPQueryMiddleware, AXPViewExtension, AXPViewMiddleware, AXPViewProvider };
|
|
306
|
+
export { AXPCommandEventsService, AXPCommandExecutor, AXPCommandRegistry, AXPCommandService, AXPPolicyEngineContext, AXPPolicyEngineDirective, AXPPolicyEngineRegistry, AXPPolicyEngineService, AXPQueryExecutor, AXPQueryRegistry, AXPQueryService, AXPRuntimeModule, AXPViewExecutor, AXPViewRegistry, AXPViewService, AXP_COMMAND_EXTENSION, AXP_COMMAND_MIDDLEWARE_SETUP, AXP_COMMAND_SETUP, AXP_POLICY_ENGINE_MIDDLEWARE_SETUP, AXP_POLICY_EXTENSION, AXP_QUERY_EXTENSION, AXP_QUERY_MIDDLEWARE_SETUP, AXP_QUERY_SETUP, AXP_VIEW_EXTENSION, AXP_VIEW_SETUP, composeCommandMiddlewares, composePolicyEngineMiddlewares, composeQueryMiddlewares, composeViewMiddlewares, provideCommand, provideCommandMiddleware, provideCommandSetups, providePolicySetups, provideQueryMiddleware, provideQuerySetups, provideViewSetup, provideViewSetups };
|
|
307
|
+
export type { AXPCommand, AXPCommandExecutionEvent, AXPCommandExecutionStage, AXPCommandExtension, AXPCommandMiddleware, AXPExecuteCommandResultPromise, AXPPolicy, AXPPolicyEngineMiddleware, AXPPolicyExtension, AXPQuery, AXPQueryExtension, AXPQueryMiddleware, AXPViewExtension, AXPViewMiddleware, AXPViewProvider };
|
|
@@ -11,7 +11,7 @@ import * as _acorex_platform_core from '@acorex/platform/core';
|
|
|
11
11
|
import * as _acorex_platform_common from '@acorex/platform/common';
|
|
12
12
|
import { AXPMenuItem, AXPSettingService } from '@acorex/platform/common';
|
|
13
13
|
import { AXPTaskBadgeService } from '@acorex/platform/layout/components';
|
|
14
|
-
import { Router } from '@angular/router';
|
|
14
|
+
import { Router, UrlTree } from '@angular/router';
|
|
15
15
|
import { AXDrawerComponent } from '@acorex/components/drawer';
|
|
16
16
|
|
|
17
17
|
declare class AXPEntityDetailListViewComponent {
|
|
@@ -218,9 +218,32 @@ declare class AXPRootLayoutMenuComponent {
|
|
|
218
218
|
protected badgeVisible: _angular_core.WritableSignal<boolean>;
|
|
219
219
|
constructor();
|
|
220
220
|
ngOnInit(): Promise<void>;
|
|
221
|
-
onMenuItemClick(item: AXPMenuItem): void;
|
|
221
|
+
onMenuItemClick(item: AXPMenuItem, hasRouterLink?: boolean): void;
|
|
222
222
|
protected sort(items: AXPMenuItem[]): AXPMenuItem[];
|
|
223
223
|
protected getMenuBadge(item: AXPMenuItem): Signal<number>;
|
|
224
|
+
/**
|
|
225
|
+
* Builds a UrlTree that can be consumed by the routerLink directive when the menu item targets
|
|
226
|
+
* an internal route. When the item does not represent an internal route, null is returned so the
|
|
227
|
+
* command execution pipeline remains responsible for navigation.
|
|
228
|
+
*/
|
|
229
|
+
protected getRouterLink(item: AXPMenuItem): UrlTree | null;
|
|
230
|
+
/**
|
|
231
|
+
* Extracts internal navigation data regardless of whether it is provided via the legacy `path`
|
|
232
|
+
* property, a direct navigate command, or the execution command wrapper.
|
|
233
|
+
*/
|
|
234
|
+
private extractRouterNavigation;
|
|
235
|
+
/**
|
|
236
|
+
* Determines whether routerLink can safely be used based on the target path and navigation
|
|
237
|
+
* extras. If the navigation requires additional runtime behaviour (e.g., opening in a new tab),
|
|
238
|
+
* we fallback to the imperative command pipeline.
|
|
239
|
+
*/
|
|
240
|
+
private isRouterLinkCompatible;
|
|
241
|
+
/**
|
|
242
|
+
* Ensures router links include a leading slash while preserving any query parameters or
|
|
243
|
+
* fragments present in the original path.
|
|
244
|
+
*/
|
|
245
|
+
private normalizeRouterPath;
|
|
246
|
+
private isExternalNavigation;
|
|
224
247
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPRootLayoutMenuComponent, never>;
|
|
225
248
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRootLayoutMenuComponent, "axp-side-menu", never, {}, {}, never, never, true, never>;
|
|
226
249
|
}
|