@praxisui/core 3.0.0-beta.7 → 3.0.0-beta.8
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/README.md +5 -9
- package/fesm2022/praxisui-core.mjs +3636 -698
- package/fesm2022/praxisui-core.mjs.map +1 -1
- package/index.d.ts +787 -160
- package/package.json +2 -3
package/index.d.ts
CHANGED
|
@@ -3319,6 +3319,8 @@ type ActionDefinition = {
|
|
|
3319
3319
|
interface WidgetDefinition {
|
|
3320
3320
|
/** Component id registered in ComponentMetadataRegistry */
|
|
3321
3321
|
id: string;
|
|
3322
|
+
/** Optional author-defined identity for nested widget instances inside composite containers. */
|
|
3323
|
+
childWidgetKey?: string;
|
|
3322
3324
|
/** Inputs to bind into the component instance */
|
|
3323
3325
|
inputs?: Record<string, any>;
|
|
3324
3326
|
/** Map of component output name to action (global action or 'emit'). */
|
|
@@ -6141,6 +6143,46 @@ declare class ErrorMessageService {
|
|
|
6141
6143
|
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorMessageService>;
|
|
6142
6144
|
}
|
|
6143
6145
|
|
|
6146
|
+
type PortDirection = 'input' | 'output';
|
|
6147
|
+
type PortSemanticKind = 'event' | 'value' | 'selection' | 'collection' | 'query-context' | 'view-context' | 'config-fragment' | 'command' | 'status' | 'diagnostic' | 'trigger';
|
|
6148
|
+
type PortCardinality = 'one' | 'many' | 'stream';
|
|
6149
|
+
type PortSchemaKind = 'json-schema' | 'ts-type' | 'opaque' | 'structural-shape';
|
|
6150
|
+
type PortSchemaMode = 'strict' | 'structural' | 'opaque';
|
|
6151
|
+
interface PortSchemaRef {
|
|
6152
|
+
id: string;
|
|
6153
|
+
kind: PortSchemaKind;
|
|
6154
|
+
ref?: string;
|
|
6155
|
+
description?: string;
|
|
6156
|
+
}
|
|
6157
|
+
interface PortCompatibilityRuleSet {
|
|
6158
|
+
acceptsSemanticKinds?: PortSemanticKind[];
|
|
6159
|
+
rejectsSemanticKinds?: PortSemanticKind[];
|
|
6160
|
+
acceptsCardinality?: PortCardinality[];
|
|
6161
|
+
requiresTransformWhenSourceKinds?: PortSemanticKind[];
|
|
6162
|
+
schemaMode?: PortSchemaMode;
|
|
6163
|
+
}
|
|
6164
|
+
interface PortExposure {
|
|
6165
|
+
public: boolean;
|
|
6166
|
+
advanced?: boolean;
|
|
6167
|
+
deprecated?: boolean;
|
|
6168
|
+
internalPath?: string;
|
|
6169
|
+
group?: string;
|
|
6170
|
+
}
|
|
6171
|
+
interface PortContract {
|
|
6172
|
+
id: string;
|
|
6173
|
+
label: string;
|
|
6174
|
+
direction: PortDirection;
|
|
6175
|
+
semanticKind: PortSemanticKind;
|
|
6176
|
+
schema?: PortSchemaRef;
|
|
6177
|
+
cardinality?: PortCardinality;
|
|
6178
|
+
required?: boolean;
|
|
6179
|
+
mutable?: boolean;
|
|
6180
|
+
description?: string;
|
|
6181
|
+
compatibility?: PortCompatibilityRuleSet;
|
|
6182
|
+
exposure?: PortExposure;
|
|
6183
|
+
examples?: unknown[];
|
|
6184
|
+
}
|
|
6185
|
+
|
|
6144
6186
|
/**
|
|
6145
6187
|
* Documentation metadata for dynamically added components.
|
|
6146
6188
|
*
|
|
@@ -6225,6 +6267,8 @@ interface ComponentDocMeta {
|
|
|
6225
6267
|
example?: any;
|
|
6226
6268
|
};
|
|
6227
6269
|
}>;
|
|
6270
|
+
/** Optional canonical semantic ports that complement legacy inputs/outputs metadata. */
|
|
6271
|
+
ports?: PortContract[];
|
|
6228
6272
|
/** Tags or categories for search */
|
|
6229
6273
|
tags?: string[];
|
|
6230
6274
|
/** Source library for the component */
|
|
@@ -6240,6 +6284,107 @@ interface ComponentDocMeta {
|
|
|
6240
6284
|
};
|
|
6241
6285
|
}
|
|
6242
6286
|
|
|
6287
|
+
type PraxisLocale = string;
|
|
6288
|
+
interface PraxisTranslationParams {
|
|
6289
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
6290
|
+
}
|
|
6291
|
+
interface PraxisI18nMessageDescriptor {
|
|
6292
|
+
key?: string;
|
|
6293
|
+
text?: string;
|
|
6294
|
+
params?: PraxisTranslationParams;
|
|
6295
|
+
}
|
|
6296
|
+
type PraxisTextValue = string | PraxisI18nMessageDescriptor;
|
|
6297
|
+
interface PraxisI18nDictionary {
|
|
6298
|
+
[key: string]: string;
|
|
6299
|
+
}
|
|
6300
|
+
interface PraxisI18nNamespaceDictionary {
|
|
6301
|
+
[locale: string]: PraxisI18nDictionary;
|
|
6302
|
+
}
|
|
6303
|
+
interface PraxisI18nNamespaceConfig {
|
|
6304
|
+
[namespace: string]: PraxisI18nNamespaceDictionary;
|
|
6305
|
+
}
|
|
6306
|
+
interface PraxisI18nConfig {
|
|
6307
|
+
locale?: PraxisLocale;
|
|
6308
|
+
fallbackLocale?: PraxisLocale;
|
|
6309
|
+
dictionaries?: Record<PraxisLocale, PraxisI18nDictionary>;
|
|
6310
|
+
namespaces?: PraxisI18nNamespaceConfig;
|
|
6311
|
+
}
|
|
6312
|
+
interface PraxisI18nTranslator {
|
|
6313
|
+
translate(key: string, params?: PraxisTranslationParams, fallback?: string): string;
|
|
6314
|
+
}
|
|
6315
|
+
|
|
6316
|
+
interface ComponentMetadataEditorialBindingDescriptor {
|
|
6317
|
+
name: string;
|
|
6318
|
+
type: string;
|
|
6319
|
+
description?: PraxisTextValue;
|
|
6320
|
+
label?: PraxisTextValue;
|
|
6321
|
+
default?: unknown;
|
|
6322
|
+
}
|
|
6323
|
+
interface ComponentMetadataEditorialDescriptor {
|
|
6324
|
+
controlType: string;
|
|
6325
|
+
componentMetaId: string;
|
|
6326
|
+
selector?: string;
|
|
6327
|
+
component?: Type<unknown>;
|
|
6328
|
+
friendlyName: PraxisTextValue;
|
|
6329
|
+
description?: PraxisTextValue;
|
|
6330
|
+
tooltip?: PraxisTextValue;
|
|
6331
|
+
icon?: string;
|
|
6332
|
+
family?: string;
|
|
6333
|
+
track?: string;
|
|
6334
|
+
tags?: string[];
|
|
6335
|
+
inputs?: ComponentMetadataEditorialBindingDescriptor[];
|
|
6336
|
+
outputs?: ComponentMetadataEditorialBindingDescriptor[];
|
|
6337
|
+
lib?: string;
|
|
6338
|
+
}
|
|
6339
|
+
interface ResolvedComponentMetadataEditorialBinding {
|
|
6340
|
+
name: string;
|
|
6341
|
+
type: string;
|
|
6342
|
+
description?: string;
|
|
6343
|
+
label?: string;
|
|
6344
|
+
default?: unknown;
|
|
6345
|
+
}
|
|
6346
|
+
interface ResolvedComponentMetadataEditorialMeta {
|
|
6347
|
+
controlType: string;
|
|
6348
|
+
componentMetaId: string;
|
|
6349
|
+
selector?: string;
|
|
6350
|
+
component?: Type<unknown>;
|
|
6351
|
+
friendlyName: string;
|
|
6352
|
+
description?: string;
|
|
6353
|
+
tooltip?: string;
|
|
6354
|
+
icon?: string;
|
|
6355
|
+
family?: string;
|
|
6356
|
+
track?: string;
|
|
6357
|
+
tags?: string[];
|
|
6358
|
+
inputs?: ResolvedComponentMetadataEditorialBinding[];
|
|
6359
|
+
outputs?: ResolvedComponentMetadataEditorialBinding[];
|
|
6360
|
+
lib?: string;
|
|
6361
|
+
source: 'component-doc-meta' | 'editorial-descriptor';
|
|
6362
|
+
}
|
|
6363
|
+
interface ComponentEditorialResolveOptions {
|
|
6364
|
+
namespace?: string;
|
|
6365
|
+
}
|
|
6366
|
+
|
|
6367
|
+
declare class PraxisI18nService {
|
|
6368
|
+
private readonly configs;
|
|
6369
|
+
private readonly translator;
|
|
6370
|
+
private readonly globalConfig;
|
|
6371
|
+
private readonly bootstrapOptions;
|
|
6372
|
+
constructor(configs: Array<Partial<PraxisI18nConfig>> | Partial<PraxisI18nConfig> | null, translator: PraxisI18nTranslator | null);
|
|
6373
|
+
getLocale(): string;
|
|
6374
|
+
getFallbackLocale(): string;
|
|
6375
|
+
t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
6376
|
+
resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
|
|
6377
|
+
formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
|
|
6378
|
+
formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
|
|
6379
|
+
formatCurrency(value: number, currency: string, options?: Intl.NumberFormatOptions): string;
|
|
6380
|
+
private getConfig;
|
|
6381
|
+
private lookup;
|
|
6382
|
+
private translateExternally;
|
|
6383
|
+
private stringifyInvalidValue;
|
|
6384
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisI18nService, [{ optional: true; }, { optional: true; }]>;
|
|
6385
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisI18nService>;
|
|
6386
|
+
}
|
|
6387
|
+
|
|
6243
6388
|
/**
|
|
6244
6389
|
* Simple in-memory registry of component documentation metadata.
|
|
6245
6390
|
*
|
|
@@ -6247,21 +6392,46 @@ interface ComponentDocMeta {
|
|
|
6247
6392
|
* visual builders or configurators can discover them.
|
|
6248
6393
|
*/
|
|
6249
6394
|
declare class ComponentMetadataRegistry {
|
|
6395
|
+
private readonly i18n;
|
|
6396
|
+
constructor(i18n?: PraxisI18nService | null);
|
|
6250
6397
|
private readonly metadataMap;
|
|
6398
|
+
private readonly rawMetadataMap;
|
|
6399
|
+
private readonly editorialMetadataMap;
|
|
6400
|
+
private readonly editorialControlTypeIndex;
|
|
6401
|
+
private readonly legacyControlTypeIndex;
|
|
6251
6402
|
private readonly componentTypeAliases;
|
|
6252
6403
|
/** Register a component metadata entry. */
|
|
6253
6404
|
register(meta: ComponentDocMeta): void;
|
|
6405
|
+
/** Register an editorial descriptor that can later be resolved by controlType or metadata id. */
|
|
6406
|
+
registerEditorial(meta: ComponentMetadataEditorialDescriptor): void;
|
|
6254
6407
|
/** Retrieve metadata by its unique id. */
|
|
6255
6408
|
get(id: string): ComponentDocMeta | undefined;
|
|
6409
|
+
/** Retrieve an editorial descriptor by its id or controlType. */
|
|
6410
|
+
getEditorial(idOrControlType: string): ComponentMetadataEditorialDescriptor | undefined;
|
|
6256
6411
|
/** List all registered metadata entries. */
|
|
6257
6412
|
getAll(): ComponentDocMeta[];
|
|
6413
|
+
/** List all registered editorial descriptors. */
|
|
6414
|
+
getAllEditorial(): ComponentMetadataEditorialDescriptor[];
|
|
6415
|
+
/**
|
|
6416
|
+
* Resolve metadata editorial already localized for a component id, controlType or raw metadata.
|
|
6417
|
+
*/
|
|
6418
|
+
resolveEditorial(target: string | ComponentDocMeta | ComponentMetadataEditorialDescriptor, options?: ComponentEditorialResolveOptions): ResolvedComponentMetadataEditorialMeta | undefined;
|
|
6258
6419
|
/**
|
|
6259
6420
|
* Ensure friendly labels/descriptions for common inputs/outputs when missing.
|
|
6260
6421
|
* This helps diagrams/builders present consistent naming across components.
|
|
6261
6422
|
*/
|
|
6262
6423
|
private normalizeMeta;
|
|
6424
|
+
private normalizeEditorialDescriptor;
|
|
6425
|
+
private resolveEditorialDescriptor;
|
|
6426
|
+
private resolveComponentDocMeta;
|
|
6427
|
+
private findLegacyMetadata;
|
|
6428
|
+
private resolveEditorialBinding;
|
|
6429
|
+
private resolveTextValue;
|
|
6430
|
+
private resolveOptionalTextValue;
|
|
6431
|
+
private isEditorialDescriptor;
|
|
6432
|
+
private clonePortContract;
|
|
6263
6433
|
private normalizeComponentType;
|
|
6264
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentMetadataRegistry,
|
|
6434
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentMetadataRegistry, [{ optional: true; }]>;
|
|
6265
6435
|
static ɵprov: i0.ɵɵInjectableDeclaration<ComponentMetadataRegistry>;
|
|
6266
6436
|
}
|
|
6267
6437
|
|
|
@@ -6768,35 +6938,6 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
|
|
|
6768
6938
|
declare function provideRemoteGlobalConfig(url: string): Provider;
|
|
6769
6939
|
declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
|
|
6770
6940
|
|
|
6771
|
-
type PraxisLocale = string;
|
|
6772
|
-
interface PraxisTranslationParams {
|
|
6773
|
-
[key: string]: string | number | boolean | null | undefined;
|
|
6774
|
-
}
|
|
6775
|
-
interface PraxisI18nMessageDescriptor {
|
|
6776
|
-
key?: string;
|
|
6777
|
-
text?: string;
|
|
6778
|
-
params?: PraxisTranslationParams;
|
|
6779
|
-
}
|
|
6780
|
-
type PraxisTextValue = string | PraxisI18nMessageDescriptor;
|
|
6781
|
-
interface PraxisI18nDictionary {
|
|
6782
|
-
[key: string]: string;
|
|
6783
|
-
}
|
|
6784
|
-
interface PraxisI18nNamespaceDictionary {
|
|
6785
|
-
[locale: string]: PraxisI18nDictionary;
|
|
6786
|
-
}
|
|
6787
|
-
interface PraxisI18nNamespaceConfig {
|
|
6788
|
-
[namespace: string]: PraxisI18nNamespaceDictionary;
|
|
6789
|
-
}
|
|
6790
|
-
interface PraxisI18nConfig {
|
|
6791
|
-
locale?: PraxisLocale;
|
|
6792
|
-
fallbackLocale?: PraxisLocale;
|
|
6793
|
-
dictionaries?: Record<PraxisLocale, PraxisI18nDictionary>;
|
|
6794
|
-
namespaces?: PraxisI18nNamespaceConfig;
|
|
6795
|
-
}
|
|
6796
|
-
interface PraxisI18nTranslator {
|
|
6797
|
-
translate(key: string, params?: PraxisTranslationParams, fallback?: string): string;
|
|
6798
|
-
}
|
|
6799
|
-
|
|
6800
6941
|
declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
|
|
6801
6942
|
declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
|
|
6802
6943
|
|
|
@@ -6903,27 +7044,6 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
|
6903
7044
|
|
|
6904
7045
|
declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
6905
7046
|
|
|
6906
|
-
declare class PraxisI18nService {
|
|
6907
|
-
private readonly configs;
|
|
6908
|
-
private readonly translator;
|
|
6909
|
-
private readonly globalConfig;
|
|
6910
|
-
private readonly bootstrapOptions;
|
|
6911
|
-
constructor(configs: Array<Partial<PraxisI18nConfig>> | Partial<PraxisI18nConfig> | null, translator: PraxisI18nTranslator | null);
|
|
6912
|
-
getLocale(): string;
|
|
6913
|
-
getFallbackLocale(): string;
|
|
6914
|
-
t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
6915
|
-
resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
|
|
6916
|
-
formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
|
|
6917
|
-
formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
|
|
6918
|
-
formatCurrency(value: number, currency: string, options?: Intl.NumberFormatOptions): string;
|
|
6919
|
-
private getConfig;
|
|
6920
|
-
private lookup;
|
|
6921
|
-
private translateExternally;
|
|
6922
|
-
private stringifyInvalidValue;
|
|
6923
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisI18nService, [{ optional: true; }, { optional: true; }]>;
|
|
6924
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisI18nService>;
|
|
6925
|
-
}
|
|
6926
|
-
|
|
6927
7047
|
declare function interpolatePraxisTranslation(template: string, params?: PraxisTranslationParams): string;
|
|
6928
7048
|
declare function mergePraxisI18nConfigs(...configs: Array<Partial<PraxisI18nConfig> | null | undefined>): PraxisI18nConfig;
|
|
6929
7049
|
|
|
@@ -6937,6 +7057,209 @@ declare function resolveDefaultValuePresentationFormat(type: ValuePresentationTy
|
|
|
6937
7057
|
dateTime: DateTimeLocaleConfig;
|
|
6938
7058
|
}): string | undefined;
|
|
6939
7059
|
|
|
7060
|
+
type TransformPhase = 'link-propagation' | 'state-materialization';
|
|
7061
|
+
type TransformKind = 'identity' | 'constant' | 'pick-path' | 'template' | 'object-template' | 'array-template' | 'coalesce' | 'merge-objects' | 'select-case' | 'format-value' | 'aggregate-array' | 'group-top' | 'build-field-list';
|
|
7062
|
+
type TransformBindingSource = 'event' | 'payload' | 'state' | 'context' | 'constant';
|
|
7063
|
+
interface TransformBinding {
|
|
7064
|
+
source?: TransformBindingSource;
|
|
7065
|
+
path?: string;
|
|
7066
|
+
alias?: string;
|
|
7067
|
+
value?: unknown;
|
|
7068
|
+
optional?: boolean;
|
|
7069
|
+
}
|
|
7070
|
+
type TransformSemanticKind = 'event' | 'value' | 'selection' | 'collection' | 'query-context' | 'view-context' | 'config-fragment' | 'status' | 'diagnostic';
|
|
7071
|
+
interface TransformOutputHint {
|
|
7072
|
+
semanticKind?: TransformSemanticKind;
|
|
7073
|
+
cardinality?: 'one' | 'many' | 'stream';
|
|
7074
|
+
schemaId?: string;
|
|
7075
|
+
schemaRef?: string;
|
|
7076
|
+
materializationHint?: 'replace' | 'merge' | 'append';
|
|
7077
|
+
stableShape?: boolean;
|
|
7078
|
+
description?: string;
|
|
7079
|
+
}
|
|
7080
|
+
interface TransformStepCondition {
|
|
7081
|
+
source?: Exclude<TransformBindingSource, 'constant'>;
|
|
7082
|
+
path?: string;
|
|
7083
|
+
truthy?: boolean;
|
|
7084
|
+
equals?: unknown;
|
|
7085
|
+
notEquals?: unknown;
|
|
7086
|
+
notEmpty?: boolean;
|
|
7087
|
+
}
|
|
7088
|
+
interface TransformStep {
|
|
7089
|
+
id?: string;
|
|
7090
|
+
kind: TransformKind;
|
|
7091
|
+
phase: TransformPhase;
|
|
7092
|
+
label?: string;
|
|
7093
|
+
when?: TransformStepCondition;
|
|
7094
|
+
input?: TransformBinding;
|
|
7095
|
+
inputs?: TransformBinding[];
|
|
7096
|
+
config?: Record<string, unknown>;
|
|
7097
|
+
output?: TransformOutputHint;
|
|
7098
|
+
notes?: string;
|
|
7099
|
+
}
|
|
7100
|
+
interface TransformPipeline {
|
|
7101
|
+
id?: string;
|
|
7102
|
+
version?: '2.0';
|
|
7103
|
+
phase: TransformPhase;
|
|
7104
|
+
mode: 'single-value' | 'object-fragment' | 'collection';
|
|
7105
|
+
sourceBindings?: TransformBinding[];
|
|
7106
|
+
steps: TransformStep[];
|
|
7107
|
+
output?: TransformOutputHint;
|
|
7108
|
+
fallbackValue?: unknown;
|
|
7109
|
+
debugLabel?: string;
|
|
7110
|
+
}
|
|
7111
|
+
type TransformCatalogCategory = 'projection' | 'templating' | 'branching' | 'composition' | 'aggregation' | 'formatting';
|
|
7112
|
+
type TransformLegacyReplacement = 'map' | 'set' | 'derived.template' | 'derived.operator';
|
|
7113
|
+
interface TransformCatalogEntry {
|
|
7114
|
+
kind: TransformKind;
|
|
7115
|
+
phase: TransformPhase;
|
|
7116
|
+
label: string;
|
|
7117
|
+
description: string;
|
|
7118
|
+
category: TransformCatalogCategory;
|
|
7119
|
+
replacesCurrent?: TransformLegacyReplacement[];
|
|
7120
|
+
acceptsSources: TransformBindingSource[];
|
|
7121
|
+
emitsSemanticKinds?: TransformSemanticKind[];
|
|
7122
|
+
stableForPhase2A: boolean;
|
|
7123
|
+
}
|
|
7124
|
+
|
|
7125
|
+
interface ComponentPortEndpointRef {
|
|
7126
|
+
kind: 'component-port';
|
|
7127
|
+
ref: {
|
|
7128
|
+
widget: string;
|
|
7129
|
+
port: string;
|
|
7130
|
+
direction: 'input' | 'output';
|
|
7131
|
+
componentType?: string;
|
|
7132
|
+
bindingPath?: string;
|
|
7133
|
+
};
|
|
7134
|
+
}
|
|
7135
|
+
interface StateEndpointRef {
|
|
7136
|
+
kind: 'state';
|
|
7137
|
+
ref: {
|
|
7138
|
+
path: string;
|
|
7139
|
+
layer?: 'values' | 'derived' | 'transient';
|
|
7140
|
+
writable?: boolean;
|
|
7141
|
+
};
|
|
7142
|
+
}
|
|
7143
|
+
type EndpointRef = ComponentPortEndpointRef | StateEndpointRef;
|
|
7144
|
+
type LinkIntent = 'event-propagation' | 'state-write' | 'state-read' | 'command-dispatch' | 'selection-sync' | 'data-projection' | 'status-propagation';
|
|
7145
|
+
type LinkConditionKind = 'always' | 'expression' | 'equals' | 'present' | 'changed' | 'matches-port-kind';
|
|
7146
|
+
interface LinkCondition {
|
|
7147
|
+
kind: LinkConditionKind;
|
|
7148
|
+
expression?: string;
|
|
7149
|
+
path?: string;
|
|
7150
|
+
value?: unknown;
|
|
7151
|
+
negate?: boolean;
|
|
7152
|
+
description?: string;
|
|
7153
|
+
}
|
|
7154
|
+
interface LinkPolicy {
|
|
7155
|
+
debounceMs?: number;
|
|
7156
|
+
distinct?: boolean;
|
|
7157
|
+
distinctBy?: string;
|
|
7158
|
+
delivery?: 'sync' | 'microtask' | 'batched';
|
|
7159
|
+
missingValuePolicy?: 'propagate-undefined' | 'skip' | 'use-default';
|
|
7160
|
+
errorPolicy?: 'diagnostic' | 'drop' | 'halt-page';
|
|
7161
|
+
}
|
|
7162
|
+
interface LinkMetadata {
|
|
7163
|
+
label?: string;
|
|
7164
|
+
description?: string;
|
|
7165
|
+
tags?: string[];
|
|
7166
|
+
deprecated?: boolean;
|
|
7167
|
+
source?: 'legacy-widget-connection' | 'native-composition-link';
|
|
7168
|
+
traceKey?: string;
|
|
7169
|
+
}
|
|
7170
|
+
interface CompositionLink {
|
|
7171
|
+
id: string;
|
|
7172
|
+
from: EndpointRef;
|
|
7173
|
+
to: EndpointRef;
|
|
7174
|
+
intent: LinkIntent;
|
|
7175
|
+
transform?: TransformPipeline;
|
|
7176
|
+
conditions?: LinkCondition[];
|
|
7177
|
+
policy?: LinkPolicy;
|
|
7178
|
+
metadata?: LinkMetadata;
|
|
7179
|
+
}
|
|
7180
|
+
|
|
7181
|
+
type DiagnosticSeverity = 'info' | 'warning' | 'error' | 'fatal';
|
|
7182
|
+
type DiagnosticPhase = 'catalog-lint' | 'page-lint' | 'semantic-validation' | 'runtime-bootstrap' | 'runtime-dispatch' | 'runtime-transform' | 'runtime-state' | 'runtime-delivery' | 'runtime-diagnostic';
|
|
7183
|
+
type DiagnosticSubjectKind = 'page' | 'widget' | 'port' | 'state' | 'derived-state' | 'link' | 'transform-step' | 'runtime-event' | 'runtime-snapshot';
|
|
7184
|
+
interface DiagnosticSubjectRef {
|
|
7185
|
+
kind: DiagnosticSubjectKind;
|
|
7186
|
+
pageId?: string;
|
|
7187
|
+
widgetKey?: string;
|
|
7188
|
+
widgetType?: string;
|
|
7189
|
+
portId?: string;
|
|
7190
|
+
statePath?: string;
|
|
7191
|
+
linkId?: string;
|
|
7192
|
+
transformIndex?: number;
|
|
7193
|
+
eventId?: string;
|
|
7194
|
+
path?: string;
|
|
7195
|
+
label?: string;
|
|
7196
|
+
}
|
|
7197
|
+
type DiagnosticSource = 'catalog' | 'authoring' | 'semantic-validator' | 'runtime-engine' | 'runtime-adapter';
|
|
7198
|
+
interface DiagnosticRecord {
|
|
7199
|
+
id: string;
|
|
7200
|
+
code: string;
|
|
7201
|
+
severity: DiagnosticSeverity;
|
|
7202
|
+
phase: DiagnosticPhase;
|
|
7203
|
+
message: string;
|
|
7204
|
+
summary?: string;
|
|
7205
|
+
subject: DiagnosticSubjectRef;
|
|
7206
|
+
related?: DiagnosticSubjectRef[];
|
|
7207
|
+
details?: Record<string, unknown>;
|
|
7208
|
+
suggestion?: string;
|
|
7209
|
+
source: DiagnosticSource;
|
|
7210
|
+
blocking?: boolean;
|
|
7211
|
+
transient?: boolean;
|
|
7212
|
+
createdAt: string;
|
|
7213
|
+
}
|
|
7214
|
+
type RuntimeTracePhase = 'event-received' | 'source-resolved' | 'transform-start' | 'transform-step' | 'transform-complete' | 'state-read' | 'state-write' | 'target-delivery' | 'delivery-skipped' | 'diagnostic-emitted';
|
|
7215
|
+
interface RuntimePayloadSummary {
|
|
7216
|
+
shape?: 'scalar' | 'object' | 'array' | 'null' | 'unknown';
|
|
7217
|
+
keys?: string[];
|
|
7218
|
+
preview?: unknown;
|
|
7219
|
+
}
|
|
7220
|
+
interface RuntimeTraceEntry {
|
|
7221
|
+
id: string;
|
|
7222
|
+
traceId: string;
|
|
7223
|
+
sequence: number;
|
|
7224
|
+
timestamp: string;
|
|
7225
|
+
phase: RuntimeTracePhase;
|
|
7226
|
+
linkId?: string;
|
|
7227
|
+
subject: DiagnosticSubjectRef;
|
|
7228
|
+
payloadSummary?: RuntimePayloadSummary;
|
|
7229
|
+
inputSnapshot?: unknown;
|
|
7230
|
+
outputSnapshot?: unknown;
|
|
7231
|
+
details?: Record<string, unknown>;
|
|
7232
|
+
diagnostics?: string[];
|
|
7233
|
+
}
|
|
7234
|
+
type RuntimeLinkStatus = 'idle' | 'ready' | 'running' | 'delivered' | 'skipped' | 'failed';
|
|
7235
|
+
interface RuntimeLinkSnapshot {
|
|
7236
|
+
linkId: string;
|
|
7237
|
+
status: RuntimeLinkStatus;
|
|
7238
|
+
source: DiagnosticSubjectRef;
|
|
7239
|
+
target: DiagnosticSubjectRef;
|
|
7240
|
+
lastEventAt?: string;
|
|
7241
|
+
lastDispatchTraceId?: string;
|
|
7242
|
+
lastDeliveredValuePreview?: unknown;
|
|
7243
|
+
diagnostics: DiagnosticRecord[];
|
|
7244
|
+
}
|
|
7245
|
+
interface RuntimeStateSnapshot {
|
|
7246
|
+
primaryValues: Record<string, unknown>;
|
|
7247
|
+
derivedValues: Record<string, unknown>;
|
|
7248
|
+
transientValues?: Record<string, unknown>;
|
|
7249
|
+
changedPaths?: string[];
|
|
7250
|
+
diagnostics: DiagnosticRecord[];
|
|
7251
|
+
}
|
|
7252
|
+
type RuntimeSnapshotStatus = 'booting' | 'ready' | 'degraded' | 'failed';
|
|
7253
|
+
interface RuntimeSnapshot {
|
|
7254
|
+
pageId?: string;
|
|
7255
|
+
status: RuntimeSnapshotStatus;
|
|
7256
|
+
generatedAt: string;
|
|
7257
|
+
links: RuntimeLinkSnapshot[];
|
|
7258
|
+
state: RuntimeStateSnapshot;
|
|
7259
|
+
diagnostics: DiagnosticRecord[];
|
|
7260
|
+
traceTail: RuntimeTraceEntry[];
|
|
7261
|
+
}
|
|
7262
|
+
|
|
6940
7263
|
interface MaterialTimeTrackShift {
|
|
6941
7264
|
id?: string;
|
|
6942
7265
|
label?: string;
|
|
@@ -8507,6 +8830,49 @@ interface WidgetPageLayout {
|
|
|
8507
8830
|
xl?: number;
|
|
8508
8831
|
};
|
|
8509
8832
|
}
|
|
8833
|
+
interface WidgetPageCanvasConstraints {
|
|
8834
|
+
minColSpan?: number;
|
|
8835
|
+
minRowSpan?: number;
|
|
8836
|
+
maxColSpan?: number;
|
|
8837
|
+
maxRowSpan?: number;
|
|
8838
|
+
lockPosition?: boolean;
|
|
8839
|
+
lockSize?: boolean;
|
|
8840
|
+
}
|
|
8841
|
+
interface WidgetPageCanvasItem {
|
|
8842
|
+
col: number;
|
|
8843
|
+
row: number;
|
|
8844
|
+
colSpan: number;
|
|
8845
|
+
rowSpan: number;
|
|
8846
|
+
zIndex?: number;
|
|
8847
|
+
constraints?: WidgetPageCanvasConstraints;
|
|
8848
|
+
}
|
|
8849
|
+
type WidgetPageCanvasCollisionPolicy = 'block' | 'swap';
|
|
8850
|
+
interface WidgetPageCanvasLayout {
|
|
8851
|
+
mode: 'grid';
|
|
8852
|
+
columns: number;
|
|
8853
|
+
rowUnit?: string;
|
|
8854
|
+
gap?: string;
|
|
8855
|
+
autoRows?: 'fixed' | 'content';
|
|
8856
|
+
collisionPolicy?: WidgetPageCanvasCollisionPolicy;
|
|
8857
|
+
items: Record<string, WidgetPageCanvasItem>;
|
|
8858
|
+
}
|
|
8859
|
+
interface WidgetPageCanvasItemOverride {
|
|
8860
|
+
col?: number;
|
|
8861
|
+
row?: number;
|
|
8862
|
+
colSpan?: number;
|
|
8863
|
+
rowSpan?: number;
|
|
8864
|
+
hidden?: boolean;
|
|
8865
|
+
zIndex?: number;
|
|
8866
|
+
constraints?: WidgetPageCanvasConstraints;
|
|
8867
|
+
}
|
|
8868
|
+
interface WidgetPageCanvasLayoutVariant {
|
|
8869
|
+
columns?: number;
|
|
8870
|
+
rowUnit?: string;
|
|
8871
|
+
gap?: string;
|
|
8872
|
+
autoRows?: 'fixed' | 'content';
|
|
8873
|
+
collisionPolicy?: WidgetPageCanvasCollisionPolicy;
|
|
8874
|
+
items?: Record<string, WidgetPageCanvasItemOverride>;
|
|
8875
|
+
}
|
|
8510
8876
|
interface WidgetPageWidgetLayoutOverride {
|
|
8511
8877
|
className?: string;
|
|
8512
8878
|
span?: number;
|
|
@@ -8548,6 +8914,7 @@ interface WidgetPageGroupingOverride {
|
|
|
8548
8914
|
}
|
|
8549
8915
|
interface WidgetPageLayoutVariant {
|
|
8550
8916
|
layout?: WidgetPageLayout;
|
|
8917
|
+
canvas?: WidgetPageCanvasLayoutVariant;
|
|
8551
8918
|
groupingOverrides?: WidgetPageGroupingOverride[];
|
|
8552
8919
|
widgetOverrides?: Record<string, WidgetPageWidgetLayoutOverride>;
|
|
8553
8920
|
}
|
|
@@ -8556,6 +8923,11 @@ interface WidgetPageDeviceLayouts {
|
|
|
8556
8923
|
tablet?: WidgetPageLayoutVariant;
|
|
8557
8924
|
mobile?: WidgetPageLayoutVariant;
|
|
8558
8925
|
}
|
|
8926
|
+
/**
|
|
8927
|
+
* Canonical slot occupancy for preset-driven pages.
|
|
8928
|
+
* Maps widget keys to semantic slot ids from the active layout preset.
|
|
8929
|
+
*/
|
|
8930
|
+
type WidgetPageSlotAssignments = Record<string, string>;
|
|
8559
8931
|
interface WidgetPageDefinition {
|
|
8560
8932
|
widgets: WidgetInstance[];
|
|
8561
8933
|
connections?: WidgetConnection[];
|
|
@@ -8565,54 +8937,22 @@ interface WidgetPageDefinition {
|
|
|
8565
8937
|
context?: Record<string, any>;
|
|
8566
8938
|
/** Optional layout configuration for the widget grid */
|
|
8567
8939
|
layout?: WidgetPageLayout;
|
|
8940
|
+
/** Optional canonical spatial canvas rendered over CSS Grid. */
|
|
8941
|
+
canvas?: WidgetPageCanvasLayout;
|
|
8568
8942
|
/** Optional canonical preset id that describes the structural intent of the page. */
|
|
8569
8943
|
layoutPreset?: string;
|
|
8570
8944
|
/** Optional preset-specific options consumed by builders and future runtimes. */
|
|
8571
8945
|
layoutPresetOptions?: Record<string, any>;
|
|
8572
8946
|
/** Optional semantic grouping model for sections, tabs, hero areas and rails. */
|
|
8573
8947
|
grouping?: WidgetPageGroupingDefinition[];
|
|
8948
|
+
/** Optional canonical semantic slot occupancy for preset-driven pages. */
|
|
8949
|
+
slotAssignments?: WidgetPageSlotAssignments;
|
|
8574
8950
|
/** Optional device-specific layout variants. */
|
|
8575
8951
|
deviceLayouts?: WidgetPageDeviceLayouts;
|
|
8576
8952
|
/** Optional theme preset id for shell/chart/density defaults. */
|
|
8577
8953
|
themePreset?: string;
|
|
8578
8954
|
}
|
|
8579
8955
|
|
|
8580
|
-
interface GridItemLayout {
|
|
8581
|
-
/** 1-based column start */
|
|
8582
|
-
col: number;
|
|
8583
|
-
/** number of columns to span */
|
|
8584
|
-
colSpan: number;
|
|
8585
|
-
/** 1-based row start */
|
|
8586
|
-
row: number;
|
|
8587
|
-
/** number of rows to span */
|
|
8588
|
-
rowSpan: number;
|
|
8589
|
-
}
|
|
8590
|
-
interface GridWidgetInstance {
|
|
8591
|
-
key: string;
|
|
8592
|
-
definition: WidgetDefinition;
|
|
8593
|
-
layout: GridItemLayout;
|
|
8594
|
-
className?: string;
|
|
8595
|
-
shell?: WidgetShellConfig;
|
|
8596
|
-
}
|
|
8597
|
-
interface GridPageDefinition {
|
|
8598
|
-
widgets: GridWidgetInstance[];
|
|
8599
|
-
connections?: WidgetConnection[];
|
|
8600
|
-
/** Optional declarative page state shared with builders and future runtime bridges. */
|
|
8601
|
-
state?: WidgetPageStateInput;
|
|
8602
|
-
context?: Record<string, any>;
|
|
8603
|
-
layoutPreset?: string;
|
|
8604
|
-
layoutPresetOptions?: Record<string, any>;
|
|
8605
|
-
grouping?: WidgetPageGroupingDefinition[];
|
|
8606
|
-
deviceLayouts?: WidgetPageDeviceLayouts;
|
|
8607
|
-
themePreset?: string;
|
|
8608
|
-
/** Grid options */
|
|
8609
|
-
options?: {
|
|
8610
|
-
cols?: number;
|
|
8611
|
-
rowHeight?: number;
|
|
8612
|
-
gap?: number;
|
|
8613
|
-
};
|
|
8614
|
-
}
|
|
8615
|
-
|
|
8616
8956
|
/**
|
|
8617
8957
|
* Identity/scope information for multi-tenant persistence.
|
|
8618
8958
|
*/
|
|
@@ -8632,14 +8972,14 @@ interface PageIdentity {
|
|
|
8632
8972
|
* Minimal persisted widget instance record with a stable unique id.
|
|
8633
8973
|
* The `key` continues to serve as logical name within the page.
|
|
8634
8974
|
*/
|
|
8635
|
-
interface PersistedWidgetInstance extends
|
|
8975
|
+
interface PersistedWidgetInstance extends WidgetInstance {
|
|
8636
8976
|
/** Stable unique id for the widget instance (uuid) */
|
|
8637
8977
|
id: string;
|
|
8638
8978
|
}
|
|
8639
8979
|
/**
|
|
8640
8980
|
* Page definition with widget-level ids added. Use for persistence payloads.
|
|
8641
8981
|
*/
|
|
8642
|
-
interface
|
|
8982
|
+
interface PersistedPageDefinitionWithIds extends Omit<WidgetPageDefinition, 'widgets'> {
|
|
8643
8983
|
widgets: PersistedWidgetInstance[];
|
|
8644
8984
|
}
|
|
8645
8985
|
/**
|
|
@@ -8662,7 +9002,7 @@ interface PersistedPageConfig {
|
|
|
8662
9002
|
/** Lifecycle status */
|
|
8663
9003
|
status: 'draft' | 'published' | 'archived';
|
|
8664
9004
|
/** Actual page structure with widget ids */
|
|
8665
|
-
page:
|
|
9005
|
+
page: PersistedPageDefinitionWithIds;
|
|
8666
9006
|
/** Audit */
|
|
8667
9007
|
owner?: string;
|
|
8668
9008
|
createdAt: string;
|
|
@@ -8678,15 +9018,15 @@ declare function buildPageKey(identity: PageIdentity): string;
|
|
|
8678
9018
|
* Ensure that each widget has a stable id. If missing, assigns a new one.
|
|
8679
9019
|
* Returns the new page definition (immutable) and an index by key/id.
|
|
8680
9020
|
*/
|
|
8681
|
-
declare function ensurePageIds(page:
|
|
8682
|
-
page:
|
|
9021
|
+
declare function ensurePageIds(page: WidgetPageDefinition): {
|
|
9022
|
+
page: PersistedPageDefinitionWithIds;
|
|
8683
9023
|
byKey: Map<string, PersistedWidgetInstance>;
|
|
8684
9024
|
byId: Map<string, PersistedWidgetInstance>;
|
|
8685
9025
|
};
|
|
8686
9026
|
/**
|
|
8687
9027
|
* Create a persisted page record from an in-memory page definition and identity.
|
|
8688
9028
|
*/
|
|
8689
|
-
declare function createPersistedPage(identity: PageIdentity, page:
|
|
9029
|
+
declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDefinition, opts?: {
|
|
8690
9030
|
id?: string;
|
|
8691
9031
|
title?: string;
|
|
8692
9032
|
description?: string;
|
|
@@ -9315,6 +9655,31 @@ interface ComponentMergePatch<TConfig extends Record<string, unknown> = Record<s
|
|
|
9315
9655
|
|
|
9316
9656
|
declare const DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK: ComponentContextPack;
|
|
9317
9657
|
|
|
9658
|
+
interface WidgetEventPathSegment {
|
|
9659
|
+
kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
|
|
9660
|
+
id?: string;
|
|
9661
|
+
index?: number;
|
|
9662
|
+
}
|
|
9663
|
+
interface WidgetEventEnvelope {
|
|
9664
|
+
/** Optional top-level page widget key that owns the event tree. */
|
|
9665
|
+
ownerWidgetKey?: string;
|
|
9666
|
+
/** Registered component id of the emitting widget/component instance. */
|
|
9667
|
+
sourceComponentId: string;
|
|
9668
|
+
/** Optional author-defined key for nested widget instances inside a container/composite. */
|
|
9669
|
+
sourceChildWidgetKey?: string;
|
|
9670
|
+
output?: string;
|
|
9671
|
+
payload?: any;
|
|
9672
|
+
path?: WidgetEventPathSegment[];
|
|
9673
|
+
}
|
|
9674
|
+
type WidgetResolutionPhase = 'ready' | 'metadata-missing' | 'create-error' | 'validation-error' | 'bind-error';
|
|
9675
|
+
interface WidgetResolutionDiagnostic {
|
|
9676
|
+
componentId?: string;
|
|
9677
|
+
childWidgetKey?: string;
|
|
9678
|
+
phase: WidgetResolutionPhase;
|
|
9679
|
+
message?: string;
|
|
9680
|
+
error?: unknown;
|
|
9681
|
+
}
|
|
9682
|
+
|
|
9318
9683
|
type EditorialContentFormat = 'plain' | 'markdown';
|
|
9319
9684
|
interface EditorialLinkDefinition {
|
|
9320
9685
|
label: string;
|
|
@@ -9508,16 +9873,14 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
9508
9873
|
private readonly vcRef;
|
|
9509
9874
|
private readonly registry;
|
|
9510
9875
|
widget?: WidgetDefinition | string;
|
|
9876
|
+
ownerWidgetKey?: string | null;
|
|
9511
9877
|
context?: Record<string, any> | null;
|
|
9512
9878
|
/** When true, invalid inputs/outputs cause errors; otherwise only warnings. */
|
|
9513
9879
|
strictValidation: boolean;
|
|
9514
9880
|
/** When true, auto-subscribes to all outputs declared in metadata if outputs map is empty. Useful in editor/runtime to propagate events without explicit mapping. */
|
|
9515
9881
|
autoWireOutputs: boolean;
|
|
9516
|
-
widgetEvent: EventEmitter<
|
|
9517
|
-
|
|
9518
|
-
output?: string;
|
|
9519
|
-
payload?: any;
|
|
9520
|
-
}>;
|
|
9882
|
+
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
9883
|
+
widgetDiagnostic: EventEmitter<WidgetResolutionDiagnostic>;
|
|
9521
9884
|
private compRef?;
|
|
9522
9885
|
private currentId?;
|
|
9523
9886
|
private outputSubs;
|
|
@@ -9533,11 +9896,13 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
9533
9896
|
private bindInputs;
|
|
9534
9897
|
private bindOutputs;
|
|
9535
9898
|
private resolveValue;
|
|
9899
|
+
private get widgetDefinition();
|
|
9900
|
+
private emitDiagnostic;
|
|
9536
9901
|
private lookup;
|
|
9537
9902
|
private validateAgainstMetadata;
|
|
9538
9903
|
private coercePrimitive;
|
|
9539
9904
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetLoaderDirective, never>;
|
|
9540
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicWidgetLoaderDirective, "[dynamicWidgetLoader]", ["dynamicWidgetLoader"], { "widget": { "alias": "dynamicWidgetLoader"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "autoWireOutputs": { "alias": "autoWireOutputs"; "required": false; }; }, { "widgetEvent": "widgetEvent"; }, never, never, true, never>;
|
|
9905
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicWidgetLoaderDirective, "[dynamicWidgetLoader]", ["dynamicWidgetLoader"], { "widget": { "alias": "dynamicWidgetLoader"; "required": false; }; "ownerWidgetKey": { "alias": "ownerWidgetKey"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "autoWireOutputs": { "alias": "autoWireOutputs"; "required": false; }; }, { "widgetEvent": "widgetEvent"; "widgetDiagnostic": "widgetDiagnostic"; }, never, never, true, never>;
|
|
9541
9906
|
}
|
|
9542
9907
|
|
|
9543
9908
|
type ActionList = WidgetShellAction[];
|
|
@@ -9546,7 +9911,11 @@ declare const BUILTIN_SHELL_PRESETS: Record<string, NonNullable<Appearance>>;
|
|
|
9546
9911
|
declare class WidgetShellComponent implements OnChanges {
|
|
9547
9912
|
shell?: WidgetShellConfig | null;
|
|
9548
9913
|
context?: Record<string, any> | null;
|
|
9914
|
+
dragSurfaceEnabled: boolean;
|
|
9915
|
+
dragSurfaceLabel: string | null;
|
|
9549
9916
|
action: EventEmitter<WidgetShellActionEvent>;
|
|
9917
|
+
dragSurfacePointerDown: EventEmitter<PointerEvent>;
|
|
9918
|
+
dragSurfaceKeydown: EventEmitter<KeyboardEvent>;
|
|
9550
9919
|
loader?: DynamicWidgetLoaderDirective;
|
|
9551
9920
|
get appearance(): WidgetShellConfig['appearance'];
|
|
9552
9921
|
collapsed: boolean;
|
|
@@ -9561,6 +9930,8 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
9561
9930
|
private get maxHeaderActions();
|
|
9562
9931
|
get windowActions(): ActionList;
|
|
9563
9932
|
onAction(action: WidgetShellAction, ev: MouseEvent): void;
|
|
9933
|
+
onHeaderPointerDown(event: PointerEvent): void;
|
|
9934
|
+
onHeaderKeydown(event: KeyboardEvent): void;
|
|
9564
9935
|
stopIfExpanded(ev: MouseEvent): void;
|
|
9565
9936
|
closeOverlay(): void;
|
|
9566
9937
|
private handleWindowAction;
|
|
@@ -9568,8 +9939,9 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
9568
9939
|
private isVisible;
|
|
9569
9940
|
private resolvePresetAppearance;
|
|
9570
9941
|
private mergeAppearance;
|
|
9942
|
+
private isInteractiveHeaderTarget;
|
|
9571
9943
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetShellComponent, never>;
|
|
9572
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetShellComponent, "praxis-widget-shell", never, { "shell": { "alias": "shell"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, { "action": "action"; }, ["loader"], ["*"], true, never>;
|
|
9944
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetShellComponent, "praxis-widget-shell", never, { "shell": { "alias": "shell"; "required": false; }; "context": { "alias": "context"; "required": false; }; "dragSurfaceEnabled": { "alias": "dragSurfaceEnabled"; "required": false; }; "dragSurfaceLabel": { "alias": "dragSurfaceLabel"; "required": false; }; }, { "action": "action"; "dragSurfacePointerDown": "dragSurfacePointerDown"; "dragSurfaceKeydown": "dragSurfaceKeydown"; }, ["loader"], ["*"], true, never>;
|
|
9573
9945
|
}
|
|
9574
9946
|
|
|
9575
9947
|
declare const BUILTIN_PAGE_LAYOUT_PRESETS: Record<string, WidgetPageLayoutPresetDefinition>;
|
|
@@ -9583,7 +9955,7 @@ declare class ConnectionManagerService {
|
|
|
9583
9955
|
/** Find connections triggered by a state-path update. */
|
|
9584
9956
|
findStateMatches(connections: WidgetConnection[] | undefined, statePath: string): WidgetConnection[];
|
|
9585
9957
|
/** Apply a single match into widgets array, supporting dot-path in target input. Returns a new array. */
|
|
9586
|
-
applyMatch(widgets:
|
|
9958
|
+
applyMatch(widgets: WidgetInstance[], match: WidgetConnection & {
|
|
9587
9959
|
to: {
|
|
9588
9960
|
widget: string;
|
|
9589
9961
|
input: string;
|
|
@@ -9591,7 +9963,7 @@ declare class ConnectionManagerService {
|
|
|
9591
9963
|
};
|
|
9592
9964
|
}, event: {
|
|
9593
9965
|
payload?: any;
|
|
9594
|
-
}):
|
|
9966
|
+
}): WidgetInstance[];
|
|
9595
9967
|
resolveConnectionValue(match: Pick<WidgetConnection, 'map' | 'set'>, event: {
|
|
9596
9968
|
payload?: any;
|
|
9597
9969
|
} | Record<string, any>): any;
|
|
@@ -9647,9 +10019,230 @@ declare class WidgetPageStateRuntimeService {
|
|
|
9647
10019
|
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetPageStateRuntimeService>;
|
|
9648
10020
|
}
|
|
9649
10021
|
|
|
10022
|
+
declare function adaptWidgetConnectionToCompositionLink(connection: WidgetConnection): CompositionLink;
|
|
10023
|
+
declare function adaptWidgetConnectionsToCompositionLinks(connections: WidgetConnection[] | undefined): CompositionLink[];
|
|
10024
|
+
|
|
10025
|
+
interface WidgetPageCompositionState {
|
|
10026
|
+
primaryValues: Record<string, unknown>;
|
|
10027
|
+
schema: Record<string, WidgetStateNode>;
|
|
10028
|
+
/** Definitions carried forward for a later derived-state materialization phase. */
|
|
10029
|
+
derivedDefinitions: Record<string, WidgetDerivedStateNode>;
|
|
10030
|
+
}
|
|
10031
|
+
interface WidgetPageComposition {
|
|
10032
|
+
widgetOrder: string[];
|
|
10033
|
+
widgetsByKey: Record<string, WidgetInstance>;
|
|
10034
|
+
links: CompositionLink[];
|
|
10035
|
+
state: WidgetPageCompositionState;
|
|
10036
|
+
context: Record<string, unknown>;
|
|
10037
|
+
}
|
|
10038
|
+
|
|
10039
|
+
interface CompositionRuntimeStoreInit {
|
|
10040
|
+
pageId?: string;
|
|
10041
|
+
status?: RuntimeSnapshotStatus;
|
|
10042
|
+
generatedAt?: string;
|
|
10043
|
+
links?: RuntimeLinkSnapshot[];
|
|
10044
|
+
state?: Partial<RuntimeStateSnapshot>;
|
|
10045
|
+
diagnostics?: DiagnosticRecord[];
|
|
10046
|
+
traceTail?: RuntimeTraceEntry[];
|
|
10047
|
+
}
|
|
10048
|
+
interface RuntimeLinkSnapshotPatch {
|
|
10049
|
+
linkId: string;
|
|
10050
|
+
status?: RuntimeLinkStatus;
|
|
10051
|
+
lastEventAt?: string;
|
|
10052
|
+
lastDispatchTraceId?: string;
|
|
10053
|
+
lastDeliveredValuePreview?: unknown;
|
|
10054
|
+
diagnostics?: DiagnosticRecord[];
|
|
10055
|
+
}
|
|
10056
|
+
interface CompositionRuntimeStoreCycleUpdate {
|
|
10057
|
+
generatedAt?: string;
|
|
10058
|
+
status?: RuntimeSnapshotStatus;
|
|
10059
|
+
stateSnapshot?: RuntimeStateSnapshot;
|
|
10060
|
+
primaryValuesPatch?: Record<string, unknown>;
|
|
10061
|
+
derivedValuesPatch?: Record<string, unknown>;
|
|
10062
|
+
transientValuesPatch?: Record<string, unknown>;
|
|
10063
|
+
changedPaths?: string[];
|
|
10064
|
+
linkPatches?: RuntimeLinkSnapshotPatch[];
|
|
10065
|
+
diagnostics?: DiagnosticRecord[];
|
|
10066
|
+
traceTail?: RuntimeTraceEntry[];
|
|
10067
|
+
}
|
|
10068
|
+
type CompositionRuntimeSnapshotListener = (snapshot: RuntimeSnapshot) => void;
|
|
10069
|
+
declare class CompositionRuntimeStore {
|
|
10070
|
+
private snapshot;
|
|
10071
|
+
private readonly listeners;
|
|
10072
|
+
constructor(init?: CompositionRuntimeStoreInit);
|
|
10073
|
+
getSnapshot(): RuntimeSnapshot;
|
|
10074
|
+
subscribe(listener: CompositionRuntimeSnapshotListener): () => void;
|
|
10075
|
+
reset(init?: CompositionRuntimeStoreInit): RuntimeSnapshot;
|
|
10076
|
+
applyCycle(update: CompositionRuntimeStoreCycleUpdate): RuntimeSnapshot;
|
|
10077
|
+
private emit;
|
|
10078
|
+
}
|
|
10079
|
+
|
|
10080
|
+
interface TransformRuntimeContext {
|
|
10081
|
+
event?: unknown;
|
|
10082
|
+
payload?: unknown;
|
|
10083
|
+
state?: Record<string, unknown>;
|
|
10084
|
+
derived?: Record<string, unknown>;
|
|
10085
|
+
transient?: Record<string, unknown>;
|
|
10086
|
+
context?: Record<string, unknown>;
|
|
10087
|
+
}
|
|
10088
|
+
|
|
10089
|
+
interface LinkExecutorPathAccessor {
|
|
10090
|
+
extractByPath(source: unknown, path: string): unknown;
|
|
10091
|
+
setValueAtPath(source: unknown, path: string, value: unknown): any;
|
|
10092
|
+
}
|
|
10093
|
+
interface LinkExecutorTransformRunner {
|
|
10094
|
+
executePipeline(pipeline: CompositionLink['transform'] extends infer T ? Exclude<T, undefined> : never, runtime: TransformRuntimeContext): {
|
|
10095
|
+
value: unknown;
|
|
10096
|
+
diagnostics: DiagnosticRecord[];
|
|
10097
|
+
failed: boolean;
|
|
10098
|
+
};
|
|
10099
|
+
}
|
|
10100
|
+
interface LinkExecutionContext {
|
|
10101
|
+
snapshot: Pick<RuntimeSnapshot, 'state'> | {
|
|
10102
|
+
state: RuntimeStateSnapshot;
|
|
10103
|
+
};
|
|
10104
|
+
event?: unknown;
|
|
10105
|
+
payload?: unknown;
|
|
10106
|
+
context?: Record<string, unknown>;
|
|
10107
|
+
now?: string;
|
|
10108
|
+
lastDeliveredValue?: unknown;
|
|
10109
|
+
lastDeliveredAt?: string;
|
|
10110
|
+
}
|
|
10111
|
+
interface LinkExecutionDelivery {
|
|
10112
|
+
kind: 'state' | 'component-port';
|
|
10113
|
+
value: unknown;
|
|
10114
|
+
statePath?: string;
|
|
10115
|
+
stateLayer?: 'values' | 'derived' | 'transient';
|
|
10116
|
+
widgetKey?: string;
|
|
10117
|
+
portId?: string;
|
|
10118
|
+
bindingPath?: string;
|
|
10119
|
+
}
|
|
10120
|
+
interface LinkExecutionResult {
|
|
10121
|
+
status: 'delivered' | 'skipped' | 'failed';
|
|
10122
|
+
value: unknown;
|
|
10123
|
+
diagnostics: DiagnosticRecord[];
|
|
10124
|
+
snapshot: RuntimeStateSnapshot;
|
|
10125
|
+
delivery?: LinkExecutionDelivery;
|
|
10126
|
+
skippedReason?: string;
|
|
10127
|
+
}
|
|
10128
|
+
declare class LinkExecutorService {
|
|
10129
|
+
private readonly transforms;
|
|
10130
|
+
private readonly pathAccessor;
|
|
10131
|
+
constructor(transforms?: LinkExecutorTransformRunner, pathAccessor?: LinkExecutorPathAccessor);
|
|
10132
|
+
executeLink(link: CompositionLink, context: LinkExecutionContext): LinkExecutionResult;
|
|
10133
|
+
private resolveSourceValue;
|
|
10134
|
+
private matchesConditions;
|
|
10135
|
+
private evaluateCondition;
|
|
10136
|
+
private evaluateExpression;
|
|
10137
|
+
private resolveExpressionOperand;
|
|
10138
|
+
private readConditionValue;
|
|
10139
|
+
private matchesPortKind;
|
|
10140
|
+
private buildTransformContext;
|
|
10141
|
+
private resolveMissingValuePolicy;
|
|
10142
|
+
private resolvePolicySkip;
|
|
10143
|
+
private deliverValue;
|
|
10144
|
+
private readStatePath;
|
|
10145
|
+
private buildEffectiveState;
|
|
10146
|
+
private createDiagnostic;
|
|
10147
|
+
private isEmptyValue;
|
|
10148
|
+
private isEqual;
|
|
10149
|
+
private cloneSnapshot;
|
|
10150
|
+
private clone;
|
|
10151
|
+
}
|
|
10152
|
+
|
|
10153
|
+
interface RuntimeTraceEntryInput {
|
|
10154
|
+
timestamp: string;
|
|
10155
|
+
phase: RuntimeTracePhase;
|
|
10156
|
+
subject: DiagnosticSubjectRef;
|
|
10157
|
+
linkId?: string;
|
|
10158
|
+
payload?: unknown;
|
|
10159
|
+
inputSnapshot?: unknown;
|
|
10160
|
+
outputSnapshot?: unknown;
|
|
10161
|
+
details?: Record<string, unknown>;
|
|
10162
|
+
diagnostics?: string[];
|
|
10163
|
+
}
|
|
10164
|
+
declare class RuntimeTraceService {
|
|
10165
|
+
createEntry(traceId: string, sequence: number, input: RuntimeTraceEntryInput): RuntimeTraceEntry;
|
|
10166
|
+
summarizePayload(payload: unknown): RuntimePayloadSummary | undefined;
|
|
10167
|
+
private clone;
|
|
10168
|
+
}
|
|
10169
|
+
|
|
10170
|
+
type CompositionRuntimeDefinition = WidgetPageComposition;
|
|
10171
|
+
interface CompositionDispatchEvent {
|
|
10172
|
+
eventId: string;
|
|
10173
|
+
source: EndpointRef;
|
|
10174
|
+
payload?: unknown;
|
|
10175
|
+
occurredAt?: string;
|
|
10176
|
+
}
|
|
10177
|
+
interface CompositionRuntimeCycleResult {
|
|
10178
|
+
cycleId: string;
|
|
10179
|
+
matchedLinkIds: string[];
|
|
10180
|
+
snapshot: RuntimeSnapshot;
|
|
10181
|
+
diagnostics: DiagnosticRecord[];
|
|
10182
|
+
}
|
|
10183
|
+
interface CompositionRuntimeEngineOptions {
|
|
10184
|
+
now?: () => string;
|
|
10185
|
+
store?: CompositionRuntimeStore;
|
|
10186
|
+
linkExecutor?: LinkExecutorService;
|
|
10187
|
+
stateRuntime?: WidgetPageStateRuntimeService;
|
|
10188
|
+
traceService?: RuntimeTraceService;
|
|
10189
|
+
}
|
|
10190
|
+
interface CompositionStateWidgetPreviewOptions {
|
|
10191
|
+
widgets?: WidgetInstance[];
|
|
10192
|
+
state?: RuntimeStateSnapshot;
|
|
10193
|
+
now?: string;
|
|
10194
|
+
}
|
|
10195
|
+
interface CompositionStateWidgetPreviewResult {
|
|
10196
|
+
widgets: WidgetInstance[];
|
|
10197
|
+
matchedLinkIds: string[];
|
|
10198
|
+
diagnostics: DiagnosticRecord[];
|
|
10199
|
+
}
|
|
10200
|
+
declare class CompositionRuntimeEngine {
|
|
10201
|
+
private readonly store;
|
|
10202
|
+
private readonly linkExecutor;
|
|
10203
|
+
private readonly stateRuntime;
|
|
10204
|
+
private readonly traceService;
|
|
10205
|
+
private readonly pathAccessor;
|
|
10206
|
+
private definition;
|
|
10207
|
+
private readonly now;
|
|
10208
|
+
constructor(options?: CompositionRuntimeEngineOptions);
|
|
10209
|
+
bootstrap(definition: CompositionRuntimeDefinition): RuntimeSnapshot;
|
|
10210
|
+
dispatch(event: CompositionDispatchEvent): CompositionRuntimeCycleResult;
|
|
10211
|
+
getSnapshot(): RuntimeSnapshot;
|
|
10212
|
+
getStore(): CompositionRuntimeStore;
|
|
10213
|
+
projectStateWidgetInputs(definition: CompositionRuntimeDefinition, options?: CompositionStateWidgetPreviewOptions): CompositionStateWidgetPreviewResult;
|
|
10214
|
+
private createLinkSnapshot;
|
|
10215
|
+
private applyBootstrapHydration;
|
|
10216
|
+
private materializeDerivedState;
|
|
10217
|
+
private createDerivedDiagnostic;
|
|
10218
|
+
private clonePreviewWidgets;
|
|
10219
|
+
private cloneJson;
|
|
10220
|
+
}
|
|
10221
|
+
|
|
10222
|
+
interface CompositionRuntimeFacadeOptions {
|
|
10223
|
+
engine?: CompositionRuntimeEngine;
|
|
10224
|
+
engineOptions?: CompositionRuntimeEngineOptions;
|
|
10225
|
+
}
|
|
10226
|
+
declare class CompositionRuntimeFacade {
|
|
10227
|
+
private readonly engine;
|
|
10228
|
+
private readonly snapshotSubject;
|
|
10229
|
+
private readonly unsubscribeFromStore;
|
|
10230
|
+
readonly snapshot$: Observable<RuntimeSnapshot>;
|
|
10231
|
+
readonly diagnostics$: Observable<DiagnosticRecord[]>;
|
|
10232
|
+
readonly traceTail$: Observable<RuntimeTraceEntry[]>;
|
|
10233
|
+
constructor(options?: CompositionRuntimeFacadeOptions);
|
|
10234
|
+
bootstrap(definition: CompositionRuntimeDefinition): RuntimeSnapshot;
|
|
10235
|
+
dispatch(event: CompositionDispatchEvent): CompositionRuntimeCycleResult;
|
|
10236
|
+
projectStateWidgetInputs(definition: CompositionRuntimeDefinition, options?: CompositionStateWidgetPreviewOptions): CompositionStateWidgetPreviewResult;
|
|
10237
|
+
getSnapshot(): RuntimeSnapshot;
|
|
10238
|
+
getEngine(): CompositionRuntimeEngine;
|
|
10239
|
+
destroy(): void;
|
|
10240
|
+
}
|
|
10241
|
+
|
|
9650
10242
|
interface RenderedWidgetInstance extends WidgetInstance {
|
|
9651
10243
|
renderClassName?: string;
|
|
9652
10244
|
renderSpan?: number;
|
|
10245
|
+
renderCanvasItem?: WidgetPageCanvasItem;
|
|
9653
10246
|
}
|
|
9654
10247
|
interface RenderedTabsGroup {
|
|
9655
10248
|
id: string;
|
|
@@ -9666,12 +10259,18 @@ interface RenderedWidgetGroup {
|
|
|
9666
10259
|
widgets: RenderedWidgetInstance[];
|
|
9667
10260
|
tabs?: RenderedTabsGroup[];
|
|
9668
10261
|
}
|
|
9669
|
-
|
|
10262
|
+
type CanvasResizeHandle = 'north' | 'south' | 'east' | 'west' | 'north-east' | 'north-west' | 'south-east' | 'south-west';
|
|
10263
|
+
interface CanvasResizeHandleDefinition {
|
|
10264
|
+
id: CanvasResizeHandle;
|
|
10265
|
+
className: string;
|
|
10266
|
+
}
|
|
10267
|
+
declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
9670
10268
|
private conn;
|
|
9671
10269
|
private stateRuntime;
|
|
9672
10270
|
private settingsPanel;
|
|
9673
10271
|
private defaultShellEditor;
|
|
9674
10272
|
private defaultPageEditor;
|
|
10273
|
+
pageCanvasHost?: ElementRef<HTMLElement>;
|
|
9675
10274
|
page?: WidgetPageDefinition | string;
|
|
9676
10275
|
context?: Record<string, any> | null;
|
|
9677
10276
|
strictValidation: boolean;
|
|
@@ -9690,33 +10289,48 @@ declare class DynamicWidgetPageComponent implements OnChanges {
|
|
|
9690
10289
|
/** Optional instance key for pages rendered multiple times. */
|
|
9691
10290
|
componentInstanceId?: string;
|
|
9692
10291
|
pageChange: EventEmitter<WidgetPageDefinition>;
|
|
10292
|
+
widgetDiagnosticsChange: EventEmitter<Record<string, WidgetResolutionDiagnostic>>;
|
|
9693
10293
|
widgets: i0.WritableSignal<WidgetInstance[]>;
|
|
9694
10294
|
renderedGroups: i0.WritableSignal<RenderedWidgetGroup[]>;
|
|
9695
10295
|
mergedContext: Record<string, any>;
|
|
9696
10296
|
pageGap: string;
|
|
9697
10297
|
gridTemplateColumns: string;
|
|
10298
|
+
gridAutoRows: string;
|
|
10299
|
+
layoutAnnouncement: string;
|
|
10300
|
+
readonly canvasResizeHandles: readonly CanvasResizeHandleDefinition[];
|
|
9698
10301
|
private pageDefinition?;
|
|
9699
10302
|
private pageState;
|
|
9700
10303
|
private pageRuntime;
|
|
9701
10304
|
private layout?;
|
|
10305
|
+
private canvas?;
|
|
9702
10306
|
private grouping;
|
|
9703
10307
|
private pageColumnCount;
|
|
9704
10308
|
private activeTabs;
|
|
10309
|
+
private widgetDiagnostics;
|
|
10310
|
+
private selectedCanvasWidgetKey;
|
|
10311
|
+
private blockedCanvasWidgetKey;
|
|
10312
|
+
private canvasPreviewState;
|
|
10313
|
+
private canvasPreviewInvalidState;
|
|
10314
|
+
private transientCanvasItemsState;
|
|
10315
|
+
private activeCanvasInteraction;
|
|
9705
10316
|
private appliedPersisted;
|
|
9706
10317
|
private isHydrating;
|
|
9707
10318
|
private persistenceReady;
|
|
9708
10319
|
private warnedMissingKey;
|
|
10320
|
+
private readonly compositionFactory;
|
|
10321
|
+
private readonly compositionRuntime;
|
|
10322
|
+
private compositionDefinition?;
|
|
9709
10323
|
private readonly globalActions;
|
|
9710
10324
|
private readonly storage;
|
|
9711
10325
|
private readonly componentKeys;
|
|
10326
|
+
private readonly i18n;
|
|
9712
10327
|
private readonly route;
|
|
9713
10328
|
constructor(conn: ConnectionManagerService, stateRuntime: WidgetPageStateRuntimeService, settingsPanel: SettingsPanelBridge | null, defaultShellEditor: Type<any> | null, defaultPageEditor: Type<any> | null);
|
|
10329
|
+
ngOnDestroy(): void;
|
|
9714
10330
|
ngOnChanges(changes: SimpleChanges): void;
|
|
9715
|
-
onWidgetEvent(fromKey: string, evt:
|
|
9716
|
-
|
|
9717
|
-
|
|
9718
|
-
payload?: any;
|
|
9719
|
-
}): void;
|
|
10331
|
+
onWidgetEvent(fromKey: string, evt: WidgetEventEnvelope): void;
|
|
10332
|
+
private areStateValuesEqual;
|
|
10333
|
+
onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
|
|
9720
10334
|
onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
9721
10335
|
private handleSetInputCommand;
|
|
9722
10336
|
private mergeOrder;
|
|
@@ -9731,8 +10345,12 @@ declare class DynamicWidgetPageComponent implements OnChanges {
|
|
|
9731
10345
|
private applyPageLayout;
|
|
9732
10346
|
private applyPageUpdate;
|
|
9733
10347
|
private applyLayout;
|
|
10348
|
+
private applyCanvasLayout;
|
|
9734
10349
|
private mergeContext;
|
|
9735
10350
|
onWindowResize(): void;
|
|
10351
|
+
onCanvasPointerMove(event: PointerEvent): void;
|
|
10352
|
+
onCanvasPointerUp(event: PointerEvent): void;
|
|
10353
|
+
onCanvasPointerCancel(event: PointerEvent): void;
|
|
9736
10354
|
private resolveColumns;
|
|
9737
10355
|
private ensurePageDefinition;
|
|
9738
10356
|
private parsePage;
|
|
@@ -9741,8 +10359,57 @@ declare class DynamicWidgetPageComponent implements OnChanges {
|
|
|
9741
10359
|
private applyResponsivePresentation;
|
|
9742
10360
|
private resolveEffectivePresentation;
|
|
9743
10361
|
private resolveDeviceVariant;
|
|
10362
|
+
private resolveCanvas;
|
|
9744
10363
|
private resolveDeviceKind;
|
|
10364
|
+
isCanvasMode(): boolean;
|
|
10365
|
+
selectCanvasWidget(widgetKey: string): void;
|
|
10366
|
+
isCanvasWidgetSelected(widgetKey: string): boolean;
|
|
10367
|
+
isCanvasWidgetBlocked(widgetKey: string): boolean;
|
|
10368
|
+
canvasPreviewItem(): WidgetPageCanvasItem | null;
|
|
10369
|
+
canvasPreviewGridColumn(): string | null;
|
|
10370
|
+
canvasPreviewGridRow(): string | null;
|
|
10371
|
+
canvasPreviewInvalid(): boolean;
|
|
10372
|
+
startCanvasDrag(widgetKey: string, event: PointerEvent): void;
|
|
10373
|
+
startCanvasResize(widgetKey: string, handle: CanvasResizeHandle, event: PointerEvent): void;
|
|
10374
|
+
onCanvasHandleKeydown(widgetKey: string, kind: 'drag' | 'resize', event: KeyboardEvent): void;
|
|
10375
|
+
onCanvasResizeHandleKeydown(widgetKey: string, handle: CanvasResizeHandle, event: KeyboardEvent): void;
|
|
9745
10376
|
private applyWidgetLayoutOverrides;
|
|
10377
|
+
private applyCanvasLayoutToWidgets;
|
|
10378
|
+
private startCanvasInteraction;
|
|
10379
|
+
private currentCanvasMetrics;
|
|
10380
|
+
private currentCanvasItem;
|
|
10381
|
+
private resolveCanvasInteractionDelta;
|
|
10382
|
+
private updateCanvasItem;
|
|
10383
|
+
private applyTransientPagePreview;
|
|
10384
|
+
private resolveCanvasTarget;
|
|
10385
|
+
private applyCanvasDrag;
|
|
10386
|
+
private applyCanvasResize;
|
|
10387
|
+
private applyCanvasKeyboardDrag;
|
|
10388
|
+
private applyCanvasKeyboardResize;
|
|
10389
|
+
pageSettingsLabel(): string;
|
|
10390
|
+
dragWidgetLabel(): string;
|
|
10391
|
+
resizeWidgetLabel(): string;
|
|
10392
|
+
resizeHandleLabel(handle: CanvasResizeHandle): string;
|
|
10393
|
+
private canvasAnnouncement;
|
|
10394
|
+
private blockedCanvasAnnouncement;
|
|
10395
|
+
private canvasSwapAnnouncement;
|
|
10396
|
+
private positionedCanvasAnnouncement;
|
|
10397
|
+
private t;
|
|
10398
|
+
private resolveCanvasConstraints;
|
|
10399
|
+
private normalizeCanvasItem;
|
|
10400
|
+
private resolveCanvasCollisionPolicy;
|
|
10401
|
+
private resolveCanvasPlacement;
|
|
10402
|
+
private findCanvasCollisions;
|
|
10403
|
+
private buildCanvasSwapItem;
|
|
10404
|
+
private canPlaceCanvasItem;
|
|
10405
|
+
private canvasItemsOverlap;
|
|
10406
|
+
private isSameCanvasItem;
|
|
10407
|
+
private clampCanvasCol;
|
|
10408
|
+
private clampNumber;
|
|
10409
|
+
private parseCssPixelValue;
|
|
10410
|
+
private releaseCanvasPointerCapture;
|
|
10411
|
+
private clonePageDefinition;
|
|
10412
|
+
private cloneWidgets;
|
|
9746
10413
|
private applyGroupingOverrides;
|
|
9747
10414
|
private buildRenderedGroups;
|
|
9748
10415
|
private syncActiveTabs;
|
|
@@ -9751,8 +10418,11 @@ declare class DynamicWidgetPageComponent implements OnChanges {
|
|
|
9751
10418
|
resolveGroupContentLayout(group: RenderedWidgetGroup): 'stack' | 'grid' | 'row';
|
|
9752
10419
|
groupGridColumn(group: RenderedWidgetGroup): string | null;
|
|
9753
10420
|
widgetGridColumn(widget: RenderedWidgetInstance): string | null;
|
|
10421
|
+
widgetGridRow(widget: RenderedWidgetInstance): string | null;
|
|
10422
|
+
widgetZIndex(widget: RenderedWidgetInstance): number | null;
|
|
9754
10423
|
widgetClassName(widget: WidgetInstance): string;
|
|
9755
10424
|
private mergeClassNames;
|
|
10425
|
+
private resolveRenderedCanvasItem;
|
|
9756
10426
|
private applyEditShellActions;
|
|
9757
10427
|
private savePage;
|
|
9758
10428
|
private loadPersistedPage;
|
|
@@ -9761,16 +10431,20 @@ declare class DynamicWidgetPageComponent implements OnChanges {
|
|
|
9761
10431
|
private buildPageScopeId;
|
|
9762
10432
|
private warnMissingKey;
|
|
9763
10433
|
private sanitizeSegment;
|
|
9764
|
-
private applyStateConnections;
|
|
9765
10434
|
private cloneStateValues;
|
|
10435
|
+
private cloneValue;
|
|
9766
10436
|
private cloneGrouping;
|
|
9767
|
-
private collectConnectedStatePaths;
|
|
9768
10437
|
private buildStateRuntime;
|
|
9769
10438
|
private buildStateContext;
|
|
9770
10439
|
private resolveShellTemplates;
|
|
9771
10440
|
private reportStateDiagnostics;
|
|
10441
|
+
private applyBootstrapCompositionHydration;
|
|
10442
|
+
private bootstrapCompositionAdapter;
|
|
10443
|
+
private dispatchWidgetEventToComposition;
|
|
10444
|
+
private stateFromCompositionSnapshot;
|
|
10445
|
+
private applyCompositionWidgetDeliveries;
|
|
9772
10446
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetPageComponent, [null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
9773
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicWidgetPageComponent, "praxis-dynamic-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showPageSettingsButton": { "alias": "showPageSettingsButton"; "required": false; }; "shellEditorComponent": { "alias": "shellEditorComponent"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
10447
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicWidgetPageComponent, "praxis-dynamic-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showPageSettingsButton": { "alias": "showPageSettingsButton"; "required": false; }; "shellEditorComponent": { "alias": "shellEditorComponent"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; }, { "pageChange": "pageChange"; "widgetDiagnosticsChange": "widgetDiagnosticsChange"; }, never, never, true, never>;
|
|
9774
10448
|
}
|
|
9775
10449
|
|
|
9776
10450
|
/** Metadata for Praxis Dynamic Page component */
|
|
@@ -9780,53 +10454,6 @@ declare const PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA: ComponentDocMeta;
|
|
|
9780
10454
|
*/
|
|
9781
10455
|
declare function providePraxisDynamicPageMetadata(): Provider;
|
|
9782
10456
|
|
|
9783
|
-
declare class DynamicGridPageComponent implements OnChanges {
|
|
9784
|
-
private conn;
|
|
9785
|
-
page?: GridPageDefinition | string;
|
|
9786
|
-
context?: Record<string, any> | null;
|
|
9787
|
-
strictValidation: boolean;
|
|
9788
|
-
/** Optional code-level grid options. Editor (page.options) takes precedence over these. */
|
|
9789
|
-
gridOptions?: Partial<{
|
|
9790
|
-
cols: number;
|
|
9791
|
-
rowHeight: number;
|
|
9792
|
-
gap: number;
|
|
9793
|
-
}>;
|
|
9794
|
-
/** Shows editing affordances (background overlay) on CSS Grid implementation. */
|
|
9795
|
-
enableCustomization: boolean;
|
|
9796
|
-
widgets: i0.WritableSignal<GridWidgetInstance[]>;
|
|
9797
|
-
mergedContext: Record<string, any>;
|
|
9798
|
-
private readonly globalActions;
|
|
9799
|
-
private selectedKey;
|
|
9800
|
-
private cols;
|
|
9801
|
-
private _rowHeight;
|
|
9802
|
-
private _gap;
|
|
9803
|
-
overlayEnabled: boolean;
|
|
9804
|
-
gridTemplateColumns: i0.Signal<string>;
|
|
9805
|
-
rowHeight: i0.Signal<number>;
|
|
9806
|
-
gap: i0.Signal<number>;
|
|
9807
|
-
constructor(conn: ConnectionManagerService);
|
|
9808
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
9809
|
-
toGridColumn(w: GridWidgetInstance): string;
|
|
9810
|
-
toGridRow(w: GridWidgetInstance): string;
|
|
9811
|
-
onWidgetEvent(fromKey: string, evt: {
|
|
9812
|
-
sourceId: string;
|
|
9813
|
-
output?: string;
|
|
9814
|
-
payload?: any;
|
|
9815
|
-
}): void;
|
|
9816
|
-
onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
9817
|
-
isSelected(key?: string): boolean;
|
|
9818
|
-
onTileClick(key?: string, ev?: Event): void;
|
|
9819
|
-
private mergeOrder;
|
|
9820
|
-
private maybeExecuteMappedAction;
|
|
9821
|
-
private maybeExecuteGlobalCommand;
|
|
9822
|
-
private resolveActionPayload;
|
|
9823
|
-
private resolveTemplate;
|
|
9824
|
-
private lookup;
|
|
9825
|
-
private parsePage;
|
|
9826
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicGridPageComponent, never>;
|
|
9827
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicGridPageComponent, "praxis-dynamic-grid-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; }, {}, never, never, true, never>;
|
|
9828
|
-
}
|
|
9829
|
-
|
|
9830
10457
|
declare class PraxisSurfaceHostComponent {
|
|
9831
10458
|
title?: string;
|
|
9832
10459
|
subtitle?: string;
|
|
@@ -10215,5 +10842,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
10215
10842
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
10216
10843
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
10217
10844
|
|
|
10218
|
-
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, ConnectionManagerService, ConsoleLoggerSink, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_TABLE_CONFIG, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DynamicFormService,
|
|
10219
|
-
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CrudOperationOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GridItemLayout, GridPageDefinition, GridPageDefinitionWithIds, GridWidgetInstance, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PraxisAnalyticsOptions, PraxisAuthContext, PraxisDataQueryContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolvePresetOptions, ResolvedValuePresentation, ResponsiveConfig, RichTextAppearance, RichTextVariant, RowAction, RowActionsConfig, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateMessagesConfig, SurfaceBinding, SurfaceBindingMode, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetConnection, WidgetConnectionSource, WidgetConnectionTarget, WidgetDefinition, WidgetDerivedStateNode, WidgetInstance, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
10845
|
+
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConnectionManagerService, ConsoleLoggerSink, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_TABLE_CONFIG, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG$1 as GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_CATALOG as GLOBAL_ACTION_SPEC_CATALOG, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceQuickConnectComponent, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, adaptWidgetConnectionToCompositionLink, adaptWidgetConnectionsToCompositionLinks, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getGlobalActionCatalog, getGlobalActionUiSchema, getReferencedFieldMetadata, getTextTransformer, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isInlineFilterControlType, isRangeValidForFilter, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, normalizePraxisDataQueryContext, normalizeStart, normalizeUnknownError, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisFilterCriteria, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, trim, uniqueAsyncValidator, urlValidator, withMessage, withPraxisHttpLoading };
|
|
10846
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, CompositionLink, CompositionRuntimeFacadeOptions, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CrudOperationOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkCondition, LinkConditionKind, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsOptions, PraxisAuthContext, PraxisDataQueryContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedValuePresentation, ResponsiveConfig, RichTextAppearance, RichTextVariant, RowAction, RowActionsConfig, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SurfaceBinding, SurfaceBindingMode, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TransformStepCondition, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetConnection, WidgetConnectionSource, WidgetConnectionTarget, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|