@praxisui/core 9.0.0-beta.8 → 9.0.0-beta.81
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 +35 -0
- package/ai/component-registry.json +4342 -0
- package/fesm2022/praxisui-core.mjs +6278 -921
- package/package.json +19 -12
- package/theme-bridge.css +11 -0
- package/types/praxisui-core.d.ts +1419 -103
package/types/praxisui-core.d.ts
CHANGED
|
@@ -80,6 +80,8 @@ interface LocateRequest {
|
|
|
80
80
|
type OptionSourceType = 'RESOURCE_ENTITY' | 'DISTINCT_DIMENSION' | 'CATEGORICAL_BUCKET' | 'LIGHT_LOOKUP' | 'STATIC_CANONICAL';
|
|
81
81
|
type OptionSourceSearchMode = 'none' | 'starts-with' | 'contains' | 'exact';
|
|
82
82
|
type OptionSourceCachePolicy = 'none' | 'request-scope' | 'session-scope' | 'etag-aware';
|
|
83
|
+
type OptionSourceSelectedReloadPolicy = 'required' | 'supported' | 'unsupported-with-waiver' | 'not-applicable';
|
|
84
|
+
type OptionSourceInvalidSortPolicy = 'reject' | 'ignore' | 'unsupported';
|
|
83
85
|
type LookupOpenDetailMode = 'samePage' | 'newTab' | 'drawer' | 'modal' | 'route';
|
|
84
86
|
type LookupStatusTone = 'success' | 'warning' | 'danger' | 'neutral';
|
|
85
87
|
type LookupDialogSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
@@ -298,6 +300,8 @@ interface OptionSourceMetadata {
|
|
|
298
300
|
pageSize?: number;
|
|
299
301
|
includeIds?: boolean;
|
|
300
302
|
cachePolicy?: OptionSourceCachePolicy;
|
|
303
|
+
selectedReloadPolicy?: OptionSourceSelectedReloadPolicy;
|
|
304
|
+
invalidSortPolicy?: OptionSourceInvalidSortPolicy;
|
|
301
305
|
}
|
|
302
306
|
declare function isEntityLookupResultSelectable(result?: Pick<EntityLookupResult<any>, 'extra'> | null): boolean;
|
|
303
307
|
declare function isEntityLookupPayloadMode(value: unknown): value is EntityLookupPayloadMode;
|
|
@@ -322,7 +326,7 @@ declare function serializeEntityLookupValueForPayload(value: unknown, options?:
|
|
|
322
326
|
}): unknown;
|
|
323
327
|
declare function classifyEntityLookupResult(result?: Pick<EntityLookupResult<any>, 'extra'> | null, context?: EntityLookupResultStateContext): EntityLookupResultState;
|
|
324
328
|
|
|
325
|
-
type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
329
|
+
type RuleContextRoot = 'form' | 'row' | 'rowData' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
326
330
|
type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
|
|
327
331
|
type PraxisBuiltinCustomRuleOperator = 'contains' | 'startsWith' | 'endsWith' | 'matches' | 'isBlank' | 'len' | 'round' | 'ceil' | 'floor' | 'abs' | 'coalesce' | 'now' | 'date' | 'yearsSince' | 'monthsSince' | 'daysSince' | 'toNumber' | 'stringify' | 'jsonGet' | 'hasKey' | 'isToday' | 'inLast' | 'weekdayIn';
|
|
328
332
|
type PraxisHostRuleOperator = string & {
|
|
@@ -1176,9 +1180,74 @@ declare function readPraxisExportValue(item: unknown, path: string): unknown;
|
|
|
1176
1180
|
declare function escapePraxisExportCell(value: unknown, policy?: PraxisExportSecurityPolicy): string;
|
|
1177
1181
|
declare function serializePraxisCollectionToCsv<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): string;
|
|
1178
1182
|
declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExportRequest<T>): string;
|
|
1183
|
+
declare function serializePraxisCollectionToExcel<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): Blob;
|
|
1179
1184
|
declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
|
|
1180
1185
|
declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
|
|
1181
1186
|
|
|
1187
|
+
type PraxisPresentationVisualizationKind = 'line' | 'area' | 'column' | 'comparison' | 'stackedBar' | 'radial' | 'harveyBall' | 'bullet' | 'delta' | 'processFlow';
|
|
1188
|
+
type PraxisPresentationVisualizationSurface = 'table-cell' | 'list-item' | 'object-header' | 'card-summary' | 'form-presentation';
|
|
1189
|
+
type PraxisPresentationVisualizationSize = 'xs' | 'sm' | 'md' | 'lg' | 'responsive';
|
|
1190
|
+
type PraxisPresentationVisualizationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger' | 'critical';
|
|
1191
|
+
interface PraxisPresentationVisualizationPoint {
|
|
1192
|
+
label?: string;
|
|
1193
|
+
value: number;
|
|
1194
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1195
|
+
}
|
|
1196
|
+
interface PraxisPresentationVisualizationSegment {
|
|
1197
|
+
label?: string;
|
|
1198
|
+
value: number;
|
|
1199
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1200
|
+
}
|
|
1201
|
+
interface PraxisPresentationVisualizationThreshold {
|
|
1202
|
+
label?: string;
|
|
1203
|
+
value: number;
|
|
1204
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1205
|
+
}
|
|
1206
|
+
interface PraxisPresentationVisualizationItem {
|
|
1207
|
+
id?: string;
|
|
1208
|
+
label?: string;
|
|
1209
|
+
value?: number;
|
|
1210
|
+
icon?: string;
|
|
1211
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1212
|
+
state?: string;
|
|
1213
|
+
}
|
|
1214
|
+
interface PraxisPresentationVisualizationConfig {
|
|
1215
|
+
kind: PraxisPresentationVisualizationKind;
|
|
1216
|
+
surface?: PraxisPresentationVisualizationSurface;
|
|
1217
|
+
size?: PraxisPresentationVisualizationSize;
|
|
1218
|
+
value?: unknown;
|
|
1219
|
+
valueExpr?: JsonLogicExpression | string;
|
|
1220
|
+
valueSuffix?: string;
|
|
1221
|
+
valueSuffixExpr?: JsonLogicExpression | string;
|
|
1222
|
+
total?: number;
|
|
1223
|
+
totalExpr?: JsonLogicExpression | string;
|
|
1224
|
+
target?: number;
|
|
1225
|
+
targetExpr?: JsonLogicExpression | string;
|
|
1226
|
+
baseline?: number;
|
|
1227
|
+
baselineExpr?: JsonLogicExpression | string;
|
|
1228
|
+
points?: PraxisPresentationVisualizationPoint[];
|
|
1229
|
+
pointsExpr?: JsonLogicExpression | string;
|
|
1230
|
+
segments?: PraxisPresentationVisualizationSegment[];
|
|
1231
|
+
segmentsExpr?: JsonLogicExpression | string;
|
|
1232
|
+
thresholds?: PraxisPresentationVisualizationThreshold[];
|
|
1233
|
+
thresholdsExpr?: JsonLogicExpression | string;
|
|
1234
|
+
items?: PraxisPresentationVisualizationItem[];
|
|
1235
|
+
itemsExpr?: JsonLogicExpression | string;
|
|
1236
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1237
|
+
toneExpr?: JsonLogicExpression | string;
|
|
1238
|
+
ariaLabel?: string;
|
|
1239
|
+
ariaLabelExpr?: JsonLogicExpression | string;
|
|
1240
|
+
fallbackText: string;
|
|
1241
|
+
fallbackTextExpr?: JsonLogicExpression | string;
|
|
1242
|
+
}
|
|
1243
|
+
type ResolvedPraxisPresentationVisualizationConfig = PraxisPresentationVisualizationConfig;
|
|
1244
|
+
declare function normalizePraxisPresentationVisualization(value: PraxisPresentationVisualizationConfig | null | undefined): ResolvedPraxisPresentationVisualizationConfig | undefined;
|
|
1245
|
+
declare function isPraxisPresentationVisualizationTableSafe(value: PraxisPresentationVisualizationConfig | null | undefined): boolean;
|
|
1246
|
+
interface PraxisPresentationVisualizationHtmlOptions {
|
|
1247
|
+
locale?: string;
|
|
1248
|
+
}
|
|
1249
|
+
declare function renderPraxisPresentationVisualizationHtml(value: PraxisPresentationVisualizationConfig | null | undefined, options?: PraxisPresentationVisualizationHtmlOptions): string;
|
|
1250
|
+
|
|
1182
1251
|
type PraxisRuntimeEffectTrigger = 'on-condition-enter' | 'on-value-change' | 'while-true';
|
|
1183
1252
|
interface PraxisEffectPolicy {
|
|
1184
1253
|
trigger?: PraxisRuntimeEffectTrigger;
|
|
@@ -1244,8 +1313,124 @@ type ResourceSurfaceResponseCardinality = 'OBJECT' | 'COLLECTION' | 'PAGE' | 'VO
|
|
|
1244
1313
|
type ResourceActionScope = 'COLLECTION' | 'ITEM';
|
|
1245
1314
|
type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
|
|
1246
1315
|
type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
|
|
1247
|
-
type
|
|
1316
|
+
type ResourceCanonicalCapabilityOperationId = 'byId' | 'update' | 'all' | 'filter' | 'cursor' | 'options' | 'optionSources' | 'statsGroupBy' | 'statsTimeSeries' | 'statsDistribution' | 'statsComparison' | 'export' | 'duplicate-draft';
|
|
1317
|
+
type ResourceKnownCapabilityOperationId = ResourceCrudOperationId | ResourceCanonicalCapabilityOperationId;
|
|
1318
|
+
type ResourceCapabilityOperationId = ResourceKnownCapabilityOperationId | string;
|
|
1319
|
+
type ResourceStatsMode = 'group-by' | 'timeseries' | 'distribution' | 'distribution-terms' | 'distribution-histogram' | 'GROUP_BY' | 'TIME_SERIES' | 'DISTRIBUTION_TERMS' | 'DISTRIBUTION_HISTOGRAM' | 'METRIC_FIELD' | (string & {});
|
|
1320
|
+
type ResourceStatsMetric = 'COUNT' | 'DISTINCT_COUNT' | 'SUM' | 'AVG' | 'MIN' | 'MAX' | (string & {});
|
|
1321
|
+
interface ResourceStatsFieldCapability {
|
|
1322
|
+
field: string;
|
|
1323
|
+
label?: string | null;
|
|
1324
|
+
description?: string | null;
|
|
1325
|
+
type?: string | null;
|
|
1326
|
+
format?: string | null;
|
|
1327
|
+
propertyPath?: string | null;
|
|
1328
|
+
keyAndLabelDistinct?: boolean | null;
|
|
1329
|
+
metrics?: ResourceStatsMetric[];
|
|
1330
|
+
modes?: ResourceStatsMode[];
|
|
1331
|
+
groupByEligible?: boolean | null;
|
|
1332
|
+
timeSeriesEligible?: boolean | null;
|
|
1333
|
+
distributionTermsEligible?: boolean | null;
|
|
1334
|
+
distributionHistogramEligible?: boolean | null;
|
|
1335
|
+
metricFieldEligible?: boolean | null;
|
|
1336
|
+
filterable?: boolean | null;
|
|
1337
|
+
metadata?: Record<string, unknown> | null;
|
|
1338
|
+
}
|
|
1339
|
+
interface ResourceStatsCapability {
|
|
1340
|
+
supported?: boolean | null;
|
|
1341
|
+
modes?: ResourceStatsMode[];
|
|
1342
|
+
metrics?: ResourceStatsMetric[];
|
|
1343
|
+
fields?: ResourceStatsFieldCapability[];
|
|
1344
|
+
metadata?: Record<string, unknown> | null;
|
|
1345
|
+
}
|
|
1346
|
+
type ResourceSchemaCatalogHttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
1347
|
+
type ResourceSchemaCatalogVisualSource = 'api-group' | 'api-resource' | 'resource-key';
|
|
1348
|
+
interface ResourceSchemaCatalogQuery {
|
|
1349
|
+
group?: string;
|
|
1350
|
+
path?: string;
|
|
1351
|
+
operation?: string;
|
|
1352
|
+
}
|
|
1353
|
+
interface ResourceSchemaCatalogVisual {
|
|
1354
|
+
title: string | null;
|
|
1355
|
+
description: string | null;
|
|
1356
|
+
icon: string | null;
|
|
1357
|
+
tone: string | null;
|
|
1358
|
+
source: ResourceSchemaCatalogVisualSource | null;
|
|
1359
|
+
}
|
|
1360
|
+
interface ResourceSchemaCatalogField {
|
|
1361
|
+
name: string;
|
|
1362
|
+
type: string | null;
|
|
1363
|
+
format: string | null;
|
|
1364
|
+
required: boolean;
|
|
1365
|
+
description: string | null;
|
|
1366
|
+
enumValues: string[];
|
|
1367
|
+
minimum: number | null;
|
|
1368
|
+
maximum: number | null;
|
|
1369
|
+
minLength: number | null;
|
|
1370
|
+
maxLength: number | null;
|
|
1371
|
+
pattern: string | null;
|
|
1372
|
+
}
|
|
1373
|
+
interface ResourceSchemaCatalogRelation {
|
|
1374
|
+
field: string;
|
|
1375
|
+
targetSchema: string;
|
|
1376
|
+
cardinality: string;
|
|
1377
|
+
}
|
|
1378
|
+
interface ResourceSchemaCatalogSchemaRef {
|
|
1379
|
+
name: string | null;
|
|
1380
|
+
inlineSchema: Record<string, unknown> | null;
|
|
1381
|
+
mediaType: string | null;
|
|
1382
|
+
fields: ResourceSchemaCatalogField[];
|
|
1383
|
+
relations: ResourceSchemaCatalogRelation[];
|
|
1384
|
+
}
|
|
1385
|
+
interface ResourceSchemaCatalogParameter {
|
|
1386
|
+
name: string | null;
|
|
1387
|
+
in: string | null;
|
|
1388
|
+
required: boolean;
|
|
1389
|
+
type: string | null;
|
|
1390
|
+
}
|
|
1391
|
+
interface ResourceSchemaCatalogExample {
|
|
1392
|
+
summary?: string;
|
|
1393
|
+
description?: string;
|
|
1394
|
+
value?: unknown;
|
|
1395
|
+
externalValue?: string;
|
|
1396
|
+
}
|
|
1397
|
+
type ResourceSchemaCatalogOperationExamples = Record<string, Record<string, ResourceSchemaCatalogExample>>;
|
|
1398
|
+
interface ResourceSchemaCatalogSchemaLinks {
|
|
1399
|
+
request: string | null;
|
|
1400
|
+
response: string | null;
|
|
1401
|
+
}
|
|
1402
|
+
interface ResourceSchemaCatalogEndpoint {
|
|
1403
|
+
path: string;
|
|
1404
|
+
method: ResourceSchemaCatalogHttpMethod;
|
|
1405
|
+
tags: string[];
|
|
1406
|
+
summary: string | null;
|
|
1407
|
+
description: string | null;
|
|
1408
|
+
operationId: string | null;
|
|
1409
|
+
resourceKey: string | null;
|
|
1410
|
+
resourceVisual: ResourceSchemaCatalogVisual | null;
|
|
1411
|
+
requestSchema: ResourceSchemaCatalogSchemaRef | null;
|
|
1412
|
+
responseSchema: ResourceSchemaCatalogSchemaRef | null;
|
|
1413
|
+
parameters: ResourceSchemaCatalogParameter[];
|
|
1414
|
+
operationExamples: ResourceSchemaCatalogOperationExamples;
|
|
1415
|
+
schemaLinks: ResourceSchemaCatalogSchemaLinks;
|
|
1416
|
+
}
|
|
1417
|
+
interface ResourceSchemaCatalogResponse {
|
|
1418
|
+
group: string;
|
|
1419
|
+
groupVisual: ResourceSchemaCatalogVisual | null;
|
|
1420
|
+
endpoints: ResourceSchemaCatalogEndpoint[];
|
|
1421
|
+
}
|
|
1248
1422
|
type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
|
|
1423
|
+
type RelatedResourceChildOperation = 'FILTER' | 'LIST' | 'CREATE' | 'UPDATE' | 'DELETE' | 'DUPLICATE_DRAFT';
|
|
1424
|
+
interface RelatedResourceSurface {
|
|
1425
|
+
parentResourceKey: string;
|
|
1426
|
+
parentIdPathVariable: string;
|
|
1427
|
+
childResourceKey: string;
|
|
1428
|
+
childResourcePath: string;
|
|
1429
|
+
childParentField: string;
|
|
1430
|
+
selectable: boolean;
|
|
1431
|
+
selectionKeyField: string;
|
|
1432
|
+
childOperations: RelatedResourceChildOperation[];
|
|
1433
|
+
}
|
|
1249
1434
|
interface ResourceSurfaceCatalogItem {
|
|
1250
1435
|
id: string;
|
|
1251
1436
|
resourceKey: string;
|
|
@@ -1263,6 +1448,7 @@ interface ResourceSurfaceCatalogItem {
|
|
|
1263
1448
|
availability: ResourceAvailabilityDecision;
|
|
1264
1449
|
order: number;
|
|
1265
1450
|
tags: string[];
|
|
1451
|
+
relatedResource?: RelatedResourceSurface | null;
|
|
1266
1452
|
}
|
|
1267
1453
|
interface ResourceSurfaceCatalogResponse {
|
|
1268
1454
|
resourceKey: string;
|
|
@@ -1271,6 +1457,13 @@ interface ResourceSurfaceCatalogResponse {
|
|
|
1271
1457
|
resourceId?: string | number | null;
|
|
1272
1458
|
surfaces: ResourceSurfaceCatalogItem[];
|
|
1273
1459
|
}
|
|
1460
|
+
interface ResourceRecordOpenRef {
|
|
1461
|
+
sourceIdentityField: string;
|
|
1462
|
+
target: {
|
|
1463
|
+
resourceKey: string;
|
|
1464
|
+
surfaceId: string;
|
|
1465
|
+
};
|
|
1466
|
+
}
|
|
1274
1467
|
interface ResourceActionCatalogItem {
|
|
1275
1468
|
id: string;
|
|
1276
1469
|
resourceKey: string;
|
|
@@ -1308,7 +1501,7 @@ interface ResourceCapabilityOperation {
|
|
|
1308
1501
|
maxRows?: ResourceExportMaxRows;
|
|
1309
1502
|
async?: boolean | null;
|
|
1310
1503
|
}
|
|
1311
|
-
type ResourceCapabilityOperations = Partial<Record<
|
|
1504
|
+
type ResourceCapabilityOperations = Partial<Record<ResourceKnownCapabilityOperationId, ResourceCapabilityOperation>> & Record<string, ResourceCapabilityOperation | undefined>;
|
|
1312
1505
|
interface ResourceCapabilitySnapshot {
|
|
1313
1506
|
resourceKey: string;
|
|
1314
1507
|
resourcePath: string;
|
|
@@ -1316,6 +1509,7 @@ interface ResourceCapabilitySnapshot {
|
|
|
1316
1509
|
resourceId?: string | number | null;
|
|
1317
1510
|
canonicalOperations: Record<string, boolean>;
|
|
1318
1511
|
operations?: ResourceCapabilityOperations;
|
|
1512
|
+
stats?: ResourceStatsCapability | null;
|
|
1319
1513
|
surfaces: ResourceSurfaceCatalogItem[];
|
|
1320
1514
|
actions: ResourceActionCatalogItem[];
|
|
1321
1515
|
}
|
|
@@ -1397,7 +1591,7 @@ interface ColumnDefinition {
|
|
|
1397
1591
|
expr: string;
|
|
1398
1592
|
};
|
|
1399
1593
|
/** Tipo do renderizador */
|
|
1400
|
-
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'html' | 'compose';
|
|
1594
|
+
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'microVisualization' | 'html' | 'compose';
|
|
1401
1595
|
/** Tooltip associado ao renderer efetivo da célula. */
|
|
1402
1596
|
tooltip?: TableTooltipConfig;
|
|
1403
1597
|
/** Configuração de ícone (Material/SVG por nome) */
|
|
@@ -1406,12 +1600,20 @@ interface ColumnDefinition {
|
|
|
1406
1600
|
name?: string;
|
|
1407
1601
|
/** Campo do row que contém o nome do ícone */
|
|
1408
1602
|
nameField?: string;
|
|
1603
|
+
/** Texto fixo exibido ao lado do icone */
|
|
1604
|
+
text?: string;
|
|
1605
|
+
/** Campo usado como texto exibido ao lado do icone */
|
|
1606
|
+
textField?: string;
|
|
1409
1607
|
/** Cor do ícone (primary/accent/warn ou CSS color) */
|
|
1410
1608
|
color?: string;
|
|
1411
1609
|
/** Tamanho em px (opcional) */
|
|
1412
1610
|
size?: number;
|
|
1413
1611
|
/** Label acessível (fixo) */
|
|
1414
1612
|
ariaLabel?: string;
|
|
1613
|
+
/** Prefixo visual aplicado ao texto do renderer sem alterar o valor bruto. */
|
|
1614
|
+
prefix?: string;
|
|
1615
|
+
/** Sufixo visual aplicado ao texto do renderer sem alterar o valor bruto. */
|
|
1616
|
+
suffix?: string;
|
|
1415
1617
|
};
|
|
1416
1618
|
/** Configuração de imagem */
|
|
1417
1619
|
image?: {
|
|
@@ -1442,7 +1644,7 @@ interface ColumnDefinition {
|
|
|
1442
1644
|
/** Cor do badge (primary/accent/warn ou CSS) */
|
|
1443
1645
|
color?: string;
|
|
1444
1646
|
/** Variante visual */
|
|
1445
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1647
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1446
1648
|
/** Ícone opcional dentro do badge */
|
|
1447
1649
|
icon?: string;
|
|
1448
1650
|
/** Tooltip opcional associado ao indicador visual */
|
|
@@ -1478,7 +1680,7 @@ interface ColumnDefinition {
|
|
|
1478
1680
|
textField?: string;
|
|
1479
1681
|
color?: string;
|
|
1480
1682
|
icon?: string;
|
|
1481
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1683
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1482
1684
|
/** Tooltip opcional associado ao chip */
|
|
1483
1685
|
tooltip?: TableTooltipConfig;
|
|
1484
1686
|
};
|
|
@@ -1497,6 +1699,9 @@ interface ColumnDefinition {
|
|
|
1497
1699
|
size?: 'small' | 'medium' | 'large';
|
|
1498
1700
|
ariaLabel?: string;
|
|
1499
1701
|
};
|
|
1702
|
+
microVisualization?: {
|
|
1703
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1704
|
+
};
|
|
1500
1705
|
/** Avatar (imagem ou iniciais) */
|
|
1501
1706
|
avatar?: {
|
|
1502
1707
|
src?: string;
|
|
@@ -1539,9 +1744,13 @@ interface ColumnDefinition {
|
|
|
1539
1744
|
icon?: {
|
|
1540
1745
|
name?: string;
|
|
1541
1746
|
nameField?: string;
|
|
1747
|
+
text?: string;
|
|
1748
|
+
textField?: string;
|
|
1542
1749
|
color?: string;
|
|
1543
1750
|
size?: number;
|
|
1544
1751
|
ariaLabel?: string;
|
|
1752
|
+
prefix?: string;
|
|
1753
|
+
suffix?: string;
|
|
1545
1754
|
};
|
|
1546
1755
|
} | {
|
|
1547
1756
|
type: 'image';
|
|
@@ -1562,7 +1771,7 @@ interface ColumnDefinition {
|
|
|
1562
1771
|
text?: string;
|
|
1563
1772
|
textField?: string;
|
|
1564
1773
|
color?: string;
|
|
1565
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1774
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1566
1775
|
icon?: string;
|
|
1567
1776
|
tooltip?: TableTooltipConfig;
|
|
1568
1777
|
};
|
|
@@ -1598,7 +1807,7 @@ interface ColumnDefinition {
|
|
|
1598
1807
|
textField?: string;
|
|
1599
1808
|
color?: string;
|
|
1600
1809
|
icon?: string;
|
|
1601
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1810
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1602
1811
|
tooltip?: TableTooltipConfig;
|
|
1603
1812
|
};
|
|
1604
1813
|
} | {
|
|
@@ -1648,6 +1857,11 @@ interface ColumnDefinition {
|
|
|
1648
1857
|
size?: 'small' | 'medium' | 'large';
|
|
1649
1858
|
ariaLabel?: string;
|
|
1650
1859
|
};
|
|
1860
|
+
} | {
|
|
1861
|
+
type: 'microVisualization';
|
|
1862
|
+
microVisualization?: {
|
|
1863
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1864
|
+
};
|
|
1651
1865
|
} | {
|
|
1652
1866
|
type: 'html';
|
|
1653
1867
|
html?: {
|
|
@@ -1727,7 +1941,7 @@ interface ConfigMetadata {
|
|
|
1727
1941
|
isTemplate?: boolean;
|
|
1728
1942
|
/** Configuração derivada de outra (parent ID) */
|
|
1729
1943
|
derivedFrom?: string;
|
|
1730
|
-
/** Identidade do schema de origem (path|operation|schemaType|internal:<bool>|
|
|
1944
|
+
/** Identidade estrutural do schema de origem (path|operation|schemaType|internal:<bool>|idField|readOnly|origin) */
|
|
1731
1945
|
schemaId?: string;
|
|
1732
1946
|
/** ETag/hash do schema do servidor usado para a última reconciliação */
|
|
1733
1947
|
serverHash?: string;
|
|
@@ -2155,9 +2369,16 @@ interface LoadingConfig {
|
|
|
2155
2369
|
}
|
|
2156
2370
|
interface EmptyStateConfig {
|
|
2157
2371
|
/** Mensagem para estado vazio */
|
|
2372
|
+
title?: string;
|
|
2158
2373
|
message: string;
|
|
2374
|
+
description?: string;
|
|
2159
2375
|
/** Ícone para estado vazio */
|
|
2160
2376
|
icon?: string;
|
|
2377
|
+
tone?: 'neutral' | 'primary' | 'secondary';
|
|
2378
|
+
variant?: 'card' | 'inline' | 'panel' | 'transparent';
|
|
2379
|
+
alignment?: 'start' | 'center';
|
|
2380
|
+
density?: 'compact' | 'comfortable';
|
|
2381
|
+
iconContainer?: 'none' | 'circle' | 'soft';
|
|
2161
2382
|
/** Imagem para estado vazio */
|
|
2162
2383
|
image?: string;
|
|
2163
2384
|
/** Ações disponíveis no estado vazio */
|
|
@@ -2422,6 +2643,29 @@ interface ToolbarLayoutConfig {
|
|
|
2422
2643
|
/** Mostrar separador */
|
|
2423
2644
|
showSeparator: boolean;
|
|
2424
2645
|
}
|
|
2646
|
+
type ToolbarActionTargetScope = 'collection' | 'selection';
|
|
2647
|
+
interface ToolbarActionTargetCardinality {
|
|
2648
|
+
/** Minimum number of records required to execute the action. */
|
|
2649
|
+
min: number;
|
|
2650
|
+
/** Maximum number accepted; omitted means no upper limit. */
|
|
2651
|
+
max?: number;
|
|
2652
|
+
}
|
|
2653
|
+
interface ToolbarActionTarget {
|
|
2654
|
+
/** Semantic action target, independent from its visual placement. */
|
|
2655
|
+
scope: ToolbarActionTargetScope;
|
|
2656
|
+
/** Selection constraint when the action targets selected records. */
|
|
2657
|
+
cardinality?: ToolbarActionTargetCardinality;
|
|
2658
|
+
}
|
|
2659
|
+
interface ToolbarActionEvent<TRecord = Record<string, unknown>> {
|
|
2660
|
+
action: string;
|
|
2661
|
+
actionConfig?: ToolbarAction;
|
|
2662
|
+
target?: ToolbarActionTarget;
|
|
2663
|
+
row?: TRecord;
|
|
2664
|
+
selectedRow?: TRecord;
|
|
2665
|
+
selectedRows: TRecord[];
|
|
2666
|
+
selectedIds: unknown[];
|
|
2667
|
+
selectedCount: number;
|
|
2668
|
+
}
|
|
2425
2669
|
interface ToolbarAction {
|
|
2426
2670
|
/** ID único da ação */
|
|
2427
2671
|
id: string;
|
|
@@ -2439,6 +2683,8 @@ interface ToolbarAction {
|
|
|
2439
2683
|
disabled?: boolean;
|
|
2440
2684
|
/** Função a executar */
|
|
2441
2685
|
action: string;
|
|
2686
|
+
/** Semantic target; toolbar placement does not imply a bulk operation. */
|
|
2687
|
+
target?: ToolbarActionTarget;
|
|
2442
2688
|
/** Acao global estruturada executada pelo host via GlobalActionService */
|
|
2443
2689
|
globalAction?: GlobalActionRef;
|
|
2444
2690
|
/** Efeitos runtime canonicos executados quando a acao da toolbar e acionada */
|
|
@@ -2485,6 +2731,14 @@ interface ToolbarSettingsConfig {
|
|
|
2485
2731
|
options?: any[];
|
|
2486
2732
|
}>;
|
|
2487
2733
|
}
|
|
2734
|
+
interface TableAiAssistantConfig {
|
|
2735
|
+
/** Exibe e permite acionar o assistente de IA da tabela. Ausente equivale a true. */
|
|
2736
|
+
enabled?: boolean;
|
|
2737
|
+
}
|
|
2738
|
+
interface TableAiConfig {
|
|
2739
|
+
/** Configuracoes do assistente de IA embarcado na tabela. */
|
|
2740
|
+
assistant?: TableAiAssistantConfig;
|
|
2741
|
+
}
|
|
2488
2742
|
interface TableActionsConfig {
|
|
2489
2743
|
/** Ações por linha */
|
|
2490
2744
|
row?: RowActionsConfig;
|
|
@@ -2791,6 +3045,11 @@ interface TableDetailRichListNode extends TableDetailBaseNode {
|
|
|
2791
3045
|
}
|
|
2792
3046
|
type TableDetailEmbedAction = TableDetailActionBarAction;
|
|
2793
3047
|
interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
3048
|
+
/**
|
|
3049
|
+
* Governs whether the detail row should keep this embed as a host-mediated reference
|
|
3050
|
+
* or ask an owning runtime/provider to materialize it inline. Omitted means `reference`.
|
|
3051
|
+
*/
|
|
3052
|
+
renderMode?: 'reference' | 'inline';
|
|
2794
3053
|
description?: string;
|
|
2795
3054
|
caption?: string;
|
|
2796
3055
|
emptyText?: string;
|
|
@@ -2801,6 +3060,8 @@ interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
|
2801
3060
|
interface TableDetailRefNode extends TableDetailEmbedBaseNode {
|
|
2802
3061
|
type: 'formRef' | 'tableRef' | 'chartRef';
|
|
2803
3062
|
schemaId?: string;
|
|
3063
|
+
chartDocumentRef?: string;
|
|
3064
|
+
chartDocument?: unknown;
|
|
2804
3065
|
}
|
|
2805
3066
|
interface TableDetailDiagramEmbedNode extends TableDetailEmbedBaseNode {
|
|
2806
3067
|
type: 'diagramEmbed';
|
|
@@ -2855,6 +3116,8 @@ interface GeneralExportConfig {
|
|
|
2855
3116
|
interface ExcelExportConfig {
|
|
2856
3117
|
/** Nome da planilha */
|
|
2857
3118
|
sheetName: string;
|
|
3119
|
+
/** Exibir ação local para exportar a página atual com colunas visíveis */
|
|
3120
|
+
visibleCurrentPage?: boolean;
|
|
2858
3121
|
/** Incluir fórmulas nas células */
|
|
2859
3122
|
includeFormulas: boolean;
|
|
2860
3123
|
/** Congelar linha de cabeçalho */
|
|
@@ -3343,6 +3606,8 @@ interface TableConfigV2 {
|
|
|
3343
3606
|
toolbar?: ToolbarConfig;
|
|
3344
3607
|
/** Ações por linha e em lote (Aba: Barra de Ferramentas & Ações) */
|
|
3345
3608
|
actions?: TableActionsConfig;
|
|
3609
|
+
/** Configuracoes de IA do runtime da tabela */
|
|
3610
|
+
ai?: TableAiConfig;
|
|
3346
3611
|
/** Configurações de exportação (Aba: Barra de Ferramentas & Ações) */
|
|
3347
3612
|
export?: ExportConfig;
|
|
3348
3613
|
/** Mensagens personalizadas (Aba: Mensagens & Localização) */
|
|
@@ -3581,6 +3846,92 @@ declare const FieldControlType: {
|
|
|
3581
3846
|
};
|
|
3582
3847
|
type FieldControlType = (typeof FieldControlType)[keyof typeof FieldControlType];
|
|
3583
3848
|
|
|
3849
|
+
type FormFieldHelpDisplay = 'auto' | 'inline' | 'popover' | 'hidden';
|
|
3850
|
+
interface FormHelpPresentationConfig {
|
|
3851
|
+
/**
|
|
3852
|
+
* Controls how semantic field help (`hint`/`helpText`) is presented by field
|
|
3853
|
+
* renderers. Validation errors are never affected by this policy.
|
|
3854
|
+
*/
|
|
3855
|
+
display?: FormFieldHelpDisplay;
|
|
3856
|
+
/**
|
|
3857
|
+
* Maximum text length that may remain inline when `display` is `auto`.
|
|
3858
|
+
* Defaults to 64 characters.
|
|
3859
|
+
*/
|
|
3860
|
+
inlineMaxLength?: number;
|
|
3861
|
+
/**
|
|
3862
|
+
* Control types that should prefer a help affordance instead of inline text
|
|
3863
|
+
* when `display` is `auto`.
|
|
3864
|
+
*/
|
|
3865
|
+
preferPopoverForControls?: string[];
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
type FieldPresentationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
3869
|
+
type FieldPresentationAppearance = 'plain' | 'soft' | 'outlined' | 'filled';
|
|
3870
|
+
type FieldPresenterKind = 'text' | 'badge' | 'chip' | 'status' | 'iconValue' | 'progress' | 'rating' | 'microVisualization';
|
|
3871
|
+
interface FieldPresentationInteractions {
|
|
3872
|
+
/** Allows readonly surfaces to expose a copy affordance without changing the field value. */
|
|
3873
|
+
copy?: boolean;
|
|
3874
|
+
/** Allows readonly surfaces to expose contextual detail expansion. */
|
|
3875
|
+
details?: boolean;
|
|
3876
|
+
/** Allows readonly surfaces to expose inline expansion for long values. */
|
|
3877
|
+
expand?: boolean;
|
|
3878
|
+
/** Allows readonly surfaces to expose a link affordance when the value is navigable. */
|
|
3879
|
+
link?: boolean;
|
|
3880
|
+
}
|
|
3881
|
+
interface FieldPresentationConfig {
|
|
3882
|
+
/** Semantic display strategy for readonly/presentation surfaces. */
|
|
3883
|
+
presenter?: FieldPresenterKind;
|
|
3884
|
+
/** Alias accepted for schema authors that describe the semantic display as a variant. */
|
|
3885
|
+
variant?: FieldPresenterKind;
|
|
3886
|
+
/** Semantic tone mapped by consumers to theme tokens. */
|
|
3887
|
+
tone?: FieldPresentationTone;
|
|
3888
|
+
/** Material Symbols icon name, without arbitrary HTML. */
|
|
3889
|
+
icon?: string;
|
|
3890
|
+
/** Optional semantic label for status/chip/badge presentations. */
|
|
3891
|
+
label?: string;
|
|
3892
|
+
/** Optional secondary marker rendered by presentation-capable consumers. */
|
|
3893
|
+
badge?: string;
|
|
3894
|
+
/** Optional tooltip text for the presentation wrapper. */
|
|
3895
|
+
tooltip?: string;
|
|
3896
|
+
/** Optional readonly prefix rendered next to the displayed value without changing the raw value. */
|
|
3897
|
+
prefix?: string;
|
|
3898
|
+
/** Optional readonly suffix rendered next to the displayed value without changing the raw value. */
|
|
3899
|
+
suffix?: string;
|
|
3900
|
+
/** Visual density/emphasis strategy mapped by consumers to theme tokens. */
|
|
3901
|
+
appearance?: FieldPresentationAppearance;
|
|
3902
|
+
/** Optional formatter override for the presentation surface only. */
|
|
3903
|
+
valuePresentation?: ValuePresentationConfig;
|
|
3904
|
+
/** Renderer-neutral micro visualization metadata for compact presentation surfaces. */
|
|
3905
|
+
visualization?: PraxisPresentationVisualizationConfig;
|
|
3906
|
+
/** Safe readonly affordances. No commands or mutations are executed from this contract. */
|
|
3907
|
+
interactions?: FieldPresentationInteractions;
|
|
3908
|
+
}
|
|
3909
|
+
interface FieldPresentationRule {
|
|
3910
|
+
/** Json Logic guard evaluated against the presentation context. */
|
|
3911
|
+
when: JsonLogicExpression;
|
|
3912
|
+
/** Semantic presentation state merged when the guard is truthy. */
|
|
3913
|
+
set?: FieldPresentationConfig;
|
|
3914
|
+
/** Alias for `set`, useful for rule-builder terminology. */
|
|
3915
|
+
effect?: FieldPresentationConfig;
|
|
3916
|
+
}
|
|
3917
|
+
interface ResolvedFieldPresentation extends FieldPresentationConfig {
|
|
3918
|
+
/** Indicates at least one conditional rule matched the current context. */
|
|
3919
|
+
matchedRule?: boolean;
|
|
3920
|
+
}
|
|
3921
|
+
interface FieldPresentationJsonLogicEvaluator {
|
|
3922
|
+
evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord): unknown;
|
|
3923
|
+
truthy?(value: unknown): boolean;
|
|
3924
|
+
}
|
|
3925
|
+
interface ResolveFieldPresentationOptions {
|
|
3926
|
+
jsonLogic?: FieldPresentationJsonLogicEvaluator | null;
|
|
3927
|
+
}
|
|
3928
|
+
/**
|
|
3929
|
+
* Resolves readonly field presentation from a base semantic config plus ordered
|
|
3930
|
+
* Json Logic rules. Later matching rules override earlier presentation values.
|
|
3931
|
+
*/
|
|
3932
|
+
declare function resolveFieldPresentation(base: FieldPresentationConfig | null | undefined, rules: readonly FieldPresentationRule[] | null | undefined, context?: JsonLogicDataRecord, options?: ResolveFieldPresentationOptions): ResolvedFieldPresentation;
|
|
3933
|
+
declare function normalizeFieldPresentation(value: FieldPresentationConfig | null | undefined): ResolvedFieldPresentation;
|
|
3934
|
+
|
|
3584
3935
|
/**
|
|
3585
3936
|
* @fileoverview Base metadata interfaces for dynamic Angular Material components
|
|
3586
3937
|
*
|
|
@@ -3953,6 +4304,14 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3953
4304
|
disabled?: boolean;
|
|
3954
4305
|
/** Field is read-only */
|
|
3955
4306
|
readOnly?: boolean;
|
|
4307
|
+
/**
|
|
4308
|
+
* Canonical backend-authored access metadata for field-level UX materialization.
|
|
4309
|
+
*
|
|
4310
|
+
* The frontend may use this contract to hide or lock controls for usability,
|
|
4311
|
+
* but it is not a security boundary. Backend filtering and validation remain
|
|
4312
|
+
* the final authority for sensitive data.
|
|
4313
|
+
*/
|
|
4314
|
+
fieldAccess?: FieldAccessMetadata;
|
|
3956
4315
|
/** Field is hidden from display */
|
|
3957
4316
|
hidden?: boolean;
|
|
3958
4317
|
/** Canonical conditional visibility guard for metadata-driven forms. */
|
|
@@ -3963,8 +4322,16 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3963
4322
|
placeholder?: string;
|
|
3964
4323
|
/** Help text displayed below field */
|
|
3965
4324
|
hint?: string;
|
|
4325
|
+
/** Domain help text emitted by backend schema metadata. */
|
|
4326
|
+
helpText?: string;
|
|
4327
|
+
/** Effective help presentation resolved by the form host. */
|
|
4328
|
+
helpDisplay?: FormFieldHelpDisplay;
|
|
4329
|
+
/** Field-level inline threshold used when `helpDisplay` is `auto`. */
|
|
4330
|
+
helpInlineMaxLength?: number;
|
|
3966
4331
|
/** Tooltip text on hover */
|
|
3967
4332
|
tooltip?: string;
|
|
4333
|
+
/** Enables hover tooltip presentation when supported by the field renderer. */
|
|
4334
|
+
tooltipOnHover?: boolean;
|
|
3968
4335
|
/** Semantic selection mode for boolean/single/multiple choice controls */
|
|
3969
4336
|
selectionMode?: 'boolean' | 'single' | 'multiple';
|
|
3970
4337
|
/** Visual variant used by controls with more than one supported presentation */
|
|
@@ -4004,6 +4371,10 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
4004
4371
|
suffixIcon?: string;
|
|
4005
4372
|
iconPosition?: 'start' | 'end';
|
|
4006
4373
|
iconSize?: 'small' | 'medium' | 'large';
|
|
4374
|
+
iconColor?: string;
|
|
4375
|
+
iconClass?: string;
|
|
4376
|
+
iconStyle?: string;
|
|
4377
|
+
iconFontSize?: string | number;
|
|
4007
4378
|
/** Tooltip for suffix icon (used for help actions) */
|
|
4008
4379
|
suffixIconTooltip?: string;
|
|
4009
4380
|
/** ARIA label for suffix icon when used as help */
|
|
@@ -4020,6 +4391,18 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
4020
4391
|
* heuristics.
|
|
4021
4392
|
*/
|
|
4022
4393
|
valuePresentation?: ValuePresentationConfig;
|
|
4394
|
+
/**
|
|
4395
|
+
* Semantic presentation metadata for read-only/display surfaces.
|
|
4396
|
+
*
|
|
4397
|
+
* Consumers map this contract to their own theme tokens and primitives. It
|
|
4398
|
+
* intentionally avoids arbitrary CSS, HTML, or mutation commands.
|
|
4399
|
+
*/
|
|
4400
|
+
presentation?: FieldPresentationConfig;
|
|
4401
|
+
/**
|
|
4402
|
+
* Ordered Json Logic rules that conditionally override `presentation` in
|
|
4403
|
+
* readonly/display surfaces. Later matching rules win.
|
|
4404
|
+
*/
|
|
4405
|
+
presentationRules?: FieldPresentationRule[];
|
|
4023
4406
|
/** Material Design specific configuration */
|
|
4024
4407
|
materialDesign?: MaterialDesignConfig;
|
|
4025
4408
|
/**
|
|
@@ -4156,6 +4539,40 @@ interface DateRangePreset {
|
|
|
4156
4539
|
/** Display order in preset list */
|
|
4157
4540
|
order?: number;
|
|
4158
4541
|
}
|
|
4542
|
+
/** Semantic tone for metadata-published date range shortcuts. */
|
|
4543
|
+
type StaticDateRangePresetTone = 'neutral' | 'info' | 'success' | 'warning';
|
|
4544
|
+
/**
|
|
4545
|
+
* Serializable, metadata-safe date range preset.
|
|
4546
|
+
*
|
|
4547
|
+
* The backend/domain publishes resolved date-only ranges. Angular materializes
|
|
4548
|
+
* the published interval and never deserializes executable calendar rules.
|
|
4549
|
+
*/
|
|
4550
|
+
interface StaticDateRangePreset {
|
|
4551
|
+
/** Unique identifier for observation and active state. */
|
|
4552
|
+
id: string;
|
|
4553
|
+
/** User-visible label published by the domain metadata source. */
|
|
4554
|
+
label: string;
|
|
4555
|
+
/** Inclusive ISO date-only start date (`YYYY-MM-DD`). */
|
|
4556
|
+
startDate: string;
|
|
4557
|
+
/** Inclusive ISO date-only end date (`YYYY-MM-DD`). */
|
|
4558
|
+
endDate: string;
|
|
4559
|
+
/** IANA timezone used to interpret the date-only interval. */
|
|
4560
|
+
timeZone?: string;
|
|
4561
|
+
/** Optional governed icon name. */
|
|
4562
|
+
icon?: string;
|
|
4563
|
+
/** Optional user-visible explanation. */
|
|
4564
|
+
description?: string;
|
|
4565
|
+
/** Semantic tone resolved by Praxis/host tokens. */
|
|
4566
|
+
tone?: StaticDateRangePresetTone;
|
|
4567
|
+
/** Optional ISO date-only first day this shortcut is valid for display. */
|
|
4568
|
+
effectiveFrom?: string;
|
|
4569
|
+
/** Optional ISO date-only last day this shortcut is valid for display. */
|
|
4570
|
+
effectiveTo?: string;
|
|
4571
|
+
/** Display order in preset list when a host sorts metadata before publication. */
|
|
4572
|
+
order?: number;
|
|
4573
|
+
}
|
|
4574
|
+
/** Supported date range shortcut entries. */
|
|
4575
|
+
type DateRangeShortcutPreset = string | DateRangePreset | StaticDateRangePreset;
|
|
4159
4576
|
/** Helper type for partial field metadata updates */
|
|
4160
4577
|
type PartialFieldMetadata = Partial<FieldMetadata> & {
|
|
4161
4578
|
name: string;
|
|
@@ -4165,6 +4582,23 @@ type CoreFieldMetadata = Pick<FieldMetadata, 'name' | 'label' | 'controlType'>;
|
|
|
4165
4582
|
/** Helper type for field metadata without computed properties */
|
|
4166
4583
|
type SerializableFieldMetadata = Omit<FieldMetadata, 'transformDisplayValue' | 'transformSaveValue'>;
|
|
4167
4584
|
|
|
4585
|
+
interface FieldAccessMetadata {
|
|
4586
|
+
visibleForAuthorities?: string[];
|
|
4587
|
+
editableForAuthorities?: string[];
|
|
4588
|
+
reason?: string;
|
|
4589
|
+
}
|
|
4590
|
+
interface FieldAccessEvaluationContext {
|
|
4591
|
+
authorities?: readonly string[] | null;
|
|
4592
|
+
}
|
|
4593
|
+
interface FieldAccessEvaluationResult {
|
|
4594
|
+
evaluated: boolean;
|
|
4595
|
+
visible: boolean;
|
|
4596
|
+
editable: boolean;
|
|
4597
|
+
reason?: string;
|
|
4598
|
+
}
|
|
4599
|
+
declare function normalizeFieldAccessMetadata(value: unknown): FieldAccessMetadata | undefined;
|
|
4600
|
+
declare function evaluateFieldAccess(fieldOrAccess: Pick<FieldMetadata, 'fieldAccess'> | FieldAccessMetadata | null | undefined, context?: FieldAccessEvaluationContext): FieldAccessEvaluationResult;
|
|
4601
|
+
|
|
4168
4602
|
/**
|
|
4169
4603
|
* Contrato de saída do normalizador de esquema (SchemaNormalizerService):
|
|
4170
4604
|
* - Converte metadados `x-ui` em FieldDefinition tipado.
|
|
@@ -4195,6 +4629,7 @@ interface FieldDefinition {
|
|
|
4195
4629
|
layout?: 'horizontal' | 'vertical';
|
|
4196
4630
|
disabled?: boolean;
|
|
4197
4631
|
readOnly?: boolean;
|
|
4632
|
+
fieldAccess?: FieldAccessMetadata;
|
|
4198
4633
|
array?: FieldArrayConfig;
|
|
4199
4634
|
collectionValidation?: FieldArrayCollectionValidation;
|
|
4200
4635
|
multiple?: boolean;
|
|
@@ -4223,6 +4658,7 @@ interface FieldDefinition {
|
|
|
4223
4658
|
helpText?: string;
|
|
4224
4659
|
hint?: string;
|
|
4225
4660
|
hiddenCondition?: JsonLogicExpression | null;
|
|
4661
|
+
tooltip?: string;
|
|
4226
4662
|
tooltipOnHover?: boolean;
|
|
4227
4663
|
icon?: string;
|
|
4228
4664
|
iconPosition?: string;
|
|
@@ -4252,6 +4688,10 @@ interface FieldDefinition {
|
|
|
4252
4688
|
filterOptions?: any[];
|
|
4253
4689
|
numericFormat?: string;
|
|
4254
4690
|
valuePresentation?: ValuePresentationConfig;
|
|
4691
|
+
/** Semantic read-only/list presentation metadata from canonical x-ui.presentation. */
|
|
4692
|
+
presentation?: FieldPresentationConfig;
|
|
4693
|
+
/** Conditional presentation overrides for read-only/list consumers. */
|
|
4694
|
+
presentationRules?: FieldPresentationRule[];
|
|
4255
4695
|
numericStep?: number;
|
|
4256
4696
|
numericMin?: number;
|
|
4257
4697
|
numericMax?: number;
|
|
@@ -4329,6 +4769,13 @@ interface ApiUrlEntry {
|
|
|
4329
4769
|
fullUrl?: string;
|
|
4330
4770
|
version?: string;
|
|
4331
4771
|
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
4772
|
+
/**
|
|
4773
|
+
* Absolute backend origins that ResourceDiscoveryService may fold back through
|
|
4774
|
+
* a relative API_URL proxy for canonical API discovery links. Only configure
|
|
4775
|
+
* origins controlled by the same deployment boundary; arbitrary external links
|
|
4776
|
+
* remain absolute.
|
|
4777
|
+
*/
|
|
4778
|
+
trustedOrigins?: string[];
|
|
4332
4779
|
}
|
|
4333
4780
|
interface ApiUrlConfig {
|
|
4334
4781
|
[key: string]: ApiUrlEntry;
|
|
@@ -4406,6 +4853,8 @@ declare class SchemaNormalizerService {
|
|
|
4406
4853
|
private parseOptionSource;
|
|
4407
4854
|
private parseOptionSourceType;
|
|
4408
4855
|
private parseOptionSourceSearchMode;
|
|
4856
|
+
private parseOptionSourceSelectedReloadPolicy;
|
|
4857
|
+
private parseOptionSourceInvalidSortPolicy;
|
|
4409
4858
|
private parseLookupOpenDetailMode;
|
|
4410
4859
|
private parseValuePresentation;
|
|
4411
4860
|
/**
|
|
@@ -4740,6 +5189,35 @@ declare class GlobalConfigService {
|
|
|
4740
5189
|
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalConfigService>;
|
|
4741
5190
|
}
|
|
4742
5191
|
|
|
5192
|
+
interface ResourceIdentityFieldMetadata {
|
|
5193
|
+
name: string;
|
|
5194
|
+
label?: string;
|
|
5195
|
+
presentation?: FieldPresentationConfig;
|
|
5196
|
+
}
|
|
5197
|
+
interface ResourceIdentityContract {
|
|
5198
|
+
keyField?: string;
|
|
5199
|
+
titleField?: string;
|
|
5200
|
+
metadataFields?: string[];
|
|
5201
|
+
displayLabelField?: string;
|
|
5202
|
+
valid: boolean;
|
|
5203
|
+
invalidFields?: string[];
|
|
5204
|
+
message?: string;
|
|
5205
|
+
}
|
|
5206
|
+
interface ResourceIdentityPart {
|
|
5207
|
+
field: string;
|
|
5208
|
+
label?: string;
|
|
5209
|
+
value: unknown;
|
|
5210
|
+
presentation?: FieldPresentationConfig;
|
|
5211
|
+
}
|
|
5212
|
+
interface MaterializedResourceIdentity {
|
|
5213
|
+
key?: ResourceIdentityPart;
|
|
5214
|
+
title?: ResourceIdentityPart;
|
|
5215
|
+
metadata: ResourceIdentityPart[];
|
|
5216
|
+
displayLabel?: string;
|
|
5217
|
+
}
|
|
5218
|
+
declare function normalizeResourceIdentityContract(value: unknown): ResourceIdentityContract | null;
|
|
5219
|
+
declare function materializeResourceIdentity(contract: ResourceIdentityContract | null | undefined, record: Record<string, unknown> | null | undefined, fields?: readonly ResourceIdentityFieldMetadata[]): MaterializedResourceIdentity | null;
|
|
5220
|
+
|
|
4743
5221
|
/**
|
|
4744
5222
|
* Interface para configuração de endpoints personalizados.
|
|
4745
5223
|
*
|
|
@@ -4790,6 +5268,12 @@ interface CrudOperationOptions {
|
|
|
4790
5268
|
endpointKey?: ApiEndpoint;
|
|
4791
5269
|
httpContext?: HttpContext;
|
|
4792
5270
|
}
|
|
5271
|
+
interface CrudSchemaOptions extends CrudOperationOptions {
|
|
5272
|
+
/** Canonical record identity used to resolve the response schema. */
|
|
5273
|
+
idField?: string;
|
|
5274
|
+
/** Whether the resolved resource surface is read-only. */
|
|
5275
|
+
readOnly?: boolean;
|
|
5276
|
+
}
|
|
4793
5277
|
interface CrudConfigureOptions {
|
|
4794
5278
|
endpointKey?: ApiEndpoint;
|
|
4795
5279
|
apiUrlEntry?: ApiUrlEntry | null;
|
|
@@ -4801,6 +5285,9 @@ interface OptionSourceRequestOptions<ID = string | number> extends CrudOperation
|
|
|
4801
5285
|
sortKey?: string;
|
|
4802
5286
|
filters?: LookupFilterRequest[];
|
|
4803
5287
|
}
|
|
5288
|
+
interface OptionSourceByIdsRequestOptions extends CrudOperationOptions {
|
|
5289
|
+
filter?: Record<string, unknown> | null;
|
|
5290
|
+
}
|
|
4804
5291
|
interface BatchDeleteProgress<ID = string | number> {
|
|
4805
5292
|
id: ID;
|
|
4806
5293
|
success: boolean;
|
|
@@ -4857,6 +5344,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4857
5344
|
private schemaCacheReady?;
|
|
4858
5345
|
private _lastResourceMeta;
|
|
4859
5346
|
private _lastResourceCapabilityDigest;
|
|
5347
|
+
private _lastResourceIdentity;
|
|
4860
5348
|
private _lastSchemaInfo;
|
|
4861
5349
|
/**
|
|
4862
5350
|
* Cria a instância do serviço genérico.
|
|
@@ -4924,7 +5412,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4924
5412
|
* crudService.getSchema().subscribe(schema => { // usar metadados });
|
|
4925
5413
|
* ```
|
|
4926
5414
|
*/
|
|
4927
|
-
getSchema(options?:
|
|
5415
|
+
getSchema(options?: CrudSchemaOptions): Observable<FieldDefinition[]>;
|
|
4928
5416
|
private updateLastResourceMetadataFromSchema;
|
|
4929
5417
|
private normalizeCanonicalCapabilities;
|
|
4930
5418
|
private shouldRememberFilteredSchemaEndpointUnavailable;
|
|
@@ -4932,6 +5420,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4932
5420
|
/** Retorna o campo identificador do recurso (ex.: 'id', 'codigo'), quando derivado do schema. */
|
|
4933
5421
|
getResourceIdField(): string | undefined;
|
|
4934
5422
|
getResourceCapabilityDigest(): ResourceCapabilityDigest | null;
|
|
5423
|
+
/** Returns the canonical structured record identity from x-ui.resource.identity. */
|
|
5424
|
+
getResourceIdentity(): ResourceIdentityContract | null;
|
|
4935
5425
|
/** Retorna o último schemaId e hash conhecidos após getSchema()/getFilteredSchema(). */
|
|
4936
5426
|
getLastSchemaInfo(): {
|
|
4937
5427
|
schemaId?: string;
|
|
@@ -4961,6 +5451,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4961
5451
|
operation?: string;
|
|
4962
5452
|
includeInternalSchemas?: boolean;
|
|
4963
5453
|
schemaType?: string;
|
|
5454
|
+
idField?: string;
|
|
5455
|
+
readOnly?: boolean;
|
|
4964
5456
|
endpointKey?: ApiEndpoint;
|
|
4965
5457
|
httpContext?: HttpContext;
|
|
4966
5458
|
}): Observable<FieldDefinition[]>;
|
|
@@ -5116,7 +5608,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
5116
5608
|
/** OPTIONS: GET /options/by-ids */
|
|
5117
5609
|
getOptionsByIds(ids: ID[], options?: CrudOperationOptions): Observable<OptionDTO<ID>[]>;
|
|
5118
5610
|
/** OPTION SOURCES: GET /option-sources/{sourceKey}/options/by-ids */
|
|
5119
|
-
getOptionSourceOptionsByIds(sourceKey: string, ids: Array<string | number>, options?:
|
|
5611
|
+
getOptionSourceOptionsByIds(sourceKey: string, ids: Array<string | number>, options?: OptionSourceByIdsRequestOptions): Observable<OptionDTO<any>[]>;
|
|
5120
5612
|
/** CURSOR: POST /filter/cursor */
|
|
5121
5613
|
filterByCursor(criteria: any, cursorReq?: CursorRequest, options?: CrudOperationOptions): Observable<CursorPage<T>>;
|
|
5122
5614
|
/** LOCATE: POST /locate */
|
|
@@ -5373,6 +5865,9 @@ declare class TableConfigService {
|
|
|
5373
5865
|
declare function buildBaseColumnFromDef(def: FieldDefinition): ColumnDefinition;
|
|
5374
5866
|
declare function applyLocalCustomizations$1(baseCol: ColumnDefinition, localCol: ColumnDefinition): ColumnDefinition;
|
|
5375
5867
|
declare function reconcileTableConfig(layout: TableConfigV2, serverDefs: FieldDefinition[]): TableConfigV2;
|
|
5868
|
+
declare function resolveColumnTypeFromFieldDefinition(def: FieldDefinition, fallback?: ColumnDefinition['type']): ColumnDefinition['type'] | undefined;
|
|
5869
|
+
declare function resolveTextMaskFormatFromFieldDefinition(def: FieldDefinition): string | undefined;
|
|
5870
|
+
declare function resolveTextMaskFormat(value: unknown): string | undefined;
|
|
5376
5871
|
|
|
5377
5872
|
interface ConfigStorage {
|
|
5378
5873
|
loadConfig<T>(key: string): T | null;
|
|
@@ -5509,11 +6004,13 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
|
|
|
5509
6004
|
saveConfig<T>(key: string, config: T): Observable<void>;
|
|
5510
6005
|
private shouldPropagateSaveError;
|
|
5511
6006
|
private shouldPropagateClearError;
|
|
6007
|
+
private isConcurrencyConflict;
|
|
5512
6008
|
private shouldPropagateLoadError;
|
|
5513
6009
|
private isCriticalPersistenceKey;
|
|
5514
6010
|
clearConfig(key: string): Observable<void>;
|
|
5515
6011
|
private buildHeaders;
|
|
5516
6012
|
private buildParams;
|
|
6013
|
+
private resolveResponseScope;
|
|
5517
6014
|
private resolveKey;
|
|
5518
6015
|
private inferComponentType;
|
|
5519
6016
|
private looksLikePageKey;
|
|
@@ -6719,10 +7216,12 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
|
|
|
6719
7216
|
/** Enable sidebar shortcuts overlay (phase 1). */
|
|
6720
7217
|
showShortcuts?: boolean;
|
|
6721
7218
|
/**
|
|
6722
|
-
* Shortcuts configuration. Accepts built-in identifiers
|
|
6723
|
-
*
|
|
7219
|
+
* Shortcuts configuration. Accepts built-in identifiers, programmatic
|
|
7220
|
+
* TypeScript presets, or static metadata-safe presets resolved by the
|
|
7221
|
+
* backend/domain.
|
|
7222
|
+
* Example: ['thisMonth', 'lastMonth', { id: 'periodo-votacao', label: 'Período de votação', startDate: '2026-07-06', endDate: '2026-10-04' }]
|
|
6724
7223
|
*/
|
|
6725
|
-
shortcuts?:
|
|
7224
|
+
shortcuts?: DateRangeShortcutPreset[];
|
|
6726
7225
|
/**
|
|
6727
7226
|
* Inline quick presets for compact filters (`inlineDateRange`).
|
|
6728
7227
|
* - `true`: enabled with defaults
|
|
@@ -6732,6 +7231,7 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
|
|
|
6732
7231
|
inlineQuickPresets?: boolean | {
|
|
6733
7232
|
enabled?: boolean;
|
|
6734
7233
|
maxVisible?: number;
|
|
7234
|
+
position?: 'auto' | 'footer' | 'start' | 'end';
|
|
6735
7235
|
};
|
|
6736
7236
|
/** Accessibility label for the inline quick presets group. */
|
|
6737
7237
|
inlineQuickPresetsAriaLabel?: string;
|
|
@@ -7720,8 +8220,18 @@ interface MaterialTreeSelectMetadata extends FieldMetadata {
|
|
|
7720
8220
|
returnObject?: boolean;
|
|
7721
8221
|
}
|
|
7722
8222
|
|
|
7723
|
-
type PraxisJsonLogicIssueCode = 'RULE_SHAPE_INVALID' | 'RULE_OPERATOR_UNKNOWN' | 'RULE_OPERATOR_CONFLICT' | 'RULE_ARITY_INVALID' | 'RULE_PATH_INVALID' | 'RULE_CONTEXT_AMBIGUOUS' | 'RULE_ROOT_UNKNOWN' | 'RULE_ARGUMENT_TYPE_INVALID';
|
|
8223
|
+
type PraxisJsonLogicIssueCode = 'RULE_SHAPE_INVALID' | 'RULE_OPERATOR_UNKNOWN' | 'RULE_OPERATOR_CONFLICT' | 'RULE_ARITY_INVALID' | 'RULE_PATH_INVALID' | 'RULE_CONTEXT_AMBIGUOUS' | 'RULE_ROOT_UNKNOWN' | 'RULE_ARGUMENT_TYPE_INVALID' | 'RULE_TEMPORAL_INPUT_INVALID' | 'RULE_REGEX_INVALID' | 'RULE_LIMIT_EXCEEDED';
|
|
7724
8224
|
type PraxisJsonLogicRuntimeValue = unknown;
|
|
8225
|
+
interface PraxisJsonLogicLimits {
|
|
8226
|
+
maxDepth: number;
|
|
8227
|
+
maxNodes: number;
|
|
8228
|
+
maxExpressionBytes: number;
|
|
8229
|
+
maxArrayItems: number;
|
|
8230
|
+
maxStringLength: number;
|
|
8231
|
+
maxOperations: number;
|
|
8232
|
+
maxRegexLength: number;
|
|
8233
|
+
maxRegexComplexity: number;
|
|
8234
|
+
}
|
|
7725
8235
|
interface PraxisJsonLogicEvaluationContext {
|
|
7726
8236
|
data: JsonLogicDataRecord;
|
|
7727
8237
|
availableRoots?: RuleContextRoot[];
|
|
@@ -7729,6 +8239,7 @@ interface PraxisJsonLogicEvaluationContext {
|
|
|
7729
8239
|
allowImplicitRoot?: boolean;
|
|
7730
8240
|
nowUtc?: string;
|
|
7731
8241
|
userTimeZone?: string;
|
|
8242
|
+
limits?: PraxisJsonLogicLimits;
|
|
7732
8243
|
}
|
|
7733
8244
|
interface PraxisJsonLogicEvaluationOptions {
|
|
7734
8245
|
availableRoots?: RuleContextRoot[];
|
|
@@ -7736,6 +8247,7 @@ interface PraxisJsonLogicEvaluationOptions {
|
|
|
7736
8247
|
allowImplicitRoot?: boolean;
|
|
7737
8248
|
nowUtc?: string;
|
|
7738
8249
|
userTimeZone?: string;
|
|
8250
|
+
limits?: Partial<PraxisJsonLogicLimits>;
|
|
7739
8251
|
}
|
|
7740
8252
|
interface PraxisJsonLogicValidationOptions extends PraxisJsonLogicEvaluationOptions {
|
|
7741
8253
|
requireExpressionObject?: boolean;
|
|
@@ -7827,6 +8339,7 @@ declare class PraxisJsonLogicService {
|
|
|
7827
8339
|
private evaluateNone;
|
|
7828
8340
|
private requireHigherOrderArgs;
|
|
7829
8341
|
private assertArrayOperand;
|
|
8342
|
+
private assertIntermediateArrayLimit;
|
|
7830
8343
|
private createChildContext;
|
|
7831
8344
|
private evaluateArgs;
|
|
7832
8345
|
private requireArgs;
|
|
@@ -8047,18 +8560,89 @@ declare class DynamicFormService {
|
|
|
8047
8560
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormService>;
|
|
8048
8561
|
}
|
|
8049
8562
|
|
|
8563
|
+
type PraxisLocale = string;
|
|
8564
|
+
interface PraxisTranslationParams {
|
|
8565
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
8566
|
+
}
|
|
8567
|
+
interface PraxisI18nMessageDescriptor {
|
|
8568
|
+
key?: string;
|
|
8569
|
+
text?: string;
|
|
8570
|
+
params?: PraxisTranslationParams;
|
|
8571
|
+
}
|
|
8572
|
+
type PraxisTextValue = string | PraxisI18nMessageDescriptor;
|
|
8573
|
+
interface PraxisI18nDictionary {
|
|
8574
|
+
[key: string]: string;
|
|
8575
|
+
}
|
|
8576
|
+
interface PraxisI18nNamespaceDictionary {
|
|
8577
|
+
[locale: string]: PraxisI18nDictionary;
|
|
8578
|
+
}
|
|
8579
|
+
interface PraxisI18nNamespaceConfig {
|
|
8580
|
+
[namespace: string]: PraxisI18nNamespaceDictionary;
|
|
8581
|
+
}
|
|
8582
|
+
interface PraxisI18nConfig {
|
|
8583
|
+
locale?: PraxisLocale;
|
|
8584
|
+
fallbackLocale?: PraxisLocale;
|
|
8585
|
+
dictionaries?: Record<PraxisLocale, PraxisI18nDictionary>;
|
|
8586
|
+
namespaces?: PraxisI18nNamespaceConfig;
|
|
8587
|
+
}
|
|
8588
|
+
interface PraxisI18nTranslator {
|
|
8589
|
+
translate(key: string, params?: PraxisTranslationParams, fallback?: string): string;
|
|
8590
|
+
}
|
|
8591
|
+
|
|
8592
|
+
declare class PraxisI18nService {
|
|
8593
|
+
private readonly configs;
|
|
8594
|
+
private readonly translator;
|
|
8595
|
+
private readonly globalConfig;
|
|
8596
|
+
private readonly bootstrapOptions;
|
|
8597
|
+
constructor(configs: Array<Partial<PraxisI18nConfig>> | Partial<PraxisI18nConfig> | null, translator: PraxisI18nTranslator | null);
|
|
8598
|
+
getLocale(): string;
|
|
8599
|
+
getFallbackLocale(): string;
|
|
8600
|
+
t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8601
|
+
tForLocale(locale: string, key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8602
|
+
resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
|
|
8603
|
+
formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
|
|
8604
|
+
formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
|
|
8605
|
+
formatCurrency(value: number, currency: string, options?: Intl.NumberFormatOptions): string;
|
|
8606
|
+
private getConfig;
|
|
8607
|
+
private lookup;
|
|
8608
|
+
private translateExternally;
|
|
8609
|
+
private stringifyInvalidValue;
|
|
8610
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisI18nService, [{ optional: true; }, { optional: true; }]>;
|
|
8611
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisI18nService>;
|
|
8612
|
+
}
|
|
8613
|
+
|
|
8614
|
+
interface PraxisSubmitErrorDetail {
|
|
8615
|
+
code?: string;
|
|
8616
|
+
target?: string;
|
|
8617
|
+
category?: string;
|
|
8618
|
+
message: string;
|
|
8619
|
+
}
|
|
8620
|
+
interface PraxisSubmitError {
|
|
8621
|
+
message: string;
|
|
8622
|
+
details: PraxisSubmitErrorDetail[];
|
|
8623
|
+
}
|
|
8050
8624
|
/**
|
|
8051
8625
|
* Maps HTTP or network errors to user-friendly messages.
|
|
8052
8626
|
* This service centralizes error messaging so UI components don't
|
|
8053
8627
|
* need to know about HTTP status codes or low level error objects.
|
|
8054
8628
|
*/
|
|
8055
8629
|
declare class ErrorMessageService {
|
|
8630
|
+
private readonly i18n;
|
|
8631
|
+
constructor(i18n?: PraxisI18nService | null);
|
|
8632
|
+
normalizeSubmitError(error: unknown): PraxisSubmitError;
|
|
8056
8633
|
/**
|
|
8057
8634
|
* Returns a generic message for an error returned during a form submit.
|
|
8058
8635
|
* @param error Error object possibly containing an HTTP status code
|
|
8059
8636
|
*/
|
|
8060
8637
|
getSubmitErrorMessage(error: unknown): string;
|
|
8061
|
-
|
|
8638
|
+
private fallbackMessage;
|
|
8639
|
+
private normalizeDetails;
|
|
8640
|
+
private objectValue;
|
|
8641
|
+
private textValue;
|
|
8642
|
+
private numberValue;
|
|
8643
|
+
private genericSubmitError;
|
|
8644
|
+
private tx;
|
|
8645
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorMessageService, [{ optional: true; }]>;
|
|
8062
8646
|
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorMessageService>;
|
|
8063
8647
|
}
|
|
8064
8648
|
|
|
@@ -8102,6 +8686,25 @@ interface PortContract {
|
|
|
8102
8686
|
examples?: unknown[];
|
|
8103
8687
|
}
|
|
8104
8688
|
|
|
8689
|
+
interface ComponentConfigEditorContextRequest {
|
|
8690
|
+
componentId: string;
|
|
8691
|
+
widgetKey: string;
|
|
8692
|
+
widgetType?: string;
|
|
8693
|
+
persistedInputs: Record<string, unknown>;
|
|
8694
|
+
page?: unknown;
|
|
8695
|
+
widget?: unknown;
|
|
8696
|
+
metadata: ComponentDocMeta;
|
|
8697
|
+
}
|
|
8698
|
+
interface ComponentConfigEditorContextResult {
|
|
8699
|
+
context?: Record<string, unknown>;
|
|
8700
|
+
diagnostics?: Array<{
|
|
8701
|
+
code: string;
|
|
8702
|
+
severity?: 'info' | 'warning' | 'error';
|
|
8703
|
+
message?: string;
|
|
8704
|
+
path?: string;
|
|
8705
|
+
}>;
|
|
8706
|
+
}
|
|
8707
|
+
type ComponentConfigEditorContextResolver = (request: ComponentConfigEditorContextRequest) => ComponentConfigEditorContextResult | Record<string, unknown> | Promise<ComponentConfigEditorContextResult | Record<string, unknown>>;
|
|
8105
8708
|
/**
|
|
8106
8709
|
* Documentation metadata for dynamically added components.
|
|
8107
8710
|
*
|
|
@@ -8194,6 +8797,14 @@ interface ComponentDocMeta {
|
|
|
8194
8797
|
component: Type<unknown>;
|
|
8195
8798
|
/** Optional title shown by hosts when opening the editor. */
|
|
8196
8799
|
title?: string;
|
|
8800
|
+
/**
|
|
8801
|
+
* Optional transient authoring context resolver.
|
|
8802
|
+
*
|
|
8803
|
+
* The host resolves this immediately before opening the editor and passes
|
|
8804
|
+
* the result separately from persisted widget inputs. The returned context
|
|
8805
|
+
* must not be serialized into widget.definition.inputs.
|
|
8806
|
+
*/
|
|
8807
|
+
contextResolver?: ComponentConfigEditorContextResolver;
|
|
8197
8808
|
};
|
|
8198
8809
|
/** Optional canonical AI authoring manifest reference published by the component owner. */
|
|
8199
8810
|
authoringManifestRef?: {
|
|
@@ -8229,35 +8840,6 @@ interface ComponentDocMeta {
|
|
|
8229
8840
|
};
|
|
8230
8841
|
}
|
|
8231
8842
|
|
|
8232
|
-
type PraxisLocale = string;
|
|
8233
|
-
interface PraxisTranslationParams {
|
|
8234
|
-
[key: string]: string | number | boolean | null | undefined;
|
|
8235
|
-
}
|
|
8236
|
-
interface PraxisI18nMessageDescriptor {
|
|
8237
|
-
key?: string;
|
|
8238
|
-
text?: string;
|
|
8239
|
-
params?: PraxisTranslationParams;
|
|
8240
|
-
}
|
|
8241
|
-
type PraxisTextValue = string | PraxisI18nMessageDescriptor;
|
|
8242
|
-
interface PraxisI18nDictionary {
|
|
8243
|
-
[key: string]: string;
|
|
8244
|
-
}
|
|
8245
|
-
interface PraxisI18nNamespaceDictionary {
|
|
8246
|
-
[locale: string]: PraxisI18nDictionary;
|
|
8247
|
-
}
|
|
8248
|
-
interface PraxisI18nNamespaceConfig {
|
|
8249
|
-
[namespace: string]: PraxisI18nNamespaceDictionary;
|
|
8250
|
-
}
|
|
8251
|
-
interface PraxisI18nConfig {
|
|
8252
|
-
locale?: PraxisLocale;
|
|
8253
|
-
fallbackLocale?: PraxisLocale;
|
|
8254
|
-
dictionaries?: Record<PraxisLocale, PraxisI18nDictionary>;
|
|
8255
|
-
namespaces?: PraxisI18nNamespaceConfig;
|
|
8256
|
-
}
|
|
8257
|
-
interface PraxisI18nTranslator {
|
|
8258
|
-
translate(key: string, params?: PraxisTranslationParams, fallback?: string): string;
|
|
8259
|
-
}
|
|
8260
|
-
|
|
8261
8843
|
interface ComponentMetadataEditorialBindingDescriptor {
|
|
8262
8844
|
name: string;
|
|
8263
8845
|
type: string;
|
|
@@ -8309,28 +8891,6 @@ interface ComponentEditorialResolveOptions {
|
|
|
8309
8891
|
namespace?: string;
|
|
8310
8892
|
}
|
|
8311
8893
|
|
|
8312
|
-
declare class PraxisI18nService {
|
|
8313
|
-
private readonly configs;
|
|
8314
|
-
private readonly translator;
|
|
8315
|
-
private readonly globalConfig;
|
|
8316
|
-
private readonly bootstrapOptions;
|
|
8317
|
-
constructor(configs: Array<Partial<PraxisI18nConfig>> | Partial<PraxisI18nConfig> | null, translator: PraxisI18nTranslator | null);
|
|
8318
|
-
getLocale(): string;
|
|
8319
|
-
getFallbackLocale(): string;
|
|
8320
|
-
t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8321
|
-
tForLocale(locale: string, key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8322
|
-
resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
|
|
8323
|
-
formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
|
|
8324
|
-
formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
|
|
8325
|
-
formatCurrency(value: number, currency: string, options?: Intl.NumberFormatOptions): string;
|
|
8326
|
-
private getConfig;
|
|
8327
|
-
private lookup;
|
|
8328
|
-
private translateExternally;
|
|
8329
|
-
private stringifyInvalidValue;
|
|
8330
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisI18nService, [{ optional: true; }, { optional: true; }]>;
|
|
8331
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisI18nService>;
|
|
8332
|
-
}
|
|
8333
|
-
|
|
8334
8894
|
/**
|
|
8335
8895
|
* Simple in-memory registry of component documentation metadata.
|
|
8336
8896
|
*
|
|
@@ -8368,14 +8928,21 @@ declare class ComponentMetadataRegistry {
|
|
|
8368
8928
|
*/
|
|
8369
8929
|
private normalizeMeta;
|
|
8370
8930
|
private normalizeEditorialDescriptor;
|
|
8931
|
+
private assertCanRegisterMetadata;
|
|
8932
|
+
private assertCanRegisterEditorialMetadata;
|
|
8371
8933
|
private resolveEditorialDescriptor;
|
|
8372
8934
|
private resolveComponentDocMeta;
|
|
8373
8935
|
private findLegacyMetadata;
|
|
8374
8936
|
private resolveEditorialBinding;
|
|
8375
8937
|
private resolveTextValue;
|
|
8376
8938
|
private resolveOptionalTextValue;
|
|
8939
|
+
private defaultCopy;
|
|
8940
|
+
private resolveDefaultCopy;
|
|
8377
8941
|
private isEditorialDescriptor;
|
|
8378
8942
|
private clonePortContract;
|
|
8943
|
+
private cloneComponentDocMeta;
|
|
8944
|
+
private cloneEditorialDescriptor;
|
|
8945
|
+
private cloneValue;
|
|
8379
8946
|
private normalizeComponentType;
|
|
8380
8947
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentMetadataRegistry, [{ optional: true; }]>;
|
|
8381
8948
|
static ɵprov: i0.ɵɵInjectableDeclaration<ComponentMetadataRegistry>;
|
|
@@ -8585,15 +9152,25 @@ declare class ResourceDiscoveryService {
|
|
|
8585
9152
|
getSurfaces(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceSurfaceCatalogResponse>;
|
|
8586
9153
|
getActions(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceActionCatalogResponse>;
|
|
8587
9154
|
getCapabilities(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceCapabilitySnapshot>;
|
|
9155
|
+
getCapabilitiesByUrl(href: string, options?: ResourceDiscoveryRequestOptions): Observable<ResourceCapabilitySnapshot>;
|
|
9156
|
+
getSchemaCatalog(query?: ResourceSchemaCatalogQuery, options?: ResourceDiscoveryRequestOptions): Observable<ResourceSchemaCatalogResponse>;
|
|
8588
9157
|
fetchJson<T>(href: string, options?: ResourceDiscoveryRequestOptions): Observable<T>;
|
|
8589
9158
|
getSchemaByUrl<T = Record<string, any>>(schemaUrl: string, options?: ResourceDiscoveryRequestOptions): Observable<T>;
|
|
8590
9159
|
getSchemaFieldsByUrl(schemaUrl: string, options?: ResourceDiscoveryRequestOptions): Observable<FieldDefinition[]>;
|
|
8591
9160
|
resolveHref(href: string, options?: ResourceDiscoveryRequestOptions): string;
|
|
8592
9161
|
private requireLinkHref;
|
|
9162
|
+
private toSchemaCatalogParams;
|
|
8593
9163
|
private extractLinks;
|
|
8594
9164
|
resolveApiEntry(options?: ResourceDiscoveryRequestOptions): ApiUrlEntry;
|
|
8595
9165
|
private resolveApiOrigin;
|
|
8596
9166
|
private resolveApiBaseUrl;
|
|
9167
|
+
private resolveTrustedAbsoluteHref;
|
|
9168
|
+
private isTrustedOrigin;
|
|
9169
|
+
private getTrustedOrigins;
|
|
9170
|
+
private normalizeOrigin;
|
|
9171
|
+
private isProxyableApiPath;
|
|
9172
|
+
private normalizePathPrefix;
|
|
9173
|
+
private isAbsoluteHttpUrl;
|
|
8597
9174
|
private resolveApiBaseHref;
|
|
8598
9175
|
private resolveEndpointEntry;
|
|
8599
9176
|
private getRuntimeOrigin;
|
|
@@ -8603,6 +9180,53 @@ declare class ResourceDiscoveryService {
|
|
|
8603
9180
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDiscoveryService>;
|
|
8604
9181
|
}
|
|
8605
9182
|
|
|
9183
|
+
type ResourceRecordOpenFailureCode = 'INVALID_REFERENCE' | 'SOURCE_IDENTITY_MISSING' | 'SOURCE_IDENTITY_INVALID' | 'RESOURCE_CATALOG_INVALID' | 'TARGET_SURFACE_UNAVAILABLE' | 'CONTEXTUAL_CATALOG_INVALID' | 'CONTEXTUAL_SURFACE_UNAVAILABLE' | 'DISCOVERY_FAILED';
|
|
9184
|
+
declare class ResourceRecordOpenError extends Error {
|
|
9185
|
+
readonly code: ResourceRecordOpenFailureCode;
|
|
9186
|
+
readonly detail?: unknown | undefined;
|
|
9187
|
+
constructor(code: ResourceRecordOpenFailureCode, message: string, detail?: unknown | undefined);
|
|
9188
|
+
}
|
|
9189
|
+
interface ResourceRecordOpenResolveOptions extends ResourceDiscoveryRequestOptions {
|
|
9190
|
+
presentation?: SurfacePresentation;
|
|
9191
|
+
title?: string;
|
|
9192
|
+
subtitle?: string;
|
|
9193
|
+
icon?: string;
|
|
9194
|
+
queryContext?: Record<string, unknown>;
|
|
9195
|
+
}
|
|
9196
|
+
interface ResourceRecordOpenResolution {
|
|
9197
|
+
resourceId: string | number;
|
|
9198
|
+
resourcePath: string;
|
|
9199
|
+
surface: ResourceSurfaceCatalogItem;
|
|
9200
|
+
payload: SurfaceOpenPayload;
|
|
9201
|
+
}
|
|
9202
|
+
/**
|
|
9203
|
+
* Resolves a governed record-open reference into a contextual surface payload.
|
|
9204
|
+
*
|
|
9205
|
+
* The service deliberately re-queries discovery for the current principal. It
|
|
9206
|
+
* never treats the authoring-time catalog, the row label or a local URL template
|
|
9207
|
+
* as authorization to open the target surface.
|
|
9208
|
+
*/
|
|
9209
|
+
declare class ResourceRecordOpenService {
|
|
9210
|
+
private readonly discovery;
|
|
9211
|
+
private readonly surfaceAdapter;
|
|
9212
|
+
resolve(reference: ResourceRecordOpenRef, record: unknown, options?: ResourceRecordOpenResolveOptions): Observable<ResourceRecordOpenResolution>;
|
|
9213
|
+
private materializeContextualSurface;
|
|
9214
|
+
private requireCollectionTargetSurface;
|
|
9215
|
+
private requireSurface;
|
|
9216
|
+
private requireCatalog;
|
|
9217
|
+
private requireReference;
|
|
9218
|
+
private requireResourceId;
|
|
9219
|
+
private surfaceCatalogHref;
|
|
9220
|
+
private itemHref;
|
|
9221
|
+
private safeResourcePath;
|
|
9222
|
+
private normalizeFailure;
|
|
9223
|
+
private record;
|
|
9224
|
+
private text;
|
|
9225
|
+
private nullableText;
|
|
9226
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceRecordOpenService, never>;
|
|
9227
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceRecordOpenService>;
|
|
9228
|
+
}
|
|
9229
|
+
|
|
8606
9230
|
declare const DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.2";
|
|
8607
9231
|
interface DomainCatalogRelease {
|
|
8608
9232
|
releaseKey: string;
|
|
@@ -8741,6 +9365,7 @@ interface Domain360CatalogResponse {
|
|
|
8741
9365
|
|
|
8742
9366
|
interface DomainCatalogRequestOptions extends ResourceDiscoveryRequestOptions {
|
|
8743
9367
|
serviceKey?: string;
|
|
9368
|
+
resourceKey?: string;
|
|
8744
9369
|
limit?: number;
|
|
8745
9370
|
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
8746
9371
|
}
|
|
@@ -9134,6 +9759,133 @@ declare class DomainRuleService {
|
|
|
9134
9759
|
static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
|
|
9135
9760
|
}
|
|
9136
9761
|
|
|
9762
|
+
interface EnterpriseRuntimeUser {
|
|
9763
|
+
userId: string;
|
|
9764
|
+
displayName?: string | null;
|
|
9765
|
+
resolvedFromServerPrincipal?: boolean;
|
|
9766
|
+
}
|
|
9767
|
+
interface EnterpriseRuntimeTenant {
|
|
9768
|
+
tenantId: string;
|
|
9769
|
+
label?: string | null;
|
|
9770
|
+
active?: boolean;
|
|
9771
|
+
}
|
|
9772
|
+
interface EnterpriseRuntimeTenantsResponse {
|
|
9773
|
+
schemaVersion: string;
|
|
9774
|
+
activeTenant?: EnterpriseRuntimeTenant | null;
|
|
9775
|
+
tenants?: EnterpriseRuntimeTenant[];
|
|
9776
|
+
capabilities?: string[];
|
|
9777
|
+
resolvedAt?: string | null;
|
|
9778
|
+
}
|
|
9779
|
+
interface EnterpriseRuntimeContext {
|
|
9780
|
+
schemaVersion: string;
|
|
9781
|
+
user: EnterpriseRuntimeUser;
|
|
9782
|
+
activeTenant: EnterpriseRuntimeTenant;
|
|
9783
|
+
environment?: string | null;
|
|
9784
|
+
locale?: string | null;
|
|
9785
|
+
timezone?: string | null;
|
|
9786
|
+
activeProfileId?: string | null;
|
|
9787
|
+
activeModuleKey?: string | null;
|
|
9788
|
+
/**
|
|
9789
|
+
* Host-resolved security authorities usable by metadata-driven UX policies.
|
|
9790
|
+
* Do not infer these from `capabilities` unless the host/backend explicitly
|
|
9791
|
+
* publishes that shared vocabulary.
|
|
9792
|
+
*/
|
|
9793
|
+
authorities?: string[];
|
|
9794
|
+
capabilities?: string[];
|
|
9795
|
+
resolvedAt?: string | null;
|
|
9796
|
+
}
|
|
9797
|
+
interface EnterpriseRuntimeContextSwitchCommand {
|
|
9798
|
+
targetTenantId?: string | null;
|
|
9799
|
+
targetProfileId?: string | null;
|
|
9800
|
+
targetModuleKey?: string | null;
|
|
9801
|
+
locale?: string | null;
|
|
9802
|
+
timezone?: string | null;
|
|
9803
|
+
reason?: string | null;
|
|
9804
|
+
}
|
|
9805
|
+
interface EnterpriseRuntimeContextSwitchResponse {
|
|
9806
|
+
schemaVersion: string;
|
|
9807
|
+
accepted: boolean;
|
|
9808
|
+
message?: string | null;
|
|
9809
|
+
effectiveContext?: EnterpriseRuntimeContext | null;
|
|
9810
|
+
propagationHeaders?: Record<string, string>;
|
|
9811
|
+
capabilities?: string[];
|
|
9812
|
+
resolvedAt?: string | null;
|
|
9813
|
+
}
|
|
9814
|
+
interface EnterpriseRuntimeNavigationNode {
|
|
9815
|
+
id: string;
|
|
9816
|
+
label?: string | null;
|
|
9817
|
+
type?: string | null;
|
|
9818
|
+
href?: string | null;
|
|
9819
|
+
route?: string | null;
|
|
9820
|
+
moduleKey?: string | null;
|
|
9821
|
+
resourceKey?: string | null;
|
|
9822
|
+
surfaceRef?: string | null;
|
|
9823
|
+
actionRef?: string | null;
|
|
9824
|
+
capabilityRef?: string | null;
|
|
9825
|
+
children?: EnterpriseRuntimeNavigationNode[];
|
|
9826
|
+
}
|
|
9827
|
+
interface EnterpriseRuntimeNavigationResponse {
|
|
9828
|
+
schemaVersion: string;
|
|
9829
|
+
nodes?: EnterpriseRuntimeNavigationNode[];
|
|
9830
|
+
capabilities?: string[];
|
|
9831
|
+
resolvedAt?: string | null;
|
|
9832
|
+
}
|
|
9833
|
+
interface EnterpriseRuntimeSecurityEvent {
|
|
9834
|
+
eventRef?: string | null;
|
|
9835
|
+
eventType?: string | null;
|
|
9836
|
+
severity?: string | null;
|
|
9837
|
+
summary?: string | null;
|
|
9838
|
+
tenantId?: string | null;
|
|
9839
|
+
environment?: string | null;
|
|
9840
|
+
occurredAt?: string | null;
|
|
9841
|
+
metadata?: Record<string, string>;
|
|
9842
|
+
}
|
|
9843
|
+
interface EnterpriseRuntimeSecurityEventsResponse {
|
|
9844
|
+
schemaVersion: string;
|
|
9845
|
+
events?: EnterpriseRuntimeSecurityEvent[];
|
|
9846
|
+
capabilities?: string[];
|
|
9847
|
+
resolvedAt?: string | null;
|
|
9848
|
+
}
|
|
9849
|
+
interface EnterpriseRuntimeContextHeaders {
|
|
9850
|
+
'X-Tenant-ID'?: string;
|
|
9851
|
+
'X-User-ID'?: string;
|
|
9852
|
+
'X-Env'?: string;
|
|
9853
|
+
'Accept-Language'?: string;
|
|
9854
|
+
'X-Timezone'?: string;
|
|
9855
|
+
'X-Praxis-Profile-ID'?: string;
|
|
9856
|
+
'X-Praxis-Module-Key'?: string;
|
|
9857
|
+
}
|
|
9858
|
+
|
|
9859
|
+
type RuntimeHeaderMap = Record<string, string | undefined>;
|
|
9860
|
+
declare class EnterpriseRuntimeContextService {
|
|
9861
|
+
private readonly http;
|
|
9862
|
+
private readonly apiUrl;
|
|
9863
|
+
private readonly options;
|
|
9864
|
+
private readonly contextSubject;
|
|
9865
|
+
private loadPromise;
|
|
9866
|
+
readonly contextChanges$: Observable<EnterpriseRuntimeContext | null>;
|
|
9867
|
+
get snapshot(): EnterpriseRuntimeContext | null;
|
|
9868
|
+
ready(): Promise<EnterpriseRuntimeContext | null>;
|
|
9869
|
+
refresh(): Promise<EnterpriseRuntimeContext | null>;
|
|
9870
|
+
tenants(): Promise<EnterpriseRuntimeTenantsResponse>;
|
|
9871
|
+
navigation(): Promise<EnterpriseRuntimeNavigationResponse>;
|
|
9872
|
+
securityEvents(): Promise<EnterpriseRuntimeSecurityEventsResponse>;
|
|
9873
|
+
switchContext(command: EnterpriseRuntimeContextSwitchCommand): Promise<EnterpriseRuntimeContextSwitchResponse>;
|
|
9874
|
+
headers(fallback?: RuntimeHeaderMap): EnterpriseRuntimeContextHeaders;
|
|
9875
|
+
private load;
|
|
9876
|
+
private getRuntimeSurface;
|
|
9877
|
+
private endpoint;
|
|
9878
|
+
private configuredEndpoint;
|
|
9879
|
+
private runtimeRoot;
|
|
9880
|
+
private surfacePath;
|
|
9881
|
+
private requestHeaders;
|
|
9882
|
+
private globalFetchHeaders;
|
|
9883
|
+
private headersFromSnapshot;
|
|
9884
|
+
private normalizeHeaders;
|
|
9885
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnterpriseRuntimeContextService, never>;
|
|
9886
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnterpriseRuntimeContextService>;
|
|
9887
|
+
}
|
|
9888
|
+
|
|
9137
9889
|
type PraxisRuntimeComponentObservationSchemaVersion = 'praxis-runtime-component-observation.v1';
|
|
9138
9890
|
type PraxisRuntimeComponentObservationClaimKind = 'component' | 'manifest' | 'resource' | 'schemaField' | 'selection' | 'operation' | 'surface' | 'action' | 'stateDigest' | 'dataDigest';
|
|
9139
9891
|
interface PraxisRuntimeComponentObservationEnvelope {
|
|
@@ -9293,6 +10045,87 @@ declare class ResourceSurfaceOpenAdapterService {
|
|
|
9293
10045
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceSurfaceOpenAdapterService>;
|
|
9294
10046
|
}
|
|
9295
10047
|
|
|
10048
|
+
interface SurfaceOutletRegistration {
|
|
10049
|
+
resourceKey: string;
|
|
10050
|
+
surfaceId: string;
|
|
10051
|
+
priority?: number;
|
|
10052
|
+
activate: (payload: SurfaceOpenPayload, context?: GlobalActionContext) => boolean | Promise<boolean>;
|
|
10053
|
+
}
|
|
10054
|
+
declare class SurfaceOutletRegistryService {
|
|
10055
|
+
private readonly registrations;
|
|
10056
|
+
register(registration: SurfaceOutletRegistration): () => void;
|
|
10057
|
+
tryActivate(payload: SurfaceOpenPayload, context?: GlobalActionContext): Promise<boolean>;
|
|
10058
|
+
private key;
|
|
10059
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceOutletRegistryService, never>;
|
|
10060
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SurfaceOutletRegistryService>;
|
|
10061
|
+
}
|
|
10062
|
+
|
|
10063
|
+
type RelatedResourceResolutionState = 'idle' | 'resolving' | 'loading' | 'ready' | 'empty' | 'permission-limited' | 'not-found' | 'error';
|
|
10064
|
+
interface RelatedResourceQueryContext {
|
|
10065
|
+
filters?: Record<string, unknown> | null;
|
|
10066
|
+
filterExpression?: unknown;
|
|
10067
|
+
sort?: string[] | null;
|
|
10068
|
+
limit?: number | null;
|
|
10069
|
+
page?: {
|
|
10070
|
+
index?: number | null;
|
|
10071
|
+
size?: number | null;
|
|
10072
|
+
} | null;
|
|
10073
|
+
meta?: Record<string, unknown> | null;
|
|
10074
|
+
}
|
|
10075
|
+
interface RelatedResourceSurfaceResolverRequest {
|
|
10076
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
10077
|
+
parentRecord?: Record<string, unknown> | null;
|
|
10078
|
+
parentResourceId?: string | number | null;
|
|
10079
|
+
parentResourcePath?: string | null;
|
|
10080
|
+
presentation?: SurfacePresentation;
|
|
10081
|
+
title?: string | null;
|
|
10082
|
+
subtitle?: string | null;
|
|
10083
|
+
icon?: string | null;
|
|
10084
|
+
tableId?: string | null;
|
|
10085
|
+
tableConfig?: Record<string, unknown> | null;
|
|
10086
|
+
enableCustomization?: boolean | null;
|
|
10087
|
+
authoringCapability?: string | null;
|
|
10088
|
+
emptyState?: Record<string, unknown> | null;
|
|
10089
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
10090
|
+
apiEndpointKey?: ApiEndpoint | null;
|
|
10091
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
10092
|
+
}
|
|
10093
|
+
interface RelatedResourceSurfaceResolution {
|
|
10094
|
+
state: RelatedResourceResolutionState;
|
|
10095
|
+
reason?: string;
|
|
10096
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
10097
|
+
relatedResource?: RelatedResourceSurface | null;
|
|
10098
|
+
parentResourceId?: string | number | null;
|
|
10099
|
+
childResourcePath?: string | null;
|
|
10100
|
+
childResourceKey?: string | null;
|
|
10101
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
10102
|
+
payload?: SurfaceOpenPayload;
|
|
10103
|
+
}
|
|
10104
|
+
declare class RelatedResourceSurfaceResolverService {
|
|
10105
|
+
private readonly i18n;
|
|
10106
|
+
resolve(request: RelatedResourceSurfaceResolverRequest | null | undefined): RelatedResourceSurfaceResolution;
|
|
10107
|
+
state(state: RelatedResourceResolutionState, reason?: string): RelatedResourceSurfaceResolution;
|
|
10108
|
+
private buildPayload;
|
|
10109
|
+
private buildTableConfig;
|
|
10110
|
+
private buildRelatedEmptyState;
|
|
10111
|
+
private objectValue;
|
|
10112
|
+
private buildQueryContext;
|
|
10113
|
+
private resolveParentResourceId;
|
|
10114
|
+
private readPath;
|
|
10115
|
+
private isCompleteRelatedResource;
|
|
10116
|
+
private hasReadOperation;
|
|
10117
|
+
private buildStableTableId;
|
|
10118
|
+
private normalizeResourcePath;
|
|
10119
|
+
private sanitizeStableId;
|
|
10120
|
+
private humanizeResourceKey;
|
|
10121
|
+
private t;
|
|
10122
|
+
private interpolate;
|
|
10123
|
+
private trim;
|
|
10124
|
+
private clone;
|
|
10125
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RelatedResourceSurfaceResolverService, never>;
|
|
10126
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RelatedResourceSurfaceResolverService>;
|
|
10127
|
+
}
|
|
10128
|
+
|
|
9296
10129
|
type SurfaceOpenMaterializationContext = {
|
|
9297
10130
|
payload?: unknown;
|
|
9298
10131
|
runtime?: unknown;
|
|
@@ -9301,21 +10134,6 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9301
10134
|
private readonly discovery;
|
|
9302
10135
|
materialize(payload: SurfaceOpenPayload, context?: SurfaceOpenMaterializationContext): Promise<SurfaceOpenPayload>;
|
|
9303
10136
|
private projectMaterializedFormInputs;
|
|
9304
|
-
private buildLocalFormConfig;
|
|
9305
|
-
private buildMaterializedFormFields;
|
|
9306
|
-
private buildMaterializedFormSections;
|
|
9307
|
-
private shouldRenderMaterializedFormField;
|
|
9308
|
-
private isTechnicalRelationIdField;
|
|
9309
|
-
private isResolvedDisplayCompanionField;
|
|
9310
|
-
private resolveDisplayCompanionBase;
|
|
9311
|
-
private hasDisplayCompanion;
|
|
9312
|
-
private isDuplicateMediaUrlField;
|
|
9313
|
-
private looksLikeMediaUrlField;
|
|
9314
|
-
private looksLikeAvatarFieldName;
|
|
9315
|
-
private inferFormControlType;
|
|
9316
|
-
private humanizeFieldName;
|
|
9317
|
-
private stableSectionId;
|
|
9318
|
-
private chunk;
|
|
9319
10137
|
private shouldMaterializeItemReadProjection;
|
|
9320
10138
|
private resolveResponseCardinality;
|
|
9321
10139
|
private shouldMaterializeAsCollection;
|
|
@@ -9323,9 +10141,26 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9323
10141
|
private resolveResourceId;
|
|
9324
10142
|
private resolveItemReadUrl;
|
|
9325
10143
|
private resolveSchemaFields;
|
|
10144
|
+
private materializeArrayProjection;
|
|
10145
|
+
private materializeArrayAsCrud;
|
|
9326
10146
|
private materializeArrayAsTable;
|
|
10147
|
+
private ensureCollectionTableSelectionContract;
|
|
10148
|
+
private ensureTableSelectionConfig;
|
|
9327
10149
|
private projectTableInputs;
|
|
9328
10150
|
private buildLocalTableConfig;
|
|
10151
|
+
private objectRecord;
|
|
10152
|
+
private buildRelatedCrudActions;
|
|
10153
|
+
private buildRelatedCommandFormConfig;
|
|
10154
|
+
private buildExplicitRelatedActionForm;
|
|
10155
|
+
private buildRelatedCommandLayoutPolicy;
|
|
10156
|
+
private buildSchemaUrl;
|
|
10157
|
+
private hasRelatedChildWriteOperations;
|
|
10158
|
+
private resolveRelatedChildOperations;
|
|
10159
|
+
private resolveRelatedResource;
|
|
10160
|
+
private resolveRelatedSelectionKeyField;
|
|
10161
|
+
private resolveSurfacePath;
|
|
10162
|
+
private normalizeResourcePath;
|
|
10163
|
+
private resolveRelatedActionNoun;
|
|
9329
10164
|
private inferColumnsFromData;
|
|
9330
10165
|
private extractCollectionData;
|
|
9331
10166
|
private mergeMaterializationContext;
|
|
@@ -9363,6 +10198,7 @@ interface ResolvedCrudOperation {
|
|
|
9363
10198
|
interface ResolveCrudOperationRequest {
|
|
9364
10199
|
operation: ResourceCrudOperationId;
|
|
9365
10200
|
resourcePath: string;
|
|
10201
|
+
schemaResourcePath?: string | null;
|
|
9366
10202
|
resourceId?: string | number | null;
|
|
9367
10203
|
explicit?: ExplicitCrudResolutionContract | null;
|
|
9368
10204
|
}
|
|
@@ -9380,6 +10216,7 @@ declare class CrudOperationResolutionService {
|
|
|
9380
10216
|
private buildExplicitResolution;
|
|
9381
10217
|
private buildSurfaceResolution;
|
|
9382
10218
|
private buildConventionResolution;
|
|
10219
|
+
private addConventionSurfaceDiagnostic;
|
|
9383
10220
|
private resolveCanonicalSchemaUrl;
|
|
9384
10221
|
private buildCanonicalSchemaParams;
|
|
9385
10222
|
private resolveConventionSubmitUrl;
|
|
@@ -9400,6 +10237,7 @@ declare class CrudOperationResolutionService {
|
|
|
9400
10237
|
private normalizeResourcePath;
|
|
9401
10238
|
private resolveSchemaResourcePath;
|
|
9402
10239
|
private resolveCanonicalResourcePath;
|
|
10240
|
+
private resolveCanonicalSchemaResourcePath;
|
|
9403
10241
|
private toDiscoveryOptions;
|
|
9404
10242
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudOperationResolutionService, never>;
|
|
9405
10243
|
static ɵprov: i0.ɵɵInjectableDeclaration<CrudOperationResolutionService>;
|
|
@@ -9407,10 +10245,12 @@ declare class CrudOperationResolutionService {
|
|
|
9407
10245
|
|
|
9408
10246
|
type AnalyticsIntent = 'ranking' | 'trend' | 'distribution' | 'composition' | 'comparison' | 'correlation';
|
|
9409
10247
|
type AnalyticsSourceKind = 'praxis.stats';
|
|
9410
|
-
type AnalyticsStatsOperation = 'group-by' | 'timeseries' | 'distribution';
|
|
10248
|
+
type AnalyticsStatsOperation = 'group-by' | 'timeseries' | 'distribution' | 'comparison';
|
|
9411
10249
|
type AnalyticsStatsGranularity = 'day' | 'week' | 'month';
|
|
9412
10250
|
type AnalyticsStatsMetricOperation = 'COUNT' | 'DISTINCT_COUNT' | 'SUM' | 'AVG' | 'MIN' | 'MAX';
|
|
9413
10251
|
type AnalyticsStatsOrderBy = 'KEY_ASC' | 'KEY_DESC' | 'VALUE_ASC' | 'VALUE_DESC';
|
|
10252
|
+
type AnalyticsComparisonPeriodPreset = 'TODAY' | 'YESTERDAY' | 'LAST_7_DAYS' | 'LAST_30_DAYS' | 'THIS_MONTH' | 'LAST_MONTH' | 'THIS_QUARTER' | 'THIS_YEAR';
|
|
10253
|
+
type AnalyticsComparisonPeriodMode = 'PREVIOUS_ALIGNED' | 'PREVIOUS_CALENDAR_PERIOD';
|
|
9414
10254
|
type AnalyticsPresentationFamily = 'chart' | 'analytic-table' | 'kpi' | 'summary-list';
|
|
9415
10255
|
interface PraxisXUiAnalytics {
|
|
9416
10256
|
projections: PraxisAnalyticsProjection[];
|
|
@@ -9433,17 +10273,26 @@ interface PraxisAnalyticsBindings {
|
|
|
9433
10273
|
primaryDimension?: PraxisAnalyticsDimensionBinding | null;
|
|
9434
10274
|
primaryMetrics: PraxisAnalyticsMetricBinding[];
|
|
9435
10275
|
secondaryMetrics?: PraxisAnalyticsMetricBinding[] | null;
|
|
10276
|
+
comparisonPeriod?: PraxisAnalyticsComparisonPeriodBinding | null;
|
|
9436
10277
|
}
|
|
9437
10278
|
interface PraxisAnalyticsDimensionBinding {
|
|
9438
10279
|
field: string;
|
|
9439
10280
|
role?: string | null;
|
|
9440
10281
|
label?: string | null;
|
|
10282
|
+
/** Public request field that receives the raw stats bucket key. */
|
|
10283
|
+
keyFilterField?: string | null;
|
|
9441
10284
|
}
|
|
9442
10285
|
interface PraxisAnalyticsMetricBinding {
|
|
9443
10286
|
field: string;
|
|
9444
10287
|
aggregation?: string | null;
|
|
9445
10288
|
label?: string | null;
|
|
9446
10289
|
}
|
|
10290
|
+
interface PraxisAnalyticsComparisonPeriodBinding {
|
|
10291
|
+
field: string;
|
|
10292
|
+
timezone: string;
|
|
10293
|
+
preset: AnalyticsComparisonPeriodPreset;
|
|
10294
|
+
mode: AnalyticsComparisonPeriodMode;
|
|
10295
|
+
}
|
|
9447
10296
|
interface PraxisAnalyticsDefaults {
|
|
9448
10297
|
sort?: PraxisAnalyticsSortRule[] | null;
|
|
9449
10298
|
limit?: number | null;
|
|
@@ -9503,7 +10352,51 @@ interface PraxisAnalyticsDistributionStatsRequest {
|
|
|
9503
10352
|
limit?: number;
|
|
9504
10353
|
orderBy?: AnalyticsStatsOrderBy;
|
|
9505
10354
|
}
|
|
9506
|
-
|
|
10355
|
+
interface PraxisAnalyticsComparisonStatsRequest {
|
|
10356
|
+
filter: Record<string, unknown>;
|
|
10357
|
+
field: string;
|
|
10358
|
+
periodField: string;
|
|
10359
|
+
metrics: PraxisAnalyticsStatsMetricRequest[];
|
|
10360
|
+
period: {
|
|
10361
|
+
preset: AnalyticsComparisonPeriodPreset;
|
|
10362
|
+
timezone: string;
|
|
10363
|
+
mode: AnalyticsComparisonPeriodMode;
|
|
10364
|
+
};
|
|
10365
|
+
limit?: number;
|
|
10366
|
+
orderBy?: AnalyticsStatsOrderBy;
|
|
10367
|
+
}
|
|
10368
|
+
/** One metric result returned for a bucket in a governed period comparison. */
|
|
10369
|
+
interface PraxisAnalyticsComparisonMetricValue {
|
|
10370
|
+
current: number | null;
|
|
10371
|
+
previous: number | null;
|
|
10372
|
+
delta: number | null;
|
|
10373
|
+
deltaPercent: number | null;
|
|
10374
|
+
baselineMissing: boolean;
|
|
10375
|
+
}
|
|
10376
|
+
/** A resolved, inclusive period returned by the comparison endpoint. */
|
|
10377
|
+
interface PraxisAnalyticsComparisonPeriodWindow {
|
|
10378
|
+
from: string;
|
|
10379
|
+
to: string;
|
|
10380
|
+
timezone: string;
|
|
10381
|
+
}
|
|
10382
|
+
/** Stable bucket identities emitted by the Praxis stats contract. */
|
|
10383
|
+
type PraxisAnalyticsComparisonBucketKey = string | number | boolean | null;
|
|
10384
|
+
/** A unioned bucket from the canonical comparison response. */
|
|
10385
|
+
interface PraxisAnalyticsComparisonBucket {
|
|
10386
|
+
key: PraxisAnalyticsComparisonBucketKey;
|
|
10387
|
+
label: string | null;
|
|
10388
|
+
values: Record<string, PraxisAnalyticsComparisonMetricValue | null>;
|
|
10389
|
+
}
|
|
10390
|
+
/** Canonical response from POST /{resource}/stats/comparison. */
|
|
10391
|
+
interface PraxisAnalyticsComparisonStatsResponse {
|
|
10392
|
+
field: string;
|
|
10393
|
+
periodField: string;
|
|
10394
|
+
metrics: PraxisAnalyticsStatsMetricRequest[];
|
|
10395
|
+
currentPeriod: PraxisAnalyticsComparisonPeriodWindow;
|
|
10396
|
+
previousPeriod: PraxisAnalyticsComparisonPeriodWindow;
|
|
10397
|
+
buckets: PraxisAnalyticsComparisonBucket[];
|
|
10398
|
+
}
|
|
10399
|
+
type PraxisAnalyticsStatsRequest = PraxisAnalyticsGroupByStatsRequest | PraxisAnalyticsTimeSeriesStatsRequest | PraxisAnalyticsDistributionStatsRequest | PraxisAnalyticsComparisonStatsRequest;
|
|
9507
10400
|
interface PraxisAnalyticsExecutionMetric {
|
|
9508
10401
|
field: string;
|
|
9509
10402
|
aggregation?: string;
|
|
@@ -9559,6 +10452,7 @@ declare class AnalyticsStatsRequestBuilderService {
|
|
|
9559
10452
|
buildExecutionPlan(projection: PraxisAnalyticsProjection): PraxisAnalyticsStatsExecutionPlan;
|
|
9560
10453
|
private buildStatsRequest;
|
|
9561
10454
|
private buildStatsMetric;
|
|
10455
|
+
private assertComparisonMetrics;
|
|
9562
10456
|
private mapAggregationToBackend;
|
|
9563
10457
|
private mapOrderBy;
|
|
9564
10458
|
private mapGranularityToBackend;
|
|
@@ -9795,12 +10689,33 @@ interface ObservabilityAlertRule {
|
|
|
9795
10689
|
threshold: number;
|
|
9796
10690
|
windowMs: number;
|
|
9797
10691
|
groupBy: ObservabilityAlertGroupBy;
|
|
10692
|
+
matchContext?: {
|
|
10693
|
+
lib?: string;
|
|
10694
|
+
component?: string;
|
|
10695
|
+
actionId?: string;
|
|
10696
|
+
};
|
|
9798
10697
|
throttleMs?: number;
|
|
9799
10698
|
}
|
|
9800
10699
|
interface ObservabilityCountBucket {
|
|
9801
10700
|
key: string;
|
|
9802
10701
|
count: number;
|
|
9803
10702
|
}
|
|
10703
|
+
interface ObservabilityAgenticTurnMetricBucket {
|
|
10704
|
+
key: string;
|
|
10705
|
+
started: number;
|
|
10706
|
+
completed: number;
|
|
10707
|
+
succeeded: number;
|
|
10708
|
+
timedOut: number;
|
|
10709
|
+
successRate: number;
|
|
10710
|
+
timeoutRate: number;
|
|
10711
|
+
averageDurationMs: number;
|
|
10712
|
+
p50DurationMs: number;
|
|
10713
|
+
p95DurationMs: number;
|
|
10714
|
+
}
|
|
10715
|
+
interface ObservabilityAgenticTurnMetrics extends Omit<ObservabilityAgenticTurnMetricBucket, 'key'> {
|
|
10716
|
+
byProvider: ReadonlyArray<ObservabilityAgenticTurnMetricBucket>;
|
|
10717
|
+
byModel: ReadonlyArray<ObservabilityAgenticTurnMetricBucket>;
|
|
10718
|
+
}
|
|
9804
10719
|
interface ObservabilityMetricsSnapshot {
|
|
9805
10720
|
generatedAt: string;
|
|
9806
10721
|
windowMs: number;
|
|
@@ -9809,6 +10724,7 @@ interface ObservabilityMetricsSnapshot {
|
|
|
9809
10724
|
byLib: ReadonlyArray<ObservabilityCountBucket>;
|
|
9810
10725
|
byComponent: ReadonlyArray<ObservabilityCountBucket>;
|
|
9811
10726
|
topActionIds: ReadonlyArray<ObservabilityCountBucket>;
|
|
10727
|
+
agenticTurns: ObservabilityAgenticTurnMetrics;
|
|
9812
10728
|
}
|
|
9813
10729
|
interface ObservabilityAlert {
|
|
9814
10730
|
severity: ObservabilityAlertSeverity;
|
|
@@ -9868,10 +10784,17 @@ declare class ObservabilityDashboardService {
|
|
|
9868
10784
|
getRecentAlerts(limit?: number): ReadonlyArray<ObservabilityAlert>;
|
|
9869
10785
|
clear(): void;
|
|
9870
10786
|
private evaluateAlerts;
|
|
10787
|
+
private matchesRuleContext;
|
|
9871
10788
|
private buildAlertContext;
|
|
9872
10789
|
private groupRecordsByRule;
|
|
9873
10790
|
private trimRecords;
|
|
9874
10791
|
private buildSnapshot;
|
|
10792
|
+
private buildAgenticTurnMetrics;
|
|
10793
|
+
private groupAgenticTurns;
|
|
10794
|
+
private summarizeAgenticTurns;
|
|
10795
|
+
private percentile;
|
|
10796
|
+
private agenticTurnData;
|
|
10797
|
+
private emptyAgenticTurnMetrics;
|
|
9875
10798
|
private incrementCounter;
|
|
9876
10799
|
private toSortedBuckets;
|
|
9877
10800
|
private normalizePayload;
|
|
@@ -9947,6 +10870,37 @@ declare const PRAXIS_LAYER_SCALE_VARS: {
|
|
|
9947
10870
|
};
|
|
9948
10871
|
declare function buildPraxisLayerScaleCss(scale?: PraxisLayerScale): string;
|
|
9949
10872
|
|
|
10873
|
+
/**
|
|
10874
|
+
* Host-themeable semantic surfaces shared by Praxis runtimes.
|
|
10875
|
+
*
|
|
10876
|
+
* These variables deliberately describe product roles rather than Material
|
|
10877
|
+
* implementation details. A host may override them without targeting MDC DOM.
|
|
10878
|
+
*/
|
|
10879
|
+
interface PraxisThemeSurfaceTokens {
|
|
10880
|
+
surface: string;
|
|
10881
|
+
surfaceRaised: string;
|
|
10882
|
+
surfaceOverlay: string;
|
|
10883
|
+
onSurface: string;
|
|
10884
|
+
onSurfaceMuted: string;
|
|
10885
|
+
outline: string;
|
|
10886
|
+
outlineStrong: string;
|
|
10887
|
+
focusOutline: string;
|
|
10888
|
+
elevation: string;
|
|
10889
|
+
}
|
|
10890
|
+
declare const PRAXIS_THEME_SURFACE_DEFAULTS: PraxisThemeSurfaceTokens;
|
|
10891
|
+
declare const PRAXIS_THEME_SURFACE_VARS: {
|
|
10892
|
+
readonly surface: "--praxis-theme-surface";
|
|
10893
|
+
readonly surfaceRaised: "--praxis-theme-surface-raised";
|
|
10894
|
+
readonly surfaceOverlay: "--praxis-theme-surface-overlay";
|
|
10895
|
+
readonly onSurface: "--praxis-theme-on-surface";
|
|
10896
|
+
readonly onSurfaceMuted: "--praxis-theme-on-surface-muted";
|
|
10897
|
+
readonly outline: "--praxis-theme-outline";
|
|
10898
|
+
readonly outlineStrong: "--praxis-theme-outline-strong";
|
|
10899
|
+
readonly focusOutline: "--praxis-theme-focus-outline";
|
|
10900
|
+
readonly elevation: "--praxis-theme-elevation";
|
|
10901
|
+
};
|
|
10902
|
+
declare function buildPraxisThemeSurfaceCss(tokens?: Partial<PraxisThemeSurfaceTokens>): string;
|
|
10903
|
+
|
|
9950
10904
|
declare const GLOBAL_CONFIG: InjectionToken<Partial<GlobalConfig>>;
|
|
9951
10905
|
interface PraxisAuthContext {
|
|
9952
10906
|
ready?: () => Promise<void>;
|
|
@@ -9982,6 +10936,62 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
|
|
|
9982
10936
|
declare function provideRemoteGlobalConfig(url: string): Provider;
|
|
9983
10937
|
declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
|
|
9984
10938
|
|
|
10939
|
+
interface PraxisEnterpriseRuntimeEndpoints {
|
|
10940
|
+
/**
|
|
10941
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10942
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10943
|
+
*/
|
|
10944
|
+
context?: string;
|
|
10945
|
+
/**
|
|
10946
|
+
* Absolute or relative endpoint for the host-owned tenant catalog.
|
|
10947
|
+
* Defaults to the same runtime root as `context`, ending in `/tenants`.
|
|
10948
|
+
*/
|
|
10949
|
+
tenants?: string;
|
|
10950
|
+
/**
|
|
10951
|
+
* Absolute or relative endpoint for host-owned navigation.
|
|
10952
|
+
* Defaults to the same runtime root as `context`, ending in `/navigation`.
|
|
10953
|
+
*/
|
|
10954
|
+
navigation?: string;
|
|
10955
|
+
/**
|
|
10956
|
+
* Absolute or relative endpoint for host-owned security events.
|
|
10957
|
+
* Defaults to the same runtime root as `context`, ending in `/security-events`.
|
|
10958
|
+
*/
|
|
10959
|
+
securityEvents?: string;
|
|
10960
|
+
}
|
|
10961
|
+
interface PraxisEnterpriseRuntimeContextOptions {
|
|
10962
|
+
/**
|
|
10963
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10964
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10965
|
+
* Prefer `endpoints.context` for new integrations.
|
|
10966
|
+
*/
|
|
10967
|
+
endpoint?: string;
|
|
10968
|
+
/**
|
|
10969
|
+
* Host-owned enterprise runtime surfaces. When omitted, URLs are derived from
|
|
10970
|
+
* the configured `endpoint` or from the canonical `/praxis/runtime` root.
|
|
10971
|
+
*/
|
|
10972
|
+
endpoints?: PraxisEnterpriseRuntimeEndpoints;
|
|
10973
|
+
/**
|
|
10974
|
+
* Headers used to resolve the context request. The response remains the source
|
|
10975
|
+
* of truth for tenant/user/environment headers after bootstrap.
|
|
10976
|
+
*/
|
|
10977
|
+
headersFactory?: () => Record<string, string | undefined>;
|
|
10978
|
+
/**
|
|
10979
|
+
* Include `globalThis.PAX_FETCH_HEADERS()` in the request headers when present.
|
|
10980
|
+
*/
|
|
10981
|
+
includeGlobalFetchHeaders?: boolean;
|
|
10982
|
+
/**
|
|
10983
|
+
* Block Angular bootstrap until the context has been resolved.
|
|
10984
|
+
*/
|
|
10985
|
+
blocking?: boolean;
|
|
10986
|
+
/**
|
|
10987
|
+
* Whether bootstrap should fail when the runtime context request fails.
|
|
10988
|
+
*/
|
|
10989
|
+
errorPolicy?: 'fail' | 'ignore';
|
|
10990
|
+
}
|
|
10991
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS: InjectionToken<PraxisEnterpriseRuntimeContextOptions>;
|
|
10992
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY: InjectionToken<() => Promise<void>>;
|
|
10993
|
+
declare function providePraxisEnterpriseRuntimeContext(options?: PraxisEnterpriseRuntimeContextOptions): Provider[];
|
|
10994
|
+
|
|
9985
10995
|
declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
|
|
9986
10996
|
declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
|
|
9987
10997
|
|
|
@@ -10143,6 +11153,26 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
|
10143
11153
|
|
|
10144
11154
|
declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
10145
11155
|
|
|
11156
|
+
interface TableDetailInlineRendererContext {
|
|
11157
|
+
node: TableDetailRefNode;
|
|
11158
|
+
row: unknown;
|
|
11159
|
+
rowIndex: number;
|
|
11160
|
+
detailContext?: Record<string, unknown>;
|
|
11161
|
+
}
|
|
11162
|
+
interface TableDetailInlineRendererDefinition {
|
|
11163
|
+
nodeType: TableDetailRefNode['type'];
|
|
11164
|
+
renderMode: 'inline';
|
|
11165
|
+
component: Type<unknown>;
|
|
11166
|
+
buildInputs: (context: TableDetailInlineRendererContext) => Record<string, unknown> | null;
|
|
11167
|
+
}
|
|
11168
|
+
interface TableDetailInlineNodeResolverDefinition {
|
|
11169
|
+
nodeType: TableDetailRefNode['type'];
|
|
11170
|
+
renderMode: 'inline';
|
|
11171
|
+
resolveNode: (context: TableDetailInlineRendererContext) => TableDetailRefNode | null;
|
|
11172
|
+
}
|
|
11173
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_RENDERERS: InjectionToken<readonly TableDetailInlineRendererDefinition[]>;
|
|
11174
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS: InjectionToken<readonly TableDetailInlineNodeResolverDefinition[]>;
|
|
11175
|
+
|
|
10146
11176
|
declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
|
|
10147
11177
|
|
|
10148
11178
|
declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
|
|
@@ -10152,6 +11182,9 @@ declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLo
|
|
|
10152
11182
|
declare function interpolatePraxisTranslation(template: string, params?: PraxisTranslationParams): string;
|
|
10153
11183
|
declare function mergePraxisI18nConfigs(...configs: Array<Partial<PraxisI18nConfig> | null | undefined>): PraxisI18nConfig;
|
|
10154
11184
|
|
|
11185
|
+
declare const COMPONENT_METADATA_REGISTRY_I18N_NAMESPACE = "componentMetadataRegistry";
|
|
11186
|
+
declare const COMPONENT_METADATA_REGISTRY_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
11187
|
+
|
|
10155
11188
|
declare const RESOURCE_DISCOVERY_I18N_NAMESPACE = "resourceDiscovery";
|
|
10156
11189
|
declare const RESOURCE_DISCOVERY_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
10157
11190
|
declare function normalizeResourceAvailabilityReasonCode(reason: string | null | undefined): string;
|
|
@@ -10778,7 +11811,7 @@ interface EditorialFormTemplateBuildOptions {
|
|
|
10778
11811
|
* - collections are replaced, not concatenated, unless omitted in overrides
|
|
10779
11812
|
* - template provenance is recorded under config.metadata.template
|
|
10780
11813
|
*/
|
|
10781
|
-
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions):
|
|
11814
|
+
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfigWithSections;
|
|
10782
11815
|
|
|
10783
11816
|
interface FormFieldLayoutItem {
|
|
10784
11817
|
kind: 'field';
|
|
@@ -10861,6 +11894,10 @@ interface FormRow {
|
|
|
10861
11894
|
interface FormSection {
|
|
10862
11895
|
id: string;
|
|
10863
11896
|
title?: string;
|
|
11897
|
+
/** Optional host/runtime CSS classes applied to the section container. */
|
|
11898
|
+
className?: string;
|
|
11899
|
+
/** Optional semantic presentation role used by compact/read-only layouts. */
|
|
11900
|
+
presentationRole?: string;
|
|
10864
11901
|
/** Visual appearance preset for the section container/header. */
|
|
10865
11902
|
appearance?: 'card' | 'plain' | 'step';
|
|
10866
11903
|
/** Optional compact step badge/kicker displayed before the title. */
|
|
@@ -10982,9 +12019,27 @@ interface FormSectionHeaderConfig {
|
|
|
10982
12019
|
*/
|
|
10983
12020
|
initialsMaxLength?: number;
|
|
10984
12021
|
}
|
|
12022
|
+
/**
|
|
12023
|
+
* Presentation preferences applied when a dynamic form renders semantic values
|
|
12024
|
+
* instead of editable controls.
|
|
12025
|
+
*/
|
|
12026
|
+
interface FormPresentationConfig {
|
|
12027
|
+
labelPosition?: 'above' | 'left';
|
|
12028
|
+
labelFontSize?: number | null;
|
|
12029
|
+
valueFontSize?: number | null;
|
|
12030
|
+
compact?: boolean;
|
|
12031
|
+
density?: 'comfortable' | 'cozy' | 'compact';
|
|
12032
|
+
labelWidth?: number | null;
|
|
12033
|
+
labelAlign?: 'start' | 'center' | 'end';
|
|
12034
|
+
valueAlign?: 'start' | 'center' | 'end';
|
|
12035
|
+
}
|
|
10985
12036
|
interface FormConfig {
|
|
10986
|
-
/**
|
|
10987
|
-
|
|
12037
|
+
/**
|
|
12038
|
+
* Optional manual layout sections.
|
|
12039
|
+
* When omitted, schema-driven runtimes may infer sections from field metadata
|
|
12040
|
+
* instead of forcing hosts to declare an empty manual layout.
|
|
12041
|
+
*/
|
|
12042
|
+
sections?: FormSection[];
|
|
10988
12043
|
/** Editorial or semantic rich content rendered before the form sections/actions. */
|
|
10989
12044
|
formBlocksBefore?: RichContentDocument | null;
|
|
10990
12045
|
/** Editorial or semantic rich content rendered after the form sections and before the primary action area. */
|
|
@@ -11023,7 +12078,18 @@ interface FormConfig {
|
|
|
11023
12078
|
* Útil para padronizar mensagens didáticas no host.
|
|
11024
12079
|
*/
|
|
11025
12080
|
hints?: FormModeHints;
|
|
12081
|
+
/**
|
|
12082
|
+
* Presentation policy for semantic field help (`hint`/`helpText`).
|
|
12083
|
+
* This controls visual density only; validation errors remain inline.
|
|
12084
|
+
*/
|
|
12085
|
+
helpPresentation?: FormHelpPresentationConfig;
|
|
12086
|
+
/** Presentation preferences for read-only and presentation-mode forms. */
|
|
12087
|
+
presentation?: FormPresentationConfig;
|
|
12088
|
+
}
|
|
12089
|
+
interface FormConfigWithSections extends FormConfig {
|
|
12090
|
+
sections: FormSection[];
|
|
11026
12091
|
}
|
|
12092
|
+
declare function withFormConfigSections(config: FormConfig): FormConfigWithSections;
|
|
11027
12093
|
interface FormModeHints {
|
|
11028
12094
|
dataModes: {
|
|
11029
12095
|
create: string;
|
|
@@ -11043,12 +12109,51 @@ interface FormConfigMetadata {
|
|
|
11043
12109
|
/** Last update timestamp */
|
|
11044
12110
|
lastUpdated?: Date;
|
|
11045
12111
|
/** Configuration source */
|
|
11046
|
-
source?: 'local' | 'server' | 'default';
|
|
12112
|
+
source?: 'local' | 'server' | 'default' | 'schema';
|
|
12113
|
+
/**
|
|
12114
|
+
* Layout preset used when this configuration was generated from metadata/schema.
|
|
12115
|
+
* This is provenance for generated configs; it must not be interpreted as a
|
|
12116
|
+
* command to reprocess authored or persisted layouts.
|
|
12117
|
+
*/
|
|
12118
|
+
generatedLayoutPreset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
12119
|
+
/** Runtime policy used to materialize schema-driven layout, when applicable. */
|
|
12120
|
+
schemaLayoutPolicy?: {
|
|
12121
|
+
source: 'authored' | 'schema';
|
|
12122
|
+
preset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
12123
|
+
intent?: 'detail' | 'command';
|
|
12124
|
+
lifecycle?: 'initial' | 'live';
|
|
12125
|
+
persistence?: 'transient' | 'authorable';
|
|
12126
|
+
detachBehavior?: 'none' | 'explicit';
|
|
12127
|
+
schemaOperation?: 'detail' | 'create' | 'update' | 'view';
|
|
12128
|
+
schemaType?: 'request' | 'response';
|
|
12129
|
+
detailSummary?: {
|
|
12130
|
+
includeFields?: readonly string[];
|
|
12131
|
+
excludeFields?: readonly string[];
|
|
12132
|
+
includeGroups?: readonly string[];
|
|
12133
|
+
excludeGroups?: readonly string[];
|
|
12134
|
+
includeRoles?: readonly string[];
|
|
12135
|
+
excludeRoles?: readonly string[];
|
|
12136
|
+
maxFields?: number;
|
|
12137
|
+
fieldPriority?: Record<string, number>;
|
|
12138
|
+
groupPriority?: Record<string, number>;
|
|
12139
|
+
columns?: number;
|
|
12140
|
+
responsiveColumns?: Partial<Record<'xs' | 'sm' | 'md' | 'lg' | 'xl', number>>;
|
|
12141
|
+
widthPrecedence?: 'schema' | 'summary';
|
|
12142
|
+
};
|
|
12143
|
+
};
|
|
11047
12144
|
/** Server data hash for change detection */
|
|
11048
12145
|
serverHash?: string;
|
|
12146
|
+
/**
|
|
12147
|
+
* Host-resolved security authorities used only for fieldAccess UX
|
|
12148
|
+
* materialization. Do not populate this from runtime capabilities unless the
|
|
12149
|
+
* host/backend explicitly declares that both vocabularies are shared.
|
|
12150
|
+
*/
|
|
12151
|
+
fieldAccessAuthorities?: string[];
|
|
11049
12152
|
/**
|
|
11050
12153
|
* Server schema identity used to build this configuration.
|
|
11051
|
-
* Format comes from buildSchemaId(path|operation|schemaType|internal|
|
|
12154
|
+
* Format comes from buildSchemaId(path|operation|schemaType|internal|idField|readOnly|origin).
|
|
12155
|
+
* tenant/locale remain request boundary context and do not vary structural identity
|
|
12156
|
+
* unless the backend contract starts varying the schema payload for them.
|
|
11052
12157
|
*/
|
|
11053
12158
|
schemaId?: string;
|
|
11054
12159
|
/**
|
|
@@ -11233,7 +12338,7 @@ interface FormActionConfirmationEvent {
|
|
|
11233
12338
|
confirmed: boolean;
|
|
11234
12339
|
}
|
|
11235
12340
|
|
|
11236
|
-
type RulePropertyType = 'string' | 'boolean' | 'object' | 'enum' | 'number';
|
|
12341
|
+
type RulePropertyType = 'string' | 'boolean' | 'object' | 'array' | 'enum' | 'number';
|
|
11237
12342
|
interface RulePropertyDefinition {
|
|
11238
12343
|
name: string;
|
|
11239
12344
|
type: RulePropertyType;
|
|
@@ -12173,6 +13278,35 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
|
|
|
12173
13278
|
status?: PersistedPageConfig['status'];
|
|
12174
13279
|
}): PersistedPageConfig;
|
|
12175
13280
|
|
|
13281
|
+
type PraxisResourceEventKind = 'row-click' | 'row-double-click' | 'selection-change' | 'row-action' | 'toolbar-action' | 'bulk-action' | 'export-action' | 'surface-open' | 'widget-event' | 'custom';
|
|
13282
|
+
interface PraxisResourceEvent<TPayload = unknown> {
|
|
13283
|
+
/** Canonical resource-level intent represented by the original component output. */
|
|
13284
|
+
kind: PraxisResourceEventKind;
|
|
13285
|
+
/** Component selector/id that originated the event, such as praxis-table. */
|
|
13286
|
+
sourceComponentId: string;
|
|
13287
|
+
/** Legacy/public output that produced this envelope, such as rowClick or toolbarAction. */
|
|
13288
|
+
sourceOutput?: string;
|
|
13289
|
+
/** Lifecycle phase for enterprise orchestration, analytics, auditing, and feedback. */
|
|
13290
|
+
phase?: 'request' | 'success' | 'error' | 'notification';
|
|
13291
|
+
resourcePath?: string | null;
|
|
13292
|
+
resourceKey?: string | null;
|
|
13293
|
+
resourceId?: string | number | null;
|
|
13294
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
13295
|
+
payload: TPayload;
|
|
13296
|
+
context?: Record<string, unknown> | null;
|
|
13297
|
+
}
|
|
13298
|
+
interface PraxisResourceRowClickPayload<TRow = unknown> {
|
|
13299
|
+
row: TRow;
|
|
13300
|
+
index: number;
|
|
13301
|
+
}
|
|
13302
|
+
interface PraxisResourceSelectionPayload<TRow = unknown> {
|
|
13303
|
+
trigger: string;
|
|
13304
|
+
row?: TRow;
|
|
13305
|
+
selectedRows: TRow[];
|
|
13306
|
+
selectedCount: number;
|
|
13307
|
+
tableId?: string;
|
|
13308
|
+
}
|
|
13309
|
+
|
|
12176
13310
|
type RecordRelatedSurfaceOperationId = 'dynamicPage.surface.discover' | 'dynamicPage.surface.open' | 'dynamicPage.surface.query';
|
|
12177
13311
|
interface RecordRelatedSurfaceEndpoint {
|
|
12178
13312
|
widget: string;
|
|
@@ -12478,6 +13612,51 @@ declare function mapFieldDefinitionToMetadata(field: FieldDefinition): FieldMeta
|
|
|
12478
13612
|
*/
|
|
12479
13613
|
declare function mapFieldDefinitionsToMetadata(fields: FieldDefinition[]): FieldMetadata[];
|
|
12480
13614
|
|
|
13615
|
+
type DynamicFormLayoutSource = 'authored' | 'schema';
|
|
13616
|
+
type DynamicFormSchemaLayoutPreset = 'default' | 'compactPresentation' | 'groupedCommand';
|
|
13617
|
+
type DynamicFormLayoutIntent = 'detail' | 'command';
|
|
13618
|
+
type DynamicFormLayoutLifecycle = 'initial' | 'live';
|
|
13619
|
+
type DynamicFormLayoutPersistence = 'transient' | 'authorable';
|
|
13620
|
+
type DynamicFormLayoutDetachBehavior = 'none' | 'explicit';
|
|
13621
|
+
type DynamicFormSchemaOperation = 'detail' | 'create' | 'update' | 'view';
|
|
13622
|
+
type DynamicFormSchemaType = 'request' | 'response';
|
|
13623
|
+
type DynamicFormResponsiveBreakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
13624
|
+
type DynamicFormResponsiveColumns = Partial<Record<DynamicFormResponsiveBreakpoint, number>>;
|
|
13625
|
+
type DynamicFormDetailSummaryWidthPrecedence = 'schema' | 'summary';
|
|
13626
|
+
interface DynamicFormDetailSummaryPolicy {
|
|
13627
|
+
includeFields?: readonly string[];
|
|
13628
|
+
excludeFields?: readonly string[];
|
|
13629
|
+
includeGroups?: readonly string[];
|
|
13630
|
+
excludeGroups?: readonly string[];
|
|
13631
|
+
includeRoles?: readonly string[];
|
|
13632
|
+
excludeRoles?: readonly string[];
|
|
13633
|
+
maxFields?: number;
|
|
13634
|
+
fieldPriority?: Record<string, number>;
|
|
13635
|
+
groupPriority?: Record<string, number>;
|
|
13636
|
+
columns?: number;
|
|
13637
|
+
responsiveColumns?: DynamicFormResponsiveColumns;
|
|
13638
|
+
widthPrecedence?: DynamicFormDetailSummaryWidthPrecedence;
|
|
13639
|
+
}
|
|
13640
|
+
interface DynamicFormLayoutPolicy {
|
|
13641
|
+
source: DynamicFormLayoutSource;
|
|
13642
|
+
preset?: DynamicFormSchemaLayoutPreset;
|
|
13643
|
+
intent?: DynamicFormLayoutIntent;
|
|
13644
|
+
lifecycle?: DynamicFormLayoutLifecycle;
|
|
13645
|
+
persistence?: DynamicFormLayoutPersistence;
|
|
13646
|
+
detachBehavior?: DynamicFormLayoutDetachBehavior;
|
|
13647
|
+
schemaOperation?: DynamicFormSchemaOperation;
|
|
13648
|
+
schemaType?: DynamicFormSchemaType;
|
|
13649
|
+
detailSummary?: DynamicFormDetailSummaryPolicy;
|
|
13650
|
+
}
|
|
13651
|
+
interface MaterializeFormLayoutOptions {
|
|
13652
|
+
policy?: DynamicFormLayoutPolicy | null;
|
|
13653
|
+
defaultSectionTitle?: string;
|
|
13654
|
+
presentationRoleMap?: Record<string, string>;
|
|
13655
|
+
includeHidden?: boolean;
|
|
13656
|
+
}
|
|
13657
|
+
declare function materializeFormLayoutFromMetadata(fields: FieldMetadata[], options?: MaterializeFormLayoutOptions): FormConfigWithSections;
|
|
13658
|
+
declare function normalizeLayoutPolicy(policy?: DynamicFormLayoutPolicy | null): Required<Pick<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>> & Omit<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>;
|
|
13659
|
+
|
|
12481
13660
|
/**
|
|
12482
13661
|
* Compose headers including optional API version information.
|
|
12483
13662
|
* If the entry already defines custom headers, they will be preserved.
|
|
@@ -12497,7 +13676,7 @@ type EnsureIdsOptions = {
|
|
|
12497
13676
|
* Garante que todas as sections/rows/columns do FormConfig possuam IDs únicos.
|
|
12498
13677
|
* Retorna um NOVO objeto (sem mutar o original).
|
|
12499
13678
|
*/
|
|
12500
|
-
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions):
|
|
13679
|
+
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions): FormConfigWithSections;
|
|
12501
13680
|
|
|
12502
13681
|
declare function resolveSpan(span?: ColumnSpan): Required<ColumnSpan>;
|
|
12503
13682
|
declare function resolveOffset(offset?: ColumnOffset): Required<ColumnOffset>;
|
|
@@ -12561,6 +13740,14 @@ interface ResolvePresetOptions {
|
|
|
12561
13740
|
minDate?: Date | null;
|
|
12562
13741
|
maxDate?: Date | null;
|
|
12563
13742
|
}
|
|
13743
|
+
interface StaticPresetResolutionOptions extends ResolvePresetOptions {
|
|
13744
|
+
referenceDate?: Date;
|
|
13745
|
+
}
|
|
13746
|
+
declare function isProgrammaticDateRangePreset(value: unknown): value is DateRangePreset;
|
|
13747
|
+
declare function isStaticDateRangePreset(value: unknown): value is StaticDateRangePreset;
|
|
13748
|
+
declare function staticDateRangePresetToPreset(preset: StaticDateRangePreset, opts?: StaticPresetResolutionOptions): DateRangePreset;
|
|
13749
|
+
declare function resolveDateRangeShortcutPreset(shortcut: DateRangeShortcutPreset, builtins: Record<string, DateRangePreset>, opts?: StaticPresetResolutionOptions): DateRangePreset | null;
|
|
13750
|
+
declare function resolveDateRangeShortcutPresets(shortcuts: readonly DateRangeShortcutPreset[], builtins: Record<string, DateRangePreset>, opts?: StaticPresetResolutionOptions): DateRangePreset[];
|
|
12564
13751
|
/** Normalize a date to start of day (00:00:00.000) respecting timezone if provided. */
|
|
12565
13752
|
declare function normalizeStart(date: Date, timezone?: string): Date;
|
|
12566
13753
|
/** Normalize a date to end of day (23:59:59.999) respecting timezone if provided. */
|
|
@@ -12835,7 +14022,7 @@ interface ComponentAuthoringManifest {
|
|
|
12835
14022
|
examples: ManifestExample[];
|
|
12836
14023
|
/**
|
|
12837
14024
|
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
12838
|
-
* base, mas precisam expor
|
|
14025
|
+
* base, mas precisam expor semântica granular por componente/controlType.
|
|
12839
14026
|
*/
|
|
12840
14027
|
controlProfiles?: ManifestControlProfile[];
|
|
12841
14028
|
}
|
|
@@ -12994,13 +14181,13 @@ interface ManifestControlProfile {
|
|
|
12994
14181
|
profileId: string;
|
|
12995
14182
|
/** Nome curto usado por ferramentas de authoring. */
|
|
12996
14183
|
title: string;
|
|
12997
|
-
/** Explica a
|
|
14184
|
+
/** Explica a semântica que este perfil adiciona sobre o manifesto base. */
|
|
12998
14185
|
description: string;
|
|
12999
14186
|
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
13000
14187
|
appliesTo: ManifestControlProfileApplicability;
|
|
13001
14188
|
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
13002
14189
|
editableTargets?: ManifestTarget[];
|
|
13003
|
-
/**
|
|
14190
|
+
/** Operações específicas do perfil/controlType. */
|
|
13004
14191
|
operations: ManifestOperation[];
|
|
13005
14192
|
/** Validadores especificos do perfil/controlType. */
|
|
13006
14193
|
validators: ManifestValidator[];
|
|
@@ -13064,7 +14251,7 @@ interface CapabilityCatalog extends AiCapabilityCatalog {
|
|
|
13064
14251
|
}
|
|
13065
14252
|
declare const DYNAMIC_PAGE_AI_CAPABILITIES: CapabilityCatalog;
|
|
13066
14253
|
|
|
13067
|
-
type ComponentContextOptionMode = 'enum' | 'suggested';
|
|
14254
|
+
type ComponentContextOptionMode = 'enum' | 'suggested' | 'expression';
|
|
13068
14255
|
interface ComponentContextOption {
|
|
13069
14256
|
value: string | number;
|
|
13070
14257
|
label?: string;
|
|
@@ -13073,6 +14260,7 @@ interface ComponentContextOption {
|
|
|
13073
14260
|
interface ComponentContextOptionsByPathEntry {
|
|
13074
14261
|
mode: ComponentContextOptionMode;
|
|
13075
14262
|
options: ComponentContextOption[];
|
|
14263
|
+
suggestedRoots?: string[];
|
|
13076
14264
|
}
|
|
13077
14265
|
interface ComponentActionParam {
|
|
13078
14266
|
name: string;
|
|
@@ -13161,6 +14349,7 @@ interface WidgetEventEnvelope {
|
|
|
13161
14349
|
output?: string;
|
|
13162
14350
|
payload?: any;
|
|
13163
14351
|
path?: WidgetEventPathSegment[];
|
|
14352
|
+
resourceEvent?: PraxisResourceEvent;
|
|
13164
14353
|
}
|
|
13165
14354
|
type WidgetResolutionPhase = 'ready' | 'metadata-missing' | 'create-error' | 'validation-error' | 'bind-error';
|
|
13166
14355
|
interface WidgetResolutionDiagnostic {
|
|
@@ -13462,6 +14651,8 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
13462
14651
|
private orderedInputEntries;
|
|
13463
14652
|
private resolveAndCoerceValue;
|
|
13464
14653
|
private withInferredIdentityInputs;
|
|
14654
|
+
private areInputValuesEquivalent;
|
|
14655
|
+
private areJsonLikeInputsEqual;
|
|
13465
14656
|
private normalizeMaterializedRuntimeInputs;
|
|
13466
14657
|
private inferResourcePathFromSchemaUrl;
|
|
13467
14658
|
private bindOutputs;
|
|
@@ -13527,6 +14718,19 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
13527
14718
|
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetShellComponent, "praxis-widget-shell", never, { "shell": { "alias": "shell"; "required": false; }; "context": { "alias": "context"; "required": false; }; "dragSurfaceEnabled": { "alias": "dragSurfaceEnabled"; "required": false; }; "dragSurfaceLabel": { "alias": "dragSurfaceLabel"; "required": false; }; }, { "action": "action"; "dragSurfacePointerDown": "dragSurfacePointerDown"; "dragSurfaceKeydown": "dragSurfaceKeydown"; }, ["loader"], ["*"], true, never>;
|
|
13528
14719
|
}
|
|
13529
14720
|
|
|
14721
|
+
declare class PraxisResourceIdentityComponent {
|
|
14722
|
+
identity: MaterializedResourceIdentity | null;
|
|
14723
|
+
emptyTitle: string;
|
|
14724
|
+
density: 'compact' | 'comfortable';
|
|
14725
|
+
showMetadataLabels: boolean;
|
|
14726
|
+
protected title(): string;
|
|
14727
|
+
protected prefix(item: ResourceIdentityPart): string;
|
|
14728
|
+
protected suffix(item: ResourceIdentityPart): string;
|
|
14729
|
+
protected isChip(item: ResourceIdentityPart): boolean;
|
|
14730
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisResourceIdentityComponent, never>;
|
|
14731
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisResourceIdentityComponent, "praxis-resource-identity", never, { "identity": { "alias": "identity"; "required": false; }; "emptyTitle": { "alias": "emptyTitle"; "required": false; }; "density": { "alias": "density"; "required": false; }; "showMetadataLabels": { "alias": "showMetadataLabels"; "required": false; }; }, {}, never, never, true, never>;
|
|
14732
|
+
}
|
|
14733
|
+
|
|
13530
14734
|
declare const BUILTIN_PAGE_LAYOUT_PRESETS: Record<string, WidgetPageLayoutPresetDefinition>;
|
|
13531
14735
|
declare const BUILTIN_PAGE_THEME_PRESETS: Record<string, WidgetPageThemePresetDefinition>;
|
|
13532
14736
|
|
|
@@ -13646,6 +14850,7 @@ declare class CompositionValidatorService {
|
|
|
13646
14850
|
private readonly nestedPortCatalog;
|
|
13647
14851
|
private readonly jsonLogic;
|
|
13648
14852
|
constructor(nestedPortCatalog?: NestedPortCatalogService, jsonLogic?: PraxisJsonLogicService);
|
|
14853
|
+
validateLinks(links: SemanticCompositionLink[], context?: CompositionValidatorContext): DiagnosticRecord[];
|
|
13649
14854
|
validateLink(link: SemanticCompositionLink, context?: CompositionValidatorContext): DiagnosticRecord[];
|
|
13650
14855
|
private validateEndpointDirections;
|
|
13651
14856
|
private validateBindingPathBridge;
|
|
@@ -13658,6 +14863,12 @@ declare class CompositionValidatorService {
|
|
|
13658
14863
|
private validateCondition;
|
|
13659
14864
|
private validateTransformCatalog;
|
|
13660
14865
|
private validateSemanticCompatibility;
|
|
14866
|
+
private validateFeedbackCycles;
|
|
14867
|
+
private findFeedbackPath;
|
|
14868
|
+
private stableUniqueLinkIds;
|
|
14869
|
+
private feedbackNodeKey;
|
|
14870
|
+
private isIntentionalGuardedFeedback;
|
|
14871
|
+
private createFeedbackCycleDiagnostic;
|
|
13661
14872
|
private endpointSemanticKind;
|
|
13662
14873
|
private areSemanticKindsCompatible;
|
|
13663
14874
|
private areKindsDirectlyCompatible;
|
|
@@ -13857,6 +15068,7 @@ declare class CompositionRuntimeEngine {
|
|
|
13857
15068
|
private extractDerivedNodeKey;
|
|
13858
15069
|
private appendDiagnosticTraceEntries;
|
|
13859
15070
|
private createNestedWidgetEventBridgeDiagnostics;
|
|
15071
|
+
private createFeedbackCycleBlockedDiagnostics;
|
|
13860
15072
|
}
|
|
13861
15073
|
|
|
13862
15074
|
interface CompositionRuntimeFacadeOptions {
|
|
@@ -13969,6 +15181,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
13969
15181
|
private pageDefinition?;
|
|
13970
15182
|
private pageState;
|
|
13971
15183
|
private pageRuntime;
|
|
15184
|
+
private readonly configEditorContextRequests;
|
|
15185
|
+
private nextConfigEditorContextRequestId;
|
|
13972
15186
|
private layout?;
|
|
13973
15187
|
private canvas?;
|
|
13974
15188
|
private grouping;
|
|
@@ -14010,6 +15224,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14010
15224
|
ngOnDestroy(): void;
|
|
14011
15225
|
ngOnChanges(changes: SimpleChanges): void;
|
|
14012
15226
|
onWidgetEvent(fromKey: string, evt: WidgetEventEnvelope): void;
|
|
15227
|
+
private isTransientOnlyCompositionCycle;
|
|
14013
15228
|
private applyWidgetInputPatchToPage;
|
|
14014
15229
|
private resolveWidgetInputPatchNestedPath;
|
|
14015
15230
|
private extractWidgetInputPatch;
|
|
@@ -14065,6 +15280,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14065
15280
|
private enrichRuntimeWidgetInputs;
|
|
14066
15281
|
private buildRichContentHostCapabilities;
|
|
14067
15282
|
private dispatchRichContentAction;
|
|
15283
|
+
private emitRichContentCustomAction;
|
|
14068
15284
|
private isRichContentActionAvailable;
|
|
14069
15285
|
private hasRichContentCapability;
|
|
14070
15286
|
private resolveComponentBindingPath;
|
|
@@ -14104,7 +15320,9 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14104
15320
|
private resolveTemplate;
|
|
14105
15321
|
private lookup;
|
|
14106
15322
|
openWidgetShellSettings(key: string): void;
|
|
14107
|
-
openWidgetComponentSettings(key: string): void
|
|
15323
|
+
openWidgetComponentSettings(key: string): Promise<void>;
|
|
15324
|
+
private resolveWidgetConfigEditorContext;
|
|
15325
|
+
private isConfigEditorContextResult;
|
|
14108
15326
|
private materializeRuntimeInputsForWidget;
|
|
14109
15327
|
private findWidgetLoader;
|
|
14110
15328
|
private dispatchWidgetComponentSettingsToRuntime;
|
|
@@ -14137,6 +15355,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14137
15355
|
private resolveLayoutPresetDefinition;
|
|
14138
15356
|
private mergeLayout;
|
|
14139
15357
|
private applyResponsivePresentation;
|
|
15358
|
+
private projectPersistentCompositionStateInputs;
|
|
15359
|
+
private projectRuntimeCompositionStateInputs;
|
|
14140
15360
|
private resolveEffectivePresentation;
|
|
14141
15361
|
private resolveDeviceVariant;
|
|
14142
15362
|
private resolveCanvas;
|
|
@@ -14250,6 +15470,9 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14250
15470
|
*/
|
|
14251
15471
|
renderTitleInsideBody: boolean;
|
|
14252
15472
|
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
15473
|
+
rowClick: EventEmitter<unknown>;
|
|
15474
|
+
selectionChange: EventEmitter<unknown>;
|
|
15475
|
+
resourceEvent: EventEmitter<PraxisResourceEvent<unknown>>;
|
|
14253
15476
|
private beforeWidgetLoader?;
|
|
14254
15477
|
private mainWidgetLoader?;
|
|
14255
15478
|
private afterWidgetLoader?;
|
|
@@ -14267,16 +15490,97 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14267
15490
|
private isRichContentActionAvailable;
|
|
14268
15491
|
private hasRichContentCapability;
|
|
14269
15492
|
onSlotWidgetEvent(ownerWidgetKey: string, event: WidgetEventEnvelope): void;
|
|
15493
|
+
private toResourceEvent;
|
|
15494
|
+
private readRecord;
|
|
15495
|
+
private stringOrNull;
|
|
15496
|
+
private resourceIdOrNull;
|
|
15497
|
+
private toResourceSurface;
|
|
14270
15498
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
|
|
14271
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; }, never, never, true, never>;
|
|
15499
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; "rowClick": "rowClick"; "selectionChange": "selectionChange"; "resourceEvent": "resourceEvent"; }, never, never, true, never>;
|
|
14272
15500
|
}
|
|
14273
15501
|
|
|
15502
|
+
type RelatedResourceOutletMode = 'inline' | 'open-action';
|
|
15503
|
+
declare class PraxisRelatedResourceOutletComponent {
|
|
15504
|
+
private readonly resolver;
|
|
15505
|
+
private readonly materializer;
|
|
15506
|
+
private readonly i18n;
|
|
15507
|
+
private readonly injector;
|
|
15508
|
+
private discoverySubscription?;
|
|
15509
|
+
private discoveryRequestKey;
|
|
15510
|
+
private materializationRequestKey;
|
|
15511
|
+
readonly surface: i0.InputSignal<ResourceSurfaceCatalogItem | null>;
|
|
15512
|
+
readonly surfaceId: i0.InputSignal<string | null>;
|
|
15513
|
+
readonly surfaceCatalog: i0.InputSignal<ResourceSurfaceCatalogResponse | null>;
|
|
15514
|
+
readonly discoverySource: i0.InputSignal<ResourceLinkSource | null>;
|
|
15515
|
+
readonly parentLinks: i0.InputSignal<RestApiLinks | RestApiResponse<unknown> | null>;
|
|
15516
|
+
readonly apiEndpointKey: i0.InputSignal<ApiEndpoint | null>;
|
|
15517
|
+
readonly apiUrlEntry: i0.InputSignal<ApiUrlEntry | null>;
|
|
15518
|
+
readonly parentRecord: i0.InputSignal<Record<string, unknown> | null>;
|
|
15519
|
+
readonly parentResourceId: i0.InputSignal<string | number | null>;
|
|
15520
|
+
readonly parentResourcePath: i0.InputSignal<string | null>;
|
|
15521
|
+
readonly presentation: i0.InputSignal<SurfacePresentation>;
|
|
15522
|
+
readonly title: i0.InputSignal<string | null>;
|
|
15523
|
+
readonly subtitle: i0.InputSignal<string | null>;
|
|
15524
|
+
readonly icon: i0.InputSignal<string | null>;
|
|
15525
|
+
readonly tableId: i0.InputSignal<string | null>;
|
|
15526
|
+
readonly tableConfig: i0.InputSignal<Record<string, unknown> | null>;
|
|
15527
|
+
readonly enableCustomization: i0.InputSignal<boolean>;
|
|
15528
|
+
readonly authoringCapability: i0.InputSignal<string | null>;
|
|
15529
|
+
readonly emptyState: i0.InputSignal<Record<string, unknown> | null>;
|
|
15530
|
+
readonly queryContext: i0.InputSignal<RelatedResourceQueryContext | null>;
|
|
15531
|
+
readonly mode: i0.InputSignal<RelatedResourceOutletMode>;
|
|
15532
|
+
readonly state: i0.InputSignal<RelatedResourceResolutionState | null>;
|
|
15533
|
+
readonly stateReason: i0.InputSignal<string | null>;
|
|
15534
|
+
readonly compact: i0.InputSignal<boolean>;
|
|
15535
|
+
readonly strictValidation: i0.InputSignal<boolean>;
|
|
15536
|
+
readonly ownerWidgetKey: i0.InputSignal<string>;
|
|
15537
|
+
readonly surfaceOpen: i0.OutputEmitterRef<SurfaceOpenPayload>;
|
|
15538
|
+
readonly widgetEvent: i0.OutputEmitterRef<WidgetEventEnvelope>;
|
|
15539
|
+
readonly resourceEvent: i0.OutputEmitterRef<PraxisResourceEvent<unknown>>;
|
|
15540
|
+
private readonly discoveredSurface;
|
|
15541
|
+
private readonly discoveryState;
|
|
15542
|
+
private readonly discoveryStateReason;
|
|
15543
|
+
private readonly materializedPayload;
|
|
15544
|
+
readonly resolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
15545
|
+
readonly renderResolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
15546
|
+
readonly isBusy: i0.Signal<boolean>;
|
|
15547
|
+
constructor();
|
|
15548
|
+
openRelated(): void;
|
|
15549
|
+
onWidgetEvent(event: WidgetEventEnvelope): void;
|
|
15550
|
+
stateIcon(): string;
|
|
15551
|
+
stateTitle(): string;
|
|
15552
|
+
stateDescription(): string;
|
|
15553
|
+
t(key: string, fallback: string): string;
|
|
15554
|
+
private defaultTitle;
|
|
15555
|
+
private defaultDescription;
|
|
15556
|
+
private applyCatalogSurface;
|
|
15557
|
+
private resetDiscoveryState;
|
|
15558
|
+
private discoveryOptions;
|
|
15559
|
+
private resolveFallbackSurfaceCatalogHref;
|
|
15560
|
+
private normalizeResourcePath;
|
|
15561
|
+
private buildDiscoveryRequestKey;
|
|
15562
|
+
private buildMaterializationRequestKey;
|
|
15563
|
+
private isPermissionError;
|
|
15564
|
+
private extractResourceEvent;
|
|
15565
|
+
private trim;
|
|
15566
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisRelatedResourceOutletComponent, never>;
|
|
15567
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisRelatedResourceOutletComponent, "praxis-related-resource-outlet", never, { "surface": { "alias": "surface"; "required": false; "isSignal": true; }; "surfaceId": { "alias": "surfaceId"; "required": false; "isSignal": true; }; "surfaceCatalog": { "alias": "surfaceCatalog"; "required": false; "isSignal": true; }; "discoverySource": { "alias": "discoverySource"; "required": false; "isSignal": true; }; "parentLinks": { "alias": "parentLinks"; "required": false; "isSignal": true; }; "apiEndpointKey": { "alias": "apiEndpointKey"; "required": false; "isSignal": true; }; "apiUrlEntry": { "alias": "apiUrlEntry"; "required": false; "isSignal": true; }; "parentRecord": { "alias": "parentRecord"; "required": false; "isSignal": true; }; "parentResourceId": { "alias": "parentResourceId"; "required": false; "isSignal": true; }; "parentResourcePath": { "alias": "parentResourcePath"; "required": false; "isSignal": true; }; "presentation": { "alias": "presentation"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "tableId": { "alias": "tableId"; "required": false; "isSignal": true; }; "tableConfig": { "alias": "tableConfig"; "required": false; "isSignal": true; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; "isSignal": true; }; "authoringCapability": { "alias": "authoringCapability"; "required": false; "isSignal": true; }; "emptyState": { "alias": "emptyState"; "required": false; "isSignal": true; }; "queryContext": { "alias": "queryContext"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "stateReason": { "alias": "stateReason"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "strictValidation": { "alias": "strictValidation"; "required": false; "isSignal": true; }; "ownerWidgetKey": { "alias": "ownerWidgetKey"; "required": false; "isSignal": true; }; }, { "surfaceOpen": "surfaceOpen"; "widgetEvent": "widgetEvent"; "resourceEvent": "resourceEvent"; }, never, never, true, never>;
|
|
15568
|
+
}
|
|
15569
|
+
|
|
15570
|
+
declare const PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA: ComponentDocMeta;
|
|
15571
|
+
declare function providePraxisRelatedResourceOutletMetadata(): Provider;
|
|
15572
|
+
|
|
14274
15573
|
interface EmptyAction {
|
|
14275
15574
|
label: string;
|
|
14276
15575
|
icon?: string;
|
|
14277
15576
|
color?: 'primary' | 'accent' | 'warn' | undefined;
|
|
14278
15577
|
action: () => void;
|
|
14279
15578
|
}
|
|
15579
|
+
type EmptyStateTone = 'neutral' | 'primary' | 'secondary';
|
|
15580
|
+
type EmptyStateVariant = 'card' | 'inline' | 'panel' | 'transparent';
|
|
15581
|
+
type EmptyStateAlignment = 'start' | 'center';
|
|
15582
|
+
type EmptyStateDensity = 'compact' | 'comfortable';
|
|
15583
|
+
type EmptyStateIconContainer = 'none' | 'circle' | 'soft';
|
|
14280
15584
|
declare class EmptyStateCardComponent {
|
|
14281
15585
|
icon: string;
|
|
14282
15586
|
title: string;
|
|
@@ -14284,17 +15588,25 @@ declare class EmptyStateCardComponent {
|
|
|
14284
15588
|
primaryAction?: EmptyAction;
|
|
14285
15589
|
secondaryActions: EmptyAction[];
|
|
14286
15590
|
inline: boolean;
|
|
14287
|
-
tone:
|
|
15591
|
+
tone: EmptyStateTone;
|
|
15592
|
+
variant: EmptyStateVariant;
|
|
15593
|
+
alignment: EmptyStateAlignment;
|
|
15594
|
+
density: EmptyStateDensity;
|
|
15595
|
+
iconContainer: EmptyStateIconContainer;
|
|
15596
|
+
effectiveVariant(): EmptyStateVariant;
|
|
14288
15597
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyStateCardComponent, never>;
|
|
14289
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateCardComponent, "praxis-empty-state-card", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "primaryAction": { "alias": "primaryAction"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; }, {}, never, never, true, never>;
|
|
15598
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateCardComponent, "praxis-empty-state-card", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "primaryAction": { "alias": "primaryAction"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "density": { "alias": "density"; "required": false; }; "iconContainer": { "alias": "iconContainer"; "required": false; }; }, {}, never, never, true, never>;
|
|
14290
15599
|
}
|
|
14291
15600
|
|
|
14292
|
-
declare class ResourceQuickConnectComponent implements SettingsValueProvider {
|
|
15601
|
+
declare class ResourceQuickConnectComponent implements SettingsValueProvider, OnChanges, OnInit {
|
|
14293
15602
|
resourcePath: string;
|
|
14294
15603
|
isDirty$: BehaviorSubject<boolean>;
|
|
14295
15604
|
isValid$: BehaviorSubject<boolean>;
|
|
14296
15605
|
isBusy$: BehaviorSubject<boolean>;
|
|
15606
|
+
ngOnInit(): void;
|
|
15607
|
+
ngOnChanges(): void;
|
|
14297
15608
|
updateState(): void;
|
|
15609
|
+
private updateValidity;
|
|
14298
15610
|
getSettingsValue(): any;
|
|
14299
15611
|
onSave(): any;
|
|
14300
15612
|
showInvalid(): boolean;
|
|
@@ -14457,9 +15769,13 @@ interface SchemaIdParams {
|
|
|
14457
15769
|
operation?: string;
|
|
14458
15770
|
schemaType?: 'response' | 'request';
|
|
14459
15771
|
includeInternalSchemas?: boolean;
|
|
15772
|
+
idField?: string;
|
|
15773
|
+
readOnly?: boolean;
|
|
15774
|
+
/** Boundary/header context. Structurally neutral for schema identity in the current Praxis metadata contract. */
|
|
14460
15775
|
tenant?: string;
|
|
15776
|
+
/** Boundary/header context. Structurally neutral for schema identity in the current Praxis metadata contract. */
|
|
14461
15777
|
locale?: string;
|
|
14462
|
-
/** Optional
|
|
15778
|
+
/** Optional local cache binding to avoid cross-origin collisions (e.g., https://api.example.com). */
|
|
14463
15779
|
apiOrigin?: string;
|
|
14464
15780
|
}
|
|
14465
15781
|
declare function normalizePath(p: string): string;
|
|
@@ -14649,5 +15965,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
14649
15965
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
14650
15966
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
14651
15967
|
|
|
14652
|
-
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, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, 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, registerPraxisRuntimeComponentObservation, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, 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 };
|
|
14653
|
-
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, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, 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, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, 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, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, 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, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, 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, ResourceSurfaceResponseCardinality, 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, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, 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, RichTimelineDensity, RichTimelineEmphasis, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RichTimelineTextAppearance, 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, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, 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 };
|
|
15968
|
+
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, COMPONENT_METADATA_REGISTRY_I18N_CONFIG, COMPONENT_METADATA_REGISTRY_I18N_NAMESPACE, 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, EnterpriseRuntimeContextService, 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_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY, 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_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS, PRAXIS_TABLE_DETAIL_INLINE_RENDERERS, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_THEME_SURFACE_DEFAULTS, PRAXIS_THEME_SURFACE_VARS, 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, PraxisRelatedResourceOutletComponent, PraxisResourceIdentityComponent, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RelatedResourceSurfaceResolverService, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceRecordOpenError, ResourceRecordOpenService, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, SurfaceOutletRegistryService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildPraxisThemeSurfaceCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, 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, evaluateFieldAccess, 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, isPraxisPresentationVisualizationTableSafe, isPraxisRuntimeGlobalActionEffect, isProgrammaticDateRangePreset, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isStaticDateRangePreset, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, materializeFormLayoutFromMetadata, materializeResourceIdentity, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldAccessMetadata, normalizeFieldConstraints, normalizeFieldPresentation, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLayoutPolicy, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisPresentationVisualization, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, normalizeResourceAvailabilityReasonCode, normalizeResourceIdentityContract, 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, providePraxisEnterpriseRuntimeContext, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRelatedResourceOutletMetadata, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, renderPraxisPresentationVisualizationHtml, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveColumnTypeFromFieldDefinition, resolveControlTypeAlias, resolveDateRangeShortcutPreset, resolveDateRangeShortcutPresets, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveFieldPresentation, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveTextMaskFormat, resolveTextMaskFormatFromFieldDefinition, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToExcel, serializePraxisCollectionToJson, slugify, staticDateRangePresetToPreset, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withFormConfigSections, withMessage, withPraxisHttpLoading };
|
|
15969
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsComparisonPeriodMode, AnalyticsComparisonPeriodPreset, 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, ComponentConfigEditorContextRequest, ComponentConfigEditorContextResolver, ComponentConfigEditorContextResult, 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, CrudSchemaOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeShortcutPreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, 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, DynamicFormDetailSummaryPolicy, DynamicFormDetailSummaryWidthPrecedence, DynamicFormLayoutDetachBehavior, DynamicFormLayoutIntent, DynamicFormLayoutLifecycle, DynamicFormLayoutPersistence, DynamicFormLayoutPolicy, DynamicFormLayoutSource, DynamicFormResponsiveBreakpoint, DynamicFormResponsiveColumns, DynamicFormSchemaLayoutPreset, DynamicFormSchemaOperation, DynamicFormSchemaType, 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, EmptyStateAlignment, EmptyStateConfig, EmptyStateDensity, EmptyStateIconContainer, EmptyStateTone, EmptyStateVariant, EndpointConfig, EndpointRef, EnhancedValidationConfig, EnterpriseRuntimeContext, EnterpriseRuntimeContextHeaders, EnterpriseRuntimeContextSwitchCommand, EnterpriseRuntimeContextSwitchResponse, EnterpriseRuntimeNavigationNode, EnterpriseRuntimeNavigationResponse, EnterpriseRuntimeSecurityEvent, EnterpriseRuntimeSecurityEventsResponse, EnterpriseRuntimeTenant, EnterpriseRuntimeTenantsResponse, EnterpriseRuntimeUser, 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, FieldAccessEvaluationContext, FieldAccessEvaluationResult, FieldAccessMetadata, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldPresentationAppearance, FieldPresentationConfig, FieldPresentationInteractions, FieldPresentationJsonLogicEvaluator, FieldPresentationRule, FieldPresentationTone, FieldPresenterKind, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormConfigWithSections, FormCustomActionEvent, FormEntityEvent, FormFieldHelpDisplay, FormFieldLayoutItem, FormHelpPresentationConfig, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormPresentationConfig, 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, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, 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, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, 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, MaterializeFormLayoutOptions, MaterializedResourceIdentity, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAgenticTurnMetricBucket, ObservabilityAgenticTurnMetrics, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceByIdsRequestOptions, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceInvalidSortPolicy, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceSelectedReloadPolicy, 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, PraxisAnalyticsComparisonBucket, PraxisAnalyticsComparisonBucketKey, PraxisAnalyticsComparisonMetricValue, PraxisAnalyticsComparisonPeriodBinding, PraxisAnalyticsComparisonPeriodWindow, PraxisAnalyticsComparisonStatsRequest, PraxisAnalyticsComparisonStatsResponse, 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, PraxisEnterpriseRuntimeContextOptions, PraxisEnterpriseRuntimeEndpoints, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicLimits, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisPresentationVisualizationConfig, PraxisPresentationVisualizationHtmlOptions, PraxisPresentationVisualizationItem, PraxisPresentationVisualizationKind, PraxisPresentationVisualizationPoint, PraxisPresentationVisualizationSegment, PraxisPresentationVisualizationSize, PraxisPresentationVisualizationSurface, PraxisPresentationVisualizationThreshold, PraxisPresentationVisualizationTone, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisResourceEvent, PraxisResourceEventKind, PraxisResourceRowClickPayload, PraxisResourceSelectionPayload, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisSubmitError, PraxisSubmitErrorDetail, PraxisTextValue, PraxisThemeSurfaceTokens, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RelatedResourceChildOperation, RelatedResourceOutletMode, RelatedResourceQueryContext, RelatedResourceResolutionState, RelatedResourceSurface, RelatedResourceSurfaceResolution, RelatedResourceSurfaceResolverRequest, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolveFieldPresentationOptions, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCanonicalCapabilityOperationId, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceIdentityContract, ResourceIdentityFieldMetadata, ResourceIdentityPart, ResourceKnownCapabilityOperationId, ResourceLinkSource, ResourceRecordOpenFailureCode, ResourceRecordOpenRef, ResourceRecordOpenResolution, ResourceRecordOpenResolveOptions, ResourceSchemaCatalogEndpoint, ResourceSchemaCatalogExample, ResourceSchemaCatalogField, ResourceSchemaCatalogHttpMethod, ResourceSchemaCatalogOperationExamples, ResourceSchemaCatalogParameter, ResourceSchemaCatalogQuery, ResourceSchemaCatalogRelation, ResourceSchemaCatalogResponse, ResourceSchemaCatalogSchemaLinks, ResourceSchemaCatalogSchemaRef, ResourceSchemaCatalogVisual, ResourceSchemaCatalogVisualSource, ResourceStatsCapability, ResourceStatsFieldCapability, ResourceStatsMetric, ResourceStatsMode, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, 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, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, 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, RichTimelineDensity, RichTimelineEmphasis, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RichTimelineTextAppearance, 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, StaticDateRangePreset, StaticDateRangePresetTone, StaticPresetResolutionOptions, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfaceOutletRegistration, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAiAssistantConfig, TableAiConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineNodeResolverDefinition, TableDetailInlineRendererContext, TableDetailInlineRendererDefinition, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarActionEvent, ToolbarActionTarget, ToolbarActionTargetCardinality, ToolbarActionTargetScope, 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 };
|