@praxisui/core 8.0.0-beta.3 → 8.0.0-beta.30

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
@@ -1,9 +1,9 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, Type, Provider, ErrorHandler, EnvironmentProviders, OnChanges, EventEmitter, SimpleChanges, OnInit, OnDestroy, ElementRef, Renderer2 } from '@angular/core';
2
+ import { InjectionToken, Type, Provider, ErrorHandler, EnvironmentProviders, OnChanges, EventEmitter, SimpleChanges, OnInit, OnDestroy, ElementRef, AfterViewInit, Renderer2 } from '@angular/core';
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,250 @@ 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' | 'route';
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 EntityLookupDisplayPreset = 'compact' | 'rich' | 'directory' | 'status' | 'reference' | 'hierarchical';
90
+ type EntityLookupUsage = 'form' | 'filter' | 'table-cell' | 'dashboard' | 'wizard' | 'review';
91
+ type EntityLookupDensity = 'compact' | 'comfortable' | 'rich';
92
+ type EntityLookupDisplayFieldPresentation = 'text' | 'chip' | 'badge' | 'date' | 'currency' | 'metric';
93
+ interface EntityLookupDisplayFieldMetadata {
94
+ key?: string;
95
+ propertyPath?: string;
96
+ label?: string;
97
+ icon?: string;
98
+ presentation?: EntityLookupDisplayFieldPresentation | string;
99
+ tone?: LookupStatusTone | 'info' | string;
100
+ format?: string;
101
+ }
102
+ interface EntityLookupRichFieldMetadata extends EntityLookupDisplayFieldMetadata {
103
+ value?: unknown;
104
+ }
105
+ type EntityLookupSinglePayloadMode = 'id' | 'entityRef';
106
+ type EntityLookupMultiplePayloadMode = 'ids' | 'entityRefs';
107
+ type EntityLookupPayloadMode = EntityLookupSinglePayloadMode | EntityLookupMultiplePayloadMode;
108
+ interface EntityLookupCollectionMetadata {
109
+ multiple?: boolean;
110
+ maxSelections?: number;
111
+ }
112
+ interface LookupSelectionPolicyMetadata {
113
+ selectablePropertyPath?: string;
114
+ statusPropertyPath?: string;
115
+ allowedStatuses?: string[];
116
+ blockedStatuses?: string[];
117
+ allowRetainInvalidExistingValue?: boolean;
118
+ disabledReasonTemplate?: string;
119
+ validationMessageTemplate?: string;
120
+ }
121
+ interface LookupCapabilitiesMetadata {
122
+ filter?: boolean;
123
+ byIds?: boolean;
124
+ detail?: boolean;
125
+ create?: boolean;
126
+ edit?: boolean;
127
+ navigateToDetail?: boolean;
128
+ multiSelect?: boolean;
129
+ recent?: boolean;
130
+ favorites?: boolean;
131
+ auditSnapshot?: boolean;
132
+ }
133
+ interface LookupDetailMetadata {
134
+ hrefTemplate?: string;
135
+ routeTemplate?: string;
136
+ openDetailMode?: LookupOpenDetailMode;
137
+ kind?: 'surface' | 'route' | 'href' | string;
138
+ surfaceId?: string;
139
+ presentation?: 'modal' | 'drawer' | string;
140
+ preferredWidget?: string;
141
+ mode?: 'view' | 'edit' | 'create' | string;
142
+ }
143
+ interface LookupCreateMetadata {
144
+ hrefTemplate?: string;
145
+ routeTemplate?: string;
146
+ openMode?: LookupOpenDetailMode;
147
+ }
148
+ interface LookupFilterDefinitionMetadata {
149
+ field: string;
150
+ label?: string;
151
+ type: LookupFilterFieldType;
152
+ operators: LookupFilterOperator[];
153
+ defaultOperator?: LookupFilterOperator;
154
+ optionsSource?: string;
155
+ required?: boolean;
156
+ hidden?: boolean;
157
+ }
158
+ interface LookupSortOptionMetadata {
80
159
  key: string;
160
+ field: string;
161
+ direction: 'asc' | 'desc';
162
+ label?: string;
163
+ }
164
+ interface LookupFilteringMetadata {
165
+ availableFilters?: LookupFilterDefinitionMetadata[];
166
+ defaultFilters?: Record<string, unknown[]>;
167
+ sortOptions?: LookupSortOptionMetadata[];
168
+ defaultSort?: string;
169
+ quickFilterFields?: string[];
170
+ searchPlaceholder?: string;
171
+ }
172
+ interface LookupDialogMetadata {
173
+ enabled?: boolean;
174
+ title?: string;
175
+ size?: LookupDialogSize;
176
+ previewPanel?: boolean;
177
+ allowColumnChooser?: boolean;
178
+ allowSavedViews?: boolean;
179
+ resultColumns?: LookupResultColumnMetadata[];
180
+ openActionLabel?: string;
181
+ applyActionLabel?: string;
182
+ cancelActionLabel?: string;
183
+ }
184
+ type LookupResultColumnKind = 'code' | 'label' | 'description' | 'status' | 'disabledReason' | 'custom';
185
+ interface LookupResultColumnMetadata {
186
+ field: string;
187
+ label?: string;
188
+ kind?: LookupResultColumnKind;
189
+ width?: string;
190
+ }
191
+ interface LookupFilterRequest {
192
+ field: string;
193
+ operator: LookupFilterOperator;
194
+ value: unknown;
195
+ }
196
+ interface OptionSourceFilterRequest<ID = string | number, FD = unknown> {
197
+ filter?: FD | null;
198
+ filters?: LookupFilterRequest[];
199
+ search?: string;
200
+ sort?: string;
201
+ includeIds?: ID[];
202
+ }
203
+ interface EntityLookupActionsMetadata {
204
+ showDetail?: boolean;
205
+ showChange?: boolean;
206
+ showCopyCode?: boolean;
207
+ showCopyId?: boolean;
208
+ showCreate?: boolean;
209
+ showClear?: boolean;
210
+ }
211
+ interface EntityLookupDisplayMetadata {
212
+ preset?: EntityLookupDisplayPreset | string;
213
+ usage?: EntityLookupUsage | string;
214
+ density?: EntityLookupDensity | string;
215
+ selectedLayout?: EntityLookupSelectedLayout;
216
+ resultLayout?: EntityLookupResultLayout;
217
+ primaryPropertyPath?: string;
218
+ fields?: EntityLookupDisplayFieldMetadata[];
219
+ secondaryPropertyPaths?: string[];
220
+ badgePropertyPaths?: string[];
221
+ avatarPropertyPath?: string;
222
+ showCode?: boolean;
223
+ showDescription?: boolean;
224
+ showStatus?: boolean;
225
+ showAvatar?: boolean;
226
+ showBadges?: boolean;
227
+ showDisabledReason?: boolean;
228
+ showResultCount?: boolean;
229
+ statusToneMap?: Record<string, LookupStatusTone>;
230
+ badgeKeys?: string[];
231
+ maxVisibleBadges?: number;
232
+ detailActionLabel?: string;
233
+ changeActionLabel?: string;
234
+ copyCodeActionLabel?: string;
235
+ copyIdActionLabel?: string;
236
+ createActionLabel?: string;
237
+ clearActionLabel?: string;
238
+ actions?: EntityLookupActionsMetadata;
239
+ }
240
+ interface EntityRef<ID = string | number> {
241
+ id: ID;
81
242
  type?: string;
243
+ }
244
+ interface EntityLookupResultExtra {
245
+ code?: string;
246
+ description?: string;
247
+ status?: string;
248
+ statusLabel?: string;
249
+ statusTone?: LookupStatusTone;
250
+ selectable?: boolean;
251
+ disabledReason?: string;
252
+ detailHref?: string;
253
+ detailRoute?: string;
254
+ resourcePath?: string;
255
+ entityKey?: string;
256
+ richFields?: EntityLookupRichFieldMetadata[];
257
+ badges?: string[];
258
+ tags?: string[];
259
+ riskLevel?: string;
260
+ homologationStatus?: string;
261
+ [key: string]: unknown;
262
+ }
263
+ interface EntityLookupResult<ID = string | number> {
264
+ id: ID;
265
+ label: string;
266
+ extra?: EntityLookupResultExtra;
267
+ }
268
+ type EntityLookupResultState = 'selectable' | 'blocked' | 'legacy';
269
+ interface EntityLookupResultStateContext {
270
+ allowRetainInvalidExistingValue?: boolean;
271
+ }
272
+ interface OptionSourceMetadata {
273
+ key: string;
274
+ type?: OptionSourceType;
82
275
  resourcePath?: string;
83
276
  filterField?: string;
84
277
  propertyPath?: string;
85
278
  labelPropertyPath?: string;
86
279
  valuePropertyPath?: string;
87
280
  dependsOn?: string[];
281
+ entityKey?: string;
282
+ codePropertyPath?: string;
283
+ descriptionPropertyPaths?: string[];
284
+ statusPropertyPath?: string;
285
+ disabledPropertyPath?: string;
286
+ disabledReasonPropertyPath?: string;
287
+ searchPropertyPaths?: string[];
288
+ dependencyFilterMap?: Record<string, string>;
289
+ selectionPolicy?: LookupSelectionPolicyMetadata;
290
+ capabilities?: LookupCapabilitiesMetadata;
291
+ detail?: LookupDetailMetadata;
292
+ create?: LookupCreateMetadata;
293
+ display?: EntityLookupDisplayMetadata;
294
+ filtering?: LookupFilteringMetadata;
88
295
  excludeSelfField?: boolean;
89
- searchMode?: string;
296
+ searchMode?: OptionSourceSearchMode;
90
297
  pageSize?: number;
91
298
  includeIds?: boolean;
92
- }
299
+ cachePolicy?: OptionSourceCachePolicy;
300
+ }
301
+ declare function isEntityLookupResultSelectable(result?: Pick<EntityLookupResult<any>, 'extra'> | null): boolean;
302
+ declare function isEntityLookupPayloadMode(value: unknown): value is EntityLookupPayloadMode;
303
+ declare function isEntityLookupSinglePayloadMode(value: unknown): value is EntityLookupSinglePayloadMode;
304
+ declare function isEntityLookupMultiplePayloadMode(value: unknown): value is EntityLookupMultiplePayloadMode;
305
+ declare function isLookupFilterFieldType(value: unknown): value is LookupFilterFieldType;
306
+ declare function isLookupFilterOperator(value: unknown): value is LookupFilterOperator;
307
+ declare function isLookupDialogSize(value: unknown): value is LookupDialogSize;
308
+ declare function normalizeLookupFilterRequest(filter: LookupFilterRequest): LookupFilterRequest;
309
+ declare function serializeOptionSourceFilterRequest<ID = string | number, FD = unknown>(filter: FD | null | undefined, options?: {
310
+ filters?: LookupFilterRequest[] | null;
311
+ search?: string | null;
312
+ sort?: string | null;
313
+ includeIds?: ID[] | null;
314
+ }): OptionSourceFilterRequest<ID, FD>;
315
+ declare function resolveEntityLookupPayloadMode(payloadMode: unknown, multiple?: boolean): EntityLookupPayloadMode;
316
+ declare function isEntityLookupPayloadModeCompatible(payloadMode: unknown, multiple?: boolean): boolean;
317
+ declare function serializeEntityLookupValueForPayload(value: unknown, options?: {
318
+ payloadMode?: unknown;
319
+ multiple?: boolean;
320
+ entityType?: string;
321
+ }): unknown;
322
+ declare function classifyEntityLookupResult(result?: Pick<EntityLookupResult<any>, 'extra'> | null, context?: EntityLookupResultStateContext): EntityLookupResultState;
93
323
 
94
324
  type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
95
325
  type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
@@ -146,12 +376,15 @@ interface RichBlockRuleSet {
146
376
  expr: JsonLogicExpression;
147
377
  }>;
148
378
  }
379
+ type RichCapabilityMode = 'all' | 'any';
149
380
  interface RichBlockBaseNode extends RichBlockRuleSet {
150
381
  id?: string;
151
382
  testId?: string;
152
383
  className?: string;
153
384
  style?: Record<string, string | number>;
154
385
  bindings?: RichBlockContextConfig;
386
+ requiresCapabilities?: string[];
387
+ capabilityMode?: RichCapabilityMode;
155
388
  }
156
389
  interface RichTextNode extends RichBlockBaseNode {
157
390
  type: 'text';
@@ -170,6 +403,14 @@ interface RichImageNode extends RichBlockBaseNode {
170
403
  alt?: string;
171
404
  altExpr?: string;
172
405
  }
406
+ interface RichLinkNode extends RichBlockBaseNode {
407
+ type: 'link';
408
+ label?: string;
409
+ labelExpr?: string;
410
+ href: string;
411
+ target?: '_blank' | '_self';
412
+ rel?: string;
413
+ }
173
414
  interface RichBadgeNode extends RichBlockBaseNode {
174
415
  type: 'badge';
175
416
  label?: string;
@@ -200,7 +441,23 @@ interface RichProgressNode extends RichBlockBaseNode {
200
441
  labelExpr?: string;
201
442
  showPercent?: boolean;
202
443
  }
203
- type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode;
444
+ interface RichActionRef {
445
+ actionId: string;
446
+ payload?: unknown;
447
+ payloadExpr?: string;
448
+ availabilityExpr?: string;
449
+ confirmMessage?: string;
450
+ }
451
+ interface RichActionButtonNode extends RichBlockBaseNode {
452
+ type: 'actionButton';
453
+ label?: string;
454
+ labelExpr?: string;
455
+ icon?: string;
456
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
457
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
458
+ action: RichActionRef;
459
+ }
460
+ type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichLinkNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode | RichActionButtonNode;
204
461
  interface RichComposeNode extends RichBlockBaseNode {
205
462
  type: 'compose';
206
463
  direction?: 'row' | 'column';
@@ -208,6 +465,39 @@ interface RichComposeNode extends RichBlockBaseNode {
208
465
  wrap?: boolean;
209
466
  items: RichPresenterNode[];
210
467
  }
468
+ type RichCardVariant = 'plain' | 'outlined' | 'elevated' | 'filled' | 'transparent';
469
+ type RichCardTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
470
+ type RichCardSize = 'sm' | 'md' | 'lg';
471
+ type RichCardDensity = 'compact' | 'comfortable';
472
+ type RichCardOrientation = 'vertical' | 'horizontal';
473
+ type RichCardMediaKind = 'image' | 'video' | 'icon' | 'avatar';
474
+ type RichCardMediaPlacement = 'top' | 'leading' | 'trailing' | 'background';
475
+ interface RichCardMedia {
476
+ kind: RichCardMediaKind;
477
+ src?: string;
478
+ srcExpr?: string;
479
+ alt?: string;
480
+ altExpr?: string;
481
+ icon?: string;
482
+ label?: string;
483
+ labelExpr?: string;
484
+ placement?: RichCardMediaPlacement;
485
+ aspectRatio?: string;
486
+ }
487
+ type RichCardInteractionMode = 'none' | 'action' | 'selectable';
488
+ interface RichCardInteraction {
489
+ mode: RichCardInteractionMode;
490
+ action?: RichActionRef;
491
+ selected?: boolean;
492
+ selectedExpr?: string;
493
+ }
494
+ interface RichCardAccessibility {
495
+ role?: 'article' | 'group' | 'button';
496
+ ariaLabel?: string;
497
+ ariaLabelExpr?: string;
498
+ ariaLabelledBy?: string;
499
+ ariaDescribedBy?: string;
500
+ }
211
501
  interface RichCardNode extends RichBlockBaseNode {
212
502
  type: 'card';
213
503
  title?: string;
@@ -215,6 +505,303 @@ interface RichCardNode extends RichBlockBaseNode {
215
505
  subtitle?: string;
216
506
  subtitleExpr?: string;
217
507
  content: Array<RichPresenterNode | RichComposeNode>;
508
+ media?: RichCardMedia;
509
+ headerAction?: RichActionButtonNode;
510
+ header?: RichBlockNode[];
511
+ body?: RichBlockNode[];
512
+ footer?: RichBlockNode[];
513
+ actions?: RichActionButtonNode[];
514
+ aside?: RichBlockNode[];
515
+ variant?: RichCardVariant;
516
+ tone?: RichCardTone;
517
+ size?: RichCardSize;
518
+ density?: RichCardDensity;
519
+ orientation?: RichCardOrientation;
520
+ loading?: boolean;
521
+ loadingExpr?: string;
522
+ active?: boolean;
523
+ activeExpr?: string;
524
+ interaction?: RichCardInteraction;
525
+ accessibility?: RichCardAccessibility;
526
+ }
527
+ interface RichCalloutNode extends RichBlockBaseNode {
528
+ type: 'callout';
529
+ tone?: 'info' | 'success' | 'warning' | 'danger' | 'neutral';
530
+ icon?: string;
531
+ title?: string;
532
+ titleExpr?: string;
533
+ message?: string;
534
+ messageExpr?: string;
535
+ actions?: RichActionButtonNode[];
536
+ }
537
+ type RichCtaGroupLayout = 'stacked' | 'split';
538
+ interface RichCtaGroupNode extends RichBlockBaseNode {
539
+ type: 'ctaGroup';
540
+ title?: string;
541
+ titleExpr?: string;
542
+ subtitle?: string;
543
+ subtitleExpr?: string;
544
+ message?: string;
545
+ messageExpr?: string;
546
+ layout?: RichCtaGroupLayout;
547
+ actions: RichActionButtonNode[];
548
+ }
549
+ interface RichKeyValueItem {
550
+ id?: string;
551
+ label?: string;
552
+ labelExpr?: string;
553
+ value?: string;
554
+ valueExpr?: string;
555
+ badge?: string;
556
+ badgeExpr?: string;
557
+ icon?: string;
558
+ }
559
+ interface RichKeyValueListNode extends RichBlockBaseNode {
560
+ type: 'keyValueList';
561
+ title?: string;
562
+ titleExpr?: string;
563
+ layout?: 'stacked' | 'inline';
564
+ items: RichKeyValueItem[];
565
+ }
566
+ type RichPropertySheetColumns = 1 | 2;
567
+ type RichPropertySheetTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
568
+ interface RichPropertySheetItem {
569
+ id?: string;
570
+ label?: string;
571
+ labelExpr?: string;
572
+ value?: string;
573
+ valueExpr?: string;
574
+ hint?: string;
575
+ hintExpr?: string;
576
+ icon?: string;
577
+ tone?: RichPropertySheetTone;
578
+ }
579
+ interface RichPropertySheetNode extends RichBlockBaseNode {
580
+ type: 'propertySheet';
581
+ title?: string;
582
+ titleExpr?: string;
583
+ columns?: RichPropertySheetColumns;
584
+ items: RichPropertySheetItem[];
585
+ }
586
+ type RichStatGroupLayout = 'stacked' | 'inline' | 'grid';
587
+ type RichStatTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
588
+ interface RichStatItem {
589
+ id?: string;
590
+ label?: string;
591
+ labelExpr?: string;
592
+ value?: string;
593
+ valueExpr?: string;
594
+ caption?: string;
595
+ captionExpr?: string;
596
+ icon?: string;
597
+ tone?: RichStatTone;
598
+ }
599
+ interface RichStatGroupNode extends RichBlockBaseNode {
600
+ type: 'statGroup';
601
+ title?: string;
602
+ titleExpr?: string;
603
+ subtitle?: string;
604
+ subtitleExpr?: string;
605
+ layout?: RichStatGroupLayout;
606
+ items: RichStatItem[];
607
+ }
608
+ type RichTabsAppearance = 'underline' | 'pills';
609
+ interface RichTabsItem extends RichBlockRuleSet {
610
+ id?: string;
611
+ label?: string;
612
+ labelExpr?: string;
613
+ icon?: string;
614
+ badge?: string;
615
+ badgeExpr?: string;
616
+ requiresCapabilities?: string[];
617
+ capabilityMode?: RichCapabilityMode;
618
+ content: RichBlockNode[];
619
+ }
620
+ interface RichTabsNode extends RichBlockBaseNode {
621
+ type: 'tabs';
622
+ title?: string;
623
+ titleExpr?: string;
624
+ subtitle?: string;
625
+ subtitleExpr?: string;
626
+ appearance?: RichTabsAppearance;
627
+ defaultTabId?: string;
628
+ items: RichTabsItem[];
629
+ }
630
+ interface RichEmptyStateNode extends RichBlockBaseNode {
631
+ type: 'emptyState';
632
+ icon?: string;
633
+ title?: string;
634
+ titleExpr?: string;
635
+ message?: string;
636
+ messageExpr?: string;
637
+ actions?: RichActionButtonNode[];
638
+ }
639
+ interface RichRecordSummaryField {
640
+ id?: string;
641
+ label?: string;
642
+ labelExpr?: string;
643
+ value?: string;
644
+ valueExpr?: string;
645
+ }
646
+ interface RichRecordSummaryNode extends RichBlockBaseNode {
647
+ type: 'recordSummary';
648
+ title?: string;
649
+ titleExpr?: string;
650
+ subtitle?: string;
651
+ subtitleExpr?: string;
652
+ meta?: string;
653
+ metaExpr?: string;
654
+ fields: RichRecordSummaryField[];
655
+ actions?: RichActionButtonNode[];
656
+ }
657
+ type RichLookupResultStatus = 'idle' | 'resolved' | 'empty' | 'error';
658
+ interface RichLookupResultField {
659
+ id?: string;
660
+ label?: string;
661
+ labelExpr?: string;
662
+ value?: string;
663
+ valueExpr?: string;
664
+ hint?: string;
665
+ hintExpr?: string;
666
+ }
667
+ interface RichLookupResultNode extends RichBlockBaseNode {
668
+ type: 'lookupResult';
669
+ title?: string;
670
+ titleExpr?: string;
671
+ subtitle?: string;
672
+ subtitleExpr?: string;
673
+ status?: RichLookupResultStatus;
674
+ statusExpr?: string;
675
+ emptyText?: string;
676
+ emptyTextExpr?: string;
677
+ errorText?: string;
678
+ errorTextExpr?: string;
679
+ meta?: string;
680
+ metaExpr?: string;
681
+ fields: RichLookupResultField[];
682
+ actions?: RichActionButtonNode[];
683
+ }
684
+ interface RichLookupCardNode extends RichBlockBaseNode {
685
+ type: 'lookupCard';
686
+ title?: string;
687
+ titleExpr?: string;
688
+ subtitle?: string;
689
+ subtitleExpr?: string;
690
+ icon?: string;
691
+ status?: RichLookupResultStatus;
692
+ statusExpr?: string;
693
+ emptyText?: string;
694
+ emptyTextExpr?: string;
695
+ errorText?: string;
696
+ errorTextExpr?: string;
697
+ meta?: string;
698
+ metaExpr?: string;
699
+ ctaLabel?: string;
700
+ ctaLabelExpr?: string;
701
+ ctaIcon?: string;
702
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
703
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
704
+ action: RichActionRef;
705
+ fields: RichLookupResultField[];
706
+ secondaryActions?: RichActionButtonNode[];
707
+ }
708
+ interface RichRelatedRecordNode extends RichBlockBaseNode {
709
+ type: 'relatedRecord';
710
+ title?: string;
711
+ titleExpr?: string;
712
+ subtitle?: string;
713
+ subtitleExpr?: string;
714
+ relationLabel?: string;
715
+ relationLabelExpr?: string;
716
+ icon?: string;
717
+ meta?: string;
718
+ metaExpr?: string;
719
+ ctaLabel?: string;
720
+ ctaLabelExpr?: string;
721
+ ctaIcon?: string;
722
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
723
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
724
+ action?: RichActionRef;
725
+ fields: RichLookupResultField[];
726
+ secondaryActions?: RichActionButtonNode[];
727
+ }
728
+ interface RichActionCardNode extends RichBlockBaseNode {
729
+ type: 'actionCard';
730
+ title?: string;
731
+ titleExpr?: string;
732
+ subtitle?: string;
733
+ subtitleExpr?: string;
734
+ message?: string;
735
+ messageExpr?: string;
736
+ icon?: string;
737
+ meta?: string;
738
+ metaExpr?: string;
739
+ ctaLabel?: string;
740
+ ctaLabelExpr?: string;
741
+ ctaIcon?: string;
742
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
743
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
744
+ action: RichActionRef;
745
+ secondaryActions?: RichActionButtonNode[];
746
+ }
747
+ interface RichFormLauncherNode extends RichBlockBaseNode {
748
+ type: 'formLauncher';
749
+ title?: string;
750
+ titleExpr?: string;
751
+ subtitle?: string;
752
+ subtitleExpr?: string;
753
+ description?: string;
754
+ descriptionExpr?: string;
755
+ icon?: string;
756
+ formId?: string;
757
+ ctaLabel?: string;
758
+ ctaLabelExpr?: string;
759
+ ctaIcon?: string;
760
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
761
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
762
+ action: RichActionRef;
763
+ secondaryActions?: RichActionButtonNode[];
764
+ }
765
+ interface RichCollapsibleCardNode extends RichBlockBaseNode {
766
+ type: 'collapsibleCard';
767
+ title?: string;
768
+ titleExpr?: string;
769
+ subtitle?: string;
770
+ subtitleExpr?: string;
771
+ icon?: string;
772
+ defaultExpanded?: boolean;
773
+ actions?: RichActionButtonNode[];
774
+ content: RichBlockNode[];
775
+ }
776
+ interface RichDisclosureNode extends RichBlockBaseNode {
777
+ type: 'disclosure';
778
+ title?: string;
779
+ titleExpr?: string;
780
+ subtitle?: string;
781
+ subtitleExpr?: string;
782
+ icon?: string;
783
+ appearance?: 'plain' | 'card';
784
+ defaultExpanded?: boolean;
785
+ actions?: RichActionButtonNode[];
786
+ content: RichBlockNode[];
787
+ }
788
+ interface RichAccordionItem {
789
+ id?: string;
790
+ title?: string;
791
+ titleExpr?: string;
792
+ subtitle?: string;
793
+ subtitleExpr?: string;
794
+ icon?: string;
795
+ defaultExpanded?: boolean;
796
+ actions?: RichActionButtonNode[];
797
+ content: RichBlockNode[];
798
+ }
799
+ interface RichAccordionNode extends RichBlockBaseNode {
800
+ type: 'accordion';
801
+ title?: string;
802
+ titleExpr?: string;
803
+ multi?: boolean;
804
+ items: RichAccordionItem[];
218
805
  }
219
806
  interface RichMediaBlockNode extends RichBlockBaseNode {
220
807
  type: 'mediaBlock';
@@ -232,16 +819,37 @@ interface RichTimelineItem {
232
819
  subtitleExpr?: string;
233
820
  meta?: string;
234
821
  metaExpr?: string;
822
+ opposite?: string;
823
+ oppositeExpr?: string;
235
824
  icon?: string;
236
825
  iconExpr?: string;
237
826
  badge?: string;
238
827
  badgeExpr?: string;
239
- }
828
+ markerColor?: RichTimelineColor;
829
+ markerStyle?: RichTimelineMarkerStyle;
830
+ connectorColor?: RichTimelineColor;
831
+ connectorVariant?: RichTimelineConnectorVariant;
832
+ }
833
+ type RichTimelinePosition = 'left' | 'right' | 'alternate' | 'alternate-reverse';
834
+ type RichTimelineOrientation = 'vertical' | 'horizontal';
835
+ type RichTimelineOrder = 'normal' | 'reverse';
836
+ type RichTimelineConnectorVariant = 'solid' | 'dashed' | 'none';
837
+ type RichTimelineMarkerVariant = 'dot' | 'icon' | 'number';
838
+ type RichTimelineMarkerStyle = 'filled' | 'outlined';
839
+ type RichTimelineColor = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'error' | 'info' | 'neutral';
240
840
  interface RichTimelineNode extends RichBlockBaseNode {
241
841
  type: 'timeline';
242
842
  title?: string;
243
843
  titleExpr?: string;
244
844
  emptyText?: string;
845
+ orientation?: RichTimelineOrientation;
846
+ order?: RichTimelineOrder;
847
+ position?: RichTimelinePosition;
848
+ connectorVariant?: RichTimelineConnectorVariant;
849
+ connectorColor?: RichTimelineColor;
850
+ markerVariant?: RichTimelineMarkerVariant;
851
+ markerColor?: RichTimelineColor;
852
+ markerStyle?: RichTimelineMarkerStyle;
245
853
  items: RichTimelineItem[];
246
854
  }
247
855
  type CorePresetKind = 'surface-open' | 'widget-page-layout' | 'widget-page-theme' | 'editorial-theme' | 'editorial-compliance' | 'editorial-solution' | 'rich-block';
@@ -271,6 +879,13 @@ interface CorePresetDiscoveryRegistry {
271
879
  }
272
880
  interface RichBlockHostCapabilities {
273
881
  dispatchAction?(actionId: string, payload?: unknown): void | Promise<void>;
882
+ confirmAction?(request: {
883
+ actionId: string;
884
+ message: string;
885
+ payload?: unknown;
886
+ }): boolean | Promise<boolean>;
887
+ isActionAvailable?(actionId: string): boolean;
888
+ hasCapability?(capabilityId: string): boolean;
274
889
  resolveEmbed?(kind: 'component' | 'templateRef' | 'formRef' | 'tableRef' | 'chartRef', ref: string, inputs?: Record<string, unknown>): unknown;
275
890
  resolvePreset?(ref: CorePresetRef): unknown;
276
891
  loadData?(request: {
@@ -283,7 +898,7 @@ interface RichBlockHostCapabilities {
283
898
  onLoadError?: 'hide' | 'error' | 'placeholder';
284
899
  };
285
900
  }
286
- type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichMediaBlockNode | RichTimelineNode;
901
+ type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
287
902
  type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
288
903
  interface RichContentDocument {
289
904
  kind: 'praxis.rich-content';
@@ -293,6 +908,225 @@ interface RichContentDocument {
293
908
  }
294
909
  declare function createEmptyRichContentDocument(): RichContentDocument;
295
910
 
911
+ type GlobalActionResult = {
912
+ success: boolean;
913
+ data?: any;
914
+ error?: string;
915
+ };
916
+ interface NavigationOpenRoutePayload {
917
+ path: string;
918
+ query?: Record<string, string | number | boolean | null | undefined>;
919
+ fragment?: string;
920
+ replaceUrl?: boolean;
921
+ state?: Record<string, unknown>;
922
+ }
923
+ interface GlobalActionRef {
924
+ actionId: string;
925
+ payload?: any;
926
+ payloadExpr?: string;
927
+ meta?: {
928
+ label?: string;
929
+ icon?: string;
930
+ emitLocal?: boolean;
931
+ confirmation?: any;
932
+ [key: string]: any;
933
+ };
934
+ }
935
+ type GlobalActionContext = {
936
+ sourceId?: string;
937
+ widgetKey?: string;
938
+ output?: string;
939
+ payload?: any;
940
+ pageContext?: Record<string, any> | null;
941
+ meta?: Record<string, any>;
942
+ runtime?: {
943
+ row?: any;
944
+ item?: any;
945
+ selection?: any;
946
+ formData?: any;
947
+ value?: any;
948
+ state?: any;
949
+ };
950
+ };
951
+ type GlobalActionHandler = (payload?: any, context?: GlobalActionContext) => Promise<GlobalActionResult> | GlobalActionResult;
952
+ interface GlobalActionHandlerEntry {
953
+ id: string;
954
+ handler: GlobalActionHandler;
955
+ }
956
+ interface GlobalDialogService {
957
+ alert: (payload: {
958
+ title?: string;
959
+ message?: string;
960
+ okLabel?: string;
961
+ variant?: string;
962
+ }) => Promise<any> | any;
963
+ confirm: (payload: {
964
+ title?: string;
965
+ message?: string;
966
+ confirmLabel?: string;
967
+ cancelLabel?: string;
968
+ type?: 'danger' | 'warning' | 'info';
969
+ }) => Promise<boolean> | boolean;
970
+ prompt: (payload: {
971
+ title?: string;
972
+ message?: string;
973
+ placeholder?: string;
974
+ defaultValue?: string;
975
+ okLabel?: string;
976
+ cancelLabel?: string;
977
+ }) => Promise<any> | any;
978
+ open: (payload: {
979
+ componentId?: string;
980
+ inputs?: any;
981
+ size?: any;
982
+ data?: any;
983
+ }) => Promise<any> | any;
984
+ }
985
+ interface GlobalToastService {
986
+ success: (message: string, opts?: any) => void;
987
+ error: (message: string, opts?: any) => void;
988
+ }
989
+ interface GlobalAnalyticsService {
990
+ track: (eventName: string, payload?: any) => void;
991
+ }
992
+ interface GlobalApiClient {
993
+ get: (url: string, params?: Record<string, any>) => Promise<any> | any;
994
+ post: (url: string, body?: any) => Promise<any> | any;
995
+ patch: (url: string, body?: any) => Promise<any> | any;
996
+ }
997
+ interface GlobalRouteGuardResolver {
998
+ resolve: (guardId: string) => any;
999
+ }
1000
+
1001
+ type PraxisExportFormat = 'excel' | 'pdf' | 'csv' | 'json' | 'print';
1002
+ type PraxisExportScope = 'auto' | 'selected' | 'filtered' | 'currentPage' | 'all';
1003
+ type PraxisCollectionComponentType = 'table' | 'list' | string;
1004
+ type PraxisCollectionSelectionMode = 'none' | 'single' | 'multiple';
1005
+ type PraxisExportSortDirection = 'asc' | 'desc';
1006
+ interface PraxisCollectionSelectionState<T = unknown> {
1007
+ mode: PraxisCollectionSelectionMode;
1008
+ keyField?: string;
1009
+ selectedKeys?: Array<string | number>;
1010
+ selectedItems?: T[];
1011
+ allMatchingSelected?: boolean;
1012
+ excludedKeys?: Array<string | number>;
1013
+ }
1014
+ interface PraxisCollectionExportField<T = unknown> {
1015
+ key: string;
1016
+ label?: string;
1017
+ visible?: boolean;
1018
+ exportable?: boolean;
1019
+ type?: string;
1020
+ valuePath?: string;
1021
+ valueGetter?: (item: T) => unknown;
1022
+ formatter?: (value: unknown, item: T) => unknown;
1023
+ }
1024
+ interface PraxisCollectionSortDescriptor {
1025
+ field: string;
1026
+ direction: PraxisExportSortDirection;
1027
+ }
1028
+ interface PraxisCollectionPaginationState {
1029
+ pageIndex?: number;
1030
+ pageNumber?: number;
1031
+ pageSize?: number;
1032
+ totalItems?: number;
1033
+ }
1034
+ interface PraxisCollectionExportSource<T = unknown> {
1035
+ loadedItems?: T[];
1036
+ resourcePath?: string;
1037
+ query?: Record<string, unknown>;
1038
+ filters?: unknown;
1039
+ sort?: PraxisCollectionSortDescriptor[] | unknown;
1040
+ pagination?: PraxisCollectionPaginationState | unknown;
1041
+ }
1042
+ interface PraxisCollectionExportRequest<T = unknown> extends PraxisCollectionExportSource<T> {
1043
+ componentType: PraxisCollectionComponentType;
1044
+ componentId?: string;
1045
+ format: PraxisExportFormat;
1046
+ scope: PraxisExportScope;
1047
+ selection?: PraxisCollectionSelectionState<T>;
1048
+ fields?: PraxisCollectionExportField<T>[];
1049
+ includeHeaders?: boolean;
1050
+ applyFormatting?: boolean;
1051
+ maxRows?: number;
1052
+ fileName?: string;
1053
+ metadata?: Record<string, unknown>;
1054
+ }
1055
+ interface PraxisCollectionExportResult {
1056
+ status: 'completed' | 'deferred';
1057
+ format: PraxisExportFormat;
1058
+ scope: PraxisExportScope;
1059
+ fileName?: string;
1060
+ mimeType?: string;
1061
+ content?: string | Blob;
1062
+ downloadUrl?: string;
1063
+ jobId?: string;
1064
+ rowCount?: number;
1065
+ warnings?: string[];
1066
+ metadata?: Record<string, unknown>;
1067
+ }
1068
+ interface PraxisCollectionExportProvider {
1069
+ exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportResult | Promise<PraxisCollectionExportResult>;
1070
+ }
1071
+ interface PraxisExportSecurityPolicy {
1072
+ escapeFormulaValues: boolean;
1073
+ formulaPrefixes: readonly string[];
1074
+ formulaEscapePrefix: string;
1075
+ }
1076
+ declare const PRAXIS_EXPORT_FORMULA_PREFIXES: readonly ["=", "+", "-", "@", "\t", "\r"];
1077
+ declare const PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY: PraxisExportSecurityPolicy;
1078
+ declare function resolvePraxisExportScope<T>(request: PraxisCollectionExportRequest<T>): Exclude<PraxisExportScope, 'auto'>;
1079
+ declare function resolvePraxisCollectionExportItems<T>(request: PraxisCollectionExportRequest<T>): T[];
1080
+ declare function resolvePraxisExportFields<T>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportField<T>[];
1081
+ declare function readPraxisExportValue(item: unknown, path: string): unknown;
1082
+ declare function escapePraxisExportCell(value: unknown, policy?: PraxisExportSecurityPolicy): string;
1083
+ declare function serializePraxisCollectionToCsv<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): string;
1084
+ declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExportRequest<T>): string;
1085
+ declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
1086
+ declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
1087
+
1088
+ type PraxisRuntimeEffectTrigger = 'on-condition-enter' | 'on-value-change' | 'while-true';
1089
+ interface PraxisEffectPolicy {
1090
+ trigger?: PraxisRuntimeEffectTrigger;
1091
+ distinct?: boolean;
1092
+ distinctBy?: string;
1093
+ debounceMs?: number;
1094
+ missingValuePolicy?: 'propagate-undefined' | 'skip' | 'use-default';
1095
+ errorPolicy?: 'diagnostic' | 'drop' | 'halt-page';
1096
+ runOnInitialEvaluation?: boolean;
1097
+ }
1098
+ interface PraxisRuntimeConditionalEffectRule<TEffect = unknown> extends PraxisConditionalRule<JsonLogicExpression | null> {
1099
+ id?: string;
1100
+ effects: TEffect[];
1101
+ policy?: PraxisEffectPolicy;
1102
+ priority?: number;
1103
+ enabled?: boolean;
1104
+ description?: string;
1105
+ }
1106
+ interface PraxisRuntimeGlobalActionEffect {
1107
+ id?: string;
1108
+ kind: 'global-action';
1109
+ globalAction: GlobalActionRef;
1110
+ }
1111
+ interface PraxisConditionalEffectDiagnostic {
1112
+ ruleId?: string;
1113
+ effectId?: string;
1114
+ code: 'missing-effect' | 'invalid-effect' | 'invalid-condition' | 'policy-blocked' | 'execution-failed';
1115
+ details?: string[];
1116
+ }
1117
+ interface PraxisEffectDistinctKeyInput {
1118
+ componentId?: string;
1119
+ ruleId?: string;
1120
+ effectId?: string;
1121
+ actionId?: string;
1122
+ contextKey?: string;
1123
+ distinctBy?: string;
1124
+ value?: unknown;
1125
+ }
1126
+ declare function isPraxisRuntimeGlobalActionEffect(value: unknown): value is PraxisRuntimeGlobalActionEffect;
1127
+ declare function normalizePraxisEffectPolicy(policy: PraxisEffectPolicy | null | undefined): PraxisEffectPolicy;
1128
+ declare function buildPraxisEffectDistinctKey(input: PraxisEffectDistinctKeyInput): string;
1129
+
296
1130
  /**
297
1131
  * Nova arquitetura modular do TableConfig v2.0
298
1132
  * Preparada para crescimento exponencial e alinhada com as 5 abas do editor
@@ -614,8 +1448,12 @@ interface ColumnDefinition {
614
1448
  };
615
1449
  /** Overrides condicionais do renderer por linha (first‑match wins) */
616
1450
  conditionalRenderers?: Array<{
1451
+ /** Identificador estável usado para reconciliação e deduplicação de regras authoradas. */
1452
+ id?: string;
617
1453
  condition: JsonLogicExpression | null;
618
- renderer: Partial<ColumnDefinition['renderer']>;
1454
+ renderer?: Partial<ColumnDefinition['renderer']>;
1455
+ /** Efeitos visuais canonicos que podem produzir renderer, tooltip ou animacao. */
1456
+ effects?: Array<Record<string, unknown>>;
619
1457
  description?: string;
620
1458
  enabled?: boolean;
621
1459
  }>;
@@ -624,11 +1462,16 @@ interface ColumnDefinition {
624
1462
  * Cada regra contém uma expressão canônica em `condition` e o efeito visual a aplicar.
625
1463
  */
626
1464
  conditionalStyles?: Array<{
1465
+ /** Identificador estável usado para reconciliação e deduplicação de regras authoradas. */
1466
+ id?: string;
627
1467
  condition: JsonLogicExpression | null;
1468
+ /** Efeitos visuais canonicos produzidos pelo editor de regras da Table. */
1469
+ effects?: Array<Record<string, unknown>>;
628
1470
  cssClass?: string;
629
1471
  style?: {
630
1472
  [key: string]: string;
631
1473
  };
1474
+ tooltip?: Record<string, unknown>;
632
1475
  description?: string;
633
1476
  }>;
634
1477
  /** Estado serializado do construtor visual de regras (round‑trip) */
@@ -686,6 +1529,8 @@ interface TableBehaviorConfig {
686
1529
  sorting?: SortingConfig;
687
1530
  /** Configurações de filtragem */
688
1531
  filtering?: FilteringConfig;
1532
+ /** Configurações de agrupamento de linhas */
1533
+ grouping?: GroupingConfig;
689
1534
  /** Configurações de seleção de linhas */
690
1535
  selection?: SelectionConfig;
691
1536
  /** Configurações de interação do usuário */
@@ -920,6 +1765,14 @@ interface SortingConfig {
920
1765
  preserveSort?: boolean;
921
1766
  };
922
1767
  }
1768
+ interface GroupingConfig {
1769
+ /** Habilitar agrupamento */
1770
+ enabled: boolean;
1771
+ /** Campos usados para agrupamento */
1772
+ fields: string[];
1773
+ /** Se os grupos iniciam expandidos */
1774
+ expanded?: boolean;
1775
+ }
923
1776
  interface FilteringConfig {
924
1777
  /** Habilitar filtragem */
925
1778
  enabled: boolean;
@@ -1336,6 +2189,10 @@ interface ToolbarAction {
1336
2189
  disabled?: boolean;
1337
2190
  /** Função a executar */
1338
2191
  action: string;
2192
+ /** Acao global estruturada executada pelo host via GlobalActionService */
2193
+ globalAction?: GlobalActionRef;
2194
+ /** Efeitos runtime canonicos executados quando a acao da toolbar e acionada */
2195
+ effects?: PraxisRuntimeGlobalActionEffect[];
1339
2196
  /** Tooltip */
1340
2197
  tooltip?: string;
1341
2198
  /** Tecla de atalho */
@@ -1348,6 +2205,8 @@ interface ToolbarAction {
1348
2205
  order?: number;
1349
2206
  /** Visibilidade condicional */
1350
2207
  visibleWhen?: JsonLogicExpression | null;
2208
+ /** Desabilitacao condicional */
2209
+ disabledWhen?: JsonLogicExpression | null;
1351
2210
  /** Sub-ações (para menus) */
1352
2211
  children?: ToolbarAction[];
1353
2212
  }
@@ -1405,6 +2264,11 @@ interface RowActionsConfig {
1405
2264
  menuIcon?: string;
1406
2265
  /** Cor do botão do menu de ações (overflow) */
1407
2266
  menuButtonColor?: 'basic' | 'primary' | 'accent' | 'warn';
2267
+ /** Descoberta HATEOAS/capabilities para enriquecer ações de linha */
2268
+ discovery?: {
2269
+ /** Habilitar descoberta contextual de actions/capabilities para a linha */
2270
+ enabled?: boolean;
2271
+ };
1408
2272
  /** Configurações do cabeçalho da coluna de ações */
1409
2273
  header?: {
1410
2274
  /** Texto exibido no cabeçalho (ex.: "Ações") */
@@ -1446,6 +2310,10 @@ interface RowAction {
1446
2310
  disabled?: boolean;
1447
2311
  /** Função a executar */
1448
2312
  action: string;
2313
+ /** Acao global estruturada executada pelo host via GlobalActionService */
2314
+ globalAction?: GlobalActionRef;
2315
+ /** Efeitos runtime canonicos executados quando a acao por linha e acionada */
2316
+ effects?: PraxisRuntimeGlobalActionEffect[];
1449
2317
  /** Tooltip */
1450
2318
  tooltip?: string;
1451
2319
  /** Requer confirmação */
@@ -1484,6 +2352,10 @@ interface BulkAction {
1484
2352
  color?: string;
1485
2353
  /** Função a executar */
1486
2354
  action: string;
2355
+ /** Acao global estruturada executada pelo host via GlobalActionService */
2356
+ globalAction?: GlobalActionRef;
2357
+ /** Efeitos runtime canonicos executados quando a acao em lote e acionada */
2358
+ effects?: PraxisRuntimeGlobalActionEffect[];
1487
2359
  /** Requer confirmação */
1488
2360
  requiresConfirmation?: boolean;
1489
2361
  /** Mínimo de itens selecionados */
@@ -1713,14 +2585,12 @@ interface ExportConfig {
1713
2585
  /** Templates personalizados */
1714
2586
  templates?: ExportTemplate[];
1715
2587
  }
1716
- type ExportFormat = 'excel' | 'pdf' | 'csv' | 'json' | 'print';
2588
+ type ExportFormat = PraxisExportFormat;
1717
2589
  interface GeneralExportConfig {
1718
2590
  /** Incluir cabeçalhos */
1719
2591
  includeHeaders: boolean;
1720
- /** Incluir filtros aplicados na exportação */
1721
- respectFilters: boolean;
1722
- /** Incluir apenas linhas selecionadas */
1723
- selectedRowsOnly?: boolean;
2592
+ /** Escopo canônico dos dados exportados */
2593
+ scope: PraxisExportScope;
1724
2594
  /** Máximo de linhas para exportar */
1725
2595
  maxRows?: number;
1726
2596
  /** Nome do arquivo padrão */
@@ -2242,12 +3112,26 @@ interface TableConfigV2 {
2242
3112
  */
2243
3113
  rowConditionalStyles?: Array<{
2244
3114
  condition: JsonLogicExpression | null;
3115
+ /** Efeitos visuais canonicos produzidos pelo editor de regras da Table. */
3116
+ effects?: Array<Record<string, unknown>>;
2245
3117
  cssClass?: string;
2246
3118
  style?: {
2247
3119
  [key: string]: string;
2248
3120
  };
2249
3121
  description?: string;
2250
3122
  }>;
3123
+ /** Regras condicionais de linha para tooltip e animacao derivados de efeitos visuais. */
3124
+ rowConditionalRenderers?: Array<{
3125
+ /** Identificador estável usado para reconciliação e deduplicação de regras authoradas. */
3126
+ id?: string;
3127
+ condition: JsonLogicExpression | null;
3128
+ tooltip?: Record<string, unknown>;
3129
+ animation?: Record<string, unknown>;
3130
+ /** Efeitos visuais canonicos que podem produzir tooltip ou animacao de linha. */
3131
+ effects?: Array<Record<string, unknown>>;
3132
+ description?: string;
3133
+ enabled?: boolean;
3134
+ }>;
2251
3135
  /** Estado serializado do construtor para regras de linha (round‑trip) */
2252
3136
  _rowStyleRulesState?: any;
2253
3137
  }
@@ -2293,6 +3177,7 @@ declare const FieldDataType: {
2293
3177
  readonly FILE: "file";
2294
3178
  readonly URL: "url";
2295
3179
  readonly BOOLEAN: "boolean";
3180
+ readonly ARRAY: "array";
2296
3181
  readonly JSON: "json";
2297
3182
  };
2298
3183
  type FieldDataType = typeof FieldDataType[keyof typeof FieldDataType];
@@ -2343,6 +3228,7 @@ declare const FieldControlType: {
2343
3228
  readonly DRAWER: "drawer";
2344
3229
  readonly DROP_DOWN_TREE: "dropDownTree";
2345
3230
  readonly EMAIL_INPUT: "email";
3231
+ readonly ENTITY_LOOKUP: "entityLookup";
2346
3232
  readonly EXPANSION_PANEL: "expansionPanel";
2347
3233
  readonly FILE_SAVER: "fileSaver";
2348
3234
  readonly FILE_SELECT: "fileSelect";
@@ -2585,6 +3471,52 @@ interface ConditionalValidationRule {
2585
3471
  /** Validators applied when the guard resolves to true. */
2586
3472
  validators: Omit<ValidatorOptions, 'conditionalValidation'>;
2587
3473
  }
3474
+ interface FieldArrayOperations {
3475
+ add?: boolean;
3476
+ edit?: boolean;
3477
+ remove?: boolean;
3478
+ [key: string]: any;
3479
+ }
3480
+ interface FieldArrayCollectionValidation {
3481
+ uniqueBy?: string[];
3482
+ exactlyOne?: {
3483
+ field: string;
3484
+ value?: any;
3485
+ message?: string;
3486
+ };
3487
+ atLeastOne?: {
3488
+ field: string;
3489
+ value?: any;
3490
+ message?: string;
3491
+ };
3492
+ sumEquals?: {
3493
+ field: string;
3494
+ targetField?: string;
3495
+ value?: number;
3496
+ message?: string;
3497
+ };
3498
+ [key: string]: any;
3499
+ }
3500
+ interface FieldArrayConfig {
3501
+ itemType?: 'object';
3502
+ mode?: 'cards';
3503
+ itemSchemaRef?: string;
3504
+ itemIdentityField?: string;
3505
+ minItems?: number;
3506
+ maxItems?: number;
3507
+ addLabel?: string;
3508
+ emptyState?: string;
3509
+ itemTitleTemplate?: string;
3510
+ operations?: FieldArrayOperations;
3511
+ deleteMode?: 'removeFromPayload';
3512
+ itemSchema?: {
3513
+ fields?: FieldMetadata[];
3514
+ properties?: Record<string, any>;
3515
+ [key: string]: any;
3516
+ };
3517
+ collectionValidation?: FieldArrayCollectionValidation;
3518
+ [key: string]: any;
3519
+ }
2588
3520
  /**
2589
3521
  * Configuration for field options in selection components.
2590
3522
  *
@@ -2697,6 +3629,10 @@ interface FieldMetadata extends ComponentMetadata {
2697
3629
  controlType: FieldControlType;
2698
3630
  /** Data type for processing and validation */
2699
3631
  dataType?: FieldDataType;
3632
+ /** Canonical metadata for editable collection fields (`controlType: "array"`). */
3633
+ array?: FieldArrayConfig;
3634
+ /** Optional top-level alias for collection validators mirrored into `array.collectionValidation`. */
3635
+ collectionValidation?: FieldArrayCollectionValidation;
2700
3636
  /** Display order in form */
2701
3637
  order?: number;
2702
3638
  /** Logical grouping of related fields */
@@ -2967,6 +3903,8 @@ interface FieldDefinition {
2967
3903
  layout?: 'horizontal' | 'vertical';
2968
3904
  disabled?: boolean;
2969
3905
  readOnly?: boolean;
3906
+ array?: FieldArrayConfig;
3907
+ collectionValidation?: FieldArrayCollectionValidation;
2970
3908
  multiple?: boolean;
2971
3909
  editable?: boolean;
2972
3910
  validationMode?: string;
@@ -3144,13 +4082,39 @@ declare function buildHeaders(entry: ApiUrlEntry): HttpHeaders | undefined;
3144
4082
  * // fields: [{ name: 'email', label: 'E-mail', type: 'string', controlType: 'input', required: true, email: true }]
3145
4083
  */
3146
4084
  declare class SchemaNormalizerService {
4085
+ private clonePlain;
4086
+ private resolveSchemaRef;
4087
+ private normalizeObjectSchema;
4088
+ private normalizeArrayConfig;
4089
+ private finalizeArrayConfig;
4090
+ private normalizeInlineItemSchemaFields;
4091
+ private normalizeInlineItemSchemaField;
3147
4092
  /** Convert value to boolean. Accepts boolean, string or number. */
3148
4093
  private parseBoolean;
3149
4094
  /** Ensure an array of strings from various inputs. */
3150
4095
  private parseStringArray;
4096
+ private parseNonBlankStringArray;
4097
+ private parseStringRecord;
4098
+ private parseSelectionPolicy;
4099
+ private parseLookupCapabilities;
4100
+ private parseLookupDetail;
4101
+ private parseLookupDisplay;
4102
+ private parseLookupDisplayField;
4103
+ private parseLookupCreate;
4104
+ private parseLookupFilterOperatorArray;
4105
+ private parseLookupSortDirection;
4106
+ private parseLookupDialogSize;
4107
+ private parseLookupDialog;
4108
+ private parseLookupResultColumn;
4109
+ private parseLookupFilterDefinition;
4110
+ private parseDefaultFilters;
4111
+ private parseLookupFiltering;
3151
4112
  /** Parse option arrays into `{ key, value }` objects. */
3152
4113
  private parseOptions;
3153
4114
  private parseOptionSource;
4115
+ private parseOptionSourceType;
4116
+ private parseOptionSourceSearchMode;
4117
+ private parseLookupOpenDetailMode;
3154
4118
  private parseValuePresentation;
3155
4119
  /**
3156
4120
  * Converte string/Function em função real.
@@ -3185,6 +4149,7 @@ declare class SchemaNormalizerService {
3185
4149
  * @returns FieldDefinition[] prontos para mapeamento/uso no restante do sistema.
3186
4150
  */
3187
4151
  normalizeSchema(schema: any): FieldDefinition[];
4152
+ private normalizeSchemaWithRoot;
3188
4153
  private resolveFieldType;
3189
4154
  static ɵfac: i0.ɵɵFactoryDeclaration<SchemaNormalizerService, never>;
3190
4155
  static ɵprov: i0.ɵɵInjectableDeclaration<SchemaNormalizerService>;
@@ -3541,6 +4506,8 @@ interface OptionSourceRequestOptions<ID = string | number> extends CrudOperation
3541
4506
  includeIds?: ID[];
3542
4507
  observeVersionHeader?: boolean;
3543
4508
  search?: string;
4509
+ sortKey?: string;
4510
+ filters?: LookupFilterRequest[];
3544
4511
  }
3545
4512
  interface BatchDeleteProgress<ID = string | number> {
3546
4513
  id: ID;
@@ -3632,10 +4599,10 @@ declare class GenericCrudService<T, ID extends string | number = string | number
3632
4599
  * Fluxo de schemas (grid e filtro)
3633
4600
  *
3634
4601
  * - 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
4602
+ * 1) getSchema() deriva a superfície canônica de busca/listagem do recurso
4603
+ * 2) Em seguida chama /schemas/filtered com query params:
4604
+ * - path: {basePath}/filter (ex.: /api/human-resources/funcionarios/filter)
4605
+ * - operation: post
3639
4606
  * - schemaType: response
3640
4607
  * 3) O serviço normaliza o schema retornado (x-ui) para montagem de grids e formulários.
3641
4608
  *
@@ -3653,8 +4620,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
3653
4620
  * Obtém o schema (metadados) do recurso, útil para construção dinâmica de grids e formulários.
3654
4621
  *
3655
4622
  * Fluxo:
3656
- * - Faz GET {resource}/schemas; o backend redireciona (302) para /schemas/filtered
3657
- * com path={basePath}/all, operation=get, schemaType=response.
4623
+ * - Chama /schemas/filtered para a superfície canônica de busca/listagem:
4624
+ * path={basePath}/filter, operation=post, schemaType=response.
3658
4625
  * - O resultado é normalizado e usado para montar colunas de grid e formulários (x-ui).
3659
4626
  *
3660
4627
  * Exemplo:
@@ -3664,6 +4631,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
3664
4631
  * ```
3665
4632
  */
3666
4633
  getSchema(options?: CrudOperationOptions): Observable<FieldDefinition[]>;
4634
+ private shouldRememberFilteredSchemaEndpointUnavailable;
3667
4635
  private fetchDirectSchema;
3668
4636
  /** Retorna o campo identificador do recurso (ex.: 'id', 'codigo'), quando derivado do schema. */
3669
4637
  getResourceIdField(): string | undefined;
@@ -3927,6 +4895,9 @@ declare class GenericCrudService<T, ID extends string | number = string | number
3927
4895
  private resolveRangeAliases;
3928
4896
  private findExistingKey;
3929
4897
  private normalizeRangeBound;
4898
+ private isDateValue;
4899
+ private formatDateOnly;
4900
+ private tryParseLocalizedRangeNumber;
3930
4901
  private isRangeValue;
3931
4902
  private isPlainObject;
3932
4903
  private updateRangeFieldHints;
@@ -4254,74 +5225,6 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
4254
5225
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiConfigStorage>;
4255
5226
  }
4256
5227
 
4257
- type GlobalActionResult = {
4258
- success: boolean;
4259
- data?: any;
4260
- error?: string;
4261
- };
4262
- type GlobalActionContext = {
4263
- sourceId?: string;
4264
- widgetKey?: string;
4265
- output?: string;
4266
- payload?: any;
4267
- pageContext?: Record<string, any> | null;
4268
- meta?: Record<string, any>;
4269
- runtime?: {
4270
- row?: any;
4271
- item?: any;
4272
- selection?: any;
4273
- formData?: any;
4274
- value?: any;
4275
- state?: any;
4276
- };
4277
- };
4278
- type GlobalActionHandler = (payload?: any, context?: GlobalActionContext) => Promise<GlobalActionResult> | GlobalActionResult;
4279
- interface GlobalActionHandlerEntry {
4280
- id: string;
4281
- handler: GlobalActionHandler;
4282
- }
4283
- interface GlobalDialogService {
4284
- alert: (payload: {
4285
- title?: string;
4286
- message?: string;
4287
- variant?: string;
4288
- }) => Promise<any> | any;
4289
- confirm: (payload: {
4290
- title?: string;
4291
- message?: string;
4292
- confirmLabel?: string;
4293
- cancelLabel?: string;
4294
- type?: 'danger' | 'warning' | 'info';
4295
- }) => Promise<boolean> | boolean;
4296
- prompt: (payload: {
4297
- title?: string;
4298
- message?: string;
4299
- placeholder?: string;
4300
- defaultValue?: string;
4301
- }) => Promise<any> | any;
4302
- open: (payload: {
4303
- componentId?: string;
4304
- inputs?: any;
4305
- size?: any;
4306
- data?: any;
4307
- }) => Promise<any> | any;
4308
- }
4309
- interface GlobalToastService {
4310
- success: (message: string, opts?: any) => void;
4311
- error: (message: string, opts?: any) => void;
4312
- }
4313
- interface GlobalAnalyticsService {
4314
- track: (eventName: string, payload?: any) => void;
4315
- }
4316
- interface GlobalApiClient {
4317
- get: (url: string, params?: Record<string, any>) => Promise<any> | any;
4318
- post: (url: string, body?: any) => Promise<any> | any;
4319
- patch: (url: string, body?: any) => Promise<any> | any;
4320
- }
4321
- interface GlobalRouteGuardResolver {
4322
- resolve: (guardId: string) => any;
4323
- }
4324
-
4325
5228
  declare class GlobalActionService {
4326
5229
  private readonly handlers;
4327
5230
  private readonly router;
@@ -4339,9 +5242,16 @@ declare class GlobalActionService {
4339
5242
  register(id: string, handler: GlobalActionHandler): void;
4340
5243
  has(id: string): boolean;
4341
5244
  execute(id: string, payload?: any, context?: GlobalActionContext): Promise<GlobalActionResult>;
5245
+ executeRef(ref: GlobalActionRef | null | undefined, context?: GlobalActionContext): Promise<GlobalActionResult>;
5246
+ private resolvePayloadExpr;
5247
+ private lookupPath;
4342
5248
  private registerBuiltins;
4343
5249
  private handleApi;
5250
+ private handleNavigationOpenRoute;
4344
5251
  private handleRouteRegister;
5252
+ private buildNavigationUrl;
5253
+ private buildQueryString;
5254
+ private buildFragment;
4345
5255
  static ɵfac: i0.ɵɵFactoryDeclaration<GlobalActionService, never>;
4346
5256
  static ɵprov: i0.ɵɵInjectableDeclaration<GlobalActionService>;
4347
5257
  }
@@ -4397,12 +5307,15 @@ interface SurfaceOpenPayload {
4397
5307
 
4398
5308
  declare class SurfaceBindingRuntimeService {
4399
5309
  resolveWidget(widget: WidgetDefinition, bindings: SurfaceBinding[] | undefined, actionPayload?: any, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): WidgetDefinition;
5310
+ resolveSurfacePayload<T extends SurfaceOpenPayload>(surfacePayload: T, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): T;
4400
5311
  extractByPath(obj: any, path?: string): any;
4401
- resolveTemplate(node: any, context: any): any;
5312
+ resolveTemplate(node: any, context: any, key?: string): any;
5313
+ private isDeferredTemplateExpressionKey;
4402
5314
  setValueAtPath<T extends object>(obj: T, rawPath: string, value: any): T;
4403
5315
  private buildContext;
4404
5316
  private resolveBindingValue;
4405
5317
  private normalizeTargetPath;
5318
+ private normalizeWidgetTargetPath;
4406
5319
  private tokenizePath;
4407
5320
  private clone;
4408
5321
  static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceBindingRuntimeService, never>;
@@ -5188,6 +6101,19 @@ interface MaterialSelectMetadata extends FieldMetadata {
5188
6101
  /** Inline/runtime compatibility for selected option icon color. */
5189
6102
  optionSelectedIconColor?: string;
5190
6103
  }
6104
+ interface MaterialEntityLookupMetadata extends Omit<MaterialSelectMetadata, 'controlType' | 'multiple' | 'maxSelections'>, EntityLookupDisplayMetadata, EntityLookupCollectionMetadata {
6105
+ controlType: typeof FieldControlType.ENTITY_LOOKUP | typeof FieldControlType.INLINE_ENTITY_LOOKUP;
6106
+ lookupIdKey?: string;
6107
+ lookupLabelKey?: string;
6108
+ lookupSubtitleKey?: string;
6109
+ lookupSeparator?: string;
6110
+ payloadMode?: EntityLookupPayloadMode;
6111
+ dialog?: LookupDialogMetadata;
6112
+ searchPlaceholder?: string;
6113
+ resetLabel?: string;
6114
+ ariaLabel?: string;
6115
+ dependencyLoadOnChange?: 'respectLoadOn' | 'immediate' | 'manual';
6116
+ }
5191
6117
  /**
5192
6118
  * Metadata for Material Autocomplete components.
5193
6119
  *
@@ -5241,9 +6167,28 @@ interface MaterialButtonToggleMetadata extends FieldMetadata {
5241
6167
  /** Toggle button options */
5242
6168
  toggleOptions?: Array<{
5243
6169
  value: any;
5244
- text: string;
6170
+ text?: string;
5245
6171
  label?: string;
6172
+ disabled?: boolean;
5246
6173
  }>;
6174
+ /** Allow multiple selected toggle buttons */
6175
+ multiple?: boolean;
6176
+ /** Maximum selected options when multiple is enabled */
6177
+ maxSelections?: number;
6178
+ /** Button toggle appearance */
6179
+ appearance?: 'legacy' | 'standard';
6180
+ /** Theme color */
6181
+ color?: ThemePalette;
6182
+ /** Backend resource for dynamic option loading */
6183
+ resourcePath?: string;
6184
+ /** Canonical metadata-driven source for derived options */
6185
+ optionSource?: OptionSourceMetadata;
6186
+ /** Additional filter criteria for backend requests */
6187
+ filterCriteria?: Record<string, any>;
6188
+ /** Key for option label when loading from backend */
6189
+ optionLabelKey?: string;
6190
+ /** Key for option value when loading from backend */
6191
+ optionValueKey?: string;
5247
6192
  }
5248
6193
  /**
5249
6194
  * Metadata for Material Transfer List component.
@@ -5420,6 +6365,8 @@ interface MaterialDatepickerMetadata extends FieldMetadata {
5420
6365
  controlType: typeof FieldControlType.DATE_PICKER;
5421
6366
  /** Date format for display */
5422
6367
  dateFormat?: string;
6368
+ /** Allows manual typing in the input. Set false to force calendar selection. */
6369
+ manualInput?: boolean;
5423
6370
  /** Minimum selectable date */
5424
6371
  minDate?: Date | string;
5425
6372
  /** Maximum selectable date */
@@ -5488,8 +6435,13 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
5488
6435
  * - `confirm`: keeps selection as draft and only commits on explicit confirmation
5489
6436
  */
5490
6437
  inlineQuickPresetsApplyMode?: 'auto' | 'confirm';
5491
- /** Position of shortcuts sidebar relative to the form field. */
5492
- shortcutsPosition?: 'left' | 'right';
6438
+ /**
6439
+ * Preferred position of shortcuts panel relative to the form field.
6440
+ * Defaults to `auto`, which tries a viewport-safe below placement before
6441
+ * side placements. Explicit `left`/`right` remain preferences and may fall
6442
+ * back when there is not enough viewport space.
6443
+ */
6444
+ shortcutsPosition?: 'auto' | 'below' | 'left' | 'right';
5493
6445
  /** Apply immediately when clicking a shortcut. Defaults to true. */
5494
6446
  applyOnShortcutClick?: boolean;
5495
6447
  /** Timezone identifier (e.g., 'America/Sao_Paulo') for normalization. */
@@ -5595,6 +6547,21 @@ interface InlineRangeDistributionConfig {
5595
6547
  bins?: Array<number | InlineRangeDistributionBin> | string;
5596
6548
  /** Optional normalization ceiling; defaults to the highest bin value. */
5597
6549
  maxValue?: number;
6550
+ /**
6551
+ * Color strategy for histogram bars.
6552
+ * `selection` highlights bars covered by the current slider value/range using theme tokens.
6553
+ * `gradient` applies a configurable gradient to the selected bars.
6554
+ * `theme` keeps all bars on the neutral themed baseline.
6555
+ */
6556
+ colorMode?: 'theme' | 'selection' | 'gradient';
6557
+ /** Optional selected bar color; defaults to the app theme primary color. */
6558
+ selectedColor?: string;
6559
+ /** Optional unselected bar color; defaults to the app theme outline variant color. */
6560
+ unselectedColor?: string;
6561
+ /** Optional first color stop for selected gradient bars. */
6562
+ gradientStartColor?: string;
6563
+ /** Optional final color stop for selected gradient bars. */
6564
+ gradientEndColor?: string;
5598
6565
  /** Optional minimum visible ratio in the [0..1] range for non-zero bars. */
5599
6566
  minBarRatio?: number;
5600
6567
  /** Alias for `minBarRatio`. */
@@ -5638,6 +6605,33 @@ interface RangeSliderQuickPresetLabels {
5638
6605
  fromMid?: string;
5639
6606
  full?: string;
5640
6607
  }
6608
+ interface RangeSliderMark {
6609
+ /** Numeric value represented by this mark. */
6610
+ value: number;
6611
+ /** Optional label rendered next to the mark. */
6612
+ label?: string;
6613
+ /** Optional semantic tone for platform styling. */
6614
+ tone?: 'neutral' | 'info' | 'success' | 'warning' | 'danger';
6615
+ /** Optional disabled hint for authoring and future restricted-value mode. */
6616
+ disabled?: boolean;
6617
+ }
6618
+ type RangeSliderSemanticTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
6619
+ interface RangeSliderSemanticBand {
6620
+ /** Inclusive start value for the band. */
6621
+ start: number;
6622
+ /** Inclusive end value for the band. */
6623
+ end: number;
6624
+ /** Optional label for accessibility, reports and authoring surfaces. */
6625
+ label?: string;
6626
+ /** Semantic tone used by the platform theme. */
6627
+ tone?: RangeSliderSemanticTone;
6628
+ /** Optional explicit color for specialized domain palettes. */
6629
+ color?: string;
6630
+ }
6631
+ type RangeSliderTrackMode = 'normal' | 'inverted' | 'none';
6632
+ type RangeSliderValueLabelDisplay = 'off' | 'auto' | 'on';
6633
+ type RangeSliderScalePreset = 'linear' | 'percent' | 'log' | 'pow2';
6634
+ type RangeSliderValueFormat = 'number' | 'percent' | 'currency' | 'compact' | 'storage';
5641
6635
  interface MaterialRangeSliderMetadata extends FieldMetadata {
5642
6636
  controlType: typeof FieldControlType.RANGE_SLIDER;
5643
6637
  /** Slider mode */
@@ -5646,18 +6640,36 @@ interface MaterialRangeSliderMetadata extends FieldMetadata {
5646
6640
  min?: number;
5647
6641
  /** Maximum allowed value */
5648
6642
  max?: number;
5649
- /** Step for value increments */
5650
- step?: number;
6643
+ /** Step for value increments. `null` is reserved for mark-restricted values. */
6644
+ step?: number | null;
5651
6645
  /** Whether to show the thumb label */
5652
6646
  thumbLabel?: boolean;
6647
+ /** Controls when the value label is displayed. */
6648
+ valueLabelDisplay?: RangeSliderValueLabelDisplay;
6649
+ /** Declarative formatter for value labels when functions cannot come from metadata. */
6650
+ valueLabelFormat?: RangeSliderValueFormat | string;
5653
6651
  /** Tick configuration */
5654
6652
  showTicks?: boolean | 'auto';
6653
+ /** Rich mark labels along the slider track. */
6654
+ marks?: boolean | RangeSliderMark[] | string;
6655
+ /** Semantic bands rendered behind the slider track for domain meaning. */
6656
+ semanticBands?: RangeSliderSemanticBand[] | string;
6657
+ /** Track presentation mode. */
6658
+ track?: RangeSliderTrackMode;
6659
+ /** Keyboard acceleration step for Page Up/Down or Shift+Arrow semantics. */
6660
+ shiftStep?: number;
6661
+ /** Visual density hint. */
6662
+ size?: 'small' | 'medium' | 'large';
5655
6663
  /** Use discrete slider */
5656
6664
  discrete?: boolean;
5657
6665
  /** Display vertically */
5658
6666
  vertical?: boolean;
5659
6667
  /** Invert slider direction */
5660
6668
  invert?: boolean;
6669
+ /** Prevent active thumb swapping when range thumbs overlap. */
6670
+ disableThumbSwap?: boolean;
6671
+ /** Declarative scale preset used to format displayed values. */
6672
+ scale?: RangeSliderScalePreset | string;
5661
6673
  /** Minimum distance between start and end */
5662
6674
  minDistance?: number;
5663
6675
  /** Maximum distance between start and end */
@@ -5835,6 +6847,8 @@ interface MaterialButtonMetadata extends FieldMetadata {
5835
6847
  buttonIconPosition?: 'before' | 'after';
5836
6848
  /** Button action/command */
5837
6849
  action?: string;
6850
+ /** Structured global action executed through GlobalActionService. */
6851
+ globalAction?: GlobalActionRef;
5838
6852
  /** Disable button ripple effect */
5839
6853
  disableRipple?: boolean;
5840
6854
  /** Confirmation message for destructive actions */
@@ -5882,35 +6896,55 @@ interface MaterialSliderMetadata extends FieldMetadata {
5882
6896
  min?: number;
5883
6897
  /** Maximum value */
5884
6898
  max?: number;
5885
- /** Step increment */
5886
- step?: number;
6899
+ /** Step increment. `null` is reserved for mark-restricted values. */
6900
+ step?: number | null;
5887
6901
  /** Show value label */
5888
6902
  thumbLabel?: boolean;
6903
+ /** Controls when the value label is displayed. */
6904
+ valueLabelDisplay?: RangeSliderValueLabelDisplay;
6905
+ /** Declarative formatter for value labels when functions cannot come from metadata. */
6906
+ valueLabelFormat?: RangeSliderValueFormat | string;
6907
+ /** Rich mark labels along the slider track. */
6908
+ marks?: boolean | RangeSliderMark[] | string;
6909
+ /** Semantic bands rendered behind the slider track for domain meaning. */
6910
+ semanticBands?: RangeSliderSemanticBand[] | string;
6911
+ /**
6912
+ * Optional mini histogram/bars rendered above the slider track.
6913
+ * Accepts array shorthand, object config, or JSON string for editor compatibility.
6914
+ */
6915
+ inlineDistribution?: InlineRangeDistributionConfig | Array<number | InlineRangeDistributionBin> | string;
6916
+ /**
6917
+ * Alias accepted by slider components for compact payloads.
6918
+ */
6919
+ distribution?: InlineRangeDistributionConfig | Array<number | InlineRangeDistributionBin> | string;
6920
+ /** Track presentation mode. */
6921
+ track?: RangeSliderTrackMode;
6922
+ /** Keyboard acceleration step for Page Up/Down or Shift+Arrow semantics. */
6923
+ shiftStep?: number;
6924
+ /** Visual density hint. */
6925
+ size?: 'small' | 'medium' | 'large';
5889
6926
  /** Slider orientation */
5890
6927
  vertical?: boolean;
5891
6928
  /** Slider color theme */
5892
6929
  color?: ThemePalette;
5893
6930
  /** Display tick marks along the slider track */
5894
- showTicks?: boolean;
6931
+ showTicks?: boolean | 'auto';
5895
6932
  /** Invert slider direction */
5896
6933
  invert?: boolean;
6934
+ /** Declarative scale preset used to format displayed values. */
6935
+ scale?: RangeSliderScalePreset | string;
5897
6936
  }
5898
6937
  /**
5899
6938
  * Specialized metadata for Material Rating components.
5900
6939
  *
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
6940
  * Handles star rating or numeric rating selection.
5907
6941
  */
5908
6942
  interface MaterialRatingMetadata extends FieldMetadata {
5909
6943
  controlType: typeof FieldControlType.RATING;
5910
6944
  /** Maximum rating value */
5911
6945
  max?: number;
5912
- /** Rating precision (0.1, 0.5, 1) */
5913
- precision?: number;
6946
+ /** Rating precision (`0.5` or `half` enables half-step interaction) */
6947
+ precision?: number | 'item' | 'half';
5914
6948
  /** Rating icon (default: star) */
5915
6949
  icon?: string;
5916
6950
  /** Empty icon (default: star_border) */
@@ -6581,6 +7615,18 @@ declare class DynamicFormService {
6581
7615
  * Indica se o campo deve ser tratado como seleção múltipla (valor padrão []).
6582
7616
  */
6583
7617
  private isMultipleField;
7618
+ private isArrayMetadata;
7619
+ private getArrayConfig;
7620
+ private getArrayItemFields;
7621
+ createArrayItemGroupFromMetadata(meta: FieldMetadata, value?: Record<string, any>): FormGroup;
7622
+ private ensureArrayItemIdentityControl;
7623
+ private createArrayControlFromMetadata;
7624
+ private buildArrayValidators;
7625
+ private buildArrayCountValidator;
7626
+ private uniqueKeyForItem;
7627
+ private normalizeUniqueValue;
7628
+ private arrayValues;
7629
+ private readPath;
6584
7630
  /**
6585
7631
  * Envelopa um ValidatorFn Angular para padronizar a saída de erro com mensagem.
6586
7632
  * Útil quando deseja-se forçar uma mensagem customizada em um validador nativo.
@@ -6603,7 +7649,7 @@ declare class DynamicFormService {
6603
7649
  * - Aplica validadores específicos de UI quando aplicável.
6604
7650
  * - Valor inicial: [] para campos múltiplos quando ausente; caso contrário defaultValue.
6605
7651
  */
6606
- createControlFromField(field: FieldDefinition): FormControl;
7652
+ createControlFromField(field: FieldDefinition): AbstractControl;
6607
7653
  /**
6608
7654
  * Cria um FormControl a partir de FieldMetadata.
6609
7655
  * - Aplica ValidatorOptions (normalizados) e validadores de UI por tipo.
@@ -6615,6 +7661,11 @@ declare class DynamicFormService {
6615
7661
  defaultValue?: any;
6616
7662
  disabled?: boolean;
6617
7663
  }): FormControl;
7664
+ createAbstractControlFromMetadata(meta: FieldMetadata & {
7665
+ validators?: ValidatorOptions;
7666
+ defaultValue?: any;
7667
+ disabled?: boolean;
7668
+ }): AbstractControl;
6618
7669
  /**
6619
7670
  * Reconfigura um controle existente a partir de FieldDefinition.
6620
7671
  * Atualiza: validators, asyncValidators, estado enabled/disabled e defaultValue (com suporte a múltiplos).
@@ -6814,8 +7865,27 @@ interface ComponentDocMeta {
6814
7865
  /** Optional title shown by hosts when opening the editor. */
6815
7866
  title?: string;
6816
7867
  };
7868
+ /** Optional canonical AI authoring manifest reference published by the component owner. */
7869
+ authoringManifestRef?: {
7870
+ /** Component id used by the manifest registry/backend. */
7871
+ componentId: string;
7872
+ /** Optional manifest version when the owner can publish it statically. */
7873
+ version?: string;
7874
+ /** Stable source symbol, registry id, or manifest module name. */
7875
+ source?: string;
7876
+ /** Optional content hash when available. */
7877
+ hash?: string;
7878
+ };
6817
7879
  /** Tags or categories for search */
6818
7880
  tags?: string[];
7881
+ /** Optional insertion presets exposed by visual builders without changing the component contract. */
7882
+ insertionPresets?: Array<{
7883
+ id: string;
7884
+ label: string;
7885
+ description?: string;
7886
+ icon?: string;
7887
+ inputs?: Record<string, unknown>;
7888
+ }>;
6819
7889
  /** Source library for the component */
6820
7890
  lib?: string;
6821
7891
  /** Optional layout hints for grid placement */
@@ -6918,6 +7988,7 @@ declare class PraxisI18nService {
6918
7988
  getLocale(): string;
6919
7989
  getFallbackLocale(): string;
6920
7990
  t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
7991
+ tForLocale(locale: string, key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
6921
7992
  resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
6922
7993
  formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
6923
7994
  formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
@@ -7027,6 +8098,51 @@ declare class TelemetryService {
7027
8098
  static ɵprov: i0.ɵɵInjectableDeclaration<TelemetryService>;
7028
8099
  }
7029
8100
 
8101
+ declare class PraxisCollectionExportService {
8102
+ private readonly provider;
8103
+ private readonly securityPolicy;
8104
+ constructor(provider: PraxisCollectionExportProvider | null, securityPolicy: PraxisExportSecurityPolicy);
8105
+ exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): Promise<PraxisCollectionExportResult>;
8106
+ exportLocalCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportResult;
8107
+ static ɵfac: i0.ɵɵFactoryDeclaration<PraxisCollectionExportService, [{ optional: true; }, null]>;
8108
+ static ɵprov: i0.ɵɵInjectableDeclaration<PraxisCollectionExportService>;
8109
+ }
8110
+
8111
+ interface PraxisCollectionExportHttpProviderOptions {
8112
+ endpoint?: string | ((request: PraxisCollectionExportRequest<any>) => string);
8113
+ apiUrlKey?: string;
8114
+ headers?: Record<string, string | string[]>;
8115
+ withCredentials?: boolean;
8116
+ includeLoadedItems?: boolean;
8117
+ }
8118
+ declare const PRAXIS_COLLECTION_EXPORT_PROVIDER: InjectionToken<PraxisCollectionExportProvider>;
8119
+ declare const PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS: InjectionToken<PraxisCollectionExportHttpProviderOptions>;
8120
+ declare const PRAXIS_EXPORT_SECURITY_POLICY: InjectionToken<PraxisExportSecurityPolicy>;
8121
+ declare function providePraxisCollectionExportProvider(provider: PraxisCollectionExportProvider): Provider;
8122
+
8123
+ declare class PraxisHttpCollectionExportProvider implements PraxisCollectionExportProvider {
8124
+ private readonly http;
8125
+ private readonly apiUrlConfig;
8126
+ private readonly options;
8127
+ constructor(http: HttpClient, apiUrlConfig: ApiUrlConfig | null, options: PraxisCollectionExportHttpProviderOptions | null);
8128
+ exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): Promise<PraxisCollectionExportResult>;
8129
+ private resolveEndpoint;
8130
+ private resolveUrl;
8131
+ private normalizePathForBase;
8132
+ private resolveApiBaseUrl;
8133
+ private buildHeaders;
8134
+ private buildRequestBody;
8135
+ private normalizeResponse;
8136
+ private normalizeExportHeaders;
8137
+ private readNumberHeader;
8138
+ private readBooleanHeader;
8139
+ private readWarningHeader;
8140
+ private mergeWarnings;
8141
+ private resolveFileName;
8142
+ static ɵfac: i0.ɵɵFactoryDeclaration<PraxisHttpCollectionExportProvider, [null, { optional: true; }, { optional: true; }]>;
8143
+ static ɵprov: i0.ɵɵInjectableDeclaration<PraxisHttpCollectionExportProvider>;
8144
+ }
8145
+
7030
8146
  type FieldSelectorRegistryMap = Record<string, FieldControlType>;
7031
8147
  declare const FIELD_SELECTOR_REGISTRY_BASE: InjectionToken<FieldSelectorRegistryMap>;
7032
8148
  declare const FIELD_SELECTOR_REGISTRY_OVERRIDES: InjectionToken<FieldSelectorRegistryMap[]>;
@@ -7132,6 +8248,7 @@ declare class PraxisLayerScaleStyleService {
7132
8248
  * abertura, enquanto `resourcePath`, `path`, `method` e `schemaUrl` seguem responsaveis pelo
7133
8249
  * comportamento operacional.
7134
8250
  */
8251
+
7135
8252
  interface ResourceAvailabilityDecision {
7136
8253
  allowed: boolean;
7137
8254
  reason?: string | null;
@@ -7142,6 +8259,8 @@ type ResourceSurfaceScope = 'COLLECTION' | 'ITEM';
7142
8259
  type ResourceActionScope = 'COLLECTION' | 'ITEM';
7143
8260
  type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
7144
8261
  type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
8262
+ type ResourceCapabilityOperationId = ResourceCrudOperationId | 'export' | string;
8263
+ type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
7145
8264
  interface ResourceSurfaceCatalogItem {
7146
8265
  id: string;
7147
8266
  resourceKey: string;
@@ -7192,20 +8311,25 @@ interface ResourceActionCatalogResponse {
7192
8311
  actions: ResourceActionCatalogItem[];
7193
8312
  }
7194
8313
  interface ResourceCapabilityOperation {
7195
- id: ResourceCrudOperationId;
8314
+ id: ResourceCapabilityOperationId;
7196
8315
  supported: boolean;
7197
8316
  scope: ResourceSurfaceScope;
7198
8317
  preferredMethod?: string | null;
7199
8318
  preferredRel?: string | null;
7200
8319
  availability?: ResourceAvailabilityDecision | null;
8320
+ formats?: PraxisExportFormat[];
8321
+ scopes?: PraxisExportScope[];
8322
+ maxRows?: ResourceExportMaxRows;
8323
+ async?: boolean | null;
7201
8324
  }
8325
+ type ResourceCapabilityOperations = Partial<Record<ResourceCrudOperationId | 'export', ResourceCapabilityOperation>> & Record<string, ResourceCapabilityOperation | undefined>;
7202
8326
  interface ResourceCapabilitySnapshot {
7203
8327
  resourceKey: string;
7204
8328
  resourcePath: string;
7205
8329
  group?: string | null;
7206
8330
  resourceId?: string | number | null;
7207
8331
  canonicalOperations: Record<string, boolean>;
7208
- operations?: Partial<Record<ResourceCrudOperationId, ResourceCapabilityOperation>>;
8332
+ operations?: ResourceCapabilityOperations;
7209
8333
  surfaces: ResourceSurfaceCatalogItem[];
7210
8334
  actions: ResourceActionCatalogItem[];
7211
8335
  }
@@ -7245,6 +8369,466 @@ declare class ResourceDiscoveryService {
7245
8369
  static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDiscoveryService>;
7246
8370
  }
7247
8371
 
8372
+ declare const DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.2";
8373
+ interface DomainCatalogRelease {
8374
+ releaseKey: string;
8375
+ serviceKey?: string;
8376
+ status?: string;
8377
+ version?: string;
8378
+ createdAt?: string;
8379
+ resourceKey?: string;
8380
+ [key: string]: unknown;
8381
+ }
8382
+ interface DomainCatalogGovernancePayload {
8383
+ classification?: string;
8384
+ dataCategory?: string;
8385
+ complianceTags?: string[];
8386
+ aiUsage?: {
8387
+ visibility?: string;
8388
+ purpose?: string;
8389
+ restrictions?: string[];
8390
+ [key: string]: unknown;
8391
+ };
8392
+ [key: string]: unknown;
8393
+ }
8394
+ interface DomainCatalogItem<TPayload = Record<string, unknown>> {
8395
+ itemKey: string;
8396
+ type?: string;
8397
+ payload?: TPayload;
8398
+ [key: string]: unknown;
8399
+ }
8400
+ interface DomainCatalogResourceProbe {
8401
+ resourceKey: string;
8402
+ query: string;
8403
+ limit?: number;
8404
+ }
8405
+ type DomainCatalogContextHintItemType = 'context' | 'node' | 'edge' | 'binding' | 'evidence' | 'governance' | 'vocabulary' | 'relationship';
8406
+ type DomainCatalogContextHintIntent = 'authoring' | 'explain' | 'validate' | 'ai-access-control';
8407
+ type DomainCatalogRecommendedAuthoringFlow = 'shared_rule_authoring' | 'component_authoring' | 'ui_composition_authoring';
8408
+ type DomainCatalogRecommendedRuleType = 'privacy' | 'compliance' | 'validation' | 'selection_eligibility' | 'workflow_action_policy' | 'approval_policy' | string;
8409
+ interface DomainCatalogRelationshipHint {
8410
+ enabled?: boolean;
8411
+ federated?: boolean;
8412
+ serviceKey?: string | null;
8413
+ sourceNodeKey?: string | null;
8414
+ targetNodeKey?: string | null;
8415
+ edgeType?: string | null;
8416
+ query?: string | null;
8417
+ limit?: number;
8418
+ }
8419
+ interface DomainCatalogContextHint {
8420
+ schemaVersion?: typeof DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION;
8421
+ resourceKey?: string | null;
8422
+ query?: string | null;
8423
+ releaseId?: string | null;
8424
+ releaseKey?: string | null;
8425
+ serviceKey?: string | null;
8426
+ type?: DomainCatalogContextHintItemType;
8427
+ itemTypes?: DomainCatalogContextHintItemType[];
8428
+ intent?: DomainCatalogContextHintIntent | null;
8429
+ contextKey?: string | null;
8430
+ nodeType?: string | null;
8431
+ recommendedAuthoringFlow?: DomainCatalogRecommendedAuthoringFlow | null;
8432
+ recommendedRuleType?: DomainCatalogRecommendedRuleType | null;
8433
+ limit?: number;
8434
+ relationships?: DomainCatalogRelationshipHint | null;
8435
+ }
8436
+ interface DomainCatalogGovernanceContext {
8437
+ resourceKey: string;
8438
+ query: string;
8439
+ releaseKey: string | null;
8440
+ items: DomainCatalogItem<DomainCatalogGovernancePayload>[];
8441
+ }
8442
+
8443
+ interface DomainCatalogRequestOptions extends ResourceDiscoveryRequestOptions {
8444
+ serviceKey?: string;
8445
+ limit?: number;
8446
+ headers?: HttpHeaders | Record<string, string | string[]>;
8447
+ }
8448
+ interface DomainCatalogGovernanceRequestOptions extends DomainCatalogRequestOptions {
8449
+ resourceKey: string;
8450
+ query: string;
8451
+ }
8452
+ declare class DomainCatalogService {
8453
+ private readonly http;
8454
+ private readonly discovery;
8455
+ listReleases(options?: DomainCatalogRequestOptions): Observable<DomainCatalogRelease[]>;
8456
+ listItems(releaseKey: string, options?: DomainCatalogRequestOptions & {
8457
+ type?: string;
8458
+ query?: string;
8459
+ }): Observable<DomainCatalogItem[]>;
8460
+ findLatestReleaseForResource(resourceKey: string, options?: DomainCatalogRequestOptions): Observable<DomainCatalogRelease | null>;
8461
+ getGovernanceContext(options: DomainCatalogGovernanceRequestOptions): Observable<DomainCatalogGovernanceContext>;
8462
+ private resolveHeaders;
8463
+ private releaseMatchesResource;
8464
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomainCatalogService, never>;
8465
+ static ɵprov: i0.ɵɵInjectableDeclaration<DomainCatalogService>;
8466
+ }
8467
+
8468
+ type DomainKnowledgeAuthorType = 'human' | 'llm' | 'system' | string;
8469
+ type DomainKnowledgeChangeSetStatus = 'proposed' | 'approved' | 'rejected' | 'superseded' | 'applied' | string;
8470
+ type DomainKnowledgeValidationStatus = 'valid' | 'invalid' | 'pending' | string;
8471
+ type DomainKnowledgeOperationType = 'add_evidence' | 'update_evidence' | 'deprecate_evidence' | 'add_relationship' | 'update_concept' | string;
8472
+ interface DomainKnowledgeChangeSetTarget {
8473
+ tenantId?: string | null;
8474
+ environment?: string | null;
8475
+ subjectType?: string | null;
8476
+ conceptKey?: string | null;
8477
+ evidenceKey?: string | null;
8478
+ relationshipKey?: string | null;
8479
+ }
8480
+ interface DomainKnowledgePatchOperation {
8481
+ operationId: string;
8482
+ operationType: DomainKnowledgeOperationType;
8483
+ target?: DomainKnowledgeChangeSetTarget | null;
8484
+ reason?: string | null;
8485
+ evidenceRefs?: string[] | null;
8486
+ confidence?: number | null;
8487
+ payload?: Record<string, unknown> | null;
8488
+ }
8489
+ interface DomainKnowledgeChangeSetRequest {
8490
+ changeSetKey: string;
8491
+ status?: DomainKnowledgeChangeSetStatus | null;
8492
+ authorType?: DomainKnowledgeAuthorType | null;
8493
+ authorId?: string | null;
8494
+ intent?: string | null;
8495
+ reason?: string | null;
8496
+ patch: DomainKnowledgePatchOperation[];
8497
+ }
8498
+ interface DomainKnowledgeSafeOperationSummary {
8499
+ operationId?: string | null;
8500
+ operationType?: DomainKnowledgeOperationType | null;
8501
+ targetSubjectType?: string | null;
8502
+ targetConceptKey?: string | null;
8503
+ evidenceRefCount?: number | null;
8504
+ confidence?: number | null;
8505
+ }
8506
+ interface DomainKnowledgeChangeSet {
8507
+ id: string;
8508
+ tenantId?: string | null;
8509
+ environment?: string | null;
8510
+ changeSetKey?: string | null;
8511
+ status?: DomainKnowledgeChangeSetStatus | null;
8512
+ validationStatus?: DomainKnowledgeValidationStatus | null;
8513
+ authorType?: DomainKnowledgeAuthorType | null;
8514
+ authorId?: string | null;
8515
+ intent?: string | null;
8516
+ reason?: string | null;
8517
+ operationCount?: number | null;
8518
+ safeOperationSummary?: DomainKnowledgeSafeOperationSummary[] | null;
8519
+ reviewerId?: string | null;
8520
+ reviewedAt?: string | null;
8521
+ appliedAt?: string | null;
8522
+ createdAt?: string | null;
8523
+ updatedAt?: string | null;
8524
+ }
8525
+ interface DomainKnowledgeChangeSetFilters {
8526
+ status?: DomainKnowledgeChangeSetStatus;
8527
+ }
8528
+ interface DomainKnowledgeValidationIssue {
8529
+ operationId?: string | null;
8530
+ code?: string | null;
8531
+ message?: string | null;
8532
+ severity?: string | null;
8533
+ }
8534
+ interface DomainKnowledgeValidationResponse {
8535
+ valid: boolean;
8536
+ changeSetId?: string | null;
8537
+ validationStatus?: DomainKnowledgeValidationStatus | null;
8538
+ issues?: DomainKnowledgeValidationIssue[] | null;
8539
+ safeOperationSummary?: DomainKnowledgeSafeOperationSummary[] | null;
8540
+ }
8541
+ type DomainKnowledgeTimelineEventVisibility = 'safe' | string;
8542
+ interface DomainKnowledgeChangeSetTimelineEventResponse {
8543
+ eventType: string;
8544
+ occurredAt?: string | null;
8545
+ actorType?: string | null;
8546
+ actor?: string | null;
8547
+ summary?: string | null;
8548
+ status?: DomainKnowledgeChangeSetStatus | null;
8549
+ validationStatus?: DomainKnowledgeValidationStatus | null;
8550
+ operationCount?: number | null;
8551
+ operationTypes?: DomainKnowledgeOperationType[] | null;
8552
+ targetConceptKeys?: string[] | null;
8553
+ visibility?: DomainKnowledgeTimelineEventVisibility | null;
8554
+ }
8555
+ interface DomainKnowledgeChangeSetTimelineResponse {
8556
+ changeSetId: string;
8557
+ tenantId?: string | null;
8558
+ environment?: string | null;
8559
+ changeSetKey?: string | null;
8560
+ status?: DomainKnowledgeChangeSetStatus | null;
8561
+ authorType?: DomainKnowledgeAuthorType | null;
8562
+ authorId?: string | null;
8563
+ reviewerId?: string | null;
8564
+ events: DomainKnowledgeChangeSetTimelineEventResponse[];
8565
+ }
8566
+ interface DomainKnowledgeStatusTransitionRequest {
8567
+ status: Exclude<DomainKnowledgeChangeSetStatus, 'proposed'> | DomainKnowledgeChangeSetStatus;
8568
+ reviewerId?: string | null;
8569
+ reason?: string | null;
8570
+ }
8571
+
8572
+ interface DomainKnowledgeRequestOptions extends ResourceDiscoveryRequestOptions {
8573
+ headers?: HttpHeaders | Record<string, string | string[]>;
8574
+ }
8575
+ declare class DomainKnowledgeService {
8576
+ private readonly http;
8577
+ private readonly discovery;
8578
+ createChangeSet(request: DomainKnowledgeChangeSetRequest, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8579
+ listChangeSets(filters?: DomainKnowledgeChangeSetFilters, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet[]>;
8580
+ getChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8581
+ validateChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeValidationResponse>;
8582
+ transitionChangeSetStatus(changeSetId: string, request: DomainKnowledgeStatusTransitionRequest, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8583
+ applyChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8584
+ getChangeSetTimeline(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSetTimelineResponse>;
8585
+ private buildParams;
8586
+ private resolveHeaders;
8587
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomainKnowledgeService, never>;
8588
+ static ɵprov: i0.ɵɵInjectableDeclaration<DomainKnowledgeService>;
8589
+ }
8590
+
8591
+ type DomainRuleStatus = 'draft' | 'active' | 'inactive' | 'deprecated' | string;
8592
+ type DomainRuleCreatedByType = 'human' | 'llm' | 'system' | string;
8593
+ type DomainRuleAppliedByType = 'human' | 'llm' | 'system' | string;
8594
+ type DomainRuleTargetLayer = 'form' | 'table' | 'api' | 'workflow' | 'workflow_action' | 'approval_policy' | 'policy' | 'option_source' | 'backend_validation' | string;
8595
+ interface DomainRuleDecisionDiagnostics extends Record<string, unknown> {
8596
+ decisionKind?: string | null;
8597
+ authoringMode?: string | null;
8598
+ decisionStage?: string | null;
8599
+ decisionSource?: string | null;
8600
+ canonicalOwner?: string | null;
8601
+ materializationModel?: string | null;
8602
+ runtimeSurfacesAreDerived?: boolean | null;
8603
+ }
8604
+ interface DomainRuleDefinitionRequest {
8605
+ ruleKey: string;
8606
+ version?: number | null;
8607
+ ruleType?: string | null;
8608
+ status?: DomainRuleStatus | null;
8609
+ contextKey?: string | null;
8610
+ resourceKey?: string | null;
8611
+ serviceKey?: string | null;
8612
+ semanticOwner?: string | null;
8613
+ steward?: string | null;
8614
+ sourceReleaseId?: string | null;
8615
+ sourceChangeSetId?: string | null;
8616
+ definition?: Record<string, unknown> | null;
8617
+ parameters?: Record<string, unknown> | null;
8618
+ condition?: Record<string, unknown> | null;
8619
+ governance?: Record<string, unknown> | null;
8620
+ validationResult?: Record<string, unknown> | null;
8621
+ createdByType?: DomainRuleCreatedByType | null;
8622
+ createdBy?: string | null;
8623
+ approvedBy?: string | null;
8624
+ }
8625
+ interface DomainRuleDefinition extends DomainRuleDefinitionRequest {
8626
+ id: string;
8627
+ tenantId?: string | null;
8628
+ environment?: string | null;
8629
+ createdAt?: string | null;
8630
+ updatedAt?: string | null;
8631
+ approvedAt?: string | null;
8632
+ activatedAt?: string | null;
8633
+ }
8634
+ interface DomainRuleDefinitionFilters {
8635
+ resourceKey?: string;
8636
+ status?: DomainRuleStatus;
8637
+ ruleType?: string;
8638
+ ruleKey?: string;
8639
+ }
8640
+ type DomainRuleTimelineEventVisibility = 'safe' | string;
8641
+ interface DomainRuleTimelineEventResponse {
8642
+ eventType: string;
8643
+ occurredAt?: string | null;
8644
+ actorType?: DomainRuleAppliedByType | null;
8645
+ actor?: string | null;
8646
+ summary?: string | null;
8647
+ targetLayer?: DomainRuleTargetLayer | null;
8648
+ targetArtifactType?: string | null;
8649
+ targetArtifactKey?: string | null;
8650
+ sourceHash?: string | null;
8651
+ visibility?: DomainRuleTimelineEventVisibility | null;
8652
+ }
8653
+ interface DomainRuleTimelineResponse {
8654
+ ruleDefinitionId: string;
8655
+ tenantId?: string | null;
8656
+ environment?: string | null;
8657
+ ruleKey?: string | null;
8658
+ ruleType?: string | null;
8659
+ resourceKey?: string | null;
8660
+ events: DomainRuleTimelineEventResponse[];
8661
+ }
8662
+ interface DomainRuleStatusTransitionRequest {
8663
+ status: DomainRuleStatus;
8664
+ decidedByType?: DomainRuleAppliedByType | null;
8665
+ decidedBy?: string | null;
8666
+ decisionNotes?: Record<string, unknown> | null;
8667
+ }
8668
+ interface DomainRuleIntakeRequest {
8669
+ prompt: string;
8670
+ assistantMessage?: string | null;
8671
+ ruleKey?: string | null;
8672
+ ruleType?: string | null;
8673
+ contextKey?: string | null;
8674
+ resourceKey?: string | null;
8675
+ serviceKey?: string | null;
8676
+ definition?: Record<string, unknown> | null;
8677
+ parameters?: Record<string, unknown> | null;
8678
+ condition?: Record<string, unknown> | null;
8679
+ governance?: Record<string, unknown> | null;
8680
+ createdByType?: DomainRuleCreatedByType | null;
8681
+ createdBy?: string | null;
8682
+ }
8683
+ interface DomainRuleIntakeResponse {
8684
+ intakeId: string;
8685
+ tenantId?: string | null;
8686
+ environment?: string | null;
8687
+ ruleKey?: string | null;
8688
+ ruleType?: string | null;
8689
+ contextKey?: string | null;
8690
+ resourceKey?: string | null;
8691
+ serviceKey?: string | null;
8692
+ status?: DomainRuleStatus | null;
8693
+ grounding?: (Record<string, unknown> & {
8694
+ decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
8695
+ }) | null;
8696
+ definition?: DomainRuleDefinition | null;
8697
+ createdAt?: string | null;
8698
+ }
8699
+ interface DomainRuleMaterializationRequest {
8700
+ ruleDefinitionId: string;
8701
+ materializationKey: string;
8702
+ targetLayer?: DomainRuleTargetLayer | null;
8703
+ targetArtifactType?: string | null;
8704
+ targetArtifactKey?: string | null;
8705
+ targetPointer?: string | null;
8706
+ targetReleaseKey?: string | null;
8707
+ materializedRuleId?: string | null;
8708
+ status?: DomainRuleStatus | null;
8709
+ materializedPayload?: Record<string, unknown> | null;
8710
+ sourceHash?: string | null;
8711
+ validationResult?: Record<string, unknown> | null;
8712
+ appliedByType?: DomainRuleAppliedByType | null;
8713
+ appliedBy?: string | null;
8714
+ }
8715
+ interface DomainRuleMaterialization extends DomainRuleMaterializationRequest {
8716
+ id: string;
8717
+ tenantId?: string | null;
8718
+ environment?: string | null;
8719
+ ruleKey?: string | null;
8720
+ ruleVersion?: number | null;
8721
+ createdAt?: string | null;
8722
+ updatedAt?: string | null;
8723
+ appliedAt?: string | null;
8724
+ decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
8725
+ }
8726
+ interface DomainRuleMaterializationFilters {
8727
+ ruleDefinitionId?: string;
8728
+ targetLayer?: DomainRuleTargetLayer;
8729
+ targetArtifactType?: string;
8730
+ targetArtifactKey?: string;
8731
+ status?: DomainRuleStatus;
8732
+ }
8733
+ interface DomainRuleSimulationRequest {
8734
+ ruleDefinitionId?: string | null;
8735
+ ruleKey?: string | null;
8736
+ ruleType?: string | null;
8737
+ contextKey?: string | null;
8738
+ resourceKey?: string | null;
8739
+ serviceKey?: string | null;
8740
+ definition?: Record<string, unknown> | null;
8741
+ parameters?: Record<string, unknown> | null;
8742
+ condition?: Record<string, unknown> | null;
8743
+ governance?: Record<string, unknown> | null;
8744
+ }
8745
+ interface DomainRuleSimulationResponse {
8746
+ simulationId: string;
8747
+ ruleDefinitionId?: string | null;
8748
+ tenantId?: string | null;
8749
+ environment?: string | null;
8750
+ ruleKey?: string | null;
8751
+ ruleVersion?: number | null;
8752
+ ruleType?: string | null;
8753
+ contextKey?: string | null;
8754
+ resourceKey?: string | null;
8755
+ serviceKey?: string | null;
8756
+ result?: string | null;
8757
+ grounding?: Record<string, unknown> | null;
8758
+ existingCoverage?: unknown[] | null;
8759
+ predictedMaterializations?: unknown[] | null;
8760
+ requiredApprovals?: unknown[] | null;
8761
+ warnings?: unknown[] | null;
8762
+ explainability?: Record<string, unknown> | null;
8763
+ simulatedAt?: string | null;
8764
+ }
8765
+ type DomainRuleMaterializationOutcomeResolution = 'created' | 'reused' | 'selected_existing' | 'selected_explicit' | 'skipped' | 'blocked' | string;
8766
+ interface DomainRulePublicationMaterializationOutcome {
8767
+ resolution?: DomainRuleMaterializationOutcomeResolution | null;
8768
+ materializationKey?: string | null;
8769
+ targetLayer?: DomainRuleTargetLayer | null;
8770
+ targetArtifactType?: string | null;
8771
+ targetArtifactKey?: string | null;
8772
+ targetPointer?: string | null;
8773
+ statusAtResolution?: DomainRuleStatus | null;
8774
+ sourceHash?: string | null;
8775
+ reason?: string | null;
8776
+ }
8777
+ interface DomainRulePublicationDiagnostics {
8778
+ materializationOutcomes?: DomainRulePublicationMaterializationOutcome[] | null;
8779
+ }
8780
+ interface DomainRuleExplainability extends Record<string, unknown> {
8781
+ decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
8782
+ publicationDiagnostics?: DomainRulePublicationDiagnostics | null;
8783
+ }
8784
+ interface DomainRulePublicationRequest {
8785
+ ruleDefinitionId: string;
8786
+ materializationIds?: string[] | null;
8787
+ applyEligibleMaterializations?: boolean | null;
8788
+ publishedByType?: DomainRuleAppliedByType | null;
8789
+ publishedBy?: string | null;
8790
+ publicationNotes?: Record<string, unknown> | null;
8791
+ }
8792
+ interface DomainRulePublicationResponse {
8793
+ publicationId: string;
8794
+ tenantId?: string | null;
8795
+ environment?: string | null;
8796
+ publicationStatus?: string | null;
8797
+ publicationReadiness?: string | null;
8798
+ ruleDefinitionId?: string | null;
8799
+ ruleKey?: string | null;
8800
+ ruleVersion?: number | null;
8801
+ ruleType?: string | null;
8802
+ resourceKey?: string | null;
8803
+ serviceKey?: string | null;
8804
+ definition?: DomainRuleDefinition | null;
8805
+ materializations?: DomainRuleMaterialization[] | null;
8806
+ explainability?: DomainRuleExplainability | null;
8807
+ processedAt?: string | null;
8808
+ }
8809
+
8810
+ interface DomainRuleRequestOptions extends ResourceDiscoveryRequestOptions {
8811
+ headers?: HttpHeaders | Record<string, string | string[]>;
8812
+ }
8813
+ declare class DomainRuleService {
8814
+ private readonly http;
8815
+ private readonly discovery;
8816
+ intake(request: DomainRuleIntakeRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleIntakeResponse>;
8817
+ createDefinition(request: DomainRuleDefinitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition>;
8818
+ listDefinitions(filters?: DomainRuleDefinitionFilters, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition[]>;
8819
+ transitionDefinitionStatus(definitionId: string, request: DomainRuleStatusTransitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition>;
8820
+ getDefinitionTimeline(definitionId: string, options?: DomainRuleRequestOptions): Observable<DomainRuleTimelineResponse>;
8821
+ simulate(request: DomainRuleSimulationRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleSimulationResponse>;
8822
+ publish(request: DomainRulePublicationRequest, options?: DomainRuleRequestOptions): Observable<DomainRulePublicationResponse>;
8823
+ createMaterialization(request: DomainRuleMaterializationRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization>;
8824
+ listMaterializations(filters?: DomainRuleMaterializationFilters, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization[]>;
8825
+ transitionMaterializationStatus(materializationId: string, request: DomainRuleStatusTransitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization>;
8826
+ private buildParams;
8827
+ private resolveHeaders;
8828
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomainRuleService, never>;
8829
+ static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
8830
+ }
8831
+
7248
8832
  interface ResourceActionOpenAdapterOptions {
7249
8833
  resourcePath: string;
7250
8834
  resourceId?: string | number | null;
@@ -7981,8 +9565,15 @@ type GlobalActionCatalogEntry = {
7981
9565
  required?: string[];
7982
9566
  example?: any;
7983
9567
  };
9568
+ param?: {
9569
+ required?: boolean;
9570
+ label?: string;
9571
+ placeholder?: string;
9572
+ hint?: string;
9573
+ example?: string;
9574
+ };
7984
9575
  };
7985
- declare const GLOBAL_ACTION_CATALOG$1: InjectionToken<readonly GlobalActionCatalogEntry[][]>;
9576
+ declare const GLOBAL_ACTION_CATALOG: InjectionToken<readonly GlobalActionCatalogEntry[][]>;
7986
9577
  declare function provideGlobalActionCatalog(entries: GlobalActionCatalogEntry[]): Provider;
7987
9578
  declare function getGlobalActionCatalog(catalog: ReadonlyArray<GlobalActionCatalogEntry[]> | null | undefined): GlobalActionCatalogEntry[];
7988
9579
  declare const PRAXIS_GLOBAL_ACTION_CATALOG: GlobalActionCatalogEntry[];
@@ -7993,22 +9584,6 @@ interface GlobalSurfaceService {
7993
9584
  }
7994
9585
  declare const GLOBAL_SURFACE_SERVICE: InjectionToken<GlobalSurfaceService>;
7995
9586
 
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
9587
  declare const SURFACE_OPEN_I18N_NAMESPACE = "surfaceOpen";
8013
9588
  declare const SURFACE_OPEN_I18N_CONFIG: Partial<PraxisI18nConfig>;
8014
9589
 
@@ -8111,6 +9686,8 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
8111
9686
 
8112
9687
  declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
8113
9688
 
9689
+ declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
9690
+
8114
9691
  declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
8115
9692
  declare function providePraxisJsonLogicOperator(definition: PraxisJsonLogicOperatorDefinition): Provider;
8116
9693
  declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLogicOperatorDefinition): Provider;
@@ -8202,8 +9779,16 @@ interface ComponentPortEndpointRef {
8202
9779
  direction: 'input' | 'output';
8203
9780
  componentType?: string;
8204
9781
  bindingPath?: string;
9782
+ nestedPath?: ComponentPortPathSegment[];
8205
9783
  };
8206
9784
  }
9785
+ interface ComponentPortPathSegment {
9786
+ kind: 'widget' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
9787
+ id?: string;
9788
+ key?: string;
9789
+ index?: number;
9790
+ componentType?: string;
9791
+ }
8207
9792
  interface StateEndpointRef {
8208
9793
  kind: 'state';
8209
9794
  ref: {
@@ -8212,7 +9797,11 @@ interface StateEndpointRef {
8212
9797
  writable?: boolean;
8213
9798
  };
8214
9799
  }
8215
- type EndpointRef = ComponentPortEndpointRef | StateEndpointRef;
9800
+ interface GlobalActionEndpointRef {
9801
+ kind: 'global-action';
9802
+ ref: GlobalActionRef;
9803
+ }
9804
+ type EndpointRef = ComponentPortEndpointRef | StateEndpointRef | GlobalActionEndpointRef;
8216
9805
  type LinkIntent = 'event-propagation' | 'state-write' | 'state-read' | 'command-dispatch' | 'selection-sync' | 'data-projection' | 'status-propagation';
8217
9806
  interface LinkPolicy {
8218
9807
  debounceMs?: number;
@@ -8243,7 +9832,7 @@ interface CompositionLink {
8243
9832
 
8244
9833
  type DiagnosticSeverity = 'info' | 'warning' | 'error' | 'fatal';
8245
9834
  type DiagnosticPhase = 'catalog-lint' | 'page-lint' | 'semantic-validation' | 'runtime-bootstrap' | 'runtime-dispatch' | 'runtime-transform' | 'runtime-state' | 'runtime-delivery' | 'runtime-diagnostic';
8246
- type DiagnosticSubjectKind = 'page' | 'widget' | 'port' | 'state' | 'derived-state' | 'link' | 'transform-step' | 'runtime-event' | 'runtime-snapshot';
9835
+ type DiagnosticSubjectKind = 'page' | 'widget' | 'port' | 'state' | 'derived-state' | 'global-action' | 'link' | 'transform-step' | 'runtime-event' | 'runtime-snapshot';
8247
9836
  interface DiagnosticSubjectRef {
8248
9837
  kind: DiagnosticSubjectKind;
8249
9838
  pageId?: string;
@@ -8251,6 +9840,7 @@ interface DiagnosticSubjectRef {
8251
9840
  widgetType?: string;
8252
9841
  portId?: string;
8253
9842
  statePath?: string;
9843
+ actionId?: string;
8254
9844
  linkId?: string;
8255
9845
  transformIndex?: number;
8256
9846
  eventId?: string;
@@ -8446,6 +10036,7 @@ interface FormActionButton {
8446
10036
  disabled?: boolean;
8447
10037
  type?: 'button' | 'submit' | 'reset';
8448
10038
  action?: string;
10039
+ globalAction?: GlobalActionRef;
8449
10040
  tooltip?: string;
8450
10041
  loading?: boolean;
8451
10042
  size?: 'small' | 'medium' | 'large';
@@ -8593,7 +10184,7 @@ interface FieldsetLayout {
8593
10184
  rows: FormRowLayout[];
8594
10185
  hiddenCondition?: JsonLogicExpression | null;
8595
10186
  }
8596
- type FormRuleTargetType = 'field' | 'section' | 'action' | 'row' | 'column';
10187
+ type FormRuleTargetType = 'field' | 'section' | 'action' | 'row' | 'column' | 'visualBlock';
8597
10188
  interface FormLayoutRule {
8598
10189
  id: string;
8599
10190
  name: string;
@@ -8732,6 +10323,29 @@ interface EditorialFormTemplateBuildOptions {
8732
10323
  */
8733
10324
  declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfig;
8734
10325
 
10326
+ interface FormFieldLayoutItem {
10327
+ kind: 'field';
10328
+ id: string;
10329
+ fieldName: string;
10330
+ }
10331
+ interface FormRichContentLayoutItem {
10332
+ kind: 'richContent';
10333
+ id: string;
10334
+ document: RichContentDocument;
10335
+ layout?: 'block' | 'inline';
10336
+ rootClassName?: string | null;
10337
+ }
10338
+ type FormLayoutItem = FormFieldLayoutItem | FormRichContentLayoutItem;
10339
+ interface FormLayoutItemsColumnLike {
10340
+ fields?: unknown;
10341
+ items?: unknown;
10342
+ }
10343
+ declare function createFieldLayoutItem(fieldName: string, index?: number): FormFieldLayoutItem;
10344
+ declare function isFormLayoutItem(value: unknown): value is FormLayoutItem;
10345
+ declare function normalizeFormLayoutItems(column: FormLayoutItemsColumnLike | null | undefined): FormLayoutItem[];
10346
+ declare function getFormLayoutFieldNames(items: readonly FormLayoutItem[] | null | undefined): string[];
10347
+ declare function getFormColumnFieldNames(column: FormLayoutItemsColumnLike | null | undefined): string[];
10348
+
8735
10349
  type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
8736
10350
  interface ColumnSpan {
8737
10351
  xs?: number;
@@ -8763,7 +10377,10 @@ interface ColumnHidden {
8763
10377
  }
8764
10378
  type ColumnAlign = 'start' | 'center' | 'end' | 'stretch';
8765
10379
  interface FormColumn {
10380
+ /** Legacy field-name list accepted as migration input while items becomes canonical. */
8766
10381
  fields: string[];
10382
+ /** Canonical ordered layout items for fields and visual blocks. */
10383
+ items?: FormLayoutItem[];
8767
10384
  id: string;
8768
10385
  title?: string;
8769
10386
  span?: ColumnSpan;
@@ -8837,8 +10454,10 @@ interface FormSectionHeaderAction {
8837
10454
  label: string;
8838
10455
  /** Icon rendered in the section header action slot. */
8839
10456
  icon: string;
8840
- /** Optional action name emitted by the runtime; defaults to `id` when omitted. */
10457
+ /** Optional local action name emitted by the runtime; defaults to `id` when omitted. */
8841
10458
  action?: string;
10459
+ /** Optional structured global action executed by hosts through GlobalActionService. */
10460
+ globalAction?: GlobalActionRef;
8842
10461
  /** Optional tooltip override. Falls back to `label` when omitted. */
8843
10462
  tooltip?: string;
8844
10463
  /** Optional theme color mapped to Angular Material button tones. */
@@ -8933,6 +10552,8 @@ interface FormConfig {
8933
10552
  messages?: FormMessagesLayout;
8934
10553
  /** Form rules for dynamic behavior */
8935
10554
  formRules?: FormLayoutRule[];
10555
+ /** Conditional command rules evaluated after form rule values stabilize. */
10556
+ formCommandRules?: PraxisRuntimeConditionalEffectRule<PraxisRuntimeGlobalActionEffect>[];
8936
10557
  /**
8937
10558
  * Raw state emitted by the visual rule builder.
8938
10559
  * Stored separately to allow round-trip editing without losing metadata.
@@ -9143,6 +10764,7 @@ interface FormInitializationError {
9143
10764
  }
9144
10765
  interface FormCustomActionEvent {
9145
10766
  actionId: string;
10767
+ globalAction?: GlobalActionRef;
9146
10768
  formData: any;
9147
10769
  isValid: boolean;
9148
10770
  source: 'button' | 'shortcut' | 'section-header';
@@ -9166,7 +10788,7 @@ interface RulePropertyDefinition {
9166
10788
  }>;
9167
10789
  category?: 'content' | 'appearance' | 'behavior' | 'layout' | 'validation';
9168
10790
  }
9169
- type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column', RulePropertyDefinition[]>;
10791
+ type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column' | 'visualBlock', RulePropertyDefinition[]>;
9170
10792
  declare const RULE_PROPERTY_SCHEMA: RulePropertySchema;
9171
10793
 
9172
10794
  type EditorialOrientation = 'horizontal' | 'vertical';
@@ -10088,6 +11710,18 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
10088
11710
  status?: PersistedPageConfig['status'];
10089
11711
  }): PersistedPageConfig;
10090
11712
 
11713
+ interface DomainKnowledgeTimelineRichContentOptions {
11714
+ title?: string;
11715
+ emptyText?: string;
11716
+ }
11717
+ declare function domainKnowledgeTimelineToRichContentDocument(timeline: DomainKnowledgeChangeSetTimelineResponse, options?: DomainKnowledgeTimelineRichContentOptions): RichContentDocument;
11718
+
11719
+ interface DomainRuleTimelineRichContentOptions {
11720
+ title?: string;
11721
+ emptyText?: string;
11722
+ }
11723
+ declare function domainRuleTimelineToRichContentDocument(timeline: DomainRuleTimelineResponse, options?: DomainRuleTimelineRichContentOptions): RichContentDocument;
11724
+
10091
11725
  /**
10092
11726
  * Navigation/back behavior configuration used by form hosts (e.g., CRUD dialogs/routes).
10093
11727
  * Moved from @praxisui/crud to @praxisui/core to avoid circular deps between
@@ -10107,6 +11741,9 @@ interface BackConfig {
10107
11741
  confirmOnDirty?: boolean;
10108
11742
  }
10109
11743
 
11744
+ interface PraxisDataQueryContextMeta extends Record<string, unknown> {
11745
+ domainCatalog?: DomainCatalogContextHint | null;
11746
+ }
10110
11747
  interface PraxisDataQueryContext {
10111
11748
  filters?: Record<string, unknown> | null;
10112
11749
  sort?: string[] | null;
@@ -10115,7 +11752,7 @@ interface PraxisDataQueryContext {
10115
11752
  index?: number | null;
10116
11753
  size?: number | null;
10117
11754
  } | null;
10118
- meta?: Record<string, unknown> | null;
11755
+ meta?: PraxisDataQueryContextMeta | null;
10119
11756
  }
10120
11757
  declare function normalizePraxisDataQueryContext(context?: PraxisDataQueryContext | null): PraxisDataQueryContext | null;
10121
11758
  declare function resolvePraxisFilterCriteria(filterCriteria?: Record<string, unknown> | null, queryContext?: PraxisDataQueryContext | null): Record<string, unknown>;
@@ -10455,7 +12092,7 @@ interface GlobalActionField {
10455
12092
  dependsOnValue?: string;
10456
12093
  }
10457
12094
  interface GlobalActionUiSchema {
10458
- id: GlobalActionId;
12095
+ id: string;
10459
12096
  label: string;
10460
12097
  fields: GlobalActionField[];
10461
12098
  editorMode?: 'default' | 'surface-open';
@@ -10463,6 +12100,33 @@ interface GlobalActionUiSchema {
10463
12100
  declare const GLOBAL_ACTION_UI_SCHEMAS: GlobalActionUiSchema[];
10464
12101
  declare function getGlobalActionUiSchema(id: string | undefined): GlobalActionUiSchema | undefined;
10465
12102
 
12103
+ type GlobalActionValidationCode = 'globalAction.actionId.required' | 'globalAction.payload.required' | 'globalAction.payload.type';
12104
+ interface GlobalActionValidationIssue {
12105
+ code: GlobalActionValidationCode;
12106
+ path?: string;
12107
+ actionId?: string;
12108
+ requiredKeys?: string[];
12109
+ missingKeys?: string[];
12110
+ expectedType?: string;
12111
+ actualType?: string;
12112
+ }
12113
+ interface GlobalActionValidationTarget {
12114
+ ref: GlobalActionRef | null | undefined;
12115
+ catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null;
12116
+ path?: string;
12117
+ }
12118
+ declare function normalizeGlobalActionRef(ref: GlobalActionRef | null | undefined): GlobalActionRef | null;
12119
+ declare function isGlobalActionRef(value: unknown): value is GlobalActionRef;
12120
+ declare function getRequiredGlobalActionPayloadKeys(actionId: string | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
12121
+ declare function hasMeaningfulGlobalActionPayloadValue(value: any): boolean;
12122
+ declare function getMissingGlobalActionPayloadKeys(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
12123
+ declare function isRequiredGlobalActionParamPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
12124
+ declare function isRequiredGlobalActionPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
12125
+ declare function getGlobalActionPayloadActualType(value: unknown): string;
12126
+ declare function getGlobalActionPayloadTypeIssue(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): Pick<GlobalActionValidationIssue, 'expectedType' | 'actualType'> | null;
12127
+ declare function validateGlobalActionRef(ref: GlobalActionRef | null | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null, path?: string): GlobalActionValidationIssue[];
12128
+ declare function validateGlobalActionRefs(targets: GlobalActionValidationTarget[]): GlobalActionValidationIssue[];
12129
+
10466
12130
  interface SurfaceOpenPreset {
10467
12131
  id: string;
10468
12132
  label: string;
@@ -10591,6 +12255,209 @@ interface AiConcept {
10591
12255
  }
10592
12256
  type AiConceptPack = Record<string, AiConcept>;
10593
12257
 
12258
+ /**
12259
+ * Representa o contrato canônico de authoring executável de um componente.
12260
+ */
12261
+ interface ComponentAuthoringManifest {
12262
+ /** Versão do schema do manifesto (ex: 1.0.0) */
12263
+ schemaVersion: string;
12264
+ /** Identificador único do componente no registry (ex: praxis-table) */
12265
+ componentId: string;
12266
+ /** Nome do pacote npm que possui o componente (ex: @praxisui/table) */
12267
+ ownerPackage: string;
12268
+ /** ID do schema de configuração (ex: TableConfig) */
12269
+ configSchemaId: string;
12270
+ /** Versão do manifesto específico deste componente */
12271
+ manifestVersion: string;
12272
+ /** Inputs que o componente aceita em runtime */
12273
+ runtimeInputs: ManifestInput[];
12274
+ /** Alvos que podem ser editados via AI */
12275
+ editableTargets: ManifestTarget[];
12276
+ /** Operações atômicas permitidas */
12277
+ operations: ManifestOperation[];
12278
+ /** Validadores de integridade da configuração */
12279
+ validators: ManifestValidator[];
12280
+ /** Requisitos para round-trip sem perda de informação */
12281
+ roundTripRequirements?: string[];
12282
+ /**
12283
+ * Exemplos de intenção → operação para uso em Few-Shot e evals.
12284
+ * Obrigatório: o gate de aceitação rejeita manifestos sem examples.
12285
+ * Deve conter ao menos um exemplo negativo (isPositive: false).
12286
+ */
12287
+ examples: ManifestExample[];
12288
+ /**
12289
+ * Perfis opcionais para familias de componentes que compartilham um manifesto
12290
+ * base, mas precisam expor semantica granular por componente/controlType.
12291
+ */
12292
+ controlProfiles?: ManifestControlProfile[];
12293
+ }
12294
+ interface ManifestInput {
12295
+ name: string;
12296
+ type: string;
12297
+ description?: string;
12298
+ allowedValues?: any[];
12299
+ }
12300
+ interface ManifestTarget {
12301
+ kind: string;
12302
+ resolver: string;
12303
+ description: string;
12304
+ }
12305
+ /**
12306
+ * Política de submissão para campos locais num formulário.
12307
+ * - 'omit': campo não é incluído no payload de submissão (default para campos locais).
12308
+ * - 'include': campo é sempre incluído no payload.
12309
+ * - 'includeWhenDirty': campo é incluído apenas se o valor foi alterado pelo usuário.
12310
+ * NOTA: 'transient' NÃO é um valor válido; use source:'local' + transient:true no schema de input.
12311
+ */
12312
+ type SubmitPolicy = 'omit' | 'include' | 'includeWhenDirty';
12313
+ type ManifestSubmissionImpact = 'none' | 'visual-only' | 'config-only' | 'affects-submission' | 'affects-schema-backed-data' | 'affects-remote-binding';
12314
+ interface ManifestOperation {
12315
+ operationId: string;
12316
+ title: string;
12317
+ /**
12318
+ * Escopo da operação.
12319
+ * - 'global': opera sobre a configuração raiz; target.required deve ser false.
12320
+ * - Outros valores: opera sobre um alvo específico; target.required deve ser true.
12321
+ * O valor 'target' é reservado para uso futuro e não deve ser usado.
12322
+ */
12323
+ 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';
12324
+ /**
12325
+ * @deprecated Use `target.kind` em vez disso.
12326
+ * Mantido para compatibilidade retroativa com ferramentas que lêem o registry.
12327
+ * Deve ser igual a `target.kind` quando `target` estiver presente.
12328
+ */
12329
+ targetKind?: string;
12330
+ /**
12331
+ * Definição estruturada do alvo da operação.
12332
+ * Obrigatório para operações com scope diferente de 'global'.
12333
+ * Usado pelo backend para resolver o alvo antes de compilar o patch.
12334
+ */
12335
+ target?: {
12336
+ /** Tipo do alvo (ex: column, rule) */
12337
+ kind: string;
12338
+ /** Resolver canônico usado para localizar o alvo (ex: column-by-field) */
12339
+ resolver: string;
12340
+ /** Política para lidar com ambiguidades na resolução */
12341
+ ambiguityPolicy?: 'fail' | 'first' | 'all';
12342
+ /** Se o alvo é obrigatório para a operação */
12343
+ required: boolean;
12344
+ };
12345
+ /** Schema JSON do payload de entrada da operação */
12346
+ inputSchema: any;
12347
+ /**
12348
+ * Efeitos que a operação causa na configuração.
12349
+ * Usado pelo backend para compilar o patch de forma determinística.
12350
+ */
12351
+ effects: ManifestEffect[];
12352
+ /** Se true, a operação é destrutiva e pode causar perda de dados/configuração */
12353
+ destructive?: boolean;
12354
+ /**
12355
+ * Se true, o agente DEVE solicitar confirmação explícita antes de aplicar.
12356
+ * Obrigatório para todas as operações com destructive:true.
12357
+ */
12358
+ requiresConfirmation?: boolean;
12359
+ /** IDs dos validadores que devem ser executados para esta operação */
12360
+ validators?: string[];
12361
+ /**
12362
+ * Caminhos (JSON Path-like) na configuração afetados por esta operação.
12363
+ * Deve cobrir todos os paths tocados pelos effects.
12364
+ * Usado pelo backend para validação de acesso e auditoria de mudanças.
12365
+ */
12366
+ affectedPaths: string[];
12367
+ /**
12368
+ * Impacto declarado da operação sobre submissão, configuração visual ou binding remoto.
12369
+ * Boolean permanece aceito para manifests legados; manifests semanticamente validados devem usar
12370
+ * ManifestSubmissionImpact para evitar inferencia fragil no backend.
12371
+ */
12372
+ submissionImpact: ManifestSubmissionImpact | boolean;
12373
+ /**
12374
+ * Condições de estado que devem ser verdadeiras antes de executar a operação.
12375
+ * Usado pelo backend para validação prévia ao patch.
12376
+ * Ex: ['config-initialized', 'target-exists']
12377
+ */
12378
+ preconditions: string[];
12379
+ }
12380
+ /**
12381
+ * Efeito atômico sobre a configuração.
12382
+ * Usa discriminated union por `kind` para documentar quais campos são obrigatórios:
12383
+ *
12384
+ * - 'merge-object': path obrigatório; funde o payload no objeto no path.
12385
+ * - 'merge-by-key': path + key obrigatórios; funde pelo campo-chave em uma coleção.
12386
+ * - 'append-unique': path + key obrigatórios; adiciona item se não existir (deduplicação por key).
12387
+ * - 'remove-by-key': path + key obrigatórios; remove item da coleção pelo valor da key.
12388
+ * - 'reorder-by-key': path + key obrigatórios; reordena coleção por key.
12389
+ * - 'set-value': path obrigatório; seta o valor diretamente no path.
12390
+ * - 'compile-domain-patch': handler obrigatório; delega compilação a um handler especializado.
12391
+ */
12392
+ interface ManifestEffect {
12393
+ kind: 'merge-object' | 'merge-by-key' | 'append-unique' | 'remove-by-key' | 'reorder-by-key' | 'set-value' | 'compile-domain-patch';
12394
+ /** Path JSON-like na configuração onde o efeito é aplicado. Obrigatório para todos os kinds exceto 'compile-domain-patch'. */
12395
+ path?: string;
12396
+ /** Chave de identidade em coleções. Obrigatório para merge-by-key, append-unique, remove-by-key, reorder-by-key. */
12397
+ key?: string;
12398
+ /** Valor literal para efeitos set-value quando o valor não vem do input da operação. */
12399
+ value?: unknown;
12400
+ /** Caminho opcional dentro do input da operação usado por efeitos set-value. */
12401
+ inputPath?: string;
12402
+ /** ID do handler especializado. Obrigatório quando kind é 'compile-domain-patch'. */
12403
+ handler?: string;
12404
+ handlerContract?: ManifestDomainPatchHandlerContract;
12405
+ }
12406
+ interface ManifestDomainPatchHandlerContract {
12407
+ reads: string[];
12408
+ writes: string[];
12409
+ identityKeys: string[];
12410
+ inputSchema?: any;
12411
+ failureModes: string[];
12412
+ description: string;
12413
+ }
12414
+ interface ManifestValidator {
12415
+ validatorId: string;
12416
+ level: 'error' | 'warning' | 'info';
12417
+ code: string;
12418
+ description: string;
12419
+ }
12420
+ interface ManifestExample {
12421
+ id: string;
12422
+ request: string;
12423
+ operationId: string;
12424
+ target?: string;
12425
+ params?: any;
12426
+ isPositive?: boolean;
12427
+ }
12428
+ interface ManifestControlProfile {
12429
+ /** Identificador estavel do perfil dentro do manifesto familiar. */
12430
+ profileId: string;
12431
+ /** Nome curto usado por ferramentas de authoring. */
12432
+ title: string;
12433
+ /** Explica a semantica que este perfil adiciona sobre o manifesto base. */
12434
+ description: string;
12435
+ /** Regras deterministicas para projetar o perfil em componentes do registry. */
12436
+ appliesTo: ManifestControlProfileApplicability;
12437
+ /** Alvos adicionais ou refinados que este perfil torna editaveis. */
12438
+ editableTargets?: ManifestTarget[];
12439
+ /** Operacoes especificas do perfil/controlType. */
12440
+ operations: ManifestOperation[];
12441
+ /** Validadores especificos do perfil/controlType. */
12442
+ validators: ManifestValidator[];
12443
+ /** Exemplos/evals especificos do perfil/controlType. */
12444
+ examples: ManifestExample[];
12445
+ /** Requisitos adicionais de round-trip para este perfil. */
12446
+ roundTripRequirements?: string[];
12447
+ }
12448
+ interface ManifestControlProfileApplicability {
12449
+ /** IDs de componentes do registry que devem receber este perfil. */
12450
+ componentIds?: string[];
12451
+ /** Selectors publicos que devem receber este perfil. */
12452
+ selectors?: string[];
12453
+ /** Control types canonicos ou aliases que devem receber este perfil. */
12454
+ controlTypes?: string[];
12455
+ /** Tags de ComponentDocMeta usadas como fallback de classificacao. */
12456
+ tags?: string[];
12457
+ /** Tipos do input `metadata` usados como fallback de classificacao. */
12458
+ metadataInputTypes?: string[];
12459
+ }
12460
+
10594
12461
  /**
10595
12462
  * Catálogo de capacidades genéricas de FieldMetadata para uso da IA.
10596
12463
  * Baseado em projects/praxis-core/src/lib/models/component-metadata.interface.ts
@@ -10620,6 +12487,7 @@ declare module "./index" {
10620
12487
  shell: true;
10621
12488
  connections: true;
10622
12489
  context: true;
12490
+ state: true;
10623
12491
  }
10624
12492
  }
10625
12493
  type CapabilityCategory = AiCapabilityCategory;
@@ -10706,10 +12574,14 @@ interface ComponentMergePatch<TConfig extends Record<string, unknown> = Record<s
10706
12574
 
10707
12575
  declare const DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK: ComponentContextPack;
10708
12576
 
12577
+ declare const DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK: ComponentContextPack;
12578
+
10709
12579
  interface WidgetEventPathSegment {
10710
- kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
12580
+ kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group' | 'widget';
10711
12581
  id?: string;
12582
+ key?: string;
10712
12583
  index?: number;
12584
+ componentType?: string;
10713
12585
  }
10714
12586
  interface WidgetEventEnvelope {
10715
12587
  /** Optional top-level page widget key that owns the event tree. */
@@ -10731,6 +12603,50 @@ interface WidgetResolutionDiagnostic {
10731
12603
  error?: unknown;
10732
12604
  }
10733
12605
 
12606
+ interface WidgetEventPathNormalizeOptions {
12607
+ /** Optional owner component id used to strip only the top-level container segment. */
12608
+ ownerComponentId?: string;
12609
+ }
12610
+ interface WidgetEventPathNormalizeInput {
12611
+ path?: WidgetEventPathSegment[];
12612
+ sourceChildWidgetKey?: string;
12613
+ sourceComponentId?: string;
12614
+ }
12615
+ declare function normalizeWidgetEventPath(event: WidgetEventEnvelope | WidgetEventPathNormalizeInput, options?: WidgetEventPathNormalizeOptions): ComponentPortPathSegment[];
12616
+
12617
+ interface NestedWidgetResolution {
12618
+ ownerWidgetKey: string;
12619
+ nestedPath: ComponentPortPathSegment[];
12620
+ widget: WidgetDefinition;
12621
+ componentId: string;
12622
+ childWidgetKey: string;
12623
+ }
12624
+ interface NestedWidgetInputPatchResult {
12625
+ widget: WidgetInstance;
12626
+ changed: boolean;
12627
+ }
12628
+ declare class NestedWidgetConfigAccessor {
12629
+ listNestedWidgets(owner: WidgetInstance): NestedWidgetResolution[];
12630
+ resolveNestedWidget(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined): WidgetDefinition | undefined;
12631
+ setNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string, value: unknown): NestedWidgetInputPatchResult;
12632
+ private listNestedWidgetsInDefinition;
12633
+ private resolveNestedWidgetInDefinition;
12634
+ private setNestedWidgetInputInDefinition;
12635
+ private listChildWidgetLocations;
12636
+ private listTabsWidgetLocations;
12637
+ private listExpansionWidgetLocations;
12638
+ private resolveWidgetArrayLocation;
12639
+ private resolveTabsWidgetArray;
12640
+ private resolveExpansionWidgetArray;
12641
+ private findBySegment;
12642
+ private segmentIdentity;
12643
+ private asWidgetDefinitions;
12644
+ private isWidgetDefinition;
12645
+ private resolveChildWidgetKey;
12646
+ private clone;
12647
+ private isEqual;
12648
+ }
12649
+
10734
12650
  type EditorialContentFormat = 'plain' | 'markdown';
10735
12651
  interface EditorialLinkDefinition {
10736
12652
  label: string;
@@ -10934,17 +12850,27 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
10934
12850
  widgetDiagnostic: EventEmitter<WidgetResolutionDiagnostic>;
10935
12851
  private compRef?;
10936
12852
  private currentId?;
12853
+ private currentUsesInitialBindings;
12854
+ private currentInitialBindingSignature;
10937
12855
  private outputSubs;
10938
12856
  /** Dispatch a shell action to the inner widget instance when supported. */
10939
12857
  dispatchAction(action: WidgetShellActionEvent): boolean;
10940
12858
  ngOnInit(): void;
10941
12859
  ngOnChanges(changes: SimpleChanges): void;
10942
12860
  ngOnDestroy(): void;
12861
+ renderNow(): void;
10943
12862
  private parseWidget;
10944
12863
  private tryRender;
10945
12864
  private createComponent;
10946
12865
  private destroyCurrent;
12866
+ private shouldUseInitialInputBindings;
10947
12867
  private bindInputs;
12868
+ private initialBindingSignature;
12869
+ private orderedInputEntries;
12870
+ private resolveAndCoerceValue;
12871
+ private withInferredIdentityInputs;
12872
+ private normalizeMaterializedRuntimeInputs;
12873
+ private inferResourcePathFromSchemaUrl;
10948
12874
  private bindOutputs;
10949
12875
  private resolveValue;
10950
12876
  private get widgetDefinition();
@@ -10952,6 +12878,8 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
10952
12878
  private lookup;
10953
12879
  private validateAgainstMetadata;
10954
12880
  private coercePrimitive;
12881
+ private stableStringify;
12882
+ private stableSerializableValue;
10955
12883
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetLoaderDirective, never>;
10956
12884
  static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicWidgetLoaderDirective, "[dynamicWidgetLoader]", ["dynamicWidgetLoader"], { "widget": { "alias": "dynamicWidgetLoader"; "required": false; }; "ownerWidgetKey": { "alias": "ownerWidgetKey"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "autoWireOutputs": { "alias": "autoWireOutputs"; "required": false; }; }, { "widgetEvent": "widgetEvent"; "widgetDiagnostic": "widgetDiagnostic"; }, never, never, true, never>;
10957
12885
  }
@@ -11030,6 +12958,7 @@ declare class WidgetPageStateRuntimeService {
11030
12958
  private evaluateDerivedJsonLogic;
11031
12959
  private resolveCaseValue;
11032
12960
  private resolveTemplate;
12961
+ private isPageStateTemplatePath;
11033
12962
  private normalizeDependencyPath;
11034
12963
  private readPath;
11035
12964
  private isPlainObject;
@@ -11058,6 +12987,86 @@ interface WidgetPageComposition {
11058
12987
  context: Record<string, unknown>;
11059
12988
  }
11060
12989
 
12990
+ interface NestedPortCatalogRegistry {
12991
+ get(id: string): Pick<ComponentDocMeta, 'ports'> | undefined;
12992
+ }
12993
+ interface ResolvedNestedPort {
12994
+ ownerWidgetKey: string;
12995
+ ownerComponentId?: string;
12996
+ nestedPath: ComponentPortPathSegment[];
12997
+ containerPath?: ComponentPortPathSegment[];
12998
+ port: PortContract;
12999
+ componentId: string;
13000
+ childWidgetKey: string;
13001
+ }
13002
+ interface NestedPortCatalogDiagnostic {
13003
+ code: 'NESTED_WIDGET_METADATA_MISSING' | 'NESTED_WIDGET_KEY_MISSING';
13004
+ severity: 'warning' | 'error';
13005
+ ownerWidgetKey: string;
13006
+ nestedPath: ComponentPortPathSegment[];
13007
+ componentId?: string;
13008
+ message: string;
13009
+ }
13010
+ interface NestedPortCatalogResult {
13011
+ ports: ResolvedNestedPort[];
13012
+ diagnostics: NestedPortCatalogDiagnostic[];
13013
+ }
13014
+ declare class NestedPortCatalogService {
13015
+ private readonly accessor;
13016
+ constructor(accessor?: NestedWidgetConfigAccessor);
13017
+ resolve(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry): NestedPortCatalogResult;
13018
+ resolveEndpoint(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry, options: {
13019
+ ownerWidgetKey: string;
13020
+ nestedPath: ComponentPortPathSegment[];
13021
+ portId: string;
13022
+ direction: PortContract['direction'];
13023
+ }): ResolvedNestedPort | undefined;
13024
+ private hasStableTerminalKey;
13025
+ private containerPath;
13026
+ private isSamePath;
13027
+ private clone;
13028
+ }
13029
+
13030
+ type SemanticEndpointRef = EndpointRef & {
13031
+ ref: EndpointRef['ref'] & {
13032
+ semanticKind?: TransformSemanticKind;
13033
+ };
13034
+ };
13035
+ type SemanticCompositionLink = CompositionLink & {
13036
+ from: SemanticEndpointRef;
13037
+ to: SemanticEndpointRef;
13038
+ transform?: TransformPipeline;
13039
+ };
13040
+ interface CompositionValidatorContext {
13041
+ page?: Pick<WidgetPageDefinition, 'widgets'>;
13042
+ registry?: NestedPortCatalogRegistry;
13043
+ links?: SemanticCompositionLink[];
13044
+ }
13045
+ declare class CompositionValidatorService {
13046
+ private readonly nestedPortCatalog;
13047
+ private readonly jsonLogic;
13048
+ constructor(nestedPortCatalog?: NestedPortCatalogService, jsonLogic?: PraxisJsonLogicService);
13049
+ validateLink(link: SemanticCompositionLink, context?: CompositionValidatorContext): DiagnosticRecord[];
13050
+ private validateEndpointDirections;
13051
+ private validateBindingPathBridge;
13052
+ private validateNestedComponentEndpoints;
13053
+ private validateNestedPortCatalog;
13054
+ private projectCatalogDiagnostics;
13055
+ private validateNestedWidgetEventCoexistence;
13056
+ private validateStateWrites;
13057
+ private validateGlobalActionTarget;
13058
+ private validateCondition;
13059
+ private validateTransformCatalog;
13060
+ private validateSemanticCompatibility;
13061
+ private endpointSemanticKind;
13062
+ private areSemanticKindsCompatible;
13063
+ private areKindsDirectlyCompatible;
13064
+ private createDiagnostic;
13065
+ private formatNestedPath;
13066
+ private nestedEndpointSubject;
13067
+ private isSameNestedPath;
13068
+ }
13069
+
11061
13070
  interface CompositionRuntimeStoreInit {
11062
13071
  pageId?: string;
11063
13072
  status?: RuntimeSnapshotStatus;
@@ -11131,13 +13140,16 @@ interface LinkExecutionContext {
11131
13140
  lastDeliveredAt?: string;
11132
13141
  }
11133
13142
  interface LinkExecutionDelivery {
11134
- kind: 'state' | 'component-port';
13143
+ kind: 'state' | 'component-port' | 'global-action';
11135
13144
  value: unknown;
11136
13145
  statePath?: string;
11137
13146
  stateLayer?: 'values' | 'derived' | 'transient';
11138
13147
  widgetKey?: string;
11139
13148
  portId?: string;
11140
13149
  bindingPath?: string;
13150
+ nestedPath?: ComponentPortPathSegment[];
13151
+ actionId?: string;
13152
+ actionRef?: GlobalActionRef;
11141
13153
  }
11142
13154
  interface LinkExecutionResult {
11143
13155
  status: 'delivered' | 'skipped' | 'failed';
@@ -11207,6 +13219,7 @@ interface CompositionRuntimeEngineOptions {
11207
13219
  linkExecutor?: LinkExecutorService;
11208
13220
  stateRuntime?: WidgetPageStateRuntimeService;
11209
13221
  traceService?: RuntimeTraceService;
13222
+ compositionValidator?: CompositionValidatorService;
11210
13223
  }
11211
13224
  interface CompositionStateWidgetPreviewOptions {
11212
13225
  widgets?: WidgetInstance[];
@@ -11223,7 +13236,9 @@ declare class CompositionRuntimeEngine {
11223
13236
  private readonly linkExecutor;
11224
13237
  private readonly stateRuntime;
11225
13238
  private readonly traceService;
13239
+ private readonly compositionValidator;
11226
13240
  private readonly pathAccessor;
13241
+ private readonly nestedWidgetAccessor;
11227
13242
  private definition;
11228
13243
  private readonly now;
11229
13244
  constructor(options?: CompositionRuntimeEngineOptions);
@@ -11235,11 +13250,13 @@ declare class CompositionRuntimeEngine {
11235
13250
  private createLinkSnapshot;
11236
13251
  private applyBootstrapHydration;
11237
13252
  private materializeDerivedState;
13253
+ private validateComposition;
11238
13254
  private createDerivedDiagnostic;
11239
13255
  private clonePreviewWidgets;
11240
13256
  private cloneJson;
11241
13257
  private extractDerivedNodeKey;
11242
13258
  private appendDiagnosticTraceEntries;
13259
+ private createNestedWidgetEventBridgeDiagnostics;
11243
13260
  }
11244
13261
 
11245
13262
  interface CompositionRuntimeFacadeOptions {
@@ -11330,8 +13347,12 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11330
13347
  pageIdentity?: PageIdentity;
11331
13348
  /** Optional instance key for pages rendered multiple times. */
11332
13349
  componentInstanceId?: string;
13350
+ /** Enables a contextual authoring assistant entrypoint for the selected widget. */
13351
+ showWidgetAssistantButton: boolean;
11333
13352
  pageChange: EventEmitter<WidgetPageDefinition>;
11334
13353
  widgetEvent: EventEmitter<WidgetEventEnvelope>;
13354
+ widgetSelectionChange: EventEmitter<string | null>;
13355
+ widgetAssistantRequested: EventEmitter<string>;
11335
13356
  widgetDiagnosticsChange: EventEmitter<Record<string, WidgetResolutionDiagnostic>>;
11336
13357
  widgets: i0.WritableSignal<WidgetInstance[]>;
11337
13358
  renderedGroups: i0.WritableSignal<RenderedWidgetGroup[]>;
@@ -11350,7 +13371,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11350
13371
  private pageColumnCount;
11351
13372
  private activeTabs;
11352
13373
  private widgetDiagnostics;
11353
- private selectedCanvasWidgetKey;
13374
+ private selectedWidgetKey;
11354
13375
  private blockedCanvasWidgetKey;
11355
13376
  private canvasPreviewState;
11356
13377
  private canvasPreviewInvalidState;
@@ -11361,6 +13382,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11361
13382
  private persistenceReady;
11362
13383
  private warnedMissingKey;
11363
13384
  private runtimeEventSequence;
13385
+ private readonly widgetShellRenderCache;
11364
13386
  private readonly compositionFactory;
11365
13387
  private readonly compositionRuntime;
11366
13388
  private compositionDefinition?;
@@ -11372,6 +13394,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11372
13394
  private readonly route;
11373
13395
  private readonly conn;
11374
13396
  private readonly stateRuntime;
13397
+ private readonly nestedWidgetAccessor;
11375
13398
  private readonly settingsPanel;
11376
13399
  private readonly defaultShellEditor;
11377
13400
  private readonly defaultPageEditor;
@@ -11380,37 +13403,74 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11380
13403
  ngOnChanges(changes: SimpleChanges): void;
11381
13404
  onWidgetEvent(fromKey: string, evt: WidgetEventEnvelope): void;
11382
13405
  private applyWidgetInputPatchToPage;
13406
+ private resolveWidgetInputPatchNestedPath;
11383
13407
  private extractWidgetInputPatch;
11384
13408
  private buildStateRuntime;
11385
13409
  private bootstrapCompositionAdapter;
11386
13410
  private applyEditShellActions;
11387
- private withShellActions;
11388
13411
  private applyBootstrapCompositionHydration;
11389
13412
  private reportStateDiagnostics;
11390
13413
  private dispatchWidgetEventToComposition;
13414
+ private matchesRuntimeSourceRef;
13415
+ private matchesLegacyWidgetEventSource;
13416
+ private areNestedPathsEqual;
11391
13417
  private stateFromCompositionSnapshot;
11392
13418
  private applyCompositionWidgetDeliveries;
13419
+ private executeCompositionGlobalActionDeliveries;
13420
+ private resolveCompositionGlobalActionRef;
11393
13421
  private buildStateContext;
11394
13422
  private cloneStateValues;
11395
13423
  private cloneGrouping;
11396
13424
  private resolveShellTemplates;
13425
+ private enrichRuntimeWidgetInputs;
13426
+ private buildRichContentHostCapabilities;
13427
+ private dispatchRichContentAction;
13428
+ private isRichContentActionAvailable;
13429
+ private hasRichContentCapability;
11397
13430
  private resolveComponentBindingPath;
11398
13431
  private buildRuntimeEventId;
11399
- private shouldInjectEditShellActions;
11400
- private canOpenWidgetShellSettings;
13432
+ canOpenWidgetShellSettings(): boolean;
13433
+ canOpenWidgetComponentSettings(key: string): boolean;
13434
+ componentSettingsLabel(): string;
13435
+ componentSettingsTooltip(): string;
13436
+ widgetSettingsLabel(): string;
13437
+ widgetSettingsTooltip(): string;
13438
+ widgetAssistantLabel(): string;
13439
+ widgetAssistantTooltip(): string;
13440
+ requestWidgetAssistant(widgetKey: string): void;
13441
+ widgetRemoveLabel(): string;
13442
+ moreWidgetActionsLabel(): string;
13443
+ widgetContextToolbarLabel(widgetKey: string): string;
13444
+ widgetContextLabel(widget: WidgetInstance): string;
13445
+ widgetContextTooltip(widget: WidgetInstance): string;
13446
+ shouldRenderWidgetContextOverlay(widget: WidgetInstance): boolean;
13447
+ widgetShellForRender(widget: WidgetInstance): WidgetShellConfig | null | undefined;
13448
+ private resolveWidgetDisplayName;
13449
+ private shouldProjectWidgetHeaderActions;
13450
+ private hasVisibleWidgetShellHeader;
13451
+ private hasVisibleShellActions;
13452
+ private hasVisibleWindowActions;
13453
+ private buildProjectedWidgetShellActions;
13454
+ private widgetShellActionSignature;
13455
+ private isVisibleShellAction;
11401
13456
  private areStateValuesEqual;
11402
13457
  onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
11403
13458
  onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
11404
13459
  private handleSetInputCommand;
11405
13460
  private mergeOrder;
11406
13461
  private maybeExecuteMappedAction;
11407
- private maybeExecuteGlobalCommand;
11408
13462
  private resolveActionPayload;
11409
13463
  private resolveTemplate;
11410
13464
  private lookup;
11411
13465
  openWidgetShellSettings(key: string): void;
11412
13466
  openWidgetComponentSettings(key: string): void;
11413
13467
  private applyWidgetComponentInputs;
13468
+ confirmAndRemoveWidget(widgetKey: string): Promise<void>;
13469
+ removeSelectedWidget(): void;
13470
+ removeSelectedCanvasWidget(): void;
13471
+ private removeWidgetReferences;
13472
+ private linkReferencesWidget;
13473
+ private endpointReferencesWidget;
11414
13474
  openPageSettings(): void;
11415
13475
  private applyWidgetShell;
11416
13476
  private applyPageLayout;
@@ -11434,8 +13494,14 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11434
13494
  private resolveDeviceKind;
11435
13495
  isCanvasMode(): boolean;
11436
13496
  shouldAutoWireOutputs(widget: WidgetInstance | RenderedWidgetInstance): boolean;
11437
- selectCanvasWidget(widgetKey: string): void;
13497
+ private hasCompositionOutputLinks;
13498
+ selectWidget(widgetKey: string): void;
13499
+ selectWidgetFromHostEvent(widgetKey: string, event: Event): void;
11438
13500
  isCanvasWidgetSelected(widgetKey: string): boolean;
13501
+ isWidgetSelected(widgetKey: string): boolean;
13502
+ private shouldPreserveInnerWidgetInteraction;
13503
+ selectCanvasWidget(widgetKey: string): void;
13504
+ getPageSnapshot(): WidgetPageDefinition;
11439
13505
  isCanvasWidgetBlocked(widgetKey: string): boolean;
11440
13506
  canvasPreviewItem(): WidgetPageCanvasItem | null;
11441
13507
  canvasPreviewGridColumn(): string | null;
@@ -11505,7 +13571,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
11505
13571
  private sanitizeSegment;
11506
13572
  private assertNoLegacyConnections;
11507
13573
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetPageComponent, never>;
11508
- static ɵcmp: i0.ɵɵComponentDeclaration<DynamicWidgetPageComponent, "praxis-dynamic-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showPageSettingsButton": { "alias": "showPageSettingsButton"; "required": false; }; "shellEditorComponent": { "alias": "shellEditorComponent"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; }, { "pageChange": "pageChange"; "widgetEvent": "widgetEvent"; "widgetDiagnosticsChange": "widgetDiagnosticsChange"; }, never, never, true, never>;
13574
+ static ɵcmp: i0.ɵɵComponentDeclaration<DynamicWidgetPageComponent, "praxis-dynamic-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showPageSettingsButton": { "alias": "showPageSettingsButton"; "required": false; }; "shellEditorComponent": { "alias": "shellEditorComponent"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "showWidgetAssistantButton": { "alias": "showWidgetAssistantButton"; "required": false; }; }, { "pageChange": "pageChange"; "widgetEvent": "widgetEvent"; "widgetSelectionChange": "widgetSelectionChange"; "widgetAssistantRequested": "widgetAssistantRequested"; "widgetDiagnosticsChange": "widgetDiagnosticsChange"; }, never, never, true, never>;
11509
13575
  }
11510
13576
 
11511
13577
  /** Metadata for Praxis Dynamic Page component */
@@ -11515,7 +13581,7 @@ declare const PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA: ComponentDocMeta;
11515
13581
  */
11516
13582
  declare function providePraxisDynamicPageMetadata(): Provider;
11517
13583
 
11518
- declare class PraxisSurfaceHostComponent {
13584
+ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
11519
13585
  title?: string;
11520
13586
  subtitle?: string;
11521
13587
  icon?: string;
@@ -11527,6 +13593,11 @@ declare class PraxisSurfaceHostComponent {
11527
13593
  * modal/drawer hosts. Inline consumers may opt into rendering it again.
11528
13594
  */
11529
13595
  renderTitleInsideBody: boolean;
13596
+ private widgetLoader?;
13597
+ private renderQueued;
13598
+ ngAfterViewInit(): void;
13599
+ ngOnChanges(changes: SimpleChanges): void;
13600
+ private scheduleWidgetRender;
11530
13601
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
11531
13602
  static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, {}, never, never, true, never>;
11532
13603
  }
@@ -11650,7 +13721,7 @@ declare function normalizeFormConfig(config: FormConfig): FormConfig;
11650
13721
 
11651
13722
  /** Minimal metadata about the backend schema source. */
11652
13723
  interface SchemaMetaInfo {
11653
- /** API path used to resolve the schema (e.g., /api/employees/all or /filter) */
13724
+ /** API path used to resolve the schema (e.g., /api/employees/filter) */
11654
13725
  path: string;
11655
13726
  /** Operation used when fetching the schema (get|post) */
11656
13727
  operation: string;
@@ -11724,6 +13795,12 @@ interface SchemaIdParams {
11724
13795
  }
11725
13796
  declare function normalizePath(p: string): string;
11726
13797
  declare function buildSchemaId(params: SchemaIdParams): string;
13798
+ /**
13799
+ * Produces a deterministic, storage-safe segment for places that impose short
13800
+ * identifier limits. This must not replace the semantic schemaId stored in
13801
+ * payloads or metadata.
13802
+ */
13803
+ declare function buildSchemaIdStorageKeySegment(schemaId: string): string;
11727
13804
 
11728
13805
  interface FetchWithEtagParams {
11729
13806
  url: string;
@@ -11903,5 +13980,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
11903
13980
  /** Register a whitelist of allowed hook ids/patterns. */
11904
13981
  declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
11905
13982
 
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 };
13983
+ 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, buildPraxisEffectDistinctKey, 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, isPraxisRuntimeGlobalActionEffect, 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, normalizePraxisEffectPolicy, 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 };
13984
+ 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, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, 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, GlobalActionEndpointRef, 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, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, 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, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, 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 };