@acorex/platform 21.0.0-beta.1 → 21.0.0-beta.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-auth.mjs +4 -0
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/{acorex-platform-common-common-settings.provider-G9XcXXOG.mjs → acorex-platform-common-common-settings.provider-Bi1RYif5.mjs} +58 -22
- package/fesm2022/acorex-platform-common-common-settings.provider-Bi1RYif5.mjs.map +1 -0
- package/fesm2022/acorex-platform-common.mjs +275 -130
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +106 -5
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +104 -13
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-components.mjs +224 -6
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +37 -2
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +1107 -72
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +7 -5
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +72 -6
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +181 -158
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-runtime.mjs +65 -2
- package/fesm2022/acorex-platform-runtime.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-default.mjs +121 -15
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-shared-settings.provider-D13QB3Hr.mjs → acorex-platform-themes-shared-settings.provider-DK6R87Lf.mjs} +23 -24
- package/fesm2022/acorex-platform-themes-shared-settings.provider-DK6R87Lf.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-shared.mjs +2 -2
- package/fesm2022/acorex-platform-workflow.mjs +85 -4
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +7 -9
- package/types/acorex-platform-common.d.ts +105 -52
- package/types/acorex-platform-core.d.ts +26 -3
- package/types/acorex-platform-layout-builder.d.ts +26 -3
- package/types/acorex-platform-layout-components.d.ts +52 -1
- package/types/acorex-platform-layout-entity.d.ts +262 -8
- package/types/acorex-platform-layout-widget-core.d.ts +15 -0
- package/types/acorex-platform-layout-widgets.d.ts +33 -23
- package/types/acorex-platform-runtime.d.ts +6 -0
- package/types/acorex-platform-themes-default.d.ts +8 -0
- package/types/acorex-platform-workflow.d.ts +68 -2
- package/fesm2022/acorex-platform-common-common-settings.provider-G9XcXXOG.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-shared-settings.provider-D13QB3Hr.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "21.0.0-beta.
|
|
3
|
+
"version": "21.0.0-beta.10",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0
|
|
6
|
-
"@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0
|
|
7
|
-
"@acorex/charts": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0
|
|
8
|
-
"@acorex/styles": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0
|
|
9
|
-
"@acorex/components": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0
|
|
10
|
-
"@
|
|
11
|
-
"@ngrx/signals": "^20.0.0",
|
|
12
|
-
"tailwindcss-animate": "^1.0.0",
|
|
5
|
+
"@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
6
|
+
"@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
7
|
+
"@acorex/charts": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
8
|
+
"@acorex/styles": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
9
|
+
"@acorex/components": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
|
|
10
|
+
"@ngrx/signals": ">=20.0.0",
|
|
13
11
|
"dom-to-image": "^2.6.0"
|
|
14
12
|
},
|
|
15
13
|
"dependencies": {
|
|
@@ -4,7 +4,7 @@ import { AXDataSourceOperator, AXStyleColorType, AXDataSourceFilterOption } from
|
|
|
4
4
|
import * as i2 from '@acorex/components/popup';
|
|
5
5
|
import { AXPopupSizeType, AXPopupService } from '@acorex/components/popup';
|
|
6
6
|
import * as i5 from '@acorex/platform/core';
|
|
7
|
-
import { AXPValueTransformerFunctions, AXPMultiLanguageString, AXPOptionsData, AXPExpression, AXPFilterDefinition, AXPMetaData, AXPSystemActionType, AXPValidationRules, AXPGridLayoutOptions, AXPLogoConfig, AXPFileListItem, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPNavigateActionCommand, AXPExecuteCommand, AXPApplicationUserReference, AXPEntityReference, AXPPlatformScopeKey,
|
|
7
|
+
import { AXPValueTransformerFunctions, AXPMultiLanguageString, AXPOptionsData, AXPExpression, AXPFilterDefinition, AXPMetaData, AXPSystemActionType, AXPValidationRules, AXPGridLayoutOptions, AXPLogoConfig, AXPFileListItem, AXPDataSourceDefinitionProvider, AXPDataSourceDefinition, AXPNavigateActionCommand, AXPExecuteCommand, AXPApplicationUserReference, AXPEntityReference, AXPPlatformScopeKey, AXPWidgetTriggers, AXPPlatformScope, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviderContext } from '@acorex/platform/core';
|
|
8
8
|
import { AXPWidgetTypesMap, AXPMetaDataDefinition, AXPWidgetNode, AXPWidgetProperty } from '@acorex/platform/layout/widget-core';
|
|
9
9
|
import * as i6 from '@angular/router';
|
|
10
10
|
import { Route, Routes } from '@angular/router';
|
|
@@ -142,6 +142,16 @@ interface AXPEntityProperty {
|
|
|
142
142
|
};
|
|
143
143
|
validations?: AXPValidationRules;
|
|
144
144
|
}
|
|
145
|
+
/** Logical alignment for table column header/cell (respects RTL). */
|
|
146
|
+
type AXPColumnContentAlign = 'start' | 'center' | 'end';
|
|
147
|
+
/**
|
|
148
|
+
* Column alignment: shorthand applies to both header and cell;
|
|
149
|
+
* object form sets each side independently (omitted keys default to start).
|
|
150
|
+
*/
|
|
151
|
+
type AXPColumnAlign = AXPColumnContentAlign | {
|
|
152
|
+
header?: AXPColumnContentAlign;
|
|
153
|
+
cell?: AXPColumnContentAlign;
|
|
154
|
+
};
|
|
145
155
|
interface AXPEntityTableColumn {
|
|
146
156
|
name: string;
|
|
147
157
|
title?: string;
|
|
@@ -157,8 +167,12 @@ interface AXPEntityTableColumn {
|
|
|
157
167
|
options?: {
|
|
158
168
|
/** When string, evaluate against parent detail context (e.g. related list). */
|
|
159
169
|
visible?: boolean | string;
|
|
170
|
+
/** Initial column width (overrides widget column width when set). */
|
|
160
171
|
width?: string;
|
|
172
|
+
/** Optional dataPath override for column binding. */
|
|
161
173
|
dataPath?: string;
|
|
174
|
+
/** Header/cell alignment (shorthand or per-side). */
|
|
175
|
+
align?: AXPColumnAlign;
|
|
162
176
|
[name: string]: any;
|
|
163
177
|
};
|
|
164
178
|
}
|
|
@@ -201,7 +215,7 @@ interface AXPCommandActionDisplay extends Partial<AXPCommandActionLook> {
|
|
|
201
215
|
command: AXPCommandActionCallback;
|
|
202
216
|
title: string;
|
|
203
217
|
type: AXPSystemActionType | string;
|
|
204
|
-
priority: 'primary' | 'secondary';
|
|
218
|
+
priority: 'primary' | 'secondary' | 'none';
|
|
205
219
|
separated?: boolean;
|
|
206
220
|
permissions?: string[];
|
|
207
221
|
hidden?: boolean | string;
|
|
@@ -681,7 +695,9 @@ declare enum AXPCommonSettings {
|
|
|
681
695
|
ApplyLayoutOrdering = "Common:Setting:Entity.ApplyLayoutOrdering",
|
|
682
696
|
RedirectToDetailsAfterCreate = "Common:Setting:Entity.RedirectToDetailsAfterCreate",
|
|
683
697
|
ShowPageBadge = "Common:Setting:Entity.ShowPageBadge",
|
|
684
|
-
DebugMode = "PlatformDevTools:Setting:Developer.DebugMode"
|
|
698
|
+
DebugMode = "PlatformDevTools:Setting:Developer.DebugMode",
|
|
699
|
+
ShowRowIndexColumn = "Common:Setting:Entity.ShowRowIndexColumn",
|
|
700
|
+
EntityListPersistenceMode = "Common:Setting:Entity.ListPersistenceMode"
|
|
685
701
|
}
|
|
686
702
|
|
|
687
703
|
declare const AXP_ROOT_CONFIG_TOKEN: InjectionToken<AXPRootConfigs>;
|
|
@@ -1688,8 +1704,8 @@ interface AXPSearchResult {
|
|
|
1688
1704
|
id?: string;
|
|
1689
1705
|
group: string;
|
|
1690
1706
|
data?: any;
|
|
1691
|
-
title?: string;
|
|
1692
|
-
description?: string;
|
|
1707
|
+
title?: string | AXPMultiLanguageString;
|
|
1708
|
+
description?: string | AXPMultiLanguageString;
|
|
1693
1709
|
icon?: string;
|
|
1694
1710
|
command: AXPExecuteCommand;
|
|
1695
1711
|
parent?: AXPSearchParentResult;
|
|
@@ -1705,8 +1721,8 @@ interface AXPSearchDisplayResult {
|
|
|
1705
1721
|
definitionName?: string;
|
|
1706
1722
|
definitionTitle?: string;
|
|
1707
1723
|
name: string;
|
|
1708
|
-
title: string;
|
|
1709
|
-
description?: string;
|
|
1724
|
+
title: string | AXPMultiLanguageString;
|
|
1725
|
+
description?: string | AXPMultiLanguageString;
|
|
1710
1726
|
icon: string;
|
|
1711
1727
|
data?: any;
|
|
1712
1728
|
order?: any;
|
|
@@ -1778,6 +1794,7 @@ interface AXPSearchProvider {
|
|
|
1778
1794
|
search(text: string): Promise<AXPSearchResult[]>;
|
|
1779
1795
|
}
|
|
1780
1796
|
declare abstract class AXPSearchCommandProvider {
|
|
1797
|
+
private readonly translationService;
|
|
1781
1798
|
abstract commands: AXPSearchResult[];
|
|
1782
1799
|
search(text: string): Promise<AXPSearchResult[]>;
|
|
1783
1800
|
}
|
|
@@ -1947,6 +1964,50 @@ declare function withDefaultMultiLanguageOnWidgetNodeTree(root: AXPWidgetNode |
|
|
|
1947
1964
|
*/
|
|
1948
1965
|
declare function withDefaultMultiLanguageOnWidgetProperty(prop: AXPWidgetProperty, applyDefault: boolean): AXPWidgetProperty;
|
|
1949
1966
|
|
|
1967
|
+
declare class AXPSettingDefinitionProviderContext {
|
|
1968
|
+
private rootGroups;
|
|
1969
|
+
private groupMap;
|
|
1970
|
+
addGroup(name: string, title: string, description?: string, icon?: string, pageTitle?: string): AXPSettingDefinitionGroupBuilder;
|
|
1971
|
+
group(name: string): AXPSettingDefinitionGroupBuilder | null;
|
|
1972
|
+
getGroups(): AXPSettingDefinitionGroup[];
|
|
1973
|
+
hasGroup(name: string): boolean;
|
|
1974
|
+
getGroup(name: string): AXPSettingDefinitionGroup | undefined;
|
|
1975
|
+
}
|
|
1976
|
+
declare class AXPSettingDefinitionGroupBuilder {
|
|
1977
|
+
private context;
|
|
1978
|
+
private group;
|
|
1979
|
+
constructor(context: AXPSettingDefinitionProviderContext, group: AXPSettingDefinitionGroup);
|
|
1980
|
+
addSection(name: string, title: string, description?: string): AXPSettingDefinitionSectionBuilder;
|
|
1981
|
+
section(name: string): AXPSettingDefinitionSectionBuilder | null;
|
|
1982
|
+
addGroup(name: string, title: string, description?: string, icon?: string, pageTitle?: string): AXPSettingDefinitionGroupBuilder;
|
|
1983
|
+
endGroup(): AXPSettingDefinitionProviderContext;
|
|
1984
|
+
}
|
|
1985
|
+
declare class AXPSettingDefinitionSectionBuilder {
|
|
1986
|
+
private groupBuilder;
|
|
1987
|
+
private section;
|
|
1988
|
+
constructor(groupBuilder: AXPSettingDefinitionGroupBuilder, section: AXPSettingDefinitionSection);
|
|
1989
|
+
addSetting(setting: {
|
|
1990
|
+
key: string;
|
|
1991
|
+
title: string;
|
|
1992
|
+
scope: AXPPlatformScopeKey;
|
|
1993
|
+
widget: {
|
|
1994
|
+
type: AXPWidgetTypesMap[keyof AXPWidgetTypesMap] | string;
|
|
1995
|
+
options?: AXPOptionsData;
|
|
1996
|
+
triggers?: AXPWidgetTriggers;
|
|
1997
|
+
layout?: AXPGridLayoutOptions;
|
|
1998
|
+
};
|
|
1999
|
+
description?: string;
|
|
2000
|
+
searchTagKeys?: string[];
|
|
2001
|
+
isRequired?: boolean;
|
|
2002
|
+
isInherited?: boolean;
|
|
2003
|
+
isEncrypted?: boolean;
|
|
2004
|
+
defaultValue?: unknown;
|
|
2005
|
+
valueTransforms?: AXPValueTransformerFunctions;
|
|
2006
|
+
validationRules?: AXPValidationRules;
|
|
2007
|
+
}): this;
|
|
2008
|
+
endSection(): AXPSettingDefinitionGroupBuilder;
|
|
2009
|
+
}
|
|
2010
|
+
|
|
1950
2011
|
interface AXPSettingValueProvider {
|
|
1951
2012
|
get scope(): AXPPlatformScope;
|
|
1952
2013
|
load(): Promise<AXPSettingValue[]>;
|
|
@@ -1977,6 +2038,8 @@ interface AXPSettingDefinition {
|
|
|
1977
2038
|
name: string;
|
|
1978
2039
|
title: string;
|
|
1979
2040
|
description?: string;
|
|
2041
|
+
/** Optional i18n keys (e.g. `@scope:key`) whose translated values are included in settings search. */
|
|
2042
|
+
searchTagKeys?: string[];
|
|
1980
2043
|
widget: AXPWidgetNode;
|
|
1981
2044
|
layout?: AXPGridLayoutOptions;
|
|
1982
2045
|
scope: AXPPlatformScopeKey;
|
|
@@ -1988,7 +2051,10 @@ interface AXPSettingDefinition {
|
|
|
1988
2051
|
}
|
|
1989
2052
|
interface AXPSettingDefinitionGroup {
|
|
1990
2053
|
name: string;
|
|
2054
|
+
/** Short label (e.g. sidebar); i18n key when using the translation pipe. */
|
|
1991
2055
|
title: string;
|
|
2056
|
+
/** Optional fuller page heading; i18n key. When omitted, `title` is used for the page header. */
|
|
2057
|
+
pageTitle?: string;
|
|
1992
2058
|
icon?: string;
|
|
1993
2059
|
description?: string;
|
|
1994
2060
|
groups: AXPSettingDefinitionGroup[];
|
|
@@ -2010,49 +2076,6 @@ interface AXPGroupSearchResult {
|
|
|
2010
2076
|
groups: AXPSettingDefinitionGroup[] | null;
|
|
2011
2077
|
}
|
|
2012
2078
|
|
|
2013
|
-
declare class AXPSettingDefinitionProviderContext {
|
|
2014
|
-
private rootGroups;
|
|
2015
|
-
private groupMap;
|
|
2016
|
-
addGroup(name: string, title: string, description?: string, icon?: string): AXPSettingDefinitionGroupBuilder;
|
|
2017
|
-
group(name: string): AXPSettingDefinitionGroupBuilder | null;
|
|
2018
|
-
getGroups(): AXPSettingDefinitionGroup[];
|
|
2019
|
-
hasGroup(name: string): boolean;
|
|
2020
|
-
getGroup(name: string): AXPSettingDefinitionGroup | undefined;
|
|
2021
|
-
}
|
|
2022
|
-
declare class AXPSettingDefinitionGroupBuilder {
|
|
2023
|
-
private context;
|
|
2024
|
-
private group;
|
|
2025
|
-
constructor(context: AXPSettingDefinitionProviderContext, group: AXPSettingDefinitionGroup);
|
|
2026
|
-
addSection(name: string, title: string, description?: string): AXPSettingDefinitionSectionBuilder;
|
|
2027
|
-
section(name: string): AXPSettingDefinitionSectionBuilder | null;
|
|
2028
|
-
addGroup(name: string, title: string, description?: string, icon?: string): AXPSettingDefinitionGroupBuilder;
|
|
2029
|
-
endGroup(): AXPSettingDefinitionProviderContext;
|
|
2030
|
-
}
|
|
2031
|
-
declare class AXPSettingDefinitionSectionBuilder {
|
|
2032
|
-
private groupBuilder;
|
|
2033
|
-
private section;
|
|
2034
|
-
constructor(groupBuilder: AXPSettingDefinitionGroupBuilder, section: AXPSettingDefinitionSection);
|
|
2035
|
-
addSetting(setting: {
|
|
2036
|
-
key: string;
|
|
2037
|
-
title: string;
|
|
2038
|
-
scope: AXPPlatformScopeKey;
|
|
2039
|
-
widget: {
|
|
2040
|
-
type: AXPWidgetTypesMap[keyof AXPWidgetTypesMap] | string;
|
|
2041
|
-
options?: AXPOptionsData;
|
|
2042
|
-
triggers?: AXPWidgetTriggers;
|
|
2043
|
-
layout?: AXPGridLayoutOptions;
|
|
2044
|
-
};
|
|
2045
|
-
description?: string;
|
|
2046
|
-
isRequired?: boolean;
|
|
2047
|
-
isInherited?: boolean;
|
|
2048
|
-
isEncrypted?: boolean;
|
|
2049
|
-
defaultValue?: unknown;
|
|
2050
|
-
valueTransforms?: AXPValueTransformerFunctions;
|
|
2051
|
-
validationRules?: AXPValidationRules;
|
|
2052
|
-
}): this;
|
|
2053
|
-
endSection(): AXPSettingDefinitionGroupBuilder;
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
2079
|
interface AXPSettingDefinitionProvider {
|
|
2057
2080
|
provide(context: AXPSettingDefinitionProviderContext): Promise<void>;
|
|
2058
2081
|
}
|
|
@@ -2065,6 +2088,7 @@ declare class AXPSettingDefinitionProviderService {
|
|
|
2065
2088
|
getListAsync(scope: AXPPlatformScopeKey): Promise<AXPSettingDefinitionGroup[]>;
|
|
2066
2089
|
getList(scope: AXPPlatformScopeKey): AXPSettingDefinitionGroup[];
|
|
2067
2090
|
defaultValues(): Promise<Record<string, unknown>>;
|
|
2091
|
+
settingScopeByKey(): Promise<Record<string, AXPPlatformScope>>;
|
|
2068
2092
|
findGroup(scope: AXPPlatformScopeKey, groupName: string): AXPGroupSearchResult;
|
|
2069
2093
|
private searchRecursive;
|
|
2070
2094
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPSettingDefinitionProviderService, never>;
|
|
@@ -2081,6 +2105,25 @@ declare class AXPSettingDefaultValuesAggregatorService {
|
|
|
2081
2105
|
|
|
2082
2106
|
declare const AXP_SETTING_VALUE_PROVIDER: InjectionToken<AXPSettingValueProvider[]>;
|
|
2083
2107
|
|
|
2108
|
+
/**
|
|
2109
|
+
* Supported primitive coercions for persisted setting values (including `{ value: ... }` wrappers).
|
|
2110
|
+
*/
|
|
2111
|
+
type AXPSettingCoercionKind = 'string' | 'boolean' | 'number' | 'date';
|
|
2112
|
+
/**
|
|
2113
|
+
* If the payload uses the common `{ value: T }` shape from setting widgets, returns the inner value; otherwise returns `raw`.
|
|
2114
|
+
*/
|
|
2115
|
+
declare function peelSettingValueKey(raw: unknown): unknown;
|
|
2116
|
+
/**
|
|
2117
|
+
* Picks a primitive coercion kind from the setting definition default and/or the effective stored value.
|
|
2118
|
+
* Type argument `T` on the settings service `get` method is compile-time only; runtime behavior follows this inference.
|
|
2119
|
+
*/
|
|
2120
|
+
declare function inferSettingCoercionKind(defaultSample: unknown, effective: unknown): AXPSettingCoercionKind | null;
|
|
2121
|
+
declare function coerceAXPSettingRawValueByKind(raw: unknown, kind: AXPSettingCoercionKind): string | boolean | number | Date;
|
|
2122
|
+
declare function coerceAXPSettingRawValue(raw: unknown, kind: 'string'): string;
|
|
2123
|
+
declare function coerceAXPSettingRawValue(raw: unknown, kind: 'boolean'): boolean;
|
|
2124
|
+
declare function coerceAXPSettingRawValue(raw: unknown, kind: 'number'): number;
|
|
2125
|
+
declare function coerceAXPSettingRawValue(raw: unknown, kind: 'date'): Date;
|
|
2126
|
+
|
|
2084
2127
|
interface AXPSettingsServiceInterface {
|
|
2085
2128
|
load(): Promise<AXPSettingValue[]>;
|
|
2086
2129
|
get<T = any>(key: string): Promise<T>;
|
|
@@ -2098,10 +2141,20 @@ declare class AXPSettingsService implements AXPSettingsServiceInterface {
|
|
|
2098
2141
|
constructor();
|
|
2099
2142
|
reload(): Promise<void>;
|
|
2100
2143
|
load(): Promise<AXPSettingValue[]>;
|
|
2144
|
+
/**
|
|
2145
|
+
* Returns the effective setting value. Primitive coercion (string, boolean, number, date) is inferred from the
|
|
2146
|
+
* definition default and/or the stored shape (including `{ value: ... }`). Type argument `T` is compile-time only;
|
|
2147
|
+
* it is not read at runtime—use it to document the expected result (e.g. `get<boolean>(key)`).
|
|
2148
|
+
*/
|
|
2101
2149
|
get<T = any>(key: string): Promise<T>;
|
|
2150
|
+
/**
|
|
2151
|
+
* Effective value (user → tenant → platform) when set; otherwise the definition default. Used for reads and coercion hints.
|
|
2152
|
+
*/
|
|
2153
|
+
private resolveEffectiveAndDefault;
|
|
2102
2154
|
defaultValues(scope: AXPPlatformScope): Promise<Record<string, unknown>>;
|
|
2103
2155
|
scope(scope: AXPPlatformScope): ScopedSettingService;
|
|
2104
2156
|
invokeChangeEvent(event: AXPSettingChangedEvent): void;
|
|
2157
|
+
private seedMissingDefaults;
|
|
2105
2158
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPSettingsService, never>;
|
|
2106
2159
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPSettingsService>;
|
|
2107
2160
|
}
|
|
@@ -2931,5 +2984,5 @@ declare class AXMWorkflowErrorHandler implements AXPErrorHandler {
|
|
|
2931
2984
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXMWorkflowErrorHandler>;
|
|
2932
2985
|
}
|
|
2933
2986
|
|
|
2934
|
-
export { ALL_DEFAULT_OPERATORS, AXMWorkflowErrorHandler, AXPAppVersionService, AXPCleanNestedFilters, AXPClipBoardService, AXPCommonModule, AXPCommonSettings, AXPCustomOperatorService, AXPCustomOperatorServiceImpl, AXPDataProvider, AXPDebugService, AXPDefaultMultiLanguageConfigService, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityQueryType, AXPEntityType, AXPErrorHandlerRegistryService, AXPExportService, AXPFileActionsService, AXPFileStorageService, AXPFileStorageStatus, AXPFileTypeProviderService, AXPFilterOperatorMiddlewareService, AXPFilterOperatorMiddlewareServiceImpl, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPHomePageModule, AXPHomePageService, AXPLockService, AXPMenuItemsDataSourceDefinition, AXPMenuMiddlewareRegistry, AXPMenuProviderService, AXPMenuSearchDefinitionProvider, AXPMenuSearchProvider, AXPMenuService, AXPMenuVisibilityService, AXPNavBarSlotComponent, AXPNavigateWorkflow, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRefreshEvent, AXPRegionalSetting, AXPRelationshipCardinality, AXPRelationshipKind, AXPReloadAction, AXPReloadEvent, AXPSearchCommandProvider, AXPSearchDefinitionActionBuilder, AXPSearchDefinitionBuilder, AXPSearchDefinitionProviderContext, AXPSearchDefinitionProviderService, AXPSearchService, AXPSettingDefaultValuesAggregatorService, AXPSettingDefinitionGroupBuilder, AXPSettingDefinitionProviderContext, AXPSettingDefinitionProviderService, AXPSettingDefinitionSectionBuilder, AXPSettingsEvaluatorScopeProvider, AXPSettingsService, AXPStatusDefinitionProviderService, AXPStatusProvider, AXPStickyDirective, AXPSystemStatusType, AXPSystemStatuses, AXPToastAction, AXPTokenDefinitionService, AXPTokenEvaluatorScopeProvider, AXPVersioningService, AXPWorkflowNavigateAction, AXPWorkflowRouterNavigateAction, AXP_APP_VERSION_PROVIDER, AXP_FILE_ACTION_PROVIDER, AXP_FILE_TYPE_INFO_PROVIDER, AXP_HOME_PAGES, AXP_HOME_PAGE_DEFAULT_KEY, AXP_LOCALE_MANAGEMENT_PORT, AXP_MENU_MIDDLEWARE, AXP_MENU_PROVIDER, AXP_PLATFORM_CONFIG_TOKEN, AXP_ROOT_CONFIG_TOKEN, AXP_SEARCH_DEFINITION_PROVIDER, AXP_SEARCH_PROVIDER, AXP_SETTING_DEFAULT_VALUES_PROVIDERS, AXP_SETTING_DEFINITION_PROVIDER, AXP_SETTING_VALUE_PROVIDER, AXP_STATUS_PROVIDERS, AXP_TOKEN_DEFINITION_PROVIDER, AXVChangeType, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, DEFAULT_MULTILANGUAGE_FIELD_NAMES, ENDS_WITH_OPER, ENVIRONMENT, EQ_OPER, GTE_OPER, GT_OPER, IN_OPER, IS_EMPTY_OPER, IS_NOT_EMPTY_OPER, LTE_OPER, LT_OPER, MENU_ITEMS_DATASOURCE_NAME, MULTILANGUAGE_CAPABLE_WIDGET_TYPES, NOT_CONTAINS_OPER, NOT_EQ_OPER, NUMBER_OPERATORS, STARTS_WITH_OPER, STRING_OPERATORS, UploadFromComputerActionProvider, configPlatform, createAllQueryView, createEntityCommandOptions, createEntitySearchCommand, createMenuContext, createMenuMiddleware, createQueryView, getEntityInfo, getStatusInfo, getSystemStatus, provideDynamicHomePage, provideMenuMiddleware, resolveStatusLook, shouldApplyDefaultMultiLanguageToEntityProperty, shouldApplyDefaultMultiLanguageToWidgetNode, shouldApplyDefaultMultiLanguageToWidgetProperty, systemStatusToDefinition, withDefaultMultiLanguageOnWidgetNodeTree, withDefaultMultiLanguageOnWidgetProperty };
|
|
2935
|
-
export type { AXCFileUploaderAction, AXCFileUploaderActionsPayload, AXCFileUploaderCapabilities, AXEntityPropertyWidget, AXPAggregate, AXPAppVersion, AXPAppVersionProvider, AXPApplication, AXPCategoryEntity, AXPCommandActionCallback, AXPCommandActionDisplay, AXPCommandActionLook, AXPCommandActionPriority, AXPCommandActionType, AXPCommonModuleConfigs, AXPCurrency, AXPDomToImageOptions, AXPEntity, AXPEntityAction, AXPEntityCommand, AXPEntityDetailListView, AXPEntityMasterCreateLayoutView, AXPEntityMasterLayoutView, AXPEntityMasterListView, AXPEntityMasterSingleLayoutView, AXPEntityMasterUpdateLayoutView, AXPEntityPage, AXPEntityProperty, AXPEntityPropertyCreateView, AXPEntityPropertyGroup, AXPEntityPropertyLayoutConfig, AXPEntityPropertyUpdateView, AXPEntityPropertyView, AXPEntityQuery, AXPEntityQuickCreate, AXPEntitySectionView, AXPEntityTableColumn, AXPEntityV2, AXPEntityVersionHistory, AXPErrorHandler, AXPFileActionProvider, AXPFileActionProviderToken, AXPFileExtension, AXPFileManyStorageInfo, AXPFileStorageCreateRequest, AXPFileStorageFindRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileType, AXPFileTypeInfoProvider, AXPFilterOperator, AXPGeoLocation, AXPGroupSearchResult, AXPHomePageDefinition, AXPLanguage, AXPLocaleManagementPort, AXPLocaleProfile, AXPLockGetInfoRequest, AXPLockInfo, AXPLockRequest, AXPLockType, AXPMenuFinderResult, AXPMenuInsertion, AXPMenuItem, AXPMenuItemCommand, AXPMenuItemFinder, AXPMenuItemWithParent, AXPMenuMiddleware, AXPMenuMiddlewareContext, AXPMenuMiddlewareProvider, AXPMenuProvider, AXPMenuProviderContext, AXPMenuType, AXPModule, AXPPlatformConfigs, AXPQueryFilter, AXPQuerySort, AXPQueryView, AXPRelatedEntity, AXPRelationship, AXPRootConfigs, AXPSearchAction, AXPSearchDefinition, AXPSearchDefinitionDisplayFormat, AXPSearchDefinitionProvider, AXPSearchDisplayGroupResult, AXPSearchDisplayResult, AXPSearchDisplayResultForSave, AXPSearchParentResult, AXPSearchProvider, AXPSearchResult, AXPSettingChangedEvent, AXPSettingDefaultValuesProvider, AXPSettingDefinition, AXPSettingDefinitionGroup, AXPSettingDefinitionProvider, AXPSettingDefinitionSection, AXPSettingValue, AXPSettingValueProvider, AXPSettingsServiceInterface, AXPStatusDefinition, AXPStatusTransition, AXPTimeZone, AXPTokenDefinition, AXPTokenDefinitionProvider, AXPTokenDefinitionProviderToken, AXPUnLockRequest, AXPVersionChange, AXPVersionEntry, AXPVersionStream, CanonicalChange, CanonicalChangeOp, VersionedFileInfo };
|
|
2987
|
+
export { ALL_DEFAULT_OPERATORS, AXMWorkflowErrorHandler, AXPAppVersionService, AXPCleanNestedFilters, AXPClipBoardService, AXPCommonModule, AXPCommonSettings, AXPCustomOperatorService, AXPCustomOperatorServiceImpl, AXPDataProvider, AXPDebugService, AXPDefaultMultiLanguageConfigService, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityQueryType, AXPEntityType, AXPErrorHandlerRegistryService, AXPExportService, AXPFileActionsService, AXPFileStorageService, AXPFileStorageStatus, AXPFileTypeProviderService, AXPFilterOperatorMiddlewareService, AXPFilterOperatorMiddlewareServiceImpl, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPHomePageModule, AXPHomePageService, AXPLockService, AXPMenuItemsDataSourceDefinition, AXPMenuMiddlewareRegistry, AXPMenuProviderService, AXPMenuSearchDefinitionProvider, AXPMenuSearchProvider, AXPMenuService, AXPMenuVisibilityService, AXPNavBarSlotComponent, AXPNavigateWorkflow, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRefreshEvent, AXPRegionalSetting, AXPRelationshipCardinality, AXPRelationshipKind, AXPReloadAction, AXPReloadEvent, AXPSearchCommandProvider, AXPSearchDefinitionActionBuilder, AXPSearchDefinitionBuilder, AXPSearchDefinitionProviderContext, AXPSearchDefinitionProviderService, AXPSearchService, AXPSettingDefaultValuesAggregatorService, AXPSettingDefinitionGroupBuilder, AXPSettingDefinitionProviderContext, AXPSettingDefinitionProviderService, AXPSettingDefinitionSectionBuilder, AXPSettingsEvaluatorScopeProvider, AXPSettingsService, AXPStatusDefinitionProviderService, AXPStatusProvider, AXPStickyDirective, AXPSystemStatusType, AXPSystemStatuses, AXPToastAction, AXPTokenDefinitionService, AXPTokenEvaluatorScopeProvider, AXPVersioningService, AXPWorkflowNavigateAction, AXPWorkflowRouterNavigateAction, AXP_APP_VERSION_PROVIDER, AXP_FILE_ACTION_PROVIDER, AXP_FILE_TYPE_INFO_PROVIDER, AXP_HOME_PAGES, AXP_HOME_PAGE_DEFAULT_KEY, AXP_LOCALE_MANAGEMENT_PORT, AXP_MENU_MIDDLEWARE, AXP_MENU_PROVIDER, AXP_PLATFORM_CONFIG_TOKEN, AXP_ROOT_CONFIG_TOKEN, AXP_SEARCH_DEFINITION_PROVIDER, AXP_SEARCH_PROVIDER, AXP_SETTING_DEFAULT_VALUES_PROVIDERS, AXP_SETTING_DEFINITION_PROVIDER, AXP_SETTING_VALUE_PROVIDER, AXP_STATUS_PROVIDERS, AXP_TOKEN_DEFINITION_PROVIDER, AXVChangeType, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, DEFAULT_MULTILANGUAGE_FIELD_NAMES, ENDS_WITH_OPER, ENVIRONMENT, EQ_OPER, GTE_OPER, GT_OPER, IN_OPER, IS_EMPTY_OPER, IS_NOT_EMPTY_OPER, LTE_OPER, LT_OPER, MENU_ITEMS_DATASOURCE_NAME, MULTILANGUAGE_CAPABLE_WIDGET_TYPES, NOT_CONTAINS_OPER, NOT_EQ_OPER, NUMBER_OPERATORS, STARTS_WITH_OPER, STRING_OPERATORS, UploadFromComputerActionProvider, coerceAXPSettingRawValue, coerceAXPSettingRawValueByKind, configPlatform, createAllQueryView, createEntityCommandOptions, createEntitySearchCommand, createMenuContext, createMenuMiddleware, createQueryView, getEntityInfo, getStatusInfo, getSystemStatus, inferSettingCoercionKind, peelSettingValueKey, provideDynamicHomePage, provideMenuMiddleware, resolveStatusLook, shouldApplyDefaultMultiLanguageToEntityProperty, shouldApplyDefaultMultiLanguageToWidgetNode, shouldApplyDefaultMultiLanguageToWidgetProperty, systemStatusToDefinition, withDefaultMultiLanguageOnWidgetNodeTree, withDefaultMultiLanguageOnWidgetProperty };
|
|
2988
|
+
export type { AXCFileUploaderAction, AXCFileUploaderActionsPayload, AXCFileUploaderCapabilities, AXEntityPropertyWidget, AXPAggregate, AXPAppVersion, AXPAppVersionProvider, AXPApplication, AXPCategoryEntity, AXPColumnAlign, AXPColumnContentAlign, AXPCommandActionCallback, AXPCommandActionDisplay, AXPCommandActionLook, AXPCommandActionPriority, AXPCommandActionType, AXPCommonModuleConfigs, AXPCurrency, AXPDomToImageOptions, AXPEntity, AXPEntityAction, AXPEntityCommand, AXPEntityDetailListView, AXPEntityMasterCreateLayoutView, AXPEntityMasterLayoutView, AXPEntityMasterListView, AXPEntityMasterSingleLayoutView, AXPEntityMasterUpdateLayoutView, AXPEntityPage, AXPEntityProperty, AXPEntityPropertyCreateView, AXPEntityPropertyGroup, AXPEntityPropertyLayoutConfig, AXPEntityPropertyUpdateView, AXPEntityPropertyView, AXPEntityQuery, AXPEntityQuickCreate, AXPEntitySectionView, AXPEntityTableColumn, AXPEntityV2, AXPEntityVersionHistory, AXPErrorHandler, AXPFileActionProvider, AXPFileActionProviderToken, AXPFileExtension, AXPFileManyStorageInfo, AXPFileStorageCreateRequest, AXPFileStorageFindRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileType, AXPFileTypeInfoProvider, AXPFilterOperator, AXPGeoLocation, AXPGroupSearchResult, AXPHomePageDefinition, AXPLanguage, AXPLocaleManagementPort, AXPLocaleProfile, AXPLockGetInfoRequest, AXPLockInfo, AXPLockRequest, AXPLockType, AXPMenuFinderResult, AXPMenuInsertion, AXPMenuItem, AXPMenuItemCommand, AXPMenuItemFinder, AXPMenuItemWithParent, AXPMenuMiddleware, AXPMenuMiddlewareContext, AXPMenuMiddlewareProvider, AXPMenuProvider, AXPMenuProviderContext, AXPMenuType, AXPModule, AXPPlatformConfigs, AXPQueryFilter, AXPQuerySort, AXPQueryView, AXPRelatedEntity, AXPRelationship, AXPRootConfigs, AXPSearchAction, AXPSearchDefinition, AXPSearchDefinitionDisplayFormat, AXPSearchDefinitionProvider, AXPSearchDisplayGroupResult, AXPSearchDisplayResult, AXPSearchDisplayResultForSave, AXPSearchParentResult, AXPSearchProvider, AXPSearchResult, AXPSettingChangedEvent, AXPSettingCoercionKind, AXPSettingDefaultValuesProvider, AXPSettingDefinition, AXPSettingDefinitionGroup, AXPSettingDefinitionProvider, AXPSettingDefinitionSection, AXPSettingValue, AXPSettingValueProvider, AXPSettingsServiceInterface, AXPStatusDefinition, AXPStatusTransition, AXPTimeZone, AXPTokenDefinition, AXPTokenDefinitionProvider, AXPTokenDefinitionProviderToken, AXPUnLockRequest, AXPVersionChange, AXPVersionEntry, AXPVersionStream, CanonicalChange, CanonicalChangeOp, VersionedFileInfo };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Type, InjectionToken, OnInit, ViewContainerRef, ModuleWithProviders, ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges, OnDestroy, Injector, PipeTransform, Provider } from '@angular/core';
|
|
3
|
-
import { AXStyleColorType, AXDataSource, AXDataSourceSortOption, AXDataSourceFilterOption, AXDataSourceQuery, AXDataSourceCallbackResult } from '@acorex/cdk/common';
|
|
3
|
+
import { AXStyleColorType, AXDataSource, AXDataSourceSortOption, AXDataSourceFilterOption, AXStyleLookType, AXDataSourceQuery, AXDataSourceCallbackResult } from '@acorex/cdk/common';
|
|
4
4
|
import { AXMultiLanguageString } from '@acorex/core/translation';
|
|
5
5
|
import * as _ngrx_signals from '@ngrx/signals';
|
|
6
6
|
import * as _acorex_platform_core from '@acorex/platform/core';
|
|
@@ -1119,7 +1119,7 @@ interface AXPCategorizedEntityDto {
|
|
|
1119
1119
|
categoryIds: string[];
|
|
1120
1120
|
categories: AXPCategoryListItem[];
|
|
1121
1121
|
}
|
|
1122
|
-
type AXPEntityOp = 'initial' | 'create' | 'update' | 'delete' | 'getOne' | 'getAll' | 'query';
|
|
1122
|
+
type AXPEntityOp = 'initial' | 'create' | 'update' | 'delete' | 'getOne' | 'getAll' | 'query' | 'count' | 'queryAll' | 'getMany' | 'exists' | 'upsertOne' | 'aggregate';
|
|
1123
1123
|
|
|
1124
1124
|
type AXPWidgetTrigger = {
|
|
1125
1125
|
event: string;
|
|
@@ -1199,6 +1199,7 @@ type AXPActionMenuItem = {
|
|
|
1199
1199
|
icon?: string;
|
|
1200
1200
|
iconOnly?: boolean;
|
|
1201
1201
|
color?: string;
|
|
1202
|
+
look?: AXStyleLookType;
|
|
1202
1203
|
break?: boolean;
|
|
1203
1204
|
items?: AXPActionMenuItem[];
|
|
1204
1205
|
command?: AXPExecuteCommand;
|
|
@@ -2560,6 +2561,11 @@ declare function compareMultiLanguageStrings(a: AXPMultiLanguageString | null |
|
|
|
2560
2561
|
* Stable sort copy: orders items by resolved string for `getValue(item)` using the active `locale`.
|
|
2561
2562
|
*/
|
|
2562
2563
|
declare function sortByMultiLanguageString<T>(items: readonly T[], getValue: (item: T) => AXPMultiLanguageString | null | undefined, locale: string, collatorOptions?: Intl.CollatorOptions): T[];
|
|
2564
|
+
/**
|
|
2565
|
+
* True when the resolved value contains `query` (case-insensitive) for `locale`.
|
|
2566
|
+
* Useful for search/filter flows over {@link AXPMultiLanguageString}.
|
|
2567
|
+
*/
|
|
2568
|
+
declare function searchInMultiLanguageString(value: AXPMultiLanguageString | null | undefined, query: string, locale: string): boolean;
|
|
2563
2569
|
|
|
2564
2570
|
/**
|
|
2565
2571
|
* Represents a tag with text, color, and metadata
|
|
@@ -2867,6 +2873,23 @@ declare function createProviderWithInjectionContext<T>(loader: () => Promise<new
|
|
|
2867
2873
|
*/
|
|
2868
2874
|
declare function provideLazyProvider<TProvider>(token: InjectionToken<any>, loader: () => Promise<new () => TProvider>, multi?: boolean): Provider;
|
|
2869
2875
|
|
|
2876
|
+
/**
|
|
2877
|
+
* If `raw` is a plain non-array object with a `value` property, returns `value`; otherwise returns `raw`.
|
|
2878
|
+
*/
|
|
2879
|
+
declare function unwrapValueProperty(raw: unknown): unknown;
|
|
2880
|
+
/**
|
|
2881
|
+
* Coerces to a trimmed string. Plain objects may carry `{ value }` from setting widgets or `{ id }` from select payloads using `valueField: 'id'`.
|
|
2882
|
+
*/
|
|
2883
|
+
declare function coerceUnknownToTrimmedString(raw: unknown): string;
|
|
2884
|
+
/**
|
|
2885
|
+
* Coerces to boolean: direct booleans pass through; wrapped `{ value: true | 'true' }` is respected; otherwise false.
|
|
2886
|
+
*/
|
|
2887
|
+
declare function coerceUnknownToBoolean(raw: unknown): boolean;
|
|
2888
|
+
/** Parses a finite number after optional `{ value }` unwrap; non-finite or empty string yields NaN. */
|
|
2889
|
+
declare function coerceUnknownToFiniteNumber(raw: unknown): number;
|
|
2890
|
+
/** Parses a Date after optional `{ value }` unwrap; invalid input yields Invalid Date. */
|
|
2891
|
+
declare function coerceUnknownToDate(raw: unknown): Date;
|
|
2892
|
+
|
|
2870
2893
|
declare function extractTextFromHtml(value: string): string;
|
|
2871
2894
|
/**
|
|
2872
2895
|
* True when the string likely contains HTML markup (e.g. `<p>`, `<ul>`), as opposed to plain text.
|
|
@@ -2878,5 +2901,5 @@ declare function containsHtmlMarkup(value: string | null | undefined): boolean;
|
|
|
2878
2901
|
*/
|
|
2879
2902
|
declare function generateKebabCase(title: string): string;
|
|
2880
2903
|
|
|
2881
|
-
export { AXHighlightService, AXPActivityLogProvider, AXPActivityLogService, AXPAppStartUpProvider, AXPAppStartUpService, AXPBroadcastEventService, AXPColorPaletteProvider, AXPColorPaletteService, AXPColumnWidthService, AXPComponentLogoConfig, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPContentCheckerDirective, AXPContextChangeEvent, AXPContextStore, AXPCountdownPipe, AXPDataGenerator, AXPDataSourceDefinitionProviderService, AXPDblClickDirective, AXPDefaultColorPalettesProvider, AXPDeviceService, AXPDeviceType, AXPDistributedEventListenerService, AXPElementDataDirective, AXPExportTemplateToken, AXPExpressionEvaluatorScopeProviderContext, AXPExpressionEvaluatorScopeProviderService, AXPExpressionEvaluatorService, AXPFeatureDefinitionProviderContext, AXPGridLayoutDirective, AXPHookService, AXPIconLogoConfig, AXPImageUrlLogoConfig, AXPModuleManifestModule, AXPModuleManifestRegistry, AXPModuleManifestsDataSourceDefinition, AXPPlatformScope, AXPScreenSize, AXPSystemActionType, AXPSystemActions, AXPTagProvider, AXPTagService, AXP_ACTIVITY_LOG_PROVIDER, AXP_COLOR_PALETTE_PROVIDER, AXP_COLUMN_WIDTH_PROVIDER, AXP_DATASOURCE_DEFINITION_PROVIDER, AXP_DISTRIBUTED_EVENT_LISTENER_PROVIDER, AXP_EXPRESSION_EVALUATOR_SCOPE_PROVIDER, AXP_FEATURE_DEFINITION_PROVIDER, AXP_MODULE_MANIFEST_PROVIDER, AXP_SESSION_SERVICE, AXP_TAG_PROVIDER, MODULE_MANIFESTS_DATASOURCE_NAME, applyFilterArray, applyPagination, applyQueryArray, applySortArray, applySystemActionDefault, cleanDeep, compareMultiLanguageStrings, containsHtmlMarkup, createProviderWithInjectionContext, defaultColumnWidthProvider, extractNestedFieldsWildcard, extractTextFromHtml, extractValue, generateKebabCase, getActionButton, getChangedPaths, getDetailedChanges, getEnumValues, getNestedKeys, getSmart, getSystemActions, normalizeDefinitionCategories, objectKeyValueTransforms, provideLazyProvider, resolveActionLook, resolvePlatformScopeKey, resolvePlatformScopeName, setSmart, sortByMultiLanguageString };
|
|
2904
|
+
export { AXHighlightService, AXPActivityLogProvider, AXPActivityLogService, AXPAppStartUpProvider, AXPAppStartUpService, AXPBroadcastEventService, AXPColorPaletteProvider, AXPColorPaletteService, AXPColumnWidthService, AXPComponentLogoConfig, AXPComponentSlot, AXPComponentSlotDirective, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPContentCheckerDirective, AXPContextChangeEvent, AXPContextStore, AXPCountdownPipe, AXPDataGenerator, AXPDataSourceDefinitionProviderService, AXPDblClickDirective, AXPDefaultColorPalettesProvider, AXPDeviceService, AXPDeviceType, AXPDistributedEventListenerService, AXPElementDataDirective, AXPExportTemplateToken, AXPExpressionEvaluatorScopeProviderContext, AXPExpressionEvaluatorScopeProviderService, AXPExpressionEvaluatorService, AXPFeatureDefinitionProviderContext, AXPGridLayoutDirective, AXPHookService, AXPIconLogoConfig, AXPImageUrlLogoConfig, AXPModuleManifestModule, AXPModuleManifestRegistry, AXPModuleManifestsDataSourceDefinition, AXPPlatformScope, AXPScreenSize, AXPSystemActionType, AXPSystemActions, AXPTagProvider, AXPTagService, AXP_ACTIVITY_LOG_PROVIDER, AXP_COLOR_PALETTE_PROVIDER, AXP_COLUMN_WIDTH_PROVIDER, AXP_DATASOURCE_DEFINITION_PROVIDER, AXP_DISTRIBUTED_EVENT_LISTENER_PROVIDER, AXP_EXPRESSION_EVALUATOR_SCOPE_PROVIDER, AXP_FEATURE_DEFINITION_PROVIDER, AXP_MODULE_MANIFEST_PROVIDER, AXP_SESSION_SERVICE, AXP_TAG_PROVIDER, MODULE_MANIFESTS_DATASOURCE_NAME, applyFilterArray, applyPagination, applyQueryArray, applySortArray, applySystemActionDefault, cleanDeep, coerceUnknownToBoolean, coerceUnknownToDate, coerceUnknownToFiniteNumber, coerceUnknownToTrimmedString, compareMultiLanguageStrings, containsHtmlMarkup, createProviderWithInjectionContext, defaultColumnWidthProvider, extractNestedFieldsWildcard, extractTextFromHtml, extractValue, generateKebabCase, getActionButton, getChangedPaths, getDetailedChanges, getEnumValues, getNestedKeys, getSmart, getSystemActions, normalizeDefinitionCategories, objectKeyValueTransforms, provideLazyProvider, resolveActionLook, resolvePlatformScopeKey, resolvePlatformScopeName, searchInMultiLanguageString, setSmart, sortByMultiLanguageString, unwrapValueProperty };
|
|
2882
2905
|
export type { AXPActionMenuItem, AXPActivityLog, AXPActivityLogChange, AXPApplicationUserReference, AXPBackButton, AXPBadge, AXPBreadcrumbItem, AXPCategorizedEntity, AXPCategorizedEntityDto, AXPCategoryEntity, AXPCategoryEntityWithItems, AXPCategoryListItem, AXPColorPalette, AXPColorPaletteFilterOptions, AXPColumnQuery, AXPColumnWidthMatcher, AXPColumnWidthProvider, AXPCommandMessage, AXPComponentSlotConfig, AXPComponentSlotModuleConfigs, AXPContent, AXPContentDirection, AXPContentType, AXPContextData, AXPContextState, AXPDataSource, AXPDataSourceArray, AXPDataSourceDataFieldDefinition, AXPDataSourceDefinition, AXPDataSourceDefinitionProvider, AXPDataSourceSample, AXPDataSourceType, AXPDataSourceValue, AXPDataType, AXPDefinitionCategory, AXPDistributedEventListenerProvider, AXPDistributedEventListenerProviderToken, AXPEntityOp, AXPEntityReference, AXPEqualValidationRule, AXPExecuteCommand, AXPExecuteCommandResult, AXPExportCsvOptions, AXPExportExcelOptions, AXPExportOptions, AXPExportPdfOptions, AXPExportPrintOptions, AXPExpression, AXPExpressionEvaluatorScope, AXPExpressionEvaluatorScopeProvider, AXPExpressionEvaluatorScopeProviders, AXPFeatureDefinition, AXPFeatureDefinitionProvider, AXPFeatureName, AXPFileListItem, AXPFileSource, AXPFileStatus, AXPFilterClause, AXPFilterDefinition, AXPFilterQuery, AXPFilterTriggerDefinition, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPISessionService, AXPLazyDataSource, AXPLogoConfig, AXPMaxLengthValidationRule, AXPMaybePromise, AXPMetaData, AXPMiddlewareErrorResponse, AXPMinLengthValidationRule, AXPModuleFeatureDefinition, AXPModuleFeatureDefinitionWithKey, AXPModuleManifest, AXPMultiLanguageString, AXPNavigateActionCommand, AXPNavigateActionOptions, AXPOptionsData, AXPPageStatus, AXPPagedListResult, AXPPartialNested, AXPPlatformScopeKey, AXPProperty, AXPPropertyGroup, AXPPropertyInterface, AXPQueryFetchResult, AXPQueryRequest, AXPReqexValidationRule, AXPRequiredValidationRule, AXPSortDefinition, AXPSortQuery, AXPStartUpTask, AXPStringValidationRules, AXPSystemAction, AXPTag, AXPTagFilterOptions, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPViewQuery, AXPWidgetTrigger, AXPWidgetTriggers, ColumnNameMatcher, ColumnWidthValue, IColumnWithWidth, WidgetTypeMatcher };
|
|
@@ -270,7 +270,6 @@ interface AXPDialogContainerOptions extends LayoutWidgetOptions {
|
|
|
270
270
|
*/
|
|
271
271
|
interface AXPLayoutBuilderDialogConfig {
|
|
272
272
|
title: string;
|
|
273
|
-
message?: string;
|
|
274
273
|
context: Record<string, unknown>;
|
|
275
274
|
definition: AXPWidgetNode;
|
|
276
275
|
metadata?: AXPMetaData;
|
|
@@ -804,6 +803,21 @@ interface AXPLayoutBuilderDialogBeforeOpenPayload {
|
|
|
804
803
|
* so they may push, splice, filter, or replace items. They may also mutate {@link AXPLayoutBuilderDialogFooterPayload.context} by reference.
|
|
805
804
|
*/
|
|
806
805
|
declare const AXP_LAYOUT_BUILDER_DIALOG_CONFIG_HOOK_KEY = "layout-builder.dialog.config";
|
|
806
|
+
/**
|
|
807
|
+
* Runs whenever the dialog layout builder context changes (debounced upstream), **after** the popup is visible.
|
|
808
|
+
* Use for side effects that depend on live context (for example values updated by widgets after render).
|
|
809
|
+
* Payload mirrors `AXPDialogRendererComponent` semantics: {@link AXPLayoutBuilderDialogContextChangedPayload.getContext},
|
|
810
|
+
* {@link AXPLayoutBuilderDialogContextChangedPayload.patchContext}, and optional loading state.
|
|
811
|
+
*/
|
|
812
|
+
declare const AXP_LAYOUT_BUILDER_DIALOG_CONTEXT_CHANGED_HOOK_KEY = "layout-builder.dialog.context-changed";
|
|
813
|
+
interface AXPLayoutBuilderDialogContextChangedPayload {
|
|
814
|
+
/** Stable id for this dialog instance; lets listeners correlate repeated emissions or async follow-up work. */
|
|
815
|
+
sessionKey: string;
|
|
816
|
+
getContext: () => Record<string, unknown>;
|
|
817
|
+
metadata: Record<string, unknown> | undefined;
|
|
818
|
+
patchContext: (partial: Record<string, unknown>) => void;
|
|
819
|
+
setLoading: (loading: boolean) => void;
|
|
820
|
+
}
|
|
807
821
|
|
|
808
822
|
declare class AXPLayoutBuilderService {
|
|
809
823
|
private popupService;
|
|
@@ -893,6 +907,8 @@ declare class AXPDialogRendererComponent extends AXBasePageComponent implements
|
|
|
893
907
|
result: EventEmitter<DialogRendererResult>;
|
|
894
908
|
private widgetCoreService;
|
|
895
909
|
private expressionEvaluator;
|
|
910
|
+
private readonly commandService;
|
|
911
|
+
private readonly hookService;
|
|
896
912
|
private dialogResult?;
|
|
897
913
|
context: _angular_core.WritableSignal<any>;
|
|
898
914
|
callBack: (result: unknown) => void;
|
|
@@ -900,11 +916,16 @@ declare class AXPDialogRendererComponent extends AXBasePageComponent implements
|
|
|
900
916
|
private isDialogLoading;
|
|
901
917
|
footerPrefix: _angular_core.WritableSignal<AXPWidgetCoreElementAction[]>;
|
|
902
918
|
footerSuffix: _angular_core.WritableSignal<AXPWidgetCoreElementAction[]>;
|
|
919
|
+
/**
|
|
920
|
+
* Correlate layout context snapshots for distributed hooks (`layout-builder.dialog.context-changed`).
|
|
921
|
+
*/
|
|
922
|
+
private readonly contextChangedHooksSessionKey;
|
|
903
923
|
ngOnInit(): void;
|
|
904
924
|
private layoutRenderer;
|
|
905
925
|
private debounceTimer?;
|
|
906
926
|
handleContextChanged(event: any): void;
|
|
907
927
|
handleContextInitiated(event: any): void;
|
|
928
|
+
private invokeLayoutContextChangedHooks;
|
|
908
929
|
footerPrefixActions(): AXPWidgetCoreElementAction[];
|
|
909
930
|
footerSuffixActions(): AXPWidgetCoreElementAction[];
|
|
910
931
|
isFormLoading(): boolean;
|
|
@@ -912,6 +933,8 @@ declare class AXPDialogRendererComponent extends AXBasePageComponent implements
|
|
|
912
933
|
executeAction(action: AXPWidgetCoreElementAction): Promise<void>;
|
|
913
934
|
/** Whether the layout form should be validated before running this footer command. */
|
|
914
935
|
private shouldValidateBeforeAction;
|
|
936
|
+
/** True when a footer handler or command result asks to leave the dialog open (`keepDialogOpen` on the result or `result.data`). */
|
|
937
|
+
private shouldKeepDialogOpenAfterCommandResult;
|
|
915
938
|
private createDialogRef;
|
|
916
939
|
private closeWithOptionalSkipValidate;
|
|
917
940
|
/** Resolves footer/widget action command to a string (e.g. `cancel`, `submit`, `widget:...`). */
|
|
@@ -972,5 +995,5 @@ declare class AXPPreviewWidgetFieldCommand implements AXPCommand<AXPPreviewWidge
|
|
|
972
995
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPPreviewWidgetFieldCommand>;
|
|
973
996
|
}
|
|
974
997
|
|
|
975
|
-
export { AXPDialogRendererComponent, AXPLayoutBuilderService, AXPLayoutConversionService, AXPLayoutRendererComponent, AXPPreviewWidgetFieldCommand, AXP_LAYOUT_BUILDER_DIALOG_BEFORE_OPEN_HOOK_KEY, AXP_LAYOUT_BUILDER_DIALOG_CONFIG_HOOK_KEY, AXP_PREVIEW_WIDGET_FIELD_COMMAND_KEY, LayoutBuilderModule };
|
|
976
|
-
export type { AXPDialogContainerOptions, AXPDialogRef, AXPDynamicFormDefinition, AXPDynamicFormDirection, AXPDynamicFormFieldDefinition, AXPDynamicFormGroupDefinition, AXPDynamicFormLook, AXPDynamicFormMode, AXPFieldsetContainerOptions, AXPFlexContainerOptions, AXPFormFieldHintDisplayMode, AXPFormFieldOptions, AXPGridContainerOptions, AXPLayoutBuilderDialogBeforeOpenPayload, AXPLayoutBuilderDialogConfig, AXPListWidgetColumn, AXPListWidgetOptions, AXPListWidgetRowCommand, AXPPageContainerOptions, AXPPanelContainerOptions, AXPPreviewWidgetFieldCommandInput, AXPStepDefinition, AXPStepWizardContainerOptions, AXPStepWizardDefinition, AXPStepWizardGuardPayload, AXPStepWizardStatus, AXPTabsetContainerOptions, AXPWidgetConfiguration, AXPWidgetNodeExtendedProperties, AXPWizardActionDefinition, AXPWizardActions, ColorBoxOptions, DateTimeBoxOptions, DialogBuilderState, DialogRendererConfig, DialogRendererResult, FormFieldBuilderState, IActionBuilder, IBaseContainerBuilder, IChildContainerBuilder, IDialogBuilder, IFieldsetContainerBuilder, IFlexContainerBuilder, IFormFieldBuilder, IGridContainerBuilder, ILayoutBuilder, ILayoutContainerBuilder, IListWidgetBuilder, IPageContainerBuilder, IPanelContainerBuilder, IStepBuilder, IStepWizardBuilder, ITabsetContainerBuilder, IWidgetBuilder, IWidgetContainerBuilder, InheritanceContext, InheritedProperties, LargeTextBoxOptions, LayoutBuilderState, LayoutWidgetOptions, LookupBoxOptions, NumberBoxOptions, PasswordBoxOptions, RichTextOptions, SelectBoxOptions, SelectionListOptions, TextBoxOptions, ToggleSwitchOptions, ValueWidgetOptions, WidgetBuilderState };
|
|
998
|
+
export { AXPDialogRendererComponent, AXPLayoutBuilderService, AXPLayoutConversionService, AXPLayoutRendererComponent, AXPPreviewWidgetFieldCommand, AXP_LAYOUT_BUILDER_DIALOG_BEFORE_OPEN_HOOK_KEY, AXP_LAYOUT_BUILDER_DIALOG_CONFIG_HOOK_KEY, AXP_LAYOUT_BUILDER_DIALOG_CONTEXT_CHANGED_HOOK_KEY, AXP_PREVIEW_WIDGET_FIELD_COMMAND_KEY, LayoutBuilderModule };
|
|
999
|
+
export type { AXPDialogContainerOptions, AXPDialogRef, AXPDynamicFormDefinition, AXPDynamicFormDirection, AXPDynamicFormFieldDefinition, AXPDynamicFormGroupDefinition, AXPDynamicFormLook, AXPDynamicFormMode, AXPFieldsetContainerOptions, AXPFlexContainerOptions, AXPFormFieldHintDisplayMode, AXPFormFieldOptions, AXPGridContainerOptions, AXPLayoutBuilderDialogBeforeOpenPayload, AXPLayoutBuilderDialogConfig, AXPLayoutBuilderDialogContextChangedPayload, AXPListWidgetColumn, AXPListWidgetOptions, AXPListWidgetRowCommand, AXPPageContainerOptions, AXPPanelContainerOptions, AXPPreviewWidgetFieldCommandInput, AXPStepDefinition, AXPStepWizardContainerOptions, AXPStepWizardDefinition, AXPStepWizardGuardPayload, AXPStepWizardStatus, AXPTabsetContainerOptions, AXPWidgetConfiguration, AXPWidgetNodeExtendedProperties, AXPWizardActionDefinition, AXPWizardActions, ColorBoxOptions, DateTimeBoxOptions, DialogBuilderState, DialogRendererConfig, DialogRendererResult, FormFieldBuilderState, IActionBuilder, IBaseContainerBuilder, IChildContainerBuilder, IDialogBuilder, IFieldsetContainerBuilder, IFlexContainerBuilder, IFormFieldBuilder, IGridContainerBuilder, ILayoutBuilder, ILayoutContainerBuilder, IListWidgetBuilder, IPageContainerBuilder, IPanelContainerBuilder, IStepBuilder, IStepWizardBuilder, ITabsetContainerBuilder, IWidgetBuilder, IWidgetContainerBuilder, InheritanceContext, InheritedProperties, LargeTextBoxOptions, LayoutBuilderState, LayoutWidgetOptions, LookupBoxOptions, NumberBoxOptions, PasswordBoxOptions, RichTextOptions, SelectBoxOptions, SelectionListOptions, TextBoxOptions, ToggleSwitchOptions, ValueWidgetOptions, WidgetBuilderState };
|
|
@@ -1045,6 +1045,57 @@ declare class AXPLogoComponent implements OnInit, OnChanges {
|
|
|
1045
1045
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPLogoComponent, "axp-logo", never, { "source": { "alias": "source"; "required": false; }; }, {}, never, never, true, never>;
|
|
1046
1046
|
}
|
|
1047
1047
|
|
|
1048
|
+
type MarkdownSegmentType = 'markdown' | 'code';
|
|
1049
|
+
interface MarkdownSegmentBase {
|
|
1050
|
+
type: MarkdownSegmentType;
|
|
1051
|
+
}
|
|
1052
|
+
interface MarkdownContentSegment extends MarkdownSegmentBase {
|
|
1053
|
+
type: 'markdown';
|
|
1054
|
+
html: string;
|
|
1055
|
+
}
|
|
1056
|
+
interface MarkdownCodeSegment extends MarkdownSegmentBase {
|
|
1057
|
+
type: 'code';
|
|
1058
|
+
language: string;
|
|
1059
|
+
code: string;
|
|
1060
|
+
}
|
|
1061
|
+
type MarkdownSegment = MarkdownContentSegment | MarkdownCodeSegment;
|
|
1062
|
+
type MarkdownTemplateType = 'markdown' | 'code';
|
|
1063
|
+
interface MarkdownTemplateContext {
|
|
1064
|
+
$implicit: MarkdownSegment;
|
|
1065
|
+
segment: MarkdownSegment;
|
|
1066
|
+
}
|
|
1067
|
+
declare class AXPMarkdownTemplateDirective {
|
|
1068
|
+
readonly template: TemplateRef<MarkdownTemplateContext>;
|
|
1069
|
+
/** Indicates which segment type this template customizes. */
|
|
1070
|
+
readonly type: _angular_core.InputSignal<MarkdownTemplateType>;
|
|
1071
|
+
constructor(template: TemplateRef<MarkdownTemplateContext>);
|
|
1072
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPMarkdownTemplateDirective, never>;
|
|
1073
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AXPMarkdownTemplateDirective, "ng-template[axpMarkdownTemplate]", never, { "type": { "alias": "axpMarkdownTemplate"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1074
|
+
}
|
|
1075
|
+
declare class AXPMarkdownViewerComponent {
|
|
1076
|
+
/** Raw markdown content to render. */
|
|
1077
|
+
readonly markdown: _angular_core.InputSignal<string>;
|
|
1078
|
+
/** Optional templates for overriding markdown and code segments. */
|
|
1079
|
+
private readonly templates;
|
|
1080
|
+
protected readonly markdownTemplate: _angular_core.Signal<TemplateRef<MarkdownTemplateContext> | undefined>;
|
|
1081
|
+
protected readonly codeTemplate: _angular_core.Signal<TemplateRef<MarkdownTemplateContext> | undefined>;
|
|
1082
|
+
protected readonly segments: _angular_core.Signal<MarkdownSegment[]>;
|
|
1083
|
+
private readonly markdownCompiler;
|
|
1084
|
+
constructor();
|
|
1085
|
+
/**
|
|
1086
|
+
* Splits markdown into text/code segments, compiles markdown text to HTML with micromark,
|
|
1087
|
+
* and keeps fenced code blocks available for custom Angular rendering.
|
|
1088
|
+
*/
|
|
1089
|
+
private parseMarkdown;
|
|
1090
|
+
private addMarkdownSegment;
|
|
1091
|
+
private loadMicromarkCompiler;
|
|
1092
|
+
private loadMicromarkModules;
|
|
1093
|
+
private importModule;
|
|
1094
|
+
private escapeHtml;
|
|
1095
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPMarkdownViewerComponent, never>;
|
|
1096
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPMarkdownViewerComponent, "axp-markdown-viewer", never, { "markdown": { "alias": "markdown"; "required": false; "isSignal": true; }; }, {}, ["templates"], never, true, never>;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1048
1099
|
/**
|
|
1049
1100
|
* Menu item type definitions.
|
|
1050
1101
|
* - 'menu': Standard navigable menu item
|
|
@@ -2923,5 +2974,5 @@ declare class AXPStandardSectionItemsBuilderComponent {
|
|
|
2923
2974
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXPStandardSectionItemsBuilderComponent, "axp-standard-section-items-builder", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; "readonlyMode": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
2924
2975
|
}
|
|
2925
2976
|
|
|
2926
|
-
export { AXPActivityLogComponent, AXPAvatarComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPColumnItemListComponent, AXPCompareViewComponent, AXPConditionBuilderComponent, AXPConditionBuilderConditionComponent, AXPDataSelectorComponent, AXPDataSelectorService, AXPDragDropListComponent, AXPExpressionFieldDefinitions, AXPImageEditorPopupComponent, AXPImageEditorService, AXPItemConfiguratorComponent, AXPLogoComponent, AXPMenuBadgeHelper, AXPMenuCustomizerComponent, AXPMenuCustomizerService, AXPPageComponentRegistryService, AXPPreloadFiltersComponent, AXPPropertyViewerComponent, AXPPropertyViewerPopupComponent, AXPPropertyViewerService, AXPQueryColumnsComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryViewsComponent, AXPRepeaterRowsLayoutComponent, AXPResourceAppointmentBoardProvider, AXPResourceAppointmentComponent, AXPResourceAppointmentService, AXPSectionItemsBuilderComponent, AXPSpreadsheetComponent, AXPStandardSectionItemsBuilderComponent, AXPStateMessageComponent, AXPStopwatchComponent, AXPTableColumnsEditorComponent, AXPTableColumnsEditorPopupComponent, AXPTableColumnsEditorService, AXPTableDataEditorComponent, AXPTableDataEditorPopupComponent, AXPTableDataEditorService, AXPTaskBadgeDirective, AXPTaskBadgeProvider, AXPTaskBadgeService, AXPTemplateViewerComponent, AXPTemplateViewerService, AXPThemeLayoutActionsComponent, AXPThemeLayoutBlockComponent, AXPThemeLayoutContainerComponent, AXPThemeLayoutEndSideComponent, AXPThemeLayoutFooterComponent, AXPThemeLayoutHeaderComponent, AXPThemeLayoutListComponent, AXPThemeLayoutListItemComponent, AXPThemeLayoutListItemsGroupComponent, AXPThemeLayoutPageHeaderComponent, AXPThemeLayoutPagePrimaryActionsComponent, AXPThemeLayoutPageSecondaryActionsComponent, AXPThemeLayoutSectionComponent, AXPThemeLayoutStartSideComponent, AXPThemeLayoutToolbarComponent, AXPUserAvatarComponent, AXPUserAvatarService, AXPWidgetFieldConfiguratorComponent, AXPWidgetItemComponent, AXPWidgetPropertyViewerComponent, AXPWidgetPropertyViewerPopupComponent, AXPWidgetPropertyViewerService, AXP_EXPRESSION_LOGIC_DEFINITIONS, AXP_EXPRESSION_OPERATION_DEFINITIONS, AXP_MENU_CUSTOMIZER_SERVICE, AXP_PAGE_COMPONENT_PROVIDER, AXP_RESOURCE_APPOINTMENT_PROVIDER, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER, STANDARD_SECTION_ITEMS_SECTION_TABS, buildPropertyViewerInitialContextFromProperties, buildPropertyViewerTabsFromProperties, buildTableColumnsEditorLayout, getFieldDefinitions, getLogicDefinition, getOperationDefinition, isPropertyBindingExpressionFormValue, preparePropertyForViewer, preparePropertyViewerTabs, registerFieldDefinitions, withValidationsOnEditorNode };
|
|
2977
|
+
export { AXPActivityLogComponent, AXPAvatarComponent, AXPCategoryTreeComponent, AXPColorPalettePickerComponent, AXPColumnItemListComponent, AXPCompareViewComponent, AXPConditionBuilderComponent, AXPConditionBuilderConditionComponent, AXPDataSelectorComponent, AXPDataSelectorService, AXPDragDropListComponent, AXPExpressionFieldDefinitions, AXPImageEditorPopupComponent, AXPImageEditorService, AXPItemConfiguratorComponent, AXPLogoComponent, AXPMarkdownTemplateDirective, AXPMarkdownViewerComponent, AXPMenuBadgeHelper, AXPMenuCustomizerComponent, AXPMenuCustomizerService, AXPPageComponentRegistryService, AXPPreloadFiltersComponent, AXPPropertyViewerComponent, AXPPropertyViewerPopupComponent, AXPPropertyViewerService, AXPQueryColumnsComponent, AXPQueryFiltersComponent, AXPQuerySortsComponent, AXPQueryViewsComponent, AXPRepeaterRowsLayoutComponent, AXPResourceAppointmentBoardProvider, AXPResourceAppointmentComponent, AXPResourceAppointmentService, AXPSectionItemsBuilderComponent, AXPSpreadsheetComponent, AXPStandardSectionItemsBuilderComponent, AXPStateMessageComponent, AXPStopwatchComponent, AXPTableColumnsEditorComponent, AXPTableColumnsEditorPopupComponent, AXPTableColumnsEditorService, AXPTableDataEditorComponent, AXPTableDataEditorPopupComponent, AXPTableDataEditorService, AXPTaskBadgeDirective, AXPTaskBadgeProvider, AXPTaskBadgeService, AXPTemplateViewerComponent, AXPTemplateViewerService, AXPThemeLayoutActionsComponent, AXPThemeLayoutBlockComponent, AXPThemeLayoutContainerComponent, AXPThemeLayoutEndSideComponent, AXPThemeLayoutFooterComponent, AXPThemeLayoutHeaderComponent, AXPThemeLayoutListComponent, AXPThemeLayoutListItemComponent, AXPThemeLayoutListItemsGroupComponent, AXPThemeLayoutPageHeaderComponent, AXPThemeLayoutPagePrimaryActionsComponent, AXPThemeLayoutPageSecondaryActionsComponent, AXPThemeLayoutSectionComponent, AXPThemeLayoutStartSideComponent, AXPThemeLayoutToolbarComponent, AXPUserAvatarComponent, AXPUserAvatarService, AXPWidgetFieldConfiguratorComponent, AXPWidgetItemComponent, AXPWidgetPropertyViewerComponent, AXPWidgetPropertyViewerPopupComponent, AXPWidgetPropertyViewerService, AXP_EXPRESSION_LOGIC_DEFINITIONS, AXP_EXPRESSION_OPERATION_DEFINITIONS, AXP_MENU_CUSTOMIZER_SERVICE, AXP_PAGE_COMPONENT_PROVIDER, AXP_RESOURCE_APPOINTMENT_PROVIDER, AXP_TASK_BADGE_PROVIDERS, AXP_USER_AVATAR_PROVIDER, STANDARD_SECTION_ITEMS_SECTION_TABS, buildPropertyViewerInitialContextFromProperties, buildPropertyViewerTabsFromProperties, buildTableColumnsEditorLayout, getFieldDefinitions, getLogicDefinition, getOperationDefinition, isPropertyBindingExpressionFormValue, preparePropertyForViewer, preparePropertyViewerTabs, registerFieldDefinitions, withValidationsOnEditorNode };
|
|
2927
2978
|
export type { AXPBuilderBadge, AXPBuilderBadgeVariant, AXPBuilderDefinition, AXPBuilderItem, AXPBuilderItemIconTone, AXPBuilderItemViewModel, AXPBuilderSection, AXPBuilderTexts, AXPBuilderValue, AXPCategoryTreeActions, AXPCategoryTreeConfig, AXPCategoryTreeDataSource, AXPCategoryTreeEvents, AXPCategoryTreeNode, AXPColumnItemListItem, AXPCompareViewField, AXPCompareViewInputs, AXPCompareViewMode, AXPCompareViewObject, AXPDataSelectorAllowCreate, AXPDataSelectorColumn, AXPDataSelectorConfig, AXPDragDropListConfig, AXPDragDropListDropEvent, AXPDragDropListItem, AXPExpressionFieldDefinition, AXPExpressionGroupNode, AXPExpressionLogicDefinition, AXPExpressionLogicType, AXPExpressionNode, AXPExpressionNodeId, AXPExpressionOperationDefinition, AXPExpressionOperationNode, AXPExpressionOperationType, AXPExpressionTree, AXPExpressionValueOperand, AXPExpressionValueSourceType, AXPImageEditorOpenOptions, AXPMenuCustomizerAction, AXPMenuCustomizerItem, AXPMenuCustomizerItemType, AXPMenuCustomizerNodeData, AXPMenuCustomizerNodeMetadata, AXPMenuCustomizerState, AXPPageComponentDefinition, AXPPageComponentProvider, AXPPreloadFiltersApplyEvent, AXPPropertyViewerActionRef, AXPPropertyViewerChangedEvent, AXPPropertyViewerConfig, AXPPropertyViewerGroup, AXPPropertyViewerResult, AXPPropertyViewerTab, AXPResourceAppointmentActionMenuItem, AXPResourceAppointmentBoardFilter, AXPResourceAppointmentItem, AXPResourceAppointmentResource, AXPResourceAppointmentStatus, AXPSpreadsheetCellChangeEvent, AXPSpreadsheetCellValue, AXPSpreadsheetColumn, AXPSpreadsheetConfig, AXPSpreadsheetData, AXPSpreadsheetItem, AXPSpreadsheetRowChangeEvent, AXPSpreadsheetRowMode, AXPStandardSectionFormContext, AXPStandardSectionItemsBuilderConfig, AXPTableColumnDefinition, AXPTableColumnsEditorOpenOptions, AXPTableDataEditorOpenOptions, AXPTemplateViewerConfig, AXPTemplateViewerResult, AXPUserAvatarData, AXPUserAvatarProvider, AXPUserAvatarSize, AXPUserAvatarStatus, AXPWidgetItemClickEvent, AXPWidgetItemData, AXPWidgetPropertiesChangedEvent, AXPWidgetPropertyInjection, AXPWidgetPropertyViewerConfig, AXPWidgetPropertyViewerResult, ConditionBuilderSelectedField, IAXPPropertyViewerDialogBuilder, IAXPPropertyViewerRoot, IAXPWidgetPropertyViewerDialogBuilder, IAXPWidgetPropertyViewerRoot, ItemConfiguratorListItem, StateMode };
|