@praxisui/core 8.0.0-beta.7 → 8.0.0-beta.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +188 -1
- package/fesm2022/praxisui-core.mjs +16754 -10592
- package/package.json +12 -6
- package/{index.d.ts → types/praxisui-core.d.ts} +2550 -275
|
@@ -1,9 +1,10 @@
|
|
|
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
|
-
import { HttpHeaders, HttpContext, HttpClient, HttpParams,
|
|
6
|
-
import
|
|
5
|
+
import { HttpHeaders, HttpContext, HttpClient, HttpParams, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpInterceptorFn, HttpFeature, HttpFeatureKind, HttpContextToken } from '@angular/common/http';
|
|
6
|
+
import * as _praxisui_core from '@praxisui/core';
|
|
7
|
+
import { ValidationErrors, ValidatorFn, AsyncValidatorFn, FormGroup, AbstractControl, FormControl } from '@angular/forms';
|
|
7
8
|
import { ThemePalette, DateAdapter } from '@angular/material/core';
|
|
8
9
|
import { ActivatedRoute } from '@angular/router';
|
|
9
10
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
@@ -76,20 +77,250 @@ interface LocateRequest {
|
|
|
76
77
|
sort?: string[];
|
|
77
78
|
}
|
|
78
79
|
|
|
79
|
-
|
|
80
|
+
type OptionSourceType = 'RESOURCE_ENTITY' | 'DISTINCT_DIMENSION' | 'CATEGORICAL_BUCKET' | 'LIGHT_LOOKUP' | 'STATIC_CANONICAL';
|
|
81
|
+
type OptionSourceSearchMode = 'none' | 'starts-with' | 'contains' | 'exact';
|
|
82
|
+
type OptionSourceCachePolicy = 'none' | 'request-scope' | 'session-scope' | 'etag-aware';
|
|
83
|
+
type LookupOpenDetailMode = 'samePage' | 'newTab' | 'drawer' | 'modal' | 'route';
|
|
84
|
+
type LookupStatusTone = 'success' | 'warning' | 'danger' | 'neutral';
|
|
85
|
+
type LookupDialogSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
86
|
+
type LookupFilterFieldType = 'text' | 'enum' | 'date' | 'number' | 'reference';
|
|
87
|
+
type LookupFilterOperator = 'contains' | 'startsWith' | 'equals' | 'in' | 'before' | 'after' | 'between' | 'gt' | 'gte' | 'lt' | 'lte';
|
|
88
|
+
type EntityLookupSelectedLayout = 'card' | 'inline' | 'compact' | 'token';
|
|
89
|
+
type EntityLookupResultLayout = 'list' | 'denseList' | 'table' | 'card';
|
|
90
|
+
type EntityLookupDisplayPreset = 'compact' | 'rich' | 'directory' | 'status' | 'reference' | 'hierarchical';
|
|
91
|
+
type EntityLookupUsage = 'form' | 'filter' | 'table-cell' | 'dashboard' | 'wizard' | 'review';
|
|
92
|
+
type EntityLookupDensity = 'compact' | 'comfortable' | 'rich';
|
|
93
|
+
type EntityLookupDisplayFieldPresentation = 'text' | 'chip' | 'badge' | 'date' | 'currency' | 'metric';
|
|
94
|
+
interface EntityLookupDisplayFieldMetadata {
|
|
95
|
+
key?: string;
|
|
96
|
+
propertyPath?: string;
|
|
97
|
+
label?: string;
|
|
98
|
+
icon?: string;
|
|
99
|
+
presentation?: EntityLookupDisplayFieldPresentation | string;
|
|
100
|
+
tone?: LookupStatusTone | 'info' | string;
|
|
101
|
+
format?: string;
|
|
102
|
+
}
|
|
103
|
+
interface EntityLookupRichFieldMetadata extends EntityLookupDisplayFieldMetadata {
|
|
104
|
+
value?: unknown;
|
|
105
|
+
}
|
|
106
|
+
type EntityLookupSinglePayloadMode = 'id' | 'entityRef';
|
|
107
|
+
type EntityLookupMultiplePayloadMode = 'ids' | 'entityRefs';
|
|
108
|
+
type EntityLookupPayloadMode = EntityLookupSinglePayloadMode | EntityLookupMultiplePayloadMode;
|
|
109
|
+
interface EntityLookupCollectionMetadata {
|
|
110
|
+
multiple?: boolean;
|
|
111
|
+
maxSelections?: number;
|
|
112
|
+
}
|
|
113
|
+
interface LookupSelectionPolicyMetadata {
|
|
114
|
+
selectablePropertyPath?: string;
|
|
115
|
+
statusPropertyPath?: string;
|
|
116
|
+
allowedStatuses?: string[];
|
|
117
|
+
blockedStatuses?: string[];
|
|
118
|
+
allowRetainInvalidExistingValue?: boolean;
|
|
119
|
+
disabledReasonTemplate?: string;
|
|
120
|
+
validationMessageTemplate?: string;
|
|
121
|
+
}
|
|
122
|
+
interface LookupCapabilitiesMetadata {
|
|
123
|
+
filter?: boolean;
|
|
124
|
+
byIds?: boolean;
|
|
125
|
+
detail?: boolean;
|
|
126
|
+
create?: boolean;
|
|
127
|
+
edit?: boolean;
|
|
128
|
+
navigateToDetail?: boolean;
|
|
129
|
+
multiSelect?: boolean;
|
|
130
|
+
recent?: boolean;
|
|
131
|
+
favorites?: boolean;
|
|
132
|
+
auditSnapshot?: boolean;
|
|
133
|
+
}
|
|
134
|
+
interface LookupDetailMetadata {
|
|
135
|
+
hrefTemplate?: string;
|
|
136
|
+
routeTemplate?: string;
|
|
137
|
+
openDetailMode?: LookupOpenDetailMode;
|
|
138
|
+
kind?: 'surface' | 'route' | 'href' | string;
|
|
139
|
+
surfaceId?: string;
|
|
140
|
+
presentation?: 'modal' | 'drawer' | string;
|
|
141
|
+
preferredWidget?: string;
|
|
142
|
+
mode?: 'view' | 'edit' | 'create' | string;
|
|
143
|
+
}
|
|
144
|
+
interface LookupCreateMetadata {
|
|
145
|
+
hrefTemplate?: string;
|
|
146
|
+
routeTemplate?: string;
|
|
147
|
+
openMode?: LookupOpenDetailMode;
|
|
148
|
+
}
|
|
149
|
+
interface LookupFilterDefinitionMetadata {
|
|
150
|
+
field: string;
|
|
151
|
+
label?: string;
|
|
152
|
+
type: LookupFilterFieldType;
|
|
153
|
+
operators: LookupFilterOperator[];
|
|
154
|
+
defaultOperator?: LookupFilterOperator;
|
|
155
|
+
optionsSource?: string;
|
|
156
|
+
required?: boolean;
|
|
157
|
+
hidden?: boolean;
|
|
158
|
+
}
|
|
159
|
+
interface LookupSortOptionMetadata {
|
|
80
160
|
key: string;
|
|
161
|
+
field: string;
|
|
162
|
+
direction: 'asc' | 'desc';
|
|
163
|
+
label?: string;
|
|
164
|
+
}
|
|
165
|
+
interface LookupFilteringMetadata {
|
|
166
|
+
availableFilters?: LookupFilterDefinitionMetadata[];
|
|
167
|
+
defaultFilters?: Record<string, unknown[]>;
|
|
168
|
+
sortOptions?: LookupSortOptionMetadata[];
|
|
169
|
+
defaultSort?: string;
|
|
170
|
+
quickFilterFields?: string[];
|
|
171
|
+
searchPlaceholder?: string;
|
|
172
|
+
}
|
|
173
|
+
interface LookupDialogMetadata {
|
|
174
|
+
enabled?: boolean;
|
|
175
|
+
title?: string;
|
|
176
|
+
size?: LookupDialogSize;
|
|
177
|
+
previewPanel?: boolean;
|
|
178
|
+
allowColumnChooser?: boolean;
|
|
179
|
+
allowSavedViews?: boolean;
|
|
180
|
+
resultColumns?: LookupResultColumnMetadata[];
|
|
181
|
+
openActionLabel?: string;
|
|
182
|
+
applyActionLabel?: string;
|
|
183
|
+
cancelActionLabel?: string;
|
|
184
|
+
}
|
|
185
|
+
type LookupResultColumnKind = 'code' | 'label' | 'description' | 'status' | 'disabledReason' | 'custom';
|
|
186
|
+
interface LookupResultColumnMetadata {
|
|
187
|
+
field: string;
|
|
188
|
+
label?: string;
|
|
189
|
+
kind?: LookupResultColumnKind;
|
|
190
|
+
width?: string;
|
|
191
|
+
}
|
|
192
|
+
interface LookupFilterRequest {
|
|
193
|
+
field: string;
|
|
194
|
+
operator: LookupFilterOperator;
|
|
195
|
+
value: unknown;
|
|
196
|
+
}
|
|
197
|
+
interface OptionSourceFilterRequest<ID = string | number, FD = unknown> {
|
|
198
|
+
filter?: FD | null;
|
|
199
|
+
filters?: LookupFilterRequest[];
|
|
200
|
+
search?: string;
|
|
201
|
+
sort?: string;
|
|
202
|
+
includeIds?: ID[];
|
|
203
|
+
}
|
|
204
|
+
interface EntityLookupActionsMetadata {
|
|
205
|
+
showDetail?: boolean;
|
|
206
|
+
showChange?: boolean;
|
|
207
|
+
showCopyCode?: boolean;
|
|
208
|
+
showCopyId?: boolean;
|
|
209
|
+
showCreate?: boolean;
|
|
210
|
+
showClear?: boolean;
|
|
211
|
+
}
|
|
212
|
+
interface EntityLookupDisplayMetadata {
|
|
213
|
+
preset?: EntityLookupDisplayPreset | string;
|
|
214
|
+
usage?: EntityLookupUsage | string;
|
|
215
|
+
density?: EntityLookupDensity | string;
|
|
216
|
+
selectedLayout?: EntityLookupSelectedLayout;
|
|
217
|
+
resultLayout?: EntityLookupResultLayout;
|
|
218
|
+
primaryPropertyPath?: string;
|
|
219
|
+
fields?: EntityLookupDisplayFieldMetadata[];
|
|
220
|
+
secondaryPropertyPaths?: string[];
|
|
221
|
+
badgePropertyPaths?: string[];
|
|
222
|
+
avatarPropertyPath?: string;
|
|
223
|
+
showCode?: boolean;
|
|
224
|
+
showDescription?: boolean;
|
|
225
|
+
showStatus?: boolean;
|
|
226
|
+
showAvatar?: boolean;
|
|
227
|
+
showBadges?: boolean;
|
|
228
|
+
showDisabledReason?: boolean;
|
|
229
|
+
showResultCount?: boolean;
|
|
230
|
+
statusToneMap?: Record<string, LookupStatusTone>;
|
|
231
|
+
badgeKeys?: string[];
|
|
232
|
+
maxVisibleBadges?: number;
|
|
233
|
+
detailActionLabel?: string;
|
|
234
|
+
changeActionLabel?: string;
|
|
235
|
+
copyCodeActionLabel?: string;
|
|
236
|
+
copyIdActionLabel?: string;
|
|
237
|
+
createActionLabel?: string;
|
|
238
|
+
clearActionLabel?: string;
|
|
239
|
+
actions?: EntityLookupActionsMetadata;
|
|
240
|
+
}
|
|
241
|
+
interface EntityRef<ID = string | number> {
|
|
242
|
+
id: ID;
|
|
81
243
|
type?: string;
|
|
244
|
+
}
|
|
245
|
+
interface EntityLookupResultExtra {
|
|
246
|
+
code?: string;
|
|
247
|
+
description?: string;
|
|
248
|
+
status?: string;
|
|
249
|
+
statusLabel?: string;
|
|
250
|
+
statusTone?: LookupStatusTone;
|
|
251
|
+
selectable?: boolean;
|
|
252
|
+
disabledReason?: string;
|
|
253
|
+
detailHref?: string;
|
|
254
|
+
detailRoute?: string;
|
|
255
|
+
resourcePath?: string;
|
|
256
|
+
entityKey?: string;
|
|
257
|
+
richFields?: EntityLookupRichFieldMetadata[];
|
|
258
|
+
badges?: string[];
|
|
259
|
+
tags?: string[];
|
|
260
|
+
riskLevel?: string;
|
|
261
|
+
homologationStatus?: string;
|
|
262
|
+
[key: string]: unknown;
|
|
263
|
+
}
|
|
264
|
+
interface EntityLookupResult<ID = string | number> {
|
|
265
|
+
id: ID;
|
|
266
|
+
label: string;
|
|
267
|
+
extra?: EntityLookupResultExtra;
|
|
268
|
+
}
|
|
269
|
+
type EntityLookupResultState = 'selectable' | 'blocked' | 'legacy';
|
|
270
|
+
interface EntityLookupResultStateContext {
|
|
271
|
+
allowRetainInvalidExistingValue?: boolean;
|
|
272
|
+
}
|
|
273
|
+
interface OptionSourceMetadata {
|
|
274
|
+
key: string;
|
|
275
|
+
type?: OptionSourceType;
|
|
82
276
|
resourcePath?: string;
|
|
83
277
|
filterField?: string;
|
|
84
278
|
propertyPath?: string;
|
|
85
279
|
labelPropertyPath?: string;
|
|
86
280
|
valuePropertyPath?: string;
|
|
87
281
|
dependsOn?: string[];
|
|
282
|
+
entityKey?: string;
|
|
283
|
+
codePropertyPath?: string;
|
|
284
|
+
descriptionPropertyPaths?: string[];
|
|
285
|
+
statusPropertyPath?: string;
|
|
286
|
+
disabledPropertyPath?: string;
|
|
287
|
+
disabledReasonPropertyPath?: string;
|
|
288
|
+
searchPropertyPaths?: string[];
|
|
289
|
+
dependencyFilterMap?: Record<string, string>;
|
|
290
|
+
selectionPolicy?: LookupSelectionPolicyMetadata;
|
|
291
|
+
capabilities?: LookupCapabilitiesMetadata;
|
|
292
|
+
detail?: LookupDetailMetadata;
|
|
293
|
+
create?: LookupCreateMetadata;
|
|
294
|
+
display?: EntityLookupDisplayMetadata;
|
|
295
|
+
filtering?: LookupFilteringMetadata;
|
|
88
296
|
excludeSelfField?: boolean;
|
|
89
|
-
searchMode?:
|
|
297
|
+
searchMode?: OptionSourceSearchMode;
|
|
90
298
|
pageSize?: number;
|
|
91
299
|
includeIds?: boolean;
|
|
92
|
-
|
|
300
|
+
cachePolicy?: OptionSourceCachePolicy;
|
|
301
|
+
}
|
|
302
|
+
declare function isEntityLookupResultSelectable(result?: Pick<EntityLookupResult<any>, 'extra'> | null): boolean;
|
|
303
|
+
declare function isEntityLookupPayloadMode(value: unknown): value is EntityLookupPayloadMode;
|
|
304
|
+
declare function isEntityLookupSinglePayloadMode(value: unknown): value is EntityLookupSinglePayloadMode;
|
|
305
|
+
declare function isEntityLookupMultiplePayloadMode(value: unknown): value is EntityLookupMultiplePayloadMode;
|
|
306
|
+
declare function isLookupFilterFieldType(value: unknown): value is LookupFilterFieldType;
|
|
307
|
+
declare function isLookupFilterOperator(value: unknown): value is LookupFilterOperator;
|
|
308
|
+
declare function isLookupDialogSize(value: unknown): value is LookupDialogSize;
|
|
309
|
+
declare function normalizeLookupFilterRequest(filter: LookupFilterRequest): LookupFilterRequest;
|
|
310
|
+
declare function serializeOptionSourceFilterRequest<ID = string | number, FD = unknown>(filter: FD | null | undefined, options?: {
|
|
311
|
+
filters?: LookupFilterRequest[] | null;
|
|
312
|
+
search?: string | null;
|
|
313
|
+
sort?: string | null;
|
|
314
|
+
includeIds?: ID[] | null;
|
|
315
|
+
}): OptionSourceFilterRequest<ID, FD>;
|
|
316
|
+
declare function resolveEntityLookupPayloadMode(payloadMode: unknown, multiple?: boolean): EntityLookupPayloadMode;
|
|
317
|
+
declare function isEntityLookupPayloadModeCompatible(payloadMode: unknown, multiple?: boolean): boolean;
|
|
318
|
+
declare function serializeEntityLookupValueForPayload(value: unknown, options?: {
|
|
319
|
+
payloadMode?: unknown;
|
|
320
|
+
multiple?: boolean;
|
|
321
|
+
entityType?: string;
|
|
322
|
+
}): unknown;
|
|
323
|
+
declare function classifyEntityLookupResult(result?: Pick<EntityLookupResult<any>, 'extra'> | null, context?: EntityLookupResultStateContext): EntityLookupResultState;
|
|
93
324
|
|
|
94
325
|
type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
95
326
|
type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
|
|
@@ -146,12 +377,15 @@ interface RichBlockRuleSet {
|
|
|
146
377
|
expr: JsonLogicExpression;
|
|
147
378
|
}>;
|
|
148
379
|
}
|
|
380
|
+
type RichCapabilityMode = 'all' | 'any';
|
|
149
381
|
interface RichBlockBaseNode extends RichBlockRuleSet {
|
|
150
382
|
id?: string;
|
|
151
383
|
testId?: string;
|
|
152
384
|
className?: string;
|
|
153
385
|
style?: Record<string, string | number>;
|
|
154
386
|
bindings?: RichBlockContextConfig;
|
|
387
|
+
requiresCapabilities?: string[];
|
|
388
|
+
capabilityMode?: RichCapabilityMode;
|
|
155
389
|
}
|
|
156
390
|
interface RichTextNode extends RichBlockBaseNode {
|
|
157
391
|
type: 'text';
|
|
@@ -170,6 +404,14 @@ interface RichImageNode extends RichBlockBaseNode {
|
|
|
170
404
|
alt?: string;
|
|
171
405
|
altExpr?: string;
|
|
172
406
|
}
|
|
407
|
+
interface RichLinkNode extends RichBlockBaseNode {
|
|
408
|
+
type: 'link';
|
|
409
|
+
label?: string;
|
|
410
|
+
labelExpr?: string;
|
|
411
|
+
href: string;
|
|
412
|
+
target?: '_blank' | '_self';
|
|
413
|
+
rel?: string;
|
|
414
|
+
}
|
|
173
415
|
interface RichBadgeNode extends RichBlockBaseNode {
|
|
174
416
|
type: 'badge';
|
|
175
417
|
label?: string;
|
|
@@ -200,7 +442,23 @@ interface RichProgressNode extends RichBlockBaseNode {
|
|
|
200
442
|
labelExpr?: string;
|
|
201
443
|
showPercent?: boolean;
|
|
202
444
|
}
|
|
203
|
-
|
|
445
|
+
interface RichActionRef {
|
|
446
|
+
actionId: string;
|
|
447
|
+
payload?: unknown;
|
|
448
|
+
payloadExpr?: string;
|
|
449
|
+
availabilityExpr?: string;
|
|
450
|
+
confirmMessage?: string;
|
|
451
|
+
}
|
|
452
|
+
interface RichActionButtonNode extends RichBlockBaseNode {
|
|
453
|
+
type: 'actionButton';
|
|
454
|
+
label?: string;
|
|
455
|
+
labelExpr?: string;
|
|
456
|
+
icon?: string;
|
|
457
|
+
variant?: 'basic' | 'raised' | 'stroked' | 'flat';
|
|
458
|
+
color?: 'basic' | 'primary' | 'accent' | 'warn';
|
|
459
|
+
action: RichActionRef;
|
|
460
|
+
}
|
|
461
|
+
type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichLinkNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode | RichActionButtonNode;
|
|
204
462
|
interface RichComposeNode extends RichBlockBaseNode {
|
|
205
463
|
type: 'compose';
|
|
206
464
|
direction?: 'row' | 'column';
|
|
@@ -208,6 +466,39 @@ interface RichComposeNode extends RichBlockBaseNode {
|
|
|
208
466
|
wrap?: boolean;
|
|
209
467
|
items: RichPresenterNode[];
|
|
210
468
|
}
|
|
469
|
+
type RichCardVariant = 'plain' | 'outlined' | 'elevated' | 'filled' | 'transparent';
|
|
470
|
+
type RichCardTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
471
|
+
type RichCardSize = 'sm' | 'md' | 'lg';
|
|
472
|
+
type RichCardDensity = 'compact' | 'comfortable';
|
|
473
|
+
type RichCardOrientation = 'vertical' | 'horizontal';
|
|
474
|
+
type RichCardMediaKind = 'image' | 'video' | 'icon' | 'avatar';
|
|
475
|
+
type RichCardMediaPlacement = 'top' | 'leading' | 'trailing' | 'background';
|
|
476
|
+
interface RichCardMedia {
|
|
477
|
+
kind: RichCardMediaKind;
|
|
478
|
+
src?: string;
|
|
479
|
+
srcExpr?: string;
|
|
480
|
+
alt?: string;
|
|
481
|
+
altExpr?: string;
|
|
482
|
+
icon?: string;
|
|
483
|
+
label?: string;
|
|
484
|
+
labelExpr?: string;
|
|
485
|
+
placement?: RichCardMediaPlacement;
|
|
486
|
+
aspectRatio?: string;
|
|
487
|
+
}
|
|
488
|
+
type RichCardInteractionMode = 'none' | 'action' | 'selectable';
|
|
489
|
+
interface RichCardInteraction {
|
|
490
|
+
mode: RichCardInteractionMode;
|
|
491
|
+
action?: RichActionRef;
|
|
492
|
+
selected?: boolean;
|
|
493
|
+
selectedExpr?: string;
|
|
494
|
+
}
|
|
495
|
+
interface RichCardAccessibility {
|
|
496
|
+
role?: 'article' | 'group' | 'button';
|
|
497
|
+
ariaLabel?: string;
|
|
498
|
+
ariaLabelExpr?: string;
|
|
499
|
+
ariaLabelledBy?: string;
|
|
500
|
+
ariaDescribedBy?: string;
|
|
501
|
+
}
|
|
211
502
|
interface RichCardNode extends RichBlockBaseNode {
|
|
212
503
|
type: 'card';
|
|
213
504
|
title?: string;
|
|
@@ -215,6 +506,303 @@ interface RichCardNode extends RichBlockBaseNode {
|
|
|
215
506
|
subtitle?: string;
|
|
216
507
|
subtitleExpr?: string;
|
|
217
508
|
content: Array<RichPresenterNode | RichComposeNode>;
|
|
509
|
+
media?: RichCardMedia;
|
|
510
|
+
headerAction?: RichActionButtonNode;
|
|
511
|
+
header?: RichBlockNode[];
|
|
512
|
+
body?: RichBlockNode[];
|
|
513
|
+
footer?: RichBlockNode[];
|
|
514
|
+
actions?: RichActionButtonNode[];
|
|
515
|
+
aside?: RichBlockNode[];
|
|
516
|
+
variant?: RichCardVariant;
|
|
517
|
+
tone?: RichCardTone;
|
|
518
|
+
size?: RichCardSize;
|
|
519
|
+
density?: RichCardDensity;
|
|
520
|
+
orientation?: RichCardOrientation;
|
|
521
|
+
loading?: boolean;
|
|
522
|
+
loadingExpr?: string;
|
|
523
|
+
active?: boolean;
|
|
524
|
+
activeExpr?: string;
|
|
525
|
+
interaction?: RichCardInteraction;
|
|
526
|
+
accessibility?: RichCardAccessibility;
|
|
527
|
+
}
|
|
528
|
+
interface RichCalloutNode extends RichBlockBaseNode {
|
|
529
|
+
type: 'callout';
|
|
530
|
+
tone?: 'info' | 'success' | 'warning' | 'danger' | 'neutral';
|
|
531
|
+
icon?: string;
|
|
532
|
+
title?: string;
|
|
533
|
+
titleExpr?: string;
|
|
534
|
+
message?: string;
|
|
535
|
+
messageExpr?: string;
|
|
536
|
+
actions?: RichActionButtonNode[];
|
|
537
|
+
}
|
|
538
|
+
type RichCtaGroupLayout = 'stacked' | 'split';
|
|
539
|
+
interface RichCtaGroupNode extends RichBlockBaseNode {
|
|
540
|
+
type: 'ctaGroup';
|
|
541
|
+
title?: string;
|
|
542
|
+
titleExpr?: string;
|
|
543
|
+
subtitle?: string;
|
|
544
|
+
subtitleExpr?: string;
|
|
545
|
+
message?: string;
|
|
546
|
+
messageExpr?: string;
|
|
547
|
+
layout?: RichCtaGroupLayout;
|
|
548
|
+
actions: RichActionButtonNode[];
|
|
549
|
+
}
|
|
550
|
+
interface RichKeyValueItem {
|
|
551
|
+
id?: string;
|
|
552
|
+
label?: string;
|
|
553
|
+
labelExpr?: string;
|
|
554
|
+
value?: string;
|
|
555
|
+
valueExpr?: string;
|
|
556
|
+
badge?: string;
|
|
557
|
+
badgeExpr?: string;
|
|
558
|
+
icon?: string;
|
|
559
|
+
}
|
|
560
|
+
interface RichKeyValueListNode extends RichBlockBaseNode {
|
|
561
|
+
type: 'keyValueList';
|
|
562
|
+
title?: string;
|
|
563
|
+
titleExpr?: string;
|
|
564
|
+
layout?: 'stacked' | 'inline';
|
|
565
|
+
items: RichKeyValueItem[];
|
|
566
|
+
}
|
|
567
|
+
type RichPropertySheetColumns = 1 | 2;
|
|
568
|
+
type RichPropertySheetTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
569
|
+
interface RichPropertySheetItem {
|
|
570
|
+
id?: string;
|
|
571
|
+
label?: string;
|
|
572
|
+
labelExpr?: string;
|
|
573
|
+
value?: string;
|
|
574
|
+
valueExpr?: string;
|
|
575
|
+
hint?: string;
|
|
576
|
+
hintExpr?: string;
|
|
577
|
+
icon?: string;
|
|
578
|
+
tone?: RichPropertySheetTone;
|
|
579
|
+
}
|
|
580
|
+
interface RichPropertySheetNode extends RichBlockBaseNode {
|
|
581
|
+
type: 'propertySheet';
|
|
582
|
+
title?: string;
|
|
583
|
+
titleExpr?: string;
|
|
584
|
+
columns?: RichPropertySheetColumns;
|
|
585
|
+
items: RichPropertySheetItem[];
|
|
586
|
+
}
|
|
587
|
+
type RichStatGroupLayout = 'stacked' | 'inline' | 'grid';
|
|
588
|
+
type RichStatTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
589
|
+
interface RichStatItem {
|
|
590
|
+
id?: string;
|
|
591
|
+
label?: string;
|
|
592
|
+
labelExpr?: string;
|
|
593
|
+
value?: string;
|
|
594
|
+
valueExpr?: string;
|
|
595
|
+
caption?: string;
|
|
596
|
+
captionExpr?: string;
|
|
597
|
+
icon?: string;
|
|
598
|
+
tone?: RichStatTone;
|
|
599
|
+
}
|
|
600
|
+
interface RichStatGroupNode extends RichBlockBaseNode {
|
|
601
|
+
type: 'statGroup';
|
|
602
|
+
title?: string;
|
|
603
|
+
titleExpr?: string;
|
|
604
|
+
subtitle?: string;
|
|
605
|
+
subtitleExpr?: string;
|
|
606
|
+
layout?: RichStatGroupLayout;
|
|
607
|
+
items: RichStatItem[];
|
|
608
|
+
}
|
|
609
|
+
type RichTabsAppearance = 'underline' | 'pills';
|
|
610
|
+
interface RichTabsItem extends RichBlockRuleSet {
|
|
611
|
+
id?: string;
|
|
612
|
+
label?: string;
|
|
613
|
+
labelExpr?: string;
|
|
614
|
+
icon?: string;
|
|
615
|
+
badge?: string;
|
|
616
|
+
badgeExpr?: string;
|
|
617
|
+
requiresCapabilities?: string[];
|
|
618
|
+
capabilityMode?: RichCapabilityMode;
|
|
619
|
+
content: RichBlockNode[];
|
|
620
|
+
}
|
|
621
|
+
interface RichTabsNode extends RichBlockBaseNode {
|
|
622
|
+
type: 'tabs';
|
|
623
|
+
title?: string;
|
|
624
|
+
titleExpr?: string;
|
|
625
|
+
subtitle?: string;
|
|
626
|
+
subtitleExpr?: string;
|
|
627
|
+
appearance?: RichTabsAppearance;
|
|
628
|
+
defaultTabId?: string;
|
|
629
|
+
items: RichTabsItem[];
|
|
630
|
+
}
|
|
631
|
+
interface RichEmptyStateNode extends RichBlockBaseNode {
|
|
632
|
+
type: 'emptyState';
|
|
633
|
+
icon?: string;
|
|
634
|
+
title?: string;
|
|
635
|
+
titleExpr?: string;
|
|
636
|
+
message?: string;
|
|
637
|
+
messageExpr?: string;
|
|
638
|
+
actions?: RichActionButtonNode[];
|
|
639
|
+
}
|
|
640
|
+
interface RichRecordSummaryField {
|
|
641
|
+
id?: string;
|
|
642
|
+
label?: string;
|
|
643
|
+
labelExpr?: string;
|
|
644
|
+
value?: string;
|
|
645
|
+
valueExpr?: string;
|
|
646
|
+
}
|
|
647
|
+
interface RichRecordSummaryNode extends RichBlockBaseNode {
|
|
648
|
+
type: 'recordSummary';
|
|
649
|
+
title?: string;
|
|
650
|
+
titleExpr?: string;
|
|
651
|
+
subtitle?: string;
|
|
652
|
+
subtitleExpr?: string;
|
|
653
|
+
meta?: string;
|
|
654
|
+
metaExpr?: string;
|
|
655
|
+
fields: RichRecordSummaryField[];
|
|
656
|
+
actions?: RichActionButtonNode[];
|
|
657
|
+
}
|
|
658
|
+
type RichLookupResultStatus = 'idle' | 'resolved' | 'empty' | 'error';
|
|
659
|
+
interface RichLookupResultField {
|
|
660
|
+
id?: string;
|
|
661
|
+
label?: string;
|
|
662
|
+
labelExpr?: string;
|
|
663
|
+
value?: string;
|
|
664
|
+
valueExpr?: string;
|
|
665
|
+
hint?: string;
|
|
666
|
+
hintExpr?: string;
|
|
667
|
+
}
|
|
668
|
+
interface RichLookupResultNode extends RichBlockBaseNode {
|
|
669
|
+
type: 'lookupResult';
|
|
670
|
+
title?: string;
|
|
671
|
+
titleExpr?: string;
|
|
672
|
+
subtitle?: string;
|
|
673
|
+
subtitleExpr?: string;
|
|
674
|
+
status?: RichLookupResultStatus;
|
|
675
|
+
statusExpr?: string;
|
|
676
|
+
emptyText?: string;
|
|
677
|
+
emptyTextExpr?: string;
|
|
678
|
+
errorText?: string;
|
|
679
|
+
errorTextExpr?: string;
|
|
680
|
+
meta?: string;
|
|
681
|
+
metaExpr?: string;
|
|
682
|
+
fields: RichLookupResultField[];
|
|
683
|
+
actions?: RichActionButtonNode[];
|
|
684
|
+
}
|
|
685
|
+
interface RichLookupCardNode extends RichBlockBaseNode {
|
|
686
|
+
type: 'lookupCard';
|
|
687
|
+
title?: string;
|
|
688
|
+
titleExpr?: string;
|
|
689
|
+
subtitle?: string;
|
|
690
|
+
subtitleExpr?: string;
|
|
691
|
+
icon?: string;
|
|
692
|
+
status?: RichLookupResultStatus;
|
|
693
|
+
statusExpr?: string;
|
|
694
|
+
emptyText?: string;
|
|
695
|
+
emptyTextExpr?: string;
|
|
696
|
+
errorText?: string;
|
|
697
|
+
errorTextExpr?: string;
|
|
698
|
+
meta?: string;
|
|
699
|
+
metaExpr?: string;
|
|
700
|
+
ctaLabel?: string;
|
|
701
|
+
ctaLabelExpr?: string;
|
|
702
|
+
ctaIcon?: string;
|
|
703
|
+
variant?: 'basic' | 'raised' | 'stroked' | 'flat';
|
|
704
|
+
color?: 'basic' | 'primary' | 'accent' | 'warn';
|
|
705
|
+
action: RichActionRef;
|
|
706
|
+
fields: RichLookupResultField[];
|
|
707
|
+
secondaryActions?: RichActionButtonNode[];
|
|
708
|
+
}
|
|
709
|
+
interface RichRelatedRecordNode extends RichBlockBaseNode {
|
|
710
|
+
type: 'relatedRecord';
|
|
711
|
+
title?: string;
|
|
712
|
+
titleExpr?: string;
|
|
713
|
+
subtitle?: string;
|
|
714
|
+
subtitleExpr?: string;
|
|
715
|
+
relationLabel?: string;
|
|
716
|
+
relationLabelExpr?: string;
|
|
717
|
+
icon?: string;
|
|
718
|
+
meta?: string;
|
|
719
|
+
metaExpr?: string;
|
|
720
|
+
ctaLabel?: string;
|
|
721
|
+
ctaLabelExpr?: string;
|
|
722
|
+
ctaIcon?: string;
|
|
723
|
+
variant?: 'basic' | 'raised' | 'stroked' | 'flat';
|
|
724
|
+
color?: 'basic' | 'primary' | 'accent' | 'warn';
|
|
725
|
+
action?: RichActionRef;
|
|
726
|
+
fields: RichLookupResultField[];
|
|
727
|
+
secondaryActions?: RichActionButtonNode[];
|
|
728
|
+
}
|
|
729
|
+
interface RichActionCardNode extends RichBlockBaseNode {
|
|
730
|
+
type: 'actionCard';
|
|
731
|
+
title?: string;
|
|
732
|
+
titleExpr?: string;
|
|
733
|
+
subtitle?: string;
|
|
734
|
+
subtitleExpr?: string;
|
|
735
|
+
message?: string;
|
|
736
|
+
messageExpr?: string;
|
|
737
|
+
icon?: string;
|
|
738
|
+
meta?: string;
|
|
739
|
+
metaExpr?: string;
|
|
740
|
+
ctaLabel?: string;
|
|
741
|
+
ctaLabelExpr?: string;
|
|
742
|
+
ctaIcon?: string;
|
|
743
|
+
variant?: 'basic' | 'raised' | 'stroked' | 'flat';
|
|
744
|
+
color?: 'basic' | 'primary' | 'accent' | 'warn';
|
|
745
|
+
action: RichActionRef;
|
|
746
|
+
secondaryActions?: RichActionButtonNode[];
|
|
747
|
+
}
|
|
748
|
+
interface RichFormLauncherNode extends RichBlockBaseNode {
|
|
749
|
+
type: 'formLauncher';
|
|
750
|
+
title?: string;
|
|
751
|
+
titleExpr?: string;
|
|
752
|
+
subtitle?: string;
|
|
753
|
+
subtitleExpr?: string;
|
|
754
|
+
description?: string;
|
|
755
|
+
descriptionExpr?: string;
|
|
756
|
+
icon?: string;
|
|
757
|
+
formId?: string;
|
|
758
|
+
ctaLabel?: string;
|
|
759
|
+
ctaLabelExpr?: string;
|
|
760
|
+
ctaIcon?: string;
|
|
761
|
+
variant?: 'basic' | 'raised' | 'stroked' | 'flat';
|
|
762
|
+
color?: 'basic' | 'primary' | 'accent' | 'warn';
|
|
763
|
+
action: RichActionRef;
|
|
764
|
+
secondaryActions?: RichActionButtonNode[];
|
|
765
|
+
}
|
|
766
|
+
interface RichCollapsibleCardNode extends RichBlockBaseNode {
|
|
767
|
+
type: 'collapsibleCard';
|
|
768
|
+
title?: string;
|
|
769
|
+
titleExpr?: string;
|
|
770
|
+
subtitle?: string;
|
|
771
|
+
subtitleExpr?: string;
|
|
772
|
+
icon?: string;
|
|
773
|
+
defaultExpanded?: boolean;
|
|
774
|
+
actions?: RichActionButtonNode[];
|
|
775
|
+
content: RichBlockNode[];
|
|
776
|
+
}
|
|
777
|
+
interface RichDisclosureNode extends RichBlockBaseNode {
|
|
778
|
+
type: 'disclosure';
|
|
779
|
+
title?: string;
|
|
780
|
+
titleExpr?: string;
|
|
781
|
+
subtitle?: string;
|
|
782
|
+
subtitleExpr?: string;
|
|
783
|
+
icon?: string;
|
|
784
|
+
appearance?: 'plain' | 'card';
|
|
785
|
+
defaultExpanded?: boolean;
|
|
786
|
+
actions?: RichActionButtonNode[];
|
|
787
|
+
content: RichBlockNode[];
|
|
788
|
+
}
|
|
789
|
+
interface RichAccordionItem {
|
|
790
|
+
id?: string;
|
|
791
|
+
title?: string;
|
|
792
|
+
titleExpr?: string;
|
|
793
|
+
subtitle?: string;
|
|
794
|
+
subtitleExpr?: string;
|
|
795
|
+
icon?: string;
|
|
796
|
+
defaultExpanded?: boolean;
|
|
797
|
+
actions?: RichActionButtonNode[];
|
|
798
|
+
content: RichBlockNode[];
|
|
799
|
+
}
|
|
800
|
+
interface RichAccordionNode extends RichBlockBaseNode {
|
|
801
|
+
type: 'accordion';
|
|
802
|
+
title?: string;
|
|
803
|
+
titleExpr?: string;
|
|
804
|
+
multi?: boolean;
|
|
805
|
+
items: RichAccordionItem[];
|
|
218
806
|
}
|
|
219
807
|
interface RichMediaBlockNode extends RichBlockBaseNode {
|
|
220
808
|
type: 'mediaBlock';
|
|
@@ -232,16 +820,37 @@ interface RichTimelineItem {
|
|
|
232
820
|
subtitleExpr?: string;
|
|
233
821
|
meta?: string;
|
|
234
822
|
metaExpr?: string;
|
|
823
|
+
opposite?: string;
|
|
824
|
+
oppositeExpr?: string;
|
|
235
825
|
icon?: string;
|
|
236
826
|
iconExpr?: string;
|
|
237
827
|
badge?: string;
|
|
238
828
|
badgeExpr?: string;
|
|
239
|
-
|
|
829
|
+
markerColor?: RichTimelineColor;
|
|
830
|
+
markerStyle?: RichTimelineMarkerStyle;
|
|
831
|
+
connectorColor?: RichTimelineColor;
|
|
832
|
+
connectorVariant?: RichTimelineConnectorVariant;
|
|
833
|
+
}
|
|
834
|
+
type RichTimelinePosition = 'left' | 'right' | 'alternate' | 'alternate-reverse';
|
|
835
|
+
type RichTimelineOrientation = 'vertical' | 'horizontal';
|
|
836
|
+
type RichTimelineOrder = 'normal' | 'reverse';
|
|
837
|
+
type RichTimelineConnectorVariant = 'solid' | 'dashed' | 'none';
|
|
838
|
+
type RichTimelineMarkerVariant = 'dot' | 'icon' | 'number';
|
|
839
|
+
type RichTimelineMarkerStyle = 'filled' | 'outlined';
|
|
840
|
+
type RichTimelineColor = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'error' | 'info' | 'neutral';
|
|
240
841
|
interface RichTimelineNode extends RichBlockBaseNode {
|
|
241
842
|
type: 'timeline';
|
|
242
843
|
title?: string;
|
|
243
844
|
titleExpr?: string;
|
|
244
845
|
emptyText?: string;
|
|
846
|
+
orientation?: RichTimelineOrientation;
|
|
847
|
+
order?: RichTimelineOrder;
|
|
848
|
+
position?: RichTimelinePosition;
|
|
849
|
+
connectorVariant?: RichTimelineConnectorVariant;
|
|
850
|
+
connectorColor?: RichTimelineColor;
|
|
851
|
+
markerVariant?: RichTimelineMarkerVariant;
|
|
852
|
+
markerColor?: RichTimelineColor;
|
|
853
|
+
markerStyle?: RichTimelineMarkerStyle;
|
|
245
854
|
items: RichTimelineItem[];
|
|
246
855
|
}
|
|
247
856
|
type CorePresetKind = 'surface-open' | 'widget-page-layout' | 'widget-page-theme' | 'editorial-theme' | 'editorial-compliance' | 'editorial-solution' | 'rich-block';
|
|
@@ -271,6 +880,13 @@ interface CorePresetDiscoveryRegistry {
|
|
|
271
880
|
}
|
|
272
881
|
interface RichBlockHostCapabilities {
|
|
273
882
|
dispatchAction?(actionId: string, payload?: unknown): void | Promise<void>;
|
|
883
|
+
confirmAction?(request: {
|
|
884
|
+
actionId: string;
|
|
885
|
+
message: string;
|
|
886
|
+
payload?: unknown;
|
|
887
|
+
}): boolean | Promise<boolean>;
|
|
888
|
+
isActionAvailable?(actionId: string): boolean;
|
|
889
|
+
hasCapability?(capabilityId: string): boolean;
|
|
274
890
|
resolveEmbed?(kind: 'component' | 'templateRef' | 'formRef' | 'tableRef' | 'chartRef', ref: string, inputs?: Record<string, unknown>): unknown;
|
|
275
891
|
resolvePreset?(ref: CorePresetRef): unknown;
|
|
276
892
|
loadData?(request: {
|
|
@@ -283,7 +899,7 @@ interface RichBlockHostCapabilities {
|
|
|
283
899
|
onLoadError?: 'hide' | 'error' | 'placeholder';
|
|
284
900
|
};
|
|
285
901
|
}
|
|
286
|
-
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichMediaBlockNode | RichTimelineNode;
|
|
902
|
+
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
|
|
287
903
|
type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
|
|
288
904
|
interface RichContentDocument {
|
|
289
905
|
kind: 'praxis.rich-content';
|
|
@@ -293,6 +909,372 @@ interface RichContentDocument {
|
|
|
293
909
|
}
|
|
294
910
|
declare function createEmptyRichContentDocument(): RichContentDocument;
|
|
295
911
|
|
|
912
|
+
type GlobalActionResult = {
|
|
913
|
+
success: boolean;
|
|
914
|
+
data?: any;
|
|
915
|
+
error?: string;
|
|
916
|
+
};
|
|
917
|
+
interface NavigationOpenRoutePayload {
|
|
918
|
+
path: string;
|
|
919
|
+
query?: Record<string, string | number | boolean | null | undefined>;
|
|
920
|
+
fragment?: string;
|
|
921
|
+
replaceUrl?: boolean;
|
|
922
|
+
state?: Record<string, unknown>;
|
|
923
|
+
}
|
|
924
|
+
interface GlobalActionRef {
|
|
925
|
+
actionId: string;
|
|
926
|
+
payload?: any;
|
|
927
|
+
payloadExpr?: string;
|
|
928
|
+
meta?: {
|
|
929
|
+
label?: string;
|
|
930
|
+
icon?: string;
|
|
931
|
+
emitLocal?: boolean;
|
|
932
|
+
confirmation?: any;
|
|
933
|
+
[key: string]: any;
|
|
934
|
+
};
|
|
935
|
+
}
|
|
936
|
+
type GlobalActionContext = {
|
|
937
|
+
sourceId?: string;
|
|
938
|
+
widgetKey?: string;
|
|
939
|
+
output?: string;
|
|
940
|
+
payload?: any;
|
|
941
|
+
pageContext?: Record<string, any> | null;
|
|
942
|
+
meta?: Record<string, any>;
|
|
943
|
+
runtime?: {
|
|
944
|
+
row?: any;
|
|
945
|
+
item?: any;
|
|
946
|
+
selection?: any;
|
|
947
|
+
formData?: any;
|
|
948
|
+
value?: any;
|
|
949
|
+
state?: any;
|
|
950
|
+
};
|
|
951
|
+
};
|
|
952
|
+
type GlobalActionHandler = (payload?: any, context?: GlobalActionContext) => Promise<GlobalActionResult> | GlobalActionResult;
|
|
953
|
+
interface GlobalActionHandlerEntry {
|
|
954
|
+
id: string;
|
|
955
|
+
handler: GlobalActionHandler;
|
|
956
|
+
}
|
|
957
|
+
interface GlobalDialogService {
|
|
958
|
+
alert: (payload: {
|
|
959
|
+
title?: string;
|
|
960
|
+
message?: string;
|
|
961
|
+
okLabel?: string;
|
|
962
|
+
variant?: string;
|
|
963
|
+
}) => Promise<any> | any;
|
|
964
|
+
confirm: (payload: {
|
|
965
|
+
title?: string;
|
|
966
|
+
message?: string;
|
|
967
|
+
confirmLabel?: string;
|
|
968
|
+
cancelLabel?: string;
|
|
969
|
+
type?: 'danger' | 'warning' | 'info';
|
|
970
|
+
}) => Promise<boolean> | boolean;
|
|
971
|
+
prompt: (payload: {
|
|
972
|
+
title?: string;
|
|
973
|
+
message?: string;
|
|
974
|
+
placeholder?: string;
|
|
975
|
+
defaultValue?: string;
|
|
976
|
+
okLabel?: string;
|
|
977
|
+
cancelLabel?: string;
|
|
978
|
+
}) => Promise<any> | any;
|
|
979
|
+
open: (payload: {
|
|
980
|
+
componentId?: string;
|
|
981
|
+
inputs?: any;
|
|
982
|
+
size?: any;
|
|
983
|
+
data?: any;
|
|
984
|
+
}) => Promise<any> | any;
|
|
985
|
+
}
|
|
986
|
+
interface GlobalToastService {
|
|
987
|
+
success: (message: string, opts?: any) => void;
|
|
988
|
+
error: (message: string, opts?: any) => void;
|
|
989
|
+
}
|
|
990
|
+
interface GlobalAnalyticsService {
|
|
991
|
+
track: (eventName: string, payload?: any) => void;
|
|
992
|
+
}
|
|
993
|
+
interface GlobalApiClient {
|
|
994
|
+
get: (url: string, params?: Record<string, any>) => Promise<any> | any;
|
|
995
|
+
post: (url: string, body?: any) => Promise<any> | any;
|
|
996
|
+
patch: (url: string, body?: any) => Promise<any> | any;
|
|
997
|
+
}
|
|
998
|
+
interface GlobalRouteGuardResolver {
|
|
999
|
+
resolve: (guardId: string) => any;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
type PraxisExportFormat = 'excel' | 'pdf' | 'csv' | 'json' | 'print';
|
|
1003
|
+
type PraxisExportScope = 'auto' | 'selected' | 'filtered' | 'currentPage' | 'all';
|
|
1004
|
+
type PraxisCollectionComponentType = 'table' | 'list' | string;
|
|
1005
|
+
type PraxisCollectionSelectionMode = 'none' | 'single' | 'multiple';
|
|
1006
|
+
type PraxisExportSortDirection = 'asc' | 'desc';
|
|
1007
|
+
interface PraxisCollectionSelectionState<T = unknown> {
|
|
1008
|
+
mode: PraxisCollectionSelectionMode;
|
|
1009
|
+
keyField?: string;
|
|
1010
|
+
selectedKeys?: Array<string | number>;
|
|
1011
|
+
selectedItems?: T[];
|
|
1012
|
+
allMatchingSelected?: boolean;
|
|
1013
|
+
excludedKeys?: Array<string | number>;
|
|
1014
|
+
}
|
|
1015
|
+
interface PraxisCollectionExportLocalization {
|
|
1016
|
+
locale?: string;
|
|
1017
|
+
timeZone?: string;
|
|
1018
|
+
}
|
|
1019
|
+
interface PraxisCollectionExportFieldPresentation {
|
|
1020
|
+
semanticType?: string;
|
|
1021
|
+
format?: string;
|
|
1022
|
+
currency?: string;
|
|
1023
|
+
locale?: string;
|
|
1024
|
+
timeZone?: string;
|
|
1025
|
+
trueLabel?: string;
|
|
1026
|
+
falseLabel?: string;
|
|
1027
|
+
nullDisplay?: string;
|
|
1028
|
+
valueMapping?: Record<string, string>;
|
|
1029
|
+
}
|
|
1030
|
+
interface PraxisCollectionExportCsvOptions {
|
|
1031
|
+
delimiter?: ',' | ';' | '|' | '\t' | string;
|
|
1032
|
+
encoding?: 'utf-8' | 'utf-16' | 'iso-8859-1' | string;
|
|
1033
|
+
includeBom?: boolean;
|
|
1034
|
+
lineEnding?: 'crlf' | 'lf' | string;
|
|
1035
|
+
excelCompatibility?: boolean;
|
|
1036
|
+
includeSepDirective?: boolean;
|
|
1037
|
+
}
|
|
1038
|
+
interface PraxisCollectionExportExcelOptions {
|
|
1039
|
+
sheetName?: string;
|
|
1040
|
+
freezeHeaders?: boolean;
|
|
1041
|
+
autoFitColumns?: boolean;
|
|
1042
|
+
typedCells?: boolean;
|
|
1043
|
+
includeFormulas?: boolean;
|
|
1044
|
+
}
|
|
1045
|
+
interface PraxisCollectionExportFormatOptions {
|
|
1046
|
+
csv?: PraxisCollectionExportCsvOptions;
|
|
1047
|
+
excel?: PraxisCollectionExportExcelOptions;
|
|
1048
|
+
}
|
|
1049
|
+
interface PraxisCollectionExportField<T = unknown> {
|
|
1050
|
+
key: string;
|
|
1051
|
+
label?: string;
|
|
1052
|
+
visible?: boolean;
|
|
1053
|
+
exportable?: boolean;
|
|
1054
|
+
type?: string;
|
|
1055
|
+
valuePath?: string;
|
|
1056
|
+
format?: string;
|
|
1057
|
+
presentation?: PraxisCollectionExportFieldPresentation;
|
|
1058
|
+
valueGetter?: (item: T) => unknown;
|
|
1059
|
+
formatter?: (value: unknown, item: T) => unknown;
|
|
1060
|
+
}
|
|
1061
|
+
interface PraxisCollectionSortDescriptor {
|
|
1062
|
+
field: string;
|
|
1063
|
+
direction: PraxisExportSortDirection;
|
|
1064
|
+
}
|
|
1065
|
+
interface PraxisCollectionPaginationState {
|
|
1066
|
+
pageIndex?: number;
|
|
1067
|
+
pageNumber?: number;
|
|
1068
|
+
pageSize?: number;
|
|
1069
|
+
totalItems?: number;
|
|
1070
|
+
}
|
|
1071
|
+
interface PraxisCollectionExportSource<T = unknown> {
|
|
1072
|
+
loadedItems?: T[];
|
|
1073
|
+
resourcePath?: string;
|
|
1074
|
+
query?: Record<string, unknown>;
|
|
1075
|
+
filters?: unknown;
|
|
1076
|
+
sort?: PraxisCollectionSortDescriptor[] | unknown;
|
|
1077
|
+
pagination?: PraxisCollectionPaginationState | unknown;
|
|
1078
|
+
}
|
|
1079
|
+
interface PraxisCollectionExportRequest<T = unknown> extends PraxisCollectionExportSource<T> {
|
|
1080
|
+
componentType: PraxisCollectionComponentType;
|
|
1081
|
+
componentId?: string;
|
|
1082
|
+
format: PraxisExportFormat;
|
|
1083
|
+
scope: PraxisExportScope;
|
|
1084
|
+
selection?: PraxisCollectionSelectionState<T>;
|
|
1085
|
+
fields?: PraxisCollectionExportField<T>[];
|
|
1086
|
+
includeHeaders?: boolean;
|
|
1087
|
+
applyFormatting?: boolean;
|
|
1088
|
+
maxRows?: number;
|
|
1089
|
+
fileName?: string;
|
|
1090
|
+
formatOptions?: PraxisCollectionExportFormatOptions;
|
|
1091
|
+
localization?: PraxisCollectionExportLocalization;
|
|
1092
|
+
metadata?: Record<string, unknown>;
|
|
1093
|
+
}
|
|
1094
|
+
interface PraxisCollectionExportResult {
|
|
1095
|
+
status: 'completed' | 'deferred';
|
|
1096
|
+
format: PraxisExportFormat;
|
|
1097
|
+
scope: PraxisExportScope;
|
|
1098
|
+
fileName?: string;
|
|
1099
|
+
mimeType?: string;
|
|
1100
|
+
content?: string | Blob;
|
|
1101
|
+
downloadUrl?: string;
|
|
1102
|
+
jobId?: string;
|
|
1103
|
+
rowCount?: number;
|
|
1104
|
+
warnings?: string[];
|
|
1105
|
+
metadata?: Record<string, unknown>;
|
|
1106
|
+
}
|
|
1107
|
+
interface PraxisCollectionExportProvider {
|
|
1108
|
+
exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportResult | Promise<PraxisCollectionExportResult>;
|
|
1109
|
+
}
|
|
1110
|
+
interface PraxisExportSecurityPolicy {
|
|
1111
|
+
escapeFormulaValues: boolean;
|
|
1112
|
+
formulaPrefixes: readonly string[];
|
|
1113
|
+
formulaEscapePrefix: string;
|
|
1114
|
+
}
|
|
1115
|
+
declare const PRAXIS_EXPORT_FORMULA_PREFIXES: readonly ["=", "+", "-", "@", "\t", "\r"];
|
|
1116
|
+
declare const PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY: PraxisExportSecurityPolicy;
|
|
1117
|
+
declare function resolvePraxisExportScope<T>(request: PraxisCollectionExportRequest<T>): Exclude<PraxisExportScope, 'auto'>;
|
|
1118
|
+
declare function resolvePraxisCollectionExportItems<T>(request: PraxisCollectionExportRequest<T>): T[];
|
|
1119
|
+
declare function resolvePraxisExportFields<T>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportField<T>[];
|
|
1120
|
+
declare function readPraxisExportValue(item: unknown, path: string): unknown;
|
|
1121
|
+
declare function escapePraxisExportCell(value: unknown, policy?: PraxisExportSecurityPolicy): string;
|
|
1122
|
+
declare function serializePraxisCollectionToCsv<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): string;
|
|
1123
|
+
declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExportRequest<T>): string;
|
|
1124
|
+
declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
|
|
1125
|
+
declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
|
|
1126
|
+
|
|
1127
|
+
type PraxisRuntimeEffectTrigger = 'on-condition-enter' | 'on-value-change' | 'while-true';
|
|
1128
|
+
interface PraxisEffectPolicy {
|
|
1129
|
+
trigger?: PraxisRuntimeEffectTrigger;
|
|
1130
|
+
distinct?: boolean;
|
|
1131
|
+
distinctBy?: string;
|
|
1132
|
+
debounceMs?: number;
|
|
1133
|
+
missingValuePolicy?: 'propagate-undefined' | 'skip' | 'use-default';
|
|
1134
|
+
errorPolicy?: 'diagnostic' | 'drop' | 'halt-page';
|
|
1135
|
+
runOnInitialEvaluation?: boolean;
|
|
1136
|
+
}
|
|
1137
|
+
interface PraxisRuntimeConditionalEffectRule<TEffect = unknown> extends PraxisConditionalRule<JsonLogicExpression | null> {
|
|
1138
|
+
id?: string;
|
|
1139
|
+
effects: TEffect[];
|
|
1140
|
+
policy?: PraxisEffectPolicy;
|
|
1141
|
+
priority?: number;
|
|
1142
|
+
enabled?: boolean;
|
|
1143
|
+
description?: string;
|
|
1144
|
+
}
|
|
1145
|
+
interface PraxisRuntimeGlobalActionEffect {
|
|
1146
|
+
id?: string;
|
|
1147
|
+
kind: 'global-action';
|
|
1148
|
+
globalAction: GlobalActionRef;
|
|
1149
|
+
}
|
|
1150
|
+
interface PraxisConditionalEffectDiagnostic {
|
|
1151
|
+
ruleId?: string;
|
|
1152
|
+
effectId?: string;
|
|
1153
|
+
code: 'missing-effect' | 'invalid-effect' | 'invalid-condition' | 'policy-blocked' | 'execution-failed';
|
|
1154
|
+
details?: string[];
|
|
1155
|
+
}
|
|
1156
|
+
interface PraxisEffectDistinctKeyInput {
|
|
1157
|
+
componentId?: string;
|
|
1158
|
+
ruleId?: string;
|
|
1159
|
+
effectId?: string;
|
|
1160
|
+
actionId?: string;
|
|
1161
|
+
contextKey?: string;
|
|
1162
|
+
distinctBy?: string;
|
|
1163
|
+
value?: unknown;
|
|
1164
|
+
}
|
|
1165
|
+
declare function isPraxisRuntimeGlobalActionEffect(value: unknown): value is PraxisRuntimeGlobalActionEffect;
|
|
1166
|
+
declare function normalizePraxisEffectPolicy(policy: PraxisEffectPolicy | null | undefined): PraxisEffectPolicy;
|
|
1167
|
+
declare function buildPraxisEffectDistinctKey(input: PraxisEffectDistinctKeyInput): string;
|
|
1168
|
+
|
|
1169
|
+
/**
|
|
1170
|
+
* Contratos compartilhados de discovery semantico consumidos pelo runtime Angular.
|
|
1171
|
+
*
|
|
1172
|
+
* `resourcePath` continua sendo o endereco operacional do recurso.
|
|
1173
|
+
* `resourceKey` representa a identidade semantica estavel devolvida pelo backend para
|
|
1174
|
+
* surfaces, actions e capabilities.
|
|
1175
|
+
*
|
|
1176
|
+
* O runtime usa `resourceKey` para preservar contexto semantico e gerar ids estaveis de
|
|
1177
|
+
* abertura, enquanto `resourcePath`, `path`, `method` e `schemaUrl` seguem responsaveis pelo
|
|
1178
|
+
* comportamento operacional.
|
|
1179
|
+
*/
|
|
1180
|
+
|
|
1181
|
+
interface ResourceAvailabilityDecision {
|
|
1182
|
+
allowed: boolean;
|
|
1183
|
+
reason?: string | null;
|
|
1184
|
+
metadata?: Record<string, any>;
|
|
1185
|
+
}
|
|
1186
|
+
type ResourceSurfaceKind = 'FORM' | 'PARTIAL_FORM' | 'VIEW' | 'READ_PROJECTION';
|
|
1187
|
+
type ResourceSurfaceScope = 'COLLECTION' | 'ITEM';
|
|
1188
|
+
type ResourceActionScope = 'COLLECTION' | 'ITEM';
|
|
1189
|
+
type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
|
|
1190
|
+
type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
|
|
1191
|
+
type ResourceCapabilityOperationId = ResourceCrudOperationId | 'export' | string;
|
|
1192
|
+
type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
|
|
1193
|
+
interface ResourceSurfaceCatalogItem {
|
|
1194
|
+
id: string;
|
|
1195
|
+
resourceKey: string;
|
|
1196
|
+
kind: ResourceSurfaceKind;
|
|
1197
|
+
scope: ResourceSurfaceScope;
|
|
1198
|
+
title: string;
|
|
1199
|
+
description?: string | null;
|
|
1200
|
+
intent?: string | null;
|
|
1201
|
+
operationId: string;
|
|
1202
|
+
path: string;
|
|
1203
|
+
method: string;
|
|
1204
|
+
schemaId: string;
|
|
1205
|
+
schemaUrl: string;
|
|
1206
|
+
availability: ResourceAvailabilityDecision;
|
|
1207
|
+
order: number;
|
|
1208
|
+
tags: string[];
|
|
1209
|
+
}
|
|
1210
|
+
interface ResourceSurfaceCatalogResponse {
|
|
1211
|
+
resourceKey: string;
|
|
1212
|
+
resourcePath: string;
|
|
1213
|
+
group?: string | null;
|
|
1214
|
+
resourceId?: string | number | null;
|
|
1215
|
+
surfaces: ResourceSurfaceCatalogItem[];
|
|
1216
|
+
}
|
|
1217
|
+
interface ResourceActionCatalogItem {
|
|
1218
|
+
id: string;
|
|
1219
|
+
resourceKey: string;
|
|
1220
|
+
scope: ResourceActionScope;
|
|
1221
|
+
title: string;
|
|
1222
|
+
description?: string | null;
|
|
1223
|
+
operationId: string;
|
|
1224
|
+
path: string;
|
|
1225
|
+
method: string;
|
|
1226
|
+
requestSchemaId?: string | null;
|
|
1227
|
+
requestSchemaUrl?: string | null;
|
|
1228
|
+
responseSchemaId?: string | null;
|
|
1229
|
+
responseSchemaUrl?: string | null;
|
|
1230
|
+
availability: ResourceAvailabilityDecision;
|
|
1231
|
+
order: number;
|
|
1232
|
+
successMessage?: string | null;
|
|
1233
|
+
tags: string[];
|
|
1234
|
+
}
|
|
1235
|
+
interface ResourceActionCatalogResponse {
|
|
1236
|
+
resourceKey: string;
|
|
1237
|
+
resourcePath: string;
|
|
1238
|
+
group?: string | null;
|
|
1239
|
+
resourceId?: string | number | null;
|
|
1240
|
+
actions: ResourceActionCatalogItem[];
|
|
1241
|
+
}
|
|
1242
|
+
interface ResourceCapabilityOperation {
|
|
1243
|
+
id: ResourceCapabilityOperationId;
|
|
1244
|
+
supported: boolean;
|
|
1245
|
+
scope: ResourceSurfaceScope;
|
|
1246
|
+
preferredMethod?: string | null;
|
|
1247
|
+
preferredRel?: string | null;
|
|
1248
|
+
availability?: ResourceAvailabilityDecision | null;
|
|
1249
|
+
formats?: PraxisExportFormat[];
|
|
1250
|
+
scopes?: PraxisExportScope[];
|
|
1251
|
+
maxRows?: ResourceExportMaxRows;
|
|
1252
|
+
async?: boolean | null;
|
|
1253
|
+
}
|
|
1254
|
+
type ResourceCapabilityOperations = Partial<Record<ResourceCrudOperationId | 'export', ResourceCapabilityOperation>> & Record<string, ResourceCapabilityOperation | undefined>;
|
|
1255
|
+
interface ResourceCapabilitySnapshot {
|
|
1256
|
+
resourceKey: string;
|
|
1257
|
+
resourcePath: string;
|
|
1258
|
+
group?: string | null;
|
|
1259
|
+
resourceId?: string | number | null;
|
|
1260
|
+
canonicalOperations: Record<string, boolean>;
|
|
1261
|
+
operations?: ResourceCapabilityOperations;
|
|
1262
|
+
surfaces: ResourceSurfaceCatalogItem[];
|
|
1263
|
+
actions: ResourceActionCatalogItem[];
|
|
1264
|
+
}
|
|
1265
|
+
interface ResourceCapabilityDigest {
|
|
1266
|
+
source: 'schema-x-ui-resource';
|
|
1267
|
+
resourcePath: string;
|
|
1268
|
+
canonicalOperations: Record<string, boolean>;
|
|
1269
|
+
filterExpressionSupported: boolean;
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
interface TableTooltipConfig {
|
|
1273
|
+
text?: string;
|
|
1274
|
+
position?: 'top' | 'right' | 'bottom' | 'left' | 'above' | 'below' | 'before' | 'after';
|
|
1275
|
+
bgColor?: string;
|
|
1276
|
+
delayMs?: number;
|
|
1277
|
+
}
|
|
296
1278
|
/**
|
|
297
1279
|
* Nova arquitetura modular do TableConfig v2.0
|
|
298
1280
|
* Preparada para crescimento exponencial e alinhada com as 5 abas do editor
|
|
@@ -359,6 +1341,8 @@ interface ColumnDefinition {
|
|
|
359
1341
|
};
|
|
360
1342
|
/** Tipo do renderizador */
|
|
361
1343
|
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'html' | 'compose';
|
|
1344
|
+
/** Tooltip associado ao renderer efetivo da célula. */
|
|
1345
|
+
tooltip?: TableTooltipConfig;
|
|
362
1346
|
/** Configuração de ícone (Material/SVG por nome) */
|
|
363
1347
|
icon?: {
|
|
364
1348
|
/** Nome fixo do ícone (ex.: 'check_circle') */
|
|
@@ -404,6 +1388,8 @@ interface ColumnDefinition {
|
|
|
404
1388
|
variant?: 'filled' | 'outlined' | 'soft';
|
|
405
1389
|
/** Ícone opcional dentro do badge */
|
|
406
1390
|
icon?: string;
|
|
1391
|
+
/** Tooltip opcional associado ao indicador visual */
|
|
1392
|
+
tooltip?: TableTooltipConfig;
|
|
407
1393
|
};
|
|
408
1394
|
/** Link (sanitizado) */
|
|
409
1395
|
link?: {
|
|
@@ -436,6 +1422,8 @@ interface ColumnDefinition {
|
|
|
436
1422
|
color?: string;
|
|
437
1423
|
icon?: string;
|
|
438
1424
|
variant?: 'filled' | 'outlined' | 'soft';
|
|
1425
|
+
/** Tooltip opcional associado ao chip */
|
|
1426
|
+
tooltip?: TableTooltipConfig;
|
|
439
1427
|
};
|
|
440
1428
|
/** Barra de progresso leve */
|
|
441
1429
|
progress?: {
|
|
@@ -458,9 +1446,12 @@ interface ColumnDefinition {
|
|
|
458
1446
|
srcField?: string;
|
|
459
1447
|
alt?: string;
|
|
460
1448
|
altField?: string;
|
|
1449
|
+
initialsField?: string;
|
|
461
1450
|
initialsExpr?: string;
|
|
462
1451
|
shape?: 'square' | 'rounded' | 'circle';
|
|
463
1452
|
size?: number;
|
|
1453
|
+
backgroundColor?: string;
|
|
1454
|
+
textColor?: string;
|
|
464
1455
|
};
|
|
465
1456
|
/** Alternância (toggle) com ação */
|
|
466
1457
|
toggle?: {
|
|
@@ -516,6 +1507,7 @@ interface ColumnDefinition {
|
|
|
516
1507
|
color?: string;
|
|
517
1508
|
variant?: 'filled' | 'outlined' | 'soft';
|
|
518
1509
|
icon?: string;
|
|
1510
|
+
tooltip?: TableTooltipConfig;
|
|
519
1511
|
};
|
|
520
1512
|
} | {
|
|
521
1513
|
type: 'link';
|
|
@@ -550,6 +1542,7 @@ interface ColumnDefinition {
|
|
|
550
1542
|
color?: string;
|
|
551
1543
|
icon?: string;
|
|
552
1544
|
variant?: 'filled' | 'outlined' | 'soft';
|
|
1545
|
+
tooltip?: TableTooltipConfig;
|
|
553
1546
|
};
|
|
554
1547
|
} | {
|
|
555
1548
|
type: 'progress';
|
|
@@ -565,9 +1558,12 @@ interface ColumnDefinition {
|
|
|
565
1558
|
srcField?: string;
|
|
566
1559
|
alt?: string;
|
|
567
1560
|
altField?: string;
|
|
1561
|
+
initialsField?: string;
|
|
568
1562
|
initialsExpr?: string;
|
|
569
1563
|
shape?: 'square' | 'rounded' | 'circle';
|
|
570
1564
|
size?: number;
|
|
1565
|
+
backgroundColor?: string;
|
|
1566
|
+
textColor?: string;
|
|
571
1567
|
};
|
|
572
1568
|
} | {
|
|
573
1569
|
type: 'toggle';
|
|
@@ -614,8 +1610,14 @@ interface ColumnDefinition {
|
|
|
614
1610
|
};
|
|
615
1611
|
/** Overrides condicionais do renderer por linha (first‑match wins) */
|
|
616
1612
|
conditionalRenderers?: Array<{
|
|
1613
|
+
/** Identificador estável usado para reconciliação e deduplicação de regras authoradas. */
|
|
1614
|
+
id?: string;
|
|
617
1615
|
condition: JsonLogicExpression | null;
|
|
618
|
-
renderer
|
|
1616
|
+
renderer?: Partial<ColumnDefinition['renderer']>;
|
|
1617
|
+
/** Tooltip condicional aplicado quando a regra vencer. */
|
|
1618
|
+
tooltip?: TableTooltipConfig;
|
|
1619
|
+
/** Efeitos visuais canonicos que podem produzir renderer, tooltip ou animacao. */
|
|
1620
|
+
effects?: Array<Record<string, unknown>>;
|
|
619
1621
|
description?: string;
|
|
620
1622
|
enabled?: boolean;
|
|
621
1623
|
}>;
|
|
@@ -624,11 +1626,16 @@ interface ColumnDefinition {
|
|
|
624
1626
|
* Cada regra contém uma expressão canônica em `condition` e o efeito visual a aplicar.
|
|
625
1627
|
*/
|
|
626
1628
|
conditionalStyles?: Array<{
|
|
1629
|
+
/** Identificador estável usado para reconciliação e deduplicação de regras authoradas. */
|
|
1630
|
+
id?: string;
|
|
627
1631
|
condition: JsonLogicExpression | null;
|
|
1632
|
+
/** Efeitos visuais canonicos produzidos pelo editor de regras da Table. */
|
|
1633
|
+
effects?: Array<Record<string, unknown>>;
|
|
628
1634
|
cssClass?: string;
|
|
629
1635
|
style?: {
|
|
630
1636
|
[key: string]: string;
|
|
631
1637
|
};
|
|
1638
|
+
tooltip?: Record<string, unknown>;
|
|
632
1639
|
description?: string;
|
|
633
1640
|
}>;
|
|
634
1641
|
/** Estado serializado do construtor visual de regras (round‑trip) */
|
|
@@ -686,6 +1693,8 @@ interface TableBehaviorConfig {
|
|
|
686
1693
|
sorting?: SortingConfig;
|
|
687
1694
|
/** Configurações de filtragem */
|
|
688
1695
|
filtering?: FilteringConfig;
|
|
1696
|
+
/** Configurações de agrupamento de linhas */
|
|
1697
|
+
grouping?: GroupingConfig;
|
|
689
1698
|
/** Configurações de seleção de linhas */
|
|
690
1699
|
selection?: SelectionConfig;
|
|
691
1700
|
/** Configurações de interação do usuário */
|
|
@@ -920,6 +1929,14 @@ interface SortingConfig {
|
|
|
920
1929
|
preserveSort?: boolean;
|
|
921
1930
|
};
|
|
922
1931
|
}
|
|
1932
|
+
interface GroupingConfig {
|
|
1933
|
+
/** Habilitar agrupamento */
|
|
1934
|
+
enabled: boolean;
|
|
1935
|
+
/** Campos usados para agrupamento */
|
|
1936
|
+
fields: string[];
|
|
1937
|
+
/** Se os grupos iniciam expandidos */
|
|
1938
|
+
expanded?: boolean;
|
|
1939
|
+
}
|
|
923
1940
|
interface FilteringConfig {
|
|
924
1941
|
/** Habilitar filtragem */
|
|
925
1942
|
enabled: boolean;
|
|
@@ -1336,6 +2353,10 @@ interface ToolbarAction {
|
|
|
1336
2353
|
disabled?: boolean;
|
|
1337
2354
|
/** Função a executar */
|
|
1338
2355
|
action: string;
|
|
2356
|
+
/** Acao global estruturada executada pelo host via GlobalActionService */
|
|
2357
|
+
globalAction?: GlobalActionRef;
|
|
2358
|
+
/** Efeitos runtime canonicos executados quando a acao da toolbar e acionada */
|
|
2359
|
+
effects?: PraxisRuntimeGlobalActionEffect[];
|
|
1339
2360
|
/** Tooltip */
|
|
1340
2361
|
tooltip?: string;
|
|
1341
2362
|
/** Tecla de atalho */
|
|
@@ -1348,6 +2369,8 @@ interface ToolbarAction {
|
|
|
1348
2369
|
order?: number;
|
|
1349
2370
|
/** Visibilidade condicional */
|
|
1350
2371
|
visibleWhen?: JsonLogicExpression | null;
|
|
2372
|
+
/** Desabilitacao condicional */
|
|
2373
|
+
disabledWhen?: JsonLogicExpression | null;
|
|
1351
2374
|
/** Sub-ações (para menus) */
|
|
1352
2375
|
children?: ToolbarAction[];
|
|
1353
2376
|
}
|
|
@@ -1405,6 +2428,11 @@ interface RowActionsConfig {
|
|
|
1405
2428
|
menuIcon?: string;
|
|
1406
2429
|
/** Cor do botão do menu de ações (overflow) */
|
|
1407
2430
|
menuButtonColor?: 'basic' | 'primary' | 'accent' | 'warn';
|
|
2431
|
+
/** Descoberta HATEOAS/capabilities para enriquecer ações de linha */
|
|
2432
|
+
discovery?: {
|
|
2433
|
+
/** Habilitar descoberta contextual de actions/capabilities para a linha */
|
|
2434
|
+
enabled?: boolean;
|
|
2435
|
+
};
|
|
1408
2436
|
/** Configurações do cabeçalho da coluna de ações */
|
|
1409
2437
|
header?: {
|
|
1410
2438
|
/** Texto exibido no cabeçalho (ex.: "Ações") */
|
|
@@ -1446,6 +2474,12 @@ interface RowAction {
|
|
|
1446
2474
|
disabled?: boolean;
|
|
1447
2475
|
/** Função a executar */
|
|
1448
2476
|
action: string;
|
|
2477
|
+
/** Acao global estruturada executada pelo host via GlobalActionService */
|
|
2478
|
+
globalAction?: GlobalActionRef;
|
|
2479
|
+
/** Efeitos runtime canonicos executados quando a acao por linha e acionada */
|
|
2480
|
+
effects?: PraxisRuntimeGlobalActionEffect[];
|
|
2481
|
+
/** Surface de registro canonica aberta por esta acao de linha */
|
|
2482
|
+
recordSurface?: ResourceSurfaceCatalogItem;
|
|
1449
2483
|
/** Tooltip */
|
|
1450
2484
|
tooltip?: string;
|
|
1451
2485
|
/** Requer confirmação */
|
|
@@ -1484,6 +2518,10 @@ interface BulkAction {
|
|
|
1484
2518
|
color?: string;
|
|
1485
2519
|
/** Função a executar */
|
|
1486
2520
|
action: string;
|
|
2521
|
+
/** Acao global estruturada executada pelo host via GlobalActionService */
|
|
2522
|
+
globalAction?: GlobalActionRef;
|
|
2523
|
+
/** Efeitos runtime canonicos executados quando a acao em lote e acionada */
|
|
2524
|
+
effects?: PraxisRuntimeGlobalActionEffect[];
|
|
1487
2525
|
/** Requer confirmação */
|
|
1488
2526
|
requiresConfirmation?: boolean;
|
|
1489
2527
|
/** Mínimo de itens selecionados */
|
|
@@ -1713,14 +2751,12 @@ interface ExportConfig {
|
|
|
1713
2751
|
/** Templates personalizados */
|
|
1714
2752
|
templates?: ExportTemplate[];
|
|
1715
2753
|
}
|
|
1716
|
-
type ExportFormat =
|
|
2754
|
+
type ExportFormat = PraxisExportFormat;
|
|
1717
2755
|
interface GeneralExportConfig {
|
|
1718
2756
|
/** Incluir cabeçalhos */
|
|
1719
2757
|
includeHeaders: boolean;
|
|
1720
|
-
/**
|
|
1721
|
-
|
|
1722
|
-
/** Incluir apenas linhas selecionadas */
|
|
1723
|
-
selectedRowsOnly?: boolean;
|
|
2758
|
+
/** Escopo canônico dos dados exportados */
|
|
2759
|
+
scope: PraxisExportScope;
|
|
1724
2760
|
/** Máximo de linhas para exportar */
|
|
1725
2761
|
maxRows?: number;
|
|
1726
2762
|
/** Nome do arquivo padrão */
|
|
@@ -2242,12 +3278,26 @@ interface TableConfigV2 {
|
|
|
2242
3278
|
*/
|
|
2243
3279
|
rowConditionalStyles?: Array<{
|
|
2244
3280
|
condition: JsonLogicExpression | null;
|
|
3281
|
+
/** Efeitos visuais canonicos produzidos pelo editor de regras da Table. */
|
|
3282
|
+
effects?: Array<Record<string, unknown>>;
|
|
2245
3283
|
cssClass?: string;
|
|
2246
3284
|
style?: {
|
|
2247
3285
|
[key: string]: string;
|
|
2248
3286
|
};
|
|
2249
3287
|
description?: string;
|
|
2250
3288
|
}>;
|
|
3289
|
+
/** Regras condicionais de linha para tooltip e animacao derivados de efeitos visuais. */
|
|
3290
|
+
rowConditionalRenderers?: Array<{
|
|
3291
|
+
/** Identificador estável usado para reconciliação e deduplicação de regras authoradas. */
|
|
3292
|
+
id?: string;
|
|
3293
|
+
condition: JsonLogicExpression | null;
|
|
3294
|
+
tooltip?: Record<string, unknown>;
|
|
3295
|
+
animation?: Record<string, unknown>;
|
|
3296
|
+
/** Efeitos visuais canonicos que podem produzir tooltip ou animacao de linha. */
|
|
3297
|
+
effects?: Array<Record<string, unknown>>;
|
|
3298
|
+
description?: string;
|
|
3299
|
+
enabled?: boolean;
|
|
3300
|
+
}>;
|
|
2251
3301
|
/** Estado serializado do construtor para regras de linha (round‑trip) */
|
|
2252
3302
|
_rowStyleRulesState?: any;
|
|
2253
3303
|
}
|
|
@@ -2293,6 +3343,7 @@ declare const FieldDataType: {
|
|
|
2293
3343
|
readonly FILE: "file";
|
|
2294
3344
|
readonly URL: "url";
|
|
2295
3345
|
readonly BOOLEAN: "boolean";
|
|
3346
|
+
readonly ARRAY: "array";
|
|
2296
3347
|
readonly JSON: "json";
|
|
2297
3348
|
};
|
|
2298
3349
|
type FieldDataType = typeof FieldDataType[keyof typeof FieldDataType];
|
|
@@ -2343,6 +3394,7 @@ declare const FieldControlType: {
|
|
|
2343
3394
|
readonly DRAWER: "drawer";
|
|
2344
3395
|
readonly DROP_DOWN_TREE: "dropDownTree";
|
|
2345
3396
|
readonly EMAIL_INPUT: "email";
|
|
3397
|
+
readonly ENTITY_LOOKUP: "entityLookup";
|
|
2346
3398
|
readonly EXPANSION_PANEL: "expansionPanel";
|
|
2347
3399
|
readonly FILE_SAVER: "fileSaver";
|
|
2348
3400
|
readonly FILE_SELECT: "fileSelect";
|
|
@@ -2579,11 +3631,57 @@ interface ValidatorOptions {
|
|
|
2579
3631
|
/** Custom error display position */
|
|
2580
3632
|
errorPosition?: 'bottom' | 'top' | 'tooltip';
|
|
2581
3633
|
}
|
|
2582
|
-
interface ConditionalValidationRule {
|
|
2583
|
-
/** Canonical Json Logic guard evaluated against the `form` root. */
|
|
2584
|
-
condition: JsonLogicExpression | null;
|
|
2585
|
-
/** Validators applied when the guard resolves to true. */
|
|
2586
|
-
validators: Omit<ValidatorOptions, 'conditionalValidation'>;
|
|
3634
|
+
interface ConditionalValidationRule {
|
|
3635
|
+
/** Canonical Json Logic guard evaluated against the `form` root. */
|
|
3636
|
+
condition: JsonLogicExpression | null;
|
|
3637
|
+
/** Validators applied when the guard resolves to true. */
|
|
3638
|
+
validators: Omit<ValidatorOptions, 'conditionalValidation'>;
|
|
3639
|
+
}
|
|
3640
|
+
interface FieldArrayOperations {
|
|
3641
|
+
add?: boolean;
|
|
3642
|
+
edit?: boolean;
|
|
3643
|
+
remove?: boolean;
|
|
3644
|
+
[key: string]: any;
|
|
3645
|
+
}
|
|
3646
|
+
interface FieldArrayCollectionValidation {
|
|
3647
|
+
uniqueBy?: string[];
|
|
3648
|
+
exactlyOne?: {
|
|
3649
|
+
field: string;
|
|
3650
|
+
value?: any;
|
|
3651
|
+
message?: string;
|
|
3652
|
+
};
|
|
3653
|
+
atLeastOne?: {
|
|
3654
|
+
field: string;
|
|
3655
|
+
value?: any;
|
|
3656
|
+
message?: string;
|
|
3657
|
+
};
|
|
3658
|
+
sumEquals?: {
|
|
3659
|
+
field: string;
|
|
3660
|
+
targetField?: string;
|
|
3661
|
+
value?: number;
|
|
3662
|
+
message?: string;
|
|
3663
|
+
};
|
|
3664
|
+
[key: string]: any;
|
|
3665
|
+
}
|
|
3666
|
+
interface FieldArrayConfig {
|
|
3667
|
+
itemType?: 'object';
|
|
3668
|
+
mode?: 'cards';
|
|
3669
|
+
itemSchemaRef?: string;
|
|
3670
|
+
itemIdentityField?: string;
|
|
3671
|
+
minItems?: number;
|
|
3672
|
+
maxItems?: number;
|
|
3673
|
+
addLabel?: string;
|
|
3674
|
+
emptyState?: string;
|
|
3675
|
+
itemTitleTemplate?: string;
|
|
3676
|
+
operations?: FieldArrayOperations;
|
|
3677
|
+
deleteMode?: 'removeFromPayload';
|
|
3678
|
+
itemSchema?: {
|
|
3679
|
+
fields?: FieldMetadata[];
|
|
3680
|
+
properties?: Record<string, any>;
|
|
3681
|
+
[key: string]: any;
|
|
3682
|
+
};
|
|
3683
|
+
collectionValidation?: FieldArrayCollectionValidation;
|
|
3684
|
+
[key: string]: any;
|
|
2587
3685
|
}
|
|
2588
3686
|
/**
|
|
2589
3687
|
* Configuration for field options in selection components.
|
|
@@ -2697,6 +3795,10 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
2697
3795
|
controlType: FieldControlType;
|
|
2698
3796
|
/** Data type for processing and validation */
|
|
2699
3797
|
dataType?: FieldDataType;
|
|
3798
|
+
/** Canonical metadata for editable collection fields (`controlType: "array"`). */
|
|
3799
|
+
array?: FieldArrayConfig;
|
|
3800
|
+
/** Optional top-level alias for collection validators mirrored into `array.collectionValidation`. */
|
|
3801
|
+
collectionValidation?: FieldArrayCollectionValidation;
|
|
2700
3802
|
/** Display order in form */
|
|
2701
3803
|
order?: number;
|
|
2702
3804
|
/** Logical grouping of related fields */
|
|
@@ -2967,6 +4069,8 @@ interface FieldDefinition {
|
|
|
2967
4069
|
layout?: 'horizontal' | 'vertical';
|
|
2968
4070
|
disabled?: boolean;
|
|
2969
4071
|
readOnly?: boolean;
|
|
4072
|
+
array?: FieldArrayConfig;
|
|
4073
|
+
collectionValidation?: FieldArrayCollectionValidation;
|
|
2970
4074
|
multiple?: boolean;
|
|
2971
4075
|
editable?: boolean;
|
|
2972
4076
|
validationMode?: string;
|
|
@@ -3144,13 +4248,39 @@ declare function buildHeaders(entry: ApiUrlEntry): HttpHeaders | undefined;
|
|
|
3144
4248
|
* // fields: [{ name: 'email', label: 'E-mail', type: 'string', controlType: 'input', required: true, email: true }]
|
|
3145
4249
|
*/
|
|
3146
4250
|
declare class SchemaNormalizerService {
|
|
4251
|
+
private clonePlain;
|
|
4252
|
+
private resolveSchemaRef;
|
|
4253
|
+
private normalizeObjectSchema;
|
|
4254
|
+
private normalizeArrayConfig;
|
|
4255
|
+
private finalizeArrayConfig;
|
|
4256
|
+
private normalizeInlineItemSchemaFields;
|
|
4257
|
+
private normalizeInlineItemSchemaField;
|
|
3147
4258
|
/** Convert value to boolean. Accepts boolean, string or number. */
|
|
3148
4259
|
private parseBoolean;
|
|
3149
4260
|
/** Ensure an array of strings from various inputs. */
|
|
3150
4261
|
private parseStringArray;
|
|
4262
|
+
private parseNonBlankStringArray;
|
|
4263
|
+
private parseStringRecord;
|
|
4264
|
+
private parseSelectionPolicy;
|
|
4265
|
+
private parseLookupCapabilities;
|
|
4266
|
+
private parseLookupDetail;
|
|
4267
|
+
private parseLookupDisplay;
|
|
4268
|
+
private parseLookupDisplayField;
|
|
4269
|
+
private parseLookupCreate;
|
|
4270
|
+
private parseLookupFilterOperatorArray;
|
|
4271
|
+
private parseLookupSortDirection;
|
|
4272
|
+
private parseLookupDialogSize;
|
|
4273
|
+
private parseLookupDialog;
|
|
4274
|
+
private parseLookupResultColumn;
|
|
4275
|
+
private parseLookupFilterDefinition;
|
|
4276
|
+
private parseDefaultFilters;
|
|
4277
|
+
private parseLookupFiltering;
|
|
3151
4278
|
/** Parse option arrays into `{ key, value }` objects. */
|
|
3152
4279
|
private parseOptions;
|
|
3153
4280
|
private parseOptionSource;
|
|
4281
|
+
private parseOptionSourceType;
|
|
4282
|
+
private parseOptionSourceSearchMode;
|
|
4283
|
+
private parseLookupOpenDetailMode;
|
|
3154
4284
|
private parseValuePresentation;
|
|
3155
4285
|
/**
|
|
3156
4286
|
* Converte string/Function em função real.
|
|
@@ -3185,6 +4315,7 @@ declare class SchemaNormalizerService {
|
|
|
3185
4315
|
* @returns FieldDefinition[] prontos para mapeamento/uso no restante do sistema.
|
|
3186
4316
|
*/
|
|
3187
4317
|
normalizeSchema(schema: any): FieldDefinition[];
|
|
4318
|
+
private normalizeSchemaWithRoot;
|
|
3188
4319
|
private resolveFieldType;
|
|
3189
4320
|
static ɵfac: i0.ɵɵFactoryDeclaration<SchemaNormalizerService, never>;
|
|
3190
4321
|
static ɵprov: i0.ɵɵInjectableDeclaration<SchemaNormalizerService>;
|
|
@@ -3219,7 +4350,7 @@ type LegacyTableConfig = TableConfig;
|
|
|
3219
4350
|
/**
|
|
3220
4351
|
* @deprecated Use createDefaultTableConfig instead
|
|
3221
4352
|
*/
|
|
3222
|
-
declare const DEFAULT_TABLE_CONFIG:
|
|
4353
|
+
declare const DEFAULT_TABLE_CONFIG: _praxisui_core.TableConfigModern;
|
|
3223
4354
|
|
|
3224
4355
|
type GlobalDialogAriaRole = 'dialog' | 'alertdialog';
|
|
3225
4356
|
interface GlobalDialogPosition {
|
|
@@ -3541,6 +4672,8 @@ interface OptionSourceRequestOptions<ID = string | number> extends CrudOperation
|
|
|
3541
4672
|
includeIds?: ID[];
|
|
3542
4673
|
observeVersionHeader?: boolean;
|
|
3543
4674
|
search?: string;
|
|
4675
|
+
sortKey?: string;
|
|
4676
|
+
filters?: LookupFilterRequest[];
|
|
3544
4677
|
}
|
|
3545
4678
|
interface BatchDeleteProgress<ID = string | number> {
|
|
3546
4679
|
id: ID;
|
|
@@ -3596,6 +4729,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
3596
4729
|
private _schemaCache?;
|
|
3597
4730
|
private schemaCacheReady?;
|
|
3598
4731
|
private _lastResourceMeta;
|
|
4732
|
+
private _lastResourceCapabilityDigest;
|
|
3599
4733
|
private _lastSchemaInfo;
|
|
3600
4734
|
/**
|
|
3601
4735
|
* Cria a instância do serviço genérico.
|
|
@@ -3632,10 +4766,10 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
3632
4766
|
* Fluxo de schemas (grid e filtro)
|
|
3633
4767
|
*
|
|
3634
4768
|
* - Grid/Lista (colunas e metadados do DTO principal):
|
|
3635
|
-
* 1) getSchema()
|
|
3636
|
-
* 2)
|
|
3637
|
-
* - path: {basePath}/
|
|
3638
|
-
* - operation:
|
|
4769
|
+
* 1) getSchema() deriva a superfície canônica de busca/listagem do recurso
|
|
4770
|
+
* 2) Em seguida chama /schemas/filtered com query params:
|
|
4771
|
+
* - path: {basePath}/filter (ex.: /api/human-resources/funcionarios/filter)
|
|
4772
|
+
* - operation: post
|
|
3639
4773
|
* - schemaType: response
|
|
3640
4774
|
* 3) O serviço normaliza o schema retornado (x-ui) para montagem de grids e formulários.
|
|
3641
4775
|
*
|
|
@@ -3653,8 +4787,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
3653
4787
|
* Obtém o schema (metadados) do recurso, útil para construção dinâmica de grids e formulários.
|
|
3654
4788
|
*
|
|
3655
4789
|
* Fluxo:
|
|
3656
|
-
* -
|
|
3657
|
-
*
|
|
4790
|
+
* - Chama /schemas/filtered para a superfície canônica de busca/listagem:
|
|
4791
|
+
* path={basePath}/filter, operation=post, schemaType=response.
|
|
3658
4792
|
* - O resultado é normalizado e usado para montar colunas de grid e formulários (x-ui).
|
|
3659
4793
|
*
|
|
3660
4794
|
* Exemplo:
|
|
@@ -3664,9 +4798,13 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
3664
4798
|
* ```
|
|
3665
4799
|
*/
|
|
3666
4800
|
getSchema(options?: CrudOperationOptions): Observable<FieldDefinition[]>;
|
|
4801
|
+
private updateLastResourceMetadataFromSchema;
|
|
4802
|
+
private normalizeCanonicalCapabilities;
|
|
4803
|
+
private shouldRememberFilteredSchemaEndpointUnavailable;
|
|
3667
4804
|
private fetchDirectSchema;
|
|
3668
4805
|
/** Retorna o campo identificador do recurso (ex.: 'id', 'codigo'), quando derivado do schema. */
|
|
3669
4806
|
getResourceIdField(): string | undefined;
|
|
4807
|
+
getResourceCapabilityDigest(): ResourceCapabilityDigest | null;
|
|
3670
4808
|
/** Retorna o último schemaId e hash conhecidos após getSchema()/getFilteredSchema(). */
|
|
3671
4809
|
getLastSchemaInfo(): {
|
|
3672
4810
|
schemaId?: string;
|
|
@@ -3927,6 +5065,9 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
3927
5065
|
private resolveRangeAliases;
|
|
3928
5066
|
private findExistingKey;
|
|
3929
5067
|
private normalizeRangeBound;
|
|
5068
|
+
private isDateValue;
|
|
5069
|
+
private formatDateOnly;
|
|
5070
|
+
private tryParseLocalizedRangeNumber;
|
|
3930
5071
|
private isRangeValue;
|
|
3931
5072
|
private isPlainObject;
|
|
3932
5073
|
private updateRangeFieldHints;
|
|
@@ -4014,39 +5155,39 @@ declare class TableConfigService {
|
|
|
4014
5155
|
/**
|
|
4015
5156
|
* Obtém configuração de paginação
|
|
4016
5157
|
*/
|
|
4017
|
-
getPaginationConfig(): PaginationConfig | undefined;
|
|
5158
|
+
getPaginationConfig(): _praxisui_core.PaginationConfig | undefined;
|
|
4018
5159
|
/**
|
|
4019
5160
|
* Obtém configuração de ordenação
|
|
4020
5161
|
*/
|
|
4021
|
-
getSortingConfig(): SortingConfig | undefined;
|
|
5162
|
+
getSortingConfig(): _praxisui_core.SortingConfig | undefined;
|
|
4022
5163
|
/**
|
|
4023
5164
|
* Obtém configuração de filtragem
|
|
4024
5165
|
*/
|
|
4025
|
-
getFilteringConfig(): FilteringConfig | undefined;
|
|
5166
|
+
getFilteringConfig(): _praxisui_core.FilteringConfig | undefined;
|
|
4026
5167
|
/**
|
|
4027
5168
|
* Obtém configuração de seleção
|
|
4028
5169
|
*/
|
|
4029
|
-
getSelectionConfig(): SelectionConfig | undefined;
|
|
5170
|
+
getSelectionConfig(): _praxisui_core.SelectionConfig | undefined;
|
|
4030
5171
|
/**
|
|
4031
5172
|
* Obtém configuração da toolbar
|
|
4032
5173
|
*/
|
|
4033
|
-
getToolbarConfig(): ToolbarConfig | undefined;
|
|
5174
|
+
getToolbarConfig(): _praxisui_core.ToolbarConfig | undefined;
|
|
4034
5175
|
/**
|
|
4035
5176
|
* Obtém configuração de ações
|
|
4036
5177
|
*/
|
|
4037
|
-
getActionsConfig(): TableActionsConfig | undefined;
|
|
5178
|
+
getActionsConfig(): _praxisui_core.TableActionsConfig | undefined;
|
|
4038
5179
|
/**
|
|
4039
5180
|
* Obtém configuração de aparência
|
|
4040
5181
|
*/
|
|
4041
|
-
getAppearanceConfig(): TableAppearanceConfig | undefined;
|
|
5182
|
+
getAppearanceConfig(): _praxisui_core.TableAppearanceConfig | undefined;
|
|
4042
5183
|
/**
|
|
4043
5184
|
* Obtém configuração de mensagens
|
|
4044
5185
|
*/
|
|
4045
|
-
getMessagesConfig(): MessagesConfig | undefined;
|
|
5186
|
+
getMessagesConfig(): _praxisui_core.MessagesConfig | undefined;
|
|
4046
5187
|
/**
|
|
4047
5188
|
* Obtém configuração de localização
|
|
4048
5189
|
*/
|
|
4049
|
-
getLocalizationConfig(): LocalizationConfig | undefined;
|
|
5190
|
+
getLocalizationConfig(): _praxisui_core.LocalizationConfig | undefined;
|
|
4050
5191
|
/**
|
|
4051
5192
|
* Reset para configuração padrão
|
|
4052
5193
|
*/
|
|
@@ -4254,74 +5395,6 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
|
|
|
4254
5395
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiConfigStorage>;
|
|
4255
5396
|
}
|
|
4256
5397
|
|
|
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
5398
|
declare class GlobalActionService {
|
|
4326
5399
|
private readonly handlers;
|
|
4327
5400
|
private readonly router;
|
|
@@ -4339,9 +5412,16 @@ declare class GlobalActionService {
|
|
|
4339
5412
|
register(id: string, handler: GlobalActionHandler): void;
|
|
4340
5413
|
has(id: string): boolean;
|
|
4341
5414
|
execute(id: string, payload?: any, context?: GlobalActionContext): Promise<GlobalActionResult>;
|
|
5415
|
+
executeRef(ref: GlobalActionRef | null | undefined, context?: GlobalActionContext): Promise<GlobalActionResult>;
|
|
5416
|
+
private resolvePayloadExpr;
|
|
5417
|
+
private lookupPath;
|
|
4342
5418
|
private registerBuiltins;
|
|
4343
5419
|
private handleApi;
|
|
5420
|
+
private handleNavigationOpenRoute;
|
|
4344
5421
|
private handleRouteRegister;
|
|
5422
|
+
private buildNavigationUrl;
|
|
5423
|
+
private buildQueryString;
|
|
5424
|
+
private buildFragment;
|
|
4345
5425
|
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalActionService, never>;
|
|
4346
5426
|
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalActionService>;
|
|
4347
5427
|
}
|
|
@@ -4397,12 +5477,16 @@ interface SurfaceOpenPayload {
|
|
|
4397
5477
|
|
|
4398
5478
|
declare class SurfaceBindingRuntimeService {
|
|
4399
5479
|
resolveWidget(widget: WidgetDefinition, bindings: SurfaceBinding[] | undefined, actionPayload?: any, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): WidgetDefinition;
|
|
5480
|
+
resolveSurfacePayload<T extends SurfaceOpenPayload>(surfacePayload: T, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): T;
|
|
4400
5481
|
extractByPath(obj: any, path?: string): any;
|
|
4401
|
-
resolveTemplate(node: any, context: any): any;
|
|
5482
|
+
resolveTemplate(node: any, context: any, key?: string, path?: string[]): any;
|
|
5483
|
+
private isDeferredTemplateExpressionKey;
|
|
5484
|
+
private tryParseStructuredTemplate;
|
|
4402
5485
|
setValueAtPath<T extends object>(obj: T, rawPath: string, value: any): T;
|
|
4403
5486
|
private buildContext;
|
|
4404
5487
|
private resolveBindingValue;
|
|
4405
5488
|
private normalizeTargetPath;
|
|
5489
|
+
private normalizeWidgetTargetPath;
|
|
4406
5490
|
private tokenizePath;
|
|
4407
5491
|
private clone;
|
|
4408
5492
|
static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceBindingRuntimeService, never>;
|
|
@@ -5188,6 +6272,19 @@ interface MaterialSelectMetadata extends FieldMetadata {
|
|
|
5188
6272
|
/** Inline/runtime compatibility for selected option icon color. */
|
|
5189
6273
|
optionSelectedIconColor?: string;
|
|
5190
6274
|
}
|
|
6275
|
+
interface MaterialEntityLookupMetadata extends Omit<MaterialSelectMetadata, 'controlType' | 'multiple' | 'maxSelections'>, EntityLookupDisplayMetadata, EntityLookupCollectionMetadata {
|
|
6276
|
+
controlType: typeof FieldControlType.ENTITY_LOOKUP | typeof FieldControlType.INLINE_ENTITY_LOOKUP;
|
|
6277
|
+
lookupIdKey?: string;
|
|
6278
|
+
lookupLabelKey?: string;
|
|
6279
|
+
lookupSubtitleKey?: string;
|
|
6280
|
+
lookupSeparator?: string;
|
|
6281
|
+
payloadMode?: EntityLookupPayloadMode;
|
|
6282
|
+
dialog?: LookupDialogMetadata;
|
|
6283
|
+
searchPlaceholder?: string;
|
|
6284
|
+
resetLabel?: string;
|
|
6285
|
+
ariaLabel?: string;
|
|
6286
|
+
dependencyLoadOnChange?: 'respectLoadOn' | 'immediate' | 'manual';
|
|
6287
|
+
}
|
|
5191
6288
|
/**
|
|
5192
6289
|
* Metadata for Material Autocomplete components.
|
|
5193
6290
|
*
|
|
@@ -5241,9 +6338,28 @@ interface MaterialButtonToggleMetadata extends FieldMetadata {
|
|
|
5241
6338
|
/** Toggle button options */
|
|
5242
6339
|
toggleOptions?: Array<{
|
|
5243
6340
|
value: any;
|
|
5244
|
-
text
|
|
6341
|
+
text?: string;
|
|
5245
6342
|
label?: string;
|
|
6343
|
+
disabled?: boolean;
|
|
5246
6344
|
}>;
|
|
6345
|
+
/** Allow multiple selected toggle buttons */
|
|
6346
|
+
multiple?: boolean;
|
|
6347
|
+
/** Maximum selected options when multiple is enabled */
|
|
6348
|
+
maxSelections?: number;
|
|
6349
|
+
/** Button toggle appearance */
|
|
6350
|
+
appearance?: 'legacy' | 'standard';
|
|
6351
|
+
/** Theme color */
|
|
6352
|
+
color?: ThemePalette;
|
|
6353
|
+
/** Backend resource for dynamic option loading */
|
|
6354
|
+
resourcePath?: string;
|
|
6355
|
+
/** Canonical metadata-driven source for derived options */
|
|
6356
|
+
optionSource?: OptionSourceMetadata;
|
|
6357
|
+
/** Additional filter criteria for backend requests */
|
|
6358
|
+
filterCriteria?: Record<string, any>;
|
|
6359
|
+
/** Key for option label when loading from backend */
|
|
6360
|
+
optionLabelKey?: string;
|
|
6361
|
+
/** Key for option value when loading from backend */
|
|
6362
|
+
optionValueKey?: string;
|
|
5247
6363
|
}
|
|
5248
6364
|
/**
|
|
5249
6365
|
* Metadata for Material Transfer List component.
|
|
@@ -5420,6 +6536,8 @@ interface MaterialDatepickerMetadata extends FieldMetadata {
|
|
|
5420
6536
|
controlType: typeof FieldControlType.DATE_PICKER;
|
|
5421
6537
|
/** Date format for display */
|
|
5422
6538
|
dateFormat?: string;
|
|
6539
|
+
/** Allows manual typing in the input. Set false to force calendar selection. */
|
|
6540
|
+
manualInput?: boolean;
|
|
5423
6541
|
/** Minimum selectable date */
|
|
5424
6542
|
minDate?: Date | string;
|
|
5425
6543
|
/** Maximum selectable date */
|
|
@@ -5453,6 +6571,8 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
|
|
|
5453
6571
|
startAriaLabel?: string;
|
|
5454
6572
|
/** Accessibility label for end date input */
|
|
5455
6573
|
endAriaLabel?: string;
|
|
6574
|
+
/** Compact inline chip display mode. */
|
|
6575
|
+
inlineChipDisplay?: 'value' | 'label-value';
|
|
5456
6576
|
/** Start view (month, year, multi-year) */
|
|
5457
6577
|
startView?: 'month' | 'year' | 'multi-year';
|
|
5458
6578
|
/** Enable sidebar shortcuts overlay (phase 1). */
|
|
@@ -5488,8 +6608,13 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
|
|
|
5488
6608
|
* - `confirm`: keeps selection as draft and only commits on explicit confirmation
|
|
5489
6609
|
*/
|
|
5490
6610
|
inlineQuickPresetsApplyMode?: 'auto' | 'confirm';
|
|
5491
|
-
/**
|
|
5492
|
-
|
|
6611
|
+
/**
|
|
6612
|
+
* Preferred position of shortcuts panel relative to the form field.
|
|
6613
|
+
* Defaults to `auto`, which tries a viewport-safe below placement before
|
|
6614
|
+
* side placements. Explicit `left`/`right` remain preferences and may fall
|
|
6615
|
+
* back when there is not enough viewport space.
|
|
6616
|
+
*/
|
|
6617
|
+
shortcutsPosition?: 'auto' | 'below' | 'left' | 'right';
|
|
5493
6618
|
/** Apply immediately when clicking a shortcut. Defaults to true. */
|
|
5494
6619
|
applyOnShortcutClick?: boolean;
|
|
5495
6620
|
/** Timezone identifier (e.g., 'America/Sao_Paulo') for normalization. */
|
|
@@ -5542,6 +6667,8 @@ interface MaterialPriceRangeMetadata extends FieldMetadata {
|
|
|
5542
6667
|
endLabel?: string;
|
|
5543
6668
|
/** Hide labels for start/end sub-inputs (compact mode). */
|
|
5544
6669
|
hideSubLabels?: boolean;
|
|
6670
|
+
/** Inline chip display when the range has a value. Defaults to value only. */
|
|
6671
|
+
inlineChipDisplay?: 'value' | 'label-value';
|
|
5545
6672
|
/** Layout dos inputs (lado a lado ou em linhas). */
|
|
5546
6673
|
layout?: 'row' | 'column';
|
|
5547
6674
|
/** Espaçamento entre os inputs (px ou CSS). */
|
|
@@ -5595,6 +6722,21 @@ interface InlineRangeDistributionConfig {
|
|
|
5595
6722
|
bins?: Array<number | InlineRangeDistributionBin> | string;
|
|
5596
6723
|
/** Optional normalization ceiling; defaults to the highest bin value. */
|
|
5597
6724
|
maxValue?: number;
|
|
6725
|
+
/**
|
|
6726
|
+
* Color strategy for histogram bars.
|
|
6727
|
+
* `selection` highlights bars covered by the current slider value/range using theme tokens.
|
|
6728
|
+
* `gradient` applies a configurable gradient to the selected bars.
|
|
6729
|
+
* `theme` keeps all bars on the neutral themed baseline.
|
|
6730
|
+
*/
|
|
6731
|
+
colorMode?: 'theme' | 'selection' | 'gradient';
|
|
6732
|
+
/** Optional selected bar color; defaults to the app theme primary color. */
|
|
6733
|
+
selectedColor?: string;
|
|
6734
|
+
/** Optional unselected bar color; defaults to the app theme outline variant color. */
|
|
6735
|
+
unselectedColor?: string;
|
|
6736
|
+
/** Optional first color stop for selected gradient bars. */
|
|
6737
|
+
gradientStartColor?: string;
|
|
6738
|
+
/** Optional final color stop for selected gradient bars. */
|
|
6739
|
+
gradientEndColor?: string;
|
|
5598
6740
|
/** Optional minimum visible ratio in the [0..1] range for non-zero bars. */
|
|
5599
6741
|
minBarRatio?: number;
|
|
5600
6742
|
/** Alias for `minBarRatio`. */
|
|
@@ -5638,6 +6780,33 @@ interface RangeSliderQuickPresetLabels {
|
|
|
5638
6780
|
fromMid?: string;
|
|
5639
6781
|
full?: string;
|
|
5640
6782
|
}
|
|
6783
|
+
interface RangeSliderMark {
|
|
6784
|
+
/** Numeric value represented by this mark. */
|
|
6785
|
+
value: number;
|
|
6786
|
+
/** Optional label rendered next to the mark. */
|
|
6787
|
+
label?: string;
|
|
6788
|
+
/** Optional semantic tone for platform styling. */
|
|
6789
|
+
tone?: 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
6790
|
+
/** Optional disabled hint for authoring and future restricted-value mode. */
|
|
6791
|
+
disabled?: boolean;
|
|
6792
|
+
}
|
|
6793
|
+
type RangeSliderSemanticTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
6794
|
+
interface RangeSliderSemanticBand {
|
|
6795
|
+
/** Inclusive start value for the band. */
|
|
6796
|
+
start: number;
|
|
6797
|
+
/** Inclusive end value for the band. */
|
|
6798
|
+
end: number;
|
|
6799
|
+
/** Optional label for accessibility, reports and authoring surfaces. */
|
|
6800
|
+
label?: string;
|
|
6801
|
+
/** Semantic tone used by the platform theme. */
|
|
6802
|
+
tone?: RangeSliderSemanticTone;
|
|
6803
|
+
/** Optional explicit color for specialized domain palettes. */
|
|
6804
|
+
color?: string;
|
|
6805
|
+
}
|
|
6806
|
+
type RangeSliderTrackMode = 'normal' | 'inverted' | 'none';
|
|
6807
|
+
type RangeSliderValueLabelDisplay = 'off' | 'auto' | 'on';
|
|
6808
|
+
type RangeSliderScalePreset = 'linear' | 'percent' | 'log' | 'pow2';
|
|
6809
|
+
type RangeSliderValueFormat = 'number' | 'percent' | 'currency' | 'compact' | 'storage';
|
|
5641
6810
|
interface MaterialRangeSliderMetadata extends FieldMetadata {
|
|
5642
6811
|
controlType: typeof FieldControlType.RANGE_SLIDER;
|
|
5643
6812
|
/** Slider mode */
|
|
@@ -5646,18 +6815,36 @@ interface MaterialRangeSliderMetadata extends FieldMetadata {
|
|
|
5646
6815
|
min?: number;
|
|
5647
6816
|
/** Maximum allowed value */
|
|
5648
6817
|
max?: number;
|
|
5649
|
-
/** Step for value increments */
|
|
5650
|
-
step?: number;
|
|
6818
|
+
/** Step for value increments. `null` is reserved for mark-restricted values. */
|
|
6819
|
+
step?: number | null;
|
|
5651
6820
|
/** Whether to show the thumb label */
|
|
5652
6821
|
thumbLabel?: boolean;
|
|
6822
|
+
/** Controls when the value label is displayed. */
|
|
6823
|
+
valueLabelDisplay?: RangeSliderValueLabelDisplay;
|
|
6824
|
+
/** Declarative formatter for value labels when functions cannot come from metadata. */
|
|
6825
|
+
valueLabelFormat?: RangeSliderValueFormat | string;
|
|
5653
6826
|
/** Tick configuration */
|
|
5654
6827
|
showTicks?: boolean | 'auto';
|
|
6828
|
+
/** Rich mark labels along the slider track. */
|
|
6829
|
+
marks?: boolean | RangeSliderMark[] | string;
|
|
6830
|
+
/** Semantic bands rendered behind the slider track for domain meaning. */
|
|
6831
|
+
semanticBands?: RangeSliderSemanticBand[] | string;
|
|
6832
|
+
/** Track presentation mode. */
|
|
6833
|
+
track?: RangeSliderTrackMode;
|
|
6834
|
+
/** Keyboard acceleration step for Page Up/Down or Shift+Arrow semantics. */
|
|
6835
|
+
shiftStep?: number;
|
|
6836
|
+
/** Visual density hint. */
|
|
6837
|
+
size?: 'small' | 'medium' | 'large';
|
|
5655
6838
|
/** Use discrete slider */
|
|
5656
6839
|
discrete?: boolean;
|
|
5657
6840
|
/** Display vertically */
|
|
5658
6841
|
vertical?: boolean;
|
|
5659
6842
|
/** Invert slider direction */
|
|
5660
6843
|
invert?: boolean;
|
|
6844
|
+
/** Prevent active thumb swapping when range thumbs overlap. */
|
|
6845
|
+
disableThumbSwap?: boolean;
|
|
6846
|
+
/** Declarative scale preset used to format displayed values. */
|
|
6847
|
+
scale?: RangeSliderScalePreset | string;
|
|
5661
6848
|
/** Minimum distance between start and end */
|
|
5662
6849
|
minDistance?: number;
|
|
5663
6850
|
/** Maximum distance between start and end */
|
|
@@ -5835,6 +7022,8 @@ interface MaterialButtonMetadata extends FieldMetadata {
|
|
|
5835
7022
|
buttonIconPosition?: 'before' | 'after';
|
|
5836
7023
|
/** Button action/command */
|
|
5837
7024
|
action?: string;
|
|
7025
|
+
/** Structured global action executed through GlobalActionService. */
|
|
7026
|
+
globalAction?: GlobalActionRef;
|
|
5838
7027
|
/** Disable button ripple effect */
|
|
5839
7028
|
disableRipple?: boolean;
|
|
5840
7029
|
/** Confirmation message for destructive actions */
|
|
@@ -5882,35 +7071,55 @@ interface MaterialSliderMetadata extends FieldMetadata {
|
|
|
5882
7071
|
min?: number;
|
|
5883
7072
|
/** Maximum value */
|
|
5884
7073
|
max?: number;
|
|
5885
|
-
/** Step increment */
|
|
5886
|
-
step?: number;
|
|
7074
|
+
/** Step increment. `null` is reserved for mark-restricted values. */
|
|
7075
|
+
step?: number | null;
|
|
5887
7076
|
/** Show value label */
|
|
5888
7077
|
thumbLabel?: boolean;
|
|
7078
|
+
/** Controls when the value label is displayed. */
|
|
7079
|
+
valueLabelDisplay?: RangeSliderValueLabelDisplay;
|
|
7080
|
+
/** Declarative formatter for value labels when functions cannot come from metadata. */
|
|
7081
|
+
valueLabelFormat?: RangeSliderValueFormat | string;
|
|
7082
|
+
/** Rich mark labels along the slider track. */
|
|
7083
|
+
marks?: boolean | RangeSliderMark[] | string;
|
|
7084
|
+
/** Semantic bands rendered behind the slider track for domain meaning. */
|
|
7085
|
+
semanticBands?: RangeSliderSemanticBand[] | string;
|
|
7086
|
+
/**
|
|
7087
|
+
* Optional mini histogram/bars rendered above the slider track.
|
|
7088
|
+
* Accepts array shorthand, object config, or JSON string for editor compatibility.
|
|
7089
|
+
*/
|
|
7090
|
+
inlineDistribution?: InlineRangeDistributionConfig | Array<number | InlineRangeDistributionBin> | string;
|
|
7091
|
+
/**
|
|
7092
|
+
* Alias accepted by slider components for compact payloads.
|
|
7093
|
+
*/
|
|
7094
|
+
distribution?: InlineRangeDistributionConfig | Array<number | InlineRangeDistributionBin> | string;
|
|
7095
|
+
/** Track presentation mode. */
|
|
7096
|
+
track?: RangeSliderTrackMode;
|
|
7097
|
+
/** Keyboard acceleration step for Page Up/Down or Shift+Arrow semantics. */
|
|
7098
|
+
shiftStep?: number;
|
|
7099
|
+
/** Visual density hint. */
|
|
7100
|
+
size?: 'small' | 'medium' | 'large';
|
|
5889
7101
|
/** Slider orientation */
|
|
5890
7102
|
vertical?: boolean;
|
|
5891
7103
|
/** Slider color theme */
|
|
5892
7104
|
color?: ThemePalette;
|
|
5893
7105
|
/** Display tick marks along the slider track */
|
|
5894
|
-
showTicks?: boolean;
|
|
7106
|
+
showTicks?: boolean | 'auto';
|
|
5895
7107
|
/** Invert slider direction */
|
|
5896
7108
|
invert?: boolean;
|
|
7109
|
+
/** Declarative scale preset used to format displayed values. */
|
|
7110
|
+
scale?: RangeSliderScalePreset | string;
|
|
5897
7111
|
}
|
|
5898
7112
|
/**
|
|
5899
7113
|
* Specialized metadata for Material Rating components.
|
|
5900
7114
|
*
|
|
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
7115
|
* Handles star rating or numeric rating selection.
|
|
5907
7116
|
*/
|
|
5908
7117
|
interface MaterialRatingMetadata extends FieldMetadata {
|
|
5909
7118
|
controlType: typeof FieldControlType.RATING;
|
|
5910
7119
|
/** Maximum rating value */
|
|
5911
7120
|
max?: number;
|
|
5912
|
-
/** Rating precision (0.
|
|
5913
|
-
precision?: number;
|
|
7121
|
+
/** Rating precision (`0.5` or `half` enables half-step interaction) */
|
|
7122
|
+
precision?: number | 'item' | 'half';
|
|
5914
7123
|
/** Rating icon (default: star) */
|
|
5915
7124
|
icon?: string;
|
|
5916
7125
|
/** Empty icon (default: star_border) */
|
|
@@ -6581,6 +7790,18 @@ declare class DynamicFormService {
|
|
|
6581
7790
|
* Indica se o campo deve ser tratado como seleção múltipla (valor padrão []).
|
|
6582
7791
|
*/
|
|
6583
7792
|
private isMultipleField;
|
|
7793
|
+
private isArrayMetadata;
|
|
7794
|
+
private getArrayConfig;
|
|
7795
|
+
private getArrayItemFields;
|
|
7796
|
+
createArrayItemGroupFromMetadata(meta: FieldMetadata, value?: Record<string, any>): FormGroup;
|
|
7797
|
+
private ensureArrayItemIdentityControl;
|
|
7798
|
+
private createArrayControlFromMetadata;
|
|
7799
|
+
private buildArrayValidators;
|
|
7800
|
+
private buildArrayCountValidator;
|
|
7801
|
+
private uniqueKeyForItem;
|
|
7802
|
+
private normalizeUniqueValue;
|
|
7803
|
+
private arrayValues;
|
|
7804
|
+
private readPath;
|
|
6584
7805
|
/**
|
|
6585
7806
|
* Envelopa um ValidatorFn Angular para padronizar a saída de erro com mensagem.
|
|
6586
7807
|
* Útil quando deseja-se forçar uma mensagem customizada em um validador nativo.
|
|
@@ -6603,7 +7824,7 @@ declare class DynamicFormService {
|
|
|
6603
7824
|
* - Aplica validadores específicos de UI quando aplicável.
|
|
6604
7825
|
* - Valor inicial: [] para campos múltiplos quando ausente; caso contrário defaultValue.
|
|
6605
7826
|
*/
|
|
6606
|
-
createControlFromField(field: FieldDefinition):
|
|
7827
|
+
createControlFromField(field: FieldDefinition): AbstractControl;
|
|
6607
7828
|
/**
|
|
6608
7829
|
* Cria um FormControl a partir de FieldMetadata.
|
|
6609
7830
|
* - Aplica ValidatorOptions (normalizados) e validadores de UI por tipo.
|
|
@@ -6615,6 +7836,11 @@ declare class DynamicFormService {
|
|
|
6615
7836
|
defaultValue?: any;
|
|
6616
7837
|
disabled?: boolean;
|
|
6617
7838
|
}): FormControl;
|
|
7839
|
+
createAbstractControlFromMetadata(meta: FieldMetadata & {
|
|
7840
|
+
validators?: ValidatorOptions;
|
|
7841
|
+
defaultValue?: any;
|
|
7842
|
+
disabled?: boolean;
|
|
7843
|
+
}): AbstractControl;
|
|
6618
7844
|
/**
|
|
6619
7845
|
* Reconfigura um controle existente a partir de FieldDefinition.
|
|
6620
7846
|
* Atualiza: validators, asyncValidators, estado enabled/disabled e defaultValue (com suporte a múltiplos).
|
|
@@ -6814,8 +8040,27 @@ interface ComponentDocMeta {
|
|
|
6814
8040
|
/** Optional title shown by hosts when opening the editor. */
|
|
6815
8041
|
title?: string;
|
|
6816
8042
|
};
|
|
8043
|
+
/** Optional canonical AI authoring manifest reference published by the component owner. */
|
|
8044
|
+
authoringManifestRef?: {
|
|
8045
|
+
/** Component id used by the manifest registry/backend. */
|
|
8046
|
+
componentId: string;
|
|
8047
|
+
/** Optional manifest version when the owner can publish it statically. */
|
|
8048
|
+
version?: string;
|
|
8049
|
+
/** Stable source symbol, registry id, or manifest module name. */
|
|
8050
|
+
source?: string;
|
|
8051
|
+
/** Optional content hash when available. */
|
|
8052
|
+
hash?: string;
|
|
8053
|
+
};
|
|
6817
8054
|
/** Tags or categories for search */
|
|
6818
8055
|
tags?: string[];
|
|
8056
|
+
/** Optional insertion presets exposed by visual builders without changing the component contract. */
|
|
8057
|
+
insertionPresets?: Array<{
|
|
8058
|
+
id: string;
|
|
8059
|
+
label: string;
|
|
8060
|
+
description?: string;
|
|
8061
|
+
icon?: string;
|
|
8062
|
+
inputs?: Record<string, unknown>;
|
|
8063
|
+
}>;
|
|
6819
8064
|
/** Source library for the component */
|
|
6820
8065
|
lib?: string;
|
|
6821
8066
|
/** Optional layout hints for grid placement */
|
|
@@ -6918,6 +8163,7 @@ declare class PraxisI18nService {
|
|
|
6918
8163
|
getLocale(): string;
|
|
6919
8164
|
getFallbackLocale(): string;
|
|
6920
8165
|
t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8166
|
+
tForLocale(locale: string, key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
6921
8167
|
resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
|
|
6922
8168
|
formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
|
|
6923
8169
|
formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
|
|
@@ -7027,6 +8273,52 @@ declare class TelemetryService {
|
|
|
7027
8273
|
static ɵprov: i0.ɵɵInjectableDeclaration<TelemetryService>;
|
|
7028
8274
|
}
|
|
7029
8275
|
|
|
8276
|
+
declare class PraxisCollectionExportService {
|
|
8277
|
+
private readonly provider;
|
|
8278
|
+
private readonly securityPolicy;
|
|
8279
|
+
constructor(provider: PraxisCollectionExportProvider | null, securityPolicy: PraxisExportSecurityPolicy);
|
|
8280
|
+
exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): Promise<PraxisCollectionExportResult>;
|
|
8281
|
+
exportLocalCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): PraxisCollectionExportResult;
|
|
8282
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisCollectionExportService, [{ optional: true; }, null]>;
|
|
8283
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisCollectionExportService>;
|
|
8284
|
+
}
|
|
8285
|
+
|
|
8286
|
+
interface PraxisCollectionExportHttpProviderOptions {
|
|
8287
|
+
endpoint?: string | ((request: PraxisCollectionExportRequest<any>) => string);
|
|
8288
|
+
apiUrlKey?: string;
|
|
8289
|
+
headers?: Record<string, string | string[]>;
|
|
8290
|
+
withCredentials?: boolean;
|
|
8291
|
+
includeLoadedItems?: boolean;
|
|
8292
|
+
}
|
|
8293
|
+
declare const PRAXIS_COLLECTION_EXPORT_PROVIDER: InjectionToken<PraxisCollectionExportProvider>;
|
|
8294
|
+
declare const PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS: InjectionToken<PraxisCollectionExportHttpProviderOptions>;
|
|
8295
|
+
declare const PRAXIS_EXPORT_SECURITY_POLICY: InjectionToken<PraxisExportSecurityPolicy>;
|
|
8296
|
+
declare function providePraxisCollectionExportProvider(provider: PraxisCollectionExportProvider): Provider;
|
|
8297
|
+
|
|
8298
|
+
declare class PraxisHttpCollectionExportProvider implements PraxisCollectionExportProvider {
|
|
8299
|
+
private readonly http;
|
|
8300
|
+
private readonly apiUrlConfig;
|
|
8301
|
+
private readonly options;
|
|
8302
|
+
constructor(http: HttpClient, apiUrlConfig: ApiUrlConfig | null, options: PraxisCollectionExportHttpProviderOptions | null);
|
|
8303
|
+
exportCollection<T = unknown>(request: PraxisCollectionExportRequest<T>): Promise<PraxisCollectionExportResult>;
|
|
8304
|
+
private resolveEndpoint;
|
|
8305
|
+
private resolveUrl;
|
|
8306
|
+
private normalizePathForBase;
|
|
8307
|
+
private resolveApiBaseUrl;
|
|
8308
|
+
private buildHeaders;
|
|
8309
|
+
private buildRequestBody;
|
|
8310
|
+
private normalizeResponse;
|
|
8311
|
+
private normalizeExportHeaders;
|
|
8312
|
+
private isExportResultEnvelope;
|
|
8313
|
+
private readNumberHeader;
|
|
8314
|
+
private readBooleanHeader;
|
|
8315
|
+
private readWarningHeader;
|
|
8316
|
+
private mergeWarnings;
|
|
8317
|
+
private resolveFileName;
|
|
8318
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisHttpCollectionExportProvider, [null, { optional: true; }, { optional: true; }]>;
|
|
8319
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisHttpCollectionExportProvider>;
|
|
8320
|
+
}
|
|
8321
|
+
|
|
7030
8322
|
type FieldSelectorRegistryMap = Record<string, FieldControlType>;
|
|
7031
8323
|
declare const FIELD_SELECTOR_REGISTRY_BASE: InjectionToken<FieldSelectorRegistryMap>;
|
|
7032
8324
|
declare const FIELD_SELECTOR_REGISTRY_OVERRIDES: InjectionToken<FieldSelectorRegistryMap[]>;
|
|
@@ -7093,121 +8385,32 @@ declare class PraxisLoadingInterceptor implements HttpInterceptor {
|
|
|
7093
8385
|
private renderer?;
|
|
7094
8386
|
constructor(orchestrator: LoadingOrchestrator, renderer?: PraxisLoadingRenderer | undefined);
|
|
7095
8387
|
intercept(req: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>>;
|
|
7096
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisLoadingInterceptor, [null, { optional: true; }]>;
|
|
7097
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisLoadingInterceptor>;
|
|
7098
|
-
}
|
|
7099
|
-
|
|
7100
|
-
declare class DefaultLoadingRenderer implements PraxisLoadingRenderer {
|
|
7101
|
-
private readonly rootId;
|
|
7102
|
-
private readonly styleId;
|
|
7103
|
-
show(ctx: LoadingContext): void;
|
|
7104
|
-
update(ctx: LoadingContext): void;
|
|
7105
|
-
hide(ctx: LoadingContext): void;
|
|
7106
|
-
private keyOf;
|
|
7107
|
-
private defaultLabel;
|
|
7108
|
-
private ensureRoot;
|
|
7109
|
-
private ensureStyles;
|
|
7110
|
-
private getDocument;
|
|
7111
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultLoadingRenderer, never>;
|
|
7112
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DefaultLoadingRenderer>;
|
|
7113
|
-
}
|
|
7114
|
-
|
|
7115
|
-
declare class PraxisLayerScaleStyleService {
|
|
7116
|
-
private readonly doc;
|
|
7117
|
-
private readonly styleId;
|
|
7118
|
-
constructor();
|
|
7119
|
-
ensureInstalled(): void;
|
|
7120
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisLayerScaleStyleService, never>;
|
|
7121
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisLayerScaleStyleService>;
|
|
7122
|
-
}
|
|
7123
|
-
|
|
7124
|
-
/**
|
|
7125
|
-
* Contratos compartilhados de discovery semantico consumidos pelo runtime Angular.
|
|
7126
|
-
*
|
|
7127
|
-
* `resourcePath` continua sendo o endereco operacional do recurso.
|
|
7128
|
-
* `resourceKey` representa a identidade semantica estavel devolvida pelo backend para
|
|
7129
|
-
* surfaces, actions e capabilities.
|
|
7130
|
-
*
|
|
7131
|
-
* O runtime usa `resourceKey` para preservar contexto semantico e gerar ids estaveis de
|
|
7132
|
-
* abertura, enquanto `resourcePath`, `path`, `method` e `schemaUrl` seguem responsaveis pelo
|
|
7133
|
-
* comportamento operacional.
|
|
7134
|
-
*/
|
|
7135
|
-
interface ResourceAvailabilityDecision {
|
|
7136
|
-
allowed: boolean;
|
|
7137
|
-
reason?: string | null;
|
|
7138
|
-
metadata?: Record<string, any>;
|
|
7139
|
-
}
|
|
7140
|
-
type ResourceSurfaceKind = 'FORM' | 'PARTIAL_FORM' | 'VIEW' | 'READ_PROJECTION';
|
|
7141
|
-
type ResourceSurfaceScope = 'COLLECTION' | 'ITEM';
|
|
7142
|
-
type ResourceActionScope = 'COLLECTION' | 'ITEM';
|
|
7143
|
-
type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
|
|
7144
|
-
type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
|
|
7145
|
-
interface ResourceSurfaceCatalogItem {
|
|
7146
|
-
id: string;
|
|
7147
|
-
resourceKey: string;
|
|
7148
|
-
kind: ResourceSurfaceKind;
|
|
7149
|
-
scope: ResourceSurfaceScope;
|
|
7150
|
-
title: string;
|
|
7151
|
-
description?: string | null;
|
|
7152
|
-
intent?: string | null;
|
|
7153
|
-
operationId: string;
|
|
7154
|
-
path: string;
|
|
7155
|
-
method: string;
|
|
7156
|
-
schemaId: string;
|
|
7157
|
-
schemaUrl: string;
|
|
7158
|
-
availability: ResourceAvailabilityDecision;
|
|
7159
|
-
order: number;
|
|
7160
|
-
tags: string[];
|
|
7161
|
-
}
|
|
7162
|
-
interface ResourceSurfaceCatalogResponse {
|
|
7163
|
-
resourceKey: string;
|
|
7164
|
-
resourcePath: string;
|
|
7165
|
-
group?: string | null;
|
|
7166
|
-
resourceId?: string | number | null;
|
|
7167
|
-
surfaces: ResourceSurfaceCatalogItem[];
|
|
7168
|
-
}
|
|
7169
|
-
interface ResourceActionCatalogItem {
|
|
7170
|
-
id: string;
|
|
7171
|
-
resourceKey: string;
|
|
7172
|
-
scope: ResourceActionScope;
|
|
7173
|
-
title: string;
|
|
7174
|
-
description?: string | null;
|
|
7175
|
-
operationId: string;
|
|
7176
|
-
path: string;
|
|
7177
|
-
method: string;
|
|
7178
|
-
requestSchemaId?: string | null;
|
|
7179
|
-
requestSchemaUrl?: string | null;
|
|
7180
|
-
responseSchemaId?: string | null;
|
|
7181
|
-
responseSchemaUrl?: string | null;
|
|
7182
|
-
availability: ResourceAvailabilityDecision;
|
|
7183
|
-
order: number;
|
|
7184
|
-
successMessage?: string | null;
|
|
7185
|
-
tags: string[];
|
|
7186
|
-
}
|
|
7187
|
-
interface ResourceActionCatalogResponse {
|
|
7188
|
-
resourceKey: string;
|
|
7189
|
-
resourcePath: string;
|
|
7190
|
-
group?: string | null;
|
|
7191
|
-
resourceId?: string | number | null;
|
|
7192
|
-
actions: ResourceActionCatalogItem[];
|
|
7193
|
-
}
|
|
7194
|
-
interface ResourceCapabilityOperation {
|
|
7195
|
-
id: ResourceCrudOperationId;
|
|
7196
|
-
supported: boolean;
|
|
7197
|
-
scope: ResourceSurfaceScope;
|
|
7198
|
-
preferredMethod?: string | null;
|
|
7199
|
-
preferredRel?: string | null;
|
|
7200
|
-
availability?: ResourceAvailabilityDecision | null;
|
|
8388
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisLoadingInterceptor, [null, { optional: true; }]>;
|
|
8389
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisLoadingInterceptor>;
|
|
7201
8390
|
}
|
|
7202
|
-
|
|
7203
|
-
|
|
7204
|
-
|
|
7205
|
-
|
|
7206
|
-
|
|
7207
|
-
|
|
7208
|
-
|
|
7209
|
-
|
|
7210
|
-
|
|
8391
|
+
|
|
8392
|
+
declare class DefaultLoadingRenderer implements PraxisLoadingRenderer {
|
|
8393
|
+
private readonly rootId;
|
|
8394
|
+
private readonly styleId;
|
|
8395
|
+
show(ctx: LoadingContext): void;
|
|
8396
|
+
update(ctx: LoadingContext): void;
|
|
8397
|
+
hide(ctx: LoadingContext): void;
|
|
8398
|
+
private keyOf;
|
|
8399
|
+
private defaultLabel;
|
|
8400
|
+
private ensureRoot;
|
|
8401
|
+
private ensureStyles;
|
|
8402
|
+
private getDocument;
|
|
8403
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultLoadingRenderer, never>;
|
|
8404
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DefaultLoadingRenderer>;
|
|
8405
|
+
}
|
|
8406
|
+
|
|
8407
|
+
declare class PraxisLayerScaleStyleService {
|
|
8408
|
+
private readonly doc;
|
|
8409
|
+
private readonly styleId;
|
|
8410
|
+
constructor();
|
|
8411
|
+
ensureInstalled(): void;
|
|
8412
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisLayerScaleStyleService, never>;
|
|
8413
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisLayerScaleStyleService>;
|
|
7211
8414
|
}
|
|
7212
8415
|
|
|
7213
8416
|
interface ResourceDiscoveryRequestOptions {
|
|
@@ -7245,6 +8448,466 @@ declare class ResourceDiscoveryService {
|
|
|
7245
8448
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDiscoveryService>;
|
|
7246
8449
|
}
|
|
7247
8450
|
|
|
8451
|
+
declare const DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.2";
|
|
8452
|
+
interface DomainCatalogRelease {
|
|
8453
|
+
releaseKey: string;
|
|
8454
|
+
serviceKey?: string;
|
|
8455
|
+
status?: string;
|
|
8456
|
+
version?: string;
|
|
8457
|
+
createdAt?: string;
|
|
8458
|
+
resourceKey?: string;
|
|
8459
|
+
[key: string]: unknown;
|
|
8460
|
+
}
|
|
8461
|
+
interface DomainCatalogGovernancePayload {
|
|
8462
|
+
classification?: string;
|
|
8463
|
+
dataCategory?: string;
|
|
8464
|
+
complianceTags?: string[];
|
|
8465
|
+
aiUsage?: {
|
|
8466
|
+
visibility?: string;
|
|
8467
|
+
purpose?: string;
|
|
8468
|
+
restrictions?: string[];
|
|
8469
|
+
[key: string]: unknown;
|
|
8470
|
+
};
|
|
8471
|
+
[key: string]: unknown;
|
|
8472
|
+
}
|
|
8473
|
+
interface DomainCatalogItem<TPayload = Record<string, unknown>> {
|
|
8474
|
+
itemKey: string;
|
|
8475
|
+
type?: string;
|
|
8476
|
+
payload?: TPayload;
|
|
8477
|
+
[key: string]: unknown;
|
|
8478
|
+
}
|
|
8479
|
+
interface DomainCatalogResourceProbe {
|
|
8480
|
+
resourceKey: string;
|
|
8481
|
+
query: string;
|
|
8482
|
+
limit?: number;
|
|
8483
|
+
}
|
|
8484
|
+
type DomainCatalogContextHintItemType = 'context' | 'node' | 'edge' | 'binding' | 'evidence' | 'governance' | 'vocabulary' | 'relationship';
|
|
8485
|
+
type DomainCatalogContextHintIntent = 'authoring' | 'explain' | 'validate' | 'ai-access-control';
|
|
8486
|
+
type DomainCatalogRecommendedAuthoringFlow = 'shared_rule_authoring' | 'component_authoring' | 'ui_composition_authoring';
|
|
8487
|
+
type DomainCatalogRecommendedRuleType = 'privacy' | 'compliance' | 'validation' | 'selection_eligibility' | 'workflow_action_policy' | 'approval_policy' | string;
|
|
8488
|
+
interface DomainCatalogRelationshipHint {
|
|
8489
|
+
enabled?: boolean;
|
|
8490
|
+
federated?: boolean;
|
|
8491
|
+
serviceKey?: string | null;
|
|
8492
|
+
sourceNodeKey?: string | null;
|
|
8493
|
+
targetNodeKey?: string | null;
|
|
8494
|
+
edgeType?: string | null;
|
|
8495
|
+
query?: string | null;
|
|
8496
|
+
limit?: number;
|
|
8497
|
+
}
|
|
8498
|
+
interface DomainCatalogContextHint {
|
|
8499
|
+
schemaVersion?: typeof DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION;
|
|
8500
|
+
resourceKey?: string | null;
|
|
8501
|
+
query?: string | null;
|
|
8502
|
+
releaseId?: string | null;
|
|
8503
|
+
releaseKey?: string | null;
|
|
8504
|
+
serviceKey?: string | null;
|
|
8505
|
+
type?: DomainCatalogContextHintItemType;
|
|
8506
|
+
itemTypes?: DomainCatalogContextHintItemType[];
|
|
8507
|
+
intent?: DomainCatalogContextHintIntent | null;
|
|
8508
|
+
contextKey?: string | null;
|
|
8509
|
+
nodeType?: string | null;
|
|
8510
|
+
recommendedAuthoringFlow?: DomainCatalogRecommendedAuthoringFlow | null;
|
|
8511
|
+
recommendedRuleType?: DomainCatalogRecommendedRuleType | null;
|
|
8512
|
+
limit?: number;
|
|
8513
|
+
relationships?: DomainCatalogRelationshipHint | null;
|
|
8514
|
+
}
|
|
8515
|
+
interface DomainCatalogGovernanceContext {
|
|
8516
|
+
resourceKey: string;
|
|
8517
|
+
query: string;
|
|
8518
|
+
releaseKey: string | null;
|
|
8519
|
+
items: DomainCatalogItem<DomainCatalogGovernancePayload>[];
|
|
8520
|
+
}
|
|
8521
|
+
|
|
8522
|
+
interface DomainCatalogRequestOptions extends ResourceDiscoveryRequestOptions {
|
|
8523
|
+
serviceKey?: string;
|
|
8524
|
+
limit?: number;
|
|
8525
|
+
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
8526
|
+
}
|
|
8527
|
+
interface DomainCatalogGovernanceRequestOptions extends DomainCatalogRequestOptions {
|
|
8528
|
+
resourceKey: string;
|
|
8529
|
+
query: string;
|
|
8530
|
+
}
|
|
8531
|
+
declare class DomainCatalogService {
|
|
8532
|
+
private readonly http;
|
|
8533
|
+
private readonly discovery;
|
|
8534
|
+
listReleases(options?: DomainCatalogRequestOptions): Observable<DomainCatalogRelease[]>;
|
|
8535
|
+
listItems(releaseKey: string, options?: DomainCatalogRequestOptions & {
|
|
8536
|
+
type?: string;
|
|
8537
|
+
query?: string;
|
|
8538
|
+
}): Observable<DomainCatalogItem[]>;
|
|
8539
|
+
findLatestReleaseForResource(resourceKey: string, options?: DomainCatalogRequestOptions): Observable<DomainCatalogRelease | null>;
|
|
8540
|
+
getGovernanceContext(options: DomainCatalogGovernanceRequestOptions): Observable<DomainCatalogGovernanceContext>;
|
|
8541
|
+
private resolveHeaders;
|
|
8542
|
+
private releaseMatchesResource;
|
|
8543
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DomainCatalogService, never>;
|
|
8544
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DomainCatalogService>;
|
|
8545
|
+
}
|
|
8546
|
+
|
|
8547
|
+
type DomainKnowledgeAuthorType = 'human' | 'llm' | 'system' | string;
|
|
8548
|
+
type DomainKnowledgeChangeSetStatus = 'proposed' | 'approved' | 'rejected' | 'superseded' | 'applied' | string;
|
|
8549
|
+
type DomainKnowledgeValidationStatus = 'valid' | 'invalid' | 'pending' | string;
|
|
8550
|
+
type DomainKnowledgeOperationType = 'add_evidence' | 'update_evidence' | 'deprecate_evidence' | 'add_relationship' | 'update_concept' | string;
|
|
8551
|
+
interface DomainKnowledgeChangeSetTarget {
|
|
8552
|
+
tenantId?: string | null;
|
|
8553
|
+
environment?: string | null;
|
|
8554
|
+
subjectType?: string | null;
|
|
8555
|
+
conceptKey?: string | null;
|
|
8556
|
+
evidenceKey?: string | null;
|
|
8557
|
+
relationshipKey?: string | null;
|
|
8558
|
+
}
|
|
8559
|
+
interface DomainKnowledgePatchOperation {
|
|
8560
|
+
operationId: string;
|
|
8561
|
+
operationType: DomainKnowledgeOperationType;
|
|
8562
|
+
target?: DomainKnowledgeChangeSetTarget | null;
|
|
8563
|
+
reason?: string | null;
|
|
8564
|
+
evidenceRefs?: string[] | null;
|
|
8565
|
+
confidence?: number | null;
|
|
8566
|
+
payload?: Record<string, unknown> | null;
|
|
8567
|
+
}
|
|
8568
|
+
interface DomainKnowledgeChangeSetRequest {
|
|
8569
|
+
changeSetKey: string;
|
|
8570
|
+
status?: DomainKnowledgeChangeSetStatus | null;
|
|
8571
|
+
authorType?: DomainKnowledgeAuthorType | null;
|
|
8572
|
+
authorId?: string | null;
|
|
8573
|
+
intent?: string | null;
|
|
8574
|
+
reason?: string | null;
|
|
8575
|
+
patch: DomainKnowledgePatchOperation[];
|
|
8576
|
+
}
|
|
8577
|
+
interface DomainKnowledgeSafeOperationSummary {
|
|
8578
|
+
operationId?: string | null;
|
|
8579
|
+
operationType?: DomainKnowledgeOperationType | null;
|
|
8580
|
+
targetSubjectType?: string | null;
|
|
8581
|
+
targetConceptKey?: string | null;
|
|
8582
|
+
evidenceRefCount?: number | null;
|
|
8583
|
+
confidence?: number | null;
|
|
8584
|
+
}
|
|
8585
|
+
interface DomainKnowledgeChangeSet {
|
|
8586
|
+
id: string;
|
|
8587
|
+
tenantId?: string | null;
|
|
8588
|
+
environment?: string | null;
|
|
8589
|
+
changeSetKey?: string | null;
|
|
8590
|
+
status?: DomainKnowledgeChangeSetStatus | null;
|
|
8591
|
+
validationStatus?: DomainKnowledgeValidationStatus | null;
|
|
8592
|
+
authorType?: DomainKnowledgeAuthorType | null;
|
|
8593
|
+
authorId?: string | null;
|
|
8594
|
+
intent?: string | null;
|
|
8595
|
+
reason?: string | null;
|
|
8596
|
+
operationCount?: number | null;
|
|
8597
|
+
safeOperationSummary?: DomainKnowledgeSafeOperationSummary[] | null;
|
|
8598
|
+
reviewerId?: string | null;
|
|
8599
|
+
reviewedAt?: string | null;
|
|
8600
|
+
appliedAt?: string | null;
|
|
8601
|
+
createdAt?: string | null;
|
|
8602
|
+
updatedAt?: string | null;
|
|
8603
|
+
}
|
|
8604
|
+
interface DomainKnowledgeChangeSetFilters {
|
|
8605
|
+
status?: DomainKnowledgeChangeSetStatus;
|
|
8606
|
+
}
|
|
8607
|
+
interface DomainKnowledgeValidationIssue {
|
|
8608
|
+
operationId?: string | null;
|
|
8609
|
+
code?: string | null;
|
|
8610
|
+
message?: string | null;
|
|
8611
|
+
severity?: string | null;
|
|
8612
|
+
}
|
|
8613
|
+
interface DomainKnowledgeValidationResponse {
|
|
8614
|
+
valid: boolean;
|
|
8615
|
+
changeSetId?: string | null;
|
|
8616
|
+
validationStatus?: DomainKnowledgeValidationStatus | null;
|
|
8617
|
+
issues?: DomainKnowledgeValidationIssue[] | null;
|
|
8618
|
+
safeOperationSummary?: DomainKnowledgeSafeOperationSummary[] | null;
|
|
8619
|
+
}
|
|
8620
|
+
type DomainKnowledgeTimelineEventVisibility = 'safe' | string;
|
|
8621
|
+
interface DomainKnowledgeChangeSetTimelineEventResponse {
|
|
8622
|
+
eventType: string;
|
|
8623
|
+
occurredAt?: string | null;
|
|
8624
|
+
actorType?: string | null;
|
|
8625
|
+
actor?: string | null;
|
|
8626
|
+
summary?: string | null;
|
|
8627
|
+
status?: DomainKnowledgeChangeSetStatus | null;
|
|
8628
|
+
validationStatus?: DomainKnowledgeValidationStatus | null;
|
|
8629
|
+
operationCount?: number | null;
|
|
8630
|
+
operationTypes?: DomainKnowledgeOperationType[] | null;
|
|
8631
|
+
targetConceptKeys?: string[] | null;
|
|
8632
|
+
visibility?: DomainKnowledgeTimelineEventVisibility | null;
|
|
8633
|
+
}
|
|
8634
|
+
interface DomainKnowledgeChangeSetTimelineResponse {
|
|
8635
|
+
changeSetId: string;
|
|
8636
|
+
tenantId?: string | null;
|
|
8637
|
+
environment?: string | null;
|
|
8638
|
+
changeSetKey?: string | null;
|
|
8639
|
+
status?: DomainKnowledgeChangeSetStatus | null;
|
|
8640
|
+
authorType?: DomainKnowledgeAuthorType | null;
|
|
8641
|
+
authorId?: string | null;
|
|
8642
|
+
reviewerId?: string | null;
|
|
8643
|
+
events: DomainKnowledgeChangeSetTimelineEventResponse[];
|
|
8644
|
+
}
|
|
8645
|
+
interface DomainKnowledgeStatusTransitionRequest {
|
|
8646
|
+
status: Exclude<DomainKnowledgeChangeSetStatus, 'proposed'> | DomainKnowledgeChangeSetStatus;
|
|
8647
|
+
reviewerId?: string | null;
|
|
8648
|
+
reason?: string | null;
|
|
8649
|
+
}
|
|
8650
|
+
|
|
8651
|
+
interface DomainKnowledgeRequestOptions extends ResourceDiscoveryRequestOptions {
|
|
8652
|
+
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
8653
|
+
}
|
|
8654
|
+
declare class DomainKnowledgeService {
|
|
8655
|
+
private readonly http;
|
|
8656
|
+
private readonly discovery;
|
|
8657
|
+
createChangeSet(request: DomainKnowledgeChangeSetRequest, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
|
|
8658
|
+
listChangeSets(filters?: DomainKnowledgeChangeSetFilters, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet[]>;
|
|
8659
|
+
getChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
|
|
8660
|
+
validateChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeValidationResponse>;
|
|
8661
|
+
transitionChangeSetStatus(changeSetId: string, request: DomainKnowledgeStatusTransitionRequest, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
|
|
8662
|
+
applyChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
|
|
8663
|
+
getChangeSetTimeline(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSetTimelineResponse>;
|
|
8664
|
+
private buildParams;
|
|
8665
|
+
private resolveHeaders;
|
|
8666
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DomainKnowledgeService, never>;
|
|
8667
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DomainKnowledgeService>;
|
|
8668
|
+
}
|
|
8669
|
+
|
|
8670
|
+
type DomainRuleStatus = 'draft' | 'active' | 'inactive' | 'deprecated' | string;
|
|
8671
|
+
type DomainRuleCreatedByType = 'human' | 'llm' | 'system' | string;
|
|
8672
|
+
type DomainRuleAppliedByType = 'human' | 'llm' | 'system' | string;
|
|
8673
|
+
type DomainRuleTargetLayer = 'form' | 'table' | 'api' | 'workflow' | 'workflow_action' | 'approval_policy' | 'policy' | 'option_source' | 'backend_validation' | string;
|
|
8674
|
+
interface DomainRuleDecisionDiagnostics extends Record<string, unknown> {
|
|
8675
|
+
decisionKind?: string | null;
|
|
8676
|
+
authoringMode?: string | null;
|
|
8677
|
+
decisionStage?: string | null;
|
|
8678
|
+
decisionSource?: string | null;
|
|
8679
|
+
canonicalOwner?: string | null;
|
|
8680
|
+
materializationModel?: string | null;
|
|
8681
|
+
runtimeSurfacesAreDerived?: boolean | null;
|
|
8682
|
+
}
|
|
8683
|
+
interface DomainRuleDefinitionRequest {
|
|
8684
|
+
ruleKey: string;
|
|
8685
|
+
version?: number | null;
|
|
8686
|
+
ruleType?: string | null;
|
|
8687
|
+
status?: DomainRuleStatus | null;
|
|
8688
|
+
contextKey?: string | null;
|
|
8689
|
+
resourceKey?: string | null;
|
|
8690
|
+
serviceKey?: string | null;
|
|
8691
|
+
semanticOwner?: string | null;
|
|
8692
|
+
steward?: string | null;
|
|
8693
|
+
sourceReleaseId?: string | null;
|
|
8694
|
+
sourceChangeSetId?: string | null;
|
|
8695
|
+
definition?: Record<string, unknown> | null;
|
|
8696
|
+
parameters?: Record<string, unknown> | null;
|
|
8697
|
+
condition?: Record<string, unknown> | null;
|
|
8698
|
+
governance?: Record<string, unknown> | null;
|
|
8699
|
+
validationResult?: Record<string, unknown> | null;
|
|
8700
|
+
createdByType?: DomainRuleCreatedByType | null;
|
|
8701
|
+
createdBy?: string | null;
|
|
8702
|
+
approvedBy?: string | null;
|
|
8703
|
+
}
|
|
8704
|
+
interface DomainRuleDefinition extends DomainRuleDefinitionRequest {
|
|
8705
|
+
id: string;
|
|
8706
|
+
tenantId?: string | null;
|
|
8707
|
+
environment?: string | null;
|
|
8708
|
+
createdAt?: string | null;
|
|
8709
|
+
updatedAt?: string | null;
|
|
8710
|
+
approvedAt?: string | null;
|
|
8711
|
+
activatedAt?: string | null;
|
|
8712
|
+
}
|
|
8713
|
+
interface DomainRuleDefinitionFilters {
|
|
8714
|
+
resourceKey?: string;
|
|
8715
|
+
status?: DomainRuleStatus;
|
|
8716
|
+
ruleType?: string;
|
|
8717
|
+
ruleKey?: string;
|
|
8718
|
+
}
|
|
8719
|
+
type DomainRuleTimelineEventVisibility = 'safe' | string;
|
|
8720
|
+
interface DomainRuleTimelineEventResponse {
|
|
8721
|
+
eventType: string;
|
|
8722
|
+
occurredAt?: string | null;
|
|
8723
|
+
actorType?: DomainRuleAppliedByType | null;
|
|
8724
|
+
actor?: string | null;
|
|
8725
|
+
summary?: string | null;
|
|
8726
|
+
targetLayer?: DomainRuleTargetLayer | null;
|
|
8727
|
+
targetArtifactType?: string | null;
|
|
8728
|
+
targetArtifactKey?: string | null;
|
|
8729
|
+
sourceHash?: string | null;
|
|
8730
|
+
visibility?: DomainRuleTimelineEventVisibility | null;
|
|
8731
|
+
}
|
|
8732
|
+
interface DomainRuleTimelineResponse {
|
|
8733
|
+
ruleDefinitionId: string;
|
|
8734
|
+
tenantId?: string | null;
|
|
8735
|
+
environment?: string | null;
|
|
8736
|
+
ruleKey?: string | null;
|
|
8737
|
+
ruleType?: string | null;
|
|
8738
|
+
resourceKey?: string | null;
|
|
8739
|
+
events: DomainRuleTimelineEventResponse[];
|
|
8740
|
+
}
|
|
8741
|
+
interface DomainRuleStatusTransitionRequest {
|
|
8742
|
+
status: DomainRuleStatus;
|
|
8743
|
+
decidedByType?: DomainRuleAppliedByType | null;
|
|
8744
|
+
decidedBy?: string | null;
|
|
8745
|
+
decisionNotes?: Record<string, unknown> | null;
|
|
8746
|
+
}
|
|
8747
|
+
interface DomainRuleIntakeRequest {
|
|
8748
|
+
prompt: string;
|
|
8749
|
+
assistantMessage?: string | null;
|
|
8750
|
+
ruleKey?: string | null;
|
|
8751
|
+
ruleType?: string | null;
|
|
8752
|
+
contextKey?: string | null;
|
|
8753
|
+
resourceKey?: string | null;
|
|
8754
|
+
serviceKey?: string | null;
|
|
8755
|
+
definition?: Record<string, unknown> | null;
|
|
8756
|
+
parameters?: Record<string, unknown> | null;
|
|
8757
|
+
condition?: Record<string, unknown> | null;
|
|
8758
|
+
governance?: Record<string, unknown> | null;
|
|
8759
|
+
createdByType?: DomainRuleCreatedByType | null;
|
|
8760
|
+
createdBy?: string | null;
|
|
8761
|
+
}
|
|
8762
|
+
interface DomainRuleIntakeResponse {
|
|
8763
|
+
intakeId: string;
|
|
8764
|
+
tenantId?: string | null;
|
|
8765
|
+
environment?: string | null;
|
|
8766
|
+
ruleKey?: string | null;
|
|
8767
|
+
ruleType?: string | null;
|
|
8768
|
+
contextKey?: string | null;
|
|
8769
|
+
resourceKey?: string | null;
|
|
8770
|
+
serviceKey?: string | null;
|
|
8771
|
+
status?: DomainRuleStatus | null;
|
|
8772
|
+
grounding?: (Record<string, unknown> & {
|
|
8773
|
+
decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
|
|
8774
|
+
}) | null;
|
|
8775
|
+
definition?: DomainRuleDefinition | null;
|
|
8776
|
+
createdAt?: string | null;
|
|
8777
|
+
}
|
|
8778
|
+
interface DomainRuleMaterializationRequest {
|
|
8779
|
+
ruleDefinitionId: string;
|
|
8780
|
+
materializationKey: string;
|
|
8781
|
+
targetLayer?: DomainRuleTargetLayer | null;
|
|
8782
|
+
targetArtifactType?: string | null;
|
|
8783
|
+
targetArtifactKey?: string | null;
|
|
8784
|
+
targetPointer?: string | null;
|
|
8785
|
+
targetReleaseKey?: string | null;
|
|
8786
|
+
materializedRuleId?: string | null;
|
|
8787
|
+
status?: DomainRuleStatus | null;
|
|
8788
|
+
materializedPayload?: Record<string, unknown> | null;
|
|
8789
|
+
sourceHash?: string | null;
|
|
8790
|
+
validationResult?: Record<string, unknown> | null;
|
|
8791
|
+
appliedByType?: DomainRuleAppliedByType | null;
|
|
8792
|
+
appliedBy?: string | null;
|
|
8793
|
+
}
|
|
8794
|
+
interface DomainRuleMaterialization extends DomainRuleMaterializationRequest {
|
|
8795
|
+
id: string;
|
|
8796
|
+
tenantId?: string | null;
|
|
8797
|
+
environment?: string | null;
|
|
8798
|
+
ruleKey?: string | null;
|
|
8799
|
+
ruleVersion?: number | null;
|
|
8800
|
+
createdAt?: string | null;
|
|
8801
|
+
updatedAt?: string | null;
|
|
8802
|
+
appliedAt?: string | null;
|
|
8803
|
+
decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
|
|
8804
|
+
}
|
|
8805
|
+
interface DomainRuleMaterializationFilters {
|
|
8806
|
+
ruleDefinitionId?: string;
|
|
8807
|
+
targetLayer?: DomainRuleTargetLayer;
|
|
8808
|
+
targetArtifactType?: string;
|
|
8809
|
+
targetArtifactKey?: string;
|
|
8810
|
+
status?: DomainRuleStatus;
|
|
8811
|
+
}
|
|
8812
|
+
interface DomainRuleSimulationRequest {
|
|
8813
|
+
ruleDefinitionId?: string | null;
|
|
8814
|
+
ruleKey?: string | null;
|
|
8815
|
+
ruleType?: string | null;
|
|
8816
|
+
contextKey?: string | null;
|
|
8817
|
+
resourceKey?: string | null;
|
|
8818
|
+
serviceKey?: string | null;
|
|
8819
|
+
definition?: Record<string, unknown> | null;
|
|
8820
|
+
parameters?: Record<string, unknown> | null;
|
|
8821
|
+
condition?: Record<string, unknown> | null;
|
|
8822
|
+
governance?: Record<string, unknown> | null;
|
|
8823
|
+
}
|
|
8824
|
+
interface DomainRuleSimulationResponse {
|
|
8825
|
+
simulationId: string;
|
|
8826
|
+
ruleDefinitionId?: string | null;
|
|
8827
|
+
tenantId?: string | null;
|
|
8828
|
+
environment?: string | null;
|
|
8829
|
+
ruleKey?: string | null;
|
|
8830
|
+
ruleVersion?: number | null;
|
|
8831
|
+
ruleType?: string | null;
|
|
8832
|
+
contextKey?: string | null;
|
|
8833
|
+
resourceKey?: string | null;
|
|
8834
|
+
serviceKey?: string | null;
|
|
8835
|
+
result?: string | null;
|
|
8836
|
+
grounding?: Record<string, unknown> | null;
|
|
8837
|
+
existingCoverage?: unknown[] | null;
|
|
8838
|
+
predictedMaterializations?: unknown[] | null;
|
|
8839
|
+
requiredApprovals?: unknown[] | null;
|
|
8840
|
+
warnings?: unknown[] | null;
|
|
8841
|
+
explainability?: Record<string, unknown> | null;
|
|
8842
|
+
simulatedAt?: string | null;
|
|
8843
|
+
}
|
|
8844
|
+
type DomainRuleMaterializationOutcomeResolution = 'created' | 'reused' | 'selected_existing' | 'selected_explicit' | 'skipped' | 'blocked' | string;
|
|
8845
|
+
interface DomainRulePublicationMaterializationOutcome {
|
|
8846
|
+
resolution?: DomainRuleMaterializationOutcomeResolution | null;
|
|
8847
|
+
materializationKey?: string | null;
|
|
8848
|
+
targetLayer?: DomainRuleTargetLayer | null;
|
|
8849
|
+
targetArtifactType?: string | null;
|
|
8850
|
+
targetArtifactKey?: string | null;
|
|
8851
|
+
targetPointer?: string | null;
|
|
8852
|
+
statusAtResolution?: DomainRuleStatus | null;
|
|
8853
|
+
sourceHash?: string | null;
|
|
8854
|
+
reason?: string | null;
|
|
8855
|
+
}
|
|
8856
|
+
interface DomainRulePublicationDiagnostics {
|
|
8857
|
+
materializationOutcomes?: DomainRulePublicationMaterializationOutcome[] | null;
|
|
8858
|
+
}
|
|
8859
|
+
interface DomainRuleExplainability extends Record<string, unknown> {
|
|
8860
|
+
decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
|
|
8861
|
+
publicationDiagnostics?: DomainRulePublicationDiagnostics | null;
|
|
8862
|
+
}
|
|
8863
|
+
interface DomainRulePublicationRequest {
|
|
8864
|
+
ruleDefinitionId: string;
|
|
8865
|
+
materializationIds?: string[] | null;
|
|
8866
|
+
applyEligibleMaterializations?: boolean | null;
|
|
8867
|
+
publishedByType?: DomainRuleAppliedByType | null;
|
|
8868
|
+
publishedBy?: string | null;
|
|
8869
|
+
publicationNotes?: Record<string, unknown> | null;
|
|
8870
|
+
}
|
|
8871
|
+
interface DomainRulePublicationResponse {
|
|
8872
|
+
publicationId: string;
|
|
8873
|
+
tenantId?: string | null;
|
|
8874
|
+
environment?: string | null;
|
|
8875
|
+
publicationStatus?: string | null;
|
|
8876
|
+
publicationReadiness?: string | null;
|
|
8877
|
+
ruleDefinitionId?: string | null;
|
|
8878
|
+
ruleKey?: string | null;
|
|
8879
|
+
ruleVersion?: number | null;
|
|
8880
|
+
ruleType?: string | null;
|
|
8881
|
+
resourceKey?: string | null;
|
|
8882
|
+
serviceKey?: string | null;
|
|
8883
|
+
definition?: DomainRuleDefinition | null;
|
|
8884
|
+
materializations?: DomainRuleMaterialization[] | null;
|
|
8885
|
+
explainability?: DomainRuleExplainability | null;
|
|
8886
|
+
processedAt?: string | null;
|
|
8887
|
+
}
|
|
8888
|
+
|
|
8889
|
+
interface DomainRuleRequestOptions extends ResourceDiscoveryRequestOptions {
|
|
8890
|
+
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
8891
|
+
}
|
|
8892
|
+
declare class DomainRuleService {
|
|
8893
|
+
private readonly http;
|
|
8894
|
+
private readonly discovery;
|
|
8895
|
+
intake(request: DomainRuleIntakeRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleIntakeResponse>;
|
|
8896
|
+
createDefinition(request: DomainRuleDefinitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition>;
|
|
8897
|
+
listDefinitions(filters?: DomainRuleDefinitionFilters, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition[]>;
|
|
8898
|
+
transitionDefinitionStatus(definitionId: string, request: DomainRuleStatusTransitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition>;
|
|
8899
|
+
getDefinitionTimeline(definitionId: string, options?: DomainRuleRequestOptions): Observable<DomainRuleTimelineResponse>;
|
|
8900
|
+
simulate(request: DomainRuleSimulationRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleSimulationResponse>;
|
|
8901
|
+
publish(request: DomainRulePublicationRequest, options?: DomainRuleRequestOptions): Observable<DomainRulePublicationResponse>;
|
|
8902
|
+
createMaterialization(request: DomainRuleMaterializationRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization>;
|
|
8903
|
+
listMaterializations(filters?: DomainRuleMaterializationFilters, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization[]>;
|
|
8904
|
+
transitionMaterializationStatus(materializationId: string, request: DomainRuleStatusTransitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization>;
|
|
8905
|
+
private buildParams;
|
|
8906
|
+
private resolveHeaders;
|
|
8907
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DomainRuleService, never>;
|
|
8908
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
|
|
8909
|
+
}
|
|
8910
|
+
|
|
7248
8911
|
interface ResourceActionOpenAdapterOptions {
|
|
7249
8912
|
resourcePath: string;
|
|
7250
8913
|
resourceId?: string | number | null;
|
|
@@ -7297,6 +8960,30 @@ declare class ResourceSurfaceOpenAdapterService {
|
|
|
7297
8960
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceSurfaceOpenAdapterService>;
|
|
7298
8961
|
}
|
|
7299
8962
|
|
|
8963
|
+
type SurfaceOpenMaterializationContext = {
|
|
8964
|
+
payload?: unknown;
|
|
8965
|
+
runtime?: unknown;
|
|
8966
|
+
};
|
|
8967
|
+
declare class SurfaceOpenMaterializerService {
|
|
8968
|
+
private readonly discovery;
|
|
8969
|
+
materialize(payload: SurfaceOpenPayload, context?: SurfaceOpenMaterializationContext): Promise<SurfaceOpenPayload>;
|
|
8970
|
+
private shouldMaterializeItemReadProjection;
|
|
8971
|
+
private resolveResourceId;
|
|
8972
|
+
private resolveItemReadUrl;
|
|
8973
|
+
private resolveSchemaFields;
|
|
8974
|
+
private materializeArrayAsTable;
|
|
8975
|
+
private projectTableInputs;
|
|
8976
|
+
private buildLocalTableConfig;
|
|
8977
|
+
private inferColumnsFromData;
|
|
8978
|
+
private mergeMaterializationContext;
|
|
8979
|
+
private stableSurfaceId;
|
|
8980
|
+
private unwrapRestData;
|
|
8981
|
+
private normalizeError;
|
|
8982
|
+
private readPath;
|
|
8983
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceOpenMaterializerService, never>;
|
|
8984
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SurfaceOpenMaterializerService>;
|
|
8985
|
+
}
|
|
8986
|
+
|
|
7300
8987
|
type ResolvedCrudOperationSource = 'explicit' | 'capability' | 'surface' | 'link' | 'convention';
|
|
7301
8988
|
interface ExplicitCrudResolutionContract {
|
|
7302
8989
|
schemaUrl?: string | null;
|
|
@@ -7981,8 +9668,15 @@ type GlobalActionCatalogEntry = {
|
|
|
7981
9668
|
required?: string[];
|
|
7982
9669
|
example?: any;
|
|
7983
9670
|
};
|
|
9671
|
+
param?: {
|
|
9672
|
+
required?: boolean;
|
|
9673
|
+
label?: string;
|
|
9674
|
+
placeholder?: string;
|
|
9675
|
+
hint?: string;
|
|
9676
|
+
example?: string;
|
|
9677
|
+
};
|
|
7984
9678
|
};
|
|
7985
|
-
declare const GLOBAL_ACTION_CATALOG
|
|
9679
|
+
declare const GLOBAL_ACTION_CATALOG: InjectionToken<readonly GlobalActionCatalogEntry[][]>;
|
|
7986
9680
|
declare function provideGlobalActionCatalog(entries: GlobalActionCatalogEntry[]): Provider;
|
|
7987
9681
|
declare function getGlobalActionCatalog(catalog: ReadonlyArray<GlobalActionCatalogEntry[]> | null | undefined): GlobalActionCatalogEntry[];
|
|
7988
9682
|
declare const PRAXIS_GLOBAL_ACTION_CATALOG: GlobalActionCatalogEntry[];
|
|
@@ -7993,22 +9687,6 @@ interface GlobalSurfaceService {
|
|
|
7993
9687
|
}
|
|
7994
9688
|
declare const GLOBAL_SURFACE_SERVICE: InjectionToken<GlobalSurfaceService>;
|
|
7995
9689
|
|
|
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
9690
|
declare const SURFACE_OPEN_I18N_NAMESPACE = "surfaceOpen";
|
|
8013
9691
|
declare const SURFACE_OPEN_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
8014
9692
|
|
|
@@ -8111,6 +9789,8 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
|
8111
9789
|
|
|
8112
9790
|
declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
8113
9791
|
|
|
9792
|
+
declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
|
|
9793
|
+
|
|
8114
9794
|
declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
|
|
8115
9795
|
declare function providePraxisJsonLogicOperator(definition: PraxisJsonLogicOperatorDefinition): Provider;
|
|
8116
9796
|
declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLogicOperatorDefinition): Provider;
|
|
@@ -8202,8 +9882,16 @@ interface ComponentPortEndpointRef {
|
|
|
8202
9882
|
direction: 'input' | 'output';
|
|
8203
9883
|
componentType?: string;
|
|
8204
9884
|
bindingPath?: string;
|
|
9885
|
+
nestedPath?: ComponentPortPathSegment[];
|
|
8205
9886
|
};
|
|
8206
9887
|
}
|
|
9888
|
+
interface ComponentPortPathSegment {
|
|
9889
|
+
kind: 'widget' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
|
|
9890
|
+
id?: string;
|
|
9891
|
+
key?: string;
|
|
9892
|
+
index?: number;
|
|
9893
|
+
componentType?: string;
|
|
9894
|
+
}
|
|
8207
9895
|
interface StateEndpointRef {
|
|
8208
9896
|
kind: 'state';
|
|
8209
9897
|
ref: {
|
|
@@ -8212,7 +9900,11 @@ interface StateEndpointRef {
|
|
|
8212
9900
|
writable?: boolean;
|
|
8213
9901
|
};
|
|
8214
9902
|
}
|
|
8215
|
-
|
|
9903
|
+
interface GlobalActionEndpointRef {
|
|
9904
|
+
kind: 'global-action';
|
|
9905
|
+
ref: GlobalActionRef;
|
|
9906
|
+
}
|
|
9907
|
+
type EndpointRef = ComponentPortEndpointRef | StateEndpointRef | GlobalActionEndpointRef;
|
|
8216
9908
|
type LinkIntent = 'event-propagation' | 'state-write' | 'state-read' | 'command-dispatch' | 'selection-sync' | 'data-projection' | 'status-propagation';
|
|
8217
9909
|
interface LinkPolicy {
|
|
8218
9910
|
debounceMs?: number;
|
|
@@ -8243,7 +9935,7 @@ interface CompositionLink {
|
|
|
8243
9935
|
|
|
8244
9936
|
type DiagnosticSeverity = 'info' | 'warning' | 'error' | 'fatal';
|
|
8245
9937
|
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';
|
|
9938
|
+
type DiagnosticSubjectKind = 'page' | 'widget' | 'port' | 'state' | 'derived-state' | 'global-action' | 'link' | 'transform-step' | 'runtime-event' | 'runtime-snapshot';
|
|
8247
9939
|
interface DiagnosticSubjectRef {
|
|
8248
9940
|
kind: DiagnosticSubjectKind;
|
|
8249
9941
|
pageId?: string;
|
|
@@ -8251,6 +9943,7 @@ interface DiagnosticSubjectRef {
|
|
|
8251
9943
|
widgetType?: string;
|
|
8252
9944
|
portId?: string;
|
|
8253
9945
|
statePath?: string;
|
|
9946
|
+
actionId?: string;
|
|
8254
9947
|
linkId?: string;
|
|
8255
9948
|
transformIndex?: number;
|
|
8256
9949
|
eventId?: string;
|
|
@@ -8446,6 +10139,7 @@ interface FormActionButton {
|
|
|
8446
10139
|
disabled?: boolean;
|
|
8447
10140
|
type?: 'button' | 'submit' | 'reset';
|
|
8448
10141
|
action?: string;
|
|
10142
|
+
globalAction?: GlobalActionRef;
|
|
8449
10143
|
tooltip?: string;
|
|
8450
10144
|
loading?: boolean;
|
|
8451
10145
|
size?: 'small' | 'medium' | 'large';
|
|
@@ -8593,7 +10287,7 @@ interface FieldsetLayout {
|
|
|
8593
10287
|
rows: FormRowLayout[];
|
|
8594
10288
|
hiddenCondition?: JsonLogicExpression | null;
|
|
8595
10289
|
}
|
|
8596
|
-
type FormRuleTargetType = 'field' | 'section' | 'action' | 'row' | 'column';
|
|
10290
|
+
type FormRuleTargetType = 'field' | 'section' | 'action' | 'row' | 'column' | 'visualBlock';
|
|
8597
10291
|
interface FormLayoutRule {
|
|
8598
10292
|
id: string;
|
|
8599
10293
|
name: string;
|
|
@@ -8732,6 +10426,29 @@ interface EditorialFormTemplateBuildOptions {
|
|
|
8732
10426
|
*/
|
|
8733
10427
|
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfig;
|
|
8734
10428
|
|
|
10429
|
+
interface FormFieldLayoutItem {
|
|
10430
|
+
kind: 'field';
|
|
10431
|
+
id: string;
|
|
10432
|
+
fieldName: string;
|
|
10433
|
+
}
|
|
10434
|
+
interface FormRichContentLayoutItem {
|
|
10435
|
+
kind: 'richContent';
|
|
10436
|
+
id: string;
|
|
10437
|
+
document: RichContentDocument;
|
|
10438
|
+
layout?: 'block' | 'inline';
|
|
10439
|
+
rootClassName?: string | null;
|
|
10440
|
+
}
|
|
10441
|
+
type FormLayoutItem = FormFieldLayoutItem | FormRichContentLayoutItem;
|
|
10442
|
+
interface FormLayoutItemsColumnLike {
|
|
10443
|
+
fields?: unknown;
|
|
10444
|
+
items?: unknown;
|
|
10445
|
+
}
|
|
10446
|
+
declare function createFieldLayoutItem(fieldName: string, index?: number): FormFieldLayoutItem;
|
|
10447
|
+
declare function isFormLayoutItem(value: unknown): value is FormLayoutItem;
|
|
10448
|
+
declare function normalizeFormLayoutItems(column: FormLayoutItemsColumnLike | null | undefined): FormLayoutItem[];
|
|
10449
|
+
declare function getFormLayoutFieldNames(items: readonly FormLayoutItem[] | null | undefined): string[];
|
|
10450
|
+
declare function getFormColumnFieldNames(column: FormLayoutItemsColumnLike | null | undefined): string[];
|
|
10451
|
+
|
|
8735
10452
|
type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
8736
10453
|
interface ColumnSpan {
|
|
8737
10454
|
xs?: number;
|
|
@@ -8763,7 +10480,10 @@ interface ColumnHidden {
|
|
|
8763
10480
|
}
|
|
8764
10481
|
type ColumnAlign = 'start' | 'center' | 'end' | 'stretch';
|
|
8765
10482
|
interface FormColumn {
|
|
10483
|
+
/** Legacy field-name list accepted as migration input while items becomes canonical. */
|
|
8766
10484
|
fields: string[];
|
|
10485
|
+
/** Canonical ordered layout items for fields and visual blocks. */
|
|
10486
|
+
items?: FormLayoutItem[];
|
|
8767
10487
|
id: string;
|
|
8768
10488
|
title?: string;
|
|
8769
10489
|
span?: ColumnSpan;
|
|
@@ -8837,8 +10557,10 @@ interface FormSectionHeaderAction {
|
|
|
8837
10557
|
label: string;
|
|
8838
10558
|
/** Icon rendered in the section header action slot. */
|
|
8839
10559
|
icon: string;
|
|
8840
|
-
/** Optional action name emitted by the runtime; defaults to `id` when omitted. */
|
|
10560
|
+
/** Optional local action name emitted by the runtime; defaults to `id` when omitted. */
|
|
8841
10561
|
action?: string;
|
|
10562
|
+
/** Optional structured global action executed by hosts through GlobalActionService. */
|
|
10563
|
+
globalAction?: GlobalActionRef;
|
|
8842
10564
|
/** Optional tooltip override. Falls back to `label` when omitted. */
|
|
8843
10565
|
tooltip?: string;
|
|
8844
10566
|
/** Optional theme color mapped to Angular Material button tones. */
|
|
@@ -8933,6 +10655,8 @@ interface FormConfig {
|
|
|
8933
10655
|
messages?: FormMessagesLayout;
|
|
8934
10656
|
/** Form rules for dynamic behavior */
|
|
8935
10657
|
formRules?: FormLayoutRule[];
|
|
10658
|
+
/** Conditional command rules evaluated after form rule values stabilize. */
|
|
10659
|
+
formCommandRules?: PraxisRuntimeConditionalEffectRule<PraxisRuntimeGlobalActionEffect>[];
|
|
8936
10660
|
/**
|
|
8937
10661
|
* Raw state emitted by the visual rule builder.
|
|
8938
10662
|
* Stored separately to allow round-trip editing without losing metadata.
|
|
@@ -9143,6 +10867,7 @@ interface FormInitializationError {
|
|
|
9143
10867
|
}
|
|
9144
10868
|
interface FormCustomActionEvent {
|
|
9145
10869
|
actionId: string;
|
|
10870
|
+
globalAction?: GlobalActionRef;
|
|
9146
10871
|
formData: any;
|
|
9147
10872
|
isValid: boolean;
|
|
9148
10873
|
source: 'button' | 'shortcut' | 'section-header';
|
|
@@ -9166,7 +10891,7 @@ interface RulePropertyDefinition {
|
|
|
9166
10891
|
}>;
|
|
9167
10892
|
category?: 'content' | 'appearance' | 'behavior' | 'layout' | 'validation';
|
|
9168
10893
|
}
|
|
9169
|
-
type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column', RulePropertyDefinition[]>;
|
|
10894
|
+
type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column' | 'visualBlock', RulePropertyDefinition[]>;
|
|
9170
10895
|
declare const RULE_PROPERTY_SCHEMA: RulePropertySchema;
|
|
9171
10896
|
|
|
9172
10897
|
type EditorialOrientation = 'horizontal' | 'vertical';
|
|
@@ -10088,6 +11813,43 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
|
|
|
10088
11813
|
status?: PersistedPageConfig['status'];
|
|
10089
11814
|
}): PersistedPageConfig;
|
|
10090
11815
|
|
|
11816
|
+
type RecordRelatedSurfaceOperationId = 'dynamicPage.surface.discover' | 'dynamicPage.surface.open' | 'dynamicPage.surface.query';
|
|
11817
|
+
interface RecordRelatedSurfaceEndpoint {
|
|
11818
|
+
widget: string;
|
|
11819
|
+
componentType?: string;
|
|
11820
|
+
nestedPath?: ComponentPortPathSegment[];
|
|
11821
|
+
port?: string;
|
|
11822
|
+
childWidgetKey?: string;
|
|
11823
|
+
resourcePath?: string | null;
|
|
11824
|
+
}
|
|
11825
|
+
interface RecordRelatedSurfaceContext {
|
|
11826
|
+
id: string;
|
|
11827
|
+
label: string;
|
|
11828
|
+
relation: string;
|
|
11829
|
+
operationId: RecordRelatedSurfaceOperationId;
|
|
11830
|
+
source: RecordRelatedSurfaceEndpoint;
|
|
11831
|
+
target: RecordRelatedSurfaceEndpoint;
|
|
11832
|
+
resourceSurface?: ResourceSurfaceCatalogItem;
|
|
11833
|
+
statePath?: string;
|
|
11834
|
+
description?: string | null;
|
|
11835
|
+
}
|
|
11836
|
+
interface RecordRelatedSurfaceContextPack {
|
|
11837
|
+
source: 'dynamic-page-composition' | 'resource-capabilities' | 'mixed';
|
|
11838
|
+
surfaces: RecordRelatedSurfaceContext[];
|
|
11839
|
+
}
|
|
11840
|
+
|
|
11841
|
+
interface DomainKnowledgeTimelineRichContentOptions {
|
|
11842
|
+
title?: string;
|
|
11843
|
+
emptyText?: string;
|
|
11844
|
+
}
|
|
11845
|
+
declare function domainKnowledgeTimelineToRichContentDocument(timeline: DomainKnowledgeChangeSetTimelineResponse, options?: DomainKnowledgeTimelineRichContentOptions): RichContentDocument;
|
|
11846
|
+
|
|
11847
|
+
interface DomainRuleTimelineRichContentOptions {
|
|
11848
|
+
title?: string;
|
|
11849
|
+
emptyText?: string;
|
|
11850
|
+
}
|
|
11851
|
+
declare function domainRuleTimelineToRichContentDocument(timeline: DomainRuleTimelineResponse, options?: DomainRuleTimelineRichContentOptions): RichContentDocument;
|
|
11852
|
+
|
|
10091
11853
|
/**
|
|
10092
11854
|
* Navigation/back behavior configuration used by form hosts (e.g., CRUD dialogs/routes).
|
|
10093
11855
|
* Moved from @praxisui/crud to @praxisui/core to avoid circular deps between
|
|
@@ -10107,16 +11869,59 @@ interface BackConfig {
|
|
|
10107
11869
|
confirmOnDirty?: boolean;
|
|
10108
11870
|
}
|
|
10109
11871
|
|
|
11872
|
+
declare const PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION: "praxis.query-filter-expression.v1";
|
|
11873
|
+
interface PraxisDataQueryContextMeta extends Record<string, unknown> {
|
|
11874
|
+
domainCatalog?: DomainCatalogContextHint | null;
|
|
11875
|
+
}
|
|
10110
11876
|
interface PraxisDataQueryContext {
|
|
10111
11877
|
filters?: Record<string, unknown> | null;
|
|
11878
|
+
filterExpression?: PraxisQueryFilterExpression | null;
|
|
10112
11879
|
sort?: string[] | null;
|
|
10113
11880
|
limit?: number | null;
|
|
10114
11881
|
page?: {
|
|
10115
11882
|
index?: number | null;
|
|
10116
11883
|
size?: number | null;
|
|
10117
11884
|
} | null;
|
|
10118
|
-
meta?:
|
|
11885
|
+
meta?: PraxisDataQueryContextMeta | null;
|
|
11886
|
+
}
|
|
11887
|
+
interface PraxisQueryFilterExpression {
|
|
11888
|
+
schemaVersion: typeof PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION;
|
|
11889
|
+
root: PraxisQueryFilterNode;
|
|
11890
|
+
projection?: {
|
|
11891
|
+
filters?: Record<string, unknown> | null;
|
|
11892
|
+
lossless: boolean;
|
|
11893
|
+
reason?: string;
|
|
11894
|
+
} | null;
|
|
11895
|
+
governance?: PraxisQueryFilterGovernance | null;
|
|
11896
|
+
}
|
|
11897
|
+
interface PraxisQueryFilterGovernance extends Record<string, unknown> {
|
|
11898
|
+
source?: 'selected-records' | 'manual' | 'workflow' | 'ai-authored';
|
|
11899
|
+
decisionId?: string;
|
|
11900
|
+
explanation?: string;
|
|
11901
|
+
}
|
|
11902
|
+
type PraxisQueryFilterNode = PraxisQueryFilterGroup | PraxisQueryFilterPredicate;
|
|
11903
|
+
interface PraxisQueryFilterGroup {
|
|
11904
|
+
kind: 'group';
|
|
11905
|
+
operator: 'all' | 'any';
|
|
11906
|
+
clauses: PraxisQueryFilterNode[];
|
|
11907
|
+
}
|
|
11908
|
+
interface PraxisQueryFilterPredicate {
|
|
11909
|
+
kind: 'predicate';
|
|
11910
|
+
field: string;
|
|
11911
|
+
operator: PraxisQueryFilterPredicateOperator;
|
|
11912
|
+
value?: unknown;
|
|
11913
|
+
values?: unknown[];
|
|
11914
|
+
label?: string;
|
|
11915
|
+
source?: PraxisQueryFilterPredicateSource;
|
|
11916
|
+
}
|
|
11917
|
+
type PraxisQueryFilterPredicateOperator = 'equals' | 'notEquals' | 'in' | 'notIn' | 'contains' | 'startsWith' | 'between' | 'gte' | 'lte' | 'isNull' | 'isNotNull';
|
|
11918
|
+
interface PraxisQueryFilterPredicateSource extends Record<string, unknown> {
|
|
11919
|
+
kind: 'selected-records' | 'manual' | 'workflow' | 'current-context';
|
|
11920
|
+
field?: string;
|
|
11921
|
+
selectedIds?: Array<string | number>;
|
|
10119
11922
|
}
|
|
11923
|
+
declare function normalizePraxisQueryFilterNode(node?: Record<string, unknown> | null): PraxisQueryFilterNode | null;
|
|
11924
|
+
declare function normalizePraxisQueryFilterExpression(expression?: Partial<PraxisQueryFilterExpression> | null): PraxisQueryFilterExpression | null;
|
|
10120
11925
|
declare function normalizePraxisDataQueryContext(context?: PraxisDataQueryContext | null): PraxisDataQueryContext | null;
|
|
10121
11926
|
declare function resolvePraxisFilterCriteria(filterCriteria?: Record<string, unknown> | null, queryContext?: PraxisDataQueryContext | null): Record<string, unknown>;
|
|
10122
11927
|
|
|
@@ -10455,7 +12260,7 @@ interface GlobalActionField {
|
|
|
10455
12260
|
dependsOnValue?: string;
|
|
10456
12261
|
}
|
|
10457
12262
|
interface GlobalActionUiSchema {
|
|
10458
|
-
id:
|
|
12263
|
+
id: string;
|
|
10459
12264
|
label: string;
|
|
10460
12265
|
fields: GlobalActionField[];
|
|
10461
12266
|
editorMode?: 'default' | 'surface-open';
|
|
@@ -10463,6 +12268,33 @@ interface GlobalActionUiSchema {
|
|
|
10463
12268
|
declare const GLOBAL_ACTION_UI_SCHEMAS: GlobalActionUiSchema[];
|
|
10464
12269
|
declare function getGlobalActionUiSchema(id: string | undefined): GlobalActionUiSchema | undefined;
|
|
10465
12270
|
|
|
12271
|
+
type GlobalActionValidationCode = 'globalAction.actionId.required' | 'globalAction.payload.required' | 'globalAction.payload.type';
|
|
12272
|
+
interface GlobalActionValidationIssue {
|
|
12273
|
+
code: GlobalActionValidationCode;
|
|
12274
|
+
path?: string;
|
|
12275
|
+
actionId?: string;
|
|
12276
|
+
requiredKeys?: string[];
|
|
12277
|
+
missingKeys?: string[];
|
|
12278
|
+
expectedType?: string;
|
|
12279
|
+
actualType?: string;
|
|
12280
|
+
}
|
|
12281
|
+
interface GlobalActionValidationTarget {
|
|
12282
|
+
ref: GlobalActionRef | null | undefined;
|
|
12283
|
+
catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null;
|
|
12284
|
+
path?: string;
|
|
12285
|
+
}
|
|
12286
|
+
declare function normalizeGlobalActionRef(ref: GlobalActionRef | null | undefined): GlobalActionRef | null;
|
|
12287
|
+
declare function isGlobalActionRef(value: unknown): value is GlobalActionRef;
|
|
12288
|
+
declare function getRequiredGlobalActionPayloadKeys(actionId: string | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
|
|
12289
|
+
declare function hasMeaningfulGlobalActionPayloadValue(value: any): boolean;
|
|
12290
|
+
declare function getMissingGlobalActionPayloadKeys(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
|
|
12291
|
+
declare function isRequiredGlobalActionParamPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
|
|
12292
|
+
declare function isRequiredGlobalActionPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
|
|
12293
|
+
declare function getGlobalActionPayloadActualType(value: unknown): string;
|
|
12294
|
+
declare function getGlobalActionPayloadTypeIssue(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): Pick<GlobalActionValidationIssue, 'expectedType' | 'actualType'> | null;
|
|
12295
|
+
declare function validateGlobalActionRef(ref: GlobalActionRef | null | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null, path?: string): GlobalActionValidationIssue[];
|
|
12296
|
+
declare function validateGlobalActionRefs(targets: GlobalActionValidationTarget[]): GlobalActionValidationIssue[];
|
|
12297
|
+
|
|
10466
12298
|
interface SurfaceOpenPreset {
|
|
10467
12299
|
id: string;
|
|
10468
12300
|
label: string;
|
|
@@ -10591,6 +12423,209 @@ interface AiConcept {
|
|
|
10591
12423
|
}
|
|
10592
12424
|
type AiConceptPack = Record<string, AiConcept>;
|
|
10593
12425
|
|
|
12426
|
+
/**
|
|
12427
|
+
* Representa o contrato canônico de authoring executável de um componente.
|
|
12428
|
+
*/
|
|
12429
|
+
interface ComponentAuthoringManifest {
|
|
12430
|
+
/** Versão do schema do manifesto (ex: 1.0.0) */
|
|
12431
|
+
schemaVersion: string;
|
|
12432
|
+
/** Identificador único do componente no registry (ex: praxis-table) */
|
|
12433
|
+
componentId: string;
|
|
12434
|
+
/** Nome do pacote npm que possui o componente (ex: @praxisui/table) */
|
|
12435
|
+
ownerPackage: string;
|
|
12436
|
+
/** ID do schema de configuração (ex: TableConfig) */
|
|
12437
|
+
configSchemaId: string;
|
|
12438
|
+
/** Versão do manifesto específico deste componente */
|
|
12439
|
+
manifestVersion: string;
|
|
12440
|
+
/** Inputs que o componente aceita em runtime */
|
|
12441
|
+
runtimeInputs: ManifestInput[];
|
|
12442
|
+
/** Alvos que podem ser editados via AI */
|
|
12443
|
+
editableTargets: ManifestTarget[];
|
|
12444
|
+
/** Operações atômicas permitidas */
|
|
12445
|
+
operations: ManifestOperation[];
|
|
12446
|
+
/** Validadores de integridade da configuração */
|
|
12447
|
+
validators: ManifestValidator[];
|
|
12448
|
+
/** Requisitos para round-trip sem perda de informação */
|
|
12449
|
+
roundTripRequirements?: string[];
|
|
12450
|
+
/**
|
|
12451
|
+
* Exemplos de intenção → operação para uso em Few-Shot e evals.
|
|
12452
|
+
* Obrigatório: o gate de aceitação rejeita manifestos sem examples.
|
|
12453
|
+
* Deve conter ao menos um exemplo negativo (isPositive: false).
|
|
12454
|
+
*/
|
|
12455
|
+
examples: ManifestExample[];
|
|
12456
|
+
/**
|
|
12457
|
+
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
12458
|
+
* base, mas precisam expor semantica granular por componente/controlType.
|
|
12459
|
+
*/
|
|
12460
|
+
controlProfiles?: ManifestControlProfile[];
|
|
12461
|
+
}
|
|
12462
|
+
interface ManifestInput {
|
|
12463
|
+
name: string;
|
|
12464
|
+
type: string;
|
|
12465
|
+
description?: string;
|
|
12466
|
+
allowedValues?: any[];
|
|
12467
|
+
}
|
|
12468
|
+
interface ManifestTarget {
|
|
12469
|
+
kind: string;
|
|
12470
|
+
resolver: string;
|
|
12471
|
+
description: string;
|
|
12472
|
+
}
|
|
12473
|
+
/**
|
|
12474
|
+
* Política de submissão para campos locais num formulário.
|
|
12475
|
+
* - 'omit': campo não é incluído no payload de submissão (default para campos locais).
|
|
12476
|
+
* - 'include': campo é sempre incluído no payload.
|
|
12477
|
+
* - 'includeWhenDirty': campo é incluído apenas se o valor foi alterado pelo usuário.
|
|
12478
|
+
* NOTA: 'transient' NÃO é um valor válido; use source:'local' + transient:true no schema de input.
|
|
12479
|
+
*/
|
|
12480
|
+
type SubmitPolicy = 'omit' | 'include' | 'includeWhenDirty';
|
|
12481
|
+
type ManifestSubmissionImpact = 'none' | 'visual-only' | 'config-only' | 'affects-submission' | 'affects-schema-backed-data' | 'affects-remote-binding';
|
|
12482
|
+
interface ManifestOperation {
|
|
12483
|
+
operationId: string;
|
|
12484
|
+
title: string;
|
|
12485
|
+
/**
|
|
12486
|
+
* Escopo da operação.
|
|
12487
|
+
* - 'global': opera sobre a configuração raiz; target.required deve ser false.
|
|
12488
|
+
* - Outros valores: opera sobre um alvo específico; target.required deve ser true.
|
|
12489
|
+
* O valor 'target' é reservado para uso futuro e não deve ser usado.
|
|
12490
|
+
*/
|
|
12491
|
+
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';
|
|
12492
|
+
/**
|
|
12493
|
+
* @deprecated Use `target.kind` em vez disso.
|
|
12494
|
+
* Mantido para compatibilidade retroativa com ferramentas que lêem o registry.
|
|
12495
|
+
* Deve ser igual a `target.kind` quando `target` estiver presente.
|
|
12496
|
+
*/
|
|
12497
|
+
targetKind?: string;
|
|
12498
|
+
/**
|
|
12499
|
+
* Definição estruturada do alvo da operação.
|
|
12500
|
+
* Obrigatório para operações com scope diferente de 'global'.
|
|
12501
|
+
* Usado pelo backend para resolver o alvo antes de compilar o patch.
|
|
12502
|
+
*/
|
|
12503
|
+
target?: {
|
|
12504
|
+
/** Tipo do alvo (ex: column, rule) */
|
|
12505
|
+
kind: string;
|
|
12506
|
+
/** Resolver canônico usado para localizar o alvo (ex: column-by-field) */
|
|
12507
|
+
resolver: string;
|
|
12508
|
+
/** Política para lidar com ambiguidades na resolução */
|
|
12509
|
+
ambiguityPolicy?: 'fail' | 'first' | 'all';
|
|
12510
|
+
/** Se o alvo é obrigatório para a operação */
|
|
12511
|
+
required: boolean;
|
|
12512
|
+
};
|
|
12513
|
+
/** Schema JSON do payload de entrada da operação */
|
|
12514
|
+
inputSchema: any;
|
|
12515
|
+
/**
|
|
12516
|
+
* Efeitos que a operação causa na configuração.
|
|
12517
|
+
* Usado pelo backend para compilar o patch de forma determinística.
|
|
12518
|
+
*/
|
|
12519
|
+
effects: ManifestEffect[];
|
|
12520
|
+
/** Se true, a operação é destrutiva e pode causar perda de dados/configuração */
|
|
12521
|
+
destructive?: boolean;
|
|
12522
|
+
/**
|
|
12523
|
+
* Se true, o agente DEVE solicitar confirmação explícita antes de aplicar.
|
|
12524
|
+
* Obrigatório para todas as operações com destructive:true.
|
|
12525
|
+
*/
|
|
12526
|
+
requiresConfirmation?: boolean;
|
|
12527
|
+
/** IDs dos validadores que devem ser executados para esta operação */
|
|
12528
|
+
validators?: string[];
|
|
12529
|
+
/**
|
|
12530
|
+
* Caminhos (JSON Path-like) na configuração afetados por esta operação.
|
|
12531
|
+
* Deve cobrir todos os paths tocados pelos effects.
|
|
12532
|
+
* Usado pelo backend para validação de acesso e auditoria de mudanças.
|
|
12533
|
+
*/
|
|
12534
|
+
affectedPaths: string[];
|
|
12535
|
+
/**
|
|
12536
|
+
* Impacto declarado da operação sobre submissão, configuração visual ou binding remoto.
|
|
12537
|
+
* Boolean permanece aceito para manifests legados; manifests semanticamente validados devem usar
|
|
12538
|
+
* ManifestSubmissionImpact para evitar inferencia fragil no backend.
|
|
12539
|
+
*/
|
|
12540
|
+
submissionImpact: ManifestSubmissionImpact | boolean;
|
|
12541
|
+
/**
|
|
12542
|
+
* Condições de estado que devem ser verdadeiras antes de executar a operação.
|
|
12543
|
+
* Usado pelo backend para validação prévia ao patch.
|
|
12544
|
+
* Ex: ['config-initialized', 'target-exists']
|
|
12545
|
+
*/
|
|
12546
|
+
preconditions: string[];
|
|
12547
|
+
}
|
|
12548
|
+
/**
|
|
12549
|
+
* Efeito atômico sobre a configuração.
|
|
12550
|
+
* Usa discriminated union por `kind` para documentar quais campos são obrigatórios:
|
|
12551
|
+
*
|
|
12552
|
+
* - 'merge-object': path obrigatório; funde o payload no objeto no path.
|
|
12553
|
+
* - 'merge-by-key': path + key obrigatórios; funde pelo campo-chave em uma coleção.
|
|
12554
|
+
* - 'append-unique': path + key obrigatórios; adiciona item se não existir (deduplicação por key).
|
|
12555
|
+
* - 'remove-by-key': path + key obrigatórios; remove item da coleção pelo valor da key.
|
|
12556
|
+
* - 'reorder-by-key': path + key obrigatórios; reordena coleção por key.
|
|
12557
|
+
* - 'set-value': path obrigatório; seta o valor diretamente no path.
|
|
12558
|
+
* - 'compile-domain-patch': handler obrigatório; delega compilação a um handler especializado.
|
|
12559
|
+
*/
|
|
12560
|
+
interface ManifestEffect {
|
|
12561
|
+
kind: 'merge-object' | 'merge-by-key' | 'append-unique' | 'remove-by-key' | 'reorder-by-key' | 'set-value' | 'compile-domain-patch';
|
|
12562
|
+
/** Path JSON-like na configuração onde o efeito é aplicado. Obrigatório para todos os kinds exceto 'compile-domain-patch'. */
|
|
12563
|
+
path?: string;
|
|
12564
|
+
/** Chave de identidade em coleções. Obrigatório para merge-by-key, append-unique, remove-by-key, reorder-by-key. */
|
|
12565
|
+
key?: string;
|
|
12566
|
+
/** Valor literal para efeitos set-value quando o valor não vem do input da operação. */
|
|
12567
|
+
value?: unknown;
|
|
12568
|
+
/** Caminho opcional dentro do input da operação usado por efeitos set-value. */
|
|
12569
|
+
inputPath?: string;
|
|
12570
|
+
/** ID do handler especializado. Obrigatório quando kind é 'compile-domain-patch'. */
|
|
12571
|
+
handler?: string;
|
|
12572
|
+
handlerContract?: ManifestDomainPatchHandlerContract;
|
|
12573
|
+
}
|
|
12574
|
+
interface ManifestDomainPatchHandlerContract {
|
|
12575
|
+
reads: string[];
|
|
12576
|
+
writes: string[];
|
|
12577
|
+
identityKeys: string[];
|
|
12578
|
+
inputSchema?: any;
|
|
12579
|
+
failureModes: string[];
|
|
12580
|
+
description: string;
|
|
12581
|
+
}
|
|
12582
|
+
interface ManifestValidator {
|
|
12583
|
+
validatorId: string;
|
|
12584
|
+
level: 'error' | 'warning' | 'info';
|
|
12585
|
+
code: string;
|
|
12586
|
+
description: string;
|
|
12587
|
+
}
|
|
12588
|
+
interface ManifestExample {
|
|
12589
|
+
id: string;
|
|
12590
|
+
request: string;
|
|
12591
|
+
operationId: string;
|
|
12592
|
+
target?: string;
|
|
12593
|
+
params?: any;
|
|
12594
|
+
isPositive?: boolean;
|
|
12595
|
+
}
|
|
12596
|
+
interface ManifestControlProfile {
|
|
12597
|
+
/** Identificador estavel do perfil dentro do manifesto familiar. */
|
|
12598
|
+
profileId: string;
|
|
12599
|
+
/** Nome curto usado por ferramentas de authoring. */
|
|
12600
|
+
title: string;
|
|
12601
|
+
/** Explica a semantica que este perfil adiciona sobre o manifesto base. */
|
|
12602
|
+
description: string;
|
|
12603
|
+
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
12604
|
+
appliesTo: ManifestControlProfileApplicability;
|
|
12605
|
+
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
12606
|
+
editableTargets?: ManifestTarget[];
|
|
12607
|
+
/** Operacoes especificas do perfil/controlType. */
|
|
12608
|
+
operations: ManifestOperation[];
|
|
12609
|
+
/** Validadores especificos do perfil/controlType. */
|
|
12610
|
+
validators: ManifestValidator[];
|
|
12611
|
+
/** Exemplos/evals especificos do perfil/controlType. */
|
|
12612
|
+
examples: ManifestExample[];
|
|
12613
|
+
/** Requisitos adicionais de round-trip para este perfil. */
|
|
12614
|
+
roundTripRequirements?: string[];
|
|
12615
|
+
}
|
|
12616
|
+
interface ManifestControlProfileApplicability {
|
|
12617
|
+
/** IDs de componentes do registry que devem receber este perfil. */
|
|
12618
|
+
componentIds?: string[];
|
|
12619
|
+
/** Selectors publicos que devem receber este perfil. */
|
|
12620
|
+
selectors?: string[];
|
|
12621
|
+
/** Control types canonicos ou aliases que devem receber este perfil. */
|
|
12622
|
+
controlTypes?: string[];
|
|
12623
|
+
/** Tags de ComponentDocMeta usadas como fallback de classificacao. */
|
|
12624
|
+
tags?: string[];
|
|
12625
|
+
/** Tipos do input `metadata` usados como fallback de classificacao. */
|
|
12626
|
+
metadataInputTypes?: string[];
|
|
12627
|
+
}
|
|
12628
|
+
|
|
10594
12629
|
/**
|
|
10595
12630
|
* Catálogo de capacidades genéricas de FieldMetadata para uso da IA.
|
|
10596
12631
|
* Baseado em projects/praxis-core/src/lib/models/component-metadata.interface.ts
|
|
@@ -10612,7 +12647,7 @@ declare function getFieldMetadataCapabilities(): Capability$1[];
|
|
|
10612
12647
|
* Paths follow WidgetPageDefinition shape under "page".
|
|
10613
12648
|
*/
|
|
10614
12649
|
|
|
10615
|
-
declare module "./
|
|
12650
|
+
declare module "./praxisui-core" {
|
|
10616
12651
|
interface AiCapabilityCategoryMap {
|
|
10617
12652
|
page: true;
|
|
10618
12653
|
layout: true;
|
|
@@ -10620,6 +12655,7 @@ declare module "./index" {
|
|
|
10620
12655
|
shell: true;
|
|
10621
12656
|
connections: true;
|
|
10622
12657
|
context: true;
|
|
12658
|
+
state: true;
|
|
10623
12659
|
}
|
|
10624
12660
|
}
|
|
10625
12661
|
type CapabilityCategory = AiCapabilityCategory;
|
|
@@ -10650,7 +12686,11 @@ interface ComponentActionParam {
|
|
|
10650
12686
|
}
|
|
10651
12687
|
interface ComponentContextAction {
|
|
10652
12688
|
id: string;
|
|
10653
|
-
|
|
12689
|
+
/**
|
|
12690
|
+
* Natural-language examples for LLM grounding only.
|
|
12691
|
+
* Runtime code must not use these strings for keyword routing.
|
|
12692
|
+
*/
|
|
12693
|
+
intentExamples?: string[];
|
|
10654
12694
|
patchTemplate: any;
|
|
10655
12695
|
safetyNotes?: string;
|
|
10656
12696
|
/**
|
|
@@ -10706,10 +12746,14 @@ interface ComponentMergePatch<TConfig extends Record<string, unknown> = Record<s
|
|
|
10706
12746
|
|
|
10707
12747
|
declare const DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK: ComponentContextPack;
|
|
10708
12748
|
|
|
12749
|
+
declare const DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK: ComponentContextPack;
|
|
12750
|
+
|
|
10709
12751
|
interface WidgetEventPathSegment {
|
|
10710
|
-
kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
|
|
12752
|
+
kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group' | 'widget';
|
|
10711
12753
|
id?: string;
|
|
12754
|
+
key?: string;
|
|
10712
12755
|
index?: number;
|
|
12756
|
+
componentType?: string;
|
|
10713
12757
|
}
|
|
10714
12758
|
interface WidgetEventEnvelope {
|
|
10715
12759
|
/** Optional top-level page widget key that owns the event tree. */
|
|
@@ -10731,6 +12775,50 @@ interface WidgetResolutionDiagnostic {
|
|
|
10731
12775
|
error?: unknown;
|
|
10732
12776
|
}
|
|
10733
12777
|
|
|
12778
|
+
interface WidgetEventPathNormalizeOptions {
|
|
12779
|
+
/** Optional owner component id used to strip only the top-level container segment. */
|
|
12780
|
+
ownerComponentId?: string;
|
|
12781
|
+
}
|
|
12782
|
+
interface WidgetEventPathNormalizeInput {
|
|
12783
|
+
path?: WidgetEventPathSegment[];
|
|
12784
|
+
sourceChildWidgetKey?: string;
|
|
12785
|
+
sourceComponentId?: string;
|
|
12786
|
+
}
|
|
12787
|
+
declare function normalizeWidgetEventPath(event: WidgetEventEnvelope | WidgetEventPathNormalizeInput, options?: WidgetEventPathNormalizeOptions): ComponentPortPathSegment[];
|
|
12788
|
+
|
|
12789
|
+
interface NestedWidgetResolution {
|
|
12790
|
+
ownerWidgetKey: string;
|
|
12791
|
+
nestedPath: ComponentPortPathSegment[];
|
|
12792
|
+
widget: WidgetDefinition;
|
|
12793
|
+
componentId: string;
|
|
12794
|
+
childWidgetKey: string;
|
|
12795
|
+
}
|
|
12796
|
+
interface NestedWidgetInputPatchResult {
|
|
12797
|
+
widget: WidgetInstance;
|
|
12798
|
+
changed: boolean;
|
|
12799
|
+
}
|
|
12800
|
+
declare class NestedWidgetConfigAccessor {
|
|
12801
|
+
listNestedWidgets(owner: WidgetInstance): NestedWidgetResolution[];
|
|
12802
|
+
resolveNestedWidget(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined): WidgetDefinition | undefined;
|
|
12803
|
+
setNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string, value: unknown): NestedWidgetInputPatchResult;
|
|
12804
|
+
private listNestedWidgetsInDefinition;
|
|
12805
|
+
private resolveNestedWidgetInDefinition;
|
|
12806
|
+
private setNestedWidgetInputInDefinition;
|
|
12807
|
+
private listChildWidgetLocations;
|
|
12808
|
+
private listTabsWidgetLocations;
|
|
12809
|
+
private listExpansionWidgetLocations;
|
|
12810
|
+
private resolveWidgetArrayLocation;
|
|
12811
|
+
private resolveTabsWidgetArray;
|
|
12812
|
+
private resolveExpansionWidgetArray;
|
|
12813
|
+
private findBySegment;
|
|
12814
|
+
private segmentIdentity;
|
|
12815
|
+
private asWidgetDefinitions;
|
|
12816
|
+
private isWidgetDefinition;
|
|
12817
|
+
private resolveChildWidgetKey;
|
|
12818
|
+
private clone;
|
|
12819
|
+
private isEqual;
|
|
12820
|
+
}
|
|
12821
|
+
|
|
10734
12822
|
type EditorialContentFormat = 'plain' | 'markdown';
|
|
10735
12823
|
interface EditorialLinkDefinition {
|
|
10736
12824
|
label: string;
|
|
@@ -10934,17 +13022,27 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
10934
13022
|
widgetDiagnostic: EventEmitter<WidgetResolutionDiagnostic>;
|
|
10935
13023
|
private compRef?;
|
|
10936
13024
|
private currentId?;
|
|
13025
|
+
private currentUsesInitialBindings;
|
|
13026
|
+
private currentInitialBindingSignature;
|
|
10937
13027
|
private outputSubs;
|
|
10938
13028
|
/** Dispatch a shell action to the inner widget instance when supported. */
|
|
10939
13029
|
dispatchAction(action: WidgetShellActionEvent): boolean;
|
|
10940
13030
|
ngOnInit(): void;
|
|
10941
13031
|
ngOnChanges(changes: SimpleChanges): void;
|
|
10942
13032
|
ngOnDestroy(): void;
|
|
13033
|
+
renderNow(): void;
|
|
10943
13034
|
private parseWidget;
|
|
10944
13035
|
private tryRender;
|
|
10945
13036
|
private createComponent;
|
|
10946
13037
|
private destroyCurrent;
|
|
13038
|
+
private shouldUseInitialInputBindings;
|
|
10947
13039
|
private bindInputs;
|
|
13040
|
+
private initialBindingSignature;
|
|
13041
|
+
private orderedInputEntries;
|
|
13042
|
+
private resolveAndCoerceValue;
|
|
13043
|
+
private withInferredIdentityInputs;
|
|
13044
|
+
private normalizeMaterializedRuntimeInputs;
|
|
13045
|
+
private inferResourcePathFromSchemaUrl;
|
|
10948
13046
|
private bindOutputs;
|
|
10949
13047
|
private resolveValue;
|
|
10950
13048
|
private get widgetDefinition();
|
|
@@ -10952,6 +13050,8 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
10952
13050
|
private lookup;
|
|
10953
13051
|
private validateAgainstMetadata;
|
|
10954
13052
|
private coercePrimitive;
|
|
13053
|
+
private stableStringify;
|
|
13054
|
+
private stableSerializableValue;
|
|
10955
13055
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetLoaderDirective, never>;
|
|
10956
13056
|
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
13057
|
}
|
|
@@ -10962,6 +13062,7 @@ declare const BUILTIN_SHELL_PRESETS: Record<string, NonNullable<Appearance>>;
|
|
|
10962
13062
|
declare class WidgetShellComponent implements OnChanges {
|
|
10963
13063
|
private readonly i18n;
|
|
10964
13064
|
get hostCollapsed(): boolean;
|
|
13065
|
+
get dragSurfaceInteractive(): boolean;
|
|
10965
13066
|
shell?: WidgetShellConfig | null;
|
|
10966
13067
|
context?: Record<string, any> | null;
|
|
10967
13068
|
dragSurfaceEnabled: boolean;
|
|
@@ -10974,7 +13075,10 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
10974
13075
|
collapsed: boolean;
|
|
10975
13076
|
expanded: boolean;
|
|
10976
13077
|
fullscreen: boolean;
|
|
10977
|
-
|
|
13078
|
+
private initializedWindowState;
|
|
13079
|
+
private lastWindowStateInputs?;
|
|
13080
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
13081
|
+
private syncInitialWindowState;
|
|
10978
13082
|
get shellEnabled(): boolean;
|
|
10979
13083
|
get showHeader(): boolean;
|
|
10980
13084
|
get headerActions(): ActionList;
|
|
@@ -10993,6 +13097,8 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
10993
13097
|
private isVisible;
|
|
10994
13098
|
private resolvePresetAppearance;
|
|
10995
13099
|
private mergeAppearance;
|
|
13100
|
+
private readWindowStateInputs;
|
|
13101
|
+
private areWindowStateInputsEqual;
|
|
10996
13102
|
private isInteractiveHeaderTarget;
|
|
10997
13103
|
private t;
|
|
10998
13104
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetShellComponent, never>;
|
|
@@ -11030,6 +13136,7 @@ declare class WidgetPageStateRuntimeService {
|
|
|
11030
13136
|
private evaluateDerivedJsonLogic;
|
|
11031
13137
|
private resolveCaseValue;
|
|
11032
13138
|
private resolveTemplate;
|
|
13139
|
+
private isPageStateTemplatePath;
|
|
11033
13140
|
private normalizeDependencyPath;
|
|
11034
13141
|
private readPath;
|
|
11035
13142
|
private isPlainObject;
|
|
@@ -11058,6 +13165,86 @@ interface WidgetPageComposition {
|
|
|
11058
13165
|
context: Record<string, unknown>;
|
|
11059
13166
|
}
|
|
11060
13167
|
|
|
13168
|
+
interface NestedPortCatalogRegistry {
|
|
13169
|
+
get(id: string): Pick<ComponentDocMeta, 'ports'> | undefined;
|
|
13170
|
+
}
|
|
13171
|
+
interface ResolvedNestedPort {
|
|
13172
|
+
ownerWidgetKey: string;
|
|
13173
|
+
ownerComponentId?: string;
|
|
13174
|
+
nestedPath: ComponentPortPathSegment[];
|
|
13175
|
+
containerPath?: ComponentPortPathSegment[];
|
|
13176
|
+
port: PortContract;
|
|
13177
|
+
componentId: string;
|
|
13178
|
+
childWidgetKey: string;
|
|
13179
|
+
}
|
|
13180
|
+
interface NestedPortCatalogDiagnostic {
|
|
13181
|
+
code: 'NESTED_WIDGET_METADATA_MISSING' | 'NESTED_WIDGET_KEY_MISSING';
|
|
13182
|
+
severity: 'warning' | 'error';
|
|
13183
|
+
ownerWidgetKey: string;
|
|
13184
|
+
nestedPath: ComponentPortPathSegment[];
|
|
13185
|
+
componentId?: string;
|
|
13186
|
+
message: string;
|
|
13187
|
+
}
|
|
13188
|
+
interface NestedPortCatalogResult {
|
|
13189
|
+
ports: ResolvedNestedPort[];
|
|
13190
|
+
diagnostics: NestedPortCatalogDiagnostic[];
|
|
13191
|
+
}
|
|
13192
|
+
declare class NestedPortCatalogService {
|
|
13193
|
+
private readonly accessor;
|
|
13194
|
+
constructor(accessor?: NestedWidgetConfigAccessor);
|
|
13195
|
+
resolve(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry): NestedPortCatalogResult;
|
|
13196
|
+
resolveEndpoint(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry, options: {
|
|
13197
|
+
ownerWidgetKey: string;
|
|
13198
|
+
nestedPath: ComponentPortPathSegment[];
|
|
13199
|
+
portId: string;
|
|
13200
|
+
direction: PortContract['direction'];
|
|
13201
|
+
}): ResolvedNestedPort | undefined;
|
|
13202
|
+
private hasStableTerminalKey;
|
|
13203
|
+
private containerPath;
|
|
13204
|
+
private isSamePath;
|
|
13205
|
+
private clone;
|
|
13206
|
+
}
|
|
13207
|
+
|
|
13208
|
+
type SemanticEndpointRef = EndpointRef & {
|
|
13209
|
+
ref: EndpointRef['ref'] & {
|
|
13210
|
+
semanticKind?: TransformSemanticKind;
|
|
13211
|
+
};
|
|
13212
|
+
};
|
|
13213
|
+
type SemanticCompositionLink = CompositionLink & {
|
|
13214
|
+
from: SemanticEndpointRef;
|
|
13215
|
+
to: SemanticEndpointRef;
|
|
13216
|
+
transform?: TransformPipeline;
|
|
13217
|
+
};
|
|
13218
|
+
interface CompositionValidatorContext {
|
|
13219
|
+
page?: Pick<WidgetPageDefinition, 'widgets'>;
|
|
13220
|
+
registry?: NestedPortCatalogRegistry;
|
|
13221
|
+
links?: SemanticCompositionLink[];
|
|
13222
|
+
}
|
|
13223
|
+
declare class CompositionValidatorService {
|
|
13224
|
+
private readonly nestedPortCatalog;
|
|
13225
|
+
private readonly jsonLogic;
|
|
13226
|
+
constructor(nestedPortCatalog?: NestedPortCatalogService, jsonLogic?: PraxisJsonLogicService);
|
|
13227
|
+
validateLink(link: SemanticCompositionLink, context?: CompositionValidatorContext): DiagnosticRecord[];
|
|
13228
|
+
private validateEndpointDirections;
|
|
13229
|
+
private validateBindingPathBridge;
|
|
13230
|
+
private validateNestedComponentEndpoints;
|
|
13231
|
+
private validateNestedPortCatalog;
|
|
13232
|
+
private projectCatalogDiagnostics;
|
|
13233
|
+
private validateNestedWidgetEventCoexistence;
|
|
13234
|
+
private validateStateWrites;
|
|
13235
|
+
private validateGlobalActionTarget;
|
|
13236
|
+
private validateCondition;
|
|
13237
|
+
private validateTransformCatalog;
|
|
13238
|
+
private validateSemanticCompatibility;
|
|
13239
|
+
private endpointSemanticKind;
|
|
13240
|
+
private areSemanticKindsCompatible;
|
|
13241
|
+
private areKindsDirectlyCompatible;
|
|
13242
|
+
private createDiagnostic;
|
|
13243
|
+
private formatNestedPath;
|
|
13244
|
+
private nestedEndpointSubject;
|
|
13245
|
+
private isSameNestedPath;
|
|
13246
|
+
}
|
|
13247
|
+
|
|
11061
13248
|
interface CompositionRuntimeStoreInit {
|
|
11062
13249
|
pageId?: string;
|
|
11063
13250
|
status?: RuntimeSnapshotStatus;
|
|
@@ -11131,13 +13318,16 @@ interface LinkExecutionContext {
|
|
|
11131
13318
|
lastDeliveredAt?: string;
|
|
11132
13319
|
}
|
|
11133
13320
|
interface LinkExecutionDelivery {
|
|
11134
|
-
kind: 'state' | 'component-port';
|
|
13321
|
+
kind: 'state' | 'component-port' | 'global-action';
|
|
11135
13322
|
value: unknown;
|
|
11136
13323
|
statePath?: string;
|
|
11137
13324
|
stateLayer?: 'values' | 'derived' | 'transient';
|
|
11138
13325
|
widgetKey?: string;
|
|
11139
13326
|
portId?: string;
|
|
11140
13327
|
bindingPath?: string;
|
|
13328
|
+
nestedPath?: ComponentPortPathSegment[];
|
|
13329
|
+
actionId?: string;
|
|
13330
|
+
actionRef?: GlobalActionRef;
|
|
11141
13331
|
}
|
|
11142
13332
|
interface LinkExecutionResult {
|
|
11143
13333
|
status: 'delivered' | 'skipped' | 'failed';
|
|
@@ -11207,6 +13397,7 @@ interface CompositionRuntimeEngineOptions {
|
|
|
11207
13397
|
linkExecutor?: LinkExecutorService;
|
|
11208
13398
|
stateRuntime?: WidgetPageStateRuntimeService;
|
|
11209
13399
|
traceService?: RuntimeTraceService;
|
|
13400
|
+
compositionValidator?: CompositionValidatorService;
|
|
11210
13401
|
}
|
|
11211
13402
|
interface CompositionStateWidgetPreviewOptions {
|
|
11212
13403
|
widgets?: WidgetInstance[];
|
|
@@ -11223,7 +13414,9 @@ declare class CompositionRuntimeEngine {
|
|
|
11223
13414
|
private readonly linkExecutor;
|
|
11224
13415
|
private readonly stateRuntime;
|
|
11225
13416
|
private readonly traceService;
|
|
13417
|
+
private readonly compositionValidator;
|
|
11226
13418
|
private readonly pathAccessor;
|
|
13419
|
+
private readonly nestedWidgetAccessor;
|
|
11227
13420
|
private definition;
|
|
11228
13421
|
private readonly now;
|
|
11229
13422
|
constructor(options?: CompositionRuntimeEngineOptions);
|
|
@@ -11235,11 +13428,13 @@ declare class CompositionRuntimeEngine {
|
|
|
11235
13428
|
private createLinkSnapshot;
|
|
11236
13429
|
private applyBootstrapHydration;
|
|
11237
13430
|
private materializeDerivedState;
|
|
13431
|
+
private validateComposition;
|
|
11238
13432
|
private createDerivedDiagnostic;
|
|
11239
13433
|
private clonePreviewWidgets;
|
|
11240
13434
|
private cloneJson;
|
|
11241
13435
|
private extractDerivedNodeKey;
|
|
11242
13436
|
private appendDiagnosticTraceEntries;
|
|
13437
|
+
private createNestedWidgetEventBridgeDiagnostics;
|
|
11243
13438
|
}
|
|
11244
13439
|
|
|
11245
13440
|
interface CompositionRuntimeFacadeOptions {
|
|
@@ -11330,8 +13525,12 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11330
13525
|
pageIdentity?: PageIdentity;
|
|
11331
13526
|
/** Optional instance key for pages rendered multiple times. */
|
|
11332
13527
|
componentInstanceId?: string;
|
|
13528
|
+
/** Enables a contextual authoring assistant entrypoint for the selected widget. */
|
|
13529
|
+
showWidgetAssistantButton: boolean;
|
|
11333
13530
|
pageChange: EventEmitter<WidgetPageDefinition>;
|
|
11334
13531
|
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
13532
|
+
widgetSelectionChange: EventEmitter<string | null>;
|
|
13533
|
+
widgetAssistantRequested: EventEmitter<string>;
|
|
11335
13534
|
widgetDiagnosticsChange: EventEmitter<Record<string, WidgetResolutionDiagnostic>>;
|
|
11336
13535
|
widgets: i0.WritableSignal<WidgetInstance[]>;
|
|
11337
13536
|
renderedGroups: i0.WritableSignal<RenderedWidgetGroup[]>;
|
|
@@ -11350,7 +13549,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11350
13549
|
private pageColumnCount;
|
|
11351
13550
|
private activeTabs;
|
|
11352
13551
|
private widgetDiagnostics;
|
|
11353
|
-
private
|
|
13552
|
+
private selectedWidgetKey;
|
|
11354
13553
|
private blockedCanvasWidgetKey;
|
|
11355
13554
|
private canvasPreviewState;
|
|
11356
13555
|
private canvasPreviewInvalidState;
|
|
@@ -11361,6 +13560,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11361
13560
|
private persistenceReady;
|
|
11362
13561
|
private warnedMissingKey;
|
|
11363
13562
|
private runtimeEventSequence;
|
|
13563
|
+
private readonly widgetShellRenderCache;
|
|
11364
13564
|
private readonly compositionFactory;
|
|
11365
13565
|
private readonly compositionRuntime;
|
|
11366
13566
|
private compositionDefinition?;
|
|
@@ -11372,6 +13572,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11372
13572
|
private readonly route;
|
|
11373
13573
|
private readonly conn;
|
|
11374
13574
|
private readonly stateRuntime;
|
|
13575
|
+
private readonly nestedWidgetAccessor;
|
|
11375
13576
|
private readonly settingsPanel;
|
|
11376
13577
|
private readonly defaultShellEditor;
|
|
11377
13578
|
private readonly defaultPageEditor;
|
|
@@ -11380,37 +13581,92 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11380
13581
|
ngOnChanges(changes: SimpleChanges): void;
|
|
11381
13582
|
onWidgetEvent(fromKey: string, evt: WidgetEventEnvelope): void;
|
|
11382
13583
|
private applyWidgetInputPatchToPage;
|
|
13584
|
+
private resolveWidgetInputPatchNestedPath;
|
|
11383
13585
|
private extractWidgetInputPatch;
|
|
11384
13586
|
private buildStateRuntime;
|
|
11385
13587
|
private bootstrapCompositionAdapter;
|
|
11386
13588
|
private applyEditShellActions;
|
|
11387
|
-
private withShellActions;
|
|
11388
13589
|
private applyBootstrapCompositionHydration;
|
|
13590
|
+
private applyRecordRelatedSurfaceAiContext;
|
|
13591
|
+
private buildRecordRelatedSurfacesBySource;
|
|
13592
|
+
private isTableRowClickToStateLink;
|
|
13593
|
+
private isStateToTableQueryContextLink;
|
|
13594
|
+
private resolveRecordSurfaceId;
|
|
13595
|
+
private resolveRecordSurfaceLabel;
|
|
13596
|
+
private resolveRecordSurfaceTabLabel;
|
|
13597
|
+
private humanizeRecordSurfaceLabel;
|
|
13598
|
+
private resolveRecordSurfaceChildWidgetKey;
|
|
13599
|
+
private recordSurfaceSourceKey;
|
|
13600
|
+
private recordSurfaceNestedPathSignature;
|
|
13601
|
+
private parseRecordSurfaceNestedPathSignature;
|
|
13602
|
+
private stringOrNull;
|
|
13603
|
+
private isRecord;
|
|
13604
|
+
private maybeOpenRecordRelatedSurface;
|
|
13605
|
+
private applyRecordSurfaceSourceState;
|
|
13606
|
+
private findRecordSurfaceTabIndex;
|
|
13607
|
+
private shouldMaterializeSelectedIndexInput;
|
|
11389
13608
|
private reportStateDiagnostics;
|
|
11390
13609
|
private dispatchWidgetEventToComposition;
|
|
13610
|
+
private matchesRuntimeSourceRef;
|
|
13611
|
+
private matchesLegacyWidgetEventSource;
|
|
13612
|
+
private areNestedPathsEqual;
|
|
11391
13613
|
private stateFromCompositionSnapshot;
|
|
11392
13614
|
private applyCompositionWidgetDeliveries;
|
|
13615
|
+
private executeCompositionGlobalActionDeliveries;
|
|
13616
|
+
private resolveCompositionGlobalActionRef;
|
|
11393
13617
|
private buildStateContext;
|
|
11394
13618
|
private cloneStateValues;
|
|
11395
13619
|
private cloneGrouping;
|
|
11396
13620
|
private resolveShellTemplates;
|
|
13621
|
+
private enrichRuntimeWidgetInputs;
|
|
13622
|
+
private buildRichContentHostCapabilities;
|
|
13623
|
+
private dispatchRichContentAction;
|
|
13624
|
+
private isRichContentActionAvailable;
|
|
13625
|
+
private hasRichContentCapability;
|
|
11397
13626
|
private resolveComponentBindingPath;
|
|
11398
13627
|
private buildRuntimeEventId;
|
|
11399
|
-
|
|
11400
|
-
|
|
13628
|
+
canOpenWidgetShellSettings(): boolean;
|
|
13629
|
+
canOpenWidgetComponentSettings(key: string): boolean;
|
|
13630
|
+
componentSettingsLabel(): string;
|
|
13631
|
+
componentSettingsTooltip(): string;
|
|
13632
|
+
widgetSettingsLabel(): string;
|
|
13633
|
+
widgetSettingsTooltip(): string;
|
|
13634
|
+
widgetAssistantLabel(): string;
|
|
13635
|
+
widgetAssistantTooltip(): string;
|
|
13636
|
+
requestWidgetAssistant(widgetKey: string): void;
|
|
13637
|
+
widgetRemoveLabel(): string;
|
|
13638
|
+
moreWidgetActionsLabel(): string;
|
|
13639
|
+
widgetContextToolbarLabel(widgetKey: string): string;
|
|
13640
|
+
widgetContextLabel(widget: WidgetInstance): string;
|
|
13641
|
+
widgetContextTooltip(widget: WidgetInstance): string;
|
|
13642
|
+
shouldRenderWidgetContextOverlay(widget: WidgetInstance): boolean;
|
|
13643
|
+
widgetShellForRender(widget: WidgetInstance): WidgetShellConfig | null | undefined;
|
|
13644
|
+
private resolveWidgetDisplayName;
|
|
13645
|
+
private shouldProjectWidgetHeaderActions;
|
|
13646
|
+
private hasVisibleWidgetShellHeader;
|
|
13647
|
+
private hasVisibleShellActions;
|
|
13648
|
+
private hasVisibleWindowActions;
|
|
13649
|
+
private buildProjectedWidgetShellActions;
|
|
13650
|
+
private widgetShellActionSignature;
|
|
13651
|
+
private isVisibleShellAction;
|
|
11401
13652
|
private areStateValuesEqual;
|
|
11402
13653
|
onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
|
|
11403
13654
|
onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
11404
13655
|
private handleSetInputCommand;
|
|
11405
13656
|
private mergeOrder;
|
|
11406
13657
|
private maybeExecuteMappedAction;
|
|
11407
|
-
private maybeExecuteGlobalCommand;
|
|
11408
13658
|
private resolveActionPayload;
|
|
11409
13659
|
private resolveTemplate;
|
|
11410
13660
|
private lookup;
|
|
11411
13661
|
openWidgetShellSettings(key: string): void;
|
|
11412
13662
|
openWidgetComponentSettings(key: string): void;
|
|
11413
13663
|
private applyWidgetComponentInputs;
|
|
13664
|
+
confirmAndRemoveWidget(widgetKey: string): Promise<void>;
|
|
13665
|
+
removeSelectedWidget(): void;
|
|
13666
|
+
removeSelectedCanvasWidget(): void;
|
|
13667
|
+
private removeWidgetReferences;
|
|
13668
|
+
private linkReferencesWidget;
|
|
13669
|
+
private endpointReferencesWidget;
|
|
11414
13670
|
openPageSettings(): void;
|
|
11415
13671
|
private applyWidgetShell;
|
|
11416
13672
|
private applyPageLayout;
|
|
@@ -11434,8 +13690,14 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11434
13690
|
private resolveDeviceKind;
|
|
11435
13691
|
isCanvasMode(): boolean;
|
|
11436
13692
|
shouldAutoWireOutputs(widget: WidgetInstance | RenderedWidgetInstance): boolean;
|
|
11437
|
-
|
|
13693
|
+
private hasCompositionOutputLinks;
|
|
13694
|
+
selectWidget(widgetKey: string): void;
|
|
13695
|
+
selectWidgetFromHostEvent(widgetKey: string, event: Event): void;
|
|
11438
13696
|
isCanvasWidgetSelected(widgetKey: string): boolean;
|
|
13697
|
+
isWidgetSelected(widgetKey: string): boolean;
|
|
13698
|
+
private shouldPreserveInnerWidgetInteraction;
|
|
13699
|
+
selectCanvasWidget(widgetKey: string): void;
|
|
13700
|
+
getPageSnapshot(): WidgetPageDefinition;
|
|
11439
13701
|
isCanvasWidgetBlocked(widgetKey: string): boolean;
|
|
11440
13702
|
canvasPreviewItem(): WidgetPageCanvasItem | null;
|
|
11441
13703
|
canvasPreviewGridColumn(): string | null;
|
|
@@ -11448,6 +13710,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11448
13710
|
private applyWidgetLayoutOverrides;
|
|
11449
13711
|
private applyCanvasLayoutToWidgets;
|
|
11450
13712
|
private startCanvasInteraction;
|
|
13713
|
+
private cancelCanvasInteractionForWidget;
|
|
13714
|
+
private isCanvasOverlayInteraction;
|
|
11451
13715
|
private currentCanvasMetrics;
|
|
11452
13716
|
private currentCanvasItem;
|
|
11453
13717
|
private resolveCanvasInteractionDelta;
|
|
@@ -11505,7 +13769,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11505
13769
|
private sanitizeSegment;
|
|
11506
13770
|
private assertNoLegacyConnections;
|
|
11507
13771
|
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>;
|
|
13772
|
+
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
13773
|
}
|
|
11510
13774
|
|
|
11511
13775
|
/** Metadata for Praxis Dynamic Page component */
|
|
@@ -11515,7 +13779,7 @@ declare const PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA: ComponentDocMeta;
|
|
|
11515
13779
|
*/
|
|
11516
13780
|
declare function providePraxisDynamicPageMetadata(): Provider;
|
|
11517
13781
|
|
|
11518
|
-
declare class PraxisSurfaceHostComponent {
|
|
13782
|
+
declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
11519
13783
|
title?: string;
|
|
11520
13784
|
subtitle?: string;
|
|
11521
13785
|
icon?: string;
|
|
@@ -11527,6 +13791,11 @@ declare class PraxisSurfaceHostComponent {
|
|
|
11527
13791
|
* modal/drawer hosts. Inline consumers may opt into rendering it again.
|
|
11528
13792
|
*/
|
|
11529
13793
|
renderTitleInsideBody: boolean;
|
|
13794
|
+
private widgetLoader?;
|
|
13795
|
+
private renderQueued;
|
|
13796
|
+
ngAfterViewInit(): void;
|
|
13797
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
13798
|
+
private scheduleWidgetRender;
|
|
11530
13799
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
|
|
11531
13800
|
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
13801
|
}
|
|
@@ -11650,7 +13919,7 @@ declare function normalizeFormConfig(config: FormConfig): FormConfig;
|
|
|
11650
13919
|
|
|
11651
13920
|
/** Minimal metadata about the backend schema source. */
|
|
11652
13921
|
interface SchemaMetaInfo {
|
|
11653
|
-
/** API path used to resolve the schema (e.g., /api/employees/
|
|
13922
|
+
/** API path used to resolve the schema (e.g., /api/employees/filter) */
|
|
11654
13923
|
path: string;
|
|
11655
13924
|
/** Operation used when fetching the schema (get|post) */
|
|
11656
13925
|
operation: string;
|
|
@@ -11724,6 +13993,12 @@ interface SchemaIdParams {
|
|
|
11724
13993
|
}
|
|
11725
13994
|
declare function normalizePath(p: string): string;
|
|
11726
13995
|
declare function buildSchemaId(params: SchemaIdParams): string;
|
|
13996
|
+
/**
|
|
13997
|
+
* Produces a deterministic, storage-safe segment for places that impose short
|
|
13998
|
+
* identifier limits. This must not replace the semantic schemaId stored in
|
|
13999
|
+
* payloads or metadata.
|
|
14000
|
+
*/
|
|
14001
|
+
declare function buildSchemaIdStorageKeySegment(schemaId: string): string;
|
|
11727
14002
|
|
|
11728
14003
|
interface FetchWithEtagParams {
|
|
11729
14004
|
url: string;
|
|
@@ -11903,5 +14178,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
11903
14178
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
11904
14179
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
11905
14180
|
|
|
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 };
|
|
14181
|
+
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_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, 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, SurfaceOpenMaterializerService, 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, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, 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 };
|
|
14182
|
+
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, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, 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, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, 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, TableTooltipConfig, 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 };
|