@acorex/platform 21.0.0-next.57 → 21.0.0-next.63
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-common.mjs +11 -0
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +182 -5
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +441 -106
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +1 -0
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +300 -3
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared.mjs +31 -46
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +35 -3
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +11 -0
- package/types/acorex-platform-layout-components.d.ts +55 -2
- package/types/acorex-platform-layout-entity.d.ts +147 -51
- package/types/acorex-platform-layout-widget-core.d.ts +1 -0
- package/types/acorex-platform-layout-widgets.d.ts +25 -3
- package/types/acorex-platform-workflow.d.ts +31 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.63",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.2-next.0",
|
|
6
6
|
"@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.2-next.0",
|
|
@@ -2549,6 +2549,7 @@ declare enum AXPSystemStatusType {
|
|
|
2549
2549
|
Cancelled = "cancelled",
|
|
2550
2550
|
Draft = "draft",
|
|
2551
2551
|
PendingReview = "pending-review",
|
|
2552
|
+
WaitingSignOff = "waiting-sign-off",
|
|
2552
2553
|
Approved = "approved",
|
|
2553
2554
|
Published = "published",
|
|
2554
2555
|
Archived = "archived",
|
|
@@ -2668,6 +2669,16 @@ declare const AXPSystemStatuses: Readonly<{
|
|
|
2668
2669
|
readonly isInitial: false;
|
|
2669
2670
|
readonly isFinal: false;
|
|
2670
2671
|
};
|
|
2672
|
+
readonly WaitingSignOff: {
|
|
2673
|
+
readonly name: AXPSystemStatusType.WaitingSignOff;
|
|
2674
|
+
readonly title: string;
|
|
2675
|
+
readonly icon: "fa-light fa-clock";
|
|
2676
|
+
readonly color: "warning";
|
|
2677
|
+
readonly description: string;
|
|
2678
|
+
readonly order: 3;
|
|
2679
|
+
readonly isInitial: false;
|
|
2680
|
+
readonly isFinal: false;
|
|
2681
|
+
};
|
|
2671
2682
|
readonly Approved: {
|
|
2672
2683
|
readonly name: AXPSystemStatusType.Approved;
|
|
2673
2684
|
readonly title: string;
|
|
@@ -1538,6 +1538,59 @@ declare class AXPMenuCustomizerComponent implements OnInit {
|
|
|
1538
1538
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPMenuCustomizerComponent, "axp-menu-customizer", never, { "scopeKey": { "alias": "scopeKey"; "required": true; "isSignal": true; }; "showToolbar": { "alias": "showToolbar"; "required": false; "isSignal": true; }; "allowAddItems": { "alias": "allowAddItems"; "required": false; "isSignal": true; }; "dragBehavior": { "alias": "dragBehavior"; "required": false; "isSignal": true; }; "dragArea": { "alias": "dragArea"; "required": false; "isSignal": true; }; }, { "saved": "saved"; "cancelled": "cancelled"; }, never, never, true, never>;
|
|
1539
1539
|
}
|
|
1540
1540
|
|
|
1541
|
+
/** Resolved value chip styling for one outcome row. */
|
|
1542
|
+
interface AXPOutcomeResultValuePresentation {
|
|
1543
|
+
classes: string;
|
|
1544
|
+
color?: string;
|
|
1545
|
+
backgroundColor?: string;
|
|
1546
|
+
borderColor?: string;
|
|
1547
|
+
}
|
|
1548
|
+
/** One label/value row in the outcome results list. */
|
|
1549
|
+
interface AXPOutcomeResultRow {
|
|
1550
|
+
key: string;
|
|
1551
|
+
label: string;
|
|
1552
|
+
value: unknown;
|
|
1553
|
+
iconClass?: string;
|
|
1554
|
+
valuePresentation: AXPOutcomeResultValuePresentation;
|
|
1555
|
+
}
|
|
1556
|
+
/** Optional section grouping for outcome rows. */
|
|
1557
|
+
interface AXPOutcomeResultSection {
|
|
1558
|
+
trackKey: string;
|
|
1559
|
+
title: string;
|
|
1560
|
+
description?: string;
|
|
1561
|
+
items: AXPOutcomeResultRow[];
|
|
1562
|
+
}
|
|
1563
|
+
/** Data consumed by {@link AXPOutcomeResultsViewerComponent} and the outcome-results-viewer widget. */
|
|
1564
|
+
interface AXPOutcomeResultsViewModel {
|
|
1565
|
+
sections?: AXPOutcomeResultSection[];
|
|
1566
|
+
/** Flat rows when sections are omitted or for single-section collapse. */
|
|
1567
|
+
rows?: AXPOutcomeResultRow[];
|
|
1568
|
+
/** Optional heading (e.g. from host dialog or post-submit step). */
|
|
1569
|
+
title?: string;
|
|
1570
|
+
/** Shown when there are no rows. */
|
|
1571
|
+
emptyMessage?: string;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
/**
|
|
1575
|
+
* Read-only outcome results list (label/value rows with optional section grouping).
|
|
1576
|
+
*/
|
|
1577
|
+
declare class AXPOutcomeResultsViewerComponent {
|
|
1578
|
+
model: _angular_core.InputSignal<AXPOutcomeResultsViewModel | null>;
|
|
1579
|
+
/** Optional heading above the list (overrides {@link AXPOutcomeResultsViewModel.title}). */
|
|
1580
|
+
title: _angular_core.InputSignal<string | undefined>;
|
|
1581
|
+
/** Shown when there are no rows (overrides {@link AXPOutcomeResultsViewModel.emptyMessage}). */
|
|
1582
|
+
emptyMessage: _angular_core.InputSignal<string | undefined>;
|
|
1583
|
+
protected readonly resolvedTitle: _angular_core.Signal<string | undefined>;
|
|
1584
|
+
protected readonly resolvedEmptyMessage: _angular_core.Signal<string | undefined>;
|
|
1585
|
+
protected readonly sections: _angular_core.Signal<AXPOutcomeResultSection[]>;
|
|
1586
|
+
protected readonly flatRows: _angular_core.Signal<AXPOutcomeResultRow[]>;
|
|
1587
|
+
protected readonly showGroupedSections: _angular_core.Signal<boolean>;
|
|
1588
|
+
protected readonly hasRows: _angular_core.Signal<boolean>;
|
|
1589
|
+
protected formatValue(value: unknown): string;
|
|
1590
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPOutcomeResultsViewerComponent, never>;
|
|
1591
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPOutcomeResultsViewerComponent, "axp-outcome-results-viewer", never, { "model": { "alias": "model"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1541
1594
|
/**
|
|
1542
1595
|
* Definition for a page component that can be registered and loaded dynamically
|
|
1543
1596
|
*/
|
|
@@ -3069,5 +3122,5 @@ declare class AXPWidgetPropertyViewerService {
|
|
|
3069
3122
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPWidgetPropertyViewerService>;
|
|
3070
3123
|
}
|
|
3071
3124
|
|
|
3072
|
-
export { AXPActivityLogComponent, AXPAvatarComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPColumnItemListComponent, AXPCompareViewComponent, AXPConditionBuilderComponent, AXPConditionBuilderConditionComponent, AXPDataSelectorComponent, AXPDataSelectorService, AXPDragDropListComponent, AXPExpressionFieldDefinitions, AXPImageEditorPopupComponent, AXPImageEditorService, AXPItemConfiguratorComponent, AXPLayoutFloatingZoomBarComponent, AXPLayoutSideDetailPanelComponent, AXPLayoutSideDetailPanelSectionDirective, AXPLogoComponent, AXPMarkdownTemplateDirective, AXPMarkdownViewerComponent, AXPMenuBadgeHelper, AXPMenuCustomizerComponent, AXPMenuCustomizerService, AXPPageComponentRegistryService, AXPPreloadFiltersComponent, AXPPropertyViewerComponent, AXPPropertyViewerPopupComponent, AXPPropertyViewerService, AXPQueryColumnsComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryViewsComponent, AXPRepeaterRowsLayoutComponent, AXPResourceAppointmentBoardProvider, AXPResourceAppointmentComponent, AXPResourceAppointmentService, AXPSectionItemsBuilderComponent, AXPSpreadsheetComponent, AXPStandardSectionItemsBuilderComponent, AXPStateMessageComponent, AXPStopwatchComponent, AXPTableColumnsEditorComponent, AXPTableColumnsEditorPopupComponent, AXPTableColumnsEditorService, AXPTableDataEditorComponent, AXPTableDataEditorPopupComponent, AXPTableDataEditorService, 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_EXPRESSION_LOGIC_DEFINITIONS, AXP_EXPRESSION_OPERATION_DEFINITIONS, AXP_MENU_CUSTOMIZER_SERVICE, AXP_PAGE_COMPONENT_PROVIDER, AXP_RESOURCE_APPOINTMENT_PROVIDER, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER, STANDARD_SECTION_ITEMS_SECTION_TABS, buildPropertyViewerInitialContextFromProperties, buildPropertyViewerTabsFromProperties, buildTableColumnsEditorLayout, getFieldDefinitions, getLogicDefinition, getOperationDefinition, isPropertyBindingExpressionFormValue, preparePropertyForViewer, preparePropertyViewerTabs, registerFieldDefinitions, withValidationsOnEditorNode };
|
|
3073
|
-
export type { AXPBuilderBadge, AXPBuilderBadgeVariant, AXPBuilderDefinition, AXPBuilderItem, AXPBuilderItemIconTone, AXPBuilderItemViewModel, AXPBuilderSection, AXPBuilderTexts, AXPBuilderValue, AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPColumnItemListItem, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPDataSelectorAllowCreate, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDragDropListConfig, AXPDragDropListDropEvent, AXPDragDropListItem, AXPExpressionFieldDefinition, AXPExpressionGroupNode, AXPExpressionLogicDefinition, AXPExpressionLogicType, AXPExpressionNode, AXPExpressionNodeId, AXPExpressionOperationDefinition, AXPExpressionOperationNode, AXPExpressionOperationType, AXPExpressionTree, AXPExpressionValueOperand, AXPExpressionValueSourceType, AXPImageEditorOpenOptions, AXPLayoutSideDetailPanelEmptyState, AXPLayoutSideDetailPanelHeader, AXPLayoutSideDetailPanelHeaderIcon, AXPLayoutSideDetailPanelRow, AXPLayoutSideDetailPanelRowFormat, AXPLayoutSideDetailPanelSection, AXPMenuCustomizerAction, AXPMenuCustomizerItem, AXPMenuCustomizerItemType, AXPMenuCustomizerNodeData, AXPMenuCustomizerNodeMetadata, AXPMenuCustomizerState, AXPPageComponentDefinition, AXPPageComponentProvider, AXPPreloadFiltersApplyEvent, AXPPropertyViewerActionRef, AXPPropertyViewerChangedEvent, AXPPropertyViewerConfig, AXPPropertyViewerGroup, AXPPropertyViewerResult, AXPPropertyViewerTab, AXPResourceAppointmentActionMenuItem, AXPResourceAppointmentBoardFilter, AXPResourceAppointmentItem, AXPResourceAppointmentResource, AXPResourceAppointmentStatus, AXPSpreadsheetCellChangeEvent, AXPSpreadsheetCellValue, AXPSpreadsheetColumn, AXPSpreadsheetConfig, AXPSpreadsheetData, AXPSpreadsheetItem, AXPSpreadsheetRowChangeEvent, AXPSpreadsheetRowMode, AXPStandardSectionFormContext, AXPStandardSectionItemsBuilderConfig, AXPTableColumnDefinition, AXPTableColumnsEditorOpenOptions, AXPTableDataEditorOpenOptions, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyInjection, AXPWidgetPropertyViewerConfig, AXPWidgetPropertyViewerResult, ConditionBuilderSelectedField, IAXPPropertyViewerDialogBuilder, IAXPPropertyViewerRoot, IAXPWidgetPropertyViewerDialogBuilder, IAXPWidgetPropertyViewerRoot, ItemConfiguratorListItem, StateMode };
|
|
3125
|
+
export { AXPActivityLogComponent, AXPAvatarComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPColumnItemListComponent, AXPCompareViewComponent, AXPConditionBuilderComponent, AXPConditionBuilderConditionComponent, AXPDataSelectorComponent, AXPDataSelectorService, AXPDragDropListComponent, AXPExpressionFieldDefinitions, AXPImageEditorPopupComponent, AXPImageEditorService, AXPItemConfiguratorComponent, AXPLayoutFloatingZoomBarComponent, AXPLayoutSideDetailPanelComponent, AXPLayoutSideDetailPanelSectionDirective, AXPLogoComponent, AXPMarkdownTemplateDirective, AXPMarkdownViewerComponent, AXPMenuBadgeHelper, AXPMenuCustomizerComponent, AXPMenuCustomizerService, AXPOutcomeResultsViewerComponent, AXPPageComponentRegistryService, AXPPreloadFiltersComponent, AXPPropertyViewerComponent, AXPPropertyViewerPopupComponent, AXPPropertyViewerService, AXPQueryColumnsComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryViewsComponent, AXPRepeaterRowsLayoutComponent, AXPResourceAppointmentBoardProvider, AXPResourceAppointmentComponent, AXPResourceAppointmentService, AXPSectionItemsBuilderComponent, AXPSpreadsheetComponent, AXPStandardSectionItemsBuilderComponent, AXPStateMessageComponent, AXPStopwatchComponent, AXPTableColumnsEditorComponent, AXPTableColumnsEditorPopupComponent, AXPTableColumnsEditorService, AXPTableDataEditorComponent, AXPTableDataEditorPopupComponent, AXPTableDataEditorService, 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_EXPRESSION_LOGIC_DEFINITIONS, AXP_EXPRESSION_OPERATION_DEFINITIONS, AXP_MENU_CUSTOMIZER_SERVICE, AXP_PAGE_COMPONENT_PROVIDER, AXP_RESOURCE_APPOINTMENT_PROVIDER, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER, STANDARD_SECTION_ITEMS_SECTION_TABS, buildPropertyViewerInitialContextFromProperties, buildPropertyViewerTabsFromProperties, buildTableColumnsEditorLayout, getFieldDefinitions, getLogicDefinition, getOperationDefinition, isPropertyBindingExpressionFormValue, preparePropertyForViewer, preparePropertyViewerTabs, registerFieldDefinitions, withValidationsOnEditorNode };
|
|
3126
|
+
export type { AXPBuilderBadge, AXPBuilderBadgeVariant, AXPBuilderDefinition, AXPBuilderItem, AXPBuilderItemIconTone, AXPBuilderItemViewModel, AXPBuilderSection, AXPBuilderTexts, AXPBuilderValue, AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPColumnItemListItem, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPDataSelectorAllowCreate, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDragDropListConfig, AXPDragDropListDropEvent, AXPDragDropListItem, AXPExpressionFieldDefinition, AXPExpressionGroupNode, AXPExpressionLogicDefinition, AXPExpressionLogicType, AXPExpressionNode, AXPExpressionNodeId, AXPExpressionOperationDefinition, AXPExpressionOperationNode, AXPExpressionOperationType, AXPExpressionTree, AXPExpressionValueOperand, AXPExpressionValueSourceType, AXPImageEditorOpenOptions, AXPLayoutSideDetailPanelEmptyState, AXPLayoutSideDetailPanelHeader, AXPLayoutSideDetailPanelHeaderIcon, AXPLayoutSideDetailPanelRow, AXPLayoutSideDetailPanelRowFormat, AXPLayoutSideDetailPanelSection, AXPMenuCustomizerAction, AXPMenuCustomizerItem, AXPMenuCustomizerItemType, AXPMenuCustomizerNodeData, AXPMenuCustomizerNodeMetadata, AXPMenuCustomizerState, AXPOutcomeResultRow, AXPOutcomeResultSection, AXPOutcomeResultValuePresentation, AXPOutcomeResultsViewModel, AXPPageComponentDefinition, AXPPageComponentProvider, AXPPreloadFiltersApplyEvent, AXPPropertyViewerActionRef, AXPPropertyViewerChangedEvent, AXPPropertyViewerConfig, AXPPropertyViewerGroup, AXPPropertyViewerResult, AXPPropertyViewerTab, AXPResourceAppointmentActionMenuItem, AXPResourceAppointmentBoardFilter, AXPResourceAppointmentItem, AXPResourceAppointmentResource, AXPResourceAppointmentStatus, AXPSpreadsheetCellChangeEvent, AXPSpreadsheetCellValue, AXPSpreadsheetColumn, AXPSpreadsheetConfig, AXPSpreadsheetData, AXPSpreadsheetItem, AXPSpreadsheetRowChangeEvent, AXPSpreadsheetRowMode, AXPStandardSectionFormContext, AXPStandardSectionItemsBuilderConfig, AXPTableColumnDefinition, AXPTableColumnsEditorOpenOptions, AXPTableDataEditorOpenOptions, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyInjection, AXPWidgetPropertyViewerConfig, AXPWidgetPropertyViewerResult, ConditionBuilderSelectedField, IAXPPropertyViewerDialogBuilder, IAXPPropertyViewerRoot, IAXPWidgetPropertyViewerDialogBuilder, IAXPWidgetPropertyViewerRoot, ItemConfiguratorListItem, StateMode };
|
|
@@ -27,6 +27,7 @@ import { AXBasePageComponent } from '@acorex/components/page';
|
|
|
27
27
|
import { AXFormatService } from '@acorex/core/format';
|
|
28
28
|
import { AXTagBoxComponent } from '@acorex/components/tag-box';
|
|
29
29
|
import * as _acorex_core_translation from '@acorex/core/translation';
|
|
30
|
+
import { AXTranslationService } from '@acorex/core/translation';
|
|
30
31
|
import { AXPProviderSelectWidgetEditBase, AXPDataListWidgetComponentOptions } from '@acorex/platform/layout/widgets';
|
|
31
32
|
|
|
32
33
|
declare class AXPCreateEntityCommand implements AXPCommand<any, any> {
|
|
@@ -152,10 +153,13 @@ declare class AXPOpenEntityDetailsCommand implements AXPCommand<AXPOpenEntityDet
|
|
|
152
153
|
declare class AXPEntityDetailPopoverComponent {
|
|
153
154
|
private readonly commandService;
|
|
154
155
|
private readonly queryService;
|
|
156
|
+
private readonly formatService;
|
|
157
|
+
private readonly translation;
|
|
155
158
|
entity: _angular_core.InputSignal<string>;
|
|
156
159
|
entityId: _angular_core.InputSignal<string | number>;
|
|
157
160
|
textField: _angular_core.InputSignal<string>;
|
|
158
161
|
valueField: _angular_core.InputSignal<string>;
|
|
162
|
+
displayTitle: _angular_core.InputSignal<string>;
|
|
159
163
|
item: _angular_core.InputSignal<AXPMetaData | undefined>;
|
|
160
164
|
breadcrumb: _angular_core.InputSignal<string | null>;
|
|
161
165
|
protected detailPopover: _angular_core.Signal<AXPopoverComponent | undefined>;
|
|
@@ -164,6 +168,7 @@ declare class AXPEntityDetailPopoverComponent {
|
|
|
164
168
|
protected isDetailPopoverOpen: _angular_core.WritableSignal<boolean>;
|
|
165
169
|
/** Placeholder rows for the loading skeleton (matches typical property count). */
|
|
166
170
|
protected readonly loadingSkeletonRows: readonly [1, 2, 3, 4, 5];
|
|
171
|
+
protected readonly headerTitle: _angular_core.Signal<string>;
|
|
167
172
|
/**
|
|
168
173
|
* Stable list of property widgets for the template. Must be a signal (computed), not a method:
|
|
169
174
|
* calling a method from the template rebuilds nodes every CD cycle and can make the widget renderer loop.
|
|
@@ -183,6 +188,7 @@ declare class AXPEntityDetailPopoverComponent {
|
|
|
183
188
|
hide(): void;
|
|
184
189
|
protected onDetailPopoverOpenChange(event: any): void;
|
|
185
190
|
protected navigateToDetails(): Promise<void>;
|
|
191
|
+
private resolveLookupDisplayLabel;
|
|
186
192
|
/**
|
|
187
193
|
* Returns true if a value is meaningful for display (non-empty/non-null).
|
|
188
194
|
*/
|
|
@@ -205,7 +211,7 @@ declare class AXPEntityDetailPopoverComponent {
|
|
|
205
211
|
*/
|
|
206
212
|
private resolveDataPath;
|
|
207
213
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEntityDetailPopoverComponent, never>;
|
|
208
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPEntityDetailPopoverComponent, "axp-entity-detail-popover", never, { "entity": { "alias": "entity"; "required": true; "isSignal": true; }; "entityId": { "alias": "entityId"; "required": true; "isSignal": true; }; "textField": { "alias": "textField"; "required": false; "isSignal": true; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "item": { "alias": "item"; "required": false; "isSignal": true; }; "breadcrumb": { "alias": "breadcrumb"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
214
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPEntityDetailPopoverComponent, "axp-entity-detail-popover", never, { "entity": { "alias": "entity"; "required": true; "isSignal": true; }; "entityId": { "alias": "entityId"; "required": true; "isSignal": true; }; "textField": { "alias": "textField"; "required": false; "isSignal": true; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "displayTitle": { "alias": "displayTitle"; "required": false; "isSignal": true; }; "item": { "alias": "item"; "required": false; "isSignal": true; }; "breadcrumb": { "alias": "breadcrumb"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
209
215
|
}
|
|
210
216
|
|
|
211
217
|
interface AXPEntityDetailPopoverOptions {
|
|
@@ -214,6 +220,7 @@ interface AXPEntityDetailPopoverOptions {
|
|
|
214
220
|
item: AXPMetaData;
|
|
215
221
|
textField?: string;
|
|
216
222
|
valueField?: string;
|
|
223
|
+
displayTitle?: string;
|
|
217
224
|
breadcrumb?: string;
|
|
218
225
|
}
|
|
219
226
|
declare class AXPEntityDetailPopoverService {
|
|
@@ -1217,19 +1224,58 @@ interface AXPRecordOwnershipInfo {
|
|
|
1217
1224
|
applicationId?: string;
|
|
1218
1225
|
userId?: string;
|
|
1219
1226
|
}
|
|
1227
|
+
/**
|
|
1228
|
+
* Workflow linkage for a domain record (set when a run is started or bound).
|
|
1229
|
+
*
|
|
1230
|
+
* Populated by workflow engine, middleware, or integration — not declared as
|
|
1231
|
+
* entity definition properties. Entities with the `workflow` plugin may carry
|
|
1232
|
+
* this object when a {@link WorkflowManagement.WorkflowInstance} drives the row.
|
|
1233
|
+
*/
|
|
1234
|
+
interface AXPRecordWorkflowInfo {
|
|
1235
|
+
/** Workflow instance id for this record's active or last run. */
|
|
1236
|
+
instanceId?: string | null;
|
|
1237
|
+
/** Logical workflow definition id (same as WorkflowInstance.definitionId). */
|
|
1238
|
+
definitionId?: string | null;
|
|
1239
|
+
/** Correlation id for idempotent start and related-run lookup (same as WorkflowInstance.correlationId). */
|
|
1240
|
+
correlationId?: string | null;
|
|
1241
|
+
/** When set, pins the run to a workflow definition version; omit for current default. */
|
|
1242
|
+
pinnedVersion?: number | null;
|
|
1243
|
+
}
|
|
1244
|
+
/** Entity query filter field for {@link AXPRecordWorkflowInfo.instanceId}. */
|
|
1245
|
+
declare const AXP_RECORD_WORKFLOW_INFO_INSTANCE_ID_FIELD: "workflowInfo.instanceId";
|
|
1246
|
+
/** Entity query filter field for {@link AXPRecordWorkflowInfo.correlationId}. */
|
|
1247
|
+
declare const AXP_RECORD_WORKFLOW_INFO_CORRELATION_ID_FIELD: "workflowInfo.correlationId";
|
|
1248
|
+
/** Entity query filter field for {@link AXPRecordWorkflowInfo.definitionId}. */
|
|
1249
|
+
declare const AXP_RECORD_WORKFLOW_INFO_DEFINITION_ID_FIELD: "workflowInfo.definitionId";
|
|
1250
|
+
/** Returns a trimmed workflow instance id from a record, if present. */
|
|
1251
|
+
declare function getRecordWorkflowInstanceId(record: {
|
|
1252
|
+
workflowInfo?: AXPRecordWorkflowInfo | null;
|
|
1253
|
+
} | null | undefined): string | null;
|
|
1254
|
+
/** Returns a trimmed workflow correlation id from a record, if present. */
|
|
1255
|
+
declare function getRecordWorkflowCorrelationId(record: {
|
|
1256
|
+
workflowInfo?: AXPRecordWorkflowInfo | null;
|
|
1257
|
+
} | null | undefined): string | null;
|
|
1258
|
+
/** Builds canonical workflow metadata for a domain record (engine / middleware). */
|
|
1259
|
+
declare function buildAXPRecordWorkflowInfo(params: {
|
|
1260
|
+
instanceId: string;
|
|
1261
|
+
definitionId?: string | null;
|
|
1262
|
+
correlationId?: string | null;
|
|
1263
|
+
pinnedVersion?: number | null;
|
|
1264
|
+
}): AXPRecordWorkflowInfo;
|
|
1220
1265
|
/**
|
|
1221
1266
|
* Base shape for **entity row** TypeScript models across modules: a stable
|
|
1222
1267
|
* identifier plus optional platform metadata.
|
|
1223
1268
|
*
|
|
1224
1269
|
* Module-specific interfaces extend this with domain properties
|
|
1225
1270
|
* (`extends AXPEntityModel<string>` / `AXPEntityModel<Id>`) while reusing
|
|
1226
|
-
* `auditInfo`, `stateInfo`, and `
|
|
1271
|
+
* `auditInfo`, `stateInfo`, `ownershipInfo`, and `workflowInfo` when the backend sends them.
|
|
1227
1272
|
*/
|
|
1228
1273
|
interface AXPEntityModel<Id> {
|
|
1229
1274
|
id: Id;
|
|
1230
1275
|
auditInfo?: AXPRecordAuditInfo;
|
|
1231
1276
|
stateInfo?: AXPRecordStateInfo;
|
|
1232
1277
|
ownershipInfo?: AXPRecordOwnershipInfo;
|
|
1278
|
+
workflowInfo?: AXPRecordWorkflowInfo;
|
|
1233
1279
|
}
|
|
1234
1280
|
interface AXPEntityCreateDto {
|
|
1235
1281
|
}
|
|
@@ -2701,8 +2747,81 @@ declare class AXPEntityListWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
2701
2747
|
|
|
2702
2748
|
declare const AXPEntityListWidget: AXPWidgetConfig;
|
|
2703
2749
|
|
|
2750
|
+
type AXPLookupWidgetLookType = 'select' | 'lookup';
|
|
2751
|
+
/**
|
|
2752
|
+
* How the lookup column resolves related items for display in entity lists.
|
|
2753
|
+
* - `hydrated`: titles (and optional ids) are already on the row; inline preview + overflow popover use row data only.
|
|
2754
|
+
* - `idsWithCount`: ids and optional count live on the row; the cell shows a count summary and loads titles via entity `byKey` when the popover opens.
|
|
2755
|
+
* - `countOnly`: only a count is on the row; the popover loads ids/titles via a registered `AXPQuery` when opened.
|
|
2756
|
+
*/
|
|
2757
|
+
type AXPLookupColumnResolveStrategy = 'hydrated' | 'idsWithCount' | 'countOnly';
|
|
2758
|
+
/**
|
|
2759
|
+
* Column list only: controls how the lookup column loads and displays related items in grids.
|
|
2760
|
+
* Omitted or empty strategy defaults to `hydrated` at runtime.
|
|
2761
|
+
*/
|
|
2762
|
+
interface AXPLookupColumnResolveOptions {
|
|
2763
|
+
/** Default `hydrated` when omitted. */
|
|
2764
|
+
strategy?: AXPLookupColumnResolveStrategy;
|
|
2765
|
+
/** Lodash-style path on `rowData` for the displayed count (e.g. `rolesCount`). */
|
|
2766
|
+
countFieldPath?: string;
|
|
2767
|
+
/** Lodash-style path on `rowData` for the related id list (`idsWithCount`). If omitted, the column `rawValue` is used. */
|
|
2768
|
+
idsPath?: string;
|
|
2769
|
+
/** Registered query key for `AXPQueryExecutor.fetch` when using `countOnly`. */
|
|
2770
|
+
queryKey?: string;
|
|
2771
|
+
/**
|
|
2772
|
+
* Maps query input property names to lodash-style paths on `rowData` (e.g. `{ "userId": "id" }`).
|
|
2773
|
+
* May be a JSON string when set from the layout designer text field.
|
|
2774
|
+
*/
|
|
2775
|
+
queryParams?: Record<string, string> | string;
|
|
2776
|
+
/**
|
|
2777
|
+
* Dot path into the named query result for the items array. Defaults to `items` when the result is an object.
|
|
2778
|
+
* If the query returns an array directly, leave unset and handle at runtime.
|
|
2779
|
+
*/
|
|
2780
|
+
queryResultItemsPath?: string;
|
|
2781
|
+
}
|
|
2782
|
+
interface AXPLookupDisplayOptions {
|
|
2783
|
+
displayFormat?: string;
|
|
2784
|
+
textField?: string;
|
|
2785
|
+
isMultiLanguage?: (value: unknown) => boolean;
|
|
2786
|
+
}
|
|
2787
|
+
interface AXPLookupWidgetOptions {
|
|
2788
|
+
disabled?: boolean | AXPExpression;
|
|
2789
|
+
readonly?: boolean | AXPExpression;
|
|
2790
|
+
placeholder?: string;
|
|
2791
|
+
expose?: string | string[];
|
|
2792
|
+
look?: AXPLookupWidgetLookType;
|
|
2793
|
+
allowClear?: boolean;
|
|
2794
|
+
displayFormat?: string;
|
|
2795
|
+
/** Column list: lazy resolve and summary behavior. */
|
|
2796
|
+
columnResolve?: AXPLookupColumnResolveOptions;
|
|
2797
|
+
}
|
|
2798
|
+
|
|
2799
|
+
/**
|
|
2800
|
+
* Normalizes lookup/search display templates for row-based formatting.
|
|
2801
|
+
* Converts `context.eval('path')` expressions to `{{ path }}` and single braces to mustache form.
|
|
2802
|
+
*/
|
|
2803
|
+
declare function normalizeLookupDisplayTemplate(template: string): string;
|
|
2804
|
+
/**
|
|
2805
|
+
* Resolves the display template for a lookup item.
|
|
2806
|
+
* Priority: explicit `displayFormat` → entity `formats.lookup` (template) → entity `formats.searchResult.title`.
|
|
2807
|
+
* Returns undefined when `textField` is set or no template applies (use {@link resolveLookupDisplayField} instead).
|
|
2808
|
+
*/
|
|
2809
|
+
declare function resolveLookupDisplayTemplate(entity: AXPEntity | null | undefined, options: AXPLookupDisplayOptions): string | undefined;
|
|
2810
|
+
/**
|
|
2811
|
+
* Resolves the property path used for lookup display when no template applies.
|
|
2812
|
+
* Priority: explicit `textField` → entity `formats.lookup` (simple path) → common property names.
|
|
2813
|
+
*/
|
|
2814
|
+
declare function resolveLookupDisplayField(entity: AXPEntity | null | undefined, options: AXPLookupDisplayOptions): string;
|
|
2815
|
+
/**
|
|
2816
|
+
* Formats a lookup row for display using template and/or field resolution.
|
|
2817
|
+
*/
|
|
2818
|
+
declare function formatLookupItemDisplay(item: unknown, entity: AXPEntity | null | undefined, options: AXPLookupDisplayOptions, formatService: AXFormatService, resolveMultiLanguage?: (value: AXPMultiLanguageString) => string): string | AXPMultiLanguageString;
|
|
2819
|
+
/** True when a formatted label still contains unresolved template markers. */
|
|
2820
|
+
declare function isUnresolvedLookupDisplayTemplate(value: string): boolean;
|
|
2821
|
+
|
|
2704
2822
|
declare class AXPLookupWidgetViewComponent extends AXPValueWidgetComponent<any> {
|
|
2705
2823
|
protected readonly formatService: AXFormatService;
|
|
2824
|
+
protected readonly translation: AXTranslationService;
|
|
2706
2825
|
protected readonly entityResolver: AXPEntityDefinitionRegistryService;
|
|
2707
2826
|
protected entity: _angular_core.Signal<string>;
|
|
2708
2827
|
protected multiple: _angular_core.Signal<boolean>;
|
|
@@ -2822,50 +2941,6 @@ declare abstract class LookupWidgetLookBase {
|
|
|
2822
2941
|
abstract clear(): void;
|
|
2823
2942
|
}
|
|
2824
2943
|
|
|
2825
|
-
type AXPLookupWidgetLookType = 'select' | 'lookup';
|
|
2826
|
-
/**
|
|
2827
|
-
* How the lookup column resolves related items for display in entity lists.
|
|
2828
|
-
* - `hydrated`: titles (and optional ids) are already on the row; inline preview + overflow popover use row data only.
|
|
2829
|
-
* - `idsWithCount`: ids and optional count live on the row; the cell shows a count summary and loads titles via entity `byKey` when the popover opens.
|
|
2830
|
-
* - `countOnly`: only a count is on the row; the popover loads ids/titles via a registered `AXPQuery` when opened.
|
|
2831
|
-
*/
|
|
2832
|
-
type AXPLookupColumnResolveStrategy = 'hydrated' | 'idsWithCount' | 'countOnly';
|
|
2833
|
-
/**
|
|
2834
|
-
* Column list only: controls how the lookup column loads and displays related items in grids.
|
|
2835
|
-
* Omitted or empty strategy defaults to `hydrated` at runtime.
|
|
2836
|
-
*/
|
|
2837
|
-
interface AXPLookupColumnResolveOptions {
|
|
2838
|
-
/** Default `hydrated` when omitted. */
|
|
2839
|
-
strategy?: AXPLookupColumnResolveStrategy;
|
|
2840
|
-
/** Lodash-style path on `rowData` for the displayed count (e.g. `rolesCount`). */
|
|
2841
|
-
countFieldPath?: string;
|
|
2842
|
-
/** Lodash-style path on `rowData` for the related id list (`idsWithCount`). If omitted, the column `rawValue` is used. */
|
|
2843
|
-
idsPath?: string;
|
|
2844
|
-
/** Registered query key for `AXPQueryExecutor.fetch` when using `countOnly`. */
|
|
2845
|
-
queryKey?: string;
|
|
2846
|
-
/**
|
|
2847
|
-
* Maps query input property names to lodash-style paths on `rowData` (e.g. `{ "userId": "id" }`).
|
|
2848
|
-
* May be a JSON string when set from the layout designer text field.
|
|
2849
|
-
*/
|
|
2850
|
-
queryParams?: Record<string, string> | string;
|
|
2851
|
-
/**
|
|
2852
|
-
* Dot path into the named query result for the items array. Defaults to `items` when the result is an object.
|
|
2853
|
-
* If the query returns an array directly, leave unset and handle at runtime.
|
|
2854
|
-
*/
|
|
2855
|
-
queryResultItemsPath?: string;
|
|
2856
|
-
}
|
|
2857
|
-
interface AXPLookupWidgetOptions {
|
|
2858
|
-
disabled?: boolean | AXPExpression;
|
|
2859
|
-
readonly?: boolean | AXPExpression;
|
|
2860
|
-
placeholder?: string;
|
|
2861
|
-
expose?: string | string[];
|
|
2862
|
-
look?: AXPLookupWidgetLookType;
|
|
2863
|
-
allowClear?: boolean;
|
|
2864
|
-
displayFormat?: string;
|
|
2865
|
-
/** Column list: lazy resolve and summary behavior. */
|
|
2866
|
-
columnResolve?: AXPLookupColumnResolveOptions;
|
|
2867
|
-
}
|
|
2868
|
-
|
|
2869
2944
|
declare class AXPLookupWidgetEditComponent extends AXPValueWidgetComponent<any> {
|
|
2870
2945
|
#private;
|
|
2871
2946
|
protected readonly injector: Injector;
|
|
@@ -2887,7 +2962,6 @@ declare class AXPLookupWidgetEditComponent extends AXPValueWidgetComponent<any>
|
|
|
2887
2962
|
protected filterMode: _angular_core.Signal<boolean>;
|
|
2888
2963
|
protected multiple: _angular_core.Signal<boolean>;
|
|
2889
2964
|
protected look: _angular_core.Signal<AXPLookupWidgetLookType>;
|
|
2890
|
-
protected defaultTextField: _angular_core.Signal<string>;
|
|
2891
2965
|
protected displayField: _angular_core.Signal<string>;
|
|
2892
2966
|
protected allowCreate: _angular_core.Signal<"none" | "full" | "quick">;
|
|
2893
2967
|
protected valueField: _angular_core.Signal<string>;
|
|
@@ -2930,16 +3004,21 @@ declare class AXPLookupWidgetColumnComponent extends AXPColumnWidgetComponent<an
|
|
|
2930
3004
|
private readonly translation;
|
|
2931
3005
|
private readonly formatService;
|
|
2932
3006
|
private readonly entityService;
|
|
3007
|
+
private readonly entityResolver;
|
|
2933
3008
|
private readonly queryExecutor;
|
|
2934
3009
|
protected moreButton: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
2935
3010
|
protected lazyTrigger: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
2936
3011
|
protected morePopover: _angular_core.Signal<AXPopoverComponent | undefined>;
|
|
2937
3012
|
protected host: ElementRef<any>;
|
|
2938
3013
|
protected valueField: string;
|
|
2939
|
-
protected textField: string;
|
|
2940
3014
|
protected entity: string;
|
|
2941
3015
|
protected columnName: string;
|
|
2942
3016
|
protected maxVisible: number;
|
|
3017
|
+
protected lookupDisplayOptions: _angular_core.Signal<{
|
|
3018
|
+
displayFormat: string | undefined;
|
|
3019
|
+
textField: string | undefined;
|
|
3020
|
+
isMultiLanguage: (value: unknown) => value is _acorex_core_translation.AXMultiLanguageMap;
|
|
3021
|
+
}>;
|
|
2943
3022
|
protected displayFormat: _angular_core.Signal<string | undefined>;
|
|
2944
3023
|
protected displayField: _angular_core.Signal<string>;
|
|
2945
3024
|
protected columnResolve: _angular_core.Signal<AXPLookupColumnResolveOptions | undefined>;
|
|
@@ -2952,6 +3031,9 @@ declare class AXPLookupWidgetColumnComponent extends AXPColumnWidgetComponent<an
|
|
|
2952
3031
|
protected resolveError: _angular_core.WritableSignal<string | null>;
|
|
2953
3032
|
protected summaryLabel: _angular_core.WritableSignal<string>;
|
|
2954
3033
|
protected popoverHeader: _angular_core.WritableSignal<string>;
|
|
3034
|
+
private entityDef;
|
|
3035
|
+
private hydratedDisplayItems;
|
|
3036
|
+
private hydrateRequestId;
|
|
2955
3037
|
protected displayItems: _angular_core.Signal<any[]>;
|
|
2956
3038
|
protected allItems: _angular_core.Signal<any[]>;
|
|
2957
3039
|
protected visibleItems: _angular_core.Signal<any[]>;
|
|
@@ -2969,6 +3051,11 @@ declare class AXPLookupWidgetColumnComponent extends AXPColumnWidgetComponent<an
|
|
|
2969
3051
|
protected handleItemClick(index: number): void;
|
|
2970
3052
|
protected handleResolvedItemClick(index: number): void;
|
|
2971
3053
|
protected handlePopoverItemClick(index: number): void;
|
|
3054
|
+
/**
|
|
3055
|
+
* True when the cell can render without fetching row data via byKey.
|
|
3056
|
+
* Uses textField / expose targets on the row — not merely whether column dataPath differs from columnName.
|
|
3057
|
+
*/
|
|
3058
|
+
protected hasPreresolvedDisplay(): boolean;
|
|
2972
3059
|
protected getDisplayRaw(item: any): string;
|
|
2973
3060
|
private refreshSummaryLabel;
|
|
2974
3061
|
private refreshPopoverHeader;
|
|
@@ -2986,7 +3073,16 @@ declare class AXPLookupWidgetColumnComponent extends AXPColumnWidgetComponent<an
|
|
|
2986
3073
|
private parseQueryParamsMap;
|
|
2987
3074
|
private extractItemsFromQueryResult;
|
|
2988
3075
|
private extractItem;
|
|
2989
|
-
private
|
|
3076
|
+
private hydrateScalarIds;
|
|
3077
|
+
private isMultiValueLookup;
|
|
3078
|
+
/** Row display text resolved via widget textField and expose targets (not column dataPath alone). */
|
|
3079
|
+
private getRowDisplayTextFromTextField;
|
|
3080
|
+
private getExposeTargets;
|
|
3081
|
+
private hasDisplayTextOnLookupValue;
|
|
3082
|
+
private renderLookupLabel;
|
|
3083
|
+
private formatDisplayValue;
|
|
3084
|
+
/** True when a scalar cell value is a stored entity key (uuid/numeric), not pre-resolved display text. */
|
|
3085
|
+
private isLikelyEntityId;
|
|
2990
3086
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPLookupWidgetColumnComponent, never>;
|
|
2991
3087
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLookupWidgetColumnComponent, "ng-component", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
2992
3088
|
}
|
|
@@ -3625,5 +3721,5 @@ declare class AXPShowListViewAction extends AXPWorkflowAction {
|
|
|
3625
3721
|
}
|
|
3626
3722
|
declare const AXPShowListViewWorkflow: AXPWorkflow;
|
|
3627
3723
|
|
|
3628
|
-
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, AXPEntityDefinitionProviderWidget, AXPEntityDefinitionProviderWidgetEditComponent, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityEventsKeys, AXPEntityFormBuilderService, AXPEntityListPersistenceModeDefault, AXPEntityListTableService, AXPEntityListToolbarService, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityPreloadFiltersContainerComponent, AXPEntityPreloadFiltersViewModel, AXPEntityPreloadFiltersViewModelResolver, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPGetEntityDetailsQuery, AXPLayoutOrderingConfigService, AXPLookupWidget, AXPLookupWidgetColumnComponent, AXPLookupWidgetEditComponent, AXPLookupWidgetViewComponent, AXPMiddlewareAbortError, AXPMiddlewareEntityStorageService, AXPModifyEntitySectionWorkflow, AXPMultiSourceDefinitionProviderContext, AXPMultiSourceDefinitionProviderService, AXPMultiSourceFederatedSearchService, AXPMultiSourceSelectorComponent, AXPMultiSourceSelectorService, AXPMultiSourceSelectorWidget, AXPMultiSourceSelectorWidgetColumnComponent, AXPMultiSourceSelectorWidgetEditComponent, AXPMultiSourceSelectorWidgetViewComponent, AXPMultiSourceType, AXPOpenEntityDetailsCommand, AXPQuickEntityModifyPopupAction, AXPQuickModifyEntityWorkflow, AXPRelatedColumnEnrichmentService, AXPRelatedColumnMetadataResolver, AXPSelectorStructureWidget, AXPSelectorStructureWidgetColumnComponent, AXPSelectorStructureWidgetEditComponent, AXPSelectorStructureWidgetViewComponent, AXPShowDetailViewAction, AXPShowDetailsViewWorkflow, AXPShowListViewAction, AXPShowListViewWorkflow, AXPTruncatedBreadcrumbComponent, AXPUpdateEntityCommand, AXPViewEntityDetailsCommand, AXP_CATEGORY_TREE_ROOT_TITLE_I18N_KEY, 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_COLUMN_ORDER, DEFAULT_PAIR_SPAN_RULES, DEFAULT_PROPERTY_ORDER, DEFAULT_SECTION_ORDER, ENTITY_LIST_ROUTE_CONTEXT_SESSION_KEY, EntityBuilder, EntityDataAccessor, actionExists, applyDataSourcePagingWithoutLoad, axpCreateEntityAiToolInputDefaults, axpCreateEntityCommandDefinition, canPersistEntityListState, cloneLayoutArrays, collectEntityQuickSearchFieldPaths, collectNestedCreateHiddenProperties, collectNestedFieldPathsFromEntityColumns, collectQuickSearchPathsFromSingleEntityDefinition, columnOrderingMiddleware, columnOrderingMiddlewareProvider, columnWidthMiddleware, columnWidthMiddlewareProvider, computeEntityAggregates, createColumnOrderingMiddlewareProvider, createLayoutOrderingMiddlewareProvider, createModifierContext, defaultMultiLanguageMiddleware, defaultMultiLanguageMiddlewareProvider, detectEntityChanges, ensureLayoutPropertyView, ensureLayoutSection, ensureListActions, entityDetailsCreateActions, entityDetailsCreateActionsDeferredParent, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsNewEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterEditAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, eventDispatchMiddleware, filterSortEntityRows, findEntityListRowDataInTree, getDataSourcePageIndex, getEntityListRowId, getMasterInterfacePropertySortKey, isAXPMiddlewareAbortError, isCategoryEntity, isCategoryFilter, layoutOrderingMiddlewareFactory, layoutOrderingMiddlewareProvider, mergeForeignKeyFieldIntoCreateActions, normalizeEntityListPersistenceMode, normalizeListPaging, provideEntity, resolveEntityPluginDetailPageOrder, restoreEntityListExpandedRows, runEntityQuery, searchResultDescriptionMiddleware, searchResultDescriptionMiddlewareProvider, shouldLoadEntityListStateFromStorage, shouldResetEntityListStateOnRouteEntry };
|
|
3629
|
-
export type { AXPAuditEvent, AXPCollectEntityQuickSearchPathsResolver, AXPDataSeeder, AXPEntityActionPlugin, AXPEntityAggregateMeasure, AXPEntityAggregateOptions, AXPEntityAggregateReducerType, AXPEntityAggregateRequest, AXPEntityAggregateResult, AXPEntityCategoryWidgetOptions, AXPEntityChangeSet, AXPEntityConfigs, AXPEntityCreateDto, AXPEntityDataSelectorOptions, AXPEntityDataSelectorResult, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityDeleteOptions, AXPEntityDetailDto, AXPEntityDetailPopoverOptions, AXPEntityLayoutLike, AXPEntityLayoutPropertyLike, AXPEntityLayoutSectionLike, AXPEntityListEntry, AXPEntityListExpandRowRef, AXPEntityListInput, AXPEntityListItemDto, AXPEntityListPagingState, AXPEntityListPersistenceMode, AXPEntityListToolbarConvertOptions, AXPEntityMasterListViewSortPropViewModel, AXPEntityModel, AXPEntityModifier, AXPEntityModifierContext, AXPEntityModifierProvider, AXPEntityOutputDto, AXPEntityPreloadEntity, AXPEntityQueryAllOptions, AXPEntityQueryAllResult, AXPEntityStorageContext, AXPEntityStorageMiddleware, AXPEntityUpdateDto, AXPGetEntityDetailsQueryInput, AXPGetEntityDetailsQueryResult, AXPLookupColumnResolveOptions, AXPLookupColumnResolveStrategy, AXPLookupWidgetLookType, AXPLookupWidgetOptions, AXPMultiSourceDefinition, AXPMultiSourceDefinitionProvider, AXPMultiSourceItem, AXPMultiSourceRef, AXPMultiSourceSearchResult, AXPMultiSourceSearchResultItem, AXPMultiSourceSelectorOpenConfig, AXPMultiSourceSelectorResult, AXPMultiSourceSelectorWidgetOptions, AXPMultiSourceValue, AXPOpenEntityDetailsCommandInput, AXPRecordAuditInfo, AXPRecordOwnershipInfo, AXPRecordStateInfo, AXPRelatedColumnMetadata, AXPSelectorStructureFieldDef, AXPSelectorStructureIdentityDisplay, AXPSelectorStructurePresentationMode, AXPSelectorStructureSelectorMode, AXPSelectorStructureStructureMode, AXPSelectorStructureWidgetColumnOptions, AXPSelectorStructureWidgetDesignerOptions, AXPSelectorStructureWidgetEditOptions, AXPSelectorStructureWidgetOptions, AXPSelectorStructureWidgetPrintOptions, AXPSelectorStructureWidgetViewOptions, AXPShowListViewCondition, CategoryQueryEvent, CategoryQueryFunction, CategoryQueryResult, CategoryTreeConfig, CategoryTreeNodeData, EntityDetailPluginPageSlot, PairSpanRule, ResolveEntityPluginDetailPageOrderOptions, RunEntityQueryAdapters, SectionOrderConfig, SkipEntityComponentPageRef };
|
|
3724
|
+
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, AXPEntityDefinitionProviderWidget, AXPEntityDefinitionProviderWidgetEditComponent, AXPEntityDefinitionRegistryService, AXPEntityDeletedEvent, AXPEntityDetailListViewModel, AXPEntityDetailPopoverComponent, AXPEntityDetailPopoverService, AXPEntityDetailViewModelFactory, AXPEntityDetailViewModelResolver, AXPEntityEventDispatcherService, AXPEntityEventsKeys, AXPEntityFormBuilderService, AXPEntityListPersistenceModeDefault, AXPEntityListTableService, AXPEntityListToolbarService, AXPEntityListViewColumnViewModel, AXPEntityListViewModelFactory, AXPEntityListViewModelResolver, AXPEntityListWidget, AXPEntityListWidgetViewComponent, AXPEntityMasterCreateViewModel, AXPEntityMasterListViewModel, AXPEntityMasterListViewQueryViewModel, AXPEntityMasterSingleElementViewModel, AXPEntityMasterSingleViewGroupViewModel, AXPEntityMasterSingleViewModel, AXPEntityMasterUpdateElementViewModel, AXPEntityMasterUpdateViewModel, AXPEntityMasterUpdateViewModelFactory, AXPEntityMiddleware, AXPEntityModifyConfirmedAction, AXPEntityModifyEvent, AXPEntityModifySectionPopupAction, AXPEntityModule, AXPEntityPerformDeleteAction, AXPEntityPreloadFiltersContainerComponent, AXPEntityPreloadFiltersViewModel, AXPEntityPreloadFiltersViewModelResolver, AXPEntityResolver, AXPEntityService, AXPEntityStorageService, AXPEntityUpdateViewSectionViewModel, AXPGetEntityDetailsQuery, AXPLayoutOrderingConfigService, AXPLookupWidget, AXPLookupWidgetColumnComponent, AXPLookupWidgetEditComponent, AXPLookupWidgetViewComponent, AXPMiddlewareAbortError, AXPMiddlewareEntityStorageService, AXPModifyEntitySectionWorkflow, AXPMultiSourceDefinitionProviderContext, AXPMultiSourceDefinitionProviderService, AXPMultiSourceFederatedSearchService, AXPMultiSourceSelectorComponent, AXPMultiSourceSelectorService, AXPMultiSourceSelectorWidget, AXPMultiSourceSelectorWidgetColumnComponent, AXPMultiSourceSelectorWidgetEditComponent, AXPMultiSourceSelectorWidgetViewComponent, AXPMultiSourceType, AXPOpenEntityDetailsCommand, AXPQuickEntityModifyPopupAction, AXPQuickModifyEntityWorkflow, AXPRelatedColumnEnrichmentService, AXPRelatedColumnMetadataResolver, AXPSelectorStructureWidget, AXPSelectorStructureWidgetColumnComponent, AXPSelectorStructureWidgetEditComponent, AXPSelectorStructureWidgetViewComponent, AXPShowDetailViewAction, AXPShowDetailsViewWorkflow, AXPShowListViewAction, AXPShowListViewWorkflow, AXPTruncatedBreadcrumbComponent, AXPUpdateEntityCommand, AXPViewEntityDetailsCommand, AXP_CATEGORY_TREE_ROOT_TITLE_I18N_KEY, 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, AXP_RECORD_WORKFLOW_INFO_CORRELATION_ID_FIELD, AXP_RECORD_WORKFLOW_INFO_DEFINITION_ID_FIELD, AXP_RECORD_WORKFLOW_INFO_INSTANCE_ID_FIELD, DEFAULT_COLUMN_ORDER, DEFAULT_PAIR_SPAN_RULES, DEFAULT_PROPERTY_ORDER, DEFAULT_SECTION_ORDER, ENTITY_LIST_ROUTE_CONTEXT_SESSION_KEY, EntityBuilder, EntityDataAccessor, actionExists, applyDataSourcePagingWithoutLoad, axpCreateEntityAiToolInputDefaults, axpCreateEntityCommandDefinition, buildAXPRecordWorkflowInfo, canPersistEntityListState, cloneLayoutArrays, collectEntityQuickSearchFieldPaths, collectNestedCreateHiddenProperties, collectNestedFieldPathsFromEntityColumns, collectQuickSearchPathsFromSingleEntityDefinition, columnOrderingMiddleware, columnOrderingMiddlewareProvider, columnWidthMiddleware, columnWidthMiddlewareProvider, computeEntityAggregates, createColumnOrderingMiddlewareProvider, createLayoutOrderingMiddlewareProvider, createModifierContext, defaultMultiLanguageMiddleware, defaultMultiLanguageMiddlewareProvider, detectEntityChanges, ensureLayoutPropertyView, ensureLayoutSection, ensureListActions, entityDetailsCreateActions, entityDetailsCreateActionsDeferredParent, entityDetailsCrudActions, entityDetailsEditAction, entityDetailsNewEditAction, entityDetailsReferenceCondition, entityDetailsReferenceCreateActions, entityDetailsSimpleCondition, entityMasterBulkDeleteAction, entityMasterCreateAction, entityMasterCrudActions, entityMasterDeleteAction, entityMasterEditAction, entityMasterRecordActions, entityMasterViewAction, entityOverrideDetailsViewAction, eventDispatchMiddleware, filterSortEntityRows, findEntityListRowDataInTree, formatLookupItemDisplay, getDataSourcePageIndex, getEntityListRowId, getMasterInterfacePropertySortKey, getRecordWorkflowCorrelationId, getRecordWorkflowInstanceId, isAXPMiddlewareAbortError, isCategoryEntity, isCategoryFilter, isUnresolvedLookupDisplayTemplate, layoutOrderingMiddlewareFactory, layoutOrderingMiddlewareProvider, mergeForeignKeyFieldIntoCreateActions, normalizeEntityListPersistenceMode, normalizeListPaging, normalizeLookupDisplayTemplate, provideEntity, resolveEntityPluginDetailPageOrder, resolveLookupDisplayField, resolveLookupDisplayTemplate, restoreEntityListExpandedRows, runEntityQuery, searchResultDescriptionMiddleware, searchResultDescriptionMiddlewareProvider, shouldLoadEntityListStateFromStorage, shouldResetEntityListStateOnRouteEntry };
|
|
3725
|
+
export type { AXPAuditEvent, AXPCollectEntityQuickSearchPathsResolver, AXPDataSeeder, AXPEntityActionPlugin, AXPEntityAggregateMeasure, AXPEntityAggregateOptions, AXPEntityAggregateReducerType, AXPEntityAggregateRequest, AXPEntityAggregateResult, AXPEntityCategoryWidgetOptions, AXPEntityChangeSet, AXPEntityConfigs, AXPEntityCreateDto, AXPEntityDataSelectorOptions, AXPEntityDataSelectorResult, AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityDeleteOptions, AXPEntityDetailDto, AXPEntityDetailPopoverOptions, AXPEntityLayoutLike, AXPEntityLayoutPropertyLike, AXPEntityLayoutSectionLike, AXPEntityListEntry, AXPEntityListExpandRowRef, AXPEntityListInput, AXPEntityListItemDto, AXPEntityListPagingState, AXPEntityListPersistenceMode, AXPEntityListToolbarConvertOptions, AXPEntityMasterListViewSortPropViewModel, AXPEntityModel, AXPEntityModifier, AXPEntityModifierContext, AXPEntityModifierProvider, AXPEntityOutputDto, AXPEntityPreloadEntity, AXPEntityQueryAllOptions, AXPEntityQueryAllResult, AXPEntityStorageContext, AXPEntityStorageMiddleware, AXPEntityUpdateDto, AXPGetEntityDetailsQueryInput, AXPGetEntityDetailsQueryResult, AXPLookupColumnResolveOptions, AXPLookupColumnResolveStrategy, AXPLookupDisplayOptions, AXPLookupWidgetLookType, AXPLookupWidgetOptions, AXPMultiSourceDefinition, AXPMultiSourceDefinitionProvider, AXPMultiSourceItem, AXPMultiSourceRef, AXPMultiSourceSearchResult, AXPMultiSourceSearchResultItem, AXPMultiSourceSelectorOpenConfig, AXPMultiSourceSelectorResult, AXPMultiSourceSelectorWidgetOptions, AXPMultiSourceValue, AXPOpenEntityDetailsCommandInput, AXPRecordAuditInfo, AXPRecordOwnershipInfo, AXPRecordStateInfo, AXPRecordWorkflowInfo, AXPRelatedColumnMetadata, AXPSelectorStructureFieldDef, AXPSelectorStructureIdentityDisplay, AXPSelectorStructurePresentationMode, AXPSelectorStructureSelectorMode, AXPSelectorStructureStructureMode, AXPSelectorStructureWidgetColumnOptions, AXPSelectorStructureWidgetDesignerOptions, AXPSelectorStructureWidgetEditOptions, AXPSelectorStructureWidgetOptions, AXPSelectorStructureWidgetPrintOptions, AXPSelectorStructureWidgetViewOptions, AXPShowListViewCondition, CategoryQueryEvent, CategoryQueryFunction, CategoryQueryResult, CategoryTreeConfig, CategoryTreeNodeData, EntityDetailPluginPageSlot, PairSpanRule, ResolveEntityPluginDetailPageOrderOptions, RunEntityQueryAdapters, SectionOrderConfig, SkipEntityComponentPageRef };
|
|
@@ -129,6 +129,7 @@ interface AXPWidgetTypesMap {
|
|
|
129
129
|
repeaterLayout: 'repeater-layout';
|
|
130
130
|
textBlockLayout: 'text-block-layout';
|
|
131
131
|
alertBoxLayout: 'alert-box-layout';
|
|
132
|
+
badgeLayout: 'badge-layout';
|
|
132
133
|
fileUploader: 'file-uploader';
|
|
133
134
|
fileTypeExtension: 'file-type-extension';
|
|
134
135
|
map: 'map';
|
|
@@ -9,7 +9,7 @@ import { AXPDeviceService, AXPContextChangeEvent, AXPFilterClause, AXPFilterDefi
|
|
|
9
9
|
import { AXSelectBoxComponent } from '@acorex/components/select-box';
|
|
10
10
|
import { AXPCommandActionCallback, AXPClipBoardService, AXPLanguage, AXCFileUploaderCapabilities, AXCFileUploaderAction, AXPStatusDefinition, AXPStatusTransition, AXPStatusProvider } from '@acorex/platform/common';
|
|
11
11
|
import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
|
|
12
|
-
import { AXPDragDropListItem, ItemConfiguratorListItem, AXPTableColumnDefinition } from '@acorex/platform/layout/components';
|
|
12
|
+
import { AXPDragDropListItem, AXPOutcomeResultsViewModel, ItemConfiguratorListItem, AXPTableColumnDefinition } from '@acorex/platform/layout/components';
|
|
13
13
|
import { AXValidationService } from '@acorex/core/validation';
|
|
14
14
|
import { ImageToolConfig, EditorJsTool } from '@acorex/components/editor';
|
|
15
15
|
import { AXNumberFormatterOptions } from '@acorex/core/format';
|
|
@@ -2984,6 +2984,28 @@ interface AXPJsonViewerWidgetOptions {
|
|
|
2984
2984
|
edit: Record<string, never>;
|
|
2985
2985
|
}
|
|
2986
2986
|
|
|
2987
|
+
declare class AXPOutcomeResultsViewerWidgetViewComponent extends AXPValueWidgetComponent<AXPOutcomeResultsViewModel> {
|
|
2988
|
+
protected readonly viewModel: _angular_core.Signal<AXPOutcomeResultsViewModel | null>;
|
|
2989
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPOutcomeResultsViewerWidgetViewComponent, never>;
|
|
2990
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPOutcomeResultsViewerWidgetViewComponent, "axp-outcome-results-viewer-widget-view", never, {}, {}, never, never, true, never>;
|
|
2991
|
+
}
|
|
2992
|
+
|
|
2993
|
+
declare const AXPOutcomeResultsViewerWidget: AXPWidgetConfig;
|
|
2994
|
+
interface AXPOutcomeResultsViewerWidgetOptions {
|
|
2995
|
+
designer: {
|
|
2996
|
+
title?: string;
|
|
2997
|
+
emptyMessage?: string;
|
|
2998
|
+
};
|
|
2999
|
+
view: {
|
|
3000
|
+
title?: string;
|
|
3001
|
+
emptyMessage?: string;
|
|
3002
|
+
};
|
|
3003
|
+
edit: {
|
|
3004
|
+
title?: string;
|
|
3005
|
+
emptyMessage?: string;
|
|
3006
|
+
};
|
|
3007
|
+
}
|
|
3008
|
+
|
|
2987
3009
|
declare class AXPMapWidgetEditComponent extends AXPValueWidgetComponent<AXMapData | undefined> {
|
|
2988
3010
|
#private;
|
|
2989
3011
|
cdr: ChangeDetectorRef;
|
|
@@ -5570,5 +5592,5 @@ declare class AXPGetWidgetsForAIQuery implements AXPQuery<AXPGetWidgetsForAIQuer
|
|
|
5570
5592
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPGetWidgetsForAIQuery>;
|
|
5571
5593
|
}
|
|
5572
5594
|
|
|
5573
|
-
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, AXPConditionBuilderWidget, AXPConditionBuilderWidgetEditComponent, AXPConditionBuilderWidgetViewComponent, 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, AXPGetWidgetsForAIQuery, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPItemConfiguratorWidget, AXPItemConfiguratorWidgetColumnComponent, AXPItemConfiguratorWidgetEditComponent, 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, AXPProviderSelectWidgetColumnComponent, AXPProviderSelectWidgetEditBase, AXPProviderSelectWidgetViewComponent, 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_LIST_CMD_DELETE, AXP_DATA_LIST_CMD_EDIT, AXP_DATA_LIST_PENDING_DELETE_KEY, 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_ROW_EXPR_PREFIX, 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_ALIGNMENT_PROPERTIES, AXP_TABLE_COLUMN_CELL_ALIGN_PROPERTY, AXP_TABLE_COLUMN_HEADER_ALIGN_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_AI_AGENT_ASSIST_FOLLOW_UP_CHIPS_LAYOUT, AXP_WIDGET_AI_AGENT_CHART_LAYOUT, AXP_WIDGET_AI_AGENT_FORM_LAYOUT, AXP_WIDGET_AI_AGENT_NAMES, 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, matchesWidgetAiAgent, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty, richTextDefaultProperty, selectEditorDefaultValueProperty, selectionListEditorDefaultValueProperty };
|
|
5574
|
-
export type { AXPAbsoluteUnit, AXPAddressData, AXPAddressFormContentOptions, 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, AXPDataListHeaderCommandApplyMode, AXPDataListWidgetColumn, AXPDataListWidgetCommandsOptions, AXPDataListWidgetComponentOptions, AXPDataListWidgetEditOptions, AXPDataListWidgetHeaderAction, AXPDataListWidgetHeaderCommandAction, 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, AXPGetWidgetsForAIQueryAiBlock, AXPGetWidgetsForAIQueryCategoryRow, AXPGetWidgetsForAIQueryInput, AXPGetWidgetsForAIQueryInputPropertyRow, AXPGetWidgetsForAIQueryListItem, AXPGetWidgetsForAIQueryOutputPropertyRow, AXPGetWidgetsForAIQueryResult, AXPGetWidgetsForAIQueryUsage, AXPGetWidgetsForAIQueryWidgetDetail, AXPGetWidgetsForAIQueryWidgetStructured, 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, AXPSelectLanguageRow, 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, AXPWidgetAiAgentName, AXStepWizardLook, DataSourceMode, StrategyConfig };
|
|
5595
|
+
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, AXPConditionBuilderWidget, AXPConditionBuilderWidgetEditComponent, AXPConditionBuilderWidgetViewComponent, 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, AXPGetWidgetsForAIQuery, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPItemConfiguratorWidget, AXPItemConfiguratorWidgetColumnComponent, AXPItemConfiguratorWidgetEditComponent, AXPJsonViewerWidget, AXPJsonViewerWidgetEditComponent, AXPJsonViewerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPListWidgetColumnComponent, AXPListWidgetEditComponent, AXPListWidgetViewComponent, AXPMapWidgetEditComponent, AXPMapWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetViewComponent, AXPOutcomeResultsViewerWidget, AXPOutcomeResultsViewerWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetViewComponent, AXPProgressBarWidget, AXPProgressBarWidgetColumnComponent, AXPProgressBarWidgetEditComponent, AXPProgressBarWidgetViewComponent, AXPProviderSelectWidgetColumnComponent, AXPProviderSelectWidgetEditBase, AXPProviderSelectWidgetViewComponent, 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_LIST_CMD_DELETE, AXP_DATA_LIST_CMD_EDIT, AXP_DATA_LIST_PENDING_DELETE_KEY, 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_ROW_EXPR_PREFIX, 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_ALIGNMENT_PROPERTIES, AXP_TABLE_COLUMN_CELL_ALIGN_PROPERTY, AXP_TABLE_COLUMN_HEADER_ALIGN_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_AI_AGENT_ASSIST_FOLLOW_UP_CHIPS_LAYOUT, AXP_WIDGET_AI_AGENT_CHART_LAYOUT, AXP_WIDGET_AI_AGENT_FORM_LAYOUT, AXP_WIDGET_AI_AGENT_NAMES, 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, matchesWidgetAiAgent, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty, richTextDefaultProperty, selectEditorDefaultValueProperty, selectionListEditorDefaultValueProperty };
|
|
5596
|
+
export type { AXPAbsoluteUnit, AXPAddressData, AXPAddressFormContentOptions, 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, AXPDataListHeaderCommandApplyMode, AXPDataListWidgetColumn, AXPDataListWidgetCommandsOptions, AXPDataListWidgetComponentOptions, AXPDataListWidgetEditOptions, AXPDataListWidgetHeaderAction, AXPDataListWidgetHeaderCommandAction, 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, AXPGetWidgetsForAIQueryAiBlock, AXPGetWidgetsForAIQueryCategoryRow, AXPGetWidgetsForAIQueryInput, AXPGetWidgetsForAIQueryInputPropertyRow, AXPGetWidgetsForAIQueryListItem, AXPGetWidgetsForAIQueryOutputPropertyRow, AXPGetWidgetsForAIQueryResult, AXPGetWidgetsForAIQueryUsage, AXPGetWidgetsForAIQueryWidgetDetail, AXPGetWidgetsForAIQueryWidgetStructured, 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, AXPOutcomeResultsViewerWidgetOptions, 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, AXPSelectLanguageRow, 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, AXPWidgetAiAgentName, AXStepWizardLook, DataSourceMode, StrategyConfig };
|