@acorex/platform 20.7.6 → 20.7.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.
- package/fesm2022/acorex-platform-core.mjs +5 -3
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components-binding-expression-editor-popup.component-ZnTG7wlJ.mjs +121 -0
- package/fesm2022/acorex-platform-layout-components-binding-expression-editor-popup.component-ZnTG7wlJ.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-components.mjs +232 -107
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +612 -330
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +11 -2
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/{acorex-platform-layout-widgets-repeater-widget-column.component-D4UOMW6k.mjs → acorex-platform-layout-widgets-repeater-widget-column.component-fcCirNxz.mjs} +2 -2
- package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-fcCirNxz.mjs.map +1 -0
- package/fesm2022/acorex-platform-layout-widgets.mjs +582 -76
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-C31xDGGb.mjs → acorex-platform-themes-default-entity-master-list-view.component-DzWjSMSK.mjs} +5 -4
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-C31xDGGb.mjs.map → acorex-platform-themes-default-entity-master-list-view.component-DzWjSMSK.mjs.map} +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/layout/components/index.d.ts +49 -28
- package/layout/entity/index.d.ts +42 -41
- package/layout/widget-core/index.d.ts +11 -2
- package/layout/widgets/index.d.ts +130 -8
- package/package.json +1 -1
- package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-D4UOMW6k.mjs.map +0 -1
|
@@ -874,7 +874,7 @@ class AXPDefaultThemeModule {
|
|
|
874
874
|
///
|
|
875
875
|
modify: () => import('./acorex-platform-themes-default-entity-master-modify-view.component-DAFQ4UI9.mjs').then((c) => c.AXPEntityMasterModifyViewComponent),
|
|
876
876
|
//
|
|
877
|
-
list: () => import('./acorex-platform-themes-default-entity-master-list-view.component-
|
|
877
|
+
list: () => import('./acorex-platform-themes-default-entity-master-list-view.component-DzWjSMSK.mjs').then((c) => c.AXPEntityMasterListViewComponent),
|
|
878
878
|
},
|
|
879
879
|
},
|
|
880
880
|
};
|
|
@@ -910,7 +910,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
910
910
|
///
|
|
911
911
|
modify: () => import('./acorex-platform-themes-default-entity-master-modify-view.component-DAFQ4UI9.mjs').then((c) => c.AXPEntityMasterModifyViewComponent),
|
|
912
912
|
//
|
|
913
|
-
list: () => import('./acorex-platform-themes-default-entity-master-list-view.component-
|
|
913
|
+
list: () => import('./acorex-platform-themes-default-entity-master-list-view.component-DzWjSMSK.mjs').then((c) => c.AXPEntityMasterListViewComponent),
|
|
914
914
|
},
|
|
915
915
|
},
|
|
916
916
|
};
|
|
@@ -1146,7 +1146,14 @@ declare class AXPPropertyViewerComponent {
|
|
|
1146
1146
|
protected tabs: _angular_core.Signal<AXPPropertyViewerTab[]>;
|
|
1147
1147
|
protected groups: _angular_core.Signal<AXPPropertyViewerGroup[]>;
|
|
1148
1148
|
protected context: WritableSignal<any>;
|
|
1149
|
+
/**
|
|
1150
|
+
* Per-expression-path override for "use expression" vs "use value" when binding.enabled.
|
|
1151
|
+
* Updated when user toggles the ax-switch; otherwise derived from isExpression(valueAtPath).
|
|
1152
|
+
*/
|
|
1153
|
+
protected expressionModeState: WritableSignal<Record<string, boolean>>;
|
|
1149
1154
|
protected groupCollapsedStates: Map<string, boolean>;
|
|
1155
|
+
private readonly expressionEvaluator;
|
|
1156
|
+
private readonly popupService;
|
|
1150
1157
|
constructor();
|
|
1151
1158
|
/**
|
|
1152
1159
|
* Replaces the current context with the provided value and emits an init event.
|
|
@@ -1168,6 +1175,34 @@ declare class AXPPropertyViewerComponent {
|
|
|
1168
1175
|
* Stores collapsed state for a group.
|
|
1169
1176
|
*/
|
|
1170
1177
|
protected handleCollapsedChange(groupName: string, isCollapsed: boolean): void;
|
|
1178
|
+
/**
|
|
1179
|
+
* Returns the config path used for the binding value (and expression) for a property with binding.enabled.
|
|
1180
|
+
*/
|
|
1181
|
+
protected getExpressionPath(prop: AXPWidgetProperty): string;
|
|
1182
|
+
/**
|
|
1183
|
+
* True when the property is in "expression" mode: show only the expression editor button, not the widget.
|
|
1184
|
+
* Uses expressionModeState when set; otherwise derives from isExpression(valueAtPath).
|
|
1185
|
+
*/
|
|
1186
|
+
protected isExpressionMode(prop: AXPWidgetProperty): boolean;
|
|
1187
|
+
/**
|
|
1188
|
+
* Returns the default value when switching from expression to value mode.
|
|
1189
|
+
* Source of truth is prop.schema.defaultValue (widget.types): plain value, or function (context) => value.
|
|
1190
|
+
* A minimal dataType fallback is used only when the schema provides no default.
|
|
1191
|
+
*/
|
|
1192
|
+
private getDefaultValueForProperty;
|
|
1193
|
+
/**
|
|
1194
|
+
* Updates the expression/value toggle state for a binding-enabled property.
|
|
1195
|
+
* When switching to value: resets the value at path to a type-appropriate default so the
|
|
1196
|
+
* widget renderer does not receive the expression string (e.g. checkbox gets false, not a string).
|
|
1197
|
+
* When switching to expression: sets the value at path to '{{ }}' so the popup opens with
|
|
1198
|
+
* a clean expression placeholder instead of the previous literal (e.g. true/false).
|
|
1199
|
+
*/
|
|
1200
|
+
protected setExpressionMode(prop: AXPWidgetProperty, useExpression: boolean): void;
|
|
1201
|
+
/**
|
|
1202
|
+
* Opens the binding/expression code editor for a property with binding.enabled.
|
|
1203
|
+
* Ensures the value passed to the popup is always a string to avoid code-editor crashes.
|
|
1204
|
+
*/
|
|
1205
|
+
protected openBindingEditor(prop: AXPWidgetProperty): Promise<void>;
|
|
1171
1206
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPropertyViewerComponent, never>;
|
|
1172
1207
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPropertyViewerComponent, "axp-property-viewer", never, { "tabsInput": { "alias": "tabsInput"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "onChanged": "onChanged"; }, never, never, true, never>;
|
|
1173
1208
|
}
|
|
@@ -1564,16 +1599,6 @@ declare class AXPWidgetItemComponent {
|
|
|
1564
1599
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetItemComponent, "axp-widget-item", never, { "widget": { "alias": "widget"; "required": true; "isSignal": true; }; "isSelected": { "alias": "isSelected"; "required": false; "isSignal": true; }; "showPinButton": { "alias": "showPinButton"; "required": false; "isSignal": true; }; "customClasses": { "alias": "customClasses"; "required": false; "isSignal": true; }; }, { "onWidgetClick": "onWidgetClick"; "onPinClick": "onPinClick"; }, never, never, true, never>;
|
|
1565
1600
|
}
|
|
1566
1601
|
|
|
1567
|
-
interface AXPWidgetPropertyTab {
|
|
1568
|
-
name: string;
|
|
1569
|
-
title: string;
|
|
1570
|
-
groups: {
|
|
1571
|
-
name: string;
|
|
1572
|
-
title: string;
|
|
1573
|
-
isCollapsed: boolean;
|
|
1574
|
-
props: AXPWidgetProperty[];
|
|
1575
|
-
}[];
|
|
1576
|
-
}
|
|
1577
1602
|
interface AXPWidgetPropertiesChangedEvent {
|
|
1578
1603
|
values: any;
|
|
1579
1604
|
mode: 'init' | 'update';
|
|
@@ -1581,27 +1606,23 @@ interface AXPWidgetPropertiesChangedEvent {
|
|
|
1581
1606
|
declare class AXPWidgetPropertyViewerComponent {
|
|
1582
1607
|
widget: _angular_core.InputSignal<AXPWidgetNode>;
|
|
1583
1608
|
mode: _angular_core.InputSignal<"simple" | "advanced">;
|
|
1584
|
-
private widgetRegistryService;
|
|
1585
|
-
protected currentTabIndex: WritableSignal<number>;
|
|
1586
|
-
protected config: WritableSignal<AXPWidgetConfig<any> | null>;
|
|
1587
|
-
protected allPoperties: AXPWidgetProperty[];
|
|
1588
|
-
protected tabs: WritableSignal<AXPWidgetPropertyTab[]>;
|
|
1589
|
-
protected groups: _angular_core.Signal<{
|
|
1590
|
-
name: string;
|
|
1591
|
-
title: string;
|
|
1592
|
-
isCollapsed: boolean;
|
|
1593
|
-
props: AXPWidgetProperty[];
|
|
1594
|
-
}[]>;
|
|
1595
|
-
protected groupCollapsedStates: Map<string, boolean>;
|
|
1596
1609
|
onChanged: EventEmitter<AXPWidgetPropertiesChangedEvent>;
|
|
1597
|
-
protected
|
|
1598
|
-
protected
|
|
1610
|
+
protected readonly propertyViewerRef: _angular_core.Signal<AXPPropertyViewerComponent | undefined>;
|
|
1611
|
+
protected readonly config: _angular_core.WritableSignal<AXPWidgetConfig<any> | null>;
|
|
1612
|
+
protected readonly tabs: _angular_core.WritableSignal<AXPPropertyViewerTab[]>;
|
|
1613
|
+
protected initialContext: Record<string, unknown>;
|
|
1614
|
+
protected groupCollapsedStates: Map<string, boolean>;
|
|
1615
|
+
/** When true, the next onChanged from the inner viewer was caused by our update(); do not forward to avoid loop. */
|
|
1616
|
+
private suppressNextEmit;
|
|
1617
|
+
private readonly widgetRegistryService;
|
|
1599
1618
|
constructor();
|
|
1619
|
+
/**
|
|
1620
|
+
* Merges the given values into the property viewer context. Called by the designer when applying changes (e.g. undo/redo).
|
|
1621
|
+
* The inner viewer will emit onChanged; we ignore that emission to avoid designer -> update -> emit -> designer loop.
|
|
1622
|
+
*/
|
|
1600
1623
|
update(values: any): void;
|
|
1601
1624
|
private fillTabs;
|
|
1602
|
-
protected
|
|
1603
|
-
protected handleTabChange(event: AXTabStripChangedEvent): void;
|
|
1604
|
-
protected handleCollapsedChange(group: string, collapsed: boolean): void;
|
|
1625
|
+
protected handlePropertyViewerChanged(ev: AXPPropertyViewerChangedEvent): void;
|
|
1605
1626
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPWidgetPropertyViewerComponent, never>;
|
|
1606
1627
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetPropertyViewerComponent, "axp-widget-property-viewer", never, { "widget": { "alias": "widget"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, { "onChanged": "onChanged"; }, never, never, true, never>;
|
|
1607
1628
|
}
|
|
@@ -1683,4 +1704,4 @@ declare class AXPWidgetPropertyViewerService {
|
|
|
1683
1704
|
}
|
|
1684
1705
|
|
|
1685
1706
|
export { AXPActivityLogComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPColumnItemListComponent, AXPCompareViewComponent, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataSelectorComponent, AXPDataSelectorService, AXPDragDropListComponent, AXPImageEditorPopupComponent, AXPImageEditorService, AXPLogoComponent, AXPMenuBadgeHelper, AXPPropertyViewerComponent, AXPPropertyViewerPopupComponent, AXPPropertyViewerService, AXPQueryColumnsComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryViewsComponent, AXPSpreadsheetComponent, AXPStateMessageComponent, AXPStopwatchComponent, AXPTaskBadgeDirective, AXPTaskBadgeProvider, AXPTaskBadgeService, AXPTemplateViewerComponent, AXPTemplateViewerService, AXPThemeLayoutActionsComponent, AXPThemeLayoutBlockComponent, AXPThemeLayoutContainerComponent, AXPThemeLayoutEndSideComponent, AXPThemeLayoutFooterComponent, AXPThemeLayoutHeaderComponent, AXPThemeLayoutListComponent, AXPThemeLayoutListItemComponent, AXPThemeLayoutListItemsGroupComponent, AXPThemeLayoutPageHeaderComponent, AXPThemeLayoutPagePrimaryActionsComponent, AXPThemeLayoutPageSecondaryActionsComponent, AXPThemeLayoutSectionComponent, AXPThemeLayoutStartSideComponent, AXPThemeLayoutToolbarComponent, AXPUserAvatarComponent, AXPUserAvatarService, AXPWidgetFieldConfiguratorComponent, AXPWidgetItemComponent, AXPWidgetPropertyViewerComponent, AXPWidgetPropertyViewerPopupComponent, AXPWidgetPropertyViewerService, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER };
|
|
1686
|
-
export type { AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPColumnItemListItem, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDragDropListConfig, AXPDragDropListDropEvent, AXPDragDropListItem, AXPImageEditorOpenOptions, AXPPropertyViewerChangedEvent, AXPPropertyViewerConfig, AXPPropertyViewerGroup, AXPPropertyViewerResult, AXPPropertyViewerTab, AXPSpreadsheetCellChangeEvent, AXPSpreadsheetCellValue, AXPSpreadsheetColumn, AXPSpreadsheetConfig, AXPSpreadsheetData, AXPSpreadsheetItem, AXPSpreadsheetRowChangeEvent, AXPSpreadsheetRowMode, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyInjection,
|
|
1707
|
+
export type { AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPColumnItemListItem, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDragDropListConfig, AXPDragDropListDropEvent, AXPDragDropListItem, AXPImageEditorOpenOptions, AXPPropertyViewerChangedEvent, AXPPropertyViewerConfig, AXPPropertyViewerGroup, AXPPropertyViewerResult, AXPPropertyViewerTab, AXPSpreadsheetCellChangeEvent, AXPSpreadsheetCellValue, AXPSpreadsheetColumn, AXPSpreadsheetConfig, AXPSpreadsheetData, AXPSpreadsheetItem, AXPSpreadsheetRowChangeEvent, AXPSpreadsheetRowMode, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyInjection, AXPWidgetPropertyViewerConfig, AXPWidgetPropertyViewerResult, StateMode };
|
package/layout/entity/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AXPExecuteCommandResult, AXPMetaData, AXPGridLayoutOptions, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand, AXPUserReference, AXPQueryRequest, AXPPagedListResult, AXPCategoryEntity as AXPCategoryEntity$1, AXPEntityOp, AXPMiddlewareErrorResponse, AXHighlightService, AXPExpression, AXPColumnQuery, AXPSortDefinition, AXPDeviceService, AXPBroadcastEventService, AXPActionMenuItem } from '@acorex/platform/core';
|
|
1
|
+
import { AXPExecuteCommandResult, AXPMetaData, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPGridLayoutOptions, AXPBreadcrumbItem, AXPFilterQuery, AXPFilterDefinition, AXPExecuteCommand, AXPUserReference, AXPQueryRequest, AXPPagedListResult, AXPCategoryEntity as AXPCategoryEntity$1, AXPEntityOp, AXPMiddlewareErrorResponse, AXHighlightService, AXPExpression, AXPColumnQuery, AXPSortDefinition, AXPDeviceService, AXPBroadcastEventService, AXPExpressionEvaluatorService, AXPActionMenuItem } from '@acorex/platform/core';
|
|
2
2
|
import { AXPCommand, AXPQueryExecutor, AXPCommandService, AXPQuery } from '@acorex/platform/runtime';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
4
|
import { ElementRef, InjectionToken, Injector, Type, OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
@@ -32,6 +32,7 @@ declare class AXPCreateEntityCommand implements AXPCommand<any, any> {
|
|
|
32
32
|
private toastService;
|
|
33
33
|
private translationService;
|
|
34
34
|
private eventService;
|
|
35
|
+
private platform;
|
|
35
36
|
protected context: {};
|
|
36
37
|
execute(input: any): Promise<AXPExecuteCommandResult<any>>;
|
|
37
38
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPCreateEntityCommand, never>;
|
|
@@ -169,6 +170,15 @@ declare class AXPDataSeederService {
|
|
|
169
170
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPDataSeederService>;
|
|
170
171
|
}
|
|
171
172
|
|
|
173
|
+
/**
|
|
174
|
+
* Data source definition provider that returns all entity names
|
|
175
|
+
* from entity loaders' list() (const.ts in each module).
|
|
176
|
+
*/
|
|
177
|
+
declare class AXPEntitiesListDataSourceDefinition implements AXPDataSourceDefinitionProvider {
|
|
178
|
+
private readonly entityResolver;
|
|
179
|
+
items(): Promise<AXPDataSourceDefinition[]>;
|
|
180
|
+
}
|
|
181
|
+
|
|
172
182
|
declare class AXPEntityCommandTriggerViewModel {
|
|
173
183
|
priority: 'primary' | 'secondary';
|
|
174
184
|
order: number;
|
|
@@ -906,13 +916,28 @@ interface AXPEntityConfigs {
|
|
|
906
916
|
};
|
|
907
917
|
}
|
|
908
918
|
declare const AXP_ENTITY_CONFIG_TOKEN: InjectionToken<AXPEntityConfigs>;
|
|
919
|
+
/** Raw input from entity loaders' list(). */
|
|
920
|
+
type AXPEntityListInput = {
|
|
921
|
+
name: string;
|
|
922
|
+
module: string;
|
|
923
|
+
};
|
|
924
|
+
/** Output from listAll(); fullName is populated by the resolver. */
|
|
925
|
+
type AXPEntityListEntry = {
|
|
926
|
+
name: string;
|
|
927
|
+
module: string;
|
|
928
|
+
fullName: string;
|
|
929
|
+
};
|
|
909
930
|
interface AXPEntityDefinitionLoader {
|
|
910
931
|
get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
|
|
932
|
+
list(): Promise<AXPEntityListInput[]>;
|
|
911
933
|
}
|
|
912
934
|
declare const AXP_ENTITY_DEFINITION_LOADER: InjectionToken<AXPEntityDefinitionLoader>;
|
|
913
935
|
declare class AXPEntityResolver {
|
|
914
936
|
private providers;
|
|
937
|
+
/** Aggregates list() from all entity loaders (including lazy). Populates fullName. */
|
|
938
|
+
listAll(): Promise<AXPEntityListEntry[]>;
|
|
915
939
|
get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
|
|
940
|
+
private resolveLoaders;
|
|
916
941
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEntityResolver, never>;
|
|
917
942
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPEntityResolver>;
|
|
918
943
|
}
|
|
@@ -1307,6 +1332,7 @@ declare class AXPMiddlewareEntityStorageService<TKey = any, TDetailDto extends A
|
|
|
1307
1332
|
}
|
|
1308
1333
|
|
|
1309
1334
|
declare function entityMasterCreateAction(): AXPEntityAction;
|
|
1335
|
+
declare function entityMasterEditAction(): AXPEntityAction;
|
|
1310
1336
|
declare function entityMasterBulkDeleteAction(): AXPEntityAction;
|
|
1311
1337
|
declare function entityMasterViewAction(): AXPEntityAction;
|
|
1312
1338
|
declare function entityMasterDeleteAction(): AXPEntityAction;
|
|
@@ -1837,6 +1863,7 @@ declare class AXPEntityListWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
1837
1863
|
protected deviceService: AXPDeviceService;
|
|
1838
1864
|
protected commandService: AXPCommandService;
|
|
1839
1865
|
protected eventService: AXPBroadcastEventService;
|
|
1866
|
+
protected expressionEvaluator: AXPExpressionEvaluatorService;
|
|
1840
1867
|
protected isMounted: _angular_core.WritableSignal<boolean>;
|
|
1841
1868
|
readonly entity: _angular_core.WritableSignal<AXPEntity | null>;
|
|
1842
1869
|
protected listNode: _angular_core.WritableSignal<AXPWidgetNode | null>;
|
|
@@ -1898,32 +1925,6 @@ declare class AXPEntityListWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
1898
1925
|
|
|
1899
1926
|
declare const AXPEntityListWidget: AXPWidgetConfig;
|
|
1900
1927
|
|
|
1901
|
-
declare class AXPLookupFilterWidgetEditComponent extends AXPValueWidgetComponent<any> {
|
|
1902
|
-
#private;
|
|
1903
|
-
protected editorPath: string;
|
|
1904
|
-
protected lookupWidgetRenderer: _angular_core.Signal<AXPWidgetRendererDirective | undefined>;
|
|
1905
|
-
protected entity: _angular_core.Signal<string>;
|
|
1906
|
-
protected textField: _angular_core.Signal<string>;
|
|
1907
|
-
protected valueField: _angular_core.Signal<string>;
|
|
1908
|
-
protected customFilter: _angular_core.Signal<AXDataSourceFilterOption>;
|
|
1909
|
-
protected multiple: _angular_core.Signal<boolean>;
|
|
1910
|
-
protected lookupNode: _angular_core.WritableSignal<AXPWidgetNode>;
|
|
1911
|
-
private shouldFocus;
|
|
1912
|
-
/**
|
|
1913
|
-
* Public focus method to trigger focusing
|
|
1914
|
-
*/
|
|
1915
|
-
focus(): void;
|
|
1916
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLookupFilterWidgetEditComponent, never>;
|
|
1917
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLookupFilterWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
1918
|
-
}
|
|
1919
|
-
|
|
1920
|
-
declare const AXPLookupFilterWidget: AXPWidgetConfig;
|
|
1921
|
-
declare module '@acorex/platform/layout/widget-core' {
|
|
1922
|
-
interface AXPWidgetTypesMap {
|
|
1923
|
-
lookupFilter: 'lookup-filter';
|
|
1924
|
-
}
|
|
1925
|
-
}
|
|
1926
|
-
|
|
1927
1928
|
declare class AXPLookupWidgetViewComponent extends AXPValueWidgetComponent<any> {
|
|
1928
1929
|
protected readonly formatService: AXFormatService;
|
|
1929
1930
|
protected readonly entityResolver: AXPEntityDefinitionRegistryService;
|
|
@@ -2014,6 +2015,16 @@ declare class AXPEntityDataSelectorService {
|
|
|
2014
2015
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPEntityDataSelectorService>;
|
|
2015
2016
|
}
|
|
2016
2017
|
|
|
2018
|
+
/**
|
|
2019
|
+
* Base interface for lookup widget look components
|
|
2020
|
+
* All look components should implement this interface to ensure consistency
|
|
2021
|
+
*/
|
|
2022
|
+
declare abstract class LookupWidgetLookBase {
|
|
2023
|
+
abstract refresh(): void;
|
|
2024
|
+
abstract focus(): void;
|
|
2025
|
+
abstract clear(): void;
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2017
2028
|
type AXPLookupWidgetLookType = 'select' | 'lookup';
|
|
2018
2029
|
interface AXPLookupWidgetOptions {
|
|
2019
2030
|
disabled?: boolean | AXPExpression;
|
|
@@ -2025,16 +2036,6 @@ interface AXPLookupWidgetOptions {
|
|
|
2025
2036
|
displayFormat?: string;
|
|
2026
2037
|
}
|
|
2027
2038
|
|
|
2028
|
-
/**
|
|
2029
|
-
* Base interface for lookup widget look components
|
|
2030
|
-
* All look components should implement this interface to ensure consistency
|
|
2031
|
-
*/
|
|
2032
|
-
declare abstract class LookupWidgetLookBase {
|
|
2033
|
-
abstract refresh(): void;
|
|
2034
|
-
abstract focus(): void;
|
|
2035
|
-
abstract clear(): void;
|
|
2036
|
-
}
|
|
2037
|
-
|
|
2038
2039
|
declare class AXPLookupWidgetEditComponent extends AXPValueWidgetComponent<any> {
|
|
2039
2040
|
#private;
|
|
2040
2041
|
protected readonly injector: Injector;
|
|
@@ -2044,14 +2045,14 @@ declare class AXPLookupWidgetEditComponent extends AXPValueWidgetComponent<any>
|
|
|
2044
2045
|
protected componentLook: _angular_core.Signal<LookupWidgetLookBase | undefined>;
|
|
2045
2046
|
protected expose: _angular_core.Signal<string | any[] | undefined>;
|
|
2046
2047
|
protected entity: _angular_core.Signal<string>;
|
|
2047
|
-
protected disabled: _angular_core.Signal<string>;
|
|
2048
|
+
protected disabled: _angular_core.Signal<string | boolean>;
|
|
2048
2049
|
protected columns: _angular_core.Signal<string[]>;
|
|
2049
2050
|
protected textField: _angular_core.Signal<string>;
|
|
2050
2051
|
protected hasClearButton: _angular_core.Signal<boolean>;
|
|
2051
2052
|
protected customFilter: _angular_core.Signal<AXDataSourceFilterOption>;
|
|
2053
|
+
protected filterMode: _angular_core.Signal<boolean>;
|
|
2052
2054
|
protected multiple: _angular_core.Signal<boolean>;
|
|
2053
2055
|
protected look: _angular_core.Signal<AXPLookupWidgetLookType>;
|
|
2054
|
-
protected allowClear: _angular_core.Signal<boolean>;
|
|
2055
2056
|
protected defaultTextField: _angular_core.Signal<string>;
|
|
2056
2057
|
protected displayField: _angular_core.Signal<string>;
|
|
2057
2058
|
protected valueField: _angular_core.Signal<string>;
|
|
@@ -2570,5 +2571,5 @@ declare class AXPShowListViewAction extends AXPWorkflowAction {
|
|
|
2570
2571
|
}
|
|
2571
2572
|
declare const AXPShowListViewWorkflow: AXPWorkflow;
|
|
2572
2573
|
|
|
2573
|
-
export { AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCategoryTreeService, AXPCreateEntityCommand, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEntityApplyUpdatesAction, AXPEntityCategoryTreeSelectorComponent, AXPEntityCategoryWidget, AXPEntityCategoryWidgetColumnComponent, AXPEntityCategoryWidgetEditComponent, AXPEntityCategoryWidgetViewComponent, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDataSelectorService, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityEventsKeys, AXPEntityFormBuilderService, AXPEntityListTableService, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPGetEntityDetailsQuery,
|
|
2574
|
-
export type { AXPAuditEvent, AXPAuditInfo, AXPDataSeeder, AXPEntityActionPlugin, AXPEntityCategoryWidgetOptions, AXPEntityChangeSet, AXPEntityConfigs, AXPEntityCreateDto, AXPEntityDataSelectorOptions, AXPEntityDataSelectorResult, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityDeleteOptions, AXPEntityDetailDto, AXPEntityDetailPopoverOptions, AXPEntityLayoutLike, AXPEntityLayoutPropertyLike, AXPEntityLayoutSectionLike, AXPEntityListItemDto, AXPEntityMasterListViewSortPropViewModel, AXPEntityModel, AXPEntityModifier, AXPEntityModifierContext, AXPEntityModifierProvider, AXPEntityOutputDto, AXPEntityPreloadEntity, AXPEntityStorageContext, AXPEntityStorageMiddleware, AXPEntityUpdateDto, AXPGetEntityDetailsQueryInput, AXPGetEntityDetailsQueryResult, AXPLookupWidgetLookType, AXPLookupWidgetOptions, AXPMultiSourceDefinition, AXPMultiSourceDefinitionProvider, AXPMultiSourceItem, AXPMultiSourceRef, AXPMultiSourceSearchResult, AXPMultiSourceSearchResultItem, AXPMultiSourceSelectorOpenConfig, AXPMultiSourceSelectorResult, AXPMultiSourceSelectorWidgetOptions, AXPMultiSourceValue, AXPOpenEntityDetailsCommandInput, AXPRecordOwnershipInfo, AXPRecordStateInfo, CategoryQueryEvent, CategoryQueryFunction, CategoryQueryResult, CategoryTreeConfig, CategoryTreeNodeData, SectionOrderConfig };
|
|
2574
|
+
export { AXMEntityCrudService, AXMEntityCrudServiceImpl, AXPCategoryTreeService, AXPCreateEntityCommand, AXPCreateEntityWorkflow, AXPDataSeederService, AXPDeleteEntityWorkflow, AXPEntitiesListDataSourceDefinition, AXPEntityApplyUpdatesAction, AXPEntityCategoryTreeSelectorComponent, AXPEntityCategoryWidget, AXPEntityCategoryWidgetColumnComponent, AXPEntityCategoryWidgetEditComponent, AXPEntityCategoryWidgetViewComponent, AXPEntityCommandTriggerViewModel, AXPEntityCreateEvent, AXPEntityCreatePopupAction, AXPEntityCreateSubmittedAction, AXPEntityCreateViewElementViewModel, AXPEntityCreateViewModelFactory, AXPEntityCreateViewSectionViewModel, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityDataSelectorService, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityEventsKeys, AXPEntityFormBuilderService, AXPEntityListTableService, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPGetEntityDetailsQuery, AXPLookupWidget, AXPLookupWidgetColumnComponent, AXPLookupWidgetEditComponent, AXPLookupWidgetViewComponent, AXPMiddlewareAbortError, AXPMiddlewareEntityStorageService, AXPModifyEntitySectionWorkflow, AXPMultiSourceDefinitionProviderContext, AXPMultiSourceDefinitionProviderService, AXPMultiSourceFederatedSearchService, AXPMultiSourceSelectorComponent, AXPMultiSourceSelectorService, AXPMultiSourceSelectorWidget, AXPMultiSourceSelectorWidgetColumnComponent, AXPMultiSourceSelectorWidgetEditComponent, AXPMultiSourceSelectorWidgetViewComponent, AXPMultiSourceType, AXPOpenEntityDetailsCommand, AXPQuickEntityModifyPopupAction, AXPQuickModifyEntityWorkflow, AXPShowDetailViewAction, AXPShowDetailsViewWorkflow, AXPShowListViewAction, AXPShowListViewWorkflow, AXPTruncatedBreadcrumbComponent, AXPUpdateEntityCommand, AXPViewEntityDetailsCommand, AXP_DATA_SEEDER_TOKEN, AXP_ENTITY_ACTION_PLUGIN, AXP_ENTITY_CONFIG_TOKEN, AXP_ENTITY_DEFINITION_LOADER, AXP_ENTITY_MODIFIER, AXP_ENTITY_STORAGE_BACKEND, AXP_ENTITY_STORAGE_MIDDLEWARE, AXP_MULTI_SOURCE_DEFINITION_PROVIDER, DEFAULT_PROPERTY_ORDER, DEFAULT_SECTION_ORDER, EntityBuilder, EntityDataAccessor, actionExists, cloneLayoutArrays, columnWidthMiddleware, columnWidthMiddlewareProvider, createLayoutOrderingMiddlewareProvider, createModifierContext, detectEntityChanges, ensureLayoutPropertyView, ensureLayoutSection, ensureListActions, entityDetailsCreateActions, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsNewEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterEditAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, eventDispatchMiddleware, isAXPMiddlewareAbortError, layoutOrderingMiddlewareFactory, layoutOrderingMiddlewareProvider };
|
|
2575
|
+
export type { AXPAuditEvent, AXPAuditInfo, AXPDataSeeder, AXPEntityActionPlugin, AXPEntityCategoryWidgetOptions, AXPEntityChangeSet, AXPEntityConfigs, AXPEntityCreateDto, AXPEntityDataSelectorOptions, AXPEntityDataSelectorResult, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityDeleteOptions, AXPEntityDetailDto, AXPEntityDetailPopoverOptions, AXPEntityLayoutLike, AXPEntityLayoutPropertyLike, AXPEntityLayoutSectionLike, AXPEntityListEntry, AXPEntityListInput, AXPEntityListItemDto, AXPEntityMasterListViewSortPropViewModel, AXPEntityModel, AXPEntityModifier, AXPEntityModifierContext, AXPEntityModifierProvider, AXPEntityOutputDto, AXPEntityPreloadEntity, AXPEntityStorageContext, AXPEntityStorageMiddleware, AXPEntityUpdateDto, AXPGetEntityDetailsQueryInput, AXPGetEntityDetailsQueryResult, AXPLookupWidgetLookType, AXPLookupWidgetOptions, AXPMultiSourceDefinition, AXPMultiSourceDefinitionProvider, AXPMultiSourceItem, AXPMultiSourceRef, AXPMultiSourceSearchResult, AXPMultiSourceSearchResultItem, AXPMultiSourceSelectorOpenConfig, AXPMultiSourceSelectorResult, AXPMultiSourceSelectorWidgetOptions, AXPMultiSourceValue, AXPOpenEntityDetailsCommandInput, AXPRecordOwnershipInfo, AXPRecordStateInfo, CategoryQueryEvent, CategoryQueryFunction, CategoryQueryResult, CategoryTreeConfig, CategoryTreeNodeData, SectionOrderConfig };
|
|
@@ -229,15 +229,24 @@ interface AXPWidgetProperty {
|
|
|
229
229
|
description?: string;
|
|
230
230
|
group: AXPWidgetPropertyGroup;
|
|
231
231
|
order?: number;
|
|
232
|
+
/**
|
|
233
|
+
* Controls whether the property title label is shown in the property viewer panel.
|
|
234
|
+
* Defaults to true when omitted.
|
|
235
|
+
*/
|
|
236
|
+
showLabel?: boolean;
|
|
232
237
|
schema: {
|
|
233
238
|
dataType: AXPDataType;
|
|
234
239
|
nullable?: boolean;
|
|
235
240
|
defaultValue?: any | string | ((context: any | null) => any);
|
|
236
241
|
interface: Required<Pick<AXPWidgetNode, 'path'>> & Omit<AXPWidgetNode, 'path'>;
|
|
237
242
|
};
|
|
238
|
-
options?: AXPOptionsData;
|
|
239
243
|
validations?: AXPValidationRules;
|
|
240
244
|
visible: boolean;
|
|
245
|
+
binding?: {
|
|
246
|
+
enabled: boolean;
|
|
247
|
+
/** When set, the expression is edited at path + '.' + optionKey (e.g. options.visibility). */
|
|
248
|
+
optionKey?: string;
|
|
249
|
+
};
|
|
241
250
|
}
|
|
242
251
|
declare function cloneProperty(property: AXPWidgetProperty, values: AXPPartialNested<AXPWidgetProperty>): AXPWidgetProperty;
|
|
243
252
|
declare function createStringProperty(ctor: {
|
|
@@ -457,7 +466,7 @@ declare abstract class AXPValueWidgetComponent<T = any | null, TOptions extends
|
|
|
457
466
|
protected validationRules: _angular_core.Signal<AXPValidationRules>;
|
|
458
467
|
protected extractValue(path: string): any;
|
|
459
468
|
setValue(value: T | null | undefined): void;
|
|
460
|
-
|
|
469
|
+
protected detectFullPath(): void;
|
|
461
470
|
protected handleValueChanged(e: AXValueChangedEvent<T>): void;
|
|
462
471
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPValueWidgetComponent<any, any>, never>;
|
|
463
472
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPValueWidgetComponent<any, any>>;
|
|
@@ -4,11 +4,11 @@ import * as _angular_core from '@angular/core';
|
|
|
4
4
|
import { OnInit, WritableSignal, EventEmitter, Signal, InjectionToken, OnDestroy, ElementRef, ChangeDetectorRef, ComponentRef } from '@angular/core';
|
|
5
5
|
import { AXBasePageComponent } from '@acorex/components/page';
|
|
6
6
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
7
|
-
import { AXPDeviceService, AXPValidationRule, AXPTag, AXPFileListItem, AXPExpressionEvaluatorService, AXPExecuteCommandResult, AXPActionMenuItem } from '@acorex/platform/core';
|
|
7
|
+
import { AXPDeviceService, AXPValidationRule, AXPTag, AXPFileListItem, AXPExpressionEvaluatorService, AXPExecuteCommandResult, AXPActionMenuItem, AXPDataSourceDefinition } from '@acorex/platform/core';
|
|
8
8
|
import { AXStyleColorType, AXClickEvent, AXStyleLookType, AXDataSource, AXValueChangedEvent, AXDataSourceFilterOption, AXDirection, AXButtonClickEvent } from '@acorex/cdk/common';
|
|
9
9
|
import { AXPClipBoardService, AXPLanguage, AXCFileUploaderAction, AXCFileUploaderCapabilities, AXPStatusDefinition, AXPStatusTransition, AXPStatusProvider } from '@acorex/platform/common';
|
|
10
10
|
import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
|
|
11
|
-
import { AXPDragDropListItem } from '@acorex/platform/layout/components';
|
|
11
|
+
import { AXPDragDropListItem, AXPSpreadsheetColumn } from '@acorex/platform/layout/components';
|
|
12
12
|
import { AXValidationService } from '@acorex/core/validation';
|
|
13
13
|
import { ImageToolConfig, EditorJsTool } from '@acorex/components/editor';
|
|
14
14
|
import { AXNumberFormatterOptions } from '@acorex/core/format';
|
|
@@ -39,10 +39,11 @@ declare const AXP_APPEARANCE_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
|
39
39
|
declare const AXP_ANIMATION_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
40
40
|
declare const AXP_TRIGGERS_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
/**
|
|
43
|
+
* Single property that edits all data-source-related options (dataSource, valueField, textField, filters)
|
|
44
|
+
* in one dedicated widget. Uses path: 'options' and setValue with merge (same pattern as flex-options).
|
|
45
|
+
*/
|
|
46
|
+
declare const AXP_DATA_SOURCE_OPTIONS_PROPERTY: AXPWidgetProperty;
|
|
46
47
|
|
|
47
48
|
declare const AXP_NAME_PROPERTY: AXPWidgetProperty;
|
|
48
49
|
declare const AXP_THEME_PROPERTY: AXPWidgetProperty;
|
|
@@ -4530,6 +4531,127 @@ declare module '@acorex/platform/layout/widget-core' {
|
|
|
4530
4531
|
}
|
|
4531
4532
|
}
|
|
4532
4533
|
|
|
4534
|
+
/**
|
|
4535
|
+
* Value stored at path 'options' for widgets that use the data-source-options property.
|
|
4536
|
+
* Other option keys (e.g. placeholder, hasClearButton) are preserved via merge on save.
|
|
4537
|
+
*/
|
|
4538
|
+
type DataSourceMode = 'exists' | 'array';
|
|
4539
|
+
interface AXPDataSourceOptionsValue {
|
|
4540
|
+
dataSource?: string | unknown[];
|
|
4541
|
+
valueField?: string;
|
|
4542
|
+
textField?: string;
|
|
4543
|
+
filters?: Record<string, unknown>;
|
|
4544
|
+
}
|
|
4545
|
+
|
|
4546
|
+
declare class AXPDataSourceOptionsWidgetEditComponent extends AXPValueWidgetComponent<Record<string, unknown>> {
|
|
4547
|
+
#private;
|
|
4548
|
+
protected readonly I18N: {
|
|
4549
|
+
readonly source: "@general:widgets.data-source-options.source";
|
|
4550
|
+
readonly modeExists: "@general:widgets.data-source-options.mode.exists";
|
|
4551
|
+
readonly modeArray: "@general:widgets.data-source-options.mode.array";
|
|
4552
|
+
readonly dataSource: "@general:widgets.data-source-options.data-source";
|
|
4553
|
+
readonly dataSourcePlaceholder: "@general:widgets.data-source-options.data-source-placeholder";
|
|
4554
|
+
readonly inlineData: "@general:widgets.data-source-options.inline-data";
|
|
4555
|
+
readonly editArray: "@general:widgets.data-source-options.edit-array";
|
|
4556
|
+
readonly valueField: "@general:widgets.data-source-options.value-field";
|
|
4557
|
+
readonly valueFieldPlaceholder: "@general:widgets.data-source-options.value-field-placeholder";
|
|
4558
|
+
readonly valueFieldPlaceholderDisabled: "@general:widgets.data-source-options.value-field-placeholder-disabled";
|
|
4559
|
+
readonly textField: "@general:widgets.data-source-options.text-field";
|
|
4560
|
+
readonly textFieldPlaceholder: "@general:widgets.data-source-options.text-field-placeholder";
|
|
4561
|
+
readonly textFieldPlaceholderDisabled: "@general:widgets.data-source-options.text-field-placeholder-disabled";
|
|
4562
|
+
readonly filters: "@general:widgets.data-source-options.filters";
|
|
4563
|
+
readonly filtersButtonEmpty: "@general:widgets.data-source-options.filters-button-empty";
|
|
4564
|
+
readonly filtersButtonWithCount: "@general:widgets.data-source-options.filters-button-with-count";
|
|
4565
|
+
readonly filtersModalTitle: "@general:widgets.data-source-options.filters-modal-title";
|
|
4566
|
+
readonly inlineArrayEditorTitle: "@general:widgets.data-source-options.inline-array-editor.title";
|
|
4567
|
+
};
|
|
4568
|
+
private readonly dataSourceDefinitionService;
|
|
4569
|
+
private readonly layoutBuilder;
|
|
4570
|
+
private readonly popupService;
|
|
4571
|
+
private readonly translationService;
|
|
4572
|
+
private readonly rendered;
|
|
4573
|
+
/** 'exists' = select from registered definitions, 'array' = inline array (editor later) */
|
|
4574
|
+
protected readonly dataSourceMode: _angular_core.WritableSignal<DataSourceMode>;
|
|
4575
|
+
protected readonly definitions: _angular_core.WritableSignal<AXPDataSourceDefinition<any>[]>;
|
|
4576
|
+
protected readonly selectedDefinition: _angular_core.WritableSignal<AXPDataSourceDefinition<any> | null>;
|
|
4577
|
+
/** Options for valueField select (from definition columns + valueField) */
|
|
4578
|
+
protected readonly valueFieldOptions: _angular_core.WritableSignal<{
|
|
4579
|
+
value: string;
|
|
4580
|
+
text: string;
|
|
4581
|
+
}[]>;
|
|
4582
|
+
/** Options for textField select (from definition columns + textField) */
|
|
4583
|
+
protected readonly textFieldOptions: _angular_core.WritableSignal<{
|
|
4584
|
+
value: string;
|
|
4585
|
+
text: string;
|
|
4586
|
+
}[]>;
|
|
4587
|
+
protected readonly definitionsDataSource: AXDataSource<AXPDataSourceDefinition<any>>;
|
|
4588
|
+
protected readonly valueFieldDataSource: _angular_core.Signal<AXDataSource<{
|
|
4589
|
+
value: string;
|
|
4590
|
+
text: string;
|
|
4591
|
+
}>>;
|
|
4592
|
+
protected readonly textFieldDataSource: _angular_core.Signal<AXDataSource<{
|
|
4593
|
+
value: string;
|
|
4594
|
+
text: string;
|
|
4595
|
+
}>>;
|
|
4596
|
+
/** Mode options for selection list (translated in init). */
|
|
4597
|
+
protected readonly modeItems: _angular_core.WritableSignal<{
|
|
4598
|
+
value: DataSourceMode;
|
|
4599
|
+
text: string;
|
|
4600
|
+
}[]>;
|
|
4601
|
+
/**
|
|
4602
|
+
* Toggled to force value/text field select-boxes to re-render when dataSource changes
|
|
4603
|
+
* (workaround for ax-select-box dropdown height going to 0 when data-source changes).
|
|
4604
|
+
*/
|
|
4605
|
+
protected readonly fieldSelectsKey: _angular_core.WritableSignal<boolean>;
|
|
4606
|
+
/** Whether value/text field selects should be disabled (no data source selected in 'exists' mode). */
|
|
4607
|
+
protected readonly valueTextFieldDisabled: _angular_core.Signal<boolean>;
|
|
4608
|
+
/** Number of filters that have a non-empty value (for empty vs non-empty button text). */
|
|
4609
|
+
protected readonly filterCount: _angular_core.Signal<number>;
|
|
4610
|
+
protected setDataSourceMode(mode: DataSourceMode): void;
|
|
4611
|
+
protected onDefinitionChange(event: AXValueChangedEvent<string | null>): void;
|
|
4612
|
+
protected onValueFieldChange(event: AXValueChangedEvent<string>): void;
|
|
4613
|
+
protected onTextFieldChange(event: AXValueChangedEvent<string>): void;
|
|
4614
|
+
protected openArrayEditor(): Promise<void>;
|
|
4615
|
+
protected openFilterEditor(): Promise<void>;
|
|
4616
|
+
private slugFilterTitle;
|
|
4617
|
+
private buildFieldOptions;
|
|
4618
|
+
private saveValue;
|
|
4619
|
+
/**
|
|
4620
|
+
* Force value/text field select-boxes to re-render (workaround for ax-select-box
|
|
4621
|
+
* dropdown height going to 0 when data-source changes).
|
|
4622
|
+
*/
|
|
4623
|
+
private revalidateFieldSelects;
|
|
4624
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPDataSourceOptionsWidgetEditComponent, never>;
|
|
4625
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPDataSourceOptionsWidgetEditComponent, "axp-data-source-options-widget-editor", never, {}, {}, never, never, true, never>;
|
|
4626
|
+
}
|
|
4627
|
+
|
|
4628
|
+
declare const AXPDataSourceOptionsWidget: AXPWidgetConfig;
|
|
4629
|
+
|
|
4630
|
+
declare class AXPInlineArrayEditorPopupComponent extends AXBasePageComponent {
|
|
4631
|
+
protected readonly INLINE_ARRAY_EDITOR_I18N: {
|
|
4632
|
+
readonly title: "@general:widgets.data-source-options.inline-array-editor.title";
|
|
4633
|
+
readonly cancel: "@general:actions.cancel.title";
|
|
4634
|
+
readonly save: "@general:actions.save.title";
|
|
4635
|
+
};
|
|
4636
|
+
/** Set by popup when opening; use getter/setter so assignment updates rowsModel. */
|
|
4637
|
+
private _valueField?;
|
|
4638
|
+
get valueField(): string;
|
|
4639
|
+
set valueField(v: string);
|
|
4640
|
+
private _textField?;
|
|
4641
|
+
get textField(): string;
|
|
4642
|
+
set textField(v: string);
|
|
4643
|
+
/** Set by popup when opening; setter copies into rowsModel. */
|
|
4644
|
+
set rows(v: Record<string, unknown>[] | undefined);
|
|
4645
|
+
/** Two-way editable rows (copy of initial rows, with _id for dynamic mode). */
|
|
4646
|
+
rowsModel: _angular_core.ModelSignal<Record<string, unknown>[]>;
|
|
4647
|
+
/** Column definitions for value and text, built from valueField/textField. */
|
|
4648
|
+
protected get columns(): AXPSpreadsheetColumn[];
|
|
4649
|
+
protected handleCancel(): void;
|
|
4650
|
+
protected handleSave(): void;
|
|
4651
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPInlineArrayEditorPopupComponent, never>;
|
|
4652
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPInlineArrayEditorPopupComponent, "axp-inline-array-editor-popup", never, { "rowsModel": { "alias": "rowsModel"; "required": false; "isSignal": true; }; }, { "rowsModel": "rowsModelChange"; }, never, never, true, never>;
|
|
4653
|
+
}
|
|
4654
|
+
|
|
4533
4655
|
declare class AXPDirectionWidgetEditComponent extends AXPValueWidgetComponent<string> {
|
|
4534
4656
|
protected direction: _angular_core.Signal<string>;
|
|
4535
4657
|
protected directionOptions: {
|
|
@@ -4887,5 +5009,5 @@ declare class AXPWidgetsModule {
|
|
|
4887
5009
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXPWidgetsModule>;
|
|
4888
5010
|
}
|
|
4889
5011
|
|
|
4890
|
-
export { AXPAddressWidget, AXPAddressWidgetColumnComponent, AXPAddressWidgetEditComponent, AXPAddressWidgetService, AXPAddressWidgetViewComponent, AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetColumnComponent, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetColumnComponent, AXPCheckBoxWidgetDesignerComponent, AXPCheckBoxWidgetEditComponent, AXPCheckBoxWidgetViewComponent, AXPCodeEditorWidget, AXPCodeEditorWidgetColumnComponent, AXPCodeEditorWidgetEditComponent, AXPCodeEditorWidgetViewComponent, AXPColorBoxWidget, AXPColorBoxWidgetColumnComponent, AXPColorBoxWidgetDesignerComponent, AXPColorBoxWidgetEditComponent, AXPColorBoxWidgetViewComponent, AXPColorPaletteWidget, AXPColorPaletteWidgetColumnComponent, AXPColorPaletteWidgetDesignerComponent, AXPColorPaletteWidgetEditComponent, AXPColorPaletteWidgetViewComponent, AXPConnectedDragDropListsWidget, AXPConnectedListsWidgetColumnComponent, AXPConnectedListsWidgetEditComponent, AXPConnectedListsWidgetViewComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDataListWidget, AXPDataListWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPDragDropListWidget, AXPEditFileUploaderCommand, AXPEditorJsWidget, AXPEditorJsWidgetColumnComponent, AXPEditorJsWidgetEditComponent, AXPEditorJsWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, AXPFileListComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPJsonViewerWidget, AXPJsonViewerWidgetEditComponent, AXPJsonViewerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPListWidgetColumnComponent, AXPListWidgetEditComponent, AXPListWidgetViewComponent, AXPMapWidgetEditComponent, AXPMapWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetViewComponent, AXPProgressBarWidget, AXPProgressBarWidgetColumnComponent, AXPProgressBarWidgetEditComponent, AXPProgressBarWidgetViewComponent, AXPQrcodeWidget, AXPQrcodeWidgetColumnComponent, AXPQrcodeWidgetEditComponent, AXPQrcodeWidgetViewComponent, AXPRatePickerWidget, AXPRatePickerWidgetColumnComponent, AXPRatePickerWidgetEditComponent, AXPRatePickerWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetViewComponent, AXPSchedulerPickerWidget, AXPSchedulerPickerWidgetColumnComponent, AXPSchedulerPickerWidgetEditComponent, AXPSchedulerPickerWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetViewComponent, AXPSelectLanguagePopup, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPStatusChipComponent, AXPStatusWidget, AXPStatusWidgetColumnComponent, AXPStatusWidgetEditComponent, AXPStatusWidgetViewComponent, AXPStepWizardWidget, AXPStepWizardWidgetViewComponent, AXPStopwatchWidget, AXPStopwatchWidgetViewComponent, AXPTableItemWidget, AXPTableItemWidgetDesignerComponent, AXPTableItemWidgetViewComponent, AXPTableWidget, AXPTableWidgetDesignerComponent, AXPTableWidgetViewComponent, AXPTagEditorWidget, AXPTagEditorWidgetColumnComponent, AXPTagEditorWidgetEditComponent, AXPTagEditorWidgetViewComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetViewComponent, AXPWidgetFieldConfiguratorWidget, AXPWidgetFieldConfiguratorWidgetColumnComponent, AXPWidgetFieldConfiguratorWidgetEditComponent, AXPWidgetsModule, AXP_ABSOLUTE_UNITS, AXP_ALLOW_CLEAR_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_ANIMATION_PROPERTY_GROUP, AXP_APPEARANCE_PROPERTY_GROUP, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BETWEEN_VALIDATION_PROPERTY, AXP_BG_COLOR_PROPERTY, AXP_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP,
|
|
4891
|
-
export type { AXPAbsoluteUnit, AXPAddressData, AXPAddressLabel, AXPAddressMode, AXPAddressWidgetColumnOptions, AXPAddressWidgetDesignerOptions, AXPAddressWidgetEditOptions, AXPAddressWidgetOptions, AXPAddressWidgetViewOptions, 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, AXPCodeEditorWidgetOptions, 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, AXPJsonViewerWidgetOptions, 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, AXPProgressBarWidgetColumnOptions, AXPProgressBarWidgetDesignerOptions, AXPProgressBarWidgetEditOptions, AXPProgressBarWidgetOptions, AXPProgressBarWidgetPrintOptions, AXPProgressBarWidgetViewOptions, AXPQrcodeWidgetDesignerOptions, AXPQrcodeWidgetEditOptions, AXPQrcodeWidgetOptions, AXPQrcodeWidgetPrintOptions, AXPQrcodeWidgetViewOptions, AXPRatePickerWidgetColumnOptions, AXPRatePickerWidgetDesignerOptions, AXPRatePickerWidgetEditOptions, AXPRatePickerWidgetOptions, AXPRatePickerWidgetPrintOptions, AXPRatePickerWidgetViewOptions, 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, AXPStatusTransitionWithTarget, AXPStatusWidgetColumnOptions, AXPStatusWidgetDesignerOptions, AXPStatusWidgetEditOptions, AXPStatusWidgetOptions, AXPStatusWidgetPrintOptions, AXPStatusWidgetViewOptions, AXPStepStatus, AXPStepWizardActionConfig, AXPStepWizardDirection, AXPStepWizardEvents, AXPStepWizardGlobalActions, AXPStepWizardGuard, AXPStepWizardGuardPayload, AXPStepWizardStatus, AXPStepWizardStep, AXPStepWizardWidgetDefinition, AXPStopwatchWidgetOptions, 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 };
|
|
5012
|
+
export { AXPAddressWidget, AXPAddressWidgetColumnComponent, AXPAddressWidgetEditComponent, AXPAddressWidgetService, AXPAddressWidgetViewComponent, AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetColumnComponent, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetColumnComponent, AXPCheckBoxWidgetDesignerComponent, AXPCheckBoxWidgetEditComponent, AXPCheckBoxWidgetViewComponent, AXPCodeEditorWidget, AXPCodeEditorWidgetColumnComponent, AXPCodeEditorWidgetEditComponent, AXPCodeEditorWidgetViewComponent, AXPColorBoxWidget, AXPColorBoxWidgetColumnComponent, AXPColorBoxWidgetDesignerComponent, AXPColorBoxWidgetEditComponent, AXPColorBoxWidgetViewComponent, AXPColorPaletteWidget, AXPColorPaletteWidgetColumnComponent, AXPColorPaletteWidgetDesignerComponent, AXPColorPaletteWidgetEditComponent, AXPColorPaletteWidgetViewComponent, AXPConnectedDragDropListsWidget, AXPConnectedListsWidgetColumnComponent, AXPConnectedListsWidgetEditComponent, AXPConnectedListsWidgetViewComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDataListWidget, AXPDataListWidgetViewComponent, AXPDataSourceOptionsWidget, AXPDataSourceOptionsWidgetEditComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPDragDropListWidget, AXPEditFileUploaderCommand, AXPEditorJsWidget, AXPEditorJsWidgetColumnComponent, AXPEditorJsWidgetEditComponent, AXPEditorJsWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, AXPFileListComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPInlineArrayEditorPopupComponent, AXPJsonViewerWidget, AXPJsonViewerWidgetEditComponent, AXPJsonViewerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPListWidgetColumnComponent, AXPListWidgetEditComponent, AXPListWidgetViewComponent, AXPMapWidgetEditComponent, AXPMapWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetViewComponent, AXPProgressBarWidget, AXPProgressBarWidgetColumnComponent, AXPProgressBarWidgetEditComponent, AXPProgressBarWidgetViewComponent, AXPQrcodeWidget, AXPQrcodeWidgetColumnComponent, AXPQrcodeWidgetEditComponent, AXPQrcodeWidgetViewComponent, AXPRatePickerWidget, AXPRatePickerWidgetColumnComponent, AXPRatePickerWidgetEditComponent, AXPRatePickerWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetViewComponent, AXPSchedulerPickerWidget, AXPSchedulerPickerWidgetColumnComponent, AXPSchedulerPickerWidgetEditComponent, AXPSchedulerPickerWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetViewComponent, AXPSelectLanguagePopup, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPStatusChipComponent, AXPStatusWidget, AXPStatusWidgetColumnComponent, AXPStatusWidgetEditComponent, AXPStatusWidgetViewComponent, AXPStepWizardWidget, AXPStepWizardWidgetViewComponent, AXPStopwatchWidget, AXPStopwatchWidgetViewComponent, AXPTableItemWidget, AXPTableItemWidgetDesignerComponent, AXPTableItemWidgetViewComponent, AXPTableWidget, AXPTableWidgetDesignerComponent, AXPTableWidgetViewComponent, AXPTagEditorWidget, AXPTagEditorWidgetColumnComponent, AXPTagEditorWidgetEditComponent, AXPTagEditorWidgetViewComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetViewComponent, AXPWidgetFieldConfiguratorWidget, AXPWidgetFieldConfiguratorWidgetColumnComponent, AXPWidgetFieldConfiguratorWidgetEditComponent, AXPWidgetsModule, AXP_ABSOLUTE_UNITS, AXP_ALLOW_CLEAR_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_ANIMATION_PROPERTY_GROUP, AXP_APPEARANCE_PROPERTY_GROUP, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BETWEEN_VALIDATION_PROPERTY, AXP_BG_COLOR_PROPERTY, AXP_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_OPTIONS_PROPERTY, AXP_DATE_FORMAT_PROPERTY, AXP_DEFAULT_ROW_COUNT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FIT_LINE_COUNT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_GREATER_THAN_VALIDATION_PROPERTY, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ADVANCED_GRID_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_ITEM_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTY, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SHOW_HEADER_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_LAYOUT_TABLE_PROPERTY_GROUP, AXP_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MAX_LINE_COUNT_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LINE_COUNT_PROPERTY, AXP_MULTI_LANGUAGE_PROPERTY, AXP_NAME_PROPERTY, AXP_NUMBER_SEPARATOR_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_RELATIVE_UNITS, AXP_RELATIVE_UNITS_NO_PERCENT, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_SHOW_PASSWORD_PROPERTY, AXP_SPACING_UNITS, AXP_SPIN_BUTTON_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMNS_PROPERTY, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TABLE_ITEM_COLSPAN_PROPERTY, AXP_TABLE_ITEM_ROWSPAN_PROPERTY, AXP_TEXT_ALIGN_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRIGGERS_PROPERTY, AXP_TRIGGERS_PROPERTY_GROUP, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_VERTICAL_ALIGN_PROPERTY, AXP_WIDGET_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 };
|
|
5013
|
+
export type { AXPAbsoluteUnit, AXPAddressData, AXPAddressLabel, AXPAddressMode, AXPAddressWidgetColumnOptions, AXPAddressWidgetDesignerOptions, AXPAddressWidgetEditOptions, AXPAddressWidgetOptions, AXPAddressWidgetViewOptions, 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, AXPCodeEditorWidgetOptions, 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, AXPDataSourceOptionsValue, 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, AXPJsonViewerWidgetOptions, 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, AXPProgressBarWidgetColumnOptions, AXPProgressBarWidgetDesignerOptions, AXPProgressBarWidgetEditOptions, AXPProgressBarWidgetOptions, AXPProgressBarWidgetPrintOptions, AXPProgressBarWidgetViewOptions, AXPQrcodeWidgetDesignerOptions, AXPQrcodeWidgetEditOptions, AXPQrcodeWidgetOptions, AXPQrcodeWidgetPrintOptions, AXPQrcodeWidgetViewOptions, AXPRatePickerWidgetColumnOptions, AXPRatePickerWidgetDesignerOptions, AXPRatePickerWidgetEditOptions, AXPRatePickerWidgetOptions, AXPRatePickerWidgetPrintOptions, AXPRatePickerWidgetViewOptions, 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, AXPStatusTransitionWithTarget, AXPStatusWidgetColumnOptions, AXPStatusWidgetDesignerOptions, AXPStatusWidgetEditOptions, AXPStatusWidgetOptions, AXPStatusWidgetPrintOptions, AXPStatusWidgetViewOptions, AXPStepStatus, AXPStepWizardActionConfig, AXPStepWizardDirection, AXPStepWizardEvents, AXPStepWizardGlobalActions, AXPStepWizardGuard, AXPStepWizardGuardPayload, AXPStepWizardStatus, AXPStepWizardStep, AXPStepWizardWidgetDefinition, AXPStopwatchWidgetOptions, 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, DataSourceMode, StrategyConfig };
|