@praxisui/core 8.0.0-beta.6 → 8.0.0-beta.60
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 +16466 -10532
- package/package.json +12 -6
- package/{index.d.ts → types/praxisui-core.d.ts} +2521 -270
|
@@ -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";
|
|
@@ -2585,6 +3637,52 @@ interface ConditionalValidationRule {
|
|
|
2585
3637
|
/** Validators applied when the guard resolves to true. */
|
|
2586
3638
|
validators: Omit<ValidatorOptions, 'conditionalValidation'>;
|
|
2587
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;
|
|
3685
|
+
}
|
|
2588
3686
|
/**
|
|
2589
3687
|
* Configuration for field options in selection components.
|
|
2590
3688
|
*
|
|
@@ -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[]>;
|
|
@@ -7092,122 +8384,33 @@ declare class PraxisLoadingInterceptor implements HttpInterceptor {
|
|
|
7092
8384
|
private orchestrator;
|
|
7093
8385
|
private renderer?;
|
|
7094
8386
|
constructor(orchestrator: LoadingOrchestrator, renderer?: PraxisLoadingRenderer | undefined);
|
|
7095
|
-
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[];
|
|
8387
|
+
intercept(req: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>>;
|
|
8388
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisLoadingInterceptor, [null, { optional: true; }]>;
|
|
8389
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisLoadingInterceptor>;
|
|
7193
8390
|
}
|
|
7194
|
-
|
|
7195
|
-
|
|
7196
|
-
|
|
7197
|
-
|
|
7198
|
-
|
|
7199
|
-
|
|
7200
|
-
|
|
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>;
|
|
7201
8405
|
}
|
|
7202
|
-
|
|
7203
|
-
|
|
7204
|
-
|
|
7205
|
-
|
|
7206
|
-
|
|
7207
|
-
|
|
7208
|
-
|
|
7209
|
-
|
|
7210
|
-
actions: ResourceActionCatalogItem[];
|
|
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;
|
|
@@ -7981,8 +9644,15 @@ type GlobalActionCatalogEntry = {
|
|
|
7981
9644
|
required?: string[];
|
|
7982
9645
|
example?: any;
|
|
7983
9646
|
};
|
|
9647
|
+
param?: {
|
|
9648
|
+
required?: boolean;
|
|
9649
|
+
label?: string;
|
|
9650
|
+
placeholder?: string;
|
|
9651
|
+
hint?: string;
|
|
9652
|
+
example?: string;
|
|
9653
|
+
};
|
|
7984
9654
|
};
|
|
7985
|
-
declare const GLOBAL_ACTION_CATALOG
|
|
9655
|
+
declare const GLOBAL_ACTION_CATALOG: InjectionToken<readonly GlobalActionCatalogEntry[][]>;
|
|
7986
9656
|
declare function provideGlobalActionCatalog(entries: GlobalActionCatalogEntry[]): Provider;
|
|
7987
9657
|
declare function getGlobalActionCatalog(catalog: ReadonlyArray<GlobalActionCatalogEntry[]> | null | undefined): GlobalActionCatalogEntry[];
|
|
7988
9658
|
declare const PRAXIS_GLOBAL_ACTION_CATALOG: GlobalActionCatalogEntry[];
|
|
@@ -7993,22 +9663,6 @@ interface GlobalSurfaceService {
|
|
|
7993
9663
|
}
|
|
7994
9664
|
declare const GLOBAL_SURFACE_SERVICE: InjectionToken<GlobalSurfaceService>;
|
|
7995
9665
|
|
|
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
9666
|
declare const SURFACE_OPEN_I18N_NAMESPACE = "surfaceOpen";
|
|
8013
9667
|
declare const SURFACE_OPEN_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
8014
9668
|
|
|
@@ -8111,6 +9765,8 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
|
8111
9765
|
|
|
8112
9766
|
declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
8113
9767
|
|
|
9768
|
+
declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
|
|
9769
|
+
|
|
8114
9770
|
declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
|
|
8115
9771
|
declare function providePraxisJsonLogicOperator(definition: PraxisJsonLogicOperatorDefinition): Provider;
|
|
8116
9772
|
declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLogicOperatorDefinition): Provider;
|
|
@@ -8202,8 +9858,16 @@ interface ComponentPortEndpointRef {
|
|
|
8202
9858
|
direction: 'input' | 'output';
|
|
8203
9859
|
componentType?: string;
|
|
8204
9860
|
bindingPath?: string;
|
|
9861
|
+
nestedPath?: ComponentPortPathSegment[];
|
|
8205
9862
|
};
|
|
8206
9863
|
}
|
|
9864
|
+
interface ComponentPortPathSegment {
|
|
9865
|
+
kind: 'widget' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
|
|
9866
|
+
id?: string;
|
|
9867
|
+
key?: string;
|
|
9868
|
+
index?: number;
|
|
9869
|
+
componentType?: string;
|
|
9870
|
+
}
|
|
8207
9871
|
interface StateEndpointRef {
|
|
8208
9872
|
kind: 'state';
|
|
8209
9873
|
ref: {
|
|
@@ -8212,7 +9876,11 @@ interface StateEndpointRef {
|
|
|
8212
9876
|
writable?: boolean;
|
|
8213
9877
|
};
|
|
8214
9878
|
}
|
|
8215
|
-
|
|
9879
|
+
interface GlobalActionEndpointRef {
|
|
9880
|
+
kind: 'global-action';
|
|
9881
|
+
ref: GlobalActionRef;
|
|
9882
|
+
}
|
|
9883
|
+
type EndpointRef = ComponentPortEndpointRef | StateEndpointRef | GlobalActionEndpointRef;
|
|
8216
9884
|
type LinkIntent = 'event-propagation' | 'state-write' | 'state-read' | 'command-dispatch' | 'selection-sync' | 'data-projection' | 'status-propagation';
|
|
8217
9885
|
interface LinkPolicy {
|
|
8218
9886
|
debounceMs?: number;
|
|
@@ -8243,7 +9911,7 @@ interface CompositionLink {
|
|
|
8243
9911
|
|
|
8244
9912
|
type DiagnosticSeverity = 'info' | 'warning' | 'error' | 'fatal';
|
|
8245
9913
|
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';
|
|
9914
|
+
type DiagnosticSubjectKind = 'page' | 'widget' | 'port' | 'state' | 'derived-state' | 'global-action' | 'link' | 'transform-step' | 'runtime-event' | 'runtime-snapshot';
|
|
8247
9915
|
interface DiagnosticSubjectRef {
|
|
8248
9916
|
kind: DiagnosticSubjectKind;
|
|
8249
9917
|
pageId?: string;
|
|
@@ -8251,6 +9919,7 @@ interface DiagnosticSubjectRef {
|
|
|
8251
9919
|
widgetType?: string;
|
|
8252
9920
|
portId?: string;
|
|
8253
9921
|
statePath?: string;
|
|
9922
|
+
actionId?: string;
|
|
8254
9923
|
linkId?: string;
|
|
8255
9924
|
transformIndex?: number;
|
|
8256
9925
|
eventId?: string;
|
|
@@ -8446,6 +10115,7 @@ interface FormActionButton {
|
|
|
8446
10115
|
disabled?: boolean;
|
|
8447
10116
|
type?: 'button' | 'submit' | 'reset';
|
|
8448
10117
|
action?: string;
|
|
10118
|
+
globalAction?: GlobalActionRef;
|
|
8449
10119
|
tooltip?: string;
|
|
8450
10120
|
loading?: boolean;
|
|
8451
10121
|
size?: 'small' | 'medium' | 'large';
|
|
@@ -8593,7 +10263,7 @@ interface FieldsetLayout {
|
|
|
8593
10263
|
rows: FormRowLayout[];
|
|
8594
10264
|
hiddenCondition?: JsonLogicExpression | null;
|
|
8595
10265
|
}
|
|
8596
|
-
type FormRuleTargetType = 'field' | 'section' | 'action' | 'row' | 'column';
|
|
10266
|
+
type FormRuleTargetType = 'field' | 'section' | 'action' | 'row' | 'column' | 'visualBlock';
|
|
8597
10267
|
interface FormLayoutRule {
|
|
8598
10268
|
id: string;
|
|
8599
10269
|
name: string;
|
|
@@ -8732,6 +10402,29 @@ interface EditorialFormTemplateBuildOptions {
|
|
|
8732
10402
|
*/
|
|
8733
10403
|
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfig;
|
|
8734
10404
|
|
|
10405
|
+
interface FormFieldLayoutItem {
|
|
10406
|
+
kind: 'field';
|
|
10407
|
+
id: string;
|
|
10408
|
+
fieldName: string;
|
|
10409
|
+
}
|
|
10410
|
+
interface FormRichContentLayoutItem {
|
|
10411
|
+
kind: 'richContent';
|
|
10412
|
+
id: string;
|
|
10413
|
+
document: RichContentDocument;
|
|
10414
|
+
layout?: 'block' | 'inline';
|
|
10415
|
+
rootClassName?: string | null;
|
|
10416
|
+
}
|
|
10417
|
+
type FormLayoutItem = FormFieldLayoutItem | FormRichContentLayoutItem;
|
|
10418
|
+
interface FormLayoutItemsColumnLike {
|
|
10419
|
+
fields?: unknown;
|
|
10420
|
+
items?: unknown;
|
|
10421
|
+
}
|
|
10422
|
+
declare function createFieldLayoutItem(fieldName: string, index?: number): FormFieldLayoutItem;
|
|
10423
|
+
declare function isFormLayoutItem(value: unknown): value is FormLayoutItem;
|
|
10424
|
+
declare function normalizeFormLayoutItems(column: FormLayoutItemsColumnLike | null | undefined): FormLayoutItem[];
|
|
10425
|
+
declare function getFormLayoutFieldNames(items: readonly FormLayoutItem[] | null | undefined): string[];
|
|
10426
|
+
declare function getFormColumnFieldNames(column: FormLayoutItemsColumnLike | null | undefined): string[];
|
|
10427
|
+
|
|
8735
10428
|
type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
8736
10429
|
interface ColumnSpan {
|
|
8737
10430
|
xs?: number;
|
|
@@ -8763,7 +10456,10 @@ interface ColumnHidden {
|
|
|
8763
10456
|
}
|
|
8764
10457
|
type ColumnAlign = 'start' | 'center' | 'end' | 'stretch';
|
|
8765
10458
|
interface FormColumn {
|
|
10459
|
+
/** Legacy field-name list accepted as migration input while items becomes canonical. */
|
|
8766
10460
|
fields: string[];
|
|
10461
|
+
/** Canonical ordered layout items for fields and visual blocks. */
|
|
10462
|
+
items?: FormLayoutItem[];
|
|
8767
10463
|
id: string;
|
|
8768
10464
|
title?: string;
|
|
8769
10465
|
span?: ColumnSpan;
|
|
@@ -8837,8 +10533,10 @@ interface FormSectionHeaderAction {
|
|
|
8837
10533
|
label: string;
|
|
8838
10534
|
/** Icon rendered in the section header action slot. */
|
|
8839
10535
|
icon: string;
|
|
8840
|
-
/** Optional action name emitted by the runtime; defaults to `id` when omitted. */
|
|
10536
|
+
/** Optional local action name emitted by the runtime; defaults to `id` when omitted. */
|
|
8841
10537
|
action?: string;
|
|
10538
|
+
/** Optional structured global action executed by hosts through GlobalActionService. */
|
|
10539
|
+
globalAction?: GlobalActionRef;
|
|
8842
10540
|
/** Optional tooltip override. Falls back to `label` when omitted. */
|
|
8843
10541
|
tooltip?: string;
|
|
8844
10542
|
/** Optional theme color mapped to Angular Material button tones. */
|
|
@@ -8933,6 +10631,8 @@ interface FormConfig {
|
|
|
8933
10631
|
messages?: FormMessagesLayout;
|
|
8934
10632
|
/** Form rules for dynamic behavior */
|
|
8935
10633
|
formRules?: FormLayoutRule[];
|
|
10634
|
+
/** Conditional command rules evaluated after form rule values stabilize. */
|
|
10635
|
+
formCommandRules?: PraxisRuntimeConditionalEffectRule<PraxisRuntimeGlobalActionEffect>[];
|
|
8936
10636
|
/**
|
|
8937
10637
|
* Raw state emitted by the visual rule builder.
|
|
8938
10638
|
* Stored separately to allow round-trip editing without losing metadata.
|
|
@@ -9143,6 +10843,7 @@ interface FormInitializationError {
|
|
|
9143
10843
|
}
|
|
9144
10844
|
interface FormCustomActionEvent {
|
|
9145
10845
|
actionId: string;
|
|
10846
|
+
globalAction?: GlobalActionRef;
|
|
9146
10847
|
formData: any;
|
|
9147
10848
|
isValid: boolean;
|
|
9148
10849
|
source: 'button' | 'shortcut' | 'section-header';
|
|
@@ -9166,7 +10867,7 @@ interface RulePropertyDefinition {
|
|
|
9166
10867
|
}>;
|
|
9167
10868
|
category?: 'content' | 'appearance' | 'behavior' | 'layout' | 'validation';
|
|
9168
10869
|
}
|
|
9169
|
-
type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column', RulePropertyDefinition[]>;
|
|
10870
|
+
type RulePropertySchema = Record<'field' | 'section' | 'action' | 'row' | 'column' | 'visualBlock', RulePropertyDefinition[]>;
|
|
9170
10871
|
declare const RULE_PROPERTY_SCHEMA: RulePropertySchema;
|
|
9171
10872
|
|
|
9172
10873
|
type EditorialOrientation = 'horizontal' | 'vertical';
|
|
@@ -10088,6 +11789,43 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
|
|
|
10088
11789
|
status?: PersistedPageConfig['status'];
|
|
10089
11790
|
}): PersistedPageConfig;
|
|
10090
11791
|
|
|
11792
|
+
type RecordRelatedSurfaceOperationId = 'dynamicPage.surface.discover' | 'dynamicPage.surface.open' | 'dynamicPage.surface.query';
|
|
11793
|
+
interface RecordRelatedSurfaceEndpoint {
|
|
11794
|
+
widget: string;
|
|
11795
|
+
componentType?: string;
|
|
11796
|
+
nestedPath?: ComponentPortPathSegment[];
|
|
11797
|
+
port?: string;
|
|
11798
|
+
childWidgetKey?: string;
|
|
11799
|
+
resourcePath?: string | null;
|
|
11800
|
+
}
|
|
11801
|
+
interface RecordRelatedSurfaceContext {
|
|
11802
|
+
id: string;
|
|
11803
|
+
label: string;
|
|
11804
|
+
relation: string;
|
|
11805
|
+
operationId: RecordRelatedSurfaceOperationId;
|
|
11806
|
+
source: RecordRelatedSurfaceEndpoint;
|
|
11807
|
+
target: RecordRelatedSurfaceEndpoint;
|
|
11808
|
+
resourceSurface?: ResourceSurfaceCatalogItem;
|
|
11809
|
+
statePath?: string;
|
|
11810
|
+
description?: string | null;
|
|
11811
|
+
}
|
|
11812
|
+
interface RecordRelatedSurfaceContextPack {
|
|
11813
|
+
source: 'dynamic-page-composition' | 'resource-capabilities' | 'mixed';
|
|
11814
|
+
surfaces: RecordRelatedSurfaceContext[];
|
|
11815
|
+
}
|
|
11816
|
+
|
|
11817
|
+
interface DomainKnowledgeTimelineRichContentOptions {
|
|
11818
|
+
title?: string;
|
|
11819
|
+
emptyText?: string;
|
|
11820
|
+
}
|
|
11821
|
+
declare function domainKnowledgeTimelineToRichContentDocument(timeline: DomainKnowledgeChangeSetTimelineResponse, options?: DomainKnowledgeTimelineRichContentOptions): RichContentDocument;
|
|
11822
|
+
|
|
11823
|
+
interface DomainRuleTimelineRichContentOptions {
|
|
11824
|
+
title?: string;
|
|
11825
|
+
emptyText?: string;
|
|
11826
|
+
}
|
|
11827
|
+
declare function domainRuleTimelineToRichContentDocument(timeline: DomainRuleTimelineResponse, options?: DomainRuleTimelineRichContentOptions): RichContentDocument;
|
|
11828
|
+
|
|
10091
11829
|
/**
|
|
10092
11830
|
* Navigation/back behavior configuration used by form hosts (e.g., CRUD dialogs/routes).
|
|
10093
11831
|
* Moved from @praxisui/crud to @praxisui/core to avoid circular deps between
|
|
@@ -10107,16 +11845,59 @@ interface BackConfig {
|
|
|
10107
11845
|
confirmOnDirty?: boolean;
|
|
10108
11846
|
}
|
|
10109
11847
|
|
|
11848
|
+
declare const PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION: "praxis.query-filter-expression.v1";
|
|
11849
|
+
interface PraxisDataQueryContextMeta extends Record<string, unknown> {
|
|
11850
|
+
domainCatalog?: DomainCatalogContextHint | null;
|
|
11851
|
+
}
|
|
10110
11852
|
interface PraxisDataQueryContext {
|
|
10111
11853
|
filters?: Record<string, unknown> | null;
|
|
11854
|
+
filterExpression?: PraxisQueryFilterExpression | null;
|
|
10112
11855
|
sort?: string[] | null;
|
|
10113
11856
|
limit?: number | null;
|
|
10114
11857
|
page?: {
|
|
10115
11858
|
index?: number | null;
|
|
10116
11859
|
size?: number | null;
|
|
10117
11860
|
} | null;
|
|
10118
|
-
meta?:
|
|
11861
|
+
meta?: PraxisDataQueryContextMeta | null;
|
|
11862
|
+
}
|
|
11863
|
+
interface PraxisQueryFilterExpression {
|
|
11864
|
+
schemaVersion: typeof PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION;
|
|
11865
|
+
root: PraxisQueryFilterNode;
|
|
11866
|
+
projection?: {
|
|
11867
|
+
filters?: Record<string, unknown> | null;
|
|
11868
|
+
lossless: boolean;
|
|
11869
|
+
reason?: string;
|
|
11870
|
+
} | null;
|
|
11871
|
+
governance?: PraxisQueryFilterGovernance | null;
|
|
11872
|
+
}
|
|
11873
|
+
interface PraxisQueryFilterGovernance extends Record<string, unknown> {
|
|
11874
|
+
source?: 'selected-records' | 'manual' | 'workflow' | 'ai-authored';
|
|
11875
|
+
decisionId?: string;
|
|
11876
|
+
explanation?: string;
|
|
11877
|
+
}
|
|
11878
|
+
type PraxisQueryFilterNode = PraxisQueryFilterGroup | PraxisQueryFilterPredicate;
|
|
11879
|
+
interface PraxisQueryFilterGroup {
|
|
11880
|
+
kind: 'group';
|
|
11881
|
+
operator: 'all' | 'any';
|
|
11882
|
+
clauses: PraxisQueryFilterNode[];
|
|
11883
|
+
}
|
|
11884
|
+
interface PraxisQueryFilterPredicate {
|
|
11885
|
+
kind: 'predicate';
|
|
11886
|
+
field: string;
|
|
11887
|
+
operator: PraxisQueryFilterPredicateOperator;
|
|
11888
|
+
value?: unknown;
|
|
11889
|
+
values?: unknown[];
|
|
11890
|
+
label?: string;
|
|
11891
|
+
source?: PraxisQueryFilterPredicateSource;
|
|
11892
|
+
}
|
|
11893
|
+
type PraxisQueryFilterPredicateOperator = 'equals' | 'notEquals' | 'in' | 'notIn' | 'contains' | 'startsWith' | 'between' | 'gte' | 'lte' | 'isNull' | 'isNotNull';
|
|
11894
|
+
interface PraxisQueryFilterPredicateSource extends Record<string, unknown> {
|
|
11895
|
+
kind: 'selected-records' | 'manual' | 'workflow' | 'current-context';
|
|
11896
|
+
field?: string;
|
|
11897
|
+
selectedIds?: Array<string | number>;
|
|
10119
11898
|
}
|
|
11899
|
+
declare function normalizePraxisQueryFilterNode(node?: Record<string, unknown> | null): PraxisQueryFilterNode | null;
|
|
11900
|
+
declare function normalizePraxisQueryFilterExpression(expression?: Partial<PraxisQueryFilterExpression> | null): PraxisQueryFilterExpression | null;
|
|
10120
11901
|
declare function normalizePraxisDataQueryContext(context?: PraxisDataQueryContext | null): PraxisDataQueryContext | null;
|
|
10121
11902
|
declare function resolvePraxisFilterCriteria(filterCriteria?: Record<string, unknown> | null, queryContext?: PraxisDataQueryContext | null): Record<string, unknown>;
|
|
10122
11903
|
|
|
@@ -10455,7 +12236,7 @@ interface GlobalActionField {
|
|
|
10455
12236
|
dependsOnValue?: string;
|
|
10456
12237
|
}
|
|
10457
12238
|
interface GlobalActionUiSchema {
|
|
10458
|
-
id:
|
|
12239
|
+
id: string;
|
|
10459
12240
|
label: string;
|
|
10460
12241
|
fields: GlobalActionField[];
|
|
10461
12242
|
editorMode?: 'default' | 'surface-open';
|
|
@@ -10463,6 +12244,33 @@ interface GlobalActionUiSchema {
|
|
|
10463
12244
|
declare const GLOBAL_ACTION_UI_SCHEMAS: GlobalActionUiSchema[];
|
|
10464
12245
|
declare function getGlobalActionUiSchema(id: string | undefined): GlobalActionUiSchema | undefined;
|
|
10465
12246
|
|
|
12247
|
+
type GlobalActionValidationCode = 'globalAction.actionId.required' | 'globalAction.payload.required' | 'globalAction.payload.type';
|
|
12248
|
+
interface GlobalActionValidationIssue {
|
|
12249
|
+
code: GlobalActionValidationCode;
|
|
12250
|
+
path?: string;
|
|
12251
|
+
actionId?: string;
|
|
12252
|
+
requiredKeys?: string[];
|
|
12253
|
+
missingKeys?: string[];
|
|
12254
|
+
expectedType?: string;
|
|
12255
|
+
actualType?: string;
|
|
12256
|
+
}
|
|
12257
|
+
interface GlobalActionValidationTarget {
|
|
12258
|
+
ref: GlobalActionRef | null | undefined;
|
|
12259
|
+
catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null;
|
|
12260
|
+
path?: string;
|
|
12261
|
+
}
|
|
12262
|
+
declare function normalizeGlobalActionRef(ref: GlobalActionRef | null | undefined): GlobalActionRef | null;
|
|
12263
|
+
declare function isGlobalActionRef(value: unknown): value is GlobalActionRef;
|
|
12264
|
+
declare function getRequiredGlobalActionPayloadKeys(actionId: string | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
|
|
12265
|
+
declare function hasMeaningfulGlobalActionPayloadValue(value: any): boolean;
|
|
12266
|
+
declare function getMissingGlobalActionPayloadKeys(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
|
|
12267
|
+
declare function isRequiredGlobalActionParamPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
|
|
12268
|
+
declare function isRequiredGlobalActionPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
|
|
12269
|
+
declare function getGlobalActionPayloadActualType(value: unknown): string;
|
|
12270
|
+
declare function getGlobalActionPayloadTypeIssue(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): Pick<GlobalActionValidationIssue, 'expectedType' | 'actualType'> | null;
|
|
12271
|
+
declare function validateGlobalActionRef(ref: GlobalActionRef | null | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null, path?: string): GlobalActionValidationIssue[];
|
|
12272
|
+
declare function validateGlobalActionRefs(targets: GlobalActionValidationTarget[]): GlobalActionValidationIssue[];
|
|
12273
|
+
|
|
10466
12274
|
interface SurfaceOpenPreset {
|
|
10467
12275
|
id: string;
|
|
10468
12276
|
label: string;
|
|
@@ -10591,6 +12399,209 @@ interface AiConcept {
|
|
|
10591
12399
|
}
|
|
10592
12400
|
type AiConceptPack = Record<string, AiConcept>;
|
|
10593
12401
|
|
|
12402
|
+
/**
|
|
12403
|
+
* Representa o contrato canônico de authoring executável de um componente.
|
|
12404
|
+
*/
|
|
12405
|
+
interface ComponentAuthoringManifest {
|
|
12406
|
+
/** Versão do schema do manifesto (ex: 1.0.0) */
|
|
12407
|
+
schemaVersion: string;
|
|
12408
|
+
/** Identificador único do componente no registry (ex: praxis-table) */
|
|
12409
|
+
componentId: string;
|
|
12410
|
+
/** Nome do pacote npm que possui o componente (ex: @praxisui/table) */
|
|
12411
|
+
ownerPackage: string;
|
|
12412
|
+
/** ID do schema de configuração (ex: TableConfig) */
|
|
12413
|
+
configSchemaId: string;
|
|
12414
|
+
/** Versão do manifesto específico deste componente */
|
|
12415
|
+
manifestVersion: string;
|
|
12416
|
+
/** Inputs que o componente aceita em runtime */
|
|
12417
|
+
runtimeInputs: ManifestInput[];
|
|
12418
|
+
/** Alvos que podem ser editados via AI */
|
|
12419
|
+
editableTargets: ManifestTarget[];
|
|
12420
|
+
/** Operações atômicas permitidas */
|
|
12421
|
+
operations: ManifestOperation[];
|
|
12422
|
+
/** Validadores de integridade da configuração */
|
|
12423
|
+
validators: ManifestValidator[];
|
|
12424
|
+
/** Requisitos para round-trip sem perda de informação */
|
|
12425
|
+
roundTripRequirements?: string[];
|
|
12426
|
+
/**
|
|
12427
|
+
* Exemplos de intenção → operação para uso em Few-Shot e evals.
|
|
12428
|
+
* Obrigatório: o gate de aceitação rejeita manifestos sem examples.
|
|
12429
|
+
* Deve conter ao menos um exemplo negativo (isPositive: false).
|
|
12430
|
+
*/
|
|
12431
|
+
examples: ManifestExample[];
|
|
12432
|
+
/**
|
|
12433
|
+
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
12434
|
+
* base, mas precisam expor semantica granular por componente/controlType.
|
|
12435
|
+
*/
|
|
12436
|
+
controlProfiles?: ManifestControlProfile[];
|
|
12437
|
+
}
|
|
12438
|
+
interface ManifestInput {
|
|
12439
|
+
name: string;
|
|
12440
|
+
type: string;
|
|
12441
|
+
description?: string;
|
|
12442
|
+
allowedValues?: any[];
|
|
12443
|
+
}
|
|
12444
|
+
interface ManifestTarget {
|
|
12445
|
+
kind: string;
|
|
12446
|
+
resolver: string;
|
|
12447
|
+
description: string;
|
|
12448
|
+
}
|
|
12449
|
+
/**
|
|
12450
|
+
* Política de submissão para campos locais num formulário.
|
|
12451
|
+
* - 'omit': campo não é incluído no payload de submissão (default para campos locais).
|
|
12452
|
+
* - 'include': campo é sempre incluído no payload.
|
|
12453
|
+
* - 'includeWhenDirty': campo é incluído apenas se o valor foi alterado pelo usuário.
|
|
12454
|
+
* NOTA: 'transient' NÃO é um valor válido; use source:'local' + transient:true no schema de input.
|
|
12455
|
+
*/
|
|
12456
|
+
type SubmitPolicy = 'omit' | 'include' | 'includeWhenDirty';
|
|
12457
|
+
type ManifestSubmissionImpact = 'none' | 'visual-only' | 'config-only' | 'affects-submission' | 'affects-schema-backed-data' | 'affects-remote-binding';
|
|
12458
|
+
interface ManifestOperation {
|
|
12459
|
+
operationId: string;
|
|
12460
|
+
title: string;
|
|
12461
|
+
/**
|
|
12462
|
+
* Escopo da operação.
|
|
12463
|
+
* - 'global': opera sobre a configuração raiz; target.required deve ser false.
|
|
12464
|
+
* - Outros valores: opera sobre um alvo específico; target.required deve ser true.
|
|
12465
|
+
* O valor 'target' é reservado para uso futuro e não deve ser usado.
|
|
12466
|
+
*/
|
|
12467
|
+
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';
|
|
12468
|
+
/**
|
|
12469
|
+
* @deprecated Use `target.kind` em vez disso.
|
|
12470
|
+
* Mantido para compatibilidade retroativa com ferramentas que lêem o registry.
|
|
12471
|
+
* Deve ser igual a `target.kind` quando `target` estiver presente.
|
|
12472
|
+
*/
|
|
12473
|
+
targetKind?: string;
|
|
12474
|
+
/**
|
|
12475
|
+
* Definição estruturada do alvo da operação.
|
|
12476
|
+
* Obrigatório para operações com scope diferente de 'global'.
|
|
12477
|
+
* Usado pelo backend para resolver o alvo antes de compilar o patch.
|
|
12478
|
+
*/
|
|
12479
|
+
target?: {
|
|
12480
|
+
/** Tipo do alvo (ex: column, rule) */
|
|
12481
|
+
kind: string;
|
|
12482
|
+
/** Resolver canônico usado para localizar o alvo (ex: column-by-field) */
|
|
12483
|
+
resolver: string;
|
|
12484
|
+
/** Política para lidar com ambiguidades na resolução */
|
|
12485
|
+
ambiguityPolicy?: 'fail' | 'first' | 'all';
|
|
12486
|
+
/** Se o alvo é obrigatório para a operação */
|
|
12487
|
+
required: boolean;
|
|
12488
|
+
};
|
|
12489
|
+
/** Schema JSON do payload de entrada da operação */
|
|
12490
|
+
inputSchema: any;
|
|
12491
|
+
/**
|
|
12492
|
+
* Efeitos que a operação causa na configuração.
|
|
12493
|
+
* Usado pelo backend para compilar o patch de forma determinística.
|
|
12494
|
+
*/
|
|
12495
|
+
effects: ManifestEffect[];
|
|
12496
|
+
/** Se true, a operação é destrutiva e pode causar perda de dados/configuração */
|
|
12497
|
+
destructive?: boolean;
|
|
12498
|
+
/**
|
|
12499
|
+
* Se true, o agente DEVE solicitar confirmação explícita antes de aplicar.
|
|
12500
|
+
* Obrigatório para todas as operações com destructive:true.
|
|
12501
|
+
*/
|
|
12502
|
+
requiresConfirmation?: boolean;
|
|
12503
|
+
/** IDs dos validadores que devem ser executados para esta operação */
|
|
12504
|
+
validators?: string[];
|
|
12505
|
+
/**
|
|
12506
|
+
* Caminhos (JSON Path-like) na configuração afetados por esta operação.
|
|
12507
|
+
* Deve cobrir todos os paths tocados pelos effects.
|
|
12508
|
+
* Usado pelo backend para validação de acesso e auditoria de mudanças.
|
|
12509
|
+
*/
|
|
12510
|
+
affectedPaths: string[];
|
|
12511
|
+
/**
|
|
12512
|
+
* Impacto declarado da operação sobre submissão, configuração visual ou binding remoto.
|
|
12513
|
+
* Boolean permanece aceito para manifests legados; manifests semanticamente validados devem usar
|
|
12514
|
+
* ManifestSubmissionImpact para evitar inferencia fragil no backend.
|
|
12515
|
+
*/
|
|
12516
|
+
submissionImpact: ManifestSubmissionImpact | boolean;
|
|
12517
|
+
/**
|
|
12518
|
+
* Condições de estado que devem ser verdadeiras antes de executar a operação.
|
|
12519
|
+
* Usado pelo backend para validação prévia ao patch.
|
|
12520
|
+
* Ex: ['config-initialized', 'target-exists']
|
|
12521
|
+
*/
|
|
12522
|
+
preconditions: string[];
|
|
12523
|
+
}
|
|
12524
|
+
/**
|
|
12525
|
+
* Efeito atômico sobre a configuração.
|
|
12526
|
+
* Usa discriminated union por `kind` para documentar quais campos são obrigatórios:
|
|
12527
|
+
*
|
|
12528
|
+
* - 'merge-object': path obrigatório; funde o payload no objeto no path.
|
|
12529
|
+
* - 'merge-by-key': path + key obrigatórios; funde pelo campo-chave em uma coleção.
|
|
12530
|
+
* - 'append-unique': path + key obrigatórios; adiciona item se não existir (deduplicação por key).
|
|
12531
|
+
* - 'remove-by-key': path + key obrigatórios; remove item da coleção pelo valor da key.
|
|
12532
|
+
* - 'reorder-by-key': path + key obrigatórios; reordena coleção por key.
|
|
12533
|
+
* - 'set-value': path obrigatório; seta o valor diretamente no path.
|
|
12534
|
+
* - 'compile-domain-patch': handler obrigatório; delega compilação a um handler especializado.
|
|
12535
|
+
*/
|
|
12536
|
+
interface ManifestEffect {
|
|
12537
|
+
kind: 'merge-object' | 'merge-by-key' | 'append-unique' | 'remove-by-key' | 'reorder-by-key' | 'set-value' | 'compile-domain-patch';
|
|
12538
|
+
/** Path JSON-like na configuração onde o efeito é aplicado. Obrigatório para todos os kinds exceto 'compile-domain-patch'. */
|
|
12539
|
+
path?: string;
|
|
12540
|
+
/** Chave de identidade em coleções. Obrigatório para merge-by-key, append-unique, remove-by-key, reorder-by-key. */
|
|
12541
|
+
key?: string;
|
|
12542
|
+
/** Valor literal para efeitos set-value quando o valor não vem do input da operação. */
|
|
12543
|
+
value?: unknown;
|
|
12544
|
+
/** Caminho opcional dentro do input da operação usado por efeitos set-value. */
|
|
12545
|
+
inputPath?: string;
|
|
12546
|
+
/** ID do handler especializado. Obrigatório quando kind é 'compile-domain-patch'. */
|
|
12547
|
+
handler?: string;
|
|
12548
|
+
handlerContract?: ManifestDomainPatchHandlerContract;
|
|
12549
|
+
}
|
|
12550
|
+
interface ManifestDomainPatchHandlerContract {
|
|
12551
|
+
reads: string[];
|
|
12552
|
+
writes: string[];
|
|
12553
|
+
identityKeys: string[];
|
|
12554
|
+
inputSchema?: any;
|
|
12555
|
+
failureModes: string[];
|
|
12556
|
+
description: string;
|
|
12557
|
+
}
|
|
12558
|
+
interface ManifestValidator {
|
|
12559
|
+
validatorId: string;
|
|
12560
|
+
level: 'error' | 'warning' | 'info';
|
|
12561
|
+
code: string;
|
|
12562
|
+
description: string;
|
|
12563
|
+
}
|
|
12564
|
+
interface ManifestExample {
|
|
12565
|
+
id: string;
|
|
12566
|
+
request: string;
|
|
12567
|
+
operationId: string;
|
|
12568
|
+
target?: string;
|
|
12569
|
+
params?: any;
|
|
12570
|
+
isPositive?: boolean;
|
|
12571
|
+
}
|
|
12572
|
+
interface ManifestControlProfile {
|
|
12573
|
+
/** Identificador estavel do perfil dentro do manifesto familiar. */
|
|
12574
|
+
profileId: string;
|
|
12575
|
+
/** Nome curto usado por ferramentas de authoring. */
|
|
12576
|
+
title: string;
|
|
12577
|
+
/** Explica a semantica que este perfil adiciona sobre o manifesto base. */
|
|
12578
|
+
description: string;
|
|
12579
|
+
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
12580
|
+
appliesTo: ManifestControlProfileApplicability;
|
|
12581
|
+
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
12582
|
+
editableTargets?: ManifestTarget[];
|
|
12583
|
+
/** Operacoes especificas do perfil/controlType. */
|
|
12584
|
+
operations: ManifestOperation[];
|
|
12585
|
+
/** Validadores especificos do perfil/controlType. */
|
|
12586
|
+
validators: ManifestValidator[];
|
|
12587
|
+
/** Exemplos/evals especificos do perfil/controlType. */
|
|
12588
|
+
examples: ManifestExample[];
|
|
12589
|
+
/** Requisitos adicionais de round-trip para este perfil. */
|
|
12590
|
+
roundTripRequirements?: string[];
|
|
12591
|
+
}
|
|
12592
|
+
interface ManifestControlProfileApplicability {
|
|
12593
|
+
/** IDs de componentes do registry que devem receber este perfil. */
|
|
12594
|
+
componentIds?: string[];
|
|
12595
|
+
/** Selectors publicos que devem receber este perfil. */
|
|
12596
|
+
selectors?: string[];
|
|
12597
|
+
/** Control types canonicos ou aliases que devem receber este perfil. */
|
|
12598
|
+
controlTypes?: string[];
|
|
12599
|
+
/** Tags de ComponentDocMeta usadas como fallback de classificacao. */
|
|
12600
|
+
tags?: string[];
|
|
12601
|
+
/** Tipos do input `metadata` usados como fallback de classificacao. */
|
|
12602
|
+
metadataInputTypes?: string[];
|
|
12603
|
+
}
|
|
12604
|
+
|
|
10594
12605
|
/**
|
|
10595
12606
|
* Catálogo de capacidades genéricas de FieldMetadata para uso da IA.
|
|
10596
12607
|
* Baseado em projects/praxis-core/src/lib/models/component-metadata.interface.ts
|
|
@@ -10612,7 +12623,7 @@ declare function getFieldMetadataCapabilities(): Capability$1[];
|
|
|
10612
12623
|
* Paths follow WidgetPageDefinition shape under "page".
|
|
10613
12624
|
*/
|
|
10614
12625
|
|
|
10615
|
-
declare module "./
|
|
12626
|
+
declare module "./praxisui-core" {
|
|
10616
12627
|
interface AiCapabilityCategoryMap {
|
|
10617
12628
|
page: true;
|
|
10618
12629
|
layout: true;
|
|
@@ -10620,6 +12631,7 @@ declare module "./index" {
|
|
|
10620
12631
|
shell: true;
|
|
10621
12632
|
connections: true;
|
|
10622
12633
|
context: true;
|
|
12634
|
+
state: true;
|
|
10623
12635
|
}
|
|
10624
12636
|
}
|
|
10625
12637
|
type CapabilityCategory = AiCapabilityCategory;
|
|
@@ -10650,7 +12662,11 @@ interface ComponentActionParam {
|
|
|
10650
12662
|
}
|
|
10651
12663
|
interface ComponentContextAction {
|
|
10652
12664
|
id: string;
|
|
10653
|
-
|
|
12665
|
+
/**
|
|
12666
|
+
* Natural-language examples for LLM grounding only.
|
|
12667
|
+
* Runtime code must not use these strings for keyword routing.
|
|
12668
|
+
*/
|
|
12669
|
+
intentExamples?: string[];
|
|
10654
12670
|
patchTemplate: any;
|
|
10655
12671
|
safetyNotes?: string;
|
|
10656
12672
|
/**
|
|
@@ -10706,10 +12722,14 @@ interface ComponentMergePatch<TConfig extends Record<string, unknown> = Record<s
|
|
|
10706
12722
|
|
|
10707
12723
|
declare const DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK: ComponentContextPack;
|
|
10708
12724
|
|
|
12725
|
+
declare const DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK: ComponentContextPack;
|
|
12726
|
+
|
|
10709
12727
|
interface WidgetEventPathSegment {
|
|
10710
|
-
kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
|
|
12728
|
+
kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group' | 'widget';
|
|
10711
12729
|
id?: string;
|
|
12730
|
+
key?: string;
|
|
10712
12731
|
index?: number;
|
|
12732
|
+
componentType?: string;
|
|
10713
12733
|
}
|
|
10714
12734
|
interface WidgetEventEnvelope {
|
|
10715
12735
|
/** Optional top-level page widget key that owns the event tree. */
|
|
@@ -10731,6 +12751,50 @@ interface WidgetResolutionDiagnostic {
|
|
|
10731
12751
|
error?: unknown;
|
|
10732
12752
|
}
|
|
10733
12753
|
|
|
12754
|
+
interface WidgetEventPathNormalizeOptions {
|
|
12755
|
+
/** Optional owner component id used to strip only the top-level container segment. */
|
|
12756
|
+
ownerComponentId?: string;
|
|
12757
|
+
}
|
|
12758
|
+
interface WidgetEventPathNormalizeInput {
|
|
12759
|
+
path?: WidgetEventPathSegment[];
|
|
12760
|
+
sourceChildWidgetKey?: string;
|
|
12761
|
+
sourceComponentId?: string;
|
|
12762
|
+
}
|
|
12763
|
+
declare function normalizeWidgetEventPath(event: WidgetEventEnvelope | WidgetEventPathNormalizeInput, options?: WidgetEventPathNormalizeOptions): ComponentPortPathSegment[];
|
|
12764
|
+
|
|
12765
|
+
interface NestedWidgetResolution {
|
|
12766
|
+
ownerWidgetKey: string;
|
|
12767
|
+
nestedPath: ComponentPortPathSegment[];
|
|
12768
|
+
widget: WidgetDefinition;
|
|
12769
|
+
componentId: string;
|
|
12770
|
+
childWidgetKey: string;
|
|
12771
|
+
}
|
|
12772
|
+
interface NestedWidgetInputPatchResult {
|
|
12773
|
+
widget: WidgetInstance;
|
|
12774
|
+
changed: boolean;
|
|
12775
|
+
}
|
|
12776
|
+
declare class NestedWidgetConfigAccessor {
|
|
12777
|
+
listNestedWidgets(owner: WidgetInstance): NestedWidgetResolution[];
|
|
12778
|
+
resolveNestedWidget(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined): WidgetDefinition | undefined;
|
|
12779
|
+
setNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string, value: unknown): NestedWidgetInputPatchResult;
|
|
12780
|
+
private listNestedWidgetsInDefinition;
|
|
12781
|
+
private resolveNestedWidgetInDefinition;
|
|
12782
|
+
private setNestedWidgetInputInDefinition;
|
|
12783
|
+
private listChildWidgetLocations;
|
|
12784
|
+
private listTabsWidgetLocations;
|
|
12785
|
+
private listExpansionWidgetLocations;
|
|
12786
|
+
private resolveWidgetArrayLocation;
|
|
12787
|
+
private resolveTabsWidgetArray;
|
|
12788
|
+
private resolveExpansionWidgetArray;
|
|
12789
|
+
private findBySegment;
|
|
12790
|
+
private segmentIdentity;
|
|
12791
|
+
private asWidgetDefinitions;
|
|
12792
|
+
private isWidgetDefinition;
|
|
12793
|
+
private resolveChildWidgetKey;
|
|
12794
|
+
private clone;
|
|
12795
|
+
private isEqual;
|
|
12796
|
+
}
|
|
12797
|
+
|
|
10734
12798
|
type EditorialContentFormat = 'plain' | 'markdown';
|
|
10735
12799
|
interface EditorialLinkDefinition {
|
|
10736
12800
|
label: string;
|
|
@@ -10934,17 +12998,27 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
10934
12998
|
widgetDiagnostic: EventEmitter<WidgetResolutionDiagnostic>;
|
|
10935
12999
|
private compRef?;
|
|
10936
13000
|
private currentId?;
|
|
13001
|
+
private currentUsesInitialBindings;
|
|
13002
|
+
private currentInitialBindingSignature;
|
|
10937
13003
|
private outputSubs;
|
|
10938
13004
|
/** Dispatch a shell action to the inner widget instance when supported. */
|
|
10939
13005
|
dispatchAction(action: WidgetShellActionEvent): boolean;
|
|
10940
13006
|
ngOnInit(): void;
|
|
10941
13007
|
ngOnChanges(changes: SimpleChanges): void;
|
|
10942
13008
|
ngOnDestroy(): void;
|
|
13009
|
+
renderNow(): void;
|
|
10943
13010
|
private parseWidget;
|
|
10944
13011
|
private tryRender;
|
|
10945
13012
|
private createComponent;
|
|
10946
13013
|
private destroyCurrent;
|
|
13014
|
+
private shouldUseInitialInputBindings;
|
|
10947
13015
|
private bindInputs;
|
|
13016
|
+
private initialBindingSignature;
|
|
13017
|
+
private orderedInputEntries;
|
|
13018
|
+
private resolveAndCoerceValue;
|
|
13019
|
+
private withInferredIdentityInputs;
|
|
13020
|
+
private normalizeMaterializedRuntimeInputs;
|
|
13021
|
+
private inferResourcePathFromSchemaUrl;
|
|
10948
13022
|
private bindOutputs;
|
|
10949
13023
|
private resolveValue;
|
|
10950
13024
|
private get widgetDefinition();
|
|
@@ -10952,6 +13026,8 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
10952
13026
|
private lookup;
|
|
10953
13027
|
private validateAgainstMetadata;
|
|
10954
13028
|
private coercePrimitive;
|
|
13029
|
+
private stableStringify;
|
|
13030
|
+
private stableSerializableValue;
|
|
10955
13031
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetLoaderDirective, never>;
|
|
10956
13032
|
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
13033
|
}
|
|
@@ -10962,6 +13038,7 @@ declare const BUILTIN_SHELL_PRESETS: Record<string, NonNullable<Appearance>>;
|
|
|
10962
13038
|
declare class WidgetShellComponent implements OnChanges {
|
|
10963
13039
|
private readonly i18n;
|
|
10964
13040
|
get hostCollapsed(): boolean;
|
|
13041
|
+
get dragSurfaceInteractive(): boolean;
|
|
10965
13042
|
shell?: WidgetShellConfig | null;
|
|
10966
13043
|
context?: Record<string, any> | null;
|
|
10967
13044
|
dragSurfaceEnabled: boolean;
|
|
@@ -10974,7 +13051,10 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
10974
13051
|
collapsed: boolean;
|
|
10975
13052
|
expanded: boolean;
|
|
10976
13053
|
fullscreen: boolean;
|
|
10977
|
-
|
|
13054
|
+
private initializedWindowState;
|
|
13055
|
+
private lastWindowStateInputs?;
|
|
13056
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
13057
|
+
private syncInitialWindowState;
|
|
10978
13058
|
get shellEnabled(): boolean;
|
|
10979
13059
|
get showHeader(): boolean;
|
|
10980
13060
|
get headerActions(): ActionList;
|
|
@@ -10993,6 +13073,8 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
10993
13073
|
private isVisible;
|
|
10994
13074
|
private resolvePresetAppearance;
|
|
10995
13075
|
private mergeAppearance;
|
|
13076
|
+
private readWindowStateInputs;
|
|
13077
|
+
private areWindowStateInputsEqual;
|
|
10996
13078
|
private isInteractiveHeaderTarget;
|
|
10997
13079
|
private t;
|
|
10998
13080
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetShellComponent, never>;
|
|
@@ -11030,6 +13112,7 @@ declare class WidgetPageStateRuntimeService {
|
|
|
11030
13112
|
private evaluateDerivedJsonLogic;
|
|
11031
13113
|
private resolveCaseValue;
|
|
11032
13114
|
private resolveTemplate;
|
|
13115
|
+
private isPageStateTemplatePath;
|
|
11033
13116
|
private normalizeDependencyPath;
|
|
11034
13117
|
private readPath;
|
|
11035
13118
|
private isPlainObject;
|
|
@@ -11058,6 +13141,86 @@ interface WidgetPageComposition {
|
|
|
11058
13141
|
context: Record<string, unknown>;
|
|
11059
13142
|
}
|
|
11060
13143
|
|
|
13144
|
+
interface NestedPortCatalogRegistry {
|
|
13145
|
+
get(id: string): Pick<ComponentDocMeta, 'ports'> | undefined;
|
|
13146
|
+
}
|
|
13147
|
+
interface ResolvedNestedPort {
|
|
13148
|
+
ownerWidgetKey: string;
|
|
13149
|
+
ownerComponentId?: string;
|
|
13150
|
+
nestedPath: ComponentPortPathSegment[];
|
|
13151
|
+
containerPath?: ComponentPortPathSegment[];
|
|
13152
|
+
port: PortContract;
|
|
13153
|
+
componentId: string;
|
|
13154
|
+
childWidgetKey: string;
|
|
13155
|
+
}
|
|
13156
|
+
interface NestedPortCatalogDiagnostic {
|
|
13157
|
+
code: 'NESTED_WIDGET_METADATA_MISSING' | 'NESTED_WIDGET_KEY_MISSING';
|
|
13158
|
+
severity: 'warning' | 'error';
|
|
13159
|
+
ownerWidgetKey: string;
|
|
13160
|
+
nestedPath: ComponentPortPathSegment[];
|
|
13161
|
+
componentId?: string;
|
|
13162
|
+
message: string;
|
|
13163
|
+
}
|
|
13164
|
+
interface NestedPortCatalogResult {
|
|
13165
|
+
ports: ResolvedNestedPort[];
|
|
13166
|
+
diagnostics: NestedPortCatalogDiagnostic[];
|
|
13167
|
+
}
|
|
13168
|
+
declare class NestedPortCatalogService {
|
|
13169
|
+
private readonly accessor;
|
|
13170
|
+
constructor(accessor?: NestedWidgetConfigAccessor);
|
|
13171
|
+
resolve(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry): NestedPortCatalogResult;
|
|
13172
|
+
resolveEndpoint(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry, options: {
|
|
13173
|
+
ownerWidgetKey: string;
|
|
13174
|
+
nestedPath: ComponentPortPathSegment[];
|
|
13175
|
+
portId: string;
|
|
13176
|
+
direction: PortContract['direction'];
|
|
13177
|
+
}): ResolvedNestedPort | undefined;
|
|
13178
|
+
private hasStableTerminalKey;
|
|
13179
|
+
private containerPath;
|
|
13180
|
+
private isSamePath;
|
|
13181
|
+
private clone;
|
|
13182
|
+
}
|
|
13183
|
+
|
|
13184
|
+
type SemanticEndpointRef = EndpointRef & {
|
|
13185
|
+
ref: EndpointRef['ref'] & {
|
|
13186
|
+
semanticKind?: TransformSemanticKind;
|
|
13187
|
+
};
|
|
13188
|
+
};
|
|
13189
|
+
type SemanticCompositionLink = CompositionLink & {
|
|
13190
|
+
from: SemanticEndpointRef;
|
|
13191
|
+
to: SemanticEndpointRef;
|
|
13192
|
+
transform?: TransformPipeline;
|
|
13193
|
+
};
|
|
13194
|
+
interface CompositionValidatorContext {
|
|
13195
|
+
page?: Pick<WidgetPageDefinition, 'widgets'>;
|
|
13196
|
+
registry?: NestedPortCatalogRegistry;
|
|
13197
|
+
links?: SemanticCompositionLink[];
|
|
13198
|
+
}
|
|
13199
|
+
declare class CompositionValidatorService {
|
|
13200
|
+
private readonly nestedPortCatalog;
|
|
13201
|
+
private readonly jsonLogic;
|
|
13202
|
+
constructor(nestedPortCatalog?: NestedPortCatalogService, jsonLogic?: PraxisJsonLogicService);
|
|
13203
|
+
validateLink(link: SemanticCompositionLink, context?: CompositionValidatorContext): DiagnosticRecord[];
|
|
13204
|
+
private validateEndpointDirections;
|
|
13205
|
+
private validateBindingPathBridge;
|
|
13206
|
+
private validateNestedComponentEndpoints;
|
|
13207
|
+
private validateNestedPortCatalog;
|
|
13208
|
+
private projectCatalogDiagnostics;
|
|
13209
|
+
private validateNestedWidgetEventCoexistence;
|
|
13210
|
+
private validateStateWrites;
|
|
13211
|
+
private validateGlobalActionTarget;
|
|
13212
|
+
private validateCondition;
|
|
13213
|
+
private validateTransformCatalog;
|
|
13214
|
+
private validateSemanticCompatibility;
|
|
13215
|
+
private endpointSemanticKind;
|
|
13216
|
+
private areSemanticKindsCompatible;
|
|
13217
|
+
private areKindsDirectlyCompatible;
|
|
13218
|
+
private createDiagnostic;
|
|
13219
|
+
private formatNestedPath;
|
|
13220
|
+
private nestedEndpointSubject;
|
|
13221
|
+
private isSameNestedPath;
|
|
13222
|
+
}
|
|
13223
|
+
|
|
11061
13224
|
interface CompositionRuntimeStoreInit {
|
|
11062
13225
|
pageId?: string;
|
|
11063
13226
|
status?: RuntimeSnapshotStatus;
|
|
@@ -11131,13 +13294,16 @@ interface LinkExecutionContext {
|
|
|
11131
13294
|
lastDeliveredAt?: string;
|
|
11132
13295
|
}
|
|
11133
13296
|
interface LinkExecutionDelivery {
|
|
11134
|
-
kind: 'state' | 'component-port';
|
|
13297
|
+
kind: 'state' | 'component-port' | 'global-action';
|
|
11135
13298
|
value: unknown;
|
|
11136
13299
|
statePath?: string;
|
|
11137
13300
|
stateLayer?: 'values' | 'derived' | 'transient';
|
|
11138
13301
|
widgetKey?: string;
|
|
11139
13302
|
portId?: string;
|
|
11140
13303
|
bindingPath?: string;
|
|
13304
|
+
nestedPath?: ComponentPortPathSegment[];
|
|
13305
|
+
actionId?: string;
|
|
13306
|
+
actionRef?: GlobalActionRef;
|
|
11141
13307
|
}
|
|
11142
13308
|
interface LinkExecutionResult {
|
|
11143
13309
|
status: 'delivered' | 'skipped' | 'failed';
|
|
@@ -11207,6 +13373,7 @@ interface CompositionRuntimeEngineOptions {
|
|
|
11207
13373
|
linkExecutor?: LinkExecutorService;
|
|
11208
13374
|
stateRuntime?: WidgetPageStateRuntimeService;
|
|
11209
13375
|
traceService?: RuntimeTraceService;
|
|
13376
|
+
compositionValidator?: CompositionValidatorService;
|
|
11210
13377
|
}
|
|
11211
13378
|
interface CompositionStateWidgetPreviewOptions {
|
|
11212
13379
|
widgets?: WidgetInstance[];
|
|
@@ -11223,7 +13390,9 @@ declare class CompositionRuntimeEngine {
|
|
|
11223
13390
|
private readonly linkExecutor;
|
|
11224
13391
|
private readonly stateRuntime;
|
|
11225
13392
|
private readonly traceService;
|
|
13393
|
+
private readonly compositionValidator;
|
|
11226
13394
|
private readonly pathAccessor;
|
|
13395
|
+
private readonly nestedWidgetAccessor;
|
|
11227
13396
|
private definition;
|
|
11228
13397
|
private readonly now;
|
|
11229
13398
|
constructor(options?: CompositionRuntimeEngineOptions);
|
|
@@ -11235,11 +13404,13 @@ declare class CompositionRuntimeEngine {
|
|
|
11235
13404
|
private createLinkSnapshot;
|
|
11236
13405
|
private applyBootstrapHydration;
|
|
11237
13406
|
private materializeDerivedState;
|
|
13407
|
+
private validateComposition;
|
|
11238
13408
|
private createDerivedDiagnostic;
|
|
11239
13409
|
private clonePreviewWidgets;
|
|
11240
13410
|
private cloneJson;
|
|
11241
13411
|
private extractDerivedNodeKey;
|
|
11242
13412
|
private appendDiagnosticTraceEntries;
|
|
13413
|
+
private createNestedWidgetEventBridgeDiagnostics;
|
|
11243
13414
|
}
|
|
11244
13415
|
|
|
11245
13416
|
interface CompositionRuntimeFacadeOptions {
|
|
@@ -11330,8 +13501,12 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11330
13501
|
pageIdentity?: PageIdentity;
|
|
11331
13502
|
/** Optional instance key for pages rendered multiple times. */
|
|
11332
13503
|
componentInstanceId?: string;
|
|
13504
|
+
/** Enables a contextual authoring assistant entrypoint for the selected widget. */
|
|
13505
|
+
showWidgetAssistantButton: boolean;
|
|
11333
13506
|
pageChange: EventEmitter<WidgetPageDefinition>;
|
|
11334
13507
|
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
13508
|
+
widgetSelectionChange: EventEmitter<string | null>;
|
|
13509
|
+
widgetAssistantRequested: EventEmitter<string>;
|
|
11335
13510
|
widgetDiagnosticsChange: EventEmitter<Record<string, WidgetResolutionDiagnostic>>;
|
|
11336
13511
|
widgets: i0.WritableSignal<WidgetInstance[]>;
|
|
11337
13512
|
renderedGroups: i0.WritableSignal<RenderedWidgetGroup[]>;
|
|
@@ -11350,7 +13525,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11350
13525
|
private pageColumnCount;
|
|
11351
13526
|
private activeTabs;
|
|
11352
13527
|
private widgetDiagnostics;
|
|
11353
|
-
private
|
|
13528
|
+
private selectedWidgetKey;
|
|
11354
13529
|
private blockedCanvasWidgetKey;
|
|
11355
13530
|
private canvasPreviewState;
|
|
11356
13531
|
private canvasPreviewInvalidState;
|
|
@@ -11361,6 +13536,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11361
13536
|
private persistenceReady;
|
|
11362
13537
|
private warnedMissingKey;
|
|
11363
13538
|
private runtimeEventSequence;
|
|
13539
|
+
private readonly widgetShellRenderCache;
|
|
11364
13540
|
private readonly compositionFactory;
|
|
11365
13541
|
private readonly compositionRuntime;
|
|
11366
13542
|
private compositionDefinition?;
|
|
@@ -11372,6 +13548,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11372
13548
|
private readonly route;
|
|
11373
13549
|
private readonly conn;
|
|
11374
13550
|
private readonly stateRuntime;
|
|
13551
|
+
private readonly nestedWidgetAccessor;
|
|
11375
13552
|
private readonly settingsPanel;
|
|
11376
13553
|
private readonly defaultShellEditor;
|
|
11377
13554
|
private readonly defaultPageEditor;
|
|
@@ -11380,37 +13557,92 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11380
13557
|
ngOnChanges(changes: SimpleChanges): void;
|
|
11381
13558
|
onWidgetEvent(fromKey: string, evt: WidgetEventEnvelope): void;
|
|
11382
13559
|
private applyWidgetInputPatchToPage;
|
|
13560
|
+
private resolveWidgetInputPatchNestedPath;
|
|
11383
13561
|
private extractWidgetInputPatch;
|
|
11384
13562
|
private buildStateRuntime;
|
|
11385
13563
|
private bootstrapCompositionAdapter;
|
|
11386
13564
|
private applyEditShellActions;
|
|
11387
|
-
private withShellActions;
|
|
11388
13565
|
private applyBootstrapCompositionHydration;
|
|
13566
|
+
private applyRecordRelatedSurfaceAiContext;
|
|
13567
|
+
private buildRecordRelatedSurfacesBySource;
|
|
13568
|
+
private isTableRowClickToStateLink;
|
|
13569
|
+
private isStateToTableQueryContextLink;
|
|
13570
|
+
private resolveRecordSurfaceId;
|
|
13571
|
+
private resolveRecordSurfaceLabel;
|
|
13572
|
+
private resolveRecordSurfaceTabLabel;
|
|
13573
|
+
private humanizeRecordSurfaceLabel;
|
|
13574
|
+
private resolveRecordSurfaceChildWidgetKey;
|
|
13575
|
+
private recordSurfaceSourceKey;
|
|
13576
|
+
private recordSurfaceNestedPathSignature;
|
|
13577
|
+
private parseRecordSurfaceNestedPathSignature;
|
|
13578
|
+
private stringOrNull;
|
|
13579
|
+
private isRecord;
|
|
13580
|
+
private maybeOpenRecordRelatedSurface;
|
|
13581
|
+
private applyRecordSurfaceSourceState;
|
|
13582
|
+
private findRecordSurfaceTabIndex;
|
|
13583
|
+
private shouldMaterializeSelectedIndexInput;
|
|
11389
13584
|
private reportStateDiagnostics;
|
|
11390
13585
|
private dispatchWidgetEventToComposition;
|
|
13586
|
+
private matchesRuntimeSourceRef;
|
|
13587
|
+
private matchesLegacyWidgetEventSource;
|
|
13588
|
+
private areNestedPathsEqual;
|
|
11391
13589
|
private stateFromCompositionSnapshot;
|
|
11392
13590
|
private applyCompositionWidgetDeliveries;
|
|
13591
|
+
private executeCompositionGlobalActionDeliveries;
|
|
13592
|
+
private resolveCompositionGlobalActionRef;
|
|
11393
13593
|
private buildStateContext;
|
|
11394
13594
|
private cloneStateValues;
|
|
11395
13595
|
private cloneGrouping;
|
|
11396
13596
|
private resolveShellTemplates;
|
|
13597
|
+
private enrichRuntimeWidgetInputs;
|
|
13598
|
+
private buildRichContentHostCapabilities;
|
|
13599
|
+
private dispatchRichContentAction;
|
|
13600
|
+
private isRichContentActionAvailable;
|
|
13601
|
+
private hasRichContentCapability;
|
|
11397
13602
|
private resolveComponentBindingPath;
|
|
11398
13603
|
private buildRuntimeEventId;
|
|
11399
|
-
|
|
11400
|
-
|
|
13604
|
+
canOpenWidgetShellSettings(): boolean;
|
|
13605
|
+
canOpenWidgetComponentSettings(key: string): boolean;
|
|
13606
|
+
componentSettingsLabel(): string;
|
|
13607
|
+
componentSettingsTooltip(): string;
|
|
13608
|
+
widgetSettingsLabel(): string;
|
|
13609
|
+
widgetSettingsTooltip(): string;
|
|
13610
|
+
widgetAssistantLabel(): string;
|
|
13611
|
+
widgetAssistantTooltip(): string;
|
|
13612
|
+
requestWidgetAssistant(widgetKey: string): void;
|
|
13613
|
+
widgetRemoveLabel(): string;
|
|
13614
|
+
moreWidgetActionsLabel(): string;
|
|
13615
|
+
widgetContextToolbarLabel(widgetKey: string): string;
|
|
13616
|
+
widgetContextLabel(widget: WidgetInstance): string;
|
|
13617
|
+
widgetContextTooltip(widget: WidgetInstance): string;
|
|
13618
|
+
shouldRenderWidgetContextOverlay(widget: WidgetInstance): boolean;
|
|
13619
|
+
widgetShellForRender(widget: WidgetInstance): WidgetShellConfig | null | undefined;
|
|
13620
|
+
private resolveWidgetDisplayName;
|
|
13621
|
+
private shouldProjectWidgetHeaderActions;
|
|
13622
|
+
private hasVisibleWidgetShellHeader;
|
|
13623
|
+
private hasVisibleShellActions;
|
|
13624
|
+
private hasVisibleWindowActions;
|
|
13625
|
+
private buildProjectedWidgetShellActions;
|
|
13626
|
+
private widgetShellActionSignature;
|
|
13627
|
+
private isVisibleShellAction;
|
|
11401
13628
|
private areStateValuesEqual;
|
|
11402
13629
|
onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
|
|
11403
13630
|
onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
11404
13631
|
private handleSetInputCommand;
|
|
11405
13632
|
private mergeOrder;
|
|
11406
13633
|
private maybeExecuteMappedAction;
|
|
11407
|
-
private maybeExecuteGlobalCommand;
|
|
11408
13634
|
private resolveActionPayload;
|
|
11409
13635
|
private resolveTemplate;
|
|
11410
13636
|
private lookup;
|
|
11411
13637
|
openWidgetShellSettings(key: string): void;
|
|
11412
13638
|
openWidgetComponentSettings(key: string): void;
|
|
11413
13639
|
private applyWidgetComponentInputs;
|
|
13640
|
+
confirmAndRemoveWidget(widgetKey: string): Promise<void>;
|
|
13641
|
+
removeSelectedWidget(): void;
|
|
13642
|
+
removeSelectedCanvasWidget(): void;
|
|
13643
|
+
private removeWidgetReferences;
|
|
13644
|
+
private linkReferencesWidget;
|
|
13645
|
+
private endpointReferencesWidget;
|
|
11414
13646
|
openPageSettings(): void;
|
|
11415
13647
|
private applyWidgetShell;
|
|
11416
13648
|
private applyPageLayout;
|
|
@@ -11434,8 +13666,14 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11434
13666
|
private resolveDeviceKind;
|
|
11435
13667
|
isCanvasMode(): boolean;
|
|
11436
13668
|
shouldAutoWireOutputs(widget: WidgetInstance | RenderedWidgetInstance): boolean;
|
|
11437
|
-
|
|
13669
|
+
private hasCompositionOutputLinks;
|
|
13670
|
+
selectWidget(widgetKey: string): void;
|
|
13671
|
+
selectWidgetFromHostEvent(widgetKey: string, event: Event): void;
|
|
11438
13672
|
isCanvasWidgetSelected(widgetKey: string): boolean;
|
|
13673
|
+
isWidgetSelected(widgetKey: string): boolean;
|
|
13674
|
+
private shouldPreserveInnerWidgetInteraction;
|
|
13675
|
+
selectCanvasWidget(widgetKey: string): void;
|
|
13676
|
+
getPageSnapshot(): WidgetPageDefinition;
|
|
11439
13677
|
isCanvasWidgetBlocked(widgetKey: string): boolean;
|
|
11440
13678
|
canvasPreviewItem(): WidgetPageCanvasItem | null;
|
|
11441
13679
|
canvasPreviewGridColumn(): string | null;
|
|
@@ -11448,6 +13686,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11448
13686
|
private applyWidgetLayoutOverrides;
|
|
11449
13687
|
private applyCanvasLayoutToWidgets;
|
|
11450
13688
|
private startCanvasInteraction;
|
|
13689
|
+
private cancelCanvasInteractionForWidget;
|
|
13690
|
+
private isCanvasOverlayInteraction;
|
|
11451
13691
|
private currentCanvasMetrics;
|
|
11452
13692
|
private currentCanvasItem;
|
|
11453
13693
|
private resolveCanvasInteractionDelta;
|
|
@@ -11505,7 +13745,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11505
13745
|
private sanitizeSegment;
|
|
11506
13746
|
private assertNoLegacyConnections;
|
|
11507
13747
|
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>;
|
|
13748
|
+
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
13749
|
}
|
|
11510
13750
|
|
|
11511
13751
|
/** Metadata for Praxis Dynamic Page component */
|
|
@@ -11515,7 +13755,7 @@ declare const PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA: ComponentDocMeta;
|
|
|
11515
13755
|
*/
|
|
11516
13756
|
declare function providePraxisDynamicPageMetadata(): Provider;
|
|
11517
13757
|
|
|
11518
|
-
declare class PraxisSurfaceHostComponent {
|
|
13758
|
+
declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
11519
13759
|
title?: string;
|
|
11520
13760
|
subtitle?: string;
|
|
11521
13761
|
icon?: string;
|
|
@@ -11527,6 +13767,11 @@ declare class PraxisSurfaceHostComponent {
|
|
|
11527
13767
|
* modal/drawer hosts. Inline consumers may opt into rendering it again.
|
|
11528
13768
|
*/
|
|
11529
13769
|
renderTitleInsideBody: boolean;
|
|
13770
|
+
private widgetLoader?;
|
|
13771
|
+
private renderQueued;
|
|
13772
|
+
ngAfterViewInit(): void;
|
|
13773
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
13774
|
+
private scheduleWidgetRender;
|
|
11530
13775
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
|
|
11531
13776
|
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
13777
|
}
|
|
@@ -11650,7 +13895,7 @@ declare function normalizeFormConfig(config: FormConfig): FormConfig;
|
|
|
11650
13895
|
|
|
11651
13896
|
/** Minimal metadata about the backend schema source. */
|
|
11652
13897
|
interface SchemaMetaInfo {
|
|
11653
|
-
/** API path used to resolve the schema (e.g., /api/employees/
|
|
13898
|
+
/** API path used to resolve the schema (e.g., /api/employees/filter) */
|
|
11654
13899
|
path: string;
|
|
11655
13900
|
/** Operation used when fetching the schema (get|post) */
|
|
11656
13901
|
operation: string;
|
|
@@ -11724,6 +13969,12 @@ interface SchemaIdParams {
|
|
|
11724
13969
|
}
|
|
11725
13970
|
declare function normalizePath(p: string): string;
|
|
11726
13971
|
declare function buildSchemaId(params: SchemaIdParams): string;
|
|
13972
|
+
/**
|
|
13973
|
+
* Produces a deterministic, storage-safe segment for places that impose short
|
|
13974
|
+
* identifier limits. This must not replace the semantic schemaId stored in
|
|
13975
|
+
* payloads or metadata.
|
|
13976
|
+
*/
|
|
13977
|
+
declare function buildSchemaIdStorageKeySegment(schemaId: string): string;
|
|
11727
13978
|
|
|
11728
13979
|
interface FetchWithEtagParams {
|
|
11729
13980
|
url: string;
|
|
@@ -11903,5 +14154,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
11903
14154
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
11904
14155
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
11905
14156
|
|
|
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 };
|
|
14157
|
+
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, 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 };
|
|
14158
|
+
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 };
|