@acorex/platform 21.0.0-next.90 → 21.0.0-next.92
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-auth.mjs +1 -2
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/acorex-platform-common-common-settings.provider-DilV4dql.mjs.map +1 -1
- package/fesm2022/acorex-platform-common.mjs +3 -10
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-contracts.mjs +1736 -27
- package/fesm2022/acorex-platform-contracts.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +6 -1708
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-domain-contracts.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +2 -2
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity-attachments-page.component-CwG6n_Yb.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity-contracts.mjs +27 -1
- package/fesm2022/acorex-platform-layout-entity-contracts.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity-file-list-popup.component--IeMZLIr.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +263 -115
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +4 -2
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +87 -11
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets-page-widget-designer.component-D10yO28c.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-CFyfix31.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets-tabular-data-edit-popup.component-BvFykMTH.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +2 -4
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-runtime.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-CWLfNqV0.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-C7cT82K2.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-DrUwqKKA.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-shared-settings.provider-UyKdkeyk.mjs → acorex-platform-themes-shared-settings.provider-DxtfyNGS.mjs} +2 -2
- package/fesm2022/acorex-platform-themes-shared-settings.provider-DxtfyNGS.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-shared.mjs +2 -2
- package/fesm2022/acorex-platform-workflow.mjs +2 -2
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +3 -5
- package/types/acorex-platform-contracts.d.ts +862 -7
- package/types/acorex-platform-core.d.ts +64 -921
- package/types/acorex-platform-layout-builder.d.ts +3 -3
- package/types/acorex-platform-layout-components.d.ts +6 -6
- package/types/acorex-platform-layout-designer.d.ts +4 -5
- package/types/acorex-platform-layout-entity-contracts.d.ts +90 -3
- package/types/acorex-platform-layout-entity.d.ts +45 -102
- package/types/acorex-platform-layout-views.d.ts +13 -11
- package/types/acorex-platform-layout-widget-core.d.ts +83 -77
- package/types/acorex-platform-layout-widgets.d.ts +9 -8
- package/fesm2022/acorex-platform-themes-shared-settings.provider-UyKdkeyk.mjs.map +0 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { signal, computed, effect, untracked, Injectable, InjectionToken, inject, ElementRef, DestroyRef, EventEmitter, Injector, ChangeDetectorRef, ViewChild, Input, Output, ChangeDetectionStrategy, Component, input, output, ViewContainerRef, Directive, NgModule } from '@angular/core';
|
|
3
3
|
import { convertArrayToDataSource, AXDataSource, AX_STYLE_COLOR_TYPES, AX_STYLE_LOOK_TYPES } from '@acorex/cdk/common';
|
|
4
|
-
import {
|
|
4
|
+
import { AXPWidgetsCatalog, isSelectionValueEqual, isFormValueEqual, extractValue, getSmart, summarizeFormContextDirtyDiff } from '@acorex/platform/contracts';
|
|
5
|
+
import { AXPContextStore, AXPDebugService, FORM_DIRTY_TRACE_NS, AXPDataSourceDefinitionProviderService, AXPExpressionEvaluatorService, OVERLAY_WIDGET_SETTLE_TRACE_NS } from '@acorex/platform/core';
|
|
5
6
|
import { set, merge, cloneDeep, isNil, get, isEqual, isUndefined, isObjectLike, sum, isEmpty, isString } from 'lodash-es';
|
|
6
7
|
import { Subject, BehaviorSubject, filter } from 'rxjs';
|
|
7
|
-
import { AXPWidgetsCatalog } from '@acorex/platform/contracts';
|
|
8
8
|
import * as i1$1 from '@acorex/components/skeleton';
|
|
9
9
|
import { AXSkeletonModule } from '@acorex/components/skeleton';
|
|
10
10
|
import * as i2 from '@acorex/core/translation';
|
|
@@ -1994,6 +1994,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
1994
1994
|
}]
|
|
1995
1995
|
}] });
|
|
1996
1996
|
|
|
1997
|
+
/** Trace namespace for lookup cascade / widget trigger diagnostics (Debug Mode only). */
|
|
1998
|
+
const WIDGET_CASCADE_TRACE_NS = 'widget-cascade';
|
|
1999
|
+
|
|
1997
2000
|
class AXPWidgetRendererDirective {
|
|
1998
2001
|
//#endregion
|
|
1999
2002
|
//#endregion
|
|
@@ -2047,6 +2050,16 @@ class AXPWidgetRendererDirective {
|
|
|
2047
2050
|
this.lastExpressionResults = new Map();
|
|
2048
2051
|
// Buffer for context changes that happen before initial render completes
|
|
2049
2052
|
this.preRenderContextQueue = new Set();
|
|
2053
|
+
/** Increments on each trigger subscription callback (diagnostics for duplicate refresh). */
|
|
2054
|
+
this.triggerFireSeq = 0;
|
|
2055
|
+
/** Active trigger subscriptions registered by {@link assignTriggers}. */
|
|
2056
|
+
this.triggerSubscriptionCount = 0;
|
|
2057
|
+
/**
|
|
2058
|
+
* Last context {@link AXPContextChangeEvent} handled by this renderer.
|
|
2059
|
+
* Prevents re-queueing when the effect re-runs while `lastChange` in the store is unchanged
|
|
2060
|
+
* (e.g. cascade refresh clears an already-empty dependent lookup).
|
|
2061
|
+
*/
|
|
2062
|
+
this.lastProcessedContextChangeRef = null;
|
|
2050
2063
|
effect(async () => {
|
|
2051
2064
|
const changed = this.contextService.changeEvent();
|
|
2052
2065
|
// Don't trigger re-render during initial setup
|
|
@@ -2068,16 +2081,26 @@ class AXPWidgetRendererDirective {
|
|
|
2068
2081
|
// Handle initial context set (full context update)
|
|
2069
2082
|
if (changed.state === 'initiated' && (!changed.path || changed.path === '')) {
|
|
2070
2083
|
// Full context initialization - trigger re-evaluation of all expressions
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2084
|
+
if (this.markContextChangeHandled(changed)) {
|
|
2085
|
+
this.clearExpressionCache();
|
|
2086
|
+
if (this.expressionEvaluators.size > 0) {
|
|
2087
|
+
await this.updateOptionsBasedOnContext();
|
|
2088
|
+
this.applyOptions();
|
|
2089
|
+
}
|
|
2076
2090
|
}
|
|
2077
2091
|
}
|
|
2078
2092
|
else if (changed.path && this.isRelevantContextChange(changed.path)) {
|
|
2079
|
-
|
|
2080
|
-
this.
|
|
2093
|
+
const changedPath = changed.path;
|
|
2094
|
+
if (this.markContextChangeHandled(changed)) {
|
|
2095
|
+
AXPDebugService.instance?.trace(WIDGET_CASCADE_TRACE_NS, 'context-effect', 'Relevant context change', () => ({
|
|
2096
|
+
widgetPath: this.node().path,
|
|
2097
|
+
widgetType: this.node().type,
|
|
2098
|
+
changedPath,
|
|
2099
|
+
hasTriggerDependency: this.hasTriggerDependency(changedPath),
|
|
2100
|
+
hasExpressionDependency: this.hasExpressionDependency(changedPath),
|
|
2101
|
+
}));
|
|
2102
|
+
this.queueContextUpdate(changedPath);
|
|
2103
|
+
}
|
|
2081
2104
|
}
|
|
2082
2105
|
await this.updateVisibility();
|
|
2083
2106
|
});
|
|
@@ -2122,6 +2145,24 @@ class AXPWidgetRendererDirective {
|
|
|
2122
2145
|
}
|
|
2123
2146
|
//#endregion
|
|
2124
2147
|
//#region ---- Context Batching Methods ----
|
|
2148
|
+
/**
|
|
2149
|
+
* Returns false when this renderer already handled the same store change event.
|
|
2150
|
+
* Angular effects can re-run after async work while `changeEvent()` still references
|
|
2151
|
+
* the previous `lastChange` object.
|
|
2152
|
+
*/
|
|
2153
|
+
markContextChangeHandled(changed) {
|
|
2154
|
+
if (this.lastProcessedContextChangeRef === changed) {
|
|
2155
|
+
AXPDebugService.instance?.trace(WIDGET_CASCADE_TRACE_NS, 'context-effect', 'Skipped duplicate changeEvent', () => ({
|
|
2156
|
+
widgetPath: this.node().path,
|
|
2157
|
+
widgetType: this.node().type,
|
|
2158
|
+
changedPath: changed.path,
|
|
2159
|
+
state: changed.state,
|
|
2160
|
+
}));
|
|
2161
|
+
return false;
|
|
2162
|
+
}
|
|
2163
|
+
this.lastProcessedContextChangeRef = changed;
|
|
2164
|
+
return true;
|
|
2165
|
+
}
|
|
2125
2166
|
queueContextUpdate(path) {
|
|
2126
2167
|
if (path) {
|
|
2127
2168
|
// console.log(`🔄 [${this.node().type}] Queueing context update for path: ${path}`);
|
|
@@ -2168,6 +2209,13 @@ class AXPWidgetRendererDirective {
|
|
|
2168
2209
|
const visibilityTime = performance.now() - visibilityStartTime;
|
|
2169
2210
|
// Emit context changes
|
|
2170
2211
|
paths.forEach((path) => {
|
|
2212
|
+
AXPDebugService.instance?.trace(WIDGET_CASCADE_TRACE_NS, 'context-batch', 'Emit onContextChanged', () => ({
|
|
2213
|
+
widgetPath: this.node().path,
|
|
2214
|
+
widgetType: this.node().type,
|
|
2215
|
+
changedPath: path,
|
|
2216
|
+
batchPaths: paths,
|
|
2217
|
+
triggerSubscriptionCount: this.triggerSubscriptionCount,
|
|
2218
|
+
}));
|
|
2171
2219
|
this.onContextChanged.next({ path });
|
|
2172
2220
|
});
|
|
2173
2221
|
const totalTime = performance.now() - startTime;
|
|
@@ -2418,6 +2466,7 @@ class AXPWidgetRendererDirective {
|
|
|
2418
2466
|
return;
|
|
2419
2467
|
}
|
|
2420
2468
|
this.isLoading.set(true);
|
|
2469
|
+
this.lastProcessedContextChangeRef = null;
|
|
2421
2470
|
try {
|
|
2422
2471
|
// Destroy the existing component if it exists
|
|
2423
2472
|
if (this.componentRef) {
|
|
@@ -2474,7 +2523,7 @@ class AXPWidgetRendererDirective {
|
|
|
2474
2523
|
this._options.update((val) => ({ ...val, ...this.mergedOptions() }));
|
|
2475
2524
|
// Evaluate default value
|
|
2476
2525
|
let defaultValue = this.node().defaultValue;
|
|
2477
|
-
if (defaultValue && this.expressionEvaluator.isExpression(defaultValue)) {
|
|
2526
|
+
if (typeof defaultValue === 'string' && this.expressionEvaluator.isExpression(defaultValue)) {
|
|
2478
2527
|
defaultValue = await this.evaluateExpression(defaultValue);
|
|
2479
2528
|
}
|
|
2480
2529
|
//
|
|
@@ -2862,6 +2911,11 @@ class AXPWidgetRendererDirective {
|
|
|
2862
2911
|
this.instance.setValue(undefined);
|
|
2863
2912
|
},
|
|
2864
2913
|
refresh: () => {
|
|
2914
|
+
AXPDebugService.instance?.trace(WIDGET_CASCADE_TRACE_NS, 'widget.refresh', 'refresh() invoked', () => ({
|
|
2915
|
+
widgetPath: this.node().path,
|
|
2916
|
+
widgetType: this.node().type,
|
|
2917
|
+
hasInstanceRefresh: typeof this.instance?.refresh === 'function',
|
|
2918
|
+
}));
|
|
2865
2919
|
const refresh = this.instance?.['refresh'];
|
|
2866
2920
|
if (refresh && typeof refresh === 'function') {
|
|
2867
2921
|
refresh.bind(this.instance)();
|
|
@@ -2911,11 +2965,28 @@ class AXPWidgetRendererDirective {
|
|
|
2911
2965
|
if (!triggers) {
|
|
2912
2966
|
return;
|
|
2913
2967
|
}
|
|
2968
|
+
AXPDebugService.instance?.trace(WIDGET_CASCADE_TRACE_NS, 'assign-triggers', 'Registering triggers', () => ({
|
|
2969
|
+
widgetPath: node.path,
|
|
2970
|
+
widgetType: node.type,
|
|
2971
|
+
triggerCount: triggers.length,
|
|
2972
|
+
triggers: triggers.map((t) => ({ event: t.event, action: t.action, disabled: t.disabled })),
|
|
2973
|
+
existingSubscriptionCount: this.triggerSubscriptionCount,
|
|
2974
|
+
}));
|
|
2914
2975
|
for (const trigger of triggers) {
|
|
2915
2976
|
try {
|
|
2916
2977
|
const event = await this.evaluateTrigger(trigger.event);
|
|
2917
2978
|
if (event) {
|
|
2979
|
+
this.triggerSubscriptionCount += 1;
|
|
2918
2980
|
event.pipe(this.unsubscriber.takeUntilDestroy).subscribe(() => {
|
|
2981
|
+
const seq = ++this.triggerFireSeq;
|
|
2982
|
+
AXPDebugService.instance?.trace(WIDGET_CASCADE_TRACE_NS, 'trigger-fire', 'Trigger subscription fired', () => ({
|
|
2983
|
+
seq,
|
|
2984
|
+
widgetPath: node.path,
|
|
2985
|
+
widgetType: node.type,
|
|
2986
|
+
event: trigger.event,
|
|
2987
|
+
action: trigger.action,
|
|
2988
|
+
triggerSubscriptionCount: this.triggerSubscriptionCount,
|
|
2989
|
+
}));
|
|
2919
2990
|
const exec = async (action) => {
|
|
2920
2991
|
if (!isEmpty(action) && isString(action)) {
|
|
2921
2992
|
await this.evaluateAction(action);
|
|
@@ -2950,6 +3021,11 @@ class AXPWidgetRendererDirective {
|
|
|
2950
3021
|
}
|
|
2951
3022
|
async evaluateAction(templateExpression) {
|
|
2952
3023
|
try {
|
|
3024
|
+
AXPDebugService.instance?.trace(WIDGET_CASCADE_TRACE_NS, 'trigger-action', 'Evaluating trigger action', () => ({
|
|
3025
|
+
widgetPath: this.node().path,
|
|
3026
|
+
widgetType: this.node().type,
|
|
3027
|
+
action: templateExpression,
|
|
3028
|
+
}));
|
|
2953
3029
|
const scope = this.buildExpressionScope();
|
|
2954
3030
|
await this.expressionEvaluator.evaluate(templateExpression, scope);
|
|
2955
3031
|
}
|
|
@@ -4847,5 +4923,5 @@ const AXP_CALLBACK_VALIDATION_PROPERTY = {
|
|
|
4847
4923
|
* Generated bundle index. Do not edit.
|
|
4848
4924
|
*/
|
|
4849
4925
|
|
|
4850
|
-
export { AXPBaseWidgetComponent, AXPBlockBaseLayoutWidgetComponent, AXPBoxModelLayoutWidgetComponent, AXPColumnWidgetComponent, AXPDataListWidgetComponent, AXPFlexBaseLayoutWidgetComponent, AXPFlexItemBaseLayoutWidgetComponent, AXPGridBaseLayoutWidgetComponent, AXPGridItemBaseLayoutWidgetComponent, AXPInlineBaseLayoutWidgetComponent, AXPLayoutBaseWidgetComponent, AXPPageStatus, AXPPropertyEditorHelper, AXPTableBaseLayoutWidgetComponent, AXPTableItemBaseLayoutWidgetComponent, AXPTableItemOpsBaseLayoutWidgetComponent, AXPValueWidgetComponent, AXPWidgetColumnCellComponent, AXPWidgetColumnRendererComponent, AXPWidgetContainerComponent, AXPWidgetCoreElement, AXPWidgetCoreModule, AXPWidgetCoreService, AXPWidgetGroupEnum, AXPWidgetRegistryService, AXPWidgetRendererDirective, AXPWidgetSerializationHelper, AXPWidgetStatus, 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_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_OPTIONS_PROPERTY, AXP_DATE_DEPTH_PROPERTY, AXP_DATE_FORMAT_PROPERTY, AXP_DATE_RANGE_LIMIT_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_GREATER_THAN_VALIDATION_PROPERTY, 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_REQUIRED_VALIDATION_PROPERTY, AXP_SHOW_PASSWORD_PROPERTY, AXP_SPIN_BUTTON_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMNS_PROPERTY, AXP_TABLE_COLUMN_ALIGNMENT_PROPERTIES, AXP_TABLE_COLUMN_CELL_ALIGN_PROPERTY, AXP_TABLE_COLUMN_HEADER_ALIGN_PROPERTY, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TABLE_ITEM_COLSPAN_PROPERTY, AXP_TABLE_ITEM_ROWSPAN_PROPERTY, AXP_TEXT_ALIGN_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRIGGERS_PROPERTY, AXP_TRIGGERS_PROPERTY_GROUP, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_VERTICAL_ALIGN_PROPERTY, AXP_WIDGETS_ACTION_CATEGORY, AXP_WIDGETS_ACTION_SUB_CONTROLS, AXP_WIDGETS_ADVANCE_CATEGORY, AXP_WIDGETS_ADVANCE_SUB_DATA, AXP_WIDGETS_ADVANCE_SUB_INPUT, AXP_WIDGETS_ADVANCE_SUB_MEDIA, AXP_WIDGETS_ADVANCE_SUB_TOOLS, AXP_WIDGETS_AI_CATEGORY, AXP_WIDGETS_CATEGORIES, AXP_WIDGETS_EDITOR_CATEGORY, AXP_WIDGETS_EDITOR_SUB_CHOICE, AXP_WIDGETS_EDITOR_SUB_COMPOSITE, AXP_WIDGETS_EDITOR_SUB_CONFIG, AXP_WIDGETS_EDITOR_SUB_DATETIME, AXP_WIDGETS_EDITOR_SUB_NUMERIC, AXP_WIDGETS_EDITOR_SUB_RICH, AXP_WIDGETS_EDITOR_SUB_TEXT_INPUTS, AXP_WIDGETS_EDITOR_SUB_VISUAL, AXP_WIDGETS_LAYOUT_CATEGORY, AXP_WIDGETS_LAYOUT_SUB_GRID, AXP_WIDGETS_LAYOUT_SUB_LISTS, AXP_WIDGETS_LAYOUT_SUB_SHELL, AXP_WIDGETS_LAYOUT_SUB_SURFACES, AXP_WIDGETS_LAYOUT_SUB_TABS, AXP_WIDGETS_LAYOUT_SUB_UTILITY, AXP_WIDGET_COLUMN_TOKEN, AXP_WIDGET_DEFINITION_PROVIDER, AXP_WIDGET_PROPERTY_GROUP, AXP_WIDGET_TOKEN, booleanDefaultProperty, buildWidgetRegistryMapFromProviders, cloneProperty, createBooleanProperty, createNumberProperty, createSelectProperty, createStringProperty, findNonEmptyBreakpoints, largeTextDefaultProperty, mapAXPPropertyToWidgetProperty, normalizeWidgetCategories, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty, richTextDefaultProperty, selectEditorDefaultValueProperty, selectionListEditorDefaultValueProperty };
|
|
4926
|
+
export { AXPBaseWidgetComponent, AXPBlockBaseLayoutWidgetComponent, AXPBoxModelLayoutWidgetComponent, AXPColumnWidgetComponent, AXPDataListWidgetComponent, AXPFlexBaseLayoutWidgetComponent, AXPFlexItemBaseLayoutWidgetComponent, AXPGridBaseLayoutWidgetComponent, AXPGridItemBaseLayoutWidgetComponent, AXPInlineBaseLayoutWidgetComponent, AXPLayoutBaseWidgetComponent, AXPPageStatus, AXPPropertyEditorHelper, AXPTableBaseLayoutWidgetComponent, AXPTableItemBaseLayoutWidgetComponent, AXPTableItemOpsBaseLayoutWidgetComponent, AXPValueWidgetComponent, AXPWidgetColumnCellComponent, AXPWidgetColumnRendererComponent, AXPWidgetContainerComponent, AXPWidgetCoreElement, AXPWidgetCoreModule, AXPWidgetCoreService, AXPWidgetGroupEnum, AXPWidgetRegistryService, AXPWidgetRendererDirective, AXPWidgetSerializationHelper, AXPWidgetStatus, 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_BOX_MODEL_PROPERTY_GROUP, AXP_CALLBACK_VALIDATION_PROPERTY, AXP_COLOR_PROPERTY, AXP_CONTENT_PROPERTY, AXP_DATA_PATH_PROPERTY, AXP_DATA_PROPERTY_GROUP, AXP_DATA_SOURCE_OPTIONS_PROPERTY, AXP_DATE_DEPTH_PROPERTY, AXP_DATE_FORMAT_PROPERTY, AXP_DATE_RANGE_LIMIT_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_GREATER_THAN_VALIDATION_PROPERTY, 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_REQUIRED_VALIDATION_PROPERTY, AXP_SHOW_PASSWORD_PROPERTY, AXP_SPIN_BUTTON_PROPERTY, AXP_STYLE_COLOR_PROPERTY, AXP_STYLE_LOOK_PROPERTY, AXP_STYLING_PROPERTY_GROUP, AXP_TABLE_COLUMNS_PROPERTY, AXP_TABLE_COLUMN_ALIGNMENT_PROPERTIES, AXP_TABLE_COLUMN_CELL_ALIGN_PROPERTY, AXP_TABLE_COLUMN_HEADER_ALIGN_PROPERTY, AXP_TABLE_COLUMN_HEIGHT_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_TABLE_ITEM_COLSPAN_PROPERTY, AXP_TABLE_ITEM_ROWSPAN_PROPERTY, AXP_TEXT_ALIGN_PROPERTY, AXP_TEXT_FIELD_PROPERTY, AXP_TEXT_PROPERTY, AXP_THEME_PROPERTY, AXP_TITLE_PROPERTY, AXP_TRIGGERS_PROPERTY, AXP_TRIGGERS_PROPERTY_GROUP, AXP_TRULY_TEXT_PROPERTY, AXP_VALIDATION_PROPERTY_GROUP, AXP_VALUE_FIELD_PROPERTY, AXP_VERTICAL_ALIGN_PROPERTY, AXP_WIDGETS_ACTION_CATEGORY, AXP_WIDGETS_ACTION_SUB_CONTROLS, AXP_WIDGETS_ADVANCE_CATEGORY, AXP_WIDGETS_ADVANCE_SUB_DATA, AXP_WIDGETS_ADVANCE_SUB_INPUT, AXP_WIDGETS_ADVANCE_SUB_MEDIA, AXP_WIDGETS_ADVANCE_SUB_TOOLS, AXP_WIDGETS_AI_CATEGORY, AXP_WIDGETS_CATEGORIES, AXP_WIDGETS_EDITOR_CATEGORY, AXP_WIDGETS_EDITOR_SUB_CHOICE, AXP_WIDGETS_EDITOR_SUB_COMPOSITE, AXP_WIDGETS_EDITOR_SUB_CONFIG, AXP_WIDGETS_EDITOR_SUB_DATETIME, AXP_WIDGETS_EDITOR_SUB_NUMERIC, AXP_WIDGETS_EDITOR_SUB_RICH, AXP_WIDGETS_EDITOR_SUB_TEXT_INPUTS, AXP_WIDGETS_EDITOR_SUB_VISUAL, AXP_WIDGETS_LAYOUT_CATEGORY, AXP_WIDGETS_LAYOUT_SUB_GRID, AXP_WIDGETS_LAYOUT_SUB_LISTS, AXP_WIDGETS_LAYOUT_SUB_SHELL, AXP_WIDGETS_LAYOUT_SUB_SURFACES, AXP_WIDGETS_LAYOUT_SUB_TABS, AXP_WIDGETS_LAYOUT_SUB_UTILITY, AXP_WIDGET_COLUMN_TOKEN, AXP_WIDGET_DEFINITION_PROVIDER, AXP_WIDGET_PROPERTY_GROUP, AXP_WIDGET_TOKEN, WIDGET_CASCADE_TRACE_NS, booleanDefaultProperty, buildWidgetRegistryMapFromProviders, cloneProperty, createBooleanProperty, createNumberProperty, createSelectProperty, createStringProperty, findNonEmptyBreakpoints, largeTextDefaultProperty, mapAXPPropertyToWidgetProperty, normalizeWidgetCategories, numberDefaultProperty, numberMaxValueProperty, numberMinValueProperty, plainTextDefaultProperty, richTextDefaultProperty, selectEditorDefaultValueProperty, selectionListEditorDefaultValueProperty };
|
|
4851
4927
|
//# sourceMappingURL=acorex-platform-layout-widget-core.mjs.map
|