@praxisui/core 8.0.0-beta.2 → 8.0.0-beta.20

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,20 +76,220 @@ interface LocateRequest {
76
76
  sort?: string[];
77
77
  }
78
78
 
79
- interface OptionSourceMetadata {
79
+ type OptionSourceType = 'RESOURCE_ENTITY' | 'DISTINCT_DIMENSION' | 'CATEGORICAL_BUCKET' | 'LIGHT_LOOKUP' | 'STATIC_CANONICAL';
80
+ type OptionSourceSearchMode = 'none' | 'starts-with' | 'contains' | 'exact';
81
+ type OptionSourceCachePolicy = 'none' | 'request-scope' | 'session-scope' | 'etag-aware';
82
+ type LookupOpenDetailMode = 'samePage' | 'newTab' | 'drawer' | 'modal';
83
+ type LookupStatusTone = 'success' | 'warning' | 'danger' | 'neutral';
84
+ type LookupDialogSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
85
+ type LookupFilterFieldType = 'text' | 'enum' | 'date' | 'number' | 'reference';
86
+ type LookupFilterOperator = 'contains' | 'startsWith' | 'equals' | 'in' | 'before' | 'after' | 'between' | 'gt' | 'gte' | 'lt' | 'lte';
87
+ type EntityLookupSelectedLayout = 'card' | 'inline' | 'compact' | 'token';
88
+ type EntityLookupResultLayout = 'list' | 'denseList' | 'table' | 'card';
89
+ type EntityLookupSinglePayloadMode = 'id' | 'entityRef';
90
+ type EntityLookupMultiplePayloadMode = 'ids' | 'entityRefs';
91
+ type EntityLookupPayloadMode = EntityLookupSinglePayloadMode | EntityLookupMultiplePayloadMode;
92
+ interface EntityLookupCollectionMetadata {
93
+ multiple?: boolean;
94
+ maxSelections?: number;
95
+ allowDuplicates?: boolean;
96
+ }
97
+ interface LookupSelectionPolicyMetadata {
98
+ selectablePropertyPath?: string;
99
+ statusPropertyPath?: string;
100
+ allowedStatuses?: string[];
101
+ blockedStatuses?: string[];
102
+ allowRetainInvalidExistingValue?: boolean;
103
+ disabledReasonTemplate?: string;
104
+ validationMessageTemplate?: string;
105
+ }
106
+ interface LookupCapabilitiesMetadata {
107
+ filter?: boolean;
108
+ byIds?: boolean;
109
+ detail?: boolean;
110
+ create?: boolean;
111
+ edit?: boolean;
112
+ navigateToDetail?: boolean;
113
+ multiSelect?: boolean;
114
+ recent?: boolean;
115
+ favorites?: boolean;
116
+ auditSnapshot?: boolean;
117
+ }
118
+ interface LookupDetailMetadata {
119
+ hrefTemplate?: string;
120
+ routeTemplate?: string;
121
+ openDetailMode?: LookupOpenDetailMode;
122
+ }
123
+ interface LookupCreateMetadata {
124
+ hrefTemplate?: string;
125
+ routeTemplate?: string;
126
+ openMode?: LookupOpenDetailMode;
127
+ }
128
+ interface LookupFilterDefinitionMetadata {
129
+ field: string;
130
+ label?: string;
131
+ type: LookupFilterFieldType;
132
+ operators: LookupFilterOperator[];
133
+ defaultOperator?: LookupFilterOperator;
134
+ optionsSource?: string;
135
+ required?: boolean;
136
+ hidden?: boolean;
137
+ }
138
+ interface LookupSortOptionMetadata {
80
139
  key: string;
140
+ field: string;
141
+ direction: 'asc' | 'desc';
142
+ label?: string;
143
+ }
144
+ interface LookupFilteringMetadata {
145
+ availableFilters?: LookupFilterDefinitionMetadata[];
146
+ defaultFilters?: Record<string, unknown[]>;
147
+ sortOptions?: LookupSortOptionMetadata[];
148
+ defaultSort?: string;
149
+ quickFilterFields?: string[];
150
+ searchPlaceholder?: string;
151
+ }
152
+ interface LookupDialogMetadata {
153
+ enabled?: boolean;
154
+ title?: string;
155
+ size?: LookupDialogSize;
156
+ previewPanel?: boolean;
157
+ allowColumnChooser?: boolean;
158
+ allowSavedViews?: boolean;
159
+ resultColumns?: LookupResultColumnMetadata[];
160
+ openActionLabel?: string;
161
+ applyActionLabel?: string;
162
+ cancelActionLabel?: string;
163
+ }
164
+ type LookupResultColumnKind = 'code' | 'label' | 'description' | 'status' | 'disabledReason' | 'custom';
165
+ interface LookupResultColumnMetadata {
166
+ field: string;
167
+ label?: string;
168
+ kind?: LookupResultColumnKind;
169
+ width?: string;
170
+ }
171
+ interface LookupFilterRequest {
172
+ field: string;
173
+ operator: LookupFilterOperator;
174
+ value: unknown;
175
+ }
176
+ interface OptionSourceFilterRequest<ID = string | number, FD = unknown> {
177
+ filter?: FD | null;
178
+ filters?: LookupFilterRequest[];
179
+ search?: string;
180
+ sort?: string;
181
+ includeIds?: ID[];
182
+ }
183
+ interface EntityLookupActionsMetadata {
184
+ showDetail?: boolean;
185
+ showChange?: boolean;
186
+ showCopyCode?: boolean;
187
+ showCopyId?: boolean;
188
+ showCreate?: boolean;
189
+ showClear?: boolean;
190
+ }
191
+ interface EntityLookupDisplayMetadata {
192
+ selectedLayout?: EntityLookupSelectedLayout;
193
+ resultLayout?: EntityLookupResultLayout;
194
+ showCode?: boolean;
195
+ showDescription?: boolean;
196
+ showStatus?: boolean;
197
+ showAvatar?: boolean;
198
+ showBadges?: boolean;
199
+ showDisabledReason?: boolean;
200
+ showResultCount?: boolean;
201
+ statusToneMap?: Record<string, LookupStatusTone>;
202
+ badgeKeys?: string[];
203
+ maxVisibleBadges?: number;
204
+ detailActionLabel?: string;
205
+ changeActionLabel?: string;
206
+ copyCodeActionLabel?: string;
207
+ copyIdActionLabel?: string;
208
+ createActionLabel?: string;
209
+ clearActionLabel?: string;
210
+ actions?: EntityLookupActionsMetadata;
211
+ }
212
+ interface EntityRef<ID = string | number> {
213
+ id: ID;
81
214
  type?: string;
215
+ }
216
+ interface EntityLookupResultExtra {
217
+ code?: string;
218
+ description?: string;
219
+ status?: string;
220
+ statusLabel?: string;
221
+ statusTone?: LookupStatusTone;
222
+ selectable?: boolean;
223
+ disabledReason?: string;
224
+ detailHref?: string;
225
+ detailRoute?: string;
226
+ resourcePath?: string;
227
+ entityKey?: string;
228
+ badges?: string[];
229
+ tags?: string[];
230
+ riskLevel?: string;
231
+ homologationStatus?: string;
232
+ [key: string]: unknown;
233
+ }
234
+ interface EntityLookupResult<ID = string | number> {
235
+ id: ID;
236
+ label: string;
237
+ extra?: EntityLookupResultExtra;
238
+ }
239
+ type EntityLookupResultState = 'selectable' | 'blocked' | 'legacy';
240
+ interface EntityLookupResultStateContext {
241
+ allowRetainInvalidExistingValue?: boolean;
242
+ }
243
+ interface OptionSourceMetadata {
244
+ key: string;
245
+ type?: OptionSourceType;
82
246
  resourcePath?: string;
83
247
  filterField?: string;
84
248
  propertyPath?: string;
85
249
  labelPropertyPath?: string;
86
250
  valuePropertyPath?: string;
87
251
  dependsOn?: string[];
252
+ entityKey?: string;
253
+ codePropertyPath?: string;
254
+ descriptionPropertyPaths?: string[];
255
+ statusPropertyPath?: string;
256
+ disabledPropertyPath?: string;
257
+ disabledReasonPropertyPath?: string;
258
+ searchPropertyPaths?: string[];
259
+ dependencyFilterMap?: Record<string, string>;
260
+ selectionPolicy?: LookupSelectionPolicyMetadata;
261
+ capabilities?: LookupCapabilitiesMetadata;
262
+ detail?: LookupDetailMetadata;
263
+ create?: LookupCreateMetadata;
264
+ filtering?: LookupFilteringMetadata;
88
265
  excludeSelfField?: boolean;
89
- searchMode?: string;
266
+ searchMode?: OptionSourceSearchMode;
90
267
  pageSize?: number;
91
268
  includeIds?: boolean;
92
- }
269
+ cachePolicy?: OptionSourceCachePolicy;
270
+ }
271
+ declare function isEntityLookupResultSelectable(result?: Pick<EntityLookupResult<any>, 'extra'> | null): boolean;
272
+ declare function isEntityLookupPayloadMode(value: unknown): value is EntityLookupPayloadMode;
273
+ declare function isEntityLookupSinglePayloadMode(value: unknown): value is EntityLookupSinglePayloadMode;
274
+ declare function isEntityLookupMultiplePayloadMode(value: unknown): value is EntityLookupMultiplePayloadMode;
275
+ declare function isLookupFilterFieldType(value: unknown): value is LookupFilterFieldType;
276
+ declare function isLookupFilterOperator(value: unknown): value is LookupFilterOperator;
277
+ declare function isLookupDialogSize(value: unknown): value is LookupDialogSize;
278
+ declare function normalizeLookupFilterRequest(filter: LookupFilterRequest): LookupFilterRequest;
279
+ declare function serializeOptionSourceFilterRequest<ID = string | number, FD = unknown>(filter: FD | null | undefined, options?: {
280
+ filters?: LookupFilterRequest[] | null;
281
+ search?: string | null;
282
+ sort?: string | null;
283
+ includeIds?: ID[] | null;
284
+ }): OptionSourceFilterRequest<ID, FD>;
285
+ declare function resolveEntityLookupPayloadMode(payloadMode: unknown, multiple?: boolean): EntityLookupPayloadMode;
286
+ declare function isEntityLookupPayloadModeCompatible(payloadMode: unknown, multiple?: boolean): boolean;
287
+ declare function serializeEntityLookupValueForPayload(value: unknown, options?: {
288
+ payloadMode?: unknown;
289
+ multiple?: boolean;
290
+ entityType?: string;
291
+ }): unknown;
292
+ declare function classifyEntityLookupResult(result?: Pick<EntityLookupResult<any>, 'extra'> | null, context?: EntityLookupResultStateContext): EntityLookupResultState;
93
293
 
94
294
  type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
95
295
  type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
@@ -146,12 +346,15 @@ interface RichBlockRuleSet {
146
346
  expr: JsonLogicExpression;
147
347
  }>;
148
348
  }
349
+ type RichCapabilityMode = 'all' | 'any';
149
350
  interface RichBlockBaseNode extends RichBlockRuleSet {
150
351
  id?: string;
151
352
  testId?: string;
152
353
  className?: string;
153
354
  style?: Record<string, string | number>;
154
355
  bindings?: RichBlockContextConfig;
356
+ requiresCapabilities?: string[];
357
+ capabilityMode?: RichCapabilityMode;
155
358
  }
156
359
  interface RichTextNode extends RichBlockBaseNode {
157
360
  type: 'text';
@@ -170,6 +373,14 @@ interface RichImageNode extends RichBlockBaseNode {
170
373
  alt?: string;
171
374
  altExpr?: string;
172
375
  }
376
+ interface RichLinkNode extends RichBlockBaseNode {
377
+ type: 'link';
378
+ label?: string;
379
+ labelExpr?: string;
380
+ href: string;
381
+ target?: '_blank' | '_self';
382
+ rel?: string;
383
+ }
173
384
  interface RichBadgeNode extends RichBlockBaseNode {
174
385
  type: 'badge';
175
386
  label?: string;
@@ -200,7 +411,23 @@ interface RichProgressNode extends RichBlockBaseNode {
200
411
  labelExpr?: string;
201
412
  showPercent?: boolean;
202
413
  }
203
- type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode;
414
+ interface RichActionRef {
415
+ actionId: string;
416
+ payload?: unknown;
417
+ payloadExpr?: string;
418
+ availabilityExpr?: string;
419
+ confirmMessage?: string;
420
+ }
421
+ interface RichActionButtonNode extends RichBlockBaseNode {
422
+ type: 'actionButton';
423
+ label?: string;
424
+ labelExpr?: string;
425
+ icon?: string;
426
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
427
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
428
+ action: RichActionRef;
429
+ }
430
+ type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichLinkNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode | RichActionButtonNode;
204
431
  interface RichComposeNode extends RichBlockBaseNode {
205
432
  type: 'compose';
206
433
  direction?: 'row' | 'column';
@@ -208,6 +435,39 @@ interface RichComposeNode extends RichBlockBaseNode {
208
435
  wrap?: boolean;
209
436
  items: RichPresenterNode[];
210
437
  }
438
+ type RichCardVariant = 'plain' | 'outlined' | 'elevated' | 'filled' | 'transparent';
439
+ type RichCardTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
440
+ type RichCardSize = 'sm' | 'md' | 'lg';
441
+ type RichCardDensity = 'compact' | 'comfortable';
442
+ type RichCardOrientation = 'vertical' | 'horizontal';
443
+ type RichCardMediaKind = 'image' | 'video' | 'icon' | 'avatar';
444
+ type RichCardMediaPlacement = 'top' | 'leading' | 'trailing' | 'background';
445
+ interface RichCardMedia {
446
+ kind: RichCardMediaKind;
447
+ src?: string;
448
+ srcExpr?: string;
449
+ alt?: string;
450
+ altExpr?: string;
451
+ icon?: string;
452
+ label?: string;
453
+ labelExpr?: string;
454
+ placement?: RichCardMediaPlacement;
455
+ aspectRatio?: string;
456
+ }
457
+ type RichCardInteractionMode = 'none' | 'action' | 'selectable';
458
+ interface RichCardInteraction {
459
+ mode: RichCardInteractionMode;
460
+ action?: RichActionRef;
461
+ selected?: boolean;
462
+ selectedExpr?: string;
463
+ }
464
+ interface RichCardAccessibility {
465
+ role?: 'article' | 'group' | 'button';
466
+ ariaLabel?: string;
467
+ ariaLabelExpr?: string;
468
+ ariaLabelledBy?: string;
469
+ ariaDescribedBy?: string;
470
+ }
211
471
  interface RichCardNode extends RichBlockBaseNode {
212
472
  type: 'card';
213
473
  title?: string;
@@ -215,6 +475,303 @@ interface RichCardNode extends RichBlockBaseNode {
215
475
  subtitle?: string;
216
476
  subtitleExpr?: string;
217
477
  content: Array<RichPresenterNode | RichComposeNode>;
478
+ media?: RichCardMedia;
479
+ headerAction?: RichActionButtonNode;
480
+ header?: RichBlockNode[];
481
+ body?: RichBlockNode[];
482
+ footer?: RichBlockNode[];
483
+ actions?: RichActionButtonNode[];
484
+ aside?: RichBlockNode[];
485
+ variant?: RichCardVariant;
486
+ tone?: RichCardTone;
487
+ size?: RichCardSize;
488
+ density?: RichCardDensity;
489
+ orientation?: RichCardOrientation;
490
+ loading?: boolean;
491
+ loadingExpr?: string;
492
+ active?: boolean;
493
+ activeExpr?: string;
494
+ interaction?: RichCardInteraction;
495
+ accessibility?: RichCardAccessibility;
496
+ }
497
+ interface RichCalloutNode extends RichBlockBaseNode {
498
+ type: 'callout';
499
+ tone?: 'info' | 'success' | 'warning' | 'danger' | 'neutral';
500
+ icon?: string;
501
+ title?: string;
502
+ titleExpr?: string;
503
+ message?: string;
504
+ messageExpr?: string;
505
+ actions?: RichActionButtonNode[];
506
+ }
507
+ type RichCtaGroupLayout = 'stacked' | 'split';
508
+ interface RichCtaGroupNode extends RichBlockBaseNode {
509
+ type: 'ctaGroup';
510
+ title?: string;
511
+ titleExpr?: string;
512
+ subtitle?: string;
513
+ subtitleExpr?: string;
514
+ message?: string;
515
+ messageExpr?: string;
516
+ layout?: RichCtaGroupLayout;
517
+ actions: RichActionButtonNode[];
518
+ }
519
+ interface RichKeyValueItem {
520
+ id?: string;
521
+ label?: string;
522
+ labelExpr?: string;
523
+ value?: string;
524
+ valueExpr?: string;
525
+ badge?: string;
526
+ badgeExpr?: string;
527
+ icon?: string;
528
+ }
529
+ interface RichKeyValueListNode extends RichBlockBaseNode {
530
+ type: 'keyValueList';
531
+ title?: string;
532
+ titleExpr?: string;
533
+ layout?: 'stacked' | 'inline';
534
+ items: RichKeyValueItem[];
535
+ }
536
+ type RichPropertySheetColumns = 1 | 2;
537
+ type RichPropertySheetTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
538
+ interface RichPropertySheetItem {
539
+ id?: string;
540
+ label?: string;
541
+ labelExpr?: string;
542
+ value?: string;
543
+ valueExpr?: string;
544
+ hint?: string;
545
+ hintExpr?: string;
546
+ icon?: string;
547
+ tone?: RichPropertySheetTone;
548
+ }
549
+ interface RichPropertySheetNode extends RichBlockBaseNode {
550
+ type: 'propertySheet';
551
+ title?: string;
552
+ titleExpr?: string;
553
+ columns?: RichPropertySheetColumns;
554
+ items: RichPropertySheetItem[];
555
+ }
556
+ type RichStatGroupLayout = 'stacked' | 'inline' | 'grid';
557
+ type RichStatTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
558
+ interface RichStatItem {
559
+ id?: string;
560
+ label?: string;
561
+ labelExpr?: string;
562
+ value?: string;
563
+ valueExpr?: string;
564
+ caption?: string;
565
+ captionExpr?: string;
566
+ icon?: string;
567
+ tone?: RichStatTone;
568
+ }
569
+ interface RichStatGroupNode extends RichBlockBaseNode {
570
+ type: 'statGroup';
571
+ title?: string;
572
+ titleExpr?: string;
573
+ subtitle?: string;
574
+ subtitleExpr?: string;
575
+ layout?: RichStatGroupLayout;
576
+ items: RichStatItem[];
577
+ }
578
+ type RichTabsAppearance = 'underline' | 'pills';
579
+ interface RichTabsItem extends RichBlockRuleSet {
580
+ id?: string;
581
+ label?: string;
582
+ labelExpr?: string;
583
+ icon?: string;
584
+ badge?: string;
585
+ badgeExpr?: string;
586
+ requiresCapabilities?: string[];
587
+ capabilityMode?: RichCapabilityMode;
588
+ content: RichBlockNode[];
589
+ }
590
+ interface RichTabsNode extends RichBlockBaseNode {
591
+ type: 'tabs';
592
+ title?: string;
593
+ titleExpr?: string;
594
+ subtitle?: string;
595
+ subtitleExpr?: string;
596
+ appearance?: RichTabsAppearance;
597
+ defaultTabId?: string;
598
+ items: RichTabsItem[];
599
+ }
600
+ interface RichEmptyStateNode extends RichBlockBaseNode {
601
+ type: 'emptyState';
602
+ icon?: string;
603
+ title?: string;
604
+ titleExpr?: string;
605
+ message?: string;
606
+ messageExpr?: string;
607
+ actions?: RichActionButtonNode[];
608
+ }
609
+ interface RichRecordSummaryField {
610
+ id?: string;
611
+ label?: string;
612
+ labelExpr?: string;
613
+ value?: string;
614
+ valueExpr?: string;
615
+ }
616
+ interface RichRecordSummaryNode extends RichBlockBaseNode {
617
+ type: 'recordSummary';
618
+ title?: string;
619
+ titleExpr?: string;
620
+ subtitle?: string;
621
+ subtitleExpr?: string;
622
+ meta?: string;
623
+ metaExpr?: string;
624
+ fields: RichRecordSummaryField[];
625
+ actions?: RichActionButtonNode[];
626
+ }
627
+ type RichLookupResultStatus = 'idle' | 'resolved' | 'empty' | 'error';
628
+ interface RichLookupResultField {
629
+ id?: string;
630
+ label?: string;
631
+ labelExpr?: string;
632
+ value?: string;
633
+ valueExpr?: string;
634
+ hint?: string;
635
+ hintExpr?: string;
636
+ }
637
+ interface RichLookupResultNode extends RichBlockBaseNode {
638
+ type: 'lookupResult';
639
+ title?: string;
640
+ titleExpr?: string;
641
+ subtitle?: string;
642
+ subtitleExpr?: string;
643
+ status?: RichLookupResultStatus;
644
+ statusExpr?: string;
645
+ emptyText?: string;
646
+ emptyTextExpr?: string;
647
+ errorText?: string;
648
+ errorTextExpr?: string;
649
+ meta?: string;
650
+ metaExpr?: string;
651
+ fields: RichLookupResultField[];
652
+ actions?: RichActionButtonNode[];
653
+ }
654
+ interface RichLookupCardNode extends RichBlockBaseNode {
655
+ type: 'lookupCard';
656
+ title?: string;
657
+ titleExpr?: string;
658
+ subtitle?: string;
659
+ subtitleExpr?: string;
660
+ icon?: string;
661
+ status?: RichLookupResultStatus;
662
+ statusExpr?: string;
663
+ emptyText?: string;
664
+ emptyTextExpr?: string;
665
+ errorText?: string;
666
+ errorTextExpr?: string;
667
+ meta?: string;
668
+ metaExpr?: string;
669
+ ctaLabel?: string;
670
+ ctaLabelExpr?: string;
671
+ ctaIcon?: string;
672
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
673
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
674
+ action: RichActionRef;
675
+ fields: RichLookupResultField[];
676
+ secondaryActions?: RichActionButtonNode[];
677
+ }
678
+ interface RichRelatedRecordNode extends RichBlockBaseNode {
679
+ type: 'relatedRecord';
680
+ title?: string;
681
+ titleExpr?: string;
682
+ subtitle?: string;
683
+ subtitleExpr?: string;
684
+ relationLabel?: string;
685
+ relationLabelExpr?: string;
686
+ icon?: string;
687
+ meta?: string;
688
+ metaExpr?: string;
689
+ ctaLabel?: string;
690
+ ctaLabelExpr?: string;
691
+ ctaIcon?: string;
692
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
693
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
694
+ action?: RichActionRef;
695
+ fields: RichLookupResultField[];
696
+ secondaryActions?: RichActionButtonNode[];
697
+ }
698
+ interface RichActionCardNode extends RichBlockBaseNode {
699
+ type: 'actionCard';
700
+ title?: string;
701
+ titleExpr?: string;
702
+ subtitle?: string;
703
+ subtitleExpr?: string;
704
+ message?: string;
705
+ messageExpr?: string;
706
+ icon?: string;
707
+ meta?: string;
708
+ metaExpr?: string;
709
+ ctaLabel?: string;
710
+ ctaLabelExpr?: string;
711
+ ctaIcon?: string;
712
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
713
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
714
+ action: RichActionRef;
715
+ secondaryActions?: RichActionButtonNode[];
716
+ }
717
+ interface RichFormLauncherNode extends RichBlockBaseNode {
718
+ type: 'formLauncher';
719
+ title?: string;
720
+ titleExpr?: string;
721
+ subtitle?: string;
722
+ subtitleExpr?: string;
723
+ description?: string;
724
+ descriptionExpr?: string;
725
+ icon?: string;
726
+ formId?: string;
727
+ ctaLabel?: string;
728
+ ctaLabelExpr?: string;
729
+ ctaIcon?: string;
730
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
731
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
732
+ action: RichActionRef;
733
+ secondaryActions?: RichActionButtonNode[];
734
+ }
735
+ interface RichCollapsibleCardNode extends RichBlockBaseNode {
736
+ type: 'collapsibleCard';
737
+ title?: string;
738
+ titleExpr?: string;
739
+ subtitle?: string;
740
+ subtitleExpr?: string;
741
+ icon?: string;
742
+ defaultExpanded?: boolean;
743
+ actions?: RichActionButtonNode[];
744
+ content: RichBlockNode[];
745
+ }
746
+ interface RichDisclosureNode extends RichBlockBaseNode {
747
+ type: 'disclosure';
748
+ title?: string;
749
+ titleExpr?: string;
750
+ subtitle?: string;
751
+ subtitleExpr?: string;
752
+ icon?: string;
753
+ appearance?: 'plain' | 'card';
754
+ defaultExpanded?: boolean;
755
+ actions?: RichActionButtonNode[];
756
+ content: RichBlockNode[];
757
+ }
758
+ interface RichAccordionItem {
759
+ id?: string;
760
+ title?: string;
761
+ titleExpr?: string;
762
+ subtitle?: string;
763
+ subtitleExpr?: string;
764
+ icon?: string;
765
+ defaultExpanded?: boolean;
766
+ actions?: RichActionButtonNode[];
767
+ content: RichBlockNode[];
768
+ }
769
+ interface RichAccordionNode extends RichBlockBaseNode {
770
+ type: 'accordion';
771
+ title?: string;
772
+ titleExpr?: string;
773
+ multi?: boolean;
774
+ items: RichAccordionItem[];
218
775
  }
219
776
  interface RichMediaBlockNode extends RichBlockBaseNode {
220
777
  type: 'mediaBlock';
@@ -232,16 +789,37 @@ interface RichTimelineItem {
232
789
  subtitleExpr?: string;
233
790
  meta?: string;
234
791
  metaExpr?: string;
792
+ opposite?: string;
793
+ oppositeExpr?: string;
235
794
  icon?: string;
236
795
  iconExpr?: string;
237
796
  badge?: string;
238
797
  badgeExpr?: string;
239
- }
798
+ markerColor?: RichTimelineColor;
799
+ markerStyle?: RichTimelineMarkerStyle;
800
+ connectorColor?: RichTimelineColor;
801
+ connectorVariant?: RichTimelineConnectorVariant;
802
+ }
803
+ type RichTimelinePosition = 'left' | 'right' | 'alternate' | 'alternate-reverse';
804
+ type RichTimelineOrientation = 'vertical' | 'horizontal';
805
+ type RichTimelineOrder = 'normal' | 'reverse';
806
+ type RichTimelineConnectorVariant = 'solid' | 'dashed' | 'none';
807
+ type RichTimelineMarkerVariant = 'dot' | 'icon' | 'number';
808
+ type RichTimelineMarkerStyle = 'filled' | 'outlined';
809
+ type RichTimelineColor = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'error' | 'info' | 'neutral';
240
810
  interface RichTimelineNode extends RichBlockBaseNode {
241
811
  type: 'timeline';
242
812
  title?: string;
243
813
  titleExpr?: string;
244
814
  emptyText?: string;
815
+ orientation?: RichTimelineOrientation;
816
+ order?: RichTimelineOrder;
817
+ position?: RichTimelinePosition;
818
+ connectorVariant?: RichTimelineConnectorVariant;
819
+ connectorColor?: RichTimelineColor;
820
+ markerVariant?: RichTimelineMarkerVariant;
821
+ markerColor?: RichTimelineColor;
822
+ markerStyle?: RichTimelineMarkerStyle;
245
823
  items: RichTimelineItem[];
246
824
  }
247
825
  type CorePresetKind = 'surface-open' | 'widget-page-layout' | 'widget-page-theme' | 'editorial-theme' | 'editorial-compliance' | 'editorial-solution' | 'rich-block';
@@ -271,6 +849,8 @@ interface CorePresetDiscoveryRegistry {
271
849
  }
272
850
  interface RichBlockHostCapabilities {
273
851
  dispatchAction?(actionId: string, payload?: unknown): void | Promise<void>;
852
+ isActionAvailable?(actionId: string): boolean;
853
+ hasCapability?(capabilityId: string): boolean;
274
854
  resolveEmbed?(kind: 'component' | 'templateRef' | 'formRef' | 'tableRef' | 'chartRef', ref: string, inputs?: Record<string, unknown>): unknown;
275
855
  resolvePreset?(ref: CorePresetRef): unknown;
276
856
  loadData?(request: {
@@ -283,7 +863,7 @@ interface RichBlockHostCapabilities {
283
863
  onLoadError?: 'hide' | 'error' | 'placeholder';
284
864
  };
285
865
  }
286
- type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichMediaBlockNode | RichTimelineNode;
866
+ type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
287
867
  type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
288
868
  interface RichContentDocument {
289
869
  kind: 'praxis.rich-content';
@@ -293,6 +873,180 @@ interface RichContentDocument {
293
873
  }
294
874
  declare function createEmptyRichContentDocument(): RichContentDocument;
295
875
 
876
+ type GlobalActionResult = {
877
+ success: boolean;
878
+ data?: any;
879
+ error?: string;
880
+ };
881
+ interface NavigationOpenRoutePayload {
882
+ path: string;
883
+ query?: Record<string, string | number | boolean | null | undefined>;
884
+ fragment?: string;
885
+ replaceUrl?: boolean;
886
+ state?: Record<string, unknown>;
887
+ }
888
+ interface GlobalActionRef {
889
+ actionId: string;
890
+ payload?: any;
891
+ payloadExpr?: string;
892
+ meta?: {
893
+ label?: string;
894
+ icon?: string;
895
+ emitLocal?: boolean;
896
+ confirmation?: any;
897
+ [key: string]: any;
898
+ };
899
+ }
900
+ type GlobalActionContext = {
901
+ sourceId?: string;
902
+ widgetKey?: string;
903
+ output?: string;
904
+ payload?: any;
905
+ pageContext?: Record<string, any> | null;
906
+ meta?: Record<string, any>;
907
+ runtime?: {
908
+ row?: any;
909
+ item?: any;
910
+ selection?: any;
911
+ formData?: any;
912
+ value?: any;
913
+ state?: any;
914
+ };
915
+ };
916
+ type GlobalActionHandler = (payload?: any, context?: GlobalActionContext) => Promise<GlobalActionResult> | GlobalActionResult;
917
+ interface GlobalActionHandlerEntry {
918
+ id: string;
919
+ handler: GlobalActionHandler;
920
+ }
921
+ interface GlobalDialogService {
922
+ alert: (payload: {
923
+ title?: string;
924
+ message?: string;
925
+ variant?: string;
926
+ }) => Promise<any> | any;
927
+ confirm: (payload: {
928
+ title?: string;
929
+ message?: string;
930
+ confirmLabel?: string;
931
+ cancelLabel?: string;
932
+ type?: 'danger' | 'warning' | 'info';
933
+ }) => Promise<boolean> | boolean;
934
+ prompt: (payload: {
935
+ title?: string;
936
+ message?: string;
937
+ placeholder?: string;
938
+ defaultValue?: string;
939
+ }) => Promise<any> | any;
940
+ open: (payload: {
941
+ componentId?: string;
942
+ inputs?: any;
943
+ size?: any;
944
+ data?: any;
945
+ }) => Promise<any> | any;
946
+ }
947
+ interface GlobalToastService {
948
+ success: (message: string, opts?: any) => void;
949
+ error: (message: string, opts?: any) => void;
950
+ }
951
+ interface GlobalAnalyticsService {
952
+ track: (eventName: string, payload?: any) => void;
953
+ }
954
+ interface GlobalApiClient {
955
+ get: (url: string, params?: Record<string, any>) => Promise<any> | any;
956
+ post: (url: string, body?: any) => Promise<any> | any;
957
+ patch: (url: string, body?: any) => Promise<any> | any;
958
+ }
959
+ interface GlobalRouteGuardResolver {
960
+ resolve: (guardId: string) => any;
961
+ }
962
+
963
+ type PraxisExportFormat = 'excel' | 'pdf' | 'csv' | 'json' | 'print';
964
+ type PraxisExportScope = 'auto' | 'selected' | 'filtered' | 'currentPage' | 'all';
965
+ type PraxisCollectionComponentType = 'table' | 'list' | string;
966
+ type PraxisCollectionSelectionMode = 'none' | 'single' | 'multiple';
967
+ type PraxisExportSortDirection = 'asc' | 'desc';
968
+ interface PraxisCollectionSelectionState<T = unknown> {
969
+ mode: PraxisCollectionSelectionMode;
970
+ keyField?: string;
971
+ selectedKeys?: Array<string | number>;
972
+ selectedItems?: T[];
973
+ allMatchingSelected?: boolean;
974
+ excludedKeys?: Array<string | number>;
975
+ }
976
+ interface PraxisCollectionExportField<T = unknown> {
977
+ key: string;
978
+ label?: string;
979
+ visible?: boolean;
980
+ exportable?: boolean;
981
+ type?: string;
982
+ valuePath?: string;
983
+ valueGetter?: (item: T) => unknown;
984
+ formatter?: (value: unknown, item: T) => unknown;
985
+ }
986
+ interface PraxisCollectionSortDescriptor {
987
+ field: string;
988
+ direction: PraxisExportSortDirection;
989
+ }
990
+ interface PraxisCollectionPaginationState {
991
+ pageIndex?: number;
992
+ pageNumber?: number;
993
+ pageSize?: number;
994
+ totalItems?: number;
995
+ }
996
+ interface PraxisCollectionExportSource<T = unknown> {
997
+ loadedItems?: T[];
998
+ resourcePath?: string;
999
+ query?: Record<string, unknown>;
1000
+ filters?: unknown;
1001
+ sort?: PraxisCollectionSortDescriptor[] | unknown;
1002
+ pagination?: PraxisCollectionPaginationState | unknown;
1003
+ }
1004
+ interface PraxisCollectionExportRequest<T = unknown> extends PraxisCollectionExportSource<T> {
1005
+ componentType: PraxisCollectionComponentType;
1006
+ componentId?: string;
1007
+ format: PraxisExportFormat;
1008
+ scope: PraxisExportScope;
1009
+ selection?: PraxisCollectionSelectionState<T>;
1010
+ fields?: PraxisCollectionExportField<T>[];
1011
+ includeHeaders?: boolean;
1012
+ applyFormatting?: boolean;
1013
+ maxRows?: number;
1014
+ fileName?: string;
1015
+ metadata?: Record<string, unknown>;
1016
+ }
1017
+ interface PraxisCollectionExportResult {
1018
+ status: 'completed' | 'deferred';
1019
+ format: PraxisExportFormat;
1020
+ scope: PraxisExportScope;
1021
+ fileName?: string;
1022
+ mimeType?: string;
1023
+ content?: string | Blob;
1024
+ downloadUrl?: string;
1025
+ jobId?: string;
1026
+ rowCount?: number;
1027
+ warnings?: string[];
1028
+ metadata?: Record<string, unknown>;
1029
+ }
1030
+ interface PraxisCollectionExportProvider {
1031
+ exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportResult | Promise<PraxisCollectionExportResult>;
1032
+ }
1033
+ interface PraxisExportSecurityPolicy {
1034
+ escapeFormulaValues: boolean;
1035
+ formulaPrefixes: readonly string[];
1036
+ formulaEscapePrefix: string;
1037
+ }
1038
+ declare const PRAXIS_EXPORT_FORMULA_PREFIXES: readonly ["=", "+", "-", "@", "\t", "\r"];
1039
+ declare const PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY: PraxisExportSecurityPolicy;
1040
+ declare function resolvePraxisExportScope<T>(request: PraxisCollectionExportRequest<T>): Exclude<PraxisExportScope, 'auto'>;
1041
+ declare function resolvePraxisCollectionExportItems<T>(request: PraxisCollectionExportRequest<T>): T[];
1042
+ declare function resolvePraxisExportFields<T>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportField<T>[];
1043
+ declare function readPraxisExportValue(item: unknown, path: string): unknown;
1044
+ declare function escapePraxisExportCell(value: unknown, policy?: PraxisExportSecurityPolicy): string;
1045
+ declare function serializePraxisCollectionToCsv<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): string;
1046
+ declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExportRequest<T>): string;
1047
+ declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
1048
+ declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
1049
+
296
1050
  /**
297
1051
  * Nova arquitetura modular do TableConfig v2.0
298
1052
  * Preparada para crescimento exponencial e alinhada com as 5 abas do editor
@@ -686,6 +1440,8 @@ interface TableBehaviorConfig {
686
1440
  sorting?: SortingConfig;
687
1441
  /** Configurações de filtragem */
688
1442
  filtering?: FilteringConfig;
1443
+ /** Configurações de agrupamento de linhas */
1444
+ grouping?: GroupingConfig;
689
1445
  /** Configurações de seleção de linhas */
690
1446
  selection?: SelectionConfig;
691
1447
  /** Configurações de interação do usuário */
@@ -920,6 +1676,14 @@ interface SortingConfig {
920
1676
  preserveSort?: boolean;
921
1677
  };
922
1678
  }
1679
+ interface GroupingConfig {
1680
+ /** Habilitar agrupamento */
1681
+ enabled: boolean;
1682
+ /** Campos usados para agrupamento */
1683
+ fields: string[];
1684
+ /** Se os grupos iniciam expandidos */
1685
+ expanded?: boolean;
1686
+ }
923
1687
  interface FilteringConfig {
924
1688
  /** Habilitar filtragem */
925
1689
  enabled: boolean;
@@ -1336,6 +2100,8 @@ interface ToolbarAction {
1336
2100
  disabled?: boolean;
1337
2101
  /** Função a executar */
1338
2102
  action: string;
2103
+ /** Acao global estruturada executada pelo host via GlobalActionService */
2104
+ globalAction?: GlobalActionRef;
1339
2105
  /** Tooltip */
1340
2106
  tooltip?: string;
1341
2107
  /** Tecla de atalho */
@@ -1405,6 +2171,11 @@ interface RowActionsConfig {
1405
2171
  menuIcon?: string;
1406
2172
  /** Cor do botão do menu de ações (overflow) */
1407
2173
  menuButtonColor?: 'basic' | 'primary' | 'accent' | 'warn';
2174
+ /** Descoberta HATEOAS/capabilities para enriquecer ações de linha */
2175
+ discovery?: {
2176
+ /** Habilitar descoberta contextual de actions/capabilities para a linha */
2177
+ enabled?: boolean;
2178
+ };
1408
2179
  /** Configurações do cabeçalho da coluna de ações */
1409
2180
  header?: {
1410
2181
  /** Texto exibido no cabeçalho (ex.: "Ações") */
@@ -1446,6 +2217,8 @@ interface RowAction {
1446
2217
  disabled?: boolean;
1447
2218
  /** Função a executar */
1448
2219
  action: string;
2220
+ /** Acao global estruturada executada pelo host via GlobalActionService */
2221
+ globalAction?: GlobalActionRef;
1449
2222
  /** Tooltip */
1450
2223
  tooltip?: string;
1451
2224
  /** Requer confirmação */
@@ -1484,6 +2257,8 @@ interface BulkAction {
1484
2257
  color?: string;
1485
2258
  /** Função a executar */
1486
2259
  action: string;
2260
+ /** Acao global estruturada executada pelo host via GlobalActionService */
2261
+ globalAction?: GlobalActionRef;
1487
2262
  /** Requer confirmação */
1488
2263
  requiresConfirmation?: boolean;
1489
2264
  /** Mínimo de itens selecionados */
@@ -1713,14 +2488,12 @@ interface ExportConfig {
1713
2488
  /** Templates personalizados */
1714
2489
  templates?: ExportTemplate[];
1715
2490
  }
1716
- type ExportFormat = 'excel' | 'pdf' | 'csv' | 'json' | 'print';
2491
+ type ExportFormat = PraxisExportFormat;
1717
2492
  interface GeneralExportConfig {
1718
2493
  /** Incluir cabeçalhos */
1719
2494
  includeHeaders: boolean;
1720
- /** Incluir filtros aplicados na exportação */
1721
- respectFilters: boolean;
1722
- /** Incluir apenas linhas selecionadas */
1723
- selectedRowsOnly?: boolean;
2495
+ /** Escopo canônico dos dados exportados */
2496
+ scope: PraxisExportScope;
1724
2497
  /** Máximo de linhas para exportar */
1725
2498
  maxRows?: number;
1726
2499
  /** Nome do arquivo padrão */
@@ -2293,6 +3066,7 @@ declare const FieldDataType: {
2293
3066
  readonly FILE: "file";
2294
3067
  readonly URL: "url";
2295
3068
  readonly BOOLEAN: "boolean";
3069
+ readonly ARRAY: "array";
2296
3070
  readonly JSON: "json";
2297
3071
  };
2298
3072
  type FieldDataType = typeof FieldDataType[keyof typeof FieldDataType];
@@ -2343,6 +3117,7 @@ declare const FieldControlType: {
2343
3117
  readonly DRAWER: "drawer";
2344
3118
  readonly DROP_DOWN_TREE: "dropDownTree";
2345
3119
  readonly EMAIL_INPUT: "email";
3120
+ readonly ENTITY_LOOKUP: "entityLookup";
2346
3121
  readonly EXPANSION_PANEL: "expansionPanel";
2347
3122
  readonly FILE_SAVER: "fileSaver";
2348
3123
  readonly FILE_SELECT: "fileSelect";
@@ -2585,6 +3360,52 @@ interface ConditionalValidationRule {
2585
3360
  /** Validators applied when the guard resolves to true. */
2586
3361
  validators: Omit<ValidatorOptions, 'conditionalValidation'>;
2587
3362
  }
3363
+ interface FieldArrayOperations {
3364
+ add?: boolean;
3365
+ edit?: boolean;
3366
+ remove?: boolean;
3367
+ [key: string]: any;
3368
+ }
3369
+ interface FieldArrayCollectionValidation {
3370
+ uniqueBy?: string[];
3371
+ exactlyOne?: {
3372
+ field: string;
3373
+ value?: any;
3374
+ message?: string;
3375
+ };
3376
+ atLeastOne?: {
3377
+ field: string;
3378
+ value?: any;
3379
+ message?: string;
3380
+ };
3381
+ sumEquals?: {
3382
+ field: string;
3383
+ targetField?: string;
3384
+ value?: number;
3385
+ message?: string;
3386
+ };
3387
+ [key: string]: any;
3388
+ }
3389
+ interface FieldArrayConfig {
3390
+ itemType?: 'object';
3391
+ mode?: 'cards';
3392
+ itemSchemaRef?: string;
3393
+ itemIdentityField?: string;
3394
+ minItems?: number;
3395
+ maxItems?: number;
3396
+ addLabel?: string;
3397
+ emptyState?: string;
3398
+ itemTitleTemplate?: string;
3399
+ operations?: FieldArrayOperations;
3400
+ deleteMode?: 'removeFromPayload';
3401
+ itemSchema?: {
3402
+ fields?: FieldMetadata[];
3403
+ properties?: Record<string, any>;
3404
+ [key: string]: any;
3405
+ };
3406
+ collectionValidation?: FieldArrayCollectionValidation;
3407
+ [key: string]: any;
3408
+ }
2588
3409
  /**
2589
3410
  * Configuration for field options in selection components.
2590
3411
  *
@@ -2697,6 +3518,10 @@ interface FieldMetadata extends ComponentMetadata {
2697
3518
  controlType: FieldControlType;
2698
3519
  /** Data type for processing and validation */
2699
3520
  dataType?: FieldDataType;
3521
+ /** Canonical metadata for editable collection fields (`controlType: "array"`). */
3522
+ array?: FieldArrayConfig;
3523
+ /** Optional top-level alias for collection validators mirrored into `array.collectionValidation`. */
3524
+ collectionValidation?: FieldArrayCollectionValidation;
2700
3525
  /** Display order in form */
2701
3526
  order?: number;
2702
3527
  /** Logical grouping of related fields */
@@ -2967,6 +3792,8 @@ interface FieldDefinition {
2967
3792
  layout?: 'horizontal' | 'vertical';
2968
3793
  disabled?: boolean;
2969
3794
  readOnly?: boolean;
3795
+ array?: FieldArrayConfig;
3796
+ collectionValidation?: FieldArrayCollectionValidation;
2970
3797
  multiple?: boolean;
2971
3798
  editable?: boolean;
2972
3799
  validationMode?: string;
@@ -3144,13 +3971,37 @@ declare function buildHeaders(entry: ApiUrlEntry): HttpHeaders | undefined;
3144
3971
  * // fields: [{ name: 'email', label: 'E-mail', type: 'string', controlType: 'input', required: true, email: true }]
3145
3972
  */
3146
3973
  declare class SchemaNormalizerService {
3974
+ private clonePlain;
3975
+ private resolveSchemaRef;
3976
+ private normalizeObjectSchema;
3977
+ private normalizeArrayConfig;
3978
+ private finalizeArrayConfig;
3979
+ private normalizeInlineItemSchemaFields;
3980
+ private normalizeInlineItemSchemaField;
3147
3981
  /** Convert value to boolean. Accepts boolean, string or number. */
3148
3982
  private parseBoolean;
3149
3983
  /** Ensure an array of strings from various inputs. */
3150
3984
  private parseStringArray;
3985
+ private parseNonBlankStringArray;
3986
+ private parseStringRecord;
3987
+ private parseSelectionPolicy;
3988
+ private parseLookupCapabilities;
3989
+ private parseLookupDetail;
3990
+ private parseLookupCreate;
3991
+ private parseLookupFilterOperatorArray;
3992
+ private parseLookupSortDirection;
3993
+ private parseLookupDialogSize;
3994
+ private parseLookupDialog;
3995
+ private parseLookupResultColumn;
3996
+ private parseLookupFilterDefinition;
3997
+ private parseDefaultFilters;
3998
+ private parseLookupFiltering;
3151
3999
  /** Parse option arrays into `{ key, value }` objects. */
3152
4000
  private parseOptions;
3153
4001
  private parseOptionSource;
4002
+ private parseOptionSourceType;
4003
+ private parseOptionSourceSearchMode;
4004
+ private parseLookupOpenDetailMode;
3154
4005
  private parseValuePresentation;
3155
4006
  /**
3156
4007
  * Converte string/Function em função real.
@@ -3185,6 +4036,7 @@ declare class SchemaNormalizerService {
3185
4036
  * @returns FieldDefinition[] prontos para mapeamento/uso no restante do sistema.
3186
4037
  */
3187
4038
  normalizeSchema(schema: any): FieldDefinition[];
4039
+ private normalizeSchemaWithRoot;
3188
4040
  private resolveFieldType;
3189
4041
  static ɵfac: i0.ɵɵFactoryDeclaration<SchemaNormalizerService, never>;
3190
4042
  static ɵprov: i0.ɵɵInjectableDeclaration<SchemaNormalizerService>;
@@ -3541,6 +4393,8 @@ interface OptionSourceRequestOptions<ID = string | number> extends CrudOperation
3541
4393
  includeIds?: ID[];
3542
4394
  observeVersionHeader?: boolean;
3543
4395
  search?: string;
4396
+ sortKey?: string;
4397
+ filters?: LookupFilterRequest[];
3544
4398
  }
3545
4399
  interface BatchDeleteProgress<ID = string | number> {
3546
4400
  id: ID;
@@ -3632,10 +4486,10 @@ declare class GenericCrudService<T, ID extends string | number = string | number
3632
4486
  * Fluxo de schemas (grid e filtro)
3633
4487
  *
3634
4488
  * - Grid/Lista (colunas e metadados do DTO principal):
3635
- * 1) getSchema() chama GET {resource}/schemas (ex.: /api/human-resources/funcionarios/schemas)
3636
- * 2) O backend responde 302 para /schemas/filtered com query params:
3637
- * - path: {basePath}/all (ex.: /api/human-resources/funcionarios/all)
3638
- * - operation: get
4489
+ * 1) getSchema() deriva a superfície canônica de busca/listagem do recurso
4490
+ * 2) Em seguida chama /schemas/filtered com query params:
4491
+ * - path: {basePath}/filter (ex.: /api/human-resources/funcionarios/filter)
4492
+ * - operation: post
3639
4493
  * - schemaType: response
3640
4494
  * 3) O serviço normaliza o schema retornado (x-ui) para montagem de grids e formulários.
3641
4495
  *
@@ -3653,8 +4507,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
3653
4507
  * Obtém o schema (metadados) do recurso, útil para construção dinâmica de grids e formulários.
3654
4508
  *
3655
4509
  * Fluxo:
3656
- * - Faz GET {resource}/schemas; o backend redireciona (302) para /schemas/filtered
3657
- * com path={basePath}/all, operation=get, schemaType=response.
4510
+ * - Chama /schemas/filtered para a superfície canônica de busca/listagem:
4511
+ * path={basePath}/filter, operation=post, schemaType=response.
3658
4512
  * - O resultado é normalizado e usado para montar colunas de grid e formulários (x-ui).
3659
4513
  *
3660
4514
  * Exemplo:
@@ -4240,86 +5094,18 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
4240
5094
  saveConfig<T>(key: string, config: T): Observable<void>;
4241
5095
  private shouldPropagateSaveError;
4242
5096
  private shouldPropagateClearError;
4243
- private shouldPropagateLoadError;
4244
- private isCriticalPersistenceKey;
4245
- clearConfig(key: string): Observable<void>;
4246
- private buildHeaders;
4247
- private buildParams;
4248
- private resolveKey;
4249
- private inferComponentType;
4250
- private looksLikePageKey;
4251
- private stripQuotes;
4252
- private formatEtag;
4253
- static ɵfac: i0.ɵɵFactoryDeclaration<ApiConfigStorage, never>;
4254
- static ɵprov: i0.ɵɵInjectableDeclaration<ApiConfigStorage>;
4255
- }
4256
-
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;
5097
+ private shouldPropagateLoadError;
5098
+ private isCriticalPersistenceKey;
5099
+ clearConfig(key: string): Observable<void>;
5100
+ private buildHeaders;
5101
+ private buildParams;
5102
+ private resolveKey;
5103
+ private inferComponentType;
5104
+ private looksLikePageKey;
5105
+ private stripQuotes;
5106
+ private formatEtag;
5107
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiConfigStorage, never>;
5108
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiConfigStorage>;
4323
5109
  }
4324
5110
 
4325
5111
  declare class GlobalActionService {
@@ -4339,9 +5125,16 @@ declare class GlobalActionService {
4339
5125
  register(id: string, handler: GlobalActionHandler): void;
4340
5126
  has(id: string): boolean;
4341
5127
  execute(id: string, payload?: any, context?: GlobalActionContext): Promise<GlobalActionResult>;
5128
+ executeRef(ref: GlobalActionRef | null | undefined, context?: GlobalActionContext): Promise<GlobalActionResult>;
5129
+ private resolvePayloadExpr;
5130
+ private lookupPath;
4342
5131
  private registerBuiltins;
4343
5132
  private handleApi;
5133
+ private handleNavigationOpenRoute;
4344
5134
  private handleRouteRegister;
5135
+ private buildNavigationUrl;
5136
+ private buildQueryString;
5137
+ private buildFragment;
4345
5138
  static ɵfac: i0.ɵɵFactoryDeclaration<GlobalActionService, never>;
4346
5139
  static ɵprov: i0.ɵɵInjectableDeclaration<GlobalActionService>;
4347
5140
  }
@@ -4397,12 +5190,15 @@ interface SurfaceOpenPayload {
4397
5190
 
4398
5191
  declare class SurfaceBindingRuntimeService {
4399
5192
  resolveWidget(widget: WidgetDefinition, bindings: SurfaceBinding[] | undefined, actionPayload?: any, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): WidgetDefinition;
5193
+ resolveSurfacePayload<T extends SurfaceOpenPayload>(surfacePayload: T, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): T;
4400
5194
  extractByPath(obj: any, path?: string): any;
4401
- resolveTemplate(node: any, context: any): any;
5195
+ resolveTemplate(node: any, context: any, key?: string): any;
5196
+ private isDeferredTemplateExpressionKey;
4402
5197
  setValueAtPath<T extends object>(obj: T, rawPath: string, value: any): T;
4403
5198
  private buildContext;
4404
5199
  private resolveBindingValue;
4405
5200
  private normalizeTargetPath;
5201
+ private normalizeWidgetTargetPath;
4406
5202
  private tokenizePath;
4407
5203
  private clone;
4408
5204
  static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceBindingRuntimeService, never>;
@@ -5188,6 +5984,19 @@ interface MaterialSelectMetadata extends FieldMetadata {
5188
5984
  /** Inline/runtime compatibility for selected option icon color. */
5189
5985
  optionSelectedIconColor?: string;
5190
5986
  }
5987
+ interface MaterialEntityLookupMetadata extends Omit<MaterialSelectMetadata, 'controlType' | 'multiple' | 'maxSelections'>, EntityLookupDisplayMetadata, EntityLookupCollectionMetadata {
5988
+ controlType: typeof FieldControlType.ENTITY_LOOKUP | typeof FieldControlType.INLINE_ENTITY_LOOKUP;
5989
+ lookupIdKey?: string;
5990
+ lookupLabelKey?: string;
5991
+ lookupSubtitleKey?: string;
5992
+ lookupSeparator?: string;
5993
+ payloadMode?: EntityLookupPayloadMode;
5994
+ dialog?: LookupDialogMetadata;
5995
+ searchPlaceholder?: string;
5996
+ resetLabel?: string;
5997
+ ariaLabel?: string;
5998
+ dependencyLoadOnChange?: 'respectLoadOn' | 'immediate' | 'manual';
5999
+ }
5191
6000
  /**
5192
6001
  * Metadata for Material Autocomplete components.
5193
6002
  *
@@ -5241,9 +6050,28 @@ interface MaterialButtonToggleMetadata extends FieldMetadata {
5241
6050
  /** Toggle button options */
5242
6051
  toggleOptions?: Array<{
5243
6052
  value: any;
5244
- text: string;
6053
+ text?: string;
5245
6054
  label?: string;
6055
+ disabled?: boolean;
5246
6056
  }>;
6057
+ /** Allow multiple selected toggle buttons */
6058
+ multiple?: boolean;
6059
+ /** Maximum selected options when multiple is enabled */
6060
+ maxSelections?: number;
6061
+ /** Button toggle appearance */
6062
+ appearance?: 'legacy' | 'standard';
6063
+ /** Theme color */
6064
+ color?: ThemePalette;
6065
+ /** Backend resource for dynamic option loading */
6066
+ resourcePath?: string;
6067
+ /** Canonical metadata-driven source for derived options */
6068
+ optionSource?: OptionSourceMetadata;
6069
+ /** Additional filter criteria for backend requests */
6070
+ filterCriteria?: Record<string, any>;
6071
+ /** Key for option label when loading from backend */
6072
+ optionLabelKey?: string;
6073
+ /** Key for option value when loading from backend */
6074
+ optionValueKey?: string;
5247
6075
  }
5248
6076
  /**
5249
6077
  * Metadata for Material Transfer List component.
@@ -5595,6 +6423,21 @@ interface InlineRangeDistributionConfig {
5595
6423
  bins?: Array<number | InlineRangeDistributionBin> | string;
5596
6424
  /** Optional normalization ceiling; defaults to the highest bin value. */
5597
6425
  maxValue?: number;
6426
+ /**
6427
+ * Color strategy for histogram bars.
6428
+ * `selection` highlights bars covered by the current slider value/range using theme tokens.
6429
+ * `gradient` applies a configurable gradient to the selected bars.
6430
+ * `theme` keeps all bars on the neutral themed baseline.
6431
+ */
6432
+ colorMode?: 'theme' | 'selection' | 'gradient';
6433
+ /** Optional selected bar color; defaults to the app theme primary color. */
6434
+ selectedColor?: string;
6435
+ /** Optional unselected bar color; defaults to the app theme outline variant color. */
6436
+ unselectedColor?: string;
6437
+ /** Optional first color stop for selected gradient bars. */
6438
+ gradientStartColor?: string;
6439
+ /** Optional final color stop for selected gradient bars. */
6440
+ gradientEndColor?: string;
5598
6441
  /** Optional minimum visible ratio in the [0..1] range for non-zero bars. */
5599
6442
  minBarRatio?: number;
5600
6443
  /** Alias for `minBarRatio`. */
@@ -5638,6 +6481,33 @@ interface RangeSliderQuickPresetLabels {
5638
6481
  fromMid?: string;
5639
6482
  full?: string;
5640
6483
  }
6484
+ interface RangeSliderMark {
6485
+ /** Numeric value represented by this mark. */
6486
+ value: number;
6487
+ /** Optional label rendered next to the mark. */
6488
+ label?: string;
6489
+ /** Optional semantic tone for platform styling. */
6490
+ tone?: 'neutral' | 'info' | 'success' | 'warning' | 'danger';
6491
+ /** Optional disabled hint for authoring and future restricted-value mode. */
6492
+ disabled?: boolean;
6493
+ }
6494
+ type RangeSliderSemanticTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
6495
+ interface RangeSliderSemanticBand {
6496
+ /** Inclusive start value for the band. */
6497
+ start: number;
6498
+ /** Inclusive end value for the band. */
6499
+ end: number;
6500
+ /** Optional label for accessibility, reports and authoring surfaces. */
6501
+ label?: string;
6502
+ /** Semantic tone used by the platform theme. */
6503
+ tone?: RangeSliderSemanticTone;
6504
+ /** Optional explicit color for specialized domain palettes. */
6505
+ color?: string;
6506
+ }
6507
+ type RangeSliderTrackMode = 'normal' | 'inverted' | 'none';
6508
+ type RangeSliderValueLabelDisplay = 'off' | 'auto' | 'on';
6509
+ type RangeSliderScalePreset = 'linear' | 'percent' | 'log' | 'pow2';
6510
+ type RangeSliderValueFormat = 'number' | 'percent' | 'currency' | 'compact' | 'storage';
5641
6511
  interface MaterialRangeSliderMetadata extends FieldMetadata {
5642
6512
  controlType: typeof FieldControlType.RANGE_SLIDER;
5643
6513
  /** Slider mode */
@@ -5646,18 +6516,36 @@ interface MaterialRangeSliderMetadata extends FieldMetadata {
5646
6516
  min?: number;
5647
6517
  /** Maximum allowed value */
5648
6518
  max?: number;
5649
- /** Step for value increments */
5650
- step?: number;
6519
+ /** Step for value increments. `null` is reserved for mark-restricted values. */
6520
+ step?: number | null;
5651
6521
  /** Whether to show the thumb label */
5652
6522
  thumbLabel?: boolean;
6523
+ /** Controls when the value label is displayed. */
6524
+ valueLabelDisplay?: RangeSliderValueLabelDisplay;
6525
+ /** Declarative formatter for value labels when functions cannot come from metadata. */
6526
+ valueLabelFormat?: RangeSliderValueFormat | string;
5653
6527
  /** Tick configuration */
5654
6528
  showTicks?: boolean | 'auto';
6529
+ /** Rich mark labels along the slider track. */
6530
+ marks?: boolean | RangeSliderMark[] | string;
6531
+ /** Semantic bands rendered behind the slider track for domain meaning. */
6532
+ semanticBands?: RangeSliderSemanticBand[] | string;
6533
+ /** Track presentation mode. */
6534
+ track?: RangeSliderTrackMode;
6535
+ /** Keyboard acceleration step for Page Up/Down or Shift+Arrow semantics. */
6536
+ shiftStep?: number;
6537
+ /** Visual density hint. */
6538
+ size?: 'small' | 'medium' | 'large';
5655
6539
  /** Use discrete slider */
5656
6540
  discrete?: boolean;
5657
6541
  /** Display vertically */
5658
6542
  vertical?: boolean;
5659
6543
  /** Invert slider direction */
5660
6544
  invert?: boolean;
6545
+ /** Prevent active thumb swapping when range thumbs overlap. */
6546
+ disableThumbSwap?: boolean;
6547
+ /** Declarative scale preset used to format displayed values. */
6548
+ scale?: RangeSliderScalePreset | string;
5661
6549
  /** Minimum distance between start and end */
5662
6550
  minDistance?: number;
5663
6551
  /** Maximum distance between start and end */
@@ -5835,6 +6723,8 @@ interface MaterialButtonMetadata extends FieldMetadata {
5835
6723
  buttonIconPosition?: 'before' | 'after';
5836
6724
  /** Button action/command */
5837
6725
  action?: string;
6726
+ /** Structured global action executed through GlobalActionService. */
6727
+ globalAction?: GlobalActionRef;
5838
6728
  /** Disable button ripple effect */
5839
6729
  disableRipple?: boolean;
5840
6730
  /** Confirmation message for destructive actions */
@@ -5882,35 +6772,55 @@ interface MaterialSliderMetadata extends FieldMetadata {
5882
6772
  min?: number;
5883
6773
  /** Maximum value */
5884
6774
  max?: number;
5885
- /** Step increment */
5886
- step?: number;
6775
+ /** Step increment. `null` is reserved for mark-restricted values. */
6776
+ step?: number | null;
5887
6777
  /** Show value label */
5888
6778
  thumbLabel?: boolean;
6779
+ /** Controls when the value label is displayed. */
6780
+ valueLabelDisplay?: RangeSliderValueLabelDisplay;
6781
+ /** Declarative formatter for value labels when functions cannot come from metadata. */
6782
+ valueLabelFormat?: RangeSliderValueFormat | string;
6783
+ /** Rich mark labels along the slider track. */
6784
+ marks?: boolean | RangeSliderMark[] | string;
6785
+ /** Semantic bands rendered behind the slider track for domain meaning. */
6786
+ semanticBands?: RangeSliderSemanticBand[] | string;
6787
+ /**
6788
+ * Optional mini histogram/bars rendered above the slider track.
6789
+ * Accepts array shorthand, object config, or JSON string for editor compatibility.
6790
+ */
6791
+ inlineDistribution?: InlineRangeDistributionConfig | Array<number | InlineRangeDistributionBin> | string;
6792
+ /**
6793
+ * Alias accepted by slider components for compact payloads.
6794
+ */
6795
+ distribution?: InlineRangeDistributionConfig | Array<number | InlineRangeDistributionBin> | string;
6796
+ /** Track presentation mode. */
6797
+ track?: RangeSliderTrackMode;
6798
+ /** Keyboard acceleration step for Page Up/Down or Shift+Arrow semantics. */
6799
+ shiftStep?: number;
6800
+ /** Visual density hint. */
6801
+ size?: 'small' | 'medium' | 'large';
5889
6802
  /** Slider orientation */
5890
6803
  vertical?: boolean;
5891
6804
  /** Slider color theme */
5892
6805
  color?: ThemePalette;
5893
6806
  /** Display tick marks along the slider track */
5894
- showTicks?: boolean;
6807
+ showTicks?: boolean | 'auto';
5895
6808
  /** Invert slider direction */
5896
6809
  invert?: boolean;
6810
+ /** Declarative scale preset used to format displayed values. */
6811
+ scale?: RangeSliderScalePreset | string;
5897
6812
  }
5898
6813
  /**
5899
6814
  * Specialized metadata for Material Rating components.
5900
6815
  *
5901
- * ⚠️ COMPONENTE NÃO IMPLEMENTADO - Interface de planejamento
5902
- *
5903
- * Para implementar: criar MaterialRatingComponent em components/material-rating/
5904
- * e registrar no ComponentRegistryService
5905
- *
5906
6816
  * Handles star rating or numeric rating selection.
5907
6817
  */
5908
6818
  interface MaterialRatingMetadata extends FieldMetadata {
5909
6819
  controlType: typeof FieldControlType.RATING;
5910
6820
  /** Maximum rating value */
5911
6821
  max?: number;
5912
- /** Rating precision (0.1, 0.5, 1) */
5913
- precision?: number;
6822
+ /** Rating precision (`0.5` or `half` enables half-step interaction) */
6823
+ precision?: number | 'item' | 'half';
5914
6824
  /** Rating icon (default: star) */
5915
6825
  icon?: string;
5916
6826
  /** Empty icon (default: star_border) */
@@ -6581,6 +7491,18 @@ declare class DynamicFormService {
6581
7491
  * Indica se o campo deve ser tratado como seleção múltipla (valor padrão []).
6582
7492
  */
6583
7493
  private isMultipleField;
7494
+ private isArrayMetadata;
7495
+ private getArrayConfig;
7496
+ private getArrayItemFields;
7497
+ createArrayItemGroupFromMetadata(meta: FieldMetadata, value?: Record<string, any>): FormGroup;
7498
+ private ensureArrayItemIdentityControl;
7499
+ private createArrayControlFromMetadata;
7500
+ private buildArrayValidators;
7501
+ private buildArrayCountValidator;
7502
+ private uniqueKeyForItem;
7503
+ private normalizeUniqueValue;
7504
+ private arrayValues;
7505
+ private readPath;
6584
7506
  /**
6585
7507
  * Envelopa um ValidatorFn Angular para padronizar a saída de erro com mensagem.
6586
7508
  * Útil quando deseja-se forçar uma mensagem customizada em um validador nativo.
@@ -6603,7 +7525,7 @@ declare class DynamicFormService {
6603
7525
  * - Aplica validadores específicos de UI quando aplicável.
6604
7526
  * - Valor inicial: [] para campos múltiplos quando ausente; caso contrário defaultValue.
6605
7527
  */
6606
- createControlFromField(field: FieldDefinition): FormControl;
7528
+ createControlFromField(field: FieldDefinition): AbstractControl;
6607
7529
  /**
6608
7530
  * Cria um FormControl a partir de FieldMetadata.
6609
7531
  * - Aplica ValidatorOptions (normalizados) e validadores de UI por tipo.
@@ -6615,6 +7537,11 @@ declare class DynamicFormService {
6615
7537
  defaultValue?: any;
6616
7538
  disabled?: boolean;
6617
7539
  }): FormControl;
7540
+ createAbstractControlFromMetadata(meta: FieldMetadata & {
7541
+ validators?: ValidatorOptions;
7542
+ defaultValue?: any;
7543
+ disabled?: boolean;
7544
+ }): AbstractControl;
6618
7545
  /**
6619
7546
  * Reconfigura um controle existente a partir de FieldDefinition.
6620
7547
  * Atualiza: validators, asyncValidators, estado enabled/disabled e defaultValue (com suporte a múltiplos).
@@ -6816,6 +7743,14 @@ interface ComponentDocMeta {
6816
7743
  };
6817
7744
  /** Tags or categories for search */
6818
7745
  tags?: string[];
7746
+ /** Optional insertion presets exposed by visual builders without changing the component contract. */
7747
+ insertionPresets?: Array<{
7748
+ id: string;
7749
+ label: string;
7750
+ description?: string;
7751
+ icon?: string;
7752
+ inputs?: Record<string, unknown>;
7753
+ }>;
6819
7754
  /** Source library for the component */
6820
7755
  lib?: string;
6821
7756
  /** Optional layout hints for grid placement */
@@ -6918,6 +7853,7 @@ declare class PraxisI18nService {
6918
7853
  getLocale(): string;
6919
7854
  getFallbackLocale(): string;
6920
7855
  t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
7856
+ tForLocale(locale: string, key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
6921
7857
  resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
6922
7858
  formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
6923
7859
  formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
@@ -7027,6 +7963,51 @@ declare class TelemetryService {
7027
7963
  static ɵprov: i0.ɵɵInjectableDeclaration<TelemetryService>;
7028
7964
  }
7029
7965
 
7966
+ declare class PraxisCollectionExportService {
7967
+ private readonly provider;
7968
+ private readonly securityPolicy;
7969
+ constructor(provider: PraxisCollectionExportProvider | null, securityPolicy: PraxisExportSecurityPolicy);
7970
+ exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): Promise<PraxisCollectionExportResult>;
7971
+ exportLocalCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportResult;
7972
+ static ɵfac: i0.ɵɵFactoryDeclaration<PraxisCollectionExportService, [{ optional: true; }, null]>;
7973
+ static ɵprov: i0.ɵɵInjectableDeclaration<PraxisCollectionExportService>;
7974
+ }
7975
+
7976
+ interface PraxisCollectionExportHttpProviderOptions {
7977
+ endpoint?: string | ((request: PraxisCollectionExportRequest<any>) => string);
7978
+ apiUrlKey?: string;
7979
+ headers?: Record<string, string | string[]>;
7980
+ withCredentials?: boolean;
7981
+ includeLoadedItems?: boolean;
7982
+ }
7983
+ declare const PRAXIS_COLLECTION_EXPORT_PROVIDER: InjectionToken<PraxisCollectionExportProvider>;
7984
+ declare const PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS: InjectionToken<PraxisCollectionExportHttpProviderOptions>;
7985
+ declare const PRAXIS_EXPORT_SECURITY_POLICY: InjectionToken<PraxisExportSecurityPolicy>;
7986
+ declare function providePraxisCollectionExportProvider(provider: PraxisCollectionExportProvider): Provider;
7987
+
7988
+ declare class PraxisHttpCollectionExportProvider implements PraxisCollectionExportProvider {
7989
+ private readonly http;
7990
+ private readonly apiUrlConfig;
7991
+ private readonly options;
7992
+ constructor(http: HttpClient, apiUrlConfig: ApiUrlConfig | null, options: PraxisCollectionExportHttpProviderOptions | null);
7993
+ exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): Promise<PraxisCollectionExportResult>;
7994
+ private resolveEndpoint;
7995
+ private resolveUrl;
7996
+ private normalizePathForBase;
7997
+ private resolveApiBaseUrl;
7998
+ private buildHeaders;
7999
+ private buildRequestBody;
8000
+ private normalizeResponse;
8001
+ private normalizeExportHeaders;
8002
+ private readNumberHeader;
8003
+ private readBooleanHeader;
8004
+ private readWarningHeader;
8005
+ private mergeWarnings;
8006
+ private resolveFileName;
8007
+ static ɵfac: i0.ɵɵFactoryDeclaration<PraxisHttpCollectionExportProvider, [null, { optional: true; }, { optional: true; }]>;
8008
+ static ɵprov: i0.ɵɵInjectableDeclaration<PraxisHttpCollectionExportProvider>;
8009
+ }
8010
+
7030
8011
  type FieldSelectorRegistryMap = Record<string, FieldControlType>;
7031
8012
  declare const FIELD_SELECTOR_REGISTRY_BASE: InjectionToken<FieldSelectorRegistryMap>;
7032
8013
  declare const FIELD_SELECTOR_REGISTRY_OVERRIDES: InjectionToken<FieldSelectorRegistryMap[]>;
@@ -7132,6 +8113,7 @@ declare class PraxisLayerScaleStyleService {
7132
8113
  * abertura, enquanto `resourcePath`, `path`, `method` e `schemaUrl` seguem responsaveis pelo
7133
8114
  * comportamento operacional.
7134
8115
  */
8116
+
7135
8117
  interface ResourceAvailabilityDecision {
7136
8118
  allowed: boolean;
7137
8119
  reason?: string | null;
@@ -7142,6 +8124,8 @@ type ResourceSurfaceScope = 'COLLECTION' | 'ITEM';
7142
8124
  type ResourceActionScope = 'COLLECTION' | 'ITEM';
7143
8125
  type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
7144
8126
  type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
8127
+ type ResourceCapabilityOperationId = ResourceCrudOperationId | 'export' | string;
8128
+ type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
7145
8129
  interface ResourceSurfaceCatalogItem {
7146
8130
  id: string;
7147
8131
  resourceKey: string;
@@ -7192,20 +8176,25 @@ interface ResourceActionCatalogResponse {
7192
8176
  actions: ResourceActionCatalogItem[];
7193
8177
  }
7194
8178
  interface ResourceCapabilityOperation {
7195
- id: ResourceCrudOperationId;
8179
+ id: ResourceCapabilityOperationId;
7196
8180
  supported: boolean;
7197
8181
  scope: ResourceSurfaceScope;
7198
8182
  preferredMethod?: string | null;
7199
8183
  preferredRel?: string | null;
7200
8184
  availability?: ResourceAvailabilityDecision | null;
8185
+ formats?: PraxisExportFormat[];
8186
+ scopes?: PraxisExportScope[];
8187
+ maxRows?: ResourceExportMaxRows;
8188
+ async?: boolean | null;
7201
8189
  }
8190
+ type ResourceCapabilityOperations = Partial<Record<ResourceCrudOperationId | 'export', ResourceCapabilityOperation>> & Record<string, ResourceCapabilityOperation | undefined>;
7202
8191
  interface ResourceCapabilitySnapshot {
7203
8192
  resourceKey: string;
7204
8193
  resourcePath: string;
7205
8194
  group?: string | null;
7206
8195
  resourceId?: string | number | null;
7207
8196
  canonicalOperations: Record<string, boolean>;
7208
- operations?: Partial<Record<ResourceCrudOperationId, ResourceCapabilityOperation>>;
8197
+ operations?: ResourceCapabilityOperations;
7209
8198
  surfaces: ResourceSurfaceCatalogItem[];
7210
8199
  actions: ResourceActionCatalogItem[];
7211
8200
  }
@@ -7245,6 +8234,466 @@ declare class ResourceDiscoveryService {
7245
8234
  static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDiscoveryService>;
7246
8235
  }
7247
8236
 
8237
+ declare const DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.2";
8238
+ interface DomainCatalogRelease {
8239
+ releaseKey: string;
8240
+ serviceKey?: string;
8241
+ status?: string;
8242
+ version?: string;
8243
+ createdAt?: string;
8244
+ resourceKey?: string;
8245
+ [key: string]: unknown;
8246
+ }
8247
+ interface DomainCatalogGovernancePayload {
8248
+ classification?: string;
8249
+ dataCategory?: string;
8250
+ complianceTags?: string[];
8251
+ aiUsage?: {
8252
+ visibility?: string;
8253
+ purpose?: string;
8254
+ restrictions?: string[];
8255
+ [key: string]: unknown;
8256
+ };
8257
+ [key: string]: unknown;
8258
+ }
8259
+ interface DomainCatalogItem<TPayload = Record<string, unknown>> {
8260
+ itemKey: string;
8261
+ type?: string;
8262
+ payload?: TPayload;
8263
+ [key: string]: unknown;
8264
+ }
8265
+ interface DomainCatalogResourceProbe {
8266
+ resourceKey: string;
8267
+ query: string;
8268
+ limit?: number;
8269
+ }
8270
+ type DomainCatalogContextHintItemType = 'context' | 'node' | 'edge' | 'binding' | 'evidence' | 'governance' | 'vocabulary' | 'relationship';
8271
+ type DomainCatalogContextHintIntent = 'authoring' | 'explain' | 'validate' | 'ai-access-control';
8272
+ type DomainCatalogRecommendedAuthoringFlow = 'shared_rule_authoring' | 'component_authoring' | 'ui_composition_authoring';
8273
+ type DomainCatalogRecommendedRuleType = 'privacy' | 'compliance' | 'validation' | 'selection_eligibility' | 'workflow_action_policy' | 'approval_policy' | string;
8274
+ interface DomainCatalogRelationshipHint {
8275
+ enabled?: boolean;
8276
+ federated?: boolean;
8277
+ serviceKey?: string | null;
8278
+ sourceNodeKey?: string | null;
8279
+ targetNodeKey?: string | null;
8280
+ edgeType?: string | null;
8281
+ query?: string | null;
8282
+ limit?: number;
8283
+ }
8284
+ interface DomainCatalogContextHint {
8285
+ schemaVersion?: typeof DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION;
8286
+ resourceKey?: string | null;
8287
+ query?: string | null;
8288
+ releaseId?: string | null;
8289
+ releaseKey?: string | null;
8290
+ serviceKey?: string | null;
8291
+ type?: DomainCatalogContextHintItemType;
8292
+ itemTypes?: DomainCatalogContextHintItemType[];
8293
+ intent?: DomainCatalogContextHintIntent | null;
8294
+ contextKey?: string | null;
8295
+ nodeType?: string | null;
8296
+ recommendedAuthoringFlow?: DomainCatalogRecommendedAuthoringFlow | null;
8297
+ recommendedRuleType?: DomainCatalogRecommendedRuleType | null;
8298
+ limit?: number;
8299
+ relationships?: DomainCatalogRelationshipHint | null;
8300
+ }
8301
+ interface DomainCatalogGovernanceContext {
8302
+ resourceKey: string;
8303
+ query: string;
8304
+ releaseKey: string | null;
8305
+ items: DomainCatalogItem<DomainCatalogGovernancePayload>[];
8306
+ }
8307
+
8308
+ interface DomainCatalogRequestOptions extends ResourceDiscoveryRequestOptions {
8309
+ serviceKey?: string;
8310
+ limit?: number;
8311
+ headers?: HttpHeaders | Record<string, string | string[]>;
8312
+ }
8313
+ interface DomainCatalogGovernanceRequestOptions extends DomainCatalogRequestOptions {
8314
+ resourceKey: string;
8315
+ query: string;
8316
+ }
8317
+ declare class DomainCatalogService {
8318
+ private readonly http;
8319
+ private readonly discovery;
8320
+ listReleases(options?: DomainCatalogRequestOptions): Observable<DomainCatalogRelease[]>;
8321
+ listItems(releaseKey: string, options?: DomainCatalogRequestOptions & {
8322
+ type?: string;
8323
+ query?: string;
8324
+ }): Observable<DomainCatalogItem[]>;
8325
+ findLatestReleaseForResource(resourceKey: string, options?: DomainCatalogRequestOptions): Observable<DomainCatalogRelease | null>;
8326
+ getGovernanceContext(options: DomainCatalogGovernanceRequestOptions): Observable<DomainCatalogGovernanceContext>;
8327
+ private resolveHeaders;
8328
+ private releaseMatchesResource;
8329
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomainCatalogService, never>;
8330
+ static ɵprov: i0.ɵɵInjectableDeclaration<DomainCatalogService>;
8331
+ }
8332
+
8333
+ type DomainKnowledgeAuthorType = 'human' | 'llm' | 'system' | string;
8334
+ type DomainKnowledgeChangeSetStatus = 'proposed' | 'approved' | 'rejected' | 'superseded' | 'applied' | string;
8335
+ type DomainKnowledgeValidationStatus = 'valid' | 'invalid' | 'pending' | string;
8336
+ type DomainKnowledgeOperationType = 'add_evidence' | 'update_evidence' | 'deprecate_evidence' | 'add_relationship' | 'update_concept' | string;
8337
+ interface DomainKnowledgeChangeSetTarget {
8338
+ tenantId?: string | null;
8339
+ environment?: string | null;
8340
+ subjectType?: string | null;
8341
+ conceptKey?: string | null;
8342
+ evidenceKey?: string | null;
8343
+ relationshipKey?: string | null;
8344
+ }
8345
+ interface DomainKnowledgePatchOperation {
8346
+ operationId: string;
8347
+ operationType: DomainKnowledgeOperationType;
8348
+ target?: DomainKnowledgeChangeSetTarget | null;
8349
+ reason?: string | null;
8350
+ evidenceRefs?: string[] | null;
8351
+ confidence?: number | null;
8352
+ payload?: Record<string, unknown> | null;
8353
+ }
8354
+ interface DomainKnowledgeChangeSetRequest {
8355
+ changeSetKey: string;
8356
+ status?: DomainKnowledgeChangeSetStatus | null;
8357
+ authorType?: DomainKnowledgeAuthorType | null;
8358
+ authorId?: string | null;
8359
+ intent?: string | null;
8360
+ reason?: string | null;
8361
+ patch: DomainKnowledgePatchOperation[];
8362
+ }
8363
+ interface DomainKnowledgeSafeOperationSummary {
8364
+ operationId?: string | null;
8365
+ operationType?: DomainKnowledgeOperationType | null;
8366
+ targetSubjectType?: string | null;
8367
+ targetConceptKey?: string | null;
8368
+ evidenceRefCount?: number | null;
8369
+ confidence?: number | null;
8370
+ }
8371
+ interface DomainKnowledgeChangeSet {
8372
+ id: string;
8373
+ tenantId?: string | null;
8374
+ environment?: string | null;
8375
+ changeSetKey?: string | null;
8376
+ status?: DomainKnowledgeChangeSetStatus | null;
8377
+ validationStatus?: DomainKnowledgeValidationStatus | null;
8378
+ authorType?: DomainKnowledgeAuthorType | null;
8379
+ authorId?: string | null;
8380
+ intent?: string | null;
8381
+ reason?: string | null;
8382
+ operationCount?: number | null;
8383
+ safeOperationSummary?: DomainKnowledgeSafeOperationSummary[] | null;
8384
+ reviewerId?: string | null;
8385
+ reviewedAt?: string | null;
8386
+ appliedAt?: string | null;
8387
+ createdAt?: string | null;
8388
+ updatedAt?: string | null;
8389
+ }
8390
+ interface DomainKnowledgeChangeSetFilters {
8391
+ status?: DomainKnowledgeChangeSetStatus;
8392
+ }
8393
+ interface DomainKnowledgeValidationIssue {
8394
+ operationId?: string | null;
8395
+ code?: string | null;
8396
+ message?: string | null;
8397
+ severity?: string | null;
8398
+ }
8399
+ interface DomainKnowledgeValidationResponse {
8400
+ valid: boolean;
8401
+ changeSetId?: string | null;
8402
+ validationStatus?: DomainKnowledgeValidationStatus | null;
8403
+ issues?: DomainKnowledgeValidationIssue[] | null;
8404
+ safeOperationSummary?: DomainKnowledgeSafeOperationSummary[] | null;
8405
+ }
8406
+ type DomainKnowledgeTimelineEventVisibility = 'safe' | string;
8407
+ interface DomainKnowledgeChangeSetTimelineEventResponse {
8408
+ eventType: string;
8409
+ occurredAt?: string | null;
8410
+ actorType?: string | null;
8411
+ actor?: string | null;
8412
+ summary?: string | null;
8413
+ status?: DomainKnowledgeChangeSetStatus | null;
8414
+ validationStatus?: DomainKnowledgeValidationStatus | null;
8415
+ operationCount?: number | null;
8416
+ operationTypes?: DomainKnowledgeOperationType[] | null;
8417
+ targetConceptKeys?: string[] | null;
8418
+ visibility?: DomainKnowledgeTimelineEventVisibility | null;
8419
+ }
8420
+ interface DomainKnowledgeChangeSetTimelineResponse {
8421
+ changeSetId: string;
8422
+ tenantId?: string | null;
8423
+ environment?: string | null;
8424
+ changeSetKey?: string | null;
8425
+ status?: DomainKnowledgeChangeSetStatus | null;
8426
+ authorType?: DomainKnowledgeAuthorType | null;
8427
+ authorId?: string | null;
8428
+ reviewerId?: string | null;
8429
+ events: DomainKnowledgeChangeSetTimelineEventResponse[];
8430
+ }
8431
+ interface DomainKnowledgeStatusTransitionRequest {
8432
+ status: Exclude<DomainKnowledgeChangeSetStatus, 'proposed'> | DomainKnowledgeChangeSetStatus;
8433
+ reviewerId?: string | null;
8434
+ reason?: string | null;
8435
+ }
8436
+
8437
+ interface DomainKnowledgeRequestOptions extends ResourceDiscoveryRequestOptions {
8438
+ headers?: HttpHeaders | Record<string, string | string[]>;
8439
+ }
8440
+ declare class DomainKnowledgeService {
8441
+ private readonly http;
8442
+ private readonly discovery;
8443
+ createChangeSet(request: DomainKnowledgeChangeSetRequest, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8444
+ listChangeSets(filters?: DomainKnowledgeChangeSetFilters, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet[]>;
8445
+ getChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8446
+ validateChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeValidationResponse>;
8447
+ transitionChangeSetStatus(changeSetId: string, request: DomainKnowledgeStatusTransitionRequest, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8448
+ applyChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8449
+ getChangeSetTimeline(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSetTimelineResponse>;
8450
+ private buildParams;
8451
+ private resolveHeaders;
8452
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomainKnowledgeService, never>;
8453
+ static ɵprov: i0.ɵɵInjectableDeclaration<DomainKnowledgeService>;
8454
+ }
8455
+
8456
+ type DomainRuleStatus = 'draft' | 'active' | 'inactive' | 'deprecated' | string;
8457
+ type DomainRuleCreatedByType = 'human' | 'llm' | 'system' | string;
8458
+ type DomainRuleAppliedByType = 'human' | 'llm' | 'system' | string;
8459
+ type DomainRuleTargetLayer = 'form' | 'table' | 'api' | 'workflow' | 'workflow_action' | 'approval_policy' | 'policy' | 'option_source' | 'backend_validation' | string;
8460
+ interface DomainRuleDecisionDiagnostics extends Record<string, unknown> {
8461
+ decisionKind?: string | null;
8462
+ authoringMode?: string | null;
8463
+ decisionStage?: string | null;
8464
+ decisionSource?: string | null;
8465
+ canonicalOwner?: string | null;
8466
+ materializationModel?: string | null;
8467
+ runtimeSurfacesAreDerived?: boolean | null;
8468
+ }
8469
+ interface DomainRuleDefinitionRequest {
8470
+ ruleKey: string;
8471
+ version?: number | null;
8472
+ ruleType?: string | null;
8473
+ status?: DomainRuleStatus | null;
8474
+ contextKey?: string | null;
8475
+ resourceKey?: string | null;
8476
+ serviceKey?: string | null;
8477
+ semanticOwner?: string | null;
8478
+ steward?: string | null;
8479
+ sourceReleaseId?: string | null;
8480
+ sourceChangeSetId?: string | null;
8481
+ definition?: Record<string, unknown> | null;
8482
+ parameters?: Record<string, unknown> | null;
8483
+ condition?: Record<string, unknown> | null;
8484
+ governance?: Record<string, unknown> | null;
8485
+ validationResult?: Record<string, unknown> | null;
8486
+ createdByType?: DomainRuleCreatedByType | null;
8487
+ createdBy?: string | null;
8488
+ approvedBy?: string | null;
8489
+ }
8490
+ interface DomainRuleDefinition extends DomainRuleDefinitionRequest {
8491
+ id: string;
8492
+ tenantId?: string | null;
8493
+ environment?: string | null;
8494
+ createdAt?: string | null;
8495
+ updatedAt?: string | null;
8496
+ approvedAt?: string | null;
8497
+ activatedAt?: string | null;
8498
+ }
8499
+ interface DomainRuleDefinitionFilters {
8500
+ resourceKey?: string;
8501
+ status?: DomainRuleStatus;
8502
+ ruleType?: string;
8503
+ ruleKey?: string;
8504
+ }
8505
+ type DomainRuleTimelineEventVisibility = 'safe' | string;
8506
+ interface DomainRuleTimelineEventResponse {
8507
+ eventType: string;
8508
+ occurredAt?: string | null;
8509
+ actorType?: DomainRuleAppliedByType | null;
8510
+ actor?: string | null;
8511
+ summary?: string | null;
8512
+ targetLayer?: DomainRuleTargetLayer | null;
8513
+ targetArtifactType?: string | null;
8514
+ targetArtifactKey?: string | null;
8515
+ sourceHash?: string | null;
8516
+ visibility?: DomainRuleTimelineEventVisibility | null;
8517
+ }
8518
+ interface DomainRuleTimelineResponse {
8519
+ ruleDefinitionId: string;
8520
+ tenantId?: string | null;
8521
+ environment?: string | null;
8522
+ ruleKey?: string | null;
8523
+ ruleType?: string | null;
8524
+ resourceKey?: string | null;
8525
+ events: DomainRuleTimelineEventResponse[];
8526
+ }
8527
+ interface DomainRuleStatusTransitionRequest {
8528
+ status: DomainRuleStatus;
8529
+ decidedByType?: DomainRuleAppliedByType | null;
8530
+ decidedBy?: string | null;
8531
+ decisionNotes?: Record<string, unknown> | null;
8532
+ }
8533
+ interface DomainRuleIntakeRequest {
8534
+ prompt: string;
8535
+ assistantMessage?: string | null;
8536
+ ruleKey?: string | null;
8537
+ ruleType?: string | null;
8538
+ contextKey?: string | null;
8539
+ resourceKey?: string | null;
8540
+ serviceKey?: string | null;
8541
+ definition?: Record<string, unknown> | null;
8542
+ parameters?: Record<string, unknown> | null;
8543
+ condition?: Record<string, unknown> | null;
8544
+ governance?: Record<string, unknown> | null;
8545
+ createdByType?: DomainRuleCreatedByType | null;
8546
+ createdBy?: string | null;
8547
+ }
8548
+ interface DomainRuleIntakeResponse {
8549
+ intakeId: string;
8550
+ tenantId?: string | null;
8551
+ environment?: string | null;
8552
+ ruleKey?: string | null;
8553
+ ruleType?: string | null;
8554
+ contextKey?: string | null;
8555
+ resourceKey?: string | null;
8556
+ serviceKey?: string | null;
8557
+ status?: DomainRuleStatus | null;
8558
+ grounding?: (Record<string, unknown> & {
8559
+ decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
8560
+ }) | null;
8561
+ definition?: DomainRuleDefinition | null;
8562
+ createdAt?: string | null;
8563
+ }
8564
+ interface DomainRuleMaterializationRequest {
8565
+ ruleDefinitionId: string;
8566
+ materializationKey: string;
8567
+ targetLayer?: DomainRuleTargetLayer | null;
8568
+ targetArtifactType?: string | null;
8569
+ targetArtifactKey?: string | null;
8570
+ targetPointer?: string | null;
8571
+ targetReleaseKey?: string | null;
8572
+ materializedRuleId?: string | null;
8573
+ status?: DomainRuleStatus | null;
8574
+ materializedPayload?: Record<string, unknown> | null;
8575
+ sourceHash?: string | null;
8576
+ validationResult?: Record<string, unknown> | null;
8577
+ appliedByType?: DomainRuleAppliedByType | null;
8578
+ appliedBy?: string | null;
8579
+ }
8580
+ interface DomainRuleMaterialization extends DomainRuleMaterializationRequest {
8581
+ id: string;
8582
+ tenantId?: string | null;
8583
+ environment?: string | null;
8584
+ ruleKey?: string | null;
8585
+ ruleVersion?: number | null;
8586
+ createdAt?: string | null;
8587
+ updatedAt?: string | null;
8588
+ appliedAt?: string | null;
8589
+ decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
8590
+ }
8591
+ interface DomainRuleMaterializationFilters {
8592
+ ruleDefinitionId?: string;
8593
+ targetLayer?: DomainRuleTargetLayer;
8594
+ targetArtifactType?: string;
8595
+ targetArtifactKey?: string;
8596
+ status?: DomainRuleStatus;
8597
+ }
8598
+ interface DomainRuleSimulationRequest {
8599
+ ruleDefinitionId?: string | null;
8600
+ ruleKey?: string | null;
8601
+ ruleType?: string | null;
8602
+ contextKey?: string | null;
8603
+ resourceKey?: string | null;
8604
+ serviceKey?: string | null;
8605
+ definition?: Record<string, unknown> | null;
8606
+ parameters?: Record<string, unknown> | null;
8607
+ condition?: Record<string, unknown> | null;
8608
+ governance?: Record<string, unknown> | null;
8609
+ }
8610
+ interface DomainRuleSimulationResponse {
8611
+ simulationId: string;
8612
+ ruleDefinitionId?: string | null;
8613
+ tenantId?: string | null;
8614
+ environment?: string | null;
8615
+ ruleKey?: string | null;
8616
+ ruleVersion?: number | null;
8617
+ ruleType?: string | null;
8618
+ contextKey?: string | null;
8619
+ resourceKey?: string | null;
8620
+ serviceKey?: string | null;
8621
+ result?: string | null;
8622
+ grounding?: Record<string, unknown> | null;
8623
+ existingCoverage?: unknown[] | null;
8624
+ predictedMaterializations?: unknown[] | null;
8625
+ requiredApprovals?: unknown[] | null;
8626
+ warnings?: unknown[] | null;
8627
+ explainability?: Record<string, unknown> | null;
8628
+ simulatedAt?: string | null;
8629
+ }
8630
+ type DomainRuleMaterializationOutcomeResolution = 'created' | 'reused' | 'selected_existing' | 'selected_explicit' | 'skipped' | 'blocked' | string;
8631
+ interface DomainRulePublicationMaterializationOutcome {
8632
+ resolution?: DomainRuleMaterializationOutcomeResolution | null;
8633
+ materializationKey?: string | null;
8634
+ targetLayer?: DomainRuleTargetLayer | null;
8635
+ targetArtifactType?: string | null;
8636
+ targetArtifactKey?: string | null;
8637
+ targetPointer?: string | null;
8638
+ statusAtResolution?: DomainRuleStatus | null;
8639
+ sourceHash?: string | null;
8640
+ reason?: string | null;
8641
+ }
8642
+ interface DomainRulePublicationDiagnostics {
8643
+ materializationOutcomes?: DomainRulePublicationMaterializationOutcome[] | null;
8644
+ }
8645
+ interface DomainRuleExplainability extends Record<string, unknown> {
8646
+ decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
8647
+ publicationDiagnostics?: DomainRulePublicationDiagnostics | null;
8648
+ }
8649
+ interface DomainRulePublicationRequest {
8650
+ ruleDefinitionId: string;
8651
+ materializationIds?: string[] | null;
8652
+ applyEligibleMaterializations?: boolean | null;
8653
+ publishedByType?: DomainRuleAppliedByType | null;
8654
+ publishedBy?: string | null;
8655
+ publicationNotes?: Record<string, unknown> | null;
8656
+ }
8657
+ interface DomainRulePublicationResponse {
8658
+ publicationId: string;
8659
+ tenantId?: string | null;
8660
+ environment?: string | null;
8661
+ publicationStatus?: string | null;
8662
+ publicationReadiness?: string | null;
8663
+ ruleDefinitionId?: string | null;
8664
+ ruleKey?: string | null;
8665
+ ruleVersion?: number | null;
8666
+ ruleType?: string | null;
8667
+ resourceKey?: string | null;
8668
+ serviceKey?: string | null;
8669
+ definition?: DomainRuleDefinition | null;
8670
+ materializations?: DomainRuleMaterialization[] | null;
8671
+ explainability?: DomainRuleExplainability | null;
8672
+ processedAt?: string | null;
8673
+ }
8674
+
8675
+ interface DomainRuleRequestOptions extends ResourceDiscoveryRequestOptions {
8676
+ headers?: HttpHeaders | Record<string, string | string[]>;
8677
+ }
8678
+ declare class DomainRuleService {
8679
+ private readonly http;
8680
+ private readonly discovery;
8681
+ intake(request: DomainRuleIntakeRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleIntakeResponse>;
8682
+ createDefinition(request: DomainRuleDefinitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition>;
8683
+ listDefinitions(filters?: DomainRuleDefinitionFilters, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition[]>;
8684
+ transitionDefinitionStatus(definitionId: string, request: DomainRuleStatusTransitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition>;
8685
+ getDefinitionTimeline(definitionId: string, options?: DomainRuleRequestOptions): Observable<DomainRuleTimelineResponse>;
8686
+ simulate(request: DomainRuleSimulationRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleSimulationResponse>;
8687
+ publish(request: DomainRulePublicationRequest, options?: DomainRuleRequestOptions): Observable<DomainRulePublicationResponse>;
8688
+ createMaterialization(request: DomainRuleMaterializationRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization>;
8689
+ listMaterializations(filters?: DomainRuleMaterializationFilters, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization[]>;
8690
+ transitionMaterializationStatus(materializationId: string, request: DomainRuleStatusTransitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization>;
8691
+ private buildParams;
8692
+ private resolveHeaders;
8693
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomainRuleService, never>;
8694
+ static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
8695
+ }
8696
+
7248
8697
  interface ResourceActionOpenAdapterOptions {
7249
8698
  resourcePath: string;
7250
8699
  resourceId?: string | number | null;
@@ -7981,8 +9430,15 @@ type GlobalActionCatalogEntry = {
7981
9430
  required?: string[];
7982
9431
  example?: any;
7983
9432
  };
9433
+ param?: {
9434
+ required?: boolean;
9435
+ label?: string;
9436
+ placeholder?: string;
9437
+ hint?: string;
9438
+ example?: string;
9439
+ };
7984
9440
  };
7985
- declare const GLOBAL_ACTION_CATALOG$1: InjectionToken<readonly GlobalActionCatalogEntry[][]>;
9441
+ declare const GLOBAL_ACTION_CATALOG: InjectionToken<readonly GlobalActionCatalogEntry[][]>;
7986
9442
  declare function provideGlobalActionCatalog(entries: GlobalActionCatalogEntry[]): Provider;
7987
9443
  declare function getGlobalActionCatalog(catalog: ReadonlyArray<GlobalActionCatalogEntry[]> | null | undefined): GlobalActionCatalogEntry[];
7988
9444
  declare const PRAXIS_GLOBAL_ACTION_CATALOG: GlobalActionCatalogEntry[];
@@ -7993,22 +9449,6 @@ interface GlobalSurfaceService {
7993
9449
  }
7994
9450
  declare const GLOBAL_SURFACE_SERVICE: InjectionToken<GlobalSurfaceService>;
7995
9451
 
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
9452
  declare const SURFACE_OPEN_I18N_NAMESPACE = "surfaceOpen";
8013
9453
  declare const SURFACE_OPEN_I18N_CONFIG: Partial<PraxisI18nConfig>;
8014
9454
 
@@ -8111,6 +9551,8 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
8111
9551
 
8112
9552
  declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
8113
9553
 
9554
+ declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
9555
+
8114
9556
  declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
8115
9557
  declare function providePraxisJsonLogicOperator(definition: PraxisJsonLogicOperatorDefinition): Provider;
8116
9558
  declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLogicOperatorDefinition): Provider;
@@ -8202,8 +9644,16 @@ interface ComponentPortEndpointRef {
8202
9644
  direction: 'input' | 'output';
8203
9645
  componentType?: string;
8204
9646
  bindingPath?: string;
9647
+ nestedPath?: ComponentPortPathSegment[];
8205
9648
  };
8206
9649
  }
9650
+ interface ComponentPortPathSegment {
9651
+ kind: 'widget' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
9652
+ id?: string;
9653
+ key?: string;
9654
+ index?: number;
9655
+ componentType?: string;
9656
+ }
8207
9657
  interface StateEndpointRef {
8208
9658
  kind: 'state';
8209
9659
  ref: {
@@ -8446,6 +9896,7 @@ interface FormActionButton {
8446
9896
  disabled?: boolean;
8447
9897
  type?: 'button' | 'submit' | 'reset';
8448
9898
  action?: string;
9899
+ globalAction?: GlobalActionRef;
8449
9900
  tooltip?: string;
8450
9901
  loading?: boolean;
8451
9902
  size?: 'small' | 'medium' | 'large';
@@ -8593,7 +10044,7 @@ interface FieldsetLayout {
8593
10044
  rows: FormRowLayout[];
8594
10045
  hiddenCondition?: JsonLogicExpression | null;
8595
10046
  }
8596
- type FormRuleTargetType = 'field' | 'section' | 'action' | 'row' | 'column';
10047
+ type FormRuleTargetType = 'field' | 'section' | 'action' | 'row' | 'column' | 'visualBlock';
8597
10048
  interface FormLayoutRule {
8598
10049
  id: string;
8599
10050
  name: string;
@@ -8732,6 +10183,29 @@ interface EditorialFormTemplateBuildOptions {
8732
10183
  */
8733
10184
  declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfig;
8734
10185
 
10186
+ interface FormFieldLayoutItem {
10187
+ kind: 'field';
10188
+ id: string;
10189
+ fieldName: string;
10190
+ }
10191
+ interface FormRichContentLayoutItem {
10192
+ kind: 'richContent';
10193
+ id: string;
10194
+ document: RichContentDocument;
10195
+ layout?: 'block' | 'inline';
10196
+ rootClassName?: string | null;
10197
+ }
10198
+ type FormLayoutItem = FormFieldLayoutItem | FormRichContentLayoutItem;
10199
+ interface FormLayoutItemsColumnLike {
10200
+ fields?: unknown;
10201
+ items?: unknown;
10202
+ }
10203
+ declare function createFieldLayoutItem(fieldName: string, index?: number): FormFieldLayoutItem;
10204
+ declare function isFormLayoutItem(value: unknown): value is FormLayoutItem;
10205
+ declare function normalizeFormLayoutItems(column: FormLayoutItemsColumnLike | null | undefined): FormLayoutItem[];
10206
+ declare function getFormLayoutFieldNames(items: readonly FormLayoutItem[] | null | undefined): string[];
10207
+ declare function getFormColumnFieldNames(column: FormLayoutItemsColumnLike | null | undefined): string[];
10208
+
8735
10209
  type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
8736
10210
  interface ColumnSpan {
8737
10211
  xs?: number;
@@ -8763,7 +10237,10 @@ interface ColumnHidden {
8763
10237
  }
8764
10238
  type ColumnAlign = 'start' | 'center' | 'end' | 'stretch';
8765
10239
  interface FormColumn {
10240
+ /** Legacy field-name list accepted as migration input while items becomes canonical. */
8766
10241
  fields: string[];
10242
+ /** Canonical ordered layout items for fields and visual blocks. */
10243
+ items?: FormLayoutItem[];
8767
10244
  id: string;
8768
10245
  title?: string;
8769
10246
  span?: ColumnSpan;
@@ -8837,8 +10314,10 @@ interface FormSectionHeaderAction {
8837
10314
  label: string;
8838
10315
  /** Icon rendered in the section header action slot. */
8839
10316
  icon: string;
8840
- /** Optional action name emitted by the runtime; defaults to `id` when omitted. */
10317
+ /** Optional local action name emitted by the runtime; defaults to `id` when omitted. */
8841
10318
  action?: string;
10319
+ /** Optional structured global action executed by hosts through GlobalActionService. */
10320
+ globalAction?: GlobalActionRef;
8842
10321
  /** Optional tooltip override. Falls back to `label` when omitted. */
8843
10322
  tooltip?: string;
8844
10323
  /** Optional theme color mapped to Angular Material button tones. */
@@ -9143,6 +10622,7 @@ interface FormInitializationError {
9143
10622
  }
9144
10623
  interface FormCustomActionEvent {
9145
10624
  actionId: string;
10625
+ globalAction?: GlobalActionRef;
9146
10626
  formData: any;
9147
10627
  isValid: boolean;
9148
10628
  source: 'button' | 'shortcut' | 'section-header';
@@ -9166,7 +10646,7 @@ interface RulePropertyDefinition {
9166
10646
  }>;
9167
10647
  category?: 'content' | 'appearance' | 'behavior' | 'layout' | 'validation';
9168
10648
  }
9169
- type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column', RulePropertyDefinition[]>;
10649
+ type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column' | 'visualBlock', RulePropertyDefinition[]>;
9170
10650
  declare const RULE_PROPERTY_SCHEMA: RulePropertySchema;
9171
10651
 
9172
10652
  type EditorialOrientation = 'horizontal' | 'vertical';
@@ -10088,6 +11568,18 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
10088
11568
  status?: PersistedPageConfig['status'];
10089
11569
  }): PersistedPageConfig;
10090
11570
 
11571
+ interface DomainKnowledgeTimelineRichContentOptions {
11572
+ title?: string;
11573
+ emptyText?: string;
11574
+ }
11575
+ declare function domainKnowledgeTimelineToRichContentDocument(timeline: DomainKnowledgeChangeSetTimelineResponse, options?: DomainKnowledgeTimelineRichContentOptions): RichContentDocument;
11576
+
11577
+ interface DomainRuleTimelineRichContentOptions {
11578
+ title?: string;
11579
+ emptyText?: string;
11580
+ }
11581
+ declare function domainRuleTimelineToRichContentDocument(timeline: DomainRuleTimelineResponse, options?: DomainRuleTimelineRichContentOptions): RichContentDocument;
11582
+
10091
11583
  /**
10092
11584
  * Navigation/back behavior configuration used by form hosts (e.g., CRUD dialogs/routes).
10093
11585
  * Moved from @praxisui/crud to @praxisui/core to avoid circular deps between
@@ -10107,6 +11599,9 @@ interface BackConfig {
10107
11599
  confirmOnDirty?: boolean;
10108
11600
  }
10109
11601
 
11602
+ interface PraxisDataQueryContextMeta extends Record<string, unknown> {
11603
+ domainCatalog?: DomainCatalogContextHint | null;
11604
+ }
10110
11605
  interface PraxisDataQueryContext {
10111
11606
  filters?: Record<string, unknown> | null;
10112
11607
  sort?: string[] | null;
@@ -10115,7 +11610,7 @@ interface PraxisDataQueryContext {
10115
11610
  index?: number | null;
10116
11611
  size?: number | null;
10117
11612
  } | null;
10118
- meta?: Record<string, unknown> | null;
11613
+ meta?: PraxisDataQueryContextMeta | null;
10119
11614
  }
10120
11615
  declare function normalizePraxisDataQueryContext(context?: PraxisDataQueryContext | null): PraxisDataQueryContext | null;
10121
11616
  declare function resolvePraxisFilterCriteria(filterCriteria?: Record<string, unknown> | null, queryContext?: PraxisDataQueryContext | null): Record<string, unknown>;
@@ -10455,7 +11950,7 @@ interface GlobalActionField {
10455
11950
  dependsOnValue?: string;
10456
11951
  }
10457
11952
  interface GlobalActionUiSchema {
10458
- id: GlobalActionId;
11953
+ id: string;
10459
11954
  label: string;
10460
11955
  fields: GlobalActionField[];
10461
11956
  editorMode?: 'default' | 'surface-open';
@@ -10463,6 +11958,33 @@ interface GlobalActionUiSchema {
10463
11958
  declare const GLOBAL_ACTION_UI_SCHEMAS: GlobalActionUiSchema[];
10464
11959
  declare function getGlobalActionUiSchema(id: string | undefined): GlobalActionUiSchema | undefined;
10465
11960
 
11961
+ type GlobalActionValidationCode = 'globalAction.actionId.required' | 'globalAction.payload.required' | 'globalAction.payload.type';
11962
+ interface GlobalActionValidationIssue {
11963
+ code: GlobalActionValidationCode;
11964
+ path?: string;
11965
+ actionId?: string;
11966
+ requiredKeys?: string[];
11967
+ missingKeys?: string[];
11968
+ expectedType?: string;
11969
+ actualType?: string;
11970
+ }
11971
+ interface GlobalActionValidationTarget {
11972
+ ref: GlobalActionRef | null | undefined;
11973
+ catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null;
11974
+ path?: string;
11975
+ }
11976
+ declare function normalizeGlobalActionRef(ref: GlobalActionRef | null | undefined): GlobalActionRef | null;
11977
+ declare function isGlobalActionRef(value: unknown): value is GlobalActionRef;
11978
+ declare function getRequiredGlobalActionPayloadKeys(actionId: string | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
11979
+ declare function hasMeaningfulGlobalActionPayloadValue(value: any): boolean;
11980
+ declare function getMissingGlobalActionPayloadKeys(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
11981
+ declare function isRequiredGlobalActionParamPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
11982
+ declare function isRequiredGlobalActionPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
11983
+ declare function getGlobalActionPayloadActualType(value: unknown): string;
11984
+ declare function getGlobalActionPayloadTypeIssue(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): Pick<GlobalActionValidationIssue, 'expectedType' | 'actualType'> | null;
11985
+ declare function validateGlobalActionRef(ref: GlobalActionRef | null | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null, path?: string): GlobalActionValidationIssue[];
11986
+ declare function validateGlobalActionRefs(targets: GlobalActionValidationTarget[]): GlobalActionValidationIssue[];
11987
+
10466
11988
  interface SurfaceOpenPreset {
10467
11989
  id: string;
10468
11990
  label: string;
@@ -10591,6 +12113,205 @@ interface AiConcept {
10591
12113
  }
10592
12114
  type AiConceptPack = Record<string, AiConcept>;
10593
12115
 
12116
+ /**
12117
+ * Representa o contrato canônico de authoring executável de um componente.
12118
+ */
12119
+ interface ComponentAuthoringManifest {
12120
+ /** Versão do schema do manifesto (ex: 1.0.0) */
12121
+ schemaVersion: string;
12122
+ /** Identificador único do componente no registry (ex: praxis-table) */
12123
+ componentId: string;
12124
+ /** Nome do pacote npm que possui o componente (ex: @praxisui/table) */
12125
+ ownerPackage: string;
12126
+ /** ID do schema de configuração (ex: TableConfig) */
12127
+ configSchemaId: string;
12128
+ /** Versão do manifesto específico deste componente */
12129
+ manifestVersion: string;
12130
+ /** Inputs que o componente aceita em runtime */
12131
+ runtimeInputs: ManifestInput[];
12132
+ /** Alvos que podem ser editados via AI */
12133
+ editableTargets: ManifestTarget[];
12134
+ /** Operações atômicas permitidas */
12135
+ operations: ManifestOperation[];
12136
+ /** Validadores de integridade da configuração */
12137
+ validators: ManifestValidator[];
12138
+ /** Requisitos para round-trip sem perda de informação */
12139
+ roundTripRequirements?: string[];
12140
+ /**
12141
+ * Exemplos de intenção → operação para uso em Few-Shot e evals.
12142
+ * Obrigatório: o gate de aceitação rejeita manifestos sem examples.
12143
+ * Deve conter ao menos um exemplo negativo (isPositive: false).
12144
+ */
12145
+ examples: ManifestExample[];
12146
+ /**
12147
+ * Perfis opcionais para familias de componentes que compartilham um manifesto
12148
+ * base, mas precisam expor semantica granular por componente/controlType.
12149
+ */
12150
+ controlProfiles?: ManifestControlProfile[];
12151
+ }
12152
+ interface ManifestInput {
12153
+ name: string;
12154
+ type: string;
12155
+ description?: string;
12156
+ allowedValues?: any[];
12157
+ }
12158
+ interface ManifestTarget {
12159
+ kind: string;
12160
+ resolver: string;
12161
+ description: string;
12162
+ }
12163
+ /**
12164
+ * Política de submissão para campos locais num formulário.
12165
+ * - 'omit': campo não é incluído no payload de submissão (default para campos locais).
12166
+ * - 'include': campo é sempre incluído no payload.
12167
+ * - 'includeWhenDirty': campo é incluído apenas se o valor foi alterado pelo usuário.
12168
+ * NOTA: 'transient' NÃO é um valor válido; use source:'local' + transient:true no schema de input.
12169
+ */
12170
+ type SubmitPolicy = 'omit' | 'include' | 'includeWhenDirty';
12171
+ type ManifestSubmissionImpact = 'none' | 'visual-only' | 'config-only' | 'affects-submission' | 'affects-schema-backed-data' | 'affects-remote-binding';
12172
+ interface ManifestOperation {
12173
+ operationId: string;
12174
+ title: string;
12175
+ /**
12176
+ * Escopo da operação.
12177
+ * - 'global': opera sobre a configuração raiz; target.required deve ser false.
12178
+ * - Outros valores: opera sobre um alvo específico; target.required deve ser true.
12179
+ * O valor 'target' é reservado para uso futuro e não deve ser usado.
12180
+ */
12181
+ 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';
12182
+ /**
12183
+ * @deprecated Use `target.kind` em vez disso.
12184
+ * Mantido para compatibilidade retroativa com ferramentas que lêem o registry.
12185
+ * Deve ser igual a `target.kind` quando `target` estiver presente.
12186
+ */
12187
+ targetKind?: string;
12188
+ /**
12189
+ * Definição estruturada do alvo da operação.
12190
+ * Obrigatório para operações com scope diferente de 'global'.
12191
+ * Usado pelo backend para resolver o alvo antes de compilar o patch.
12192
+ */
12193
+ target?: {
12194
+ /** Tipo do alvo (ex: column, rule) */
12195
+ kind: string;
12196
+ /** Resolver canônico usado para localizar o alvo (ex: column-by-field) */
12197
+ resolver: string;
12198
+ /** Política para lidar com ambiguidades na resolução */
12199
+ ambiguityPolicy?: 'fail' | 'first' | 'all';
12200
+ /** Se o alvo é obrigatório para a operação */
12201
+ required: boolean;
12202
+ };
12203
+ /** Schema JSON do payload de entrada da operação */
12204
+ inputSchema: any;
12205
+ /**
12206
+ * Efeitos que a operação causa na configuração.
12207
+ * Usado pelo backend para compilar o patch de forma determinística.
12208
+ */
12209
+ effects: ManifestEffect[];
12210
+ /** Se true, a operação é destrutiva e pode causar perda de dados/configuração */
12211
+ destructive?: boolean;
12212
+ /**
12213
+ * Se true, o agente DEVE solicitar confirmação explícita antes de aplicar.
12214
+ * Obrigatório para todas as operações com destructive:true.
12215
+ */
12216
+ requiresConfirmation?: boolean;
12217
+ /** IDs dos validadores que devem ser executados para esta operação */
12218
+ validators?: string[];
12219
+ /**
12220
+ * Caminhos (JSON Path-like) na configuração afetados por esta operação.
12221
+ * Deve cobrir todos os paths tocados pelos effects.
12222
+ * Usado pelo backend para validação de acesso e auditoria de mudanças.
12223
+ */
12224
+ affectedPaths: string[];
12225
+ /**
12226
+ * Impacto declarado da operação sobre submissão, configuração visual ou binding remoto.
12227
+ * Boolean permanece aceito para manifests legados; manifests semanticamente validados devem usar
12228
+ * ManifestSubmissionImpact para evitar inferencia fragil no backend.
12229
+ */
12230
+ submissionImpact: ManifestSubmissionImpact | boolean;
12231
+ /**
12232
+ * Condições de estado que devem ser verdadeiras antes de executar a operação.
12233
+ * Usado pelo backend para validação prévia ao patch.
12234
+ * Ex: ['config-initialized', 'target-exists']
12235
+ */
12236
+ preconditions: string[];
12237
+ }
12238
+ /**
12239
+ * Efeito atômico sobre a configuração.
12240
+ * Usa discriminated union por `kind` para documentar quais campos são obrigatórios:
12241
+ *
12242
+ * - 'merge-object': path obrigatório; funde o payload no objeto no path.
12243
+ * - 'merge-by-key': path + key obrigatórios; funde pelo campo-chave em uma coleção.
12244
+ * - 'append-unique': path + key obrigatórios; adiciona item se não existir (deduplicação por key).
12245
+ * - 'remove-by-key': path + key obrigatórios; remove item da coleção pelo valor da key.
12246
+ * - 'reorder-by-key': path + key obrigatórios; reordena coleção por key.
12247
+ * - 'set-value': path obrigatório; seta o valor diretamente no path.
12248
+ * - 'compile-domain-patch': handler obrigatório; delega compilação a um handler especializado.
12249
+ */
12250
+ interface ManifestEffect {
12251
+ kind: 'merge-object' | 'merge-by-key' | 'append-unique' | 'remove-by-key' | 'reorder-by-key' | 'set-value' | 'compile-domain-patch';
12252
+ /** Path JSON-like na configuração onde o efeito é aplicado. Obrigatório para todos os kinds exceto 'compile-domain-patch'. */
12253
+ path?: string;
12254
+ /** Chave de identidade em coleções. Obrigatório para merge-by-key, append-unique, remove-by-key, reorder-by-key. */
12255
+ key?: string;
12256
+ /** ID do handler especializado. Obrigatório quando kind é 'compile-domain-patch'. */
12257
+ handler?: string;
12258
+ handlerContract?: ManifestDomainPatchHandlerContract;
12259
+ }
12260
+ interface ManifestDomainPatchHandlerContract {
12261
+ reads: string[];
12262
+ writes: string[];
12263
+ identityKeys: string[];
12264
+ inputSchema?: any;
12265
+ failureModes: string[];
12266
+ description: string;
12267
+ }
12268
+ interface ManifestValidator {
12269
+ validatorId: string;
12270
+ level: 'error' | 'warning' | 'info';
12271
+ code: string;
12272
+ description: string;
12273
+ }
12274
+ interface ManifestExample {
12275
+ id: string;
12276
+ request: string;
12277
+ operationId: string;
12278
+ target?: string;
12279
+ params?: any;
12280
+ isPositive?: boolean;
12281
+ }
12282
+ interface ManifestControlProfile {
12283
+ /** Identificador estavel do perfil dentro do manifesto familiar. */
12284
+ profileId: string;
12285
+ /** Nome curto usado por ferramentas de authoring. */
12286
+ title: string;
12287
+ /** Explica a semantica que este perfil adiciona sobre o manifesto base. */
12288
+ description: string;
12289
+ /** Regras deterministicas para projetar o perfil em componentes do registry. */
12290
+ appliesTo: ManifestControlProfileApplicability;
12291
+ /** Alvos adicionais ou refinados que este perfil torna editaveis. */
12292
+ editableTargets?: ManifestTarget[];
12293
+ /** Operacoes especificas do perfil/controlType. */
12294
+ operations: ManifestOperation[];
12295
+ /** Validadores especificos do perfil/controlType. */
12296
+ validators: ManifestValidator[];
12297
+ /** Exemplos/evals especificos do perfil/controlType. */
12298
+ examples: ManifestExample[];
12299
+ /** Requisitos adicionais de round-trip para este perfil. */
12300
+ roundTripRequirements?: string[];
12301
+ }
12302
+ interface ManifestControlProfileApplicability {
12303
+ /** IDs de componentes do registry que devem receber este perfil. */
12304
+ componentIds?: string[];
12305
+ /** Selectors publicos que devem receber este perfil. */
12306
+ selectors?: string[];
12307
+ /** Control types canonicos ou aliases que devem receber este perfil. */
12308
+ controlTypes?: string[];
12309
+ /** Tags de ComponentDocMeta usadas como fallback de classificacao. */
12310
+ tags?: string[];
12311
+ /** Tipos do input `metadata` usados como fallback de classificacao. */
12312
+ metadataInputTypes?: string[];
12313
+ }
12314
+
10594
12315
  /**
10595
12316
  * Catálogo de capacidades genéricas de FieldMetadata para uso da IA.
10596
12317
  * Baseado em projects/praxis-core/src/lib/models/component-metadata.interface.ts
@@ -10620,6 +12341,7 @@ declare module "./index" {
10620
12341
  shell: true;
10621
12342
  connections: true;
10622
12343
  context: true;
12344
+ state: true;
10623
12345
  }
10624
12346
  }
10625
12347
  type CapabilityCategory = AiCapabilityCategory;
@@ -10706,10 +12428,14 @@ interface ComponentMergePatch<TConfig extends Record<string, unknown> = Record<s
10706
12428
 
10707
12429
  declare const DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK: ComponentContextPack;
10708
12430
 
12431
+ declare const DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK: ComponentContextPack;
12432
+
10709
12433
  interface WidgetEventPathSegment {
10710
- kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
12434
+ kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group' | 'widget';
10711
12435
  id?: string;
12436
+ key?: string;
10712
12437
  index?: number;
12438
+ componentType?: string;
10713
12439
  }
10714
12440
  interface WidgetEventEnvelope {
10715
12441
  /** Optional top-level page widget key that owns the event tree. */
@@ -10731,6 +12457,50 @@ interface WidgetResolutionDiagnostic {
10731
12457
  error?: unknown;
10732
12458
  }
10733
12459
 
12460
+ interface WidgetEventPathNormalizeOptions {
12461
+ /** Optional owner component id used to strip only the top-level container segment. */
12462
+ ownerComponentId?: string;
12463
+ }
12464
+ interface WidgetEventPathNormalizeInput {
12465
+ path?: WidgetEventPathSegment[];
12466
+ sourceChildWidgetKey?: string;
12467
+ sourceComponentId?: string;
12468
+ }
12469
+ declare function normalizeWidgetEventPath(event: WidgetEventEnvelope | WidgetEventPathNormalizeInput, options?: WidgetEventPathNormalizeOptions): ComponentPortPathSegment[];
12470
+
12471
+ interface NestedWidgetResolution {
12472
+ ownerWidgetKey: string;
12473
+ nestedPath: ComponentPortPathSegment[];
12474
+ widget: WidgetDefinition;
12475
+ componentId: string;
12476
+ childWidgetKey: string;
12477
+ }
12478
+ interface NestedWidgetInputPatchResult {
12479
+ widget: WidgetInstance;
12480
+ changed: boolean;
12481
+ }
12482
+ declare class NestedWidgetConfigAccessor {
12483
+ listNestedWidgets(owner: WidgetInstance): NestedWidgetResolution[];
12484
+ resolveNestedWidget(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined): WidgetDefinition | undefined;
12485
+ setNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string, value: unknown): NestedWidgetInputPatchResult;
12486
+ private listNestedWidgetsInDefinition;
12487
+ private resolveNestedWidgetInDefinition;
12488
+ private setNestedWidgetInputInDefinition;
12489
+ private listChildWidgetLocations;
12490
+ private listTabsWidgetLocations;
12491
+ private listExpansionWidgetLocations;
12492
+ private resolveWidgetArrayLocation;
12493
+ private resolveTabsWidgetArray;
12494
+ private resolveExpansionWidgetArray;
12495
+ private findBySegment;
12496
+ private segmentIdentity;
12497
+ private asWidgetDefinitions;
12498
+ private isWidgetDefinition;
12499
+ private resolveChildWidgetKey;
12500
+ private clone;
12501
+ private isEqual;
12502
+ }
12503
+
10734
12504
  type EditorialContentFormat = 'plain' | 'markdown';
10735
12505
  interface EditorialLinkDefinition {
10736
12506
  label: string;
@@ -11030,6 +12800,7 @@ declare class WidgetPageStateRuntimeService {
11030
12800
  private evaluateDerivedJsonLogic;
11031
12801
  private resolveCaseValue;
11032
12802
  private resolveTemplate;
12803
+ private isPageStateTemplatePath;
11033
12804
  private normalizeDependencyPath;
11034
12805
  private readPath;
11035
12806
  private isPlainObject;
@@ -11138,6 +12909,7 @@ interface LinkExecutionDelivery {
11138
12909
  widgetKey?: string;
11139
12910
  portId?: string;
11140
12911
  bindingPath?: string;
12912
+ nestedPath?: ComponentPortPathSegment[];
11141
12913
  }
11142
12914
  interface LinkExecutionResult {
11143
12915
  status: 'delivered' | 'skipped' | 'failed';
@@ -11224,6 +12996,7 @@ declare class CompositionRuntimeEngine {
11224
12996
  private readonly stateRuntime;
11225
12997
  private readonly traceService;
11226
12998
  private readonly pathAccessor;
12999
+ private readonly nestedWidgetAccessor;
11227
13000
  private definition;
11228
13001
  private readonly now;
11229
13002
  constructor(options?: CompositionRuntimeEngineOptions);
@@ -11240,6 +13013,7 @@ declare class CompositionRuntimeEngine {
11240
13013
  private cloneJson;
11241
13014
  private extractDerivedNodeKey;
11242
13015
  private appendDiagnosticTraceEntries;
13016
+ private createNestedWidgetEventBridgeDiagnostics;
11243
13017
  }
11244
13018
 
11245
13019
  interface CompositionRuntimeFacadeOptions {
@@ -11286,6 +13060,46 @@ type LegacyCompositionLinkInput = Omit<CompositionLink, 'condition' | 'policy' |
11286
13060
  declare function migrateLegacyCompositionLinks(links: LegacyCompositionLinkInput[] | undefined | null): CompositionLink[];
11287
13061
  declare function migrateLegacyCompositionLink(link: LegacyCompositionLinkInput): CompositionLink;
11288
13062
 
13063
+ interface NestedPortCatalogRegistry {
13064
+ get(id: string): Pick<ComponentDocMeta, 'ports'> | undefined;
13065
+ }
13066
+ interface ResolvedNestedPort {
13067
+ ownerWidgetKey: string;
13068
+ ownerComponentId?: string;
13069
+ nestedPath: ComponentPortPathSegment[];
13070
+ containerPath?: ComponentPortPathSegment[];
13071
+ port: PortContract;
13072
+ componentId: string;
13073
+ childWidgetKey: string;
13074
+ }
13075
+ interface NestedPortCatalogDiagnostic {
13076
+ code: 'NESTED_WIDGET_METADATA_MISSING' | 'NESTED_WIDGET_KEY_MISSING';
13077
+ severity: 'warning' | 'error';
13078
+ ownerWidgetKey: string;
13079
+ nestedPath: ComponentPortPathSegment[];
13080
+ componentId?: string;
13081
+ message: string;
13082
+ }
13083
+ interface NestedPortCatalogResult {
13084
+ ports: ResolvedNestedPort[];
13085
+ diagnostics: NestedPortCatalogDiagnostic[];
13086
+ }
13087
+ declare class NestedPortCatalogService {
13088
+ private readonly accessor;
13089
+ constructor(accessor?: NestedWidgetConfigAccessor);
13090
+ resolve(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry): NestedPortCatalogResult;
13091
+ resolveEndpoint(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry, options: {
13092
+ ownerWidgetKey: string;
13093
+ nestedPath: ComponentPortPathSegment[];
13094
+ portId: string;
13095
+ direction: PortContract['direction'];
13096
+ }): ResolvedNestedPort | undefined;
13097
+ private hasStableTerminalKey;
13098
+ private containerPath;
13099
+ private isSamePath;
13100
+ private clone;
13101
+ }
13102
+
11289
13103
  interface RenderedWidgetInstance extends WidgetInstance {
11290
13104
  renderClassName?: string;
11291
13105
  renderSpan?: number;
@@ -11372,6 +13186,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11372
13186
  private readonly route;
11373
13187
  private readonly conn;
11374
13188
  private readonly stateRuntime;
13189
+ private readonly nestedWidgetAccessor;
11375
13190
  private readonly settingsPanel;
11376
13191
  private readonly defaultShellEditor;
11377
13192
  private readonly defaultPageEditor;
@@ -11388,12 +13203,20 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11388
13203
  private applyBootstrapCompositionHydration;
11389
13204
  private reportStateDiagnostics;
11390
13205
  private dispatchWidgetEventToComposition;
13206
+ private matchesRuntimeSourceRef;
13207
+ private matchesLegacyWidgetEventSource;
13208
+ private areNestedPathsEqual;
11391
13209
  private stateFromCompositionSnapshot;
11392
13210
  private applyCompositionWidgetDeliveries;
11393
13211
  private buildStateContext;
11394
13212
  private cloneStateValues;
11395
13213
  private cloneGrouping;
11396
13214
  private resolveShellTemplates;
13215
+ private enrichRuntimeWidgetInputs;
13216
+ private buildRichContentHostCapabilities;
13217
+ private dispatchRichContentAction;
13218
+ private isRichContentActionAvailable;
13219
+ private hasRichContentCapability;
11397
13220
  private resolveComponentBindingPath;
11398
13221
  private buildRuntimeEventId;
11399
13222
  private shouldInjectEditShellActions;
@@ -11404,7 +13227,6 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11404
13227
  private handleSetInputCommand;
11405
13228
  private mergeOrder;
11406
13229
  private maybeExecuteMappedAction;
11407
- private maybeExecuteGlobalCommand;
11408
13230
  private resolveActionPayload;
11409
13231
  private resolveTemplate;
11410
13232
  private lookup;
@@ -11650,7 +13472,7 @@ declare function normalizeFormConfig(config: FormConfig): FormConfig;
11650
13472
 
11651
13473
  /** Minimal metadata about the backend schema source. */
11652
13474
  interface SchemaMetaInfo {
11653
- /** API path used to resolve the schema (e.g., /api/employees/all or /filter) */
13475
+ /** API path used to resolve the schema (e.g., /api/employees/filter) */
11654
13476
  path: string;
11655
13477
  /** Operation used when fetching the schema (get|post) */
11656
13478
  operation: string;
@@ -11724,6 +13546,12 @@ interface SchemaIdParams {
11724
13546
  }
11725
13547
  declare function normalizePath(p: string): string;
11726
13548
  declare function buildSchemaId(params: SchemaIdParams): string;
13549
+ /**
13550
+ * Produces a deterministic, storage-safe segment for places that impose short
13551
+ * identifier limits. This must not replace the semantic schemaId stored in
13552
+ * payloads or metadata.
13553
+ */
13554
+ declare function buildSchemaIdStorageKeySegment(schemaId: string): string;
11727
13555
 
11728
13556
  interface FetchWithEtagParams {
11729
13557
  url: string;
@@ -11903,5 +13731,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
11903
13731
  /** Register a whitelist of allowed hook ids/patterns. */
11904
13732
  declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
11905
13733
 
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 };
13734
+ 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, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, 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, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, 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, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, 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, normalizeLookupFilterRequest, 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, resolveEntityLookupPayloadMode, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
13735
+ 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, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, 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, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDisplayMetadata, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityRef, 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, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, 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, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, 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, PraxisDataQueryContextMeta, 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, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, 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, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, 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 };