@acorex/platform 20.5.4 → 20.6.0-next.0
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-layout-components.mjs +139 -24
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +2 -2
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +123 -215
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/layout/components/index.d.ts +21 -3
- package/layout/widgets/index.d.ts +73 -19
- package/package.json +11 -11
|
@@ -6,6 +6,7 @@ import { AXPMenuItem } from '@acorex/platform/common';
|
|
|
6
6
|
import { AXValueChangedEvent, AXClickEvent, AXDataSource, AXDataSourceFilterOption, AXHtmlEvent, AXEvent } from '@acorex/cdk/common';
|
|
7
7
|
import { AXTreeViewComponent, AXTreeItemClickBaseEvent } from '@acorex/components/tree-view';
|
|
8
8
|
import { AXTranslationService } from '@acorex/core/translation';
|
|
9
|
+
import { AXPopoverComponent } from '@acorex/components/popover';
|
|
9
10
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
10
11
|
import { AXPWidgetNode, AXPWidgetCoreContextChangeEvent, AXPWidgetProperty, AXPWidgetConfig } from '@acorex/platform/layout/widget-core';
|
|
11
12
|
import * as _ngrx_signals from '@ngrx/signals';
|
|
@@ -13,7 +14,6 @@ import { AXDataTableComponent, AXDataTableRowDbClick, AXDataTableRowClick } from
|
|
|
13
14
|
import { AXBasePageComponent } from '@acorex/components/page';
|
|
14
15
|
import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
|
|
15
16
|
import { AXPDynamicFormFieldDefinition, AXPDynamicFormGroupDefinition, AXPDynamicFormDefinition } from '@acorex/platform/layout/builder';
|
|
16
|
-
import { AXPopoverComponent } from '@acorex/components/popover';
|
|
17
17
|
import { AXTagBoxComponent } from '@acorex/components/tag-box';
|
|
18
18
|
import { AXCalendarService } from '@acorex/core/date-time';
|
|
19
19
|
import { AXTabStripChangedEvent, AXTabsComponent } from '@acorex/components/tabs';
|
|
@@ -319,6 +319,24 @@ declare class AXPColorPalettePickerComponent {
|
|
|
319
319
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPColorPalettePickerComponent, "axp-color-palette-picker", never, { "colors": { "alias": "colors"; "required": false; "isSignal": true; }; "selectedColor": { "alias": "selectedColor"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "colorSelected": "colorSelected"; }, never, never, true, never>;
|
|
320
320
|
}
|
|
321
321
|
|
|
322
|
+
interface AXPColumnItemListItem {
|
|
323
|
+
id: string;
|
|
324
|
+
content: string;
|
|
325
|
+
}
|
|
326
|
+
declare class AXPColumnItemListComponent {
|
|
327
|
+
items: _angular_core.InputSignal<AXPColumnItemListItem[]>;
|
|
328
|
+
itemClick: _angular_core.OutputEmitterRef<AXPColumnItemListItem>;
|
|
329
|
+
protected moreButton: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
330
|
+
protected morePopover: _angular_core.Signal<AXPopoverComponent | undefined>;
|
|
331
|
+
protected isMorePopoverOpen: _angular_core.WritableSignal<boolean>;
|
|
332
|
+
protected showMoreItems(): void;
|
|
333
|
+
protected onMorePopoverOpenChange(event: any): void;
|
|
334
|
+
private openMorePopover;
|
|
335
|
+
protected submitClick(event: AXPColumnItemListItem): void;
|
|
336
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPColumnItemListComponent, never>;
|
|
337
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPColumnItemListComponent, "axp-column-item-list", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
|
|
338
|
+
}
|
|
339
|
+
|
|
322
340
|
declare class AXPQueryColumnsComponent {
|
|
323
341
|
columns: _angular_core.ModelSignal<AXPColumnQuery[]>;
|
|
324
342
|
handleVisibilityChange(e: AXValueChangedEvent<boolean>, name: string): void;
|
|
@@ -1298,5 +1316,5 @@ declare class AXPWidgetItemComponent {
|
|
|
1298
1316
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPWidgetItemComponent, "axp-widget-item", never, { "widget": { "alias": "widget"; "required": true; "isSignal": true; }; "isSelected": { "alias": "isSelected"; "required": false; "isSignal": true; }; "showPinButton": { "alias": "showPinButton"; "required": false; "isSignal": true; }; "customClasses": { "alias": "customClasses"; "required": false; "isSignal": true; }; }, { "onWidgetClick": "onWidgetClick"; "onPinClick": "onPinClick"; }, never, never, true, never>;
|
|
1299
1317
|
}
|
|
1300
1318
|
|
|
1301
|
-
export { AXPActivityLogComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPCompareViewComponent, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataSelectorComponent, AXPDataSelectorService, AXPDragDropListComponent, AXPDynamicFormDesignerComponent, AXPExtraPropertiesComponent, AXPExtraPropertiesSchemaComponent, AXPExtraPropertiesValuesComponent, AXPImageEditorPopupComponent, AXPImageEditorService, AXPMenuBadgeHelper, AXPQueryColumnsComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryViewsComponent, AXPStateMessageComponent, AXPTaskBadgeDirective, AXPTaskBadgeProvider, AXPTaskBadgeService, AXPTemplateViewerComponent, AXPTemplateViewerService, AXPThemeLayoutActionsComponent, AXPThemeLayoutBlockComponent, AXPThemeLayoutContainerComponent, AXPThemeLayoutEndSideComponent, AXPThemeLayoutFooterComponent, AXPThemeLayoutHeaderComponent, AXPThemeLayoutListComponent, AXPThemeLayoutListItemComponent, AXPThemeLayoutListItemsGroupComponent, AXPThemeLayoutPageHeaderComponent, AXPThemeLayoutPagePrimaryActionsComponent, AXPThemeLayoutPageSecondaryActionsComponent, AXPThemeLayoutSectionComponent, AXPThemeLayoutStartSideComponent, AXPThemeLayoutToolbarComponent, AXPUserAvatarComponent, AXPUserAvatarService, AXPWidgetItemComponent, AXPWidgetPropertyViewerComponent, AXPWidgetPropertyViewerPopupComponent, AXPWidgetPropertyViewerService, AXP_EXTRA_PROPERTY_TYPES, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER, convertDesignerFieldToFormField, convertDesignerGroupToFormGroup, convertDesignerStateToFormDefinition };
|
|
1302
|
-
export type { AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDragDropListConfig, AXPDragDropListDropEvent, AXPDragDropListItem, AXPDynamicFormDesignerField, AXPDynamicFormDesignerGroup, AXPDynamicFormDesignerState, AXPExtraPropertyItem, AXPExtraPropertySchemaItem, AXPExtraPropertyType, AXPFormElementWidget, AXPImageEditorOpenOptions, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyTab, AXPWidgetPropertyViewerConfig, AXPWidgetPropertyViewerResult, StateMode };
|
|
1319
|
+
export { AXPActivityLogComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPColumnItemListComponent, AXPCompareViewComponent, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataSelectorComponent, AXPDataSelectorService, AXPDragDropListComponent, AXPDynamicFormDesignerComponent, AXPExtraPropertiesComponent, AXPExtraPropertiesSchemaComponent, AXPExtraPropertiesValuesComponent, AXPImageEditorPopupComponent, AXPImageEditorService, AXPMenuBadgeHelper, AXPQueryColumnsComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryViewsComponent, AXPStateMessageComponent, AXPTaskBadgeDirective, AXPTaskBadgeProvider, AXPTaskBadgeService, AXPTemplateViewerComponent, AXPTemplateViewerService, AXPThemeLayoutActionsComponent, AXPThemeLayoutBlockComponent, AXPThemeLayoutContainerComponent, AXPThemeLayoutEndSideComponent, AXPThemeLayoutFooterComponent, AXPThemeLayoutHeaderComponent, AXPThemeLayoutListComponent, AXPThemeLayoutListItemComponent, AXPThemeLayoutListItemsGroupComponent, AXPThemeLayoutPageHeaderComponent, AXPThemeLayoutPagePrimaryActionsComponent, AXPThemeLayoutPageSecondaryActionsComponent, AXPThemeLayoutSectionComponent, AXPThemeLayoutStartSideComponent, AXPThemeLayoutToolbarComponent, AXPUserAvatarComponent, AXPUserAvatarService, AXPWidgetItemComponent, AXPWidgetPropertyViewerComponent, AXPWidgetPropertyViewerPopupComponent, AXPWidgetPropertyViewerService, AXP_EXTRA_PROPERTY_TYPES, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER, convertDesignerFieldToFormField, convertDesignerGroupToFormGroup, convertDesignerStateToFormDefinition };
|
|
1320
|
+
export type { AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPColumnItemListItem, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDragDropListConfig, AXPDragDropListDropEvent, AXPDragDropListItem, AXPDynamicFormDesignerField, AXPDynamicFormDesignerGroup, AXPDynamicFormDesignerState, AXPExtraPropertyItem, AXPExtraPropertySchemaItem, AXPExtraPropertyType, AXPFormElementWidget, AXPImageEditorOpenOptions, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyTab, AXPWidgetPropertyViewerConfig, AXPWidgetPropertyViewerResult, StateMode };
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import * as i1 from '@acorex/platform/layout/widget-core';
|
|
2
|
-
import { AXPWidgetPropertyGroup, AXPWidgetProperty, AXPLayoutBaseWidgetComponent, AXPWidgetCoreElementAPI, AXPWidgetConfig,
|
|
2
|
+
import { AXPWidgetPropertyGroup, AXPWidgetProperty, AXPColumnWidgetComponent, AXPLayoutBaseWidgetComponent, AXPWidgetCoreElementAPI, AXPWidgetConfig, AXPValueWidgetComponent, AXPDataListWidgetComponent, AXPWidgetNode, AXPBlockBaseLayoutWidgetComponent, AXPFlexBaseLayoutWidgetComponent, AXPFlexItemBaseLayoutWidgetComponent, AXPWidgetCoreElementAction, AXPTableBaseLayoutWidgetComponent, AXPTableItemBaseLayoutWidgetComponent, AXPGridBoxString, AXPGridBreakpointValues, AXPBreakpoints, AXPBorderBox, AXPSpacingBox, AXPBorderBoxString, AXPPropertyEditorSideValues, AXPPropertyEditorCornerValues, AXPFlexBoxString, AXPGridItemBoxString, AXPSpacingBoxString } from '@acorex/platform/layout/widget-core';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
|
-
import { EventEmitter,
|
|
5
|
-
import { AXStyleColorType,
|
|
4
|
+
import { EventEmitter, Signal, InjectionToken, OnInit, OnDestroy, WritableSignal, ElementRef, ChangeDetectorRef, ComponentRef } from '@angular/core';
|
|
5
|
+
import { AXStyleColorType, AXClickEvent, AXStyleLookType, AXDataSource, AXValueChangedEvent, AXDataSourceFilterOption, AXDirection, AXButtonClickEvent } from '@acorex/cdk/common';
|
|
6
6
|
import { AXPClipBoardService, AXPLanguage } from '@acorex/platform/common';
|
|
7
7
|
import { AXDropListDroppedEvent } from '@acorex/cdk/drag-drop';
|
|
8
8
|
import { AXPDragDropListItem } from '@acorex/platform/layout/components';
|
|
9
|
-
import { AXPopoverComponent } from '@acorex/components/popover';
|
|
10
9
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
11
10
|
import { AXPValidationRule, AXPTag, AXPFileListItem, AXPExpressionEvaluatorService, AXPActionMenuItem } from '@acorex/platform/core';
|
|
12
11
|
import { AXValidationService } from '@acorex/core/validation';
|
|
@@ -27,6 +26,7 @@ import { AXGridLayoutOptions, AXGridLayoutNode } from '@acorex/components/grid-l
|
|
|
27
26
|
import * as _acorex_platform_layout_widgets from '@acorex/platform/layout/widgets';
|
|
28
27
|
import { AXStepWizardComponent } from '@acorex/components/step-wizard';
|
|
29
28
|
import { AXMenuItem } from '@acorex/components/menu';
|
|
29
|
+
import { AXPopoverComponent } from '@acorex/components/popover';
|
|
30
30
|
|
|
31
31
|
declare const AXP_STYLING_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
32
32
|
declare const AXP_DATA_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
@@ -127,6 +127,17 @@ declare const AXP_BETWEEN_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
|
127
127
|
declare const AXP_EQUAL_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
128
128
|
declare const AXP_CALLBACK_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
129
129
|
|
|
130
|
+
declare class AXPButtonWidgetColumnComponent extends AXPColumnWidgetComponent<any> {
|
|
131
|
+
protected disabled: _angular_core.Signal<boolean>;
|
|
132
|
+
protected color: _angular_core.Signal<AXStyleColorType>;
|
|
133
|
+
protected text: _angular_core.Signal<string | undefined>;
|
|
134
|
+
protected loading: _angular_core.Signal<boolean>;
|
|
135
|
+
protected icon: _angular_core.Signal<string | undefined>;
|
|
136
|
+
protected handleClick(e: AXClickEvent): void;
|
|
137
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPButtonWidgetColumnComponent, never>;
|
|
138
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPButtonWidgetColumnComponent, "axp-button-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
139
|
+
}
|
|
140
|
+
|
|
130
141
|
declare class AXPButtonWidgetViewComponent extends AXPLayoutBaseWidgetComponent {
|
|
131
142
|
protected disabled: _angular_core.Signal<boolean>;
|
|
132
143
|
protected color: _angular_core.Signal<AXStyleColorType>;
|
|
@@ -166,10 +177,18 @@ interface AXPButtonWidgetEditOptions {
|
|
|
166
177
|
loading?: boolean;
|
|
167
178
|
icon?: string;
|
|
168
179
|
}
|
|
180
|
+
interface AXPButtonWidgetColumnOptions {
|
|
181
|
+
disabled?: boolean;
|
|
182
|
+
color?: AXStyleColorType;
|
|
183
|
+
text?: string;
|
|
184
|
+
loading?: boolean;
|
|
185
|
+
icon?: string;
|
|
186
|
+
}
|
|
169
187
|
interface AXPButtonWidgetOptions {
|
|
170
188
|
designer: AXPButtonWidgetDesignerOptions;
|
|
171
189
|
view: AXPButtonWidgetViewOptions;
|
|
172
190
|
edit: AXPButtonWidgetEditOptions;
|
|
191
|
+
column: AXPButtonWidgetColumnOptions;
|
|
173
192
|
}
|
|
174
193
|
declare module '@acorex/platform/layout/widget-core' {
|
|
175
194
|
interface AXPWidgetTypesMap {
|
|
@@ -416,10 +435,13 @@ interface AXPColorPaletteWidgetOptions {
|
|
|
416
435
|
column: AXPColorPaletteWidgetColumnOptions;
|
|
417
436
|
}
|
|
418
437
|
|
|
419
|
-
declare class AXPConnectedListsWidgetEditComponent extends AXPValueWidgetComponent<AXPDragDropListItem[]> {
|
|
438
|
+
declare class AXPConnectedListsWidgetEditComponent extends AXPValueWidgetComponent<AXPDragDropListItem[] | string[]> {
|
|
439
|
+
private isStringArray;
|
|
420
440
|
listSelectedItems: _angular_core.WritableSignal<AXPDragDropListItem[]>;
|
|
421
441
|
listAvailableItems: _angular_core.WritableSignal<AXPDragDropListItem[]>;
|
|
422
442
|
protected emptyMessage: _angular_core.Signal<string>;
|
|
443
|
+
private updateValue;
|
|
444
|
+
onItemsChange(items: AXPDragDropListItem[]): void;
|
|
423
445
|
onDrop(event: AXDropListDroppedEvent): void;
|
|
424
446
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPConnectedListsWidgetEditComponent, never>;
|
|
425
447
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPConnectedListsWidgetEditComponent, "axp-connected-drag-drop-lists-widget-edit", never, {}, {}, never, never, true, never>;
|
|
@@ -431,18 +453,34 @@ declare class AXPConnectedListsWidgetViewComponent extends AXPValueWidgetCompone
|
|
|
431
453
|
}
|
|
432
454
|
|
|
433
455
|
declare class AXPConnectedListsWidgetColumnComponent extends AXPColumnWidgetComponent<AXPDragDropListItem[] | null | undefined> {
|
|
434
|
-
protected moreButton: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
435
|
-
protected morePopover: _angular_core.Signal<AXPopoverComponent | undefined>;
|
|
436
|
-
protected isMorePopoverOpen: _angular_core.WritableSignal<boolean>;
|
|
437
456
|
protected allItems: _angular_core.Signal<AXPDragDropListItem[]>;
|
|
438
|
-
protected showMoreItems(): void;
|
|
439
|
-
protected onMorePopoverOpenChange(event: any): void;
|
|
440
|
-
private openMorePopover;
|
|
441
457
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPConnectedListsWidgetColumnComponent, never>;
|
|
442
458
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPConnectedListsWidgetColumnComponent, "axp-connected-drag-drop-lists-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
443
459
|
}
|
|
444
460
|
|
|
445
461
|
declare const AXPConnectedDragDropListsWidget: AXPWidgetConfig;
|
|
462
|
+
interface AXPConnectedListsWidgetDesignerOptions {
|
|
463
|
+
availableItems?: AXPDragDropListItem[];
|
|
464
|
+
emptyMessage?: string;
|
|
465
|
+
}
|
|
466
|
+
interface AXPConnectedListsWidgetViewOptions {
|
|
467
|
+
availableItems?: AXPDragDropListItem[];
|
|
468
|
+
emptyMessage?: string;
|
|
469
|
+
}
|
|
470
|
+
interface AXPConnectedListsWidgetEditOptions {
|
|
471
|
+
availableItems?: AXPDragDropListItem[];
|
|
472
|
+
emptyMessage?: string;
|
|
473
|
+
}
|
|
474
|
+
interface AXPConnectedListsWidgetColumnOptions {
|
|
475
|
+
availableItems?: AXPDragDropListItem[];
|
|
476
|
+
emptyMessage?: string;
|
|
477
|
+
}
|
|
478
|
+
interface AXPConnectedListsWidgetOptions {
|
|
479
|
+
designer: AXPConnectedListsWidgetDesignerOptions;
|
|
480
|
+
view: AXPConnectedListsWidgetViewOptions;
|
|
481
|
+
edit: AXPConnectedListsWidgetEditOptions;
|
|
482
|
+
column: AXPConnectedListsWidgetColumnOptions;
|
|
483
|
+
}
|
|
446
484
|
declare module '@acorex/platform/layout/widget-core' {
|
|
447
485
|
interface AXPWidgetTypesMap {
|
|
448
486
|
connectedLists: 'connected-lists-editor';
|
|
@@ -735,18 +773,34 @@ declare class AXPList2WidgetViewComponent extends AXPValueWidgetComponent<AXPDra
|
|
|
735
773
|
}
|
|
736
774
|
|
|
737
775
|
declare class AXPList2WidgetColumnComponent extends AXPColumnWidgetComponent<AXPDragDropListItem[] | null | undefined> {
|
|
738
|
-
protected moreButton: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
739
|
-
protected morePopover: _angular_core.Signal<AXPopoverComponent | undefined>;
|
|
740
|
-
protected isMorePopoverOpen: _angular_core.WritableSignal<boolean>;
|
|
741
776
|
protected allItems: _angular_core.Signal<AXPDragDropListItem[]>;
|
|
742
|
-
protected showMoreItems(): void;
|
|
743
|
-
protected onMorePopoverOpenChange(event: any): void;
|
|
744
|
-
private openMorePopover;
|
|
745
777
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPList2WidgetColumnComponent, never>;
|
|
746
778
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPList2WidgetColumnComponent, "axp-drag-drop-list-widget-column", never, { "rawValue": { "alias": "rawValue"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, {}, never, never, true, never>;
|
|
747
779
|
}
|
|
748
780
|
|
|
749
781
|
declare const AXPDragDropListWidget: AXPWidgetConfig;
|
|
782
|
+
interface AXPListWidgetDesignerOptions {
|
|
783
|
+
disabled?: boolean;
|
|
784
|
+
emptyMessage?: string;
|
|
785
|
+
}
|
|
786
|
+
interface AXPListWidgetViewOptions {
|
|
787
|
+
disabled?: boolean;
|
|
788
|
+
emptyMessage?: string;
|
|
789
|
+
}
|
|
790
|
+
interface AXPListWidgetEditOptions {
|
|
791
|
+
disabled?: boolean;
|
|
792
|
+
emptyMessage?: string;
|
|
793
|
+
}
|
|
794
|
+
interface AXPListWidgetColumnOptions {
|
|
795
|
+
disabled?: boolean;
|
|
796
|
+
emptyMessage?: string;
|
|
797
|
+
}
|
|
798
|
+
interface AXPListWidgetOptions {
|
|
799
|
+
designer: AXPListWidgetDesignerOptions;
|
|
800
|
+
view: AXPListWidgetViewOptions;
|
|
801
|
+
edit: AXPListWidgetEditOptions;
|
|
802
|
+
column: AXPListWidgetColumnOptions;
|
|
803
|
+
}
|
|
750
804
|
declare module '@acorex/platform/layout/widget-core' {
|
|
751
805
|
interface AXPWidgetTypesMap {
|
|
752
806
|
list: 'list-editor';
|
|
@@ -3919,5 +3973,5 @@ declare class AXPWidgetsModule {
|
|
|
3919
3973
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXPWidgetsModule>;
|
|
3920
3974
|
}
|
|
3921
3975
|
|
|
3922
|
-
export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetColumnComponent, AXPCheckBoxWidgetDesignerComponent, AXPCheckBoxWidgetEditComponent, AXPCheckBoxWidgetViewComponent, AXPColorBoxWidget, AXPColorBoxWidgetColumnComponent, AXPColorBoxWidgetDesignerComponent, AXPColorBoxWidgetEditComponent, AXPColorBoxWidgetViewComponent, AXPColorPaletteWidget, AXPColorPaletteWidgetColumnComponent, AXPColorPaletteWidgetDesignerComponent, AXPColorPaletteWidgetEditComponent, AXPColorPaletteWidgetViewComponent, AXPConnectedDragDropListsWidget, AXPConnectedListsWidgetColumnComponent, AXPConnectedListsWidgetEditComponent, AXPConnectedListsWidgetViewComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDataListWidget, AXPDataListWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPDragDropListWidget, AXPDynamicFormDesignerWidget, AXPDynamicFormDesignerWidgetColumnComponent, AXPDynamicFormDesignerWidgetEditComponent, AXPDynamicFormDesignerWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPExtraPropertiesSchemaWidget, AXPExtraPropertiesValuesWidget, AXPExtraPropertiesWidget, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, AXPFileListComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPList2WidgetColumnComponent, AXPList2WidgetEditComponent, AXPList2WidgetViewComponent, AXPMapWidgetEditComponent, AXPMapWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPStepWizardWidget, AXPStepWizardWidgetViewComponent, AXPTableItemWidget, AXPTableItemWidgetDesignerComponent, AXPTableItemWidgetViewComponent, AXPTableWidget, AXPTableWidgetDesignerComponent, AXPTableWidgetViewComponent, AXPTagEditorWidget, AXPTagEditorWidgetColumnComponent, AXPTagEditorWidgetEditComponent, AXPTagEditorWidgetViewComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ABSOLUTE_UNITS, AXP_ALLOW_CLEAR_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_ANIMATION_PROPERTY_GROUP, AXP_APPEARANCE_PROPERTY_GROUP, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BETWEEN_VALIDATION_PROPERTY, AXP_BG_COLOR_PROPERTY, AXP_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_PROPERTIES, AXP_DATA_SOURCE_PROPERTY, AXP_DATA_SOURCE_TEXT_FIELD, AXP_DATA_SOURCE_VALUE_FIELD, AXP_DATE_FORMAT_PROPERTY, AXP_DEFAULT_ROW_COUNT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FIT_LINE_COUNT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_GREATER_THAN_VALIDATION_PROPERTY, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ADVANCED_GRID_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_ITEM_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTY, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SHOW_HEADER_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_LAYOUT_TABLE_PROPERTY_GROUP, AXP_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MAX_LINE_COUNT_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LINE_COUNT_PROPERTY, AXP_MULTI_LANGUAGE_PROPERTY, AXP_NAME_PROPERTY, AXP_NUMBER_SEPARATOR_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_RELATIVE_UNITS, AXP_RELATIVE_UNITS_NO_PERCENT, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_SHOW_PASSWORD_PROPERTY, AXP_SPACING_UNITS, AXP_SPIN_BUTTON_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMNS_PROPERTY, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TABLE_ITEM_COLSPAN_PROPERTY, AXP_TABLE_ITEM_ROWSPAN_PROPERTY, AXP_TEXT_ALIGN_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_VERTICAL_ALIGN_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, AXP_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, DEFAULT_STRATEGY_CONFIG, STRATEGY_CONFIG_TOKEN, booleanDefaultProperty, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
|
|
3923
|
-
export type { AXPAbsoluteUnit, AXPAdvancedGridItemWidgetDesignerOptions, AXPAdvancedGridItemWidgetEditOptions, AXPAdvancedGridItemWidgetOptions, AXPAdvancedGridItemWidgetPrintOptions, AXPAdvancedGridItemWidgetViewOptions, AXPAdvancedGridWidgetDesignerOptions, AXPAdvancedGridWidgetEditOptions, AXPAdvancedGridWidgetOptions, AXPAdvancedGridWidgetViewOptions, AXPAvatarWidgetColumnOptions, AXPAvatarWidgetDesignerOptions, AXPAvatarWidgetEditOptions, AXPAvatarWidgetOptions, AXPAvatarWidgetPrintOptions, AXPAvatarWidgetViewOptions, AXPBlockWidgetConfigType, AXPBlockWidgetDesignerOptions, AXPBlockWidgetEditOptions, AXPBlockWidgetOptions, AXPBlockWidgetPrintOptions, AXPBlockWidgetViewOptions, AXPBorderRadiusUnit, AXPBorderWidthUnit, AXPButtonWidgetDesignerOptions, AXPButtonWidgetEditOptions, AXPButtonWidgetOptions, AXPButtonWidgetViewOptions, AXPCheckBoxWidgetColumnOptions, AXPCheckBoxWidgetConfigType, AXPCheckBoxWidgetDesignerOptions, AXPCheckBoxWidgetEditOptions, AXPCheckBoxWidgetOptions, AXPCheckBoxWidgetViewOptions, AXPColorBoxWidgetColumnOptions, AXPColorBoxWidgetDesignerOptions, AXPColorBoxWidgetEditOptions, AXPColorBoxWidgetOptions, AXPColorBoxWidgetViewOptions, AXPColorPaletteWidgetColumnOptions, AXPColorPaletteWidgetDesignerOptions, AXPColorPaletteWidgetEditOptions, AXPColorPaletteWidgetOptions, AXPColorPaletteWidgetViewOptions, AXPContactWidgetColumnOptions, AXPContactWidgetDesignerOptions, AXPContactWidgetEditOptions, AXPContactWidgetOptions, AXPContactWidgetViewOptions, AXPDataListWidgetColumn, AXPDataListWidgetComponentOptions, AXPDataListWidgetEditOptions, AXPDataListWidgetOptions, AXPDataListWidgetRowCommand, AXPDataListWidgetViewOptions, AXPDateTimeBoxWidgetColumnOptions, AXPDateTimeBoxWidgetDesignerOptions, AXPDateTimeBoxWidgetEditOptions, AXPDateTimeBoxWidgetOptions, AXPDateTimeBoxWidgetPrintOptions, AXPDateTimeBoxWidgetViewOptions, AXPFieldsetWidgetDesignerOptions, AXPFieldsetWidgetEditOptions, AXPFieldsetWidgetLook, AXPFieldsetWidgetOptions, AXPFieldsetWidgetPrintOptions, AXPFieldsetWidgetViewOptions, AXPFileUploaderWidgetColumnOptions, AXPFileUploaderWidgetDesignerOptions, AXPFileUploaderWidgetEditOptions, AXPFileUploaderWidgetOptions, AXPFileUploaderWidgetPrintOptions, AXPFileUploaderWidgetViewOptions, AXPFlexBoxAlignmentOption, AXPFlexBoxOption, AXPFlexItemStyles, AXPFlexItemWidgetDesignerOptions, AXPFlexItemWidgetEditOptions, AXPFlexItemWidgetOptions, AXPFlexItemWidgetPrintOptions, AXPFlexItemWidgetViewOptions, AXPFlexWidgetConfigType, AXPFlexWidgetDesignerOptions, AXPFlexWidgetEditOptions, AXPFlexWidgetOptions, AXPFlexWidgetPrintOptions, AXPFlexWidgetViewOptions, AXPGalleryWidgetDesignerOptions, AXPGalleryWidgetEditOptions, AXPGalleryWidgetOptions, AXPGalleryWidgetPrintOptions, AXPGalleryWidgetViewOptions, AXPGridBoxAlignmentOption, AXPGridBoxOption, AXPImageMarkerWidgetColumnOptions, AXPImageMarkerWidgetComponentOptions, AXPImageMarkerWidgetDesignerOptions, AXPImageMarkerWidgetEditOptions, AXPImageMarkerWidgetOptions, AXPImageMarkerWidgetPoint, AXPImageMarkerWidgetViewOptions, AXPLargeTextWidgetColumnOptions, AXPLargeTextWidgetDesignerOptions, AXPLargeTextWidgetEditOptions, AXPLargeTextWidgetOptions, AXPLargeTextWidgetPrintOptions, AXPLargeTextWidgetViewOptions, AXPNumberBoxWidgetColumnOptions, AXPNumberBoxWidgetDesignerOptions, AXPNumberBoxWidgetEditOptions, AXPNumberBoxWidgetOptions, AXPNumberBoxWidgetPrintOptions, AXPNumberBoxWidgetViewOptions, AXPPageWidgetDesignerOptions, AXPPageWidgetEditOptions, AXPPageWidgetOptions, AXPPageWidgetPrintOptions, AXPPageWidgetViewOptions, AXPPasswordBoxWidgetColumnOptions, AXPPasswordBoxWidgetDesignerOptions, AXPPasswordBoxWidgetEditOptions, AXPPasswordBoxWidgetOptions, AXPPasswordBoxWidgetPrintOptions, AXPPasswordBoxWidgetViewOptions, AXPRelativeUnit, AXPRelativeUnitNoPercent, AXPRepeaterWidgetDesignerOptions, AXPRepeaterWidgetEditOptions, AXPRepeaterWidgetOptions, AXPRepeaterWidgetPrintOptions, AXPRepeaterWidgetViewOptions, AXPRichTextWidgetColumnOptions, AXPRichTextWidgetDesignerOptions, AXPRichTextWidgetEditOptions, AXPRichTextWidgetOptions, AXPRichTextWidgetPrintOptions, AXPRichTextWidgetViewOptions, AXPSelectBoxWidgetColumnOptions, AXPSelectBoxWidgetDesignerOptions, AXPSelectBoxWidgetEditOptions, AXPSelectBoxWidgetOptions, AXPSelectBoxWidgetPrintOptions, AXPSelectBoxWidgetViewOptions, AXPSelectionListWidgetColumnOptions, AXPSelectionListWidgetDesignerOptions, AXPSelectionListWidgetEditOptions, AXPSelectionListWidgetOptions, AXPSelectionListWidgetPrintOptions, AXPSelectionListWidgetViewOptions, AXPSignatureWidgetColumnOptions, AXPSignatureWidgetDesignerOptions, AXPSignatureWidgetEditOptions, AXPSignatureWidgetOptions, AXPSignatureWidgetPrintOptions, AXPSignatureWidgetViewOptions, AXPSpacingBoxDefaultValues, AXPSpacingUnit, AXPStepStatus, AXPStepWizardActionConfig, AXPStepWizardDirection, AXPStepWizardEvents, AXPStepWizardGlobalActions, AXPStepWizardGuard, AXPStepWizardGuardPayload, AXPStepWizardStatus, AXPStepWizardStep, AXPStepWizardWidgetDefinition, AXPTableItemWidgetDesignerOptions, AXPTableItemWidgetEditOptions, AXPTableItemWidgetOptions, AXPTableItemWidgetPrintOptions, AXPTableItemWidgetViewOptions, AXPTableWidgetConfigType, AXPTableWidgetDesignerOptions, AXPTableWidgetEditOptions, AXPTableWidgetOptions, AXPTableWidgetPrintOptions, AXPTableWidgetViewOptions, AXPTagEditorWidgetColumnOptions, AXPTagEditorWidgetDesignerOptions, AXPTagEditorWidgetEditOptions, AXPTagEditorWidgetOptions, AXPTagEditorWidgetPrintOptions, AXPTagEditorWidgetViewOptions, AXPTemplateBoxWidgetColumnOptions, AXPTemplateBoxWidgetDesignerOptions, AXPTemplateBoxWidgetEditOptions, AXPTemplateBoxWidgetOptions, AXPTemplateBoxWidgetPrintOptions, AXPTemplateBoxWidgetViewOptions, AXPTextBoxWidgetColumnOptions, AXPTextBoxWidgetDesignerOptions, AXPTextBoxWidgetEditOptions, AXPTextBoxWidgetOptions, AXPTextBoxWidgetPrintOptions, AXPTextBoxWidgetViewOptions, AXPToggleWidgetColumnOptions, AXPToggleWidgetDesignerOptions, AXPToggleWidgetEditOptions, AXPToggleWidgetOptions, AXPToggleWidgetPrintOptions, AXPToggleWidgetViewOptions, AXStepWizardLook, StrategyConfig };
|
|
3976
|
+
export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetColumnComponent, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetColumnComponent, AXPCheckBoxWidgetDesignerComponent, AXPCheckBoxWidgetEditComponent, AXPCheckBoxWidgetViewComponent, AXPColorBoxWidget, AXPColorBoxWidgetColumnComponent, AXPColorBoxWidgetDesignerComponent, AXPColorBoxWidgetEditComponent, AXPColorBoxWidgetViewComponent, AXPColorPaletteWidget, AXPColorPaletteWidgetColumnComponent, AXPColorPaletteWidgetDesignerComponent, AXPColorPaletteWidgetEditComponent, AXPColorPaletteWidgetViewComponent, AXPConnectedDragDropListsWidget, AXPConnectedListsWidgetColumnComponent, AXPConnectedListsWidgetEditComponent, AXPConnectedListsWidgetViewComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDataListWidget, AXPDataListWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPDragDropListWidget, AXPDynamicFormDesignerWidget, AXPDynamicFormDesignerWidgetColumnComponent, AXPDynamicFormDesignerWidgetEditComponent, AXPDynamicFormDesignerWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPExtraPropertiesSchemaWidget, AXPExtraPropertiesValuesWidget, AXPExtraPropertiesWidget, AXPFieldsetWidget, AXPFieldsetWidgetDesignerComponent, AXPFieldsetWidgetViewComponent, AXPFileListComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexItemOptionsWidget, AXPFlexItemOptionsWidgetEditComponent, AXPFlexItemWidget, AXPFlexItemWidgetDesignerComponent, AXPFlexItemWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridItemOptionsWidget, AXPGridItemOptionsWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPList2WidgetColumnComponent, AXPList2WidgetEditComponent, AXPList2WidgetViewComponent, AXPMapWidgetEditComponent, AXPMapWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetViewComponent, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPStepWizardWidget, AXPStepWizardWidgetViewComponent, AXPTableItemWidget, AXPTableItemWidgetDesignerComponent, AXPTableItemWidgetViewComponent, AXPTableWidget, AXPTableWidgetDesignerComponent, AXPTableWidgetViewComponent, AXPTagEditorWidget, AXPTagEditorWidgetColumnComponent, AXPTagEditorWidgetEditComponent, AXPTagEditorWidgetViewComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, AXP_ABSOLUTE_UNITS, AXP_ALLOW_CLEAR_PROPERTY, AXP_ALLOW_MULTIPLE_PROPERTY, AXP_ALLOW_SEARCH_PROPERTY, AXP_ANIMATION_PROPERTY_GROUP, AXP_APPEARANCE_PROPERTY_GROUP, AXP_BEHAVIOR_PROPERTY_GROUP, AXP_BETWEEN_VALIDATION_PROPERTY, AXP_BG_COLOR_PROPERTY, AXP_BORDER_RADIUS_UNITS, AXP_BORDER_WIDTH_UNITS, AXP_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_PROPERTIES, AXP_DATA_SOURCE_PROPERTY, AXP_DATA_SOURCE_TEXT_FIELD, AXP_DATA_SOURCE_VALUE_FIELD, AXP_DATE_FORMAT_PROPERTY, AXP_DEFAULT_ROW_COUNT_PROPERTY, AXP_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_PROPERTY, AXP_FIT_LINE_COUNT_PROPERTY, AXP_FONT_SIZE_PROPERTY, AXP_Flex_Box_Align_Options, AXP_Flex_Box_Alignments, AXP_Flex_Box_Justify_Options, AXP_GREATER_THAN_VALIDATION_PROPERTY, AXP_Grid_Box_Align_Items_Options, AXP_Grid_Box_Alignments, AXP_Grid_Box_Justify_Items_Options, AXP_HAS_CLEAR_BUTTON_PROPERTY, AXP_HAS_COPY_ICON_PROPERTY, AXP_HAS_EYE_ICON_PROPERTY, AXP_HAS_ICON_PROPERTY, AXP_HAS_LABEL_PROPERTY, AXP_ICON_PROPERTY, AXP_IS_LOADING_PROPERTY, AXP_LABEL_PROPERTY, AXP_LAYOUT_ADVANCED_GRID_PROPERTY, AXP_LAYOUT_BORDER_PROPERTY, AXP_LAYOUT_COLUMNS_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_ITEM_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTY, AXP_LAYOUT_GRID_PROPERTIES, AXP_LAYOUT_GRID_PROPERTY, AXP_LAYOUT_GRID_PROPERTY_GROUP, AXP_LAYOUT_GRID_ROW_PROPERTIES, AXP_LAYOUT_ROWS_PROPERTY, AXP_LAYOUT_SHOW_HEADER_PROPERTY, AXP_LAYOUT_SPACING_PROPERTY, AXP_LAYOUT_TABLE_PROPERTY_GROUP, AXP_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MAX_LINE_COUNT_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LINE_COUNT_PROPERTY, AXP_MULTI_LANGUAGE_PROPERTY, AXP_NAME_PROPERTY, AXP_NUMBER_SEPARATOR_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_RELATIVE_UNITS, AXP_RELATIVE_UNITS_NO_PERCENT, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_SHOW_PASSWORD_PROPERTY, AXP_SPACING_UNITS, AXP_SPIN_BUTTON_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMNS_PROPERTY, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TABLE_ITEM_COLSPAN_PROPERTY, AXP_TABLE_ITEM_ROWSPAN_PROPERTY, AXP_TEXT_ALIGN_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_VERTICAL_ALIGN_PROPERTY, AXP_WIDGET_PROPERTY_GROUP, AXP_default_Border_Box_Units, AXP_default_Border_Box_Value, AXP_default_Spacing_Box_Units, AXP_default_Spacing_Box_Value, DEFAULT_STRATEGY_CONFIG, STRATEGY_CONFIG_TOKEN, booleanDefaultProperty, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
|
|
3977
|
+
export type { AXPAbsoluteUnit, AXPAdvancedGridItemWidgetDesignerOptions, AXPAdvancedGridItemWidgetEditOptions, AXPAdvancedGridItemWidgetOptions, AXPAdvancedGridItemWidgetPrintOptions, AXPAdvancedGridItemWidgetViewOptions, AXPAdvancedGridWidgetDesignerOptions, AXPAdvancedGridWidgetEditOptions, AXPAdvancedGridWidgetOptions, AXPAdvancedGridWidgetViewOptions, AXPAvatarWidgetColumnOptions, AXPAvatarWidgetDesignerOptions, AXPAvatarWidgetEditOptions, AXPAvatarWidgetOptions, AXPAvatarWidgetPrintOptions, AXPAvatarWidgetViewOptions, AXPBlockWidgetConfigType, AXPBlockWidgetDesignerOptions, AXPBlockWidgetEditOptions, AXPBlockWidgetOptions, AXPBlockWidgetPrintOptions, AXPBlockWidgetViewOptions, AXPBorderRadiusUnit, AXPBorderWidthUnit, AXPButtonWidgetColumnOptions, AXPButtonWidgetDesignerOptions, AXPButtonWidgetEditOptions, AXPButtonWidgetOptions, AXPButtonWidgetViewOptions, AXPCheckBoxWidgetColumnOptions, AXPCheckBoxWidgetConfigType, AXPCheckBoxWidgetDesignerOptions, AXPCheckBoxWidgetEditOptions, AXPCheckBoxWidgetOptions, AXPCheckBoxWidgetViewOptions, AXPColorBoxWidgetColumnOptions, AXPColorBoxWidgetDesignerOptions, AXPColorBoxWidgetEditOptions, AXPColorBoxWidgetOptions, AXPColorBoxWidgetViewOptions, AXPColorPaletteWidgetColumnOptions, AXPColorPaletteWidgetDesignerOptions, AXPColorPaletteWidgetEditOptions, AXPColorPaletteWidgetOptions, AXPColorPaletteWidgetViewOptions, AXPConnectedListsWidgetColumnOptions, AXPConnectedListsWidgetDesignerOptions, AXPConnectedListsWidgetEditOptions, AXPConnectedListsWidgetOptions, AXPConnectedListsWidgetViewOptions, AXPContactWidgetColumnOptions, AXPContactWidgetDesignerOptions, AXPContactWidgetEditOptions, AXPContactWidgetOptions, AXPContactWidgetViewOptions, AXPDataListWidgetColumn, AXPDataListWidgetComponentOptions, AXPDataListWidgetEditOptions, AXPDataListWidgetOptions, AXPDataListWidgetRowCommand, AXPDataListWidgetViewOptions, AXPDateTimeBoxWidgetColumnOptions, AXPDateTimeBoxWidgetDesignerOptions, AXPDateTimeBoxWidgetEditOptions, AXPDateTimeBoxWidgetOptions, AXPDateTimeBoxWidgetPrintOptions, AXPDateTimeBoxWidgetViewOptions, AXPFieldsetWidgetDesignerOptions, AXPFieldsetWidgetEditOptions, AXPFieldsetWidgetLook, AXPFieldsetWidgetOptions, AXPFieldsetWidgetPrintOptions, AXPFieldsetWidgetViewOptions, AXPFileUploaderWidgetColumnOptions, AXPFileUploaderWidgetDesignerOptions, AXPFileUploaderWidgetEditOptions, AXPFileUploaderWidgetOptions, AXPFileUploaderWidgetPrintOptions, AXPFileUploaderWidgetViewOptions, AXPFlexBoxAlignmentOption, AXPFlexBoxOption, AXPFlexItemStyles, AXPFlexItemWidgetDesignerOptions, AXPFlexItemWidgetEditOptions, AXPFlexItemWidgetOptions, AXPFlexItemWidgetPrintOptions, AXPFlexItemWidgetViewOptions, AXPFlexWidgetConfigType, AXPFlexWidgetDesignerOptions, AXPFlexWidgetEditOptions, AXPFlexWidgetOptions, AXPFlexWidgetPrintOptions, AXPFlexWidgetViewOptions, AXPGalleryWidgetDesignerOptions, AXPGalleryWidgetEditOptions, AXPGalleryWidgetOptions, AXPGalleryWidgetPrintOptions, AXPGalleryWidgetViewOptions, AXPGridBoxAlignmentOption, AXPGridBoxOption, AXPImageMarkerWidgetColumnOptions, AXPImageMarkerWidgetComponentOptions, AXPImageMarkerWidgetDesignerOptions, AXPImageMarkerWidgetEditOptions, AXPImageMarkerWidgetOptions, AXPImageMarkerWidgetPoint, AXPImageMarkerWidgetViewOptions, AXPLargeTextWidgetColumnOptions, AXPLargeTextWidgetDesignerOptions, AXPLargeTextWidgetEditOptions, AXPLargeTextWidgetOptions, AXPLargeTextWidgetPrintOptions, AXPLargeTextWidgetViewOptions, AXPListWidgetColumnOptions, AXPListWidgetDesignerOptions, AXPListWidgetEditOptions, AXPListWidgetOptions, AXPListWidgetViewOptions, AXPNumberBoxWidgetColumnOptions, AXPNumberBoxWidgetDesignerOptions, AXPNumberBoxWidgetEditOptions, AXPNumberBoxWidgetOptions, AXPNumberBoxWidgetPrintOptions, AXPNumberBoxWidgetViewOptions, AXPPageWidgetDesignerOptions, AXPPageWidgetEditOptions, AXPPageWidgetOptions, AXPPageWidgetPrintOptions, AXPPageWidgetViewOptions, AXPPasswordBoxWidgetColumnOptions, AXPPasswordBoxWidgetDesignerOptions, AXPPasswordBoxWidgetEditOptions, AXPPasswordBoxWidgetOptions, AXPPasswordBoxWidgetPrintOptions, AXPPasswordBoxWidgetViewOptions, AXPRelativeUnit, AXPRelativeUnitNoPercent, AXPRepeaterWidgetDesignerOptions, AXPRepeaterWidgetEditOptions, AXPRepeaterWidgetOptions, AXPRepeaterWidgetPrintOptions, AXPRepeaterWidgetViewOptions, AXPRichTextWidgetColumnOptions, AXPRichTextWidgetDesignerOptions, AXPRichTextWidgetEditOptions, AXPRichTextWidgetOptions, AXPRichTextWidgetPrintOptions, AXPRichTextWidgetViewOptions, AXPSelectBoxWidgetColumnOptions, AXPSelectBoxWidgetDesignerOptions, AXPSelectBoxWidgetEditOptions, AXPSelectBoxWidgetOptions, AXPSelectBoxWidgetPrintOptions, AXPSelectBoxWidgetViewOptions, AXPSelectionListWidgetColumnOptions, AXPSelectionListWidgetDesignerOptions, AXPSelectionListWidgetEditOptions, AXPSelectionListWidgetOptions, AXPSelectionListWidgetPrintOptions, AXPSelectionListWidgetViewOptions, AXPSignatureWidgetColumnOptions, AXPSignatureWidgetDesignerOptions, AXPSignatureWidgetEditOptions, AXPSignatureWidgetOptions, AXPSignatureWidgetPrintOptions, AXPSignatureWidgetViewOptions, AXPSpacingBoxDefaultValues, AXPSpacingUnit, AXPStepStatus, AXPStepWizardActionConfig, AXPStepWizardDirection, AXPStepWizardEvents, AXPStepWizardGlobalActions, AXPStepWizardGuard, AXPStepWizardGuardPayload, AXPStepWizardStatus, AXPStepWizardStep, AXPStepWizardWidgetDefinition, AXPTableItemWidgetDesignerOptions, AXPTableItemWidgetEditOptions, AXPTableItemWidgetOptions, AXPTableItemWidgetPrintOptions, AXPTableItemWidgetViewOptions, AXPTableWidgetConfigType, AXPTableWidgetDesignerOptions, AXPTableWidgetEditOptions, AXPTableWidgetOptions, AXPTableWidgetPrintOptions, AXPTableWidgetViewOptions, AXPTagEditorWidgetColumnOptions, AXPTagEditorWidgetDesignerOptions, AXPTagEditorWidgetEditOptions, AXPTagEditorWidgetOptions, AXPTagEditorWidgetPrintOptions, AXPTagEditorWidgetViewOptions, AXPTemplateBoxWidgetColumnOptions, AXPTemplateBoxWidgetDesignerOptions, AXPTemplateBoxWidgetEditOptions, AXPTemplateBoxWidgetOptions, AXPTemplateBoxWidgetPrintOptions, AXPTemplateBoxWidgetViewOptions, AXPTextBoxWidgetColumnOptions, AXPTextBoxWidgetDesignerOptions, AXPTextBoxWidgetEditOptions, AXPTextBoxWidgetOptions, AXPTextBoxWidgetPrintOptions, AXPTextBoxWidgetViewOptions, AXPToggleWidgetColumnOptions, AXPToggleWidgetDesignerOptions, AXPToggleWidgetEditOptions, AXPToggleWidgetOptions, AXPToggleWidgetPrintOptions, AXPToggleWidgetViewOptions, AXStepWizardLook, StrategyConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.6.0-next.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
6
6
|
"@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"types": "./index.d.ts",
|
|
28
28
|
"default": "./fesm2022/acorex-platform.mjs"
|
|
29
29
|
},
|
|
30
|
-
"./
|
|
31
|
-
"types": "./
|
|
32
|
-
"default": "./fesm2022/acorex-platform-
|
|
30
|
+
"./core": {
|
|
31
|
+
"types": "./core/index.d.ts",
|
|
32
|
+
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
33
33
|
},
|
|
34
34
|
"./common": {
|
|
35
35
|
"types": "./common/index.d.ts",
|
|
36
36
|
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
37
37
|
},
|
|
38
|
-
"./
|
|
39
|
-
"types": "./
|
|
40
|
-
"default": "./fesm2022/acorex-platform-
|
|
38
|
+
"./auth": {
|
|
39
|
+
"types": "./auth/index.d.ts",
|
|
40
|
+
"default": "./fesm2022/acorex-platform-auth.mjs"
|
|
41
41
|
},
|
|
42
42
|
"./domain": {
|
|
43
43
|
"types": "./domain/index.d.ts",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"types": "./native/index.d.ts",
|
|
48
48
|
"default": "./fesm2022/acorex-platform-native.mjs"
|
|
49
49
|
},
|
|
50
|
-
"./runtime": {
|
|
51
|
-
"types": "./runtime/index.d.ts",
|
|
52
|
-
"default": "./fesm2022/acorex-platform-runtime.mjs"
|
|
53
|
-
},
|
|
54
50
|
"./workflow": {
|
|
55
51
|
"types": "./workflow/index.d.ts",
|
|
56
52
|
"default": "./fesm2022/acorex-platform-workflow.mjs"
|
|
57
53
|
},
|
|
54
|
+
"./runtime": {
|
|
55
|
+
"types": "./runtime/index.d.ts",
|
|
56
|
+
"default": "./fesm2022/acorex-platform-runtime.mjs"
|
|
57
|
+
},
|
|
58
58
|
"./layout/builder": {
|
|
59
59
|
"types": "./layout/builder/index.d.ts",
|
|
60
60
|
"default": "./fesm2022/acorex-platform-layout-builder.mjs"
|