@acorex/platform 21.0.0-next.72 → 21.0.0-next.74
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/contracts/README.md +3 -0
- package/fesm2022/acorex-platform-auth.mjs +72 -58
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/acorex-platform-common.mjs +414 -22
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-contracts.mjs +38 -0
- package/fesm2022/acorex-platform-contracts.mjs.map +1 -0
- package/fesm2022/acorex-platform-core.mjs +23 -14
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +5 -4
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +187 -9
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +81 -114
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +2 -1
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +11 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +418 -239
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +4 -4
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared-settings.provider-BjuzSe0T.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared.mjs +3 -0
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +57 -68
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +5 -1
- package/types/acorex-platform-auth.d.ts +29 -22
- package/types/acorex-platform-common.d.ts +89 -262
- package/types/acorex-platform-contracts.d.ts +940 -0
- package/types/acorex-platform-core.d.ts +8 -8
- package/types/acorex-platform-layout-builder.d.ts +2 -5
- package/types/acorex-platform-layout-components.d.ts +77 -7
- package/types/acorex-platform-layout-entity.d.ts +185 -175
- package/types/acorex-platform-layout-widget-core.d.ts +4 -26
- package/types/acorex-platform-layout-widgets.d.ts +55 -52
- package/types/acorex-platform-workflow.d.ts +3 -670
|
@@ -12,6 +12,7 @@ import * as _acorex_platform_common from '@acorex/platform/common';
|
|
|
12
12
|
import { AXPCommandActionCallback, AXPClipBoardService, AXPDateTimeFilterValue, AXPDateTimeFilterPreset, AXPFilterOperator, AXPLanguage, AXCFileUploaderAction, AXCFileUploaderCapabilities, AXPStatusDefinition, AXPStatusTransition, AXPStatusProvider } from '@acorex/platform/common';
|
|
13
13
|
import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
|
|
14
14
|
import { AXPDragDropListItem, AXPOutcomeResultsViewModel, ItemConfiguratorListItem, AXPTableColumnDefinition } from '@acorex/platform/layout/components';
|
|
15
|
+
import { AXPAddressMode, AXPAddressLabel, AXPAddressData } from '@acorex/platform/contracts';
|
|
15
16
|
import { AXCalendarViewType } from '@acorex/components/calendar';
|
|
16
17
|
import { AXValidationService } from '@acorex/core/validation';
|
|
17
18
|
import { ImageToolConfig, EditorJsTool } from '@acorex/components/editor';
|
|
@@ -731,43 +732,6 @@ interface AXPContactWidgetOptions {
|
|
|
731
732
|
|
|
732
733
|
declare const AXPAddressWidget: AXPWidgetConfig;
|
|
733
734
|
|
|
734
|
-
/**
|
|
735
|
-
* Address mode type - determines the display mode of the address widget
|
|
736
|
-
* - simple: single text input for full address (one line)
|
|
737
|
-
* - popup: readonly summary + button to edit in popup dialog
|
|
738
|
-
* - expandable: expandable panel — collapsed shows full address, expanded shows inline form
|
|
739
|
-
*/
|
|
740
|
-
type AXPAddressMode = 'simple' | 'popup' | 'expandable';
|
|
741
|
-
/**
|
|
742
|
-
* Address label option
|
|
743
|
-
*/
|
|
744
|
-
interface AXPAddressLabel {
|
|
745
|
-
id: string;
|
|
746
|
-
name: string;
|
|
747
|
-
}
|
|
748
|
-
/**
|
|
749
|
-
* Address data structure
|
|
750
|
-
*/
|
|
751
|
-
interface AXPAddressData {
|
|
752
|
-
street1: string;
|
|
753
|
-
street2?: string;
|
|
754
|
-
postalCode?: string;
|
|
755
|
-
coordinates?: string;
|
|
756
|
-
full: string;
|
|
757
|
-
label?: string;
|
|
758
|
-
country?: {
|
|
759
|
-
id?: string;
|
|
760
|
-
title?: string;
|
|
761
|
-
};
|
|
762
|
-
state?: {
|
|
763
|
-
id?: string;
|
|
764
|
-
title?: string;
|
|
765
|
-
};
|
|
766
|
-
city?: {
|
|
767
|
-
id?: string;
|
|
768
|
-
title?: string;
|
|
769
|
-
};
|
|
770
|
-
}
|
|
771
735
|
/**
|
|
772
736
|
* Address widget designer options
|
|
773
737
|
*/
|
|
@@ -1322,7 +1286,10 @@ interface AXPNumberBoxWidgetOptions {
|
|
|
1322
1286
|
declare class AXPPasswordBoxWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
|
|
1323
1287
|
protected hasEyeIcon: any;
|
|
1324
1288
|
protected showPassword: any;
|
|
1289
|
+
protected textDirection: _angular_core.Signal<"ltr" | "rtl">;
|
|
1325
1290
|
protected show: _angular_core.WritableSignal<boolean>;
|
|
1291
|
+
protected get hostDir(): 'ltr' | 'rtl';
|
|
1292
|
+
protected get hostDirection(): 'ltr' | 'rtl';
|
|
1326
1293
|
toggleEye(): void;
|
|
1327
1294
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPasswordBoxWidgetColumnComponent, never>;
|
|
1328
1295
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetColumnComponent, "axp-password-box-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1331,6 +1298,9 @@ declare class AXPPasswordBoxWidgetColumnComponent extends AXPColumnWidgetCompone
|
|
|
1331
1298
|
declare class AXPPasswordBoxWidgetEditComponent extends AXPValueWidgetComponent<string> {
|
|
1332
1299
|
protected disabled: _angular_core.Signal<boolean>;
|
|
1333
1300
|
protected hasClearButton: _angular_core.Signal<boolean>;
|
|
1301
|
+
protected textDirection: _angular_core.Signal<"ltr" | "rtl">;
|
|
1302
|
+
protected get hostDir(): 'ltr' | 'rtl';
|
|
1303
|
+
protected get hostDirection(): 'ltr' | 'rtl';
|
|
1334
1304
|
private get __class();
|
|
1335
1305
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPPasswordBoxWidgetEditComponent, never>;
|
|
1336
1306
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPPasswordBoxWidgetEditComponent, "axp-password-box-widget-edit", never, {}, {}, never, never, true, never>;
|
|
@@ -1341,6 +1311,7 @@ declare class AXPPasswordBoxWidgetViewComponent extends AXPValueWidgetComponent<
|
|
|
1341
1311
|
protected hasCopyIcon: _angular_core.Signal<boolean>;
|
|
1342
1312
|
protected hasEyeIcon: _angular_core.Signal<boolean>;
|
|
1343
1313
|
protected showPassword: _angular_core.Signal<boolean>;
|
|
1314
|
+
protected textDirection: _angular_core.Signal<"ltr" | "rtl">;
|
|
1344
1315
|
protected show: _angular_core.WritableSignal<boolean>;
|
|
1345
1316
|
protected clipboard: AXPClipBoardService;
|
|
1346
1317
|
toggleEye(): void;
|
|
@@ -1531,18 +1502,22 @@ declare class AXPRichTextWidgetColumnComponent extends AXPColumnWidgetComponent<
|
|
|
1531
1502
|
}
|
|
1532
1503
|
|
|
1533
1504
|
declare class AXPRichTextWidgetEditComponent extends AXPValueWidgetComponent<string | Record<string, string> | undefined> {
|
|
1505
|
+
#private;
|
|
1506
|
+
private readonly popupService;
|
|
1507
|
+
private readonly translationService;
|
|
1508
|
+
private readonly wysiwygRef;
|
|
1534
1509
|
protected placeholder: _angular_core.Signal<string>;
|
|
1535
1510
|
protected disabled: _angular_core.Signal<boolean>;
|
|
1536
1511
|
protected readonly: _angular_core.Signal<boolean>;
|
|
1537
1512
|
protected effectiveMultiLanguage: _angular_core.Signal<boolean>;
|
|
1538
1513
|
protected minLineCount: _angular_core.Signal<number>;
|
|
1539
1514
|
protected maxLineCount: _angular_core.Signal<number>;
|
|
1540
|
-
protected onWysiwygChanged(e: AXValueChangedEvent<string>): void;
|
|
1541
|
-
private popupService;
|
|
1542
|
-
private translationService;
|
|
1543
|
-
currentLanguage: _angular_core.Signal<string>;
|
|
1544
1515
|
protected getCurrentText: _angular_core.Signal<string>;
|
|
1516
|
+
currentLanguage: _angular_core.Signal<string>;
|
|
1517
|
+
protected onWysiwygChanged(e: AXValueChangedEvent<string>): void;
|
|
1545
1518
|
protected openMultiLanguagePopup(): Promise<void>;
|
|
1519
|
+
private shouldSyncWysiwygFromContext;
|
|
1520
|
+
private applyWysiwygContentWhenReady;
|
|
1546
1521
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPRichTextWidgetEditComponent, never>;
|
|
1547
1522
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPRichTextWidgetEditComponent, "axp-rich-text-widget-edit", never, {}, {}, never, never, true, never>;
|
|
1548
1523
|
}
|
|
@@ -2756,18 +2731,39 @@ declare class AXPMapWidgetViewComponent extends AXPValueWidgetComponent<AXMapDat
|
|
|
2756
2731
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPMapWidgetViewComponent, "axp-map-box-widget-view", never, {}, {}, never, never, true, never>;
|
|
2757
2732
|
}
|
|
2758
2733
|
|
|
2759
|
-
|
|
2734
|
+
interface AXPQrcodeViewerOpenOptions {
|
|
2735
|
+
content: string;
|
|
2736
|
+
size?: number;
|
|
2737
|
+
level?: AXQrcodeLevel;
|
|
2738
|
+
color?: string;
|
|
2739
|
+
outputType?: AXQrcodeOutputType;
|
|
2740
|
+
title?: string;
|
|
2741
|
+
}
|
|
2742
|
+
/**
|
|
2743
|
+
* Opens a read-only QR code preview dialog with print and cancel actions.
|
|
2744
|
+
*/
|
|
2745
|
+
declare class AXPQrcodeViewerService {
|
|
2760
2746
|
private readonly layoutBuilder;
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2747
|
+
private readonly translation;
|
|
2748
|
+
open(options: AXPQrcodeViewerOpenOptions): Promise<void>;
|
|
2749
|
+
private resolveDialogTitle;
|
|
2750
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPQrcodeViewerService, never>;
|
|
2751
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPQrcodeViewerService>;
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
declare class AXPQrcodeWidgetColumnComponent extends AXPColumnWidgetComponent<string> {
|
|
2755
|
+
private readonly qrcodeViewer;
|
|
2756
|
+
private readonly formatService;
|
|
2757
|
+
private readonly translation;
|
|
2765
2758
|
showPopup(): Promise<void>;
|
|
2766
2759
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPQrcodeWidgetColumnComponent, never>;
|
|
2767
2760
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPQrcodeWidgetColumnComponent, "axp-qrcode-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
2768
2761
|
}
|
|
2769
2762
|
|
|
2770
2763
|
declare class AXPQrcodeWidgetEditComponent extends AXPValueWidgetComponent<string> {
|
|
2764
|
+
private readonly qrcodeViewer;
|
|
2765
|
+
private readonly formatService;
|
|
2766
|
+
private readonly translation;
|
|
2771
2767
|
protected value: _angular_core.Signal<string>;
|
|
2772
2768
|
protected size: _angular_core.Signal<number>;
|
|
2773
2769
|
protected level: _angular_core.Signal<AXQrcodeLevel>;
|
|
@@ -2783,9 +2779,8 @@ declare class AXPQrcodeWidgetEditComponent extends AXPValueWidgetComponent<strin
|
|
|
2783
2779
|
protected onDraftChange(e: AXValueChangedEvent): void;
|
|
2784
2780
|
protected applyDraft(): void;
|
|
2785
2781
|
protected cancelEdit(): void;
|
|
2782
|
+
protected openPreview(): Promise<void>;
|
|
2786
2783
|
downloadQr(el: HTMLDivElement): void;
|
|
2787
|
-
private downloadSVGElement;
|
|
2788
|
-
private rasterizeAndDownload;
|
|
2789
2784
|
clearValue(): void;
|
|
2790
2785
|
onFileSelected(e: Event): Promise<void>;
|
|
2791
2786
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPQrcodeWidgetEditComponent, never>;
|
|
@@ -2793,15 +2788,23 @@ declare class AXPQrcodeWidgetEditComponent extends AXPValueWidgetComponent<strin
|
|
|
2793
2788
|
}
|
|
2794
2789
|
|
|
2795
2790
|
declare class AXPQrcodeWidgetViewComponent extends AXPValueWidgetComponent<string> {
|
|
2791
|
+
private readonly qrcodeViewer;
|
|
2792
|
+
private readonly formatService;
|
|
2793
|
+
private readonly translation;
|
|
2794
|
+
private readonly qrContainer;
|
|
2796
2795
|
protected size: _angular_core.Signal<number>;
|
|
2797
2796
|
protected level: _angular_core.Signal<AXQrcodeLevel>;
|
|
2798
2797
|
protected color: _angular_core.Signal<string>;
|
|
2799
2798
|
protected outputType: _angular_core.Signal<AXQrcodeOutputType>;
|
|
2800
|
-
|
|
2799
|
+
protected showContent: _angular_core.Signal<boolean>;
|
|
2800
|
+
protected contentLabel: _angular_core.Signal<string>;
|
|
2801
|
+
protected openPreview(): Promise<void>;
|
|
2802
|
+
api(): AXPWidgetCoreElementAPI;
|
|
2801
2803
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPQrcodeWidgetViewComponent, never>;
|
|
2802
2804
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPQrcodeWidgetViewComponent, "axp-qrcode-widget", never, {}, {}, never, never, true, never>;
|
|
2803
2805
|
}
|
|
2804
2806
|
|
|
2807
|
+
declare const DEFAULT_QRCODE_SIZE = 200;
|
|
2805
2808
|
declare const AXPQrcodeWidget: AXPWidgetConfig;
|
|
2806
2809
|
interface AXPQrcodeWidgetViewOptions {
|
|
2807
2810
|
content?: string;
|
|
@@ -2911,7 +2914,7 @@ declare class AXPSignatureWidgetEditComponent extends AXPValueWidgetComponent<st
|
|
|
2911
2914
|
protected signHereHint: _angular_core.Signal<string>;
|
|
2912
2915
|
protected paintContainer: _angular_core.Signal<AXPaintContainerComponent | undefined>;
|
|
2913
2916
|
protected paintView: _angular_core.Signal<AXPaintViewComponent | undefined>;
|
|
2914
|
-
private readonly
|
|
2917
|
+
private readonly signatureEditorService;
|
|
2915
2918
|
private readonly deviceService;
|
|
2916
2919
|
api(): AXPWidgetCoreElementAPI;
|
|
2917
2920
|
protected clearSignaturePad(): void;
|
|
@@ -5317,5 +5320,5 @@ declare class AXPGetWidgetsForAIQuery implements AXPQuery<AXPGetWidgetsForAIQuer
|
|
|
5317
5320
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPGetWidgetsForAIQuery>;
|
|
5318
5321
|
}
|
|
5319
5322
|
|
|
5320
|
-
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, AXPEditorJsWidget, AXPEditorJsWidgetColumnComponent, AXPEditorJsWidgetEditComponent, AXPEditorJsWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, 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_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_DATA_LIST_CMD_DELETE, AXP_DATA_LIST_CMD_EDIT, AXP_DATA_LIST_PENDING_DELETE_KEY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_RELATIVE_UNITS, AXP_RELATIVE_UNITS_NO_PERCENT, AXP_ROW_EXPR_PREFIX, AXP_SPACING_UNITS, 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_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, matchesWidgetAiAgent };
|
|
5321
|
-
export type { AXPAbsoluteUnit,
|
|
5323
|
+
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, AXPEditorJsWidget, AXPEditorJsWidgetColumnComponent, AXPEditorJsWidgetEditComponent, AXPEditorJsWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, 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, AXPQrcodeViewerService, 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_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_DATA_LIST_CMD_DELETE, AXP_DATA_LIST_CMD_EDIT, AXP_DATA_LIST_PENDING_DELETE_KEY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_RELATIVE_UNITS, AXP_RELATIVE_UNITS_NO_PERCENT, AXP_ROW_EXPR_PREFIX, AXP_SPACING_UNITS, 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_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, DEFAULT_QRCODE_SIZE, DEFAULT_STRATEGY_CONFIG, STRATEGY_CONFIG_TOKEN, matchesWidgetAiAgent };
|
|
5324
|
+
export type { AXPAbsoluteUnit, AXPAddressFormContentOptions, 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, AXPDateTimeFilterUiMode, AXPEditorJsWidgetColumnOptions, AXPEditorJsWidgetDesignerOptions, AXPEditorJsWidgetEditOptions, AXPEditorJsWidgetOptions, AXPEditorJsWidgetPrintOptions, AXPEditorJsWidgetViewOptions, AXPFieldsetWidgetDesignerOptions, AXPFieldsetWidgetEditOptions, AXPFieldsetWidgetLook, AXPFieldsetWidgetOptions, AXPFieldsetWidgetPrintOptions, AXPFieldsetWidgetViewOptions, 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, AXPQrcodeViewerOpenOptions, 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, AXPStepWizardActionConfig, 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, DataSourceMode, StrategyConfig };
|