@praxisui/core 8.0.0-beta.1 → 8.0.0-beta.12

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/index.d.ts CHANGED
@@ -3,7 +3,7 @@ import { InjectionToken, Type, Provider, ErrorHandler, EnvironmentProviders, OnC
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable, BehaviorSubject } from 'rxjs';
5
5
  import { HttpHeaders, HttpContext, HttpClient, HttpParams, HttpInterceptorFn, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpFeature, HttpFeatureKind, HttpContextToken } from '@angular/common/http';
6
- import { ValidationErrors, ValidatorFn, AsyncValidatorFn, FormControl, FormGroup } from '@angular/forms';
6
+ import { ValidationErrors, ValidatorFn, AsyncValidatorFn, FormGroup, AbstractControl, FormControl } from '@angular/forms';
7
7
  import { ThemePalette, DateAdapter } from '@angular/material/core';
8
8
  import { ActivatedRoute } from '@angular/router';
9
9
  import { MatDialogRef } from '@angular/material/dialog';
@@ -76,6 +76,32 @@ interface LocateRequest {
76
76
  sort?: string[];
77
77
  }
78
78
 
79
+ interface LookupSelectionPolicyMetadata {
80
+ selectablePropertyPath?: string;
81
+ statusPropertyPath?: string;
82
+ allowedStatuses?: string[];
83
+ blockedStatuses?: string[];
84
+ allowRetainInvalidExistingValue?: boolean;
85
+ disabledReasonTemplate?: string;
86
+ validationMessageTemplate?: string;
87
+ }
88
+ interface LookupCapabilitiesMetadata {
89
+ filter?: boolean;
90
+ byIds?: boolean;
91
+ detail?: boolean;
92
+ create?: boolean;
93
+ edit?: boolean;
94
+ navigateToDetail?: boolean;
95
+ multiSelect?: boolean;
96
+ recent?: boolean;
97
+ favorites?: boolean;
98
+ auditSnapshot?: boolean;
99
+ }
100
+ interface LookupDetailMetadata {
101
+ hrefTemplate?: string;
102
+ routeTemplate?: string;
103
+ openDetailMode?: string;
104
+ }
79
105
  interface OptionSourceMetadata {
80
106
  key: string;
81
107
  type?: string;
@@ -85,6 +111,17 @@ interface OptionSourceMetadata {
85
111
  labelPropertyPath?: string;
86
112
  valuePropertyPath?: string;
87
113
  dependsOn?: string[];
114
+ entityKey?: string;
115
+ codePropertyPath?: string;
116
+ descriptionPropertyPaths?: string[];
117
+ statusPropertyPath?: string;
118
+ disabledPropertyPath?: string;
119
+ disabledReasonPropertyPath?: string;
120
+ searchPropertyPaths?: string[];
121
+ dependencyFilterMap?: Record<string, string>;
122
+ selectionPolicy?: LookupSelectionPolicyMetadata;
123
+ capabilities?: LookupCapabilitiesMetadata;
124
+ detail?: LookupDetailMetadata;
88
125
  excludeSelfField?: boolean;
89
126
  searchMode?: string;
90
127
  pageSize?: number;
@@ -170,6 +207,14 @@ interface RichImageNode extends RichBlockBaseNode {
170
207
  alt?: string;
171
208
  altExpr?: string;
172
209
  }
210
+ interface RichLinkNode extends RichBlockBaseNode {
211
+ type: 'link';
212
+ label?: string;
213
+ labelExpr?: string;
214
+ href: string;
215
+ target?: '_blank' | '_self';
216
+ rel?: string;
217
+ }
173
218
  interface RichBadgeNode extends RichBlockBaseNode {
174
219
  type: 'badge';
175
220
  label?: string;
@@ -200,7 +245,7 @@ interface RichProgressNode extends RichBlockBaseNode {
200
245
  labelExpr?: string;
201
246
  showPercent?: boolean;
202
247
  }
203
- type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode;
248
+ type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichLinkNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode;
204
249
  interface RichComposeNode extends RichBlockBaseNode {
205
250
  type: 'compose';
206
251
  direction?: 'row' | 'column';
@@ -293,6 +338,173 @@ interface RichContentDocument {
293
338
  }
294
339
  declare function createEmptyRichContentDocument(): RichContentDocument;
295
340
 
341
+ type GlobalActionResult = {
342
+ success: boolean;
343
+ data?: any;
344
+ error?: string;
345
+ };
346
+ interface GlobalActionRef {
347
+ actionId: string;
348
+ payload?: any;
349
+ payloadExpr?: string;
350
+ meta?: {
351
+ label?: string;
352
+ icon?: string;
353
+ emitLocal?: boolean;
354
+ confirmation?: any;
355
+ [key: string]: any;
356
+ };
357
+ }
358
+ type GlobalActionContext = {
359
+ sourceId?: string;
360
+ widgetKey?: string;
361
+ output?: string;
362
+ payload?: any;
363
+ pageContext?: Record<string, any> | null;
364
+ meta?: Record<string, any>;
365
+ runtime?: {
366
+ row?: any;
367
+ item?: any;
368
+ selection?: any;
369
+ formData?: any;
370
+ value?: any;
371
+ state?: any;
372
+ };
373
+ };
374
+ type GlobalActionHandler = (payload?: any, context?: GlobalActionContext) => Promise<GlobalActionResult> | GlobalActionResult;
375
+ interface GlobalActionHandlerEntry {
376
+ id: string;
377
+ handler: GlobalActionHandler;
378
+ }
379
+ interface GlobalDialogService {
380
+ alert: (payload: {
381
+ title?: string;
382
+ message?: string;
383
+ variant?: string;
384
+ }) => Promise<any> | any;
385
+ confirm: (payload: {
386
+ title?: string;
387
+ message?: string;
388
+ confirmLabel?: string;
389
+ cancelLabel?: string;
390
+ type?: 'danger' | 'warning' | 'info';
391
+ }) => Promise<boolean> | boolean;
392
+ prompt: (payload: {
393
+ title?: string;
394
+ message?: string;
395
+ placeholder?: string;
396
+ defaultValue?: string;
397
+ }) => Promise<any> | any;
398
+ open: (payload: {
399
+ componentId?: string;
400
+ inputs?: any;
401
+ size?: any;
402
+ data?: any;
403
+ }) => Promise<any> | any;
404
+ }
405
+ interface GlobalToastService {
406
+ success: (message: string, opts?: any) => void;
407
+ error: (message: string, opts?: any) => void;
408
+ }
409
+ interface GlobalAnalyticsService {
410
+ track: (eventName: string, payload?: any) => void;
411
+ }
412
+ interface GlobalApiClient {
413
+ get: (url: string, params?: Record<string, any>) => Promise<any> | any;
414
+ post: (url: string, body?: any) => Promise<any> | any;
415
+ patch: (url: string, body?: any) => Promise<any> | any;
416
+ }
417
+ interface GlobalRouteGuardResolver {
418
+ resolve: (guardId: string) => any;
419
+ }
420
+
421
+ type PraxisExportFormat = 'excel' | 'pdf' | 'csv' | 'json' | 'print';
422
+ type PraxisExportScope = 'auto' | 'selected' | 'filtered' | 'currentPage' | 'all';
423
+ type PraxisCollectionComponentType = 'table' | 'list' | string;
424
+ type PraxisCollectionSelectionMode = 'none' | 'single' | 'multiple';
425
+ type PraxisExportSortDirection = 'asc' | 'desc';
426
+ interface PraxisCollectionSelectionState<T = unknown> {
427
+ mode: PraxisCollectionSelectionMode;
428
+ keyField?: string;
429
+ selectedKeys?: Array<string | number>;
430
+ selectedItems?: T[];
431
+ allMatchingSelected?: boolean;
432
+ excludedKeys?: Array<string | number>;
433
+ }
434
+ interface PraxisCollectionExportField<T = unknown> {
435
+ key: string;
436
+ label?: string;
437
+ visible?: boolean;
438
+ exportable?: boolean;
439
+ type?: string;
440
+ valuePath?: string;
441
+ valueGetter?: (item: T) => unknown;
442
+ formatter?: (value: unknown, item: T) => unknown;
443
+ }
444
+ interface PraxisCollectionSortDescriptor {
445
+ field: string;
446
+ direction: PraxisExportSortDirection;
447
+ }
448
+ interface PraxisCollectionPaginationState {
449
+ pageIndex?: number;
450
+ pageNumber?: number;
451
+ pageSize?: number;
452
+ totalItems?: number;
453
+ }
454
+ interface PraxisCollectionExportSource<T = unknown> {
455
+ loadedItems?: T[];
456
+ resourcePath?: string;
457
+ query?: Record<string, unknown>;
458
+ filters?: unknown;
459
+ sort?: PraxisCollectionSortDescriptor[] | unknown;
460
+ pagination?: PraxisCollectionPaginationState | unknown;
461
+ }
462
+ interface PraxisCollectionExportRequest<T = unknown> extends PraxisCollectionExportSource<T> {
463
+ componentType: PraxisCollectionComponentType;
464
+ componentId?: string;
465
+ format: PraxisExportFormat;
466
+ scope: PraxisExportScope;
467
+ selection?: PraxisCollectionSelectionState<T>;
468
+ fields?: PraxisCollectionExportField<T>[];
469
+ includeHeaders?: boolean;
470
+ applyFormatting?: boolean;
471
+ maxRows?: number;
472
+ fileName?: string;
473
+ metadata?: Record<string, unknown>;
474
+ }
475
+ interface PraxisCollectionExportResult {
476
+ status: 'completed' | 'deferred';
477
+ format: PraxisExportFormat;
478
+ scope: PraxisExportScope;
479
+ fileName?: string;
480
+ mimeType?: string;
481
+ content?: string | Blob;
482
+ downloadUrl?: string;
483
+ jobId?: string;
484
+ rowCount?: number;
485
+ warnings?: string[];
486
+ metadata?: Record<string, unknown>;
487
+ }
488
+ interface PraxisCollectionExportProvider {
489
+ exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportResult | Promise<PraxisCollectionExportResult>;
490
+ }
491
+ interface PraxisExportSecurityPolicy {
492
+ escapeFormulaValues: boolean;
493
+ formulaPrefixes: readonly string[];
494
+ formulaEscapePrefix: string;
495
+ }
496
+ declare const PRAXIS_EXPORT_FORMULA_PREFIXES: readonly ["=", "+", "-", "@", "\t", "\r"];
497
+ declare const PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY: PraxisExportSecurityPolicy;
498
+ declare function resolvePraxisExportScope<T>(request: PraxisCollectionExportRequest<T>): Exclude<PraxisExportScope, 'auto'>;
499
+ declare function resolvePraxisCollectionExportItems<T>(request: PraxisCollectionExportRequest<T>): T[];
500
+ declare function resolvePraxisExportFields<T>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportField<T>[];
501
+ declare function readPraxisExportValue(item: unknown, path: string): unknown;
502
+ declare function escapePraxisExportCell(value: unknown, policy?: PraxisExportSecurityPolicy): string;
503
+ declare function serializePraxisCollectionToCsv<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): string;
504
+ declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExportRequest<T>): string;
505
+ declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
506
+ declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
507
+
296
508
  /**
297
509
  * Nova arquitetura modular do TableConfig v2.0
298
510
  * Preparada para crescimento exponencial e alinhada com as 5 abas do editor
@@ -686,6 +898,8 @@ interface TableBehaviorConfig {
686
898
  sorting?: SortingConfig;
687
899
  /** Configurações de filtragem */
688
900
  filtering?: FilteringConfig;
901
+ /** Configurações de agrupamento de linhas */
902
+ grouping?: GroupingConfig;
689
903
  /** Configurações de seleção de linhas */
690
904
  selection?: SelectionConfig;
691
905
  /** Configurações de interação do usuário */
@@ -920,6 +1134,14 @@ interface SortingConfig {
920
1134
  preserveSort?: boolean;
921
1135
  };
922
1136
  }
1137
+ interface GroupingConfig {
1138
+ /** Habilitar agrupamento */
1139
+ enabled: boolean;
1140
+ /** Campos usados para agrupamento */
1141
+ fields: string[];
1142
+ /** Se os grupos iniciam expandidos */
1143
+ expanded?: boolean;
1144
+ }
923
1145
  interface FilteringConfig {
924
1146
  /** Habilitar filtragem */
925
1147
  enabled: boolean;
@@ -1336,6 +1558,8 @@ interface ToolbarAction {
1336
1558
  disabled?: boolean;
1337
1559
  /** Função a executar */
1338
1560
  action: string;
1561
+ /** Acao global estruturada executada pelo host via GlobalActionService */
1562
+ globalAction?: GlobalActionRef;
1339
1563
  /** Tooltip */
1340
1564
  tooltip?: string;
1341
1565
  /** Tecla de atalho */
@@ -1446,6 +1670,8 @@ interface RowAction {
1446
1670
  disabled?: boolean;
1447
1671
  /** Função a executar */
1448
1672
  action: string;
1673
+ /** Acao global estruturada executada pelo host via GlobalActionService */
1674
+ globalAction?: GlobalActionRef;
1449
1675
  /** Tooltip */
1450
1676
  tooltip?: string;
1451
1677
  /** Requer confirmação */
@@ -1484,6 +1710,8 @@ interface BulkAction {
1484
1710
  color?: string;
1485
1711
  /** Função a executar */
1486
1712
  action: string;
1713
+ /** Acao global estruturada executada pelo host via GlobalActionService */
1714
+ globalAction?: GlobalActionRef;
1487
1715
  /** Requer confirmação */
1488
1716
  requiresConfirmation?: boolean;
1489
1717
  /** Mínimo de itens selecionados */
@@ -1713,14 +1941,12 @@ interface ExportConfig {
1713
1941
  /** Templates personalizados */
1714
1942
  templates?: ExportTemplate[];
1715
1943
  }
1716
- type ExportFormat = 'excel' | 'pdf' | 'csv' | 'json' | 'print';
1944
+ type ExportFormat = PraxisExportFormat;
1717
1945
  interface GeneralExportConfig {
1718
1946
  /** Incluir cabeçalhos */
1719
1947
  includeHeaders: boolean;
1720
- /** Incluir filtros aplicados na exportação */
1721
- respectFilters: boolean;
1722
- /** Incluir apenas linhas selecionadas */
1723
- selectedRowsOnly?: boolean;
1948
+ /** Escopo canônico dos dados exportados */
1949
+ scope: PraxisExportScope;
1724
1950
  /** Máximo de linhas para exportar */
1725
1951
  maxRows?: number;
1726
1952
  /** Nome do arquivo padrão */
@@ -2293,6 +2519,7 @@ declare const FieldDataType: {
2293
2519
  readonly FILE: "file";
2294
2520
  readonly URL: "url";
2295
2521
  readonly BOOLEAN: "boolean";
2522
+ readonly ARRAY: "array";
2296
2523
  readonly JSON: "json";
2297
2524
  };
2298
2525
  type FieldDataType = typeof FieldDataType[keyof typeof FieldDataType];
@@ -2343,6 +2570,7 @@ declare const FieldControlType: {
2343
2570
  readonly DRAWER: "drawer";
2344
2571
  readonly DROP_DOWN_TREE: "dropDownTree";
2345
2572
  readonly EMAIL_INPUT: "email";
2573
+ readonly ENTITY_LOOKUP: "entityLookup";
2346
2574
  readonly EXPANSION_PANEL: "expansionPanel";
2347
2575
  readonly FILE_SAVER: "fileSaver";
2348
2576
  readonly FILE_SELECT: "fileSelect";
@@ -2585,6 +2813,52 @@ interface ConditionalValidationRule {
2585
2813
  /** Validators applied when the guard resolves to true. */
2586
2814
  validators: Omit<ValidatorOptions, 'conditionalValidation'>;
2587
2815
  }
2816
+ interface FieldArrayOperations {
2817
+ add?: boolean;
2818
+ edit?: boolean;
2819
+ remove?: boolean;
2820
+ [key: string]: any;
2821
+ }
2822
+ interface FieldArrayCollectionValidation {
2823
+ uniqueBy?: string[];
2824
+ exactlyOne?: {
2825
+ field: string;
2826
+ value?: any;
2827
+ message?: string;
2828
+ };
2829
+ atLeastOne?: {
2830
+ field: string;
2831
+ value?: any;
2832
+ message?: string;
2833
+ };
2834
+ sumEquals?: {
2835
+ field: string;
2836
+ targetField?: string;
2837
+ value?: number;
2838
+ message?: string;
2839
+ };
2840
+ [key: string]: any;
2841
+ }
2842
+ interface FieldArrayConfig {
2843
+ itemType?: 'object';
2844
+ mode?: 'cards';
2845
+ itemSchemaRef?: string;
2846
+ itemIdentityField?: string;
2847
+ minItems?: number;
2848
+ maxItems?: number;
2849
+ addLabel?: string;
2850
+ emptyState?: string;
2851
+ itemTitleTemplate?: string;
2852
+ operations?: FieldArrayOperations;
2853
+ deleteMode?: 'removeFromPayload';
2854
+ itemSchema?: {
2855
+ fields?: FieldMetadata[];
2856
+ properties?: Record<string, any>;
2857
+ [key: string]: any;
2858
+ };
2859
+ collectionValidation?: FieldArrayCollectionValidation;
2860
+ [key: string]: any;
2861
+ }
2588
2862
  /**
2589
2863
  * Configuration for field options in selection components.
2590
2864
  *
@@ -2697,6 +2971,10 @@ interface FieldMetadata extends ComponentMetadata {
2697
2971
  controlType: FieldControlType;
2698
2972
  /** Data type for processing and validation */
2699
2973
  dataType?: FieldDataType;
2974
+ /** Canonical metadata for editable collection fields (`controlType: "array"`). */
2975
+ array?: FieldArrayConfig;
2976
+ /** Optional top-level alias for collection validators mirrored into `array.collectionValidation`. */
2977
+ collectionValidation?: FieldArrayCollectionValidation;
2700
2978
  /** Display order in form */
2701
2979
  order?: number;
2702
2980
  /** Logical grouping of related fields */
@@ -2967,6 +3245,8 @@ interface FieldDefinition {
2967
3245
  layout?: 'horizontal' | 'vertical';
2968
3246
  disabled?: boolean;
2969
3247
  readOnly?: boolean;
3248
+ array?: FieldArrayConfig;
3249
+ collectionValidation?: FieldArrayCollectionValidation;
2970
3250
  multiple?: boolean;
2971
3251
  editable?: boolean;
2972
3252
  validationMode?: string;
@@ -3144,10 +3424,22 @@ declare function buildHeaders(entry: ApiUrlEntry): HttpHeaders | undefined;
3144
3424
  * // fields: [{ name: 'email', label: 'E-mail', type: 'string', controlType: 'input', required: true, email: true }]
3145
3425
  */
3146
3426
  declare class SchemaNormalizerService {
3427
+ private clonePlain;
3428
+ private resolveSchemaRef;
3429
+ private normalizeObjectSchema;
3430
+ private normalizeArrayConfig;
3431
+ private finalizeArrayConfig;
3432
+ private normalizeInlineItemSchemaFields;
3433
+ private normalizeInlineItemSchemaField;
3147
3434
  /** Convert value to boolean. Accepts boolean, string or number. */
3148
3435
  private parseBoolean;
3149
3436
  /** Ensure an array of strings from various inputs. */
3150
3437
  private parseStringArray;
3438
+ private parseNonBlankStringArray;
3439
+ private parseStringRecord;
3440
+ private parseSelectionPolicy;
3441
+ private parseLookupCapabilities;
3442
+ private parseLookupDetail;
3151
3443
  /** Parse option arrays into `{ key, value }` objects. */
3152
3444
  private parseOptions;
3153
3445
  private parseOptionSource;
@@ -3185,6 +3477,7 @@ declare class SchemaNormalizerService {
3185
3477
  * @returns FieldDefinition[] prontos para mapeamento/uso no restante do sistema.
3186
3478
  */
3187
3479
  normalizeSchema(schema: any): FieldDefinition[];
3480
+ private normalizeSchemaWithRoot;
3188
3481
  private resolveFieldType;
3189
3482
  static ɵfac: i0.ɵɵFactoryDeclaration<SchemaNormalizerService, never>;
3190
3483
  static ɵprov: i0.ɵɵInjectableDeclaration<SchemaNormalizerService>;
@@ -4254,74 +4547,6 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
4254
4547
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiConfigStorage>;
4255
4548
  }
4256
4549
 
4257
- type GlobalActionResult = {
4258
- success: boolean;
4259
- data?: any;
4260
- error?: string;
4261
- };
4262
- type GlobalActionContext = {
4263
- sourceId?: string;
4264
- widgetKey?: string;
4265
- output?: string;
4266
- payload?: any;
4267
- pageContext?: Record<string, any> | null;
4268
- meta?: Record<string, any>;
4269
- runtime?: {
4270
- row?: any;
4271
- item?: any;
4272
- selection?: any;
4273
- formData?: any;
4274
- value?: any;
4275
- state?: any;
4276
- };
4277
- };
4278
- type GlobalActionHandler = (payload?: any, context?: GlobalActionContext) => Promise<GlobalActionResult> | GlobalActionResult;
4279
- interface GlobalActionHandlerEntry {
4280
- id: string;
4281
- handler: GlobalActionHandler;
4282
- }
4283
- interface GlobalDialogService {
4284
- alert: (payload: {
4285
- title?: string;
4286
- message?: string;
4287
- variant?: string;
4288
- }) => Promise<any> | any;
4289
- confirm: (payload: {
4290
- title?: string;
4291
- message?: string;
4292
- confirmLabel?: string;
4293
- cancelLabel?: string;
4294
- type?: 'danger' | 'warning' | 'info';
4295
- }) => Promise<boolean> | boolean;
4296
- prompt: (payload: {
4297
- title?: string;
4298
- message?: string;
4299
- placeholder?: string;
4300
- defaultValue?: string;
4301
- }) => Promise<any> | any;
4302
- open: (payload: {
4303
- componentId?: string;
4304
- inputs?: any;
4305
- size?: any;
4306
- data?: any;
4307
- }) => Promise<any> | any;
4308
- }
4309
- interface GlobalToastService {
4310
- success: (message: string, opts?: any) => void;
4311
- error: (message: string, opts?: any) => void;
4312
- }
4313
- interface GlobalAnalyticsService {
4314
- track: (eventName: string, payload?: any) => void;
4315
- }
4316
- interface GlobalApiClient {
4317
- get: (url: string, params?: Record<string, any>) => Promise<any> | any;
4318
- post: (url: string, body?: any) => Promise<any> | any;
4319
- patch: (url: string, body?: any) => Promise<any> | any;
4320
- }
4321
- interface GlobalRouteGuardResolver {
4322
- resolve: (guardId: string) => any;
4323
- }
4324
-
4325
4550
  declare class GlobalActionService {
4326
4551
  private readonly handlers;
4327
4552
  private readonly router;
@@ -4339,6 +4564,9 @@ declare class GlobalActionService {
4339
4564
  register(id: string, handler: GlobalActionHandler): void;
4340
4565
  has(id: string): boolean;
4341
4566
  execute(id: string, payload?: any, context?: GlobalActionContext): Promise<GlobalActionResult>;
4567
+ executeRef(ref: GlobalActionRef | null | undefined, context?: GlobalActionContext): Promise<GlobalActionResult>;
4568
+ private resolvePayloadExpr;
4569
+ private lookupPath;
4342
4570
  private registerBuiltins;
4343
4571
  private handleApi;
4344
4572
  private handleRouteRegister;
@@ -4398,7 +4626,8 @@ interface SurfaceOpenPayload {
4398
4626
  declare class SurfaceBindingRuntimeService {
4399
4627
  resolveWidget(widget: WidgetDefinition, bindings: SurfaceBinding[] | undefined, actionPayload?: any, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): WidgetDefinition;
4400
4628
  extractByPath(obj: any, path?: string): any;
4401
- resolveTemplate(node: any, context: any): any;
4629
+ resolveTemplate(node: any, context: any, key?: string): any;
4630
+ private isDeferredTemplateExpressionKey;
4402
4631
  setValueAtPath<T extends object>(obj: T, rawPath: string, value: any): T;
4403
4632
  private buildContext;
4404
4633
  private resolveBindingValue;
@@ -5188,6 +5417,39 @@ interface MaterialSelectMetadata extends FieldMetadata {
5188
5417
  /** Inline/runtime compatibility for selected option icon color. */
5189
5418
  optionSelectedIconColor?: string;
5190
5419
  }
5420
+ interface MaterialEntityLookupMetadata extends Omit<MaterialSelectMetadata, 'controlType'> {
5421
+ controlType: typeof FieldControlType.ENTITY_LOOKUP | typeof FieldControlType.INLINE_ENTITY_LOOKUP;
5422
+ lookupIdKey?: string;
5423
+ lookupLabelKey?: string;
5424
+ lookupSubtitleKey?: string;
5425
+ lookupSeparator?: string;
5426
+ searchPlaceholder?: string;
5427
+ resetLabel?: string;
5428
+ ariaLabel?: string;
5429
+ dependencyLoadOnChange?: 'respectLoadOn' | 'immediate' | 'manual';
5430
+ selectedLayout?: 'card' | 'inline' | 'compact' | 'token';
5431
+ resultLayout?: 'list' | 'denseList' | 'table' | 'card';
5432
+ showCode?: boolean;
5433
+ showDescription?: boolean;
5434
+ showStatus?: boolean;
5435
+ showAvatar?: boolean;
5436
+ showBadges?: boolean;
5437
+ showDisabledReason?: boolean;
5438
+ showResultCount?: boolean;
5439
+ statusToneMap?: Record<string, 'success' | 'warning' | 'danger' | 'neutral'>;
5440
+ badgeKeys?: string[];
5441
+ maxVisibleBadges?: number;
5442
+ detailActionLabel?: string;
5443
+ changeActionLabel?: string;
5444
+ copyCodeActionLabel?: string;
5445
+ clearActionLabel?: string;
5446
+ actions?: {
5447
+ showDetail?: boolean;
5448
+ showChange?: boolean;
5449
+ showCopyCode?: boolean;
5450
+ showClear?: boolean;
5451
+ };
5452
+ }
5191
5453
  /**
5192
5454
  * Metadata for Material Autocomplete components.
5193
5455
  *
@@ -5835,6 +6097,8 @@ interface MaterialButtonMetadata extends FieldMetadata {
5835
6097
  buttonIconPosition?: 'before' | 'after';
5836
6098
  /** Button action/command */
5837
6099
  action?: string;
6100
+ /** Structured global action executed through GlobalActionService. */
6101
+ globalAction?: GlobalActionRef;
5838
6102
  /** Disable button ripple effect */
5839
6103
  disableRipple?: boolean;
5840
6104
  /** Confirmation message for destructive actions */
@@ -6581,6 +6845,18 @@ declare class DynamicFormService {
6581
6845
  * Indica se o campo deve ser tratado como seleção múltipla (valor padrão []).
6582
6846
  */
6583
6847
  private isMultipleField;
6848
+ private isArrayMetadata;
6849
+ private getArrayConfig;
6850
+ private getArrayItemFields;
6851
+ createArrayItemGroupFromMetadata(meta: FieldMetadata, value?: Record<string, any>): FormGroup;
6852
+ private ensureArrayItemIdentityControl;
6853
+ private createArrayControlFromMetadata;
6854
+ private buildArrayValidators;
6855
+ private buildArrayCountValidator;
6856
+ private uniqueKeyForItem;
6857
+ private normalizeUniqueValue;
6858
+ private arrayValues;
6859
+ private readPath;
6584
6860
  /**
6585
6861
  * Envelopa um ValidatorFn Angular para padronizar a saída de erro com mensagem.
6586
6862
  * Útil quando deseja-se forçar uma mensagem customizada em um validador nativo.
@@ -6603,7 +6879,7 @@ declare class DynamicFormService {
6603
6879
  * - Aplica validadores específicos de UI quando aplicável.
6604
6880
  * - Valor inicial: [] para campos múltiplos quando ausente; caso contrário defaultValue.
6605
6881
  */
6606
- createControlFromField(field: FieldDefinition): FormControl;
6882
+ createControlFromField(field: FieldDefinition): AbstractControl;
6607
6883
  /**
6608
6884
  * Cria um FormControl a partir de FieldMetadata.
6609
6885
  * - Aplica ValidatorOptions (normalizados) e validadores de UI por tipo.
@@ -6615,6 +6891,11 @@ declare class DynamicFormService {
6615
6891
  defaultValue?: any;
6616
6892
  disabled?: boolean;
6617
6893
  }): FormControl;
6894
+ createAbstractControlFromMetadata(meta: FieldMetadata & {
6895
+ validators?: ValidatorOptions;
6896
+ defaultValue?: any;
6897
+ disabled?: boolean;
6898
+ }): AbstractControl;
6618
6899
  /**
6619
6900
  * Reconfigura um controle existente a partir de FieldDefinition.
6620
6901
  * Atualiza: validators, asyncValidators, estado enabled/disabled e defaultValue (com suporte a múltiplos).
@@ -7027,6 +7308,51 @@ declare class TelemetryService {
7027
7308
  static ɵprov: i0.ɵɵInjectableDeclaration<TelemetryService>;
7028
7309
  }
7029
7310
 
7311
+ declare class PraxisCollectionExportService {
7312
+ private readonly provider;
7313
+ private readonly securityPolicy;
7314
+ constructor(provider: PraxisCollectionExportProvider | null, securityPolicy: PraxisExportSecurityPolicy);
7315
+ exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): Promise<PraxisCollectionExportResult>;
7316
+ exportLocalCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportResult;
7317
+ static ɵfac: i0.ɵɵFactoryDeclaration<PraxisCollectionExportService, [{ optional: true; }, null]>;
7318
+ static ɵprov: i0.ɵɵInjectableDeclaration<PraxisCollectionExportService>;
7319
+ }
7320
+
7321
+ interface PraxisCollectionExportHttpProviderOptions {
7322
+ endpoint?: string | ((request: PraxisCollectionExportRequest<any>) => string);
7323
+ apiUrlKey?: string;
7324
+ headers?: Record<string, string | string[]>;
7325
+ withCredentials?: boolean;
7326
+ includeLoadedItems?: boolean;
7327
+ }
7328
+ declare const PRAXIS_COLLECTION_EXPORT_PROVIDER: InjectionToken<PraxisCollectionExportProvider>;
7329
+ declare const PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS: InjectionToken<PraxisCollectionExportHttpProviderOptions>;
7330
+ declare const PRAXIS_EXPORT_SECURITY_POLICY: InjectionToken<PraxisExportSecurityPolicy>;
7331
+ declare function providePraxisCollectionExportProvider(provider: PraxisCollectionExportProvider): Provider;
7332
+
7333
+ declare class PraxisHttpCollectionExportProvider implements PraxisCollectionExportProvider {
7334
+ private readonly http;
7335
+ private readonly apiUrlConfig;
7336
+ private readonly options;
7337
+ constructor(http: HttpClient, apiUrlConfig: ApiUrlConfig | null, options: PraxisCollectionExportHttpProviderOptions | null);
7338
+ exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): Promise<PraxisCollectionExportResult>;
7339
+ private resolveEndpoint;
7340
+ private resolveUrl;
7341
+ private normalizePathForBase;
7342
+ private resolveApiBaseUrl;
7343
+ private buildHeaders;
7344
+ private buildRequestBody;
7345
+ private normalizeResponse;
7346
+ private normalizeExportHeaders;
7347
+ private readNumberHeader;
7348
+ private readBooleanHeader;
7349
+ private readWarningHeader;
7350
+ private mergeWarnings;
7351
+ private resolveFileName;
7352
+ static ɵfac: i0.ɵɵFactoryDeclaration<PraxisHttpCollectionExportProvider, [null, { optional: true; }, { optional: true; }]>;
7353
+ static ɵprov: i0.ɵɵInjectableDeclaration<PraxisHttpCollectionExportProvider>;
7354
+ }
7355
+
7030
7356
  type FieldSelectorRegistryMap = Record<string, FieldControlType>;
7031
7357
  declare const FIELD_SELECTOR_REGISTRY_BASE: InjectionToken<FieldSelectorRegistryMap>;
7032
7358
  declare const FIELD_SELECTOR_REGISTRY_OVERRIDES: InjectionToken<FieldSelectorRegistryMap[]>;
@@ -7132,6 +7458,7 @@ declare class PraxisLayerScaleStyleService {
7132
7458
  * abertura, enquanto `resourcePath`, `path`, `method` e `schemaUrl` seguem responsaveis pelo
7133
7459
  * comportamento operacional.
7134
7460
  */
7461
+
7135
7462
  interface ResourceAvailabilityDecision {
7136
7463
  allowed: boolean;
7137
7464
  reason?: string | null;
@@ -7142,6 +7469,8 @@ type ResourceSurfaceScope = 'COLLECTION' | 'ITEM';
7142
7469
  type ResourceActionScope = 'COLLECTION' | 'ITEM';
7143
7470
  type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
7144
7471
  type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
7472
+ type ResourceCapabilityOperationId = ResourceCrudOperationId | 'export' | string;
7473
+ type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
7145
7474
  interface ResourceSurfaceCatalogItem {
7146
7475
  id: string;
7147
7476
  resourceKey: string;
@@ -7192,20 +7521,25 @@ interface ResourceActionCatalogResponse {
7192
7521
  actions: ResourceActionCatalogItem[];
7193
7522
  }
7194
7523
  interface ResourceCapabilityOperation {
7195
- id: ResourceCrudOperationId;
7524
+ id: ResourceCapabilityOperationId;
7196
7525
  supported: boolean;
7197
7526
  scope: ResourceSurfaceScope;
7198
7527
  preferredMethod?: string | null;
7199
7528
  preferredRel?: string | null;
7200
7529
  availability?: ResourceAvailabilityDecision | null;
7530
+ formats?: PraxisExportFormat[];
7531
+ scopes?: PraxisExportScope[];
7532
+ maxRows?: ResourceExportMaxRows;
7533
+ async?: boolean | null;
7201
7534
  }
7535
+ type ResourceCapabilityOperations = Partial<Record<ResourceCrudOperationId | 'export', ResourceCapabilityOperation>> & Record<string, ResourceCapabilityOperation | undefined>;
7202
7536
  interface ResourceCapabilitySnapshot {
7203
7537
  resourceKey: string;
7204
7538
  resourcePath: string;
7205
7539
  group?: string | null;
7206
7540
  resourceId?: string | number | null;
7207
7541
  canonicalOperations: Record<string, boolean>;
7208
- operations?: Partial<Record<ResourceCrudOperationId, ResourceCapabilityOperation>>;
7542
+ operations?: ResourceCapabilityOperations;
7209
7543
  surfaces: ResourceSurfaceCatalogItem[];
7210
7544
  actions: ResourceActionCatalogItem[];
7211
7545
  }
@@ -7981,8 +8315,15 @@ type GlobalActionCatalogEntry = {
7981
8315
  required?: string[];
7982
8316
  example?: any;
7983
8317
  };
8318
+ param?: {
8319
+ required?: boolean;
8320
+ label?: string;
8321
+ placeholder?: string;
8322
+ hint?: string;
8323
+ example?: string;
8324
+ };
7984
8325
  };
7985
- declare const GLOBAL_ACTION_CATALOG$1: InjectionToken<readonly GlobalActionCatalogEntry[][]>;
8326
+ declare const GLOBAL_ACTION_CATALOG: InjectionToken<readonly GlobalActionCatalogEntry[][]>;
7986
8327
  declare function provideGlobalActionCatalog(entries: GlobalActionCatalogEntry[]): Provider;
7987
8328
  declare function getGlobalActionCatalog(catalog: ReadonlyArray<GlobalActionCatalogEntry[]> | null | undefined): GlobalActionCatalogEntry[];
7988
8329
  declare const PRAXIS_GLOBAL_ACTION_CATALOG: GlobalActionCatalogEntry[];
@@ -7993,22 +8334,6 @@ interface GlobalSurfaceService {
7993
8334
  }
7994
8335
  declare const GLOBAL_SURFACE_SERVICE: InjectionToken<GlobalSurfaceService>;
7995
8336
 
7996
- type GlobalActionId = 'navigate' | 'openUrl' | 'surface.open' | 'showAlert' | 'log' | 'openDialog' | 'confirm' | 'alert' | 'prompt' | 'submitForm' | 'resetForm' | 'validateForm' | 'clearValidation' | 'saveFormDraft' | 'loadFormDraft' | 'clearFormDraft' | 'apiCall' | 'download' | 'copyToClipboard' | 'refreshOptions' | 'loadDependentData';
7997
- type GlobalActionParam = {
7998
- required?: boolean;
7999
- label?: string;
8000
- placeholder?: string;
8001
- hint?: string;
8002
- example?: string;
8003
- };
8004
- interface GlobalActionSpec {
8005
- id: GlobalActionId;
8006
- label: string;
8007
- description: string;
8008
- param?: GlobalActionParam;
8009
- }
8010
- declare const GLOBAL_ACTION_CATALOG: GlobalActionSpec[];
8011
-
8012
8337
  declare const SURFACE_OPEN_I18N_NAMESPACE = "surfaceOpen";
8013
8338
  declare const SURFACE_OPEN_I18N_CONFIG: Partial<PraxisI18nConfig>;
8014
8339
 
@@ -8111,6 +8436,8 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
8111
8436
 
8112
8437
  declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
8113
8438
 
8439
+ declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
8440
+
8114
8441
  declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
8115
8442
  declare function providePraxisJsonLogicOperator(definition: PraxisJsonLogicOperatorDefinition): Provider;
8116
8443
  declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLogicOperatorDefinition): Provider;
@@ -8202,8 +8529,16 @@ interface ComponentPortEndpointRef {
8202
8529
  direction: 'input' | 'output';
8203
8530
  componentType?: string;
8204
8531
  bindingPath?: string;
8532
+ nestedPath?: ComponentPortPathSegment[];
8205
8533
  };
8206
8534
  }
8535
+ interface ComponentPortPathSegment {
8536
+ kind: 'widget' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
8537
+ id?: string;
8538
+ key?: string;
8539
+ index?: number;
8540
+ componentType?: string;
8541
+ }
8207
8542
  interface StateEndpointRef {
8208
8543
  kind: 'state';
8209
8544
  ref: {
@@ -8446,6 +8781,7 @@ interface FormActionButton {
8446
8781
  disabled?: boolean;
8447
8782
  type?: 'button' | 'submit' | 'reset';
8448
8783
  action?: string;
8784
+ globalAction?: GlobalActionRef;
8449
8785
  tooltip?: string;
8450
8786
  loading?: boolean;
8451
8787
  size?: 'small' | 'medium' | 'large';
@@ -8732,6 +9068,29 @@ interface EditorialFormTemplateBuildOptions {
8732
9068
  */
8733
9069
  declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfig;
8734
9070
 
9071
+ interface FormFieldLayoutItem {
9072
+ kind: 'field';
9073
+ id: string;
9074
+ fieldName: string;
9075
+ }
9076
+ interface FormRichContentLayoutItem {
9077
+ kind: 'richContent';
9078
+ id: string;
9079
+ document: RichContentDocument;
9080
+ layout?: 'block' | 'inline';
9081
+ rootClassName?: string | null;
9082
+ }
9083
+ type FormLayoutItem = FormFieldLayoutItem | FormRichContentLayoutItem;
9084
+ interface FormLayoutItemsColumnLike {
9085
+ fields?: unknown;
9086
+ items?: unknown;
9087
+ }
9088
+ declare function createFieldLayoutItem(fieldName: string, index?: number): FormFieldLayoutItem;
9089
+ declare function isFormLayoutItem(value: unknown): value is FormLayoutItem;
9090
+ declare function normalizeFormLayoutItems(column: FormLayoutItemsColumnLike | null | undefined): FormLayoutItem[];
9091
+ declare function getFormLayoutFieldNames(items: readonly FormLayoutItem[] | null | undefined): string[];
9092
+ declare function getFormColumnFieldNames(column: FormLayoutItemsColumnLike | null | undefined): string[];
9093
+
8735
9094
  type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
8736
9095
  interface ColumnSpan {
8737
9096
  xs?: number;
@@ -8763,7 +9122,10 @@ interface ColumnHidden {
8763
9122
  }
8764
9123
  type ColumnAlign = 'start' | 'center' | 'end' | 'stretch';
8765
9124
  interface FormColumn {
9125
+ /** Legacy field-name list accepted as migration input while items becomes canonical. */
8766
9126
  fields: string[];
9127
+ /** Canonical ordered layout items for fields and visual blocks. */
9128
+ items?: FormLayoutItem[];
8767
9129
  id: string;
8768
9130
  title?: string;
8769
9131
  span?: ColumnSpan;
@@ -8837,8 +9199,10 @@ interface FormSectionHeaderAction {
8837
9199
  label: string;
8838
9200
  /** Icon rendered in the section header action slot. */
8839
9201
  icon: string;
8840
- /** Optional action name emitted by the runtime; defaults to `id` when omitted. */
9202
+ /** Optional local action name emitted by the runtime; defaults to `id` when omitted. */
8841
9203
  action?: string;
9204
+ /** Optional structured global action executed by hosts through GlobalActionService. */
9205
+ globalAction?: GlobalActionRef;
8842
9206
  /** Optional tooltip override. Falls back to `label` when omitted. */
8843
9207
  tooltip?: string;
8844
9208
  /** Optional theme color mapped to Angular Material button tones. */
@@ -9143,6 +9507,7 @@ interface FormInitializationError {
9143
9507
  }
9144
9508
  interface FormCustomActionEvent {
9145
9509
  actionId: string;
9510
+ globalAction?: GlobalActionRef;
9146
9511
  formData: any;
9147
9512
  isValid: boolean;
9148
9513
  source: 'button' | 'shortcut' | 'section-header';
@@ -10455,7 +10820,7 @@ interface GlobalActionField {
10455
10820
  dependsOnValue?: string;
10456
10821
  }
10457
10822
  interface GlobalActionUiSchema {
10458
- id: GlobalActionId;
10823
+ id: string;
10459
10824
  label: string;
10460
10825
  fields: GlobalActionField[];
10461
10826
  editorMode?: 'default' | 'surface-open';
@@ -10463,6 +10828,33 @@ interface GlobalActionUiSchema {
10463
10828
  declare const GLOBAL_ACTION_UI_SCHEMAS: GlobalActionUiSchema[];
10464
10829
  declare function getGlobalActionUiSchema(id: string | undefined): GlobalActionUiSchema | undefined;
10465
10830
 
10831
+ type GlobalActionValidationCode = 'globalAction.actionId.required' | 'globalAction.payload.required' | 'globalAction.payload.type';
10832
+ interface GlobalActionValidationIssue {
10833
+ code: GlobalActionValidationCode;
10834
+ path?: string;
10835
+ actionId?: string;
10836
+ requiredKeys?: string[];
10837
+ missingKeys?: string[];
10838
+ expectedType?: string;
10839
+ actualType?: string;
10840
+ }
10841
+ interface GlobalActionValidationTarget {
10842
+ ref: GlobalActionRef | null | undefined;
10843
+ catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null;
10844
+ path?: string;
10845
+ }
10846
+ declare function normalizeGlobalActionRef(ref: GlobalActionRef | null | undefined): GlobalActionRef | null;
10847
+ declare function isGlobalActionRef(value: unknown): value is GlobalActionRef;
10848
+ declare function getRequiredGlobalActionPayloadKeys(actionId: string | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
10849
+ declare function hasMeaningfulGlobalActionPayloadValue(value: any): boolean;
10850
+ declare function getMissingGlobalActionPayloadKeys(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
10851
+ declare function isRequiredGlobalActionParamPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
10852
+ declare function isRequiredGlobalActionPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
10853
+ declare function getGlobalActionPayloadActualType(value: unknown): string;
10854
+ declare function getGlobalActionPayloadTypeIssue(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): Pick<GlobalActionValidationIssue, 'expectedType' | 'actualType'> | null;
10855
+ declare function validateGlobalActionRef(ref: GlobalActionRef | null | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null, path?: string): GlobalActionValidationIssue[];
10856
+ declare function validateGlobalActionRefs(targets: GlobalActionValidationTarget[]): GlobalActionValidationIssue[];
10857
+
10466
10858
  interface SurfaceOpenPreset {
10467
10859
  id: string;
10468
10860
  label: string;
@@ -10591,6 +10983,205 @@ interface AiConcept {
10591
10983
  }
10592
10984
  type AiConceptPack = Record<string, AiConcept>;
10593
10985
 
10986
+ /**
10987
+ * Representa o contrato canônico de authoring executável de um componente.
10988
+ */
10989
+ interface ComponentAuthoringManifest {
10990
+ /** Versão do schema do manifesto (ex: 1.0.0) */
10991
+ schemaVersion: string;
10992
+ /** Identificador único do componente no registry (ex: praxis-table) */
10993
+ componentId: string;
10994
+ /** Nome do pacote npm que possui o componente (ex: @praxisui/table) */
10995
+ ownerPackage: string;
10996
+ /** ID do schema de configuração (ex: TableConfig) */
10997
+ configSchemaId: string;
10998
+ /** Versão do manifesto específico deste componente */
10999
+ manifestVersion: string;
11000
+ /** Inputs que o componente aceita em runtime */
11001
+ runtimeInputs: ManifestInput[];
11002
+ /** Alvos que podem ser editados via AI */
11003
+ editableTargets: ManifestTarget[];
11004
+ /** Operações atômicas permitidas */
11005
+ operations: ManifestOperation[];
11006
+ /** Validadores de integridade da configuração */
11007
+ validators: ManifestValidator[];
11008
+ /** Requisitos para round-trip sem perda de informação */
11009
+ roundTripRequirements?: string[];
11010
+ /**
11011
+ * Exemplos de intenção → operação para uso em Few-Shot e evals.
11012
+ * Obrigatório: o gate de aceitação rejeita manifestos sem examples.
11013
+ * Deve conter ao menos um exemplo negativo (isPositive: false).
11014
+ */
11015
+ examples: ManifestExample[];
11016
+ /**
11017
+ * Perfis opcionais para familias de componentes que compartilham um manifesto
11018
+ * base, mas precisam expor semantica granular por componente/controlType.
11019
+ */
11020
+ controlProfiles?: ManifestControlProfile[];
11021
+ }
11022
+ interface ManifestInput {
11023
+ name: string;
11024
+ type: string;
11025
+ description?: string;
11026
+ allowedValues?: any[];
11027
+ }
11028
+ interface ManifestTarget {
11029
+ kind: string;
11030
+ resolver: string;
11031
+ description: string;
11032
+ }
11033
+ /**
11034
+ * Política de submissão para campos locais num formulário.
11035
+ * - 'omit': campo não é incluído no payload de submissão (default para campos locais).
11036
+ * - 'include': campo é sempre incluído no payload.
11037
+ * - 'includeWhenDirty': campo é incluído apenas se o valor foi alterado pelo usuário.
11038
+ * NOTA: 'transient' NÃO é um valor válido; use source:'local' + transient:true no schema de input.
11039
+ */
11040
+ type SubmitPolicy = 'omit' | 'include' | 'includeWhenDirty';
11041
+ type ManifestSubmissionImpact = 'none' | 'visual-only' | 'config-only' | 'affects-submission' | 'affects-schema-backed-data' | 'affects-remote-binding';
11042
+ interface ManifestOperation {
11043
+ operationId: string;
11044
+ title: string;
11045
+ /**
11046
+ * Escopo da operação.
11047
+ * - 'global': opera sobre a configuração raiz; target.required deve ser false.
11048
+ * - Outros valores: opera sobre um alvo específico; target.required deve ser true.
11049
+ * O valor 'target' é reservado para uso futuro e não deve ser usado.
11050
+ */
11051
+ scope: 'global' | 'column' | 'section' | 'row' | 'cell' | 'field' | 'rule' | 'itemTemplate' | 'itemAction' | 'selection' | 'layout' | 'rowLayout' | 'dataBinding' | 'interaction' | 'expansion' | 'rules' | 'meta' | 'skin' | 'templating' | 'toolbarUi' | 'export' | 'localization' | 'accessibility' | 'eventMapping' | 'controlType' | 'controlAlias' | 'editorialDescriptor' | 'selectorMapping' | 'fieldMetadataPath' | 'runtimeCoverage' | 'editorCoverage';
11052
+ /**
11053
+ * @deprecated Use `target.kind` em vez disso.
11054
+ * Mantido para compatibilidade retroativa com ferramentas que lêem o registry.
11055
+ * Deve ser igual a `target.kind` quando `target` estiver presente.
11056
+ */
11057
+ targetKind?: string;
11058
+ /**
11059
+ * Definição estruturada do alvo da operação.
11060
+ * Obrigatório para operações com scope diferente de 'global'.
11061
+ * Usado pelo backend para resolver o alvo antes de compilar o patch.
11062
+ */
11063
+ target?: {
11064
+ /** Tipo do alvo (ex: column, rule) */
11065
+ kind: string;
11066
+ /** Resolver canônico usado para localizar o alvo (ex: column-by-field) */
11067
+ resolver: string;
11068
+ /** Política para lidar com ambiguidades na resolução */
11069
+ ambiguityPolicy?: 'fail' | 'first' | 'all';
11070
+ /** Se o alvo é obrigatório para a operação */
11071
+ required: boolean;
11072
+ };
11073
+ /** Schema JSON do payload de entrada da operação */
11074
+ inputSchema: any;
11075
+ /**
11076
+ * Efeitos que a operação causa na configuração.
11077
+ * Usado pelo backend para compilar o patch de forma determinística.
11078
+ */
11079
+ effects: ManifestEffect[];
11080
+ /** Se true, a operação é destrutiva e pode causar perda de dados/configuração */
11081
+ destructive?: boolean;
11082
+ /**
11083
+ * Se true, o agente DEVE solicitar confirmação explícita antes de aplicar.
11084
+ * Obrigatório para todas as operações com destructive:true.
11085
+ */
11086
+ requiresConfirmation?: boolean;
11087
+ /** IDs dos validadores que devem ser executados para esta operação */
11088
+ validators?: string[];
11089
+ /**
11090
+ * Caminhos (JSON Path-like) na configuração afetados por esta operação.
11091
+ * Deve cobrir todos os paths tocados pelos effects.
11092
+ * Usado pelo backend para validação de acesso e auditoria de mudanças.
11093
+ */
11094
+ affectedPaths: string[];
11095
+ /**
11096
+ * Impacto declarado da operação sobre submissão, configuração visual ou binding remoto.
11097
+ * Boolean permanece aceito para manifests legados; manifests semanticamente validados devem usar
11098
+ * ManifestSubmissionImpact para evitar inferencia fragil no backend.
11099
+ */
11100
+ submissionImpact: ManifestSubmissionImpact | boolean;
11101
+ /**
11102
+ * Condições de estado que devem ser verdadeiras antes de executar a operação.
11103
+ * Usado pelo backend para validação prévia ao patch.
11104
+ * Ex: ['config-initialized', 'target-exists']
11105
+ */
11106
+ preconditions: string[];
11107
+ }
11108
+ /**
11109
+ * Efeito atômico sobre a configuração.
11110
+ * Usa discriminated union por `kind` para documentar quais campos são obrigatórios:
11111
+ *
11112
+ * - 'merge-object': path obrigatório; funde o payload no objeto no path.
11113
+ * - 'merge-by-key': path + key obrigatórios; funde pelo campo-chave em uma coleção.
11114
+ * - 'append-unique': path + key obrigatórios; adiciona item se não existir (deduplicação por key).
11115
+ * - 'remove-by-key': path + key obrigatórios; remove item da coleção pelo valor da key.
11116
+ * - 'reorder-by-key': path + key obrigatórios; reordena coleção por key.
11117
+ * - 'set-value': path obrigatório; seta o valor diretamente no path.
11118
+ * - 'compile-domain-patch': handler obrigatório; delega compilação a um handler especializado.
11119
+ */
11120
+ interface ManifestEffect {
11121
+ kind: 'merge-object' | 'merge-by-key' | 'append-unique' | 'remove-by-key' | 'reorder-by-key' | 'set-value' | 'compile-domain-patch';
11122
+ /** Path JSON-like na configuração onde o efeito é aplicado. Obrigatório para todos os kinds exceto 'compile-domain-patch'. */
11123
+ path?: string;
11124
+ /** Chave de identidade em coleções. Obrigatório para merge-by-key, append-unique, remove-by-key, reorder-by-key. */
11125
+ key?: string;
11126
+ /** ID do handler especializado. Obrigatório quando kind é 'compile-domain-patch'. */
11127
+ handler?: string;
11128
+ handlerContract?: ManifestDomainPatchHandlerContract;
11129
+ }
11130
+ interface ManifestDomainPatchHandlerContract {
11131
+ reads: string[];
11132
+ writes: string[];
11133
+ identityKeys: string[];
11134
+ inputSchema?: any;
11135
+ failureModes: string[];
11136
+ description: string;
11137
+ }
11138
+ interface ManifestValidator {
11139
+ validatorId: string;
11140
+ level: 'error' | 'warning' | 'info';
11141
+ code: string;
11142
+ description: string;
11143
+ }
11144
+ interface ManifestExample {
11145
+ id: string;
11146
+ request: string;
11147
+ operationId: string;
11148
+ target?: string;
11149
+ params?: any;
11150
+ isPositive?: boolean;
11151
+ }
11152
+ interface ManifestControlProfile {
11153
+ /** Identificador estavel do perfil dentro do manifesto familiar. */
11154
+ profileId: string;
11155
+ /** Nome curto usado por ferramentas de authoring. */
11156
+ title: string;
11157
+ /** Explica a semantica que este perfil adiciona sobre o manifesto base. */
11158
+ description: string;
11159
+ /** Regras deterministicas para projetar o perfil em componentes do registry. */
11160
+ appliesTo: ManifestControlProfileApplicability;
11161
+ /** Alvos adicionais ou refinados que este perfil torna editaveis. */
11162
+ editableTargets?: ManifestTarget[];
11163
+ /** Operacoes especificas do perfil/controlType. */
11164
+ operations: ManifestOperation[];
11165
+ /** Validadores especificos do perfil/controlType. */
11166
+ validators: ManifestValidator[];
11167
+ /** Exemplos/evals especificos do perfil/controlType. */
11168
+ examples: ManifestExample[];
11169
+ /** Requisitos adicionais de round-trip para este perfil. */
11170
+ roundTripRequirements?: string[];
11171
+ }
11172
+ interface ManifestControlProfileApplicability {
11173
+ /** IDs de componentes do registry que devem receber este perfil. */
11174
+ componentIds?: string[];
11175
+ /** Selectors publicos que devem receber este perfil. */
11176
+ selectors?: string[];
11177
+ /** Control types canonicos ou aliases que devem receber este perfil. */
11178
+ controlTypes?: string[];
11179
+ /** Tags de ComponentDocMeta usadas como fallback de classificacao. */
11180
+ tags?: string[];
11181
+ /** Tipos do input `metadata` usados como fallback de classificacao. */
11182
+ metadataInputTypes?: string[];
11183
+ }
11184
+
10594
11185
  /**
10595
11186
  * Catálogo de capacidades genéricas de FieldMetadata para uso da IA.
10596
11187
  * Baseado em projects/praxis-core/src/lib/models/component-metadata.interface.ts
@@ -10620,6 +11211,7 @@ declare module "./index" {
10620
11211
  shell: true;
10621
11212
  connections: true;
10622
11213
  context: true;
11214
+ state: true;
10623
11215
  }
10624
11216
  }
10625
11217
  type CapabilityCategory = AiCapabilityCategory;
@@ -10707,9 +11299,11 @@ interface ComponentMergePatch<TConfig extends Record<string, unknown> = Record<s
10707
11299
  declare const DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK: ComponentContextPack;
10708
11300
 
10709
11301
  interface WidgetEventPathSegment {
10710
- kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
11302
+ kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group' | 'widget';
10711
11303
  id?: string;
11304
+ key?: string;
10712
11305
  index?: number;
11306
+ componentType?: string;
10713
11307
  }
10714
11308
  interface WidgetEventEnvelope {
10715
11309
  /** Optional top-level page widget key that owns the event tree. */
@@ -10731,6 +11325,50 @@ interface WidgetResolutionDiagnostic {
10731
11325
  error?: unknown;
10732
11326
  }
10733
11327
 
11328
+ interface WidgetEventPathNormalizeOptions {
11329
+ /** Optional owner component id used to strip only the top-level container segment. */
11330
+ ownerComponentId?: string;
11331
+ }
11332
+ interface WidgetEventPathNormalizeInput {
11333
+ path?: WidgetEventPathSegment[];
11334
+ sourceChildWidgetKey?: string;
11335
+ sourceComponentId?: string;
11336
+ }
11337
+ declare function normalizeWidgetEventPath(event: WidgetEventEnvelope | WidgetEventPathNormalizeInput, options?: WidgetEventPathNormalizeOptions): ComponentPortPathSegment[];
11338
+
11339
+ interface NestedWidgetResolution {
11340
+ ownerWidgetKey: string;
11341
+ nestedPath: ComponentPortPathSegment[];
11342
+ widget: WidgetDefinition;
11343
+ componentId: string;
11344
+ childWidgetKey: string;
11345
+ }
11346
+ interface NestedWidgetInputPatchResult {
11347
+ widget: WidgetInstance;
11348
+ changed: boolean;
11349
+ }
11350
+ declare class NestedWidgetConfigAccessor {
11351
+ listNestedWidgets(owner: WidgetInstance): NestedWidgetResolution[];
11352
+ resolveNestedWidget(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined): WidgetDefinition | undefined;
11353
+ setNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string, value: unknown): NestedWidgetInputPatchResult;
11354
+ private listNestedWidgetsInDefinition;
11355
+ private resolveNestedWidgetInDefinition;
11356
+ private setNestedWidgetInputInDefinition;
11357
+ private listChildWidgetLocations;
11358
+ private listTabsWidgetLocations;
11359
+ private listExpansionWidgetLocations;
11360
+ private resolveWidgetArrayLocation;
11361
+ private resolveTabsWidgetArray;
11362
+ private resolveExpansionWidgetArray;
11363
+ private findBySegment;
11364
+ private segmentIdentity;
11365
+ private asWidgetDefinitions;
11366
+ private isWidgetDefinition;
11367
+ private resolveChildWidgetKey;
11368
+ private clone;
11369
+ private isEqual;
11370
+ }
11371
+
10734
11372
  type EditorialContentFormat = 'plain' | 'markdown';
10735
11373
  interface EditorialLinkDefinition {
10736
11374
  label: string;
@@ -11138,6 +11776,7 @@ interface LinkExecutionDelivery {
11138
11776
  widgetKey?: string;
11139
11777
  portId?: string;
11140
11778
  bindingPath?: string;
11779
+ nestedPath?: ComponentPortPathSegment[];
11141
11780
  }
11142
11781
  interface LinkExecutionResult {
11143
11782
  status: 'delivered' | 'skipped' | 'failed';
@@ -11224,6 +11863,7 @@ declare class CompositionRuntimeEngine {
11224
11863
  private readonly stateRuntime;
11225
11864
  private readonly traceService;
11226
11865
  private readonly pathAccessor;
11866
+ private readonly nestedWidgetAccessor;
11227
11867
  private definition;
11228
11868
  private readonly now;
11229
11869
  constructor(options?: CompositionRuntimeEngineOptions);
@@ -11240,6 +11880,7 @@ declare class CompositionRuntimeEngine {
11240
11880
  private cloneJson;
11241
11881
  private extractDerivedNodeKey;
11242
11882
  private appendDiagnosticTraceEntries;
11883
+ private createNestedWidgetEventBridgeDiagnostics;
11243
11884
  }
11244
11885
 
11245
11886
  interface CompositionRuntimeFacadeOptions {
@@ -11286,6 +11927,46 @@ type LegacyCompositionLinkInput = Omit<CompositionLink, 'condition' | 'policy' |
11286
11927
  declare function migrateLegacyCompositionLinks(links: LegacyCompositionLinkInput[] | undefined | null): CompositionLink[];
11287
11928
  declare function migrateLegacyCompositionLink(link: LegacyCompositionLinkInput): CompositionLink;
11288
11929
 
11930
+ interface NestedPortCatalogRegistry {
11931
+ get(id: string): Pick<ComponentDocMeta, 'ports'> | undefined;
11932
+ }
11933
+ interface ResolvedNestedPort {
11934
+ ownerWidgetKey: string;
11935
+ ownerComponentId?: string;
11936
+ nestedPath: ComponentPortPathSegment[];
11937
+ containerPath?: ComponentPortPathSegment[];
11938
+ port: PortContract;
11939
+ componentId: string;
11940
+ childWidgetKey: string;
11941
+ }
11942
+ interface NestedPortCatalogDiagnostic {
11943
+ code: 'NESTED_WIDGET_METADATA_MISSING' | 'NESTED_WIDGET_KEY_MISSING';
11944
+ severity: 'warning' | 'error';
11945
+ ownerWidgetKey: string;
11946
+ nestedPath: ComponentPortPathSegment[];
11947
+ componentId?: string;
11948
+ message: string;
11949
+ }
11950
+ interface NestedPortCatalogResult {
11951
+ ports: ResolvedNestedPort[];
11952
+ diagnostics: NestedPortCatalogDiagnostic[];
11953
+ }
11954
+ declare class NestedPortCatalogService {
11955
+ private readonly accessor;
11956
+ constructor(accessor?: NestedWidgetConfigAccessor);
11957
+ resolve(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry): NestedPortCatalogResult;
11958
+ resolveEndpoint(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry, options: {
11959
+ ownerWidgetKey: string;
11960
+ nestedPath: ComponentPortPathSegment[];
11961
+ portId: string;
11962
+ direction: PortContract['direction'];
11963
+ }): ResolvedNestedPort | undefined;
11964
+ private hasStableTerminalKey;
11965
+ private containerPath;
11966
+ private isSamePath;
11967
+ private clone;
11968
+ }
11969
+
11289
11970
  interface RenderedWidgetInstance extends WidgetInstance {
11290
11971
  renderClassName?: string;
11291
11972
  renderSpan?: number;
@@ -11372,6 +12053,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11372
12053
  private readonly route;
11373
12054
  private readonly conn;
11374
12055
  private readonly stateRuntime;
12056
+ private readonly nestedWidgetAccessor;
11375
12057
  private readonly settingsPanel;
11376
12058
  private readonly defaultShellEditor;
11377
12059
  private readonly defaultPageEditor;
@@ -11388,6 +12070,9 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11388
12070
  private applyBootstrapCompositionHydration;
11389
12071
  private reportStateDiagnostics;
11390
12072
  private dispatchWidgetEventToComposition;
12073
+ private matchesRuntimeSourceRef;
12074
+ private matchesLegacyWidgetEventSource;
12075
+ private areNestedPathsEqual;
11391
12076
  private stateFromCompositionSnapshot;
11392
12077
  private applyCompositionWidgetDeliveries;
11393
12078
  private buildStateContext;
@@ -11404,7 +12089,6 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11404
12089
  private handleSetInputCommand;
11405
12090
  private mergeOrder;
11406
12091
  private maybeExecuteMappedAction;
11407
- private maybeExecuteGlobalCommand;
11408
12092
  private resolveActionPayload;
11409
12093
  private resolveTemplate;
11410
12094
  private lookup;
@@ -11903,5 +12587,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
11903
12587
  /** Register a whitelist of allowed hook ids/patterns. */
11904
12588
  declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
11905
12589
 
11906
- export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, 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_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, 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, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, 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, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisLayerScaleCss, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, 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, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, normalizePraxisDataQueryContext, normalizeResourceAvailabilityReasonCode, 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, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, withMessage, withPraxisHttpLoading };
11907
- export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, 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, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, 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, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, 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, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, 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, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityOperation, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCardNode, RichComposeNode, RichContentDocument, RichIconNode, RichImageNode, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineItem, RichTimelineNode, RowAction, RowActionsConfig, RuleContextRoot, 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, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
12590
+ export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, 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, GLOBAL_ACTION_HANDLERS, 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, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, 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_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, 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, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, 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, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisLayerScaleCss, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizePath, normalizePraxisDataQueryContext, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
12591
+ export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, 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, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, 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, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormFieldLayoutItem, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, 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, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, 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, LookupCapabilitiesMetadata, LookupDetailMetadata, LookupSelectionPolicyMetadata, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, 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, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, 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, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportField, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCardNode, RichComposeNode, RichContentDocument, RichIconNode, RichImageNode, RichLinkNode, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineItem, RichTimelineNode, RowAction, RowActionsConfig, RuleContextRoot, 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, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };