@acorex/platform 20.0.9 → 20.0.10
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-builder.mjs +2 -0
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-_-ol0LYC.mjs → acorex-platform-themes-default-entity-master-list-view.component-CElBGzRM.mjs} +2 -2
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-CElBGzRM.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/fesm2022/acorex-platform-themes-shared-color-chooser-view.component-CUtKW-cD.mjs +51 -0
- package/fesm2022/acorex-platform-themes-shared-color-chooser-view.component-CUtKW-cD.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-shared-icon-chooser-view.component-Dc3LQQOa.mjs +48 -0
- package/fesm2022/acorex-platform-themes-shared-icon-chooser-view.component-Dc3LQQOa.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-shared.mjs +234 -17
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +561 -169
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/layout/builder/index.d.ts +2 -0
- package/package.json +5 -5
- package/widgets/index.d.ts +89 -5
- package/workflow/index.d.ts +5 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-_-ol0LYC.mjs.map +0 -1
package/widgets/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i1 from '@acorex/platform/layout/builder';
|
|
2
|
-
import { AXPWidgetPropertyGroup, AXPWidgetProperty, AXPLayoutWidgetComponent, AXPLayoutElementAPI, AXPWidgetConfig, AXPValueWidgetComponent, AXPColumnWidgetComponent, AXPDataListWidgetComponent } from '@acorex/platform/layout/builder';
|
|
2
|
+
import { AXPWidgetPropertyGroup, AXPWidgetProperty, AXPLayoutWidgetComponent, AXPLayoutElementAPI, AXPWidgetConfig, AXPValueWidgetComponent, AXPColumnWidgetComponent, AXPDataListWidgetComponent, AXPWidgetNode } from '@acorex/platform/layout/builder';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
|
-
import { EventEmitter, Signal, InjectionToken, OnInit, WritableSignal,
|
|
4
|
+
import { EventEmitter, Signal, InjectionToken, OnInit, WritableSignal, OnDestroy, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
5
5
|
import { AXStyleColorType, AXStyleLookType, AXClickEvent, AXDataSource, AXValueChangedEvent, AXDataSourceFilterOption, AXDirection } from '@acorex/cdk/common';
|
|
6
6
|
import { AXPExpression, AXPValidationRules, AXPStringValidationRules, AXPFileListItem, AXPLayoutFlexStyles, AXPValidationRule } from '@acorex/platform/core';
|
|
7
7
|
import { AXPClipBoardService, AXPLanguage } from '@acorex/platform/common';
|
|
@@ -10,6 +10,7 @@ import { AXTranslationService } from '@acorex/core/translation';
|
|
|
10
10
|
import { AXNumberFormatterOptions } from '@acorex/core/format';
|
|
11
11
|
import { AXFileService } from '@acorex/core/file';
|
|
12
12
|
import { AXMediaViewerData } from '@acorex/components/media-viewer';
|
|
13
|
+
import { AXBasePageComponent } from '@acorex/components/page';
|
|
13
14
|
import * as _acorex_components_map from '@acorex/components/map';
|
|
14
15
|
import { AXMapData, AXMapPolygon, AXPoiMarker } from '@acorex/components/map';
|
|
15
16
|
import { AXPlatform } from '@acorex/core/platform';
|
|
@@ -186,7 +187,10 @@ declare class AXPContactWidgetEditComponent extends AXPValueWidgetComponent<AXPC
|
|
|
186
187
|
protected hasIcon: _angular_core.Signal<boolean>;
|
|
187
188
|
private format;
|
|
188
189
|
protected valueAsObject: _angular_core.Signal<AXPContactData>;
|
|
189
|
-
protected labelsDataSource: AXDataSource<
|
|
190
|
+
protected labelsDataSource: AXDataSource<{
|
|
191
|
+
id: string;
|
|
192
|
+
name: string;
|
|
193
|
+
} | undefined>;
|
|
190
194
|
constructor();
|
|
191
195
|
protected handleValueChange(e: AXValueChangedEvent): Promise<void>;
|
|
192
196
|
protected generateClasses(element: 'value' | 'label'): any;
|
|
@@ -501,6 +505,7 @@ declare class AXPNumberBoxWidgetEditComponent extends AXPValueWidgetComponent<nu
|
|
|
501
505
|
protected disabled: Signal<boolean>;
|
|
502
506
|
protected multiple: Signal<boolean>;
|
|
503
507
|
protected clearButton: Signal<boolean>;
|
|
508
|
+
protected spinButton: Signal<boolean>;
|
|
504
509
|
protected decimals: Signal<number>;
|
|
505
510
|
protected minValue: Signal<number>;
|
|
506
511
|
protected maxValue: Signal<number>;
|
|
@@ -1213,6 +1218,85 @@ declare module '@acorex/platform/layout/builder' {
|
|
|
1213
1218
|
}
|
|
1214
1219
|
}
|
|
1215
1220
|
|
|
1221
|
+
interface AXPImageMarkerWidgetOptions {
|
|
1222
|
+
width?: string;
|
|
1223
|
+
image?: string | URL | Blob | ArrayBuffer;
|
|
1224
|
+
radius?: number;
|
|
1225
|
+
color?: string;
|
|
1226
|
+
showGrid?: boolean;
|
|
1227
|
+
gridColor?: string;
|
|
1228
|
+
gridX?: number;
|
|
1229
|
+
gridY?: number;
|
|
1230
|
+
}
|
|
1231
|
+
interface AXPImageMarkerWidgetPoint {
|
|
1232
|
+
x: number;
|
|
1233
|
+
y: number;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
declare class AXPImageMarkerPopupComponent extends AXBasePageComponent {
|
|
1237
|
+
options: {};
|
|
1238
|
+
value: AXPImageMarkerWidgetPoint[];
|
|
1239
|
+
node: AXPWidgetNode;
|
|
1240
|
+
protected ngOnInit(): void;
|
|
1241
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPImageMarkerPopupComponent, never>;
|
|
1242
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPImageMarkerPopupComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
declare class AXPImageMarkerWidgetColumnComponent extends AXPColumnWidgetComponent implements OnDestroy {
|
|
1246
|
+
private popupService;
|
|
1247
|
+
private rawImage;
|
|
1248
|
+
imageUrl: _angular_core.WritableSignal<string | null>;
|
|
1249
|
+
constructor();
|
|
1250
|
+
showPopup(): void;
|
|
1251
|
+
ngOnDestroy(): void;
|
|
1252
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPImageMarkerWidgetColumnComponent, never>;
|
|
1253
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPImageMarkerWidgetColumnComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
declare class AXPImageMarkerWidgetEditComponent extends AXPValueWidgetComponent<AXPImageMarkerWidgetPoint[]> implements OnDestroy {
|
|
1257
|
+
imageRef: _angular_core.Signal<ElementRef<HTMLImageElement>>;
|
|
1258
|
+
width: _angular_core.Signal<string>;
|
|
1259
|
+
radius: _angular_core.Signal<number>;
|
|
1260
|
+
color: _angular_core.Signal<string>;
|
|
1261
|
+
points: _angular_core.Signal<AXPImageMarkerWidgetPoint[]>;
|
|
1262
|
+
showGrid: _angular_core.Signal<boolean>;
|
|
1263
|
+
gridColor: _angular_core.Signal<string>;
|
|
1264
|
+
gridX: _angular_core.Signal<number>;
|
|
1265
|
+
gridY: _angular_core.Signal<number>;
|
|
1266
|
+
gridLines: _angular_core.Signal<{
|
|
1267
|
+
vertical: string[];
|
|
1268
|
+
horizontal: string[];
|
|
1269
|
+
}>;
|
|
1270
|
+
private rawImage;
|
|
1271
|
+
imageUrl: _angular_core.WritableSignal<string | null>;
|
|
1272
|
+
constructor();
|
|
1273
|
+
addPoint(event: PointerEvent): void;
|
|
1274
|
+
removePoint(index: number, event: PointerEvent): void;
|
|
1275
|
+
ngOnDestroy(): void;
|
|
1276
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPImageMarkerWidgetEditComponent, never>;
|
|
1277
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPImageMarkerWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
declare class AXPImageMarkerWidgetViewComponent extends AXPValueWidgetComponent<AXPImageMarkerWidgetPoint[]> implements OnDestroy {
|
|
1281
|
+
width: _angular_core.Signal<string>;
|
|
1282
|
+
radius: _angular_core.Signal<number>;
|
|
1283
|
+
color: _angular_core.Signal<string>;
|
|
1284
|
+
points: _angular_core.Signal<AXPImageMarkerWidgetPoint[]>;
|
|
1285
|
+
private rawImage;
|
|
1286
|
+
imageUrl: _angular_core.WritableSignal<string | null>;
|
|
1287
|
+
constructor();
|
|
1288
|
+
ngOnDestroy(): void;
|
|
1289
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPImageMarkerWidgetViewComponent, never>;
|
|
1290
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPImageMarkerWidgetViewComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
declare const AXPImageMarkerWidget: AXPWidgetConfig;
|
|
1294
|
+
declare module '@acorex/platform/layout/builder' {
|
|
1295
|
+
interface AXPWidgetTypesMap {
|
|
1296
|
+
imageMarker: 'image-marker';
|
|
1297
|
+
}
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1216
1300
|
declare class AXPMapBoxWidgetViewComponent extends AXPValueWidgetComponent<AXMapData | undefined> {
|
|
1217
1301
|
markers: _angular_core.Signal<_acorex_components_map.AXMapMarker[]>;
|
|
1218
1302
|
polygons: _angular_core.Signal<_acorex_components_map.AXMapPolygon[]>;
|
|
@@ -2152,5 +2236,5 @@ declare class AXPWidgetsModule {
|
|
|
2152
2236
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXPWidgetsModule>;
|
|
2153
2237
|
}
|
|
2154
2238
|
|
|
2155
|
-
export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetPrintComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetPrintComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetPrintComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPPropertyEditorHelper, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetFilterComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, 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_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_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_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_COL_END_PROPERTY, AXP_LAYOUT_COL_SPAN_PROPERTY, AXP_LAYOUT_COL_START_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTIES, 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_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_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_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, findNonEmptyBreakpoints, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
|
|
2156
|
-
export type { AXPAdvancedGridItemWidgetOptions, AXPAdvancedGridWidgetOptions, AXPBlockWidgetConfigType, AXPBlockWidgetOptions, AXPBorderBox, AXPBorderBoxString, AXPBreakpointValues, AXPBreakpoints, AXPCheckBoxWidgetConfigType, AXPCheckBoxWidgetOptions, AXPContactWidgetOptions, AXPDateTimeBoxWidgetOptions, AXPEmailBoxWidgetOptions, AXPFlexBoxAlignmentOption, AXPFlexBoxOption, AXPFlexWidgetConfigType, AXPFlexWidgetOptions, AXPGridBoxAlignmentOption, AXPGridBoxOption, AXPGridBoxValues, AXPGridBreakpointValues, AXPLargeTextWidgetOptions, AXPLinkWidgetOptions, AXPNumberBoxWidgetOptions, AXPPageWidgetOptions, AXPPasswordBoxWidgetOptions, AXPPhoneBoxWidgetOptions, AXPPropertyCorners, AXPPropertyEditorCornerValues, AXPPropertyEditorSideGeneric, AXPPropertyEditorSideValues, AXPPropertySides, AXPRepeaterWidgetOptions, AXPRichTextWidgetOptions, AXPSelectBoxWidgetOptions, AXPSelectionListWidgetOptions, AXPSpacingBox, AXPSpacingBoxDefaultValues, AXPSpacingBoxString, AXPTemplateBoxWidgetOptions, AXPTextBoxWidgetOptions, AXPToggleWidgetOptions, StrategyConfig };
|
|
2239
|
+
export { AXPAdvancedGridItemWidget, AXPAdvancedGridItemWidgetDesignerComponent, AXPAdvancedGridItemWidgetPrintComponent, AXPAdvancedGridItemWidgetViewComponent, AXPAdvancedGridOptionsWidget, AXPAdvancedGridOptionsWidgetEditComponent, AXPAdvancedGridWidget, AXPAdvancedGridWidgetDesignerComponent, AXPAdvancedGridWidgetViewComponent, AXPAvatarWidget, AXPAvatarWidgetColumnComponent, AXPAvatarWidgetDesignerComponent, AXPAvatarWidgetEditComponent, AXPAvatarWidgetPrintComponent, AXPAvatarWidgetViewComponent, AXPBetweenExpressionValidationWidget, AXPBetweenValidationWidgetEditComponent, AXPBlockWidget, AXPBlockWidgetDesignerComponent, AXPBlockWidgetViewComponent, AXPBorderWidget, AXPBorderWidgetEditComponent, AXPButtonWidget, AXPButtonWidgetViewComponent, AXPCallbackValidationWidget, AXPCallbackValidationWidgetEditComponent, AXPCheckBoxWidget, AXPCheckBoxWidgetEditComponent, AXPContactWidget, AXPContactWidgetColumnComponent, AXPContactWidgetEditComponent, AXPContactWidgetViewComponent, AXPDateTimeBoxWidget, AXPDateTimeBoxWidgetColumnComponent, AXPDateTimeBoxWidgetEditComponent, AXPDateTimeBoxWidgetFilterComponent, AXPDateTimeBoxWidgetPrintComponent, AXPDateTimeBoxWidgetViewComponent, AXPDirectionWidget, AXPDirectionWidgetEditComponent, AXPEmailBoxWidget, AXPEmailBoxWidgetColumnComponent, AXPEmailBoxWidgetEditComponent, AXPEmailBoxWidgetFilterComponent, AXPEmailBoxWidgetPrintComponent, AXPEmailBoxWidgetViewComponent, AXPEqualValidationWidget, AXPEqualValidationWidgetEditComponent, AXPFileUploaderWidget, AXPFileUploaderWidgetColumnComponent, AXPFileUploaderWidgetEditComponent, AXPFileUploaderWidgetPrintComponent, AXPFileUploaderWidgetService, AXPFileUploaderWidgetViewComponent, AXPFlexOptionsWidget, AXPFlexOptionsWidgetEditComponent, AXPFlexWidget, AXPFlexWidgetDesignerComponent, AXPFlexWidgetViewComponent, AXPGalleryWidget, AXPGalleryWidgetEditComponent, AXPGalleryWidgetPrintComponent, AXPGalleryWidgetViewComponent, AXPGreaterThanExpressionValidationWidget, AXPGreaterThanValidationWidgetEditComponent, AXPGridOptionsWidget, AXPGridOptionsWidgetEditComponent, AXPImageMarkerPopupComponent, AXPImageMarkerWidget, AXPImageMarkerWidgetColumnComponent, AXPImageMarkerWidgetEditComponent, AXPImageMarkerWidgetViewComponent, AXPLargeTextWidget, AXPLargeTextWidgetColumnComponent, AXPLargeTextWidgetEditComponent, AXPLargeTextWidgetFilterComponent, AXPLargeTextWidgetPrintComponent, AXPLargeTextWidgetViewComponent, AXPLessThanExpressionValidationWidget, AXPLessThanValidationWidgetEditComponent, AXPLinkWidget, AXPLinkWidgetColumnComponent, AXPLinkWidgetEditComponent, AXPLinkWidgetFilterComponent, AXPLinkWidgetPrintComponent, AXPLinkWidgetViewComponent, AXPMapBoxWidget, AXPMapBoxWidgetEditComponent, AXPMapBoxWidgetViewComponent, AXPMaxLengthExpressionValidationWidget, AXPMaxLengthValidationWidgetEditComponent, AXPMinLengthExpressionValidationWidget, AXPMinLengthValidationWidgetEditComponent, AXPNumberBoxWidget, AXPNumberBoxWidgetColumnComponent, AXPNumberBoxWidgetEditComponent, AXPNumberBoxWidgetFilterComponent, AXPNumberBoxWidgetPrintComponent, AXPNumberBoxWidgetViewComponent, AXPPageWidget, AXPPageWidgetViewComponent, AXPPasswordBoxWidget, AXPPasswordBoxWidgetColumnComponent, AXPPasswordBoxWidgetEditComponent, AXPPasswordBoxWidgetFilterComponent, AXPPasswordBoxWidgetPrintComponent, AXPPasswordBoxWidgetViewComponent, AXPPhoneBoxWidget, AXPPhoneBoxWidgetColumnComponent, AXPPhoneBoxWidgetEditComponent, AXPPhoneBoxWidgetFilterComponent, AXPPhoneBoxWidgetPrintComponent, AXPPhoneBoxWidgetViewComponent, AXPPropertyEditorHelper, AXPRegularExpressionValidationWidget, AXPRegularExpressionValidationWidgetEditComponent, AXPRepeaterWidget, AXPRepeaterWidgetDesignerComponent, AXPRepeaterWidgetEditComponent, AXPRepeaterWidgetPrintComponent, AXPRepeaterWidgetViewComponent, AXPRequiredValidationWidget, AXPRequiredValidationWidgetEditComponent, AXPRichTextWidget, AXPRichTextWidgetColumnComponent, AXPRichTextWidgetEditComponent, AXPRichTextWidgetFilterComponent, AXPRichTextWidgetPrintComponent, AXPRichTextWidgetViewComponent, AXPSelectBoxWidget, AXPSelectBoxWidgetColumnComponent, AXPSelectBoxWidgetEditComponent, AXPSelectBoxWidgetFilterComponent, AXPSelectBoxWidgetPrintComponent, AXPSelectBoxWidgetViewComponent, AXPSelectionListWidget, AXPSelectionListWidgetColumnComponent, AXPSelectionListWidgetDesignerComponent, AXPSelectionListWidgetEditComponent, AXPSelectionListWidgetFilterComponent, AXPSelectionListWidgetPrintComponent, AXPSelectionListWidgetViewComponent, AXPSignatureWidget, AXPSignatureWidgetColumnComponent, AXPSignatureWidgetEditComponent, AXPSignatureWidgetFilterComponent, AXPSignatureWidgetPrintComponent, AXPSignatureWidgetViewComponent, AXPSpacingWidget, AXPSpacingWidgetEditComponent, AXPTemplateBoxWidget, AXPTemplateBoxWidgetColumnComponent, AXPTemplateBoxWidgetEditComponent, AXPTemplateBoxWidgetFilterComponent, AXPTemplateBoxWidgetPrintComponent, AXPTemplateBoxWidgetViewComponent, AXPTextBoxWidget, AXPTextBoxWidgetColumnComponent, AXPTextBoxWidgetEditComponent, AXPTextBoxWidgetFilterComponent, AXPTextBoxWidgetPrintComponent, AXPTextBoxWidgetViewComponent, AXPToggleWidget, AXPToggleWidgetColumnComponent, AXPToggleWidgetEditComponent, AXPToggleWidgetFilterComponent, AXPToggleWidgetPrintComponent, AXPToggleWidgetViewComponent, AXPWidgetsModule, 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_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_DESCRIPTION_PROPERTY, AXP_DIRECTION_PROPERTY, AXP_DISABLED_PROPERTY, AXP_DOWNLOADABLE_PROPERTY, AXP_EQUAL_VALIDATION_PROPERTY, AXP_FALSY_TEXT_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_COL_END_PROPERTY, AXP_LAYOUT_COL_SPAN_PROPERTY, AXP_LAYOUT_COL_START_PROPERTY, AXP_LAYOUT_DIRECTION_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY, AXP_LAYOUT_FLEX_PROPERTY_GROUP, AXP_LAYOUT_GAP_PROPERTY, AXP_LAYOUT_GRID_ITEM_PROPERTIES, 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_LESS_THAN_VALIDATION_PROPERTY, AXP_MAX_LENGTH_VALIDATION_PROPERTY, AXP_MIN_LENGTH_VALIDATION_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_READONLY_PROPERTY, AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY, AXP_REQUIRED_VALIDATION_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_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_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, findNonEmptyBreakpoints, largeTextDefaultProperty, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty };
|
|
2240
|
+
export type { AXPAdvancedGridItemWidgetOptions, AXPAdvancedGridWidgetOptions, AXPBlockWidgetConfigType, AXPBlockWidgetOptions, AXPBorderBox, AXPBorderBoxString, AXPBreakpointValues, AXPBreakpoints, AXPCheckBoxWidgetConfigType, AXPCheckBoxWidgetOptions, AXPContactWidgetOptions, AXPDateTimeBoxWidgetOptions, AXPEmailBoxWidgetOptions, AXPFlexBoxAlignmentOption, AXPFlexBoxOption, AXPFlexWidgetConfigType, AXPFlexWidgetOptions, AXPGridBoxAlignmentOption, AXPGridBoxOption, AXPGridBoxValues, AXPGridBreakpointValues, AXPImageMarkerWidgetOptions, AXPImageMarkerWidgetPoint, AXPLargeTextWidgetOptions, AXPLinkWidgetOptions, AXPNumberBoxWidgetOptions, AXPPageWidgetOptions, AXPPasswordBoxWidgetOptions, AXPPhoneBoxWidgetOptions, AXPPropertyCorners, AXPPropertyEditorCornerValues, AXPPropertyEditorSideGeneric, AXPPropertyEditorSideValues, AXPPropertySides, AXPRepeaterWidgetOptions, AXPRichTextWidgetOptions, AXPSelectBoxWidgetOptions, AXPSelectionListWidgetOptions, AXPSpacingBox, AXPSpacingBoxDefaultValues, AXPSpacingBoxString, AXPTemplateBoxWidgetOptions, AXPTextBoxWidgetOptions, AXPToggleWidgetOptions, StrategyConfig };
|
package/workflow/index.d.ts
CHANGED
|
@@ -155,6 +155,10 @@ type AXPTask = AXSchedulerAppointment & AXKanbanItem & {
|
|
|
155
155
|
type AXPTaskFilter = AXSchedulerAppointmentDataSourceFilter & {
|
|
156
156
|
types?: string[];
|
|
157
157
|
};
|
|
158
|
+
type AXPTaskAction = {
|
|
159
|
+
nativeEvent: MouseEvent;
|
|
160
|
+
task: AXPTask;
|
|
161
|
+
};
|
|
158
162
|
interface AXPTaskStatus {
|
|
159
163
|
key: string;
|
|
160
164
|
index: number;
|
|
@@ -173,4 +177,4 @@ declare abstract class AXPWorkflowTaskProvider {
|
|
|
173
177
|
declare const AXP_WORKFLOW_TASK_PROVIDER: InjectionToken<AXPWorkflowTaskProvider[]>;
|
|
174
178
|
|
|
175
179
|
export { AXPWorkflowAction, AXPWorkflowContext, AXPWorkflowError, AXPWorkflowEventService, AXPWorkflowFunction, AXPWorkflowModule, AXPWorkflowRegistryService, AXPWorkflowService, AXPWorkflowTaskProvider, AXP_WORKFLOW_TASK_PROVIDER, createWorkFlowEvent, ofType };
|
|
176
|
-
export type { AXPTask, AXPTaskFilter, AXPTaskStatus, AXPWorkflow, AXPWorkflowActionInput, AXPWorkflowCondition, AXPWorkflowConditionType, AXPWorkflowEvent, AXPWorkflowModuleConfigs, AXPWorkflowNextStep, AXPWorkflowStep };
|
|
180
|
+
export type { AXPTask, AXPTaskAction, AXPTaskFilter, AXPTaskStatus, AXPWorkflow, AXPWorkflowActionInput, AXPWorkflowCondition, AXPWorkflowConditionType, AXPWorkflowEvent, AXPWorkflowModuleConfigs, AXPWorkflowNextStep, AXPWorkflowStep };
|