@praxisui/core 9.0.0-beta.8 → 9.0.0-beta.80
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 +6260 -921
- package/package.json +19 -12
- package/theme-bridge.css +11 -0
- package/types/praxisui-core.d.ts +1394 -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 */
|
|
@@ -2485,6 +2706,14 @@ interface ToolbarSettingsConfig {
|
|
|
2485
2706
|
options?: any[];
|
|
2486
2707
|
}>;
|
|
2487
2708
|
}
|
|
2709
|
+
interface TableAiAssistantConfig {
|
|
2710
|
+
/** Exibe e permite acionar o assistente de IA da tabela. Ausente equivale a true. */
|
|
2711
|
+
enabled?: boolean;
|
|
2712
|
+
}
|
|
2713
|
+
interface TableAiConfig {
|
|
2714
|
+
/** Configuracoes do assistente de IA embarcado na tabela. */
|
|
2715
|
+
assistant?: TableAiAssistantConfig;
|
|
2716
|
+
}
|
|
2488
2717
|
interface TableActionsConfig {
|
|
2489
2718
|
/** Ações por linha */
|
|
2490
2719
|
row?: RowActionsConfig;
|
|
@@ -2791,6 +3020,11 @@ interface TableDetailRichListNode extends TableDetailBaseNode {
|
|
|
2791
3020
|
}
|
|
2792
3021
|
type TableDetailEmbedAction = TableDetailActionBarAction;
|
|
2793
3022
|
interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
3023
|
+
/**
|
|
3024
|
+
* Governs whether the detail row should keep this embed as a host-mediated reference
|
|
3025
|
+
* or ask an owning runtime/provider to materialize it inline. Omitted means `reference`.
|
|
3026
|
+
*/
|
|
3027
|
+
renderMode?: 'reference' | 'inline';
|
|
2794
3028
|
description?: string;
|
|
2795
3029
|
caption?: string;
|
|
2796
3030
|
emptyText?: string;
|
|
@@ -2801,6 +3035,8 @@ interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
|
2801
3035
|
interface TableDetailRefNode extends TableDetailEmbedBaseNode {
|
|
2802
3036
|
type: 'formRef' | 'tableRef' | 'chartRef';
|
|
2803
3037
|
schemaId?: string;
|
|
3038
|
+
chartDocumentRef?: string;
|
|
3039
|
+
chartDocument?: unknown;
|
|
2804
3040
|
}
|
|
2805
3041
|
interface TableDetailDiagramEmbedNode extends TableDetailEmbedBaseNode {
|
|
2806
3042
|
type: 'diagramEmbed';
|
|
@@ -2855,6 +3091,8 @@ interface GeneralExportConfig {
|
|
|
2855
3091
|
interface ExcelExportConfig {
|
|
2856
3092
|
/** Nome da planilha */
|
|
2857
3093
|
sheetName: string;
|
|
3094
|
+
/** Exibir ação local para exportar a página atual com colunas visíveis */
|
|
3095
|
+
visibleCurrentPage?: boolean;
|
|
2858
3096
|
/** Incluir fórmulas nas células */
|
|
2859
3097
|
includeFormulas: boolean;
|
|
2860
3098
|
/** Congelar linha de cabeçalho */
|
|
@@ -3343,6 +3581,8 @@ interface TableConfigV2 {
|
|
|
3343
3581
|
toolbar?: ToolbarConfig;
|
|
3344
3582
|
/** Ações por linha e em lote (Aba: Barra de Ferramentas & Ações) */
|
|
3345
3583
|
actions?: TableActionsConfig;
|
|
3584
|
+
/** Configuracoes de IA do runtime da tabela */
|
|
3585
|
+
ai?: TableAiConfig;
|
|
3346
3586
|
/** Configurações de exportação (Aba: Barra de Ferramentas & Ações) */
|
|
3347
3587
|
export?: ExportConfig;
|
|
3348
3588
|
/** Mensagens personalizadas (Aba: Mensagens & Localização) */
|
|
@@ -3581,6 +3821,92 @@ declare const FieldControlType: {
|
|
|
3581
3821
|
};
|
|
3582
3822
|
type FieldControlType = (typeof FieldControlType)[keyof typeof FieldControlType];
|
|
3583
3823
|
|
|
3824
|
+
type FormFieldHelpDisplay = 'auto' | 'inline' | 'popover' | 'hidden';
|
|
3825
|
+
interface FormHelpPresentationConfig {
|
|
3826
|
+
/**
|
|
3827
|
+
* Controls how semantic field help (`hint`/`helpText`) is presented by field
|
|
3828
|
+
* renderers. Validation errors are never affected by this policy.
|
|
3829
|
+
*/
|
|
3830
|
+
display?: FormFieldHelpDisplay;
|
|
3831
|
+
/**
|
|
3832
|
+
* Maximum text length that may remain inline when `display` is `auto`.
|
|
3833
|
+
* Defaults to 64 characters.
|
|
3834
|
+
*/
|
|
3835
|
+
inlineMaxLength?: number;
|
|
3836
|
+
/**
|
|
3837
|
+
* Control types that should prefer a help affordance instead of inline text
|
|
3838
|
+
* when `display` is `auto`.
|
|
3839
|
+
*/
|
|
3840
|
+
preferPopoverForControls?: string[];
|
|
3841
|
+
}
|
|
3842
|
+
|
|
3843
|
+
type FieldPresentationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
3844
|
+
type FieldPresentationAppearance = 'plain' | 'soft' | 'outlined' | 'filled';
|
|
3845
|
+
type FieldPresenterKind = 'text' | 'badge' | 'chip' | 'status' | 'iconValue' | 'progress' | 'rating' | 'microVisualization';
|
|
3846
|
+
interface FieldPresentationInteractions {
|
|
3847
|
+
/** Allows readonly surfaces to expose a copy affordance without changing the field value. */
|
|
3848
|
+
copy?: boolean;
|
|
3849
|
+
/** Allows readonly surfaces to expose contextual detail expansion. */
|
|
3850
|
+
details?: boolean;
|
|
3851
|
+
/** Allows readonly surfaces to expose inline expansion for long values. */
|
|
3852
|
+
expand?: boolean;
|
|
3853
|
+
/** Allows readonly surfaces to expose a link affordance when the value is navigable. */
|
|
3854
|
+
link?: boolean;
|
|
3855
|
+
}
|
|
3856
|
+
interface FieldPresentationConfig {
|
|
3857
|
+
/** Semantic display strategy for readonly/presentation surfaces. */
|
|
3858
|
+
presenter?: FieldPresenterKind;
|
|
3859
|
+
/** Alias accepted for schema authors that describe the semantic display as a variant. */
|
|
3860
|
+
variant?: FieldPresenterKind;
|
|
3861
|
+
/** Semantic tone mapped by consumers to theme tokens. */
|
|
3862
|
+
tone?: FieldPresentationTone;
|
|
3863
|
+
/** Material Symbols icon name, without arbitrary HTML. */
|
|
3864
|
+
icon?: string;
|
|
3865
|
+
/** Optional semantic label for status/chip/badge presentations. */
|
|
3866
|
+
label?: string;
|
|
3867
|
+
/** Optional secondary marker rendered by presentation-capable consumers. */
|
|
3868
|
+
badge?: string;
|
|
3869
|
+
/** Optional tooltip text for the presentation wrapper. */
|
|
3870
|
+
tooltip?: string;
|
|
3871
|
+
/** Optional readonly prefix rendered next to the displayed value without changing the raw value. */
|
|
3872
|
+
prefix?: string;
|
|
3873
|
+
/** Optional readonly suffix rendered next to the displayed value without changing the raw value. */
|
|
3874
|
+
suffix?: string;
|
|
3875
|
+
/** Visual density/emphasis strategy mapped by consumers to theme tokens. */
|
|
3876
|
+
appearance?: FieldPresentationAppearance;
|
|
3877
|
+
/** Optional formatter override for the presentation surface only. */
|
|
3878
|
+
valuePresentation?: ValuePresentationConfig;
|
|
3879
|
+
/** Renderer-neutral micro visualization metadata for compact presentation surfaces. */
|
|
3880
|
+
visualization?: PraxisPresentationVisualizationConfig;
|
|
3881
|
+
/** Safe readonly affordances. No commands or mutations are executed from this contract. */
|
|
3882
|
+
interactions?: FieldPresentationInteractions;
|
|
3883
|
+
}
|
|
3884
|
+
interface FieldPresentationRule {
|
|
3885
|
+
/** Json Logic guard evaluated against the presentation context. */
|
|
3886
|
+
when: JsonLogicExpression;
|
|
3887
|
+
/** Semantic presentation state merged when the guard is truthy. */
|
|
3888
|
+
set?: FieldPresentationConfig;
|
|
3889
|
+
/** Alias for `set`, useful for rule-builder terminology. */
|
|
3890
|
+
effect?: FieldPresentationConfig;
|
|
3891
|
+
}
|
|
3892
|
+
interface ResolvedFieldPresentation extends FieldPresentationConfig {
|
|
3893
|
+
/** Indicates at least one conditional rule matched the current context. */
|
|
3894
|
+
matchedRule?: boolean;
|
|
3895
|
+
}
|
|
3896
|
+
interface FieldPresentationJsonLogicEvaluator {
|
|
3897
|
+
evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord): unknown;
|
|
3898
|
+
truthy?(value: unknown): boolean;
|
|
3899
|
+
}
|
|
3900
|
+
interface ResolveFieldPresentationOptions {
|
|
3901
|
+
jsonLogic?: FieldPresentationJsonLogicEvaluator | null;
|
|
3902
|
+
}
|
|
3903
|
+
/**
|
|
3904
|
+
* Resolves readonly field presentation from a base semantic config plus ordered
|
|
3905
|
+
* Json Logic rules. Later matching rules override earlier presentation values.
|
|
3906
|
+
*/
|
|
3907
|
+
declare function resolveFieldPresentation(base: FieldPresentationConfig | null | undefined, rules: readonly FieldPresentationRule[] | null | undefined, context?: JsonLogicDataRecord, options?: ResolveFieldPresentationOptions): ResolvedFieldPresentation;
|
|
3908
|
+
declare function normalizeFieldPresentation(value: FieldPresentationConfig | null | undefined): ResolvedFieldPresentation;
|
|
3909
|
+
|
|
3584
3910
|
/**
|
|
3585
3911
|
* @fileoverview Base metadata interfaces for dynamic Angular Material components
|
|
3586
3912
|
*
|
|
@@ -3953,6 +4279,14 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3953
4279
|
disabled?: boolean;
|
|
3954
4280
|
/** Field is read-only */
|
|
3955
4281
|
readOnly?: boolean;
|
|
4282
|
+
/**
|
|
4283
|
+
* Canonical backend-authored access metadata for field-level UX materialization.
|
|
4284
|
+
*
|
|
4285
|
+
* The frontend may use this contract to hide or lock controls for usability,
|
|
4286
|
+
* but it is not a security boundary. Backend filtering and validation remain
|
|
4287
|
+
* the final authority for sensitive data.
|
|
4288
|
+
*/
|
|
4289
|
+
fieldAccess?: FieldAccessMetadata;
|
|
3956
4290
|
/** Field is hidden from display */
|
|
3957
4291
|
hidden?: boolean;
|
|
3958
4292
|
/** Canonical conditional visibility guard for metadata-driven forms. */
|
|
@@ -3963,8 +4297,16 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3963
4297
|
placeholder?: string;
|
|
3964
4298
|
/** Help text displayed below field */
|
|
3965
4299
|
hint?: string;
|
|
4300
|
+
/** Domain help text emitted by backend schema metadata. */
|
|
4301
|
+
helpText?: string;
|
|
4302
|
+
/** Effective help presentation resolved by the form host. */
|
|
4303
|
+
helpDisplay?: FormFieldHelpDisplay;
|
|
4304
|
+
/** Field-level inline threshold used when `helpDisplay` is `auto`. */
|
|
4305
|
+
helpInlineMaxLength?: number;
|
|
3966
4306
|
/** Tooltip text on hover */
|
|
3967
4307
|
tooltip?: string;
|
|
4308
|
+
/** Enables hover tooltip presentation when supported by the field renderer. */
|
|
4309
|
+
tooltipOnHover?: boolean;
|
|
3968
4310
|
/** Semantic selection mode for boolean/single/multiple choice controls */
|
|
3969
4311
|
selectionMode?: 'boolean' | 'single' | 'multiple';
|
|
3970
4312
|
/** Visual variant used by controls with more than one supported presentation */
|
|
@@ -4004,6 +4346,10 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
4004
4346
|
suffixIcon?: string;
|
|
4005
4347
|
iconPosition?: 'start' | 'end';
|
|
4006
4348
|
iconSize?: 'small' | 'medium' | 'large';
|
|
4349
|
+
iconColor?: string;
|
|
4350
|
+
iconClass?: string;
|
|
4351
|
+
iconStyle?: string;
|
|
4352
|
+
iconFontSize?: string | number;
|
|
4007
4353
|
/** Tooltip for suffix icon (used for help actions) */
|
|
4008
4354
|
suffixIconTooltip?: string;
|
|
4009
4355
|
/** ARIA label for suffix icon when used as help */
|
|
@@ -4020,6 +4366,18 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
4020
4366
|
* heuristics.
|
|
4021
4367
|
*/
|
|
4022
4368
|
valuePresentation?: ValuePresentationConfig;
|
|
4369
|
+
/**
|
|
4370
|
+
* Semantic presentation metadata for read-only/display surfaces.
|
|
4371
|
+
*
|
|
4372
|
+
* Consumers map this contract to their own theme tokens and primitives. It
|
|
4373
|
+
* intentionally avoids arbitrary CSS, HTML, or mutation commands.
|
|
4374
|
+
*/
|
|
4375
|
+
presentation?: FieldPresentationConfig;
|
|
4376
|
+
/**
|
|
4377
|
+
* Ordered Json Logic rules that conditionally override `presentation` in
|
|
4378
|
+
* readonly/display surfaces. Later matching rules win.
|
|
4379
|
+
*/
|
|
4380
|
+
presentationRules?: FieldPresentationRule[];
|
|
4023
4381
|
/** Material Design specific configuration */
|
|
4024
4382
|
materialDesign?: MaterialDesignConfig;
|
|
4025
4383
|
/**
|
|
@@ -4156,6 +4514,40 @@ interface DateRangePreset {
|
|
|
4156
4514
|
/** Display order in preset list */
|
|
4157
4515
|
order?: number;
|
|
4158
4516
|
}
|
|
4517
|
+
/** Semantic tone for metadata-published date range shortcuts. */
|
|
4518
|
+
type StaticDateRangePresetTone = 'neutral' | 'info' | 'success' | 'warning';
|
|
4519
|
+
/**
|
|
4520
|
+
* Serializable, metadata-safe date range preset.
|
|
4521
|
+
*
|
|
4522
|
+
* The backend/domain publishes resolved date-only ranges. Angular materializes
|
|
4523
|
+
* the published interval and never deserializes executable calendar rules.
|
|
4524
|
+
*/
|
|
4525
|
+
interface StaticDateRangePreset {
|
|
4526
|
+
/** Unique identifier for observation and active state. */
|
|
4527
|
+
id: string;
|
|
4528
|
+
/** User-visible label published by the domain metadata source. */
|
|
4529
|
+
label: string;
|
|
4530
|
+
/** Inclusive ISO date-only start date (`YYYY-MM-DD`). */
|
|
4531
|
+
startDate: string;
|
|
4532
|
+
/** Inclusive ISO date-only end date (`YYYY-MM-DD`). */
|
|
4533
|
+
endDate: string;
|
|
4534
|
+
/** IANA timezone used to interpret the date-only interval. */
|
|
4535
|
+
timeZone?: string;
|
|
4536
|
+
/** Optional governed icon name. */
|
|
4537
|
+
icon?: string;
|
|
4538
|
+
/** Optional user-visible explanation. */
|
|
4539
|
+
description?: string;
|
|
4540
|
+
/** Semantic tone resolved by Praxis/host tokens. */
|
|
4541
|
+
tone?: StaticDateRangePresetTone;
|
|
4542
|
+
/** Optional ISO date-only first day this shortcut is valid for display. */
|
|
4543
|
+
effectiveFrom?: string;
|
|
4544
|
+
/** Optional ISO date-only last day this shortcut is valid for display. */
|
|
4545
|
+
effectiveTo?: string;
|
|
4546
|
+
/** Display order in preset list when a host sorts metadata before publication. */
|
|
4547
|
+
order?: number;
|
|
4548
|
+
}
|
|
4549
|
+
/** Supported date range shortcut entries. */
|
|
4550
|
+
type DateRangeShortcutPreset = string | DateRangePreset | StaticDateRangePreset;
|
|
4159
4551
|
/** Helper type for partial field metadata updates */
|
|
4160
4552
|
type PartialFieldMetadata = Partial<FieldMetadata> & {
|
|
4161
4553
|
name: string;
|
|
@@ -4165,6 +4557,23 @@ type CoreFieldMetadata = Pick<FieldMetadata, 'name' | 'label' | 'controlType'>;
|
|
|
4165
4557
|
/** Helper type for field metadata without computed properties */
|
|
4166
4558
|
type SerializableFieldMetadata = Omit<FieldMetadata, 'transformDisplayValue' | 'transformSaveValue'>;
|
|
4167
4559
|
|
|
4560
|
+
interface FieldAccessMetadata {
|
|
4561
|
+
visibleForAuthorities?: string[];
|
|
4562
|
+
editableForAuthorities?: string[];
|
|
4563
|
+
reason?: string;
|
|
4564
|
+
}
|
|
4565
|
+
interface FieldAccessEvaluationContext {
|
|
4566
|
+
authorities?: readonly string[] | null;
|
|
4567
|
+
}
|
|
4568
|
+
interface FieldAccessEvaluationResult {
|
|
4569
|
+
evaluated: boolean;
|
|
4570
|
+
visible: boolean;
|
|
4571
|
+
editable: boolean;
|
|
4572
|
+
reason?: string;
|
|
4573
|
+
}
|
|
4574
|
+
declare function normalizeFieldAccessMetadata(value: unknown): FieldAccessMetadata | undefined;
|
|
4575
|
+
declare function evaluateFieldAccess(fieldOrAccess: Pick<FieldMetadata, 'fieldAccess'> | FieldAccessMetadata | null | undefined, context?: FieldAccessEvaluationContext): FieldAccessEvaluationResult;
|
|
4576
|
+
|
|
4168
4577
|
/**
|
|
4169
4578
|
* Contrato de saída do normalizador de esquema (SchemaNormalizerService):
|
|
4170
4579
|
* - Converte metadados `x-ui` em FieldDefinition tipado.
|
|
@@ -4195,6 +4604,7 @@ interface FieldDefinition {
|
|
|
4195
4604
|
layout?: 'horizontal' | 'vertical';
|
|
4196
4605
|
disabled?: boolean;
|
|
4197
4606
|
readOnly?: boolean;
|
|
4607
|
+
fieldAccess?: FieldAccessMetadata;
|
|
4198
4608
|
array?: FieldArrayConfig;
|
|
4199
4609
|
collectionValidation?: FieldArrayCollectionValidation;
|
|
4200
4610
|
multiple?: boolean;
|
|
@@ -4223,6 +4633,7 @@ interface FieldDefinition {
|
|
|
4223
4633
|
helpText?: string;
|
|
4224
4634
|
hint?: string;
|
|
4225
4635
|
hiddenCondition?: JsonLogicExpression | null;
|
|
4636
|
+
tooltip?: string;
|
|
4226
4637
|
tooltipOnHover?: boolean;
|
|
4227
4638
|
icon?: string;
|
|
4228
4639
|
iconPosition?: string;
|
|
@@ -4252,6 +4663,10 @@ interface FieldDefinition {
|
|
|
4252
4663
|
filterOptions?: any[];
|
|
4253
4664
|
numericFormat?: string;
|
|
4254
4665
|
valuePresentation?: ValuePresentationConfig;
|
|
4666
|
+
/** Semantic read-only/list presentation metadata from canonical x-ui.presentation. */
|
|
4667
|
+
presentation?: FieldPresentationConfig;
|
|
4668
|
+
/** Conditional presentation overrides for read-only/list consumers. */
|
|
4669
|
+
presentationRules?: FieldPresentationRule[];
|
|
4255
4670
|
numericStep?: number;
|
|
4256
4671
|
numericMin?: number;
|
|
4257
4672
|
numericMax?: number;
|
|
@@ -4329,6 +4744,13 @@ interface ApiUrlEntry {
|
|
|
4329
4744
|
fullUrl?: string;
|
|
4330
4745
|
version?: string;
|
|
4331
4746
|
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
4747
|
+
/**
|
|
4748
|
+
* Absolute backend origins that ResourceDiscoveryService may fold back through
|
|
4749
|
+
* a relative API_URL proxy for canonical API discovery links. Only configure
|
|
4750
|
+
* origins controlled by the same deployment boundary; arbitrary external links
|
|
4751
|
+
* remain absolute.
|
|
4752
|
+
*/
|
|
4753
|
+
trustedOrigins?: string[];
|
|
4332
4754
|
}
|
|
4333
4755
|
interface ApiUrlConfig {
|
|
4334
4756
|
[key: string]: ApiUrlEntry;
|
|
@@ -4406,6 +4828,8 @@ declare class SchemaNormalizerService {
|
|
|
4406
4828
|
private parseOptionSource;
|
|
4407
4829
|
private parseOptionSourceType;
|
|
4408
4830
|
private parseOptionSourceSearchMode;
|
|
4831
|
+
private parseOptionSourceSelectedReloadPolicy;
|
|
4832
|
+
private parseOptionSourceInvalidSortPolicy;
|
|
4409
4833
|
private parseLookupOpenDetailMode;
|
|
4410
4834
|
private parseValuePresentation;
|
|
4411
4835
|
/**
|
|
@@ -4740,6 +5164,35 @@ declare class GlobalConfigService {
|
|
|
4740
5164
|
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalConfigService>;
|
|
4741
5165
|
}
|
|
4742
5166
|
|
|
5167
|
+
interface ResourceIdentityFieldMetadata {
|
|
5168
|
+
name: string;
|
|
5169
|
+
label?: string;
|
|
5170
|
+
presentation?: FieldPresentationConfig;
|
|
5171
|
+
}
|
|
5172
|
+
interface ResourceIdentityContract {
|
|
5173
|
+
keyField?: string;
|
|
5174
|
+
titleField?: string;
|
|
5175
|
+
metadataFields?: string[];
|
|
5176
|
+
displayLabelField?: string;
|
|
5177
|
+
valid: boolean;
|
|
5178
|
+
invalidFields?: string[];
|
|
5179
|
+
message?: string;
|
|
5180
|
+
}
|
|
5181
|
+
interface ResourceIdentityPart {
|
|
5182
|
+
field: string;
|
|
5183
|
+
label?: string;
|
|
5184
|
+
value: unknown;
|
|
5185
|
+
presentation?: FieldPresentationConfig;
|
|
5186
|
+
}
|
|
5187
|
+
interface MaterializedResourceIdentity {
|
|
5188
|
+
key?: ResourceIdentityPart;
|
|
5189
|
+
title?: ResourceIdentityPart;
|
|
5190
|
+
metadata: ResourceIdentityPart[];
|
|
5191
|
+
displayLabel?: string;
|
|
5192
|
+
}
|
|
5193
|
+
declare function normalizeResourceIdentityContract(value: unknown): ResourceIdentityContract | null;
|
|
5194
|
+
declare function materializeResourceIdentity(contract: ResourceIdentityContract | null | undefined, record: Record<string, unknown> | null | undefined, fields?: readonly ResourceIdentityFieldMetadata[]): MaterializedResourceIdentity | null;
|
|
5195
|
+
|
|
4743
5196
|
/**
|
|
4744
5197
|
* Interface para configuração de endpoints personalizados.
|
|
4745
5198
|
*
|
|
@@ -4790,6 +5243,12 @@ interface CrudOperationOptions {
|
|
|
4790
5243
|
endpointKey?: ApiEndpoint;
|
|
4791
5244
|
httpContext?: HttpContext;
|
|
4792
5245
|
}
|
|
5246
|
+
interface CrudSchemaOptions extends CrudOperationOptions {
|
|
5247
|
+
/** Canonical record identity used to resolve the response schema. */
|
|
5248
|
+
idField?: string;
|
|
5249
|
+
/** Whether the resolved resource surface is read-only. */
|
|
5250
|
+
readOnly?: boolean;
|
|
5251
|
+
}
|
|
4793
5252
|
interface CrudConfigureOptions {
|
|
4794
5253
|
endpointKey?: ApiEndpoint;
|
|
4795
5254
|
apiUrlEntry?: ApiUrlEntry | null;
|
|
@@ -4801,6 +5260,9 @@ interface OptionSourceRequestOptions<ID = string | number> extends CrudOperation
|
|
|
4801
5260
|
sortKey?: string;
|
|
4802
5261
|
filters?: LookupFilterRequest[];
|
|
4803
5262
|
}
|
|
5263
|
+
interface OptionSourceByIdsRequestOptions extends CrudOperationOptions {
|
|
5264
|
+
filter?: Record<string, unknown> | null;
|
|
5265
|
+
}
|
|
4804
5266
|
interface BatchDeleteProgress<ID = string | number> {
|
|
4805
5267
|
id: ID;
|
|
4806
5268
|
success: boolean;
|
|
@@ -4857,6 +5319,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4857
5319
|
private schemaCacheReady?;
|
|
4858
5320
|
private _lastResourceMeta;
|
|
4859
5321
|
private _lastResourceCapabilityDigest;
|
|
5322
|
+
private _lastResourceIdentity;
|
|
4860
5323
|
private _lastSchemaInfo;
|
|
4861
5324
|
/**
|
|
4862
5325
|
* Cria a instância do serviço genérico.
|
|
@@ -4924,7 +5387,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4924
5387
|
* crudService.getSchema().subscribe(schema => { // usar metadados });
|
|
4925
5388
|
* ```
|
|
4926
5389
|
*/
|
|
4927
|
-
getSchema(options?:
|
|
5390
|
+
getSchema(options?: CrudSchemaOptions): Observable<FieldDefinition[]>;
|
|
4928
5391
|
private updateLastResourceMetadataFromSchema;
|
|
4929
5392
|
private normalizeCanonicalCapabilities;
|
|
4930
5393
|
private shouldRememberFilteredSchemaEndpointUnavailable;
|
|
@@ -4932,6 +5395,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4932
5395
|
/** Retorna o campo identificador do recurso (ex.: 'id', 'codigo'), quando derivado do schema. */
|
|
4933
5396
|
getResourceIdField(): string | undefined;
|
|
4934
5397
|
getResourceCapabilityDigest(): ResourceCapabilityDigest | null;
|
|
5398
|
+
/** Returns the canonical structured record identity from x-ui.resource.identity. */
|
|
5399
|
+
getResourceIdentity(): ResourceIdentityContract | null;
|
|
4935
5400
|
/** Retorna o último schemaId e hash conhecidos após getSchema()/getFilteredSchema(). */
|
|
4936
5401
|
getLastSchemaInfo(): {
|
|
4937
5402
|
schemaId?: string;
|
|
@@ -4961,6 +5426,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4961
5426
|
operation?: string;
|
|
4962
5427
|
includeInternalSchemas?: boolean;
|
|
4963
5428
|
schemaType?: string;
|
|
5429
|
+
idField?: string;
|
|
5430
|
+
readOnly?: boolean;
|
|
4964
5431
|
endpointKey?: ApiEndpoint;
|
|
4965
5432
|
httpContext?: HttpContext;
|
|
4966
5433
|
}): Observable<FieldDefinition[]>;
|
|
@@ -5116,7 +5583,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
5116
5583
|
/** OPTIONS: GET /options/by-ids */
|
|
5117
5584
|
getOptionsByIds(ids: ID[], options?: CrudOperationOptions): Observable<OptionDTO<ID>[]>;
|
|
5118
5585
|
/** OPTION SOURCES: GET /option-sources/{sourceKey}/options/by-ids */
|
|
5119
|
-
getOptionSourceOptionsByIds(sourceKey: string, ids: Array<string | number>, options?:
|
|
5586
|
+
getOptionSourceOptionsByIds(sourceKey: string, ids: Array<string | number>, options?: OptionSourceByIdsRequestOptions): Observable<OptionDTO<any>[]>;
|
|
5120
5587
|
/** CURSOR: POST /filter/cursor */
|
|
5121
5588
|
filterByCursor(criteria: any, cursorReq?: CursorRequest, options?: CrudOperationOptions): Observable<CursorPage<T>>;
|
|
5122
5589
|
/** LOCATE: POST /locate */
|
|
@@ -5373,6 +5840,9 @@ declare class TableConfigService {
|
|
|
5373
5840
|
declare function buildBaseColumnFromDef(def: FieldDefinition): ColumnDefinition;
|
|
5374
5841
|
declare function applyLocalCustomizations$1(baseCol: ColumnDefinition, localCol: ColumnDefinition): ColumnDefinition;
|
|
5375
5842
|
declare function reconcileTableConfig(layout: TableConfigV2, serverDefs: FieldDefinition[]): TableConfigV2;
|
|
5843
|
+
declare function resolveColumnTypeFromFieldDefinition(def: FieldDefinition, fallback?: ColumnDefinition['type']): ColumnDefinition['type'] | undefined;
|
|
5844
|
+
declare function resolveTextMaskFormatFromFieldDefinition(def: FieldDefinition): string | undefined;
|
|
5845
|
+
declare function resolveTextMaskFormat(value: unknown): string | undefined;
|
|
5376
5846
|
|
|
5377
5847
|
interface ConfigStorage {
|
|
5378
5848
|
loadConfig<T>(key: string): T | null;
|
|
@@ -5509,11 +5979,13 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
|
|
|
5509
5979
|
saveConfig<T>(key: string, config: T): Observable<void>;
|
|
5510
5980
|
private shouldPropagateSaveError;
|
|
5511
5981
|
private shouldPropagateClearError;
|
|
5982
|
+
private isConcurrencyConflict;
|
|
5512
5983
|
private shouldPropagateLoadError;
|
|
5513
5984
|
private isCriticalPersistenceKey;
|
|
5514
5985
|
clearConfig(key: string): Observable<void>;
|
|
5515
5986
|
private buildHeaders;
|
|
5516
5987
|
private buildParams;
|
|
5988
|
+
private resolveResponseScope;
|
|
5517
5989
|
private resolveKey;
|
|
5518
5990
|
private inferComponentType;
|
|
5519
5991
|
private looksLikePageKey;
|
|
@@ -6719,10 +7191,12 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
|
|
|
6719
7191
|
/** Enable sidebar shortcuts overlay (phase 1). */
|
|
6720
7192
|
showShortcuts?: boolean;
|
|
6721
7193
|
/**
|
|
6722
|
-
* Shortcuts configuration. Accepts built-in identifiers
|
|
6723
|
-
*
|
|
7194
|
+
* Shortcuts configuration. Accepts built-in identifiers, programmatic
|
|
7195
|
+
* TypeScript presets, or static metadata-safe presets resolved by the
|
|
7196
|
+
* backend/domain.
|
|
7197
|
+
* Example: ['thisMonth', 'lastMonth', { id: 'periodo-votacao', label: 'Período de votação', startDate: '2026-07-06', endDate: '2026-10-04' }]
|
|
6724
7198
|
*/
|
|
6725
|
-
shortcuts?:
|
|
7199
|
+
shortcuts?: DateRangeShortcutPreset[];
|
|
6726
7200
|
/**
|
|
6727
7201
|
* Inline quick presets for compact filters (`inlineDateRange`).
|
|
6728
7202
|
* - `true`: enabled with defaults
|
|
@@ -6732,6 +7206,7 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
|
|
|
6732
7206
|
inlineQuickPresets?: boolean | {
|
|
6733
7207
|
enabled?: boolean;
|
|
6734
7208
|
maxVisible?: number;
|
|
7209
|
+
position?: 'auto' | 'footer' | 'start' | 'end';
|
|
6735
7210
|
};
|
|
6736
7211
|
/** Accessibility label for the inline quick presets group. */
|
|
6737
7212
|
inlineQuickPresetsAriaLabel?: string;
|
|
@@ -7720,8 +8195,18 @@ interface MaterialTreeSelectMetadata extends FieldMetadata {
|
|
|
7720
8195
|
returnObject?: boolean;
|
|
7721
8196
|
}
|
|
7722
8197
|
|
|
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';
|
|
8198
|
+
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
8199
|
type PraxisJsonLogicRuntimeValue = unknown;
|
|
8200
|
+
interface PraxisJsonLogicLimits {
|
|
8201
|
+
maxDepth: number;
|
|
8202
|
+
maxNodes: number;
|
|
8203
|
+
maxExpressionBytes: number;
|
|
8204
|
+
maxArrayItems: number;
|
|
8205
|
+
maxStringLength: number;
|
|
8206
|
+
maxOperations: number;
|
|
8207
|
+
maxRegexLength: number;
|
|
8208
|
+
maxRegexComplexity: number;
|
|
8209
|
+
}
|
|
7725
8210
|
interface PraxisJsonLogicEvaluationContext {
|
|
7726
8211
|
data: JsonLogicDataRecord;
|
|
7727
8212
|
availableRoots?: RuleContextRoot[];
|
|
@@ -7729,6 +8214,7 @@ interface PraxisJsonLogicEvaluationContext {
|
|
|
7729
8214
|
allowImplicitRoot?: boolean;
|
|
7730
8215
|
nowUtc?: string;
|
|
7731
8216
|
userTimeZone?: string;
|
|
8217
|
+
limits?: PraxisJsonLogicLimits;
|
|
7732
8218
|
}
|
|
7733
8219
|
interface PraxisJsonLogicEvaluationOptions {
|
|
7734
8220
|
availableRoots?: RuleContextRoot[];
|
|
@@ -7736,6 +8222,7 @@ interface PraxisJsonLogicEvaluationOptions {
|
|
|
7736
8222
|
allowImplicitRoot?: boolean;
|
|
7737
8223
|
nowUtc?: string;
|
|
7738
8224
|
userTimeZone?: string;
|
|
8225
|
+
limits?: Partial<PraxisJsonLogicLimits>;
|
|
7739
8226
|
}
|
|
7740
8227
|
interface PraxisJsonLogicValidationOptions extends PraxisJsonLogicEvaluationOptions {
|
|
7741
8228
|
requireExpressionObject?: boolean;
|
|
@@ -7827,6 +8314,7 @@ declare class PraxisJsonLogicService {
|
|
|
7827
8314
|
private evaluateNone;
|
|
7828
8315
|
private requireHigherOrderArgs;
|
|
7829
8316
|
private assertArrayOperand;
|
|
8317
|
+
private assertIntermediateArrayLimit;
|
|
7830
8318
|
private createChildContext;
|
|
7831
8319
|
private evaluateArgs;
|
|
7832
8320
|
private requireArgs;
|
|
@@ -8047,18 +8535,89 @@ declare class DynamicFormService {
|
|
|
8047
8535
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormService>;
|
|
8048
8536
|
}
|
|
8049
8537
|
|
|
8538
|
+
type PraxisLocale = string;
|
|
8539
|
+
interface PraxisTranslationParams {
|
|
8540
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
8541
|
+
}
|
|
8542
|
+
interface PraxisI18nMessageDescriptor {
|
|
8543
|
+
key?: string;
|
|
8544
|
+
text?: string;
|
|
8545
|
+
params?: PraxisTranslationParams;
|
|
8546
|
+
}
|
|
8547
|
+
type PraxisTextValue = string | PraxisI18nMessageDescriptor;
|
|
8548
|
+
interface PraxisI18nDictionary {
|
|
8549
|
+
[key: string]: string;
|
|
8550
|
+
}
|
|
8551
|
+
interface PraxisI18nNamespaceDictionary {
|
|
8552
|
+
[locale: string]: PraxisI18nDictionary;
|
|
8553
|
+
}
|
|
8554
|
+
interface PraxisI18nNamespaceConfig {
|
|
8555
|
+
[namespace: string]: PraxisI18nNamespaceDictionary;
|
|
8556
|
+
}
|
|
8557
|
+
interface PraxisI18nConfig {
|
|
8558
|
+
locale?: PraxisLocale;
|
|
8559
|
+
fallbackLocale?: PraxisLocale;
|
|
8560
|
+
dictionaries?: Record<PraxisLocale, PraxisI18nDictionary>;
|
|
8561
|
+
namespaces?: PraxisI18nNamespaceConfig;
|
|
8562
|
+
}
|
|
8563
|
+
interface PraxisI18nTranslator {
|
|
8564
|
+
translate(key: string, params?: PraxisTranslationParams, fallback?: string): string;
|
|
8565
|
+
}
|
|
8566
|
+
|
|
8567
|
+
declare class PraxisI18nService {
|
|
8568
|
+
private readonly configs;
|
|
8569
|
+
private readonly translator;
|
|
8570
|
+
private readonly globalConfig;
|
|
8571
|
+
private readonly bootstrapOptions;
|
|
8572
|
+
constructor(configs: Array<Partial<PraxisI18nConfig>> | Partial<PraxisI18nConfig> | null, translator: PraxisI18nTranslator | null);
|
|
8573
|
+
getLocale(): string;
|
|
8574
|
+
getFallbackLocale(): string;
|
|
8575
|
+
t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8576
|
+
tForLocale(locale: string, key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8577
|
+
resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
|
|
8578
|
+
formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
|
|
8579
|
+
formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
|
|
8580
|
+
formatCurrency(value: number, currency: string, options?: Intl.NumberFormatOptions): string;
|
|
8581
|
+
private getConfig;
|
|
8582
|
+
private lookup;
|
|
8583
|
+
private translateExternally;
|
|
8584
|
+
private stringifyInvalidValue;
|
|
8585
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisI18nService, [{ optional: true; }, { optional: true; }]>;
|
|
8586
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisI18nService>;
|
|
8587
|
+
}
|
|
8588
|
+
|
|
8589
|
+
interface PraxisSubmitErrorDetail {
|
|
8590
|
+
code?: string;
|
|
8591
|
+
target?: string;
|
|
8592
|
+
category?: string;
|
|
8593
|
+
message: string;
|
|
8594
|
+
}
|
|
8595
|
+
interface PraxisSubmitError {
|
|
8596
|
+
message: string;
|
|
8597
|
+
details: PraxisSubmitErrorDetail[];
|
|
8598
|
+
}
|
|
8050
8599
|
/**
|
|
8051
8600
|
* Maps HTTP or network errors to user-friendly messages.
|
|
8052
8601
|
* This service centralizes error messaging so UI components don't
|
|
8053
8602
|
* need to know about HTTP status codes or low level error objects.
|
|
8054
8603
|
*/
|
|
8055
8604
|
declare class ErrorMessageService {
|
|
8605
|
+
private readonly i18n;
|
|
8606
|
+
constructor(i18n?: PraxisI18nService | null);
|
|
8607
|
+
normalizeSubmitError(error: unknown): PraxisSubmitError;
|
|
8056
8608
|
/**
|
|
8057
8609
|
* Returns a generic message for an error returned during a form submit.
|
|
8058
8610
|
* @param error Error object possibly containing an HTTP status code
|
|
8059
8611
|
*/
|
|
8060
8612
|
getSubmitErrorMessage(error: unknown): string;
|
|
8061
|
-
|
|
8613
|
+
private fallbackMessage;
|
|
8614
|
+
private normalizeDetails;
|
|
8615
|
+
private objectValue;
|
|
8616
|
+
private textValue;
|
|
8617
|
+
private numberValue;
|
|
8618
|
+
private genericSubmitError;
|
|
8619
|
+
private tx;
|
|
8620
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorMessageService, [{ optional: true; }]>;
|
|
8062
8621
|
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorMessageService>;
|
|
8063
8622
|
}
|
|
8064
8623
|
|
|
@@ -8102,6 +8661,25 @@ interface PortContract {
|
|
|
8102
8661
|
examples?: unknown[];
|
|
8103
8662
|
}
|
|
8104
8663
|
|
|
8664
|
+
interface ComponentConfigEditorContextRequest {
|
|
8665
|
+
componentId: string;
|
|
8666
|
+
widgetKey: string;
|
|
8667
|
+
widgetType?: string;
|
|
8668
|
+
persistedInputs: Record<string, unknown>;
|
|
8669
|
+
page?: unknown;
|
|
8670
|
+
widget?: unknown;
|
|
8671
|
+
metadata: ComponentDocMeta;
|
|
8672
|
+
}
|
|
8673
|
+
interface ComponentConfigEditorContextResult {
|
|
8674
|
+
context?: Record<string, unknown>;
|
|
8675
|
+
diagnostics?: Array<{
|
|
8676
|
+
code: string;
|
|
8677
|
+
severity?: 'info' | 'warning' | 'error';
|
|
8678
|
+
message?: string;
|
|
8679
|
+
path?: string;
|
|
8680
|
+
}>;
|
|
8681
|
+
}
|
|
8682
|
+
type ComponentConfigEditorContextResolver = (request: ComponentConfigEditorContextRequest) => ComponentConfigEditorContextResult | Record<string, unknown> | Promise<ComponentConfigEditorContextResult | Record<string, unknown>>;
|
|
8105
8683
|
/**
|
|
8106
8684
|
* Documentation metadata for dynamically added components.
|
|
8107
8685
|
*
|
|
@@ -8194,6 +8772,14 @@ interface ComponentDocMeta {
|
|
|
8194
8772
|
component: Type<unknown>;
|
|
8195
8773
|
/** Optional title shown by hosts when opening the editor. */
|
|
8196
8774
|
title?: string;
|
|
8775
|
+
/**
|
|
8776
|
+
* Optional transient authoring context resolver.
|
|
8777
|
+
*
|
|
8778
|
+
* The host resolves this immediately before opening the editor and passes
|
|
8779
|
+
* the result separately from persisted widget inputs. The returned context
|
|
8780
|
+
* must not be serialized into widget.definition.inputs.
|
|
8781
|
+
*/
|
|
8782
|
+
contextResolver?: ComponentConfigEditorContextResolver;
|
|
8197
8783
|
};
|
|
8198
8784
|
/** Optional canonical AI authoring manifest reference published by the component owner. */
|
|
8199
8785
|
authoringManifestRef?: {
|
|
@@ -8229,35 +8815,6 @@ interface ComponentDocMeta {
|
|
|
8229
8815
|
};
|
|
8230
8816
|
}
|
|
8231
8817
|
|
|
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
8818
|
interface ComponentMetadataEditorialBindingDescriptor {
|
|
8262
8819
|
name: string;
|
|
8263
8820
|
type: string;
|
|
@@ -8309,28 +8866,6 @@ interface ComponentEditorialResolveOptions {
|
|
|
8309
8866
|
namespace?: string;
|
|
8310
8867
|
}
|
|
8311
8868
|
|
|
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
8869
|
/**
|
|
8335
8870
|
* Simple in-memory registry of component documentation metadata.
|
|
8336
8871
|
*
|
|
@@ -8368,14 +8903,21 @@ declare class ComponentMetadataRegistry {
|
|
|
8368
8903
|
*/
|
|
8369
8904
|
private normalizeMeta;
|
|
8370
8905
|
private normalizeEditorialDescriptor;
|
|
8906
|
+
private assertCanRegisterMetadata;
|
|
8907
|
+
private assertCanRegisterEditorialMetadata;
|
|
8371
8908
|
private resolveEditorialDescriptor;
|
|
8372
8909
|
private resolveComponentDocMeta;
|
|
8373
8910
|
private findLegacyMetadata;
|
|
8374
8911
|
private resolveEditorialBinding;
|
|
8375
8912
|
private resolveTextValue;
|
|
8376
8913
|
private resolveOptionalTextValue;
|
|
8914
|
+
private defaultCopy;
|
|
8915
|
+
private resolveDefaultCopy;
|
|
8377
8916
|
private isEditorialDescriptor;
|
|
8378
8917
|
private clonePortContract;
|
|
8918
|
+
private cloneComponentDocMeta;
|
|
8919
|
+
private cloneEditorialDescriptor;
|
|
8920
|
+
private cloneValue;
|
|
8379
8921
|
private normalizeComponentType;
|
|
8380
8922
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentMetadataRegistry, [{ optional: true; }]>;
|
|
8381
8923
|
static ɵprov: i0.ɵɵInjectableDeclaration<ComponentMetadataRegistry>;
|
|
@@ -8585,15 +9127,25 @@ declare class ResourceDiscoveryService {
|
|
|
8585
9127
|
getSurfaces(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceSurfaceCatalogResponse>;
|
|
8586
9128
|
getActions(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceActionCatalogResponse>;
|
|
8587
9129
|
getCapabilities(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceCapabilitySnapshot>;
|
|
9130
|
+
getCapabilitiesByUrl(href: string, options?: ResourceDiscoveryRequestOptions): Observable<ResourceCapabilitySnapshot>;
|
|
9131
|
+
getSchemaCatalog(query?: ResourceSchemaCatalogQuery, options?: ResourceDiscoveryRequestOptions): Observable<ResourceSchemaCatalogResponse>;
|
|
8588
9132
|
fetchJson<T>(href: string, options?: ResourceDiscoveryRequestOptions): Observable<T>;
|
|
8589
9133
|
getSchemaByUrl<T = Record<string, any>>(schemaUrl: string, options?: ResourceDiscoveryRequestOptions): Observable<T>;
|
|
8590
9134
|
getSchemaFieldsByUrl(schemaUrl: string, options?: ResourceDiscoveryRequestOptions): Observable<FieldDefinition[]>;
|
|
8591
9135
|
resolveHref(href: string, options?: ResourceDiscoveryRequestOptions): string;
|
|
8592
9136
|
private requireLinkHref;
|
|
9137
|
+
private toSchemaCatalogParams;
|
|
8593
9138
|
private extractLinks;
|
|
8594
9139
|
resolveApiEntry(options?: ResourceDiscoveryRequestOptions): ApiUrlEntry;
|
|
8595
9140
|
private resolveApiOrigin;
|
|
8596
9141
|
private resolveApiBaseUrl;
|
|
9142
|
+
private resolveTrustedAbsoluteHref;
|
|
9143
|
+
private isTrustedOrigin;
|
|
9144
|
+
private getTrustedOrigins;
|
|
9145
|
+
private normalizeOrigin;
|
|
9146
|
+
private isProxyableApiPath;
|
|
9147
|
+
private normalizePathPrefix;
|
|
9148
|
+
private isAbsoluteHttpUrl;
|
|
8597
9149
|
private resolveApiBaseHref;
|
|
8598
9150
|
private resolveEndpointEntry;
|
|
8599
9151
|
private getRuntimeOrigin;
|
|
@@ -8603,6 +9155,53 @@ declare class ResourceDiscoveryService {
|
|
|
8603
9155
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDiscoveryService>;
|
|
8604
9156
|
}
|
|
8605
9157
|
|
|
9158
|
+
type ResourceRecordOpenFailureCode = 'INVALID_REFERENCE' | 'SOURCE_IDENTITY_MISSING' | 'SOURCE_IDENTITY_INVALID' | 'RESOURCE_CATALOG_INVALID' | 'TARGET_SURFACE_UNAVAILABLE' | 'CONTEXTUAL_CATALOG_INVALID' | 'CONTEXTUAL_SURFACE_UNAVAILABLE' | 'DISCOVERY_FAILED';
|
|
9159
|
+
declare class ResourceRecordOpenError extends Error {
|
|
9160
|
+
readonly code: ResourceRecordOpenFailureCode;
|
|
9161
|
+
readonly detail?: unknown | undefined;
|
|
9162
|
+
constructor(code: ResourceRecordOpenFailureCode, message: string, detail?: unknown | undefined);
|
|
9163
|
+
}
|
|
9164
|
+
interface ResourceRecordOpenResolveOptions extends ResourceDiscoveryRequestOptions {
|
|
9165
|
+
presentation?: SurfacePresentation;
|
|
9166
|
+
title?: string;
|
|
9167
|
+
subtitle?: string;
|
|
9168
|
+
icon?: string;
|
|
9169
|
+
queryContext?: Record<string, unknown>;
|
|
9170
|
+
}
|
|
9171
|
+
interface ResourceRecordOpenResolution {
|
|
9172
|
+
resourceId: string | number;
|
|
9173
|
+
resourcePath: string;
|
|
9174
|
+
surface: ResourceSurfaceCatalogItem;
|
|
9175
|
+
payload: SurfaceOpenPayload;
|
|
9176
|
+
}
|
|
9177
|
+
/**
|
|
9178
|
+
* Resolves a governed record-open reference into a contextual surface payload.
|
|
9179
|
+
*
|
|
9180
|
+
* The service deliberately re-queries discovery for the current principal. It
|
|
9181
|
+
* never treats the authoring-time catalog, the row label or a local URL template
|
|
9182
|
+
* as authorization to open the target surface.
|
|
9183
|
+
*/
|
|
9184
|
+
declare class ResourceRecordOpenService {
|
|
9185
|
+
private readonly discovery;
|
|
9186
|
+
private readonly surfaceAdapter;
|
|
9187
|
+
resolve(reference: ResourceRecordOpenRef, record: unknown, options?: ResourceRecordOpenResolveOptions): Observable<ResourceRecordOpenResolution>;
|
|
9188
|
+
private materializeContextualSurface;
|
|
9189
|
+
private requireCollectionTargetSurface;
|
|
9190
|
+
private requireSurface;
|
|
9191
|
+
private requireCatalog;
|
|
9192
|
+
private requireReference;
|
|
9193
|
+
private requireResourceId;
|
|
9194
|
+
private surfaceCatalogHref;
|
|
9195
|
+
private itemHref;
|
|
9196
|
+
private safeResourcePath;
|
|
9197
|
+
private normalizeFailure;
|
|
9198
|
+
private record;
|
|
9199
|
+
private text;
|
|
9200
|
+
private nullableText;
|
|
9201
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceRecordOpenService, never>;
|
|
9202
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceRecordOpenService>;
|
|
9203
|
+
}
|
|
9204
|
+
|
|
8606
9205
|
declare const DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.2";
|
|
8607
9206
|
interface DomainCatalogRelease {
|
|
8608
9207
|
releaseKey: string;
|
|
@@ -8741,6 +9340,7 @@ interface Domain360CatalogResponse {
|
|
|
8741
9340
|
|
|
8742
9341
|
interface DomainCatalogRequestOptions extends ResourceDiscoveryRequestOptions {
|
|
8743
9342
|
serviceKey?: string;
|
|
9343
|
+
resourceKey?: string;
|
|
8744
9344
|
limit?: number;
|
|
8745
9345
|
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
8746
9346
|
}
|
|
@@ -9134,6 +9734,133 @@ declare class DomainRuleService {
|
|
|
9134
9734
|
static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
|
|
9135
9735
|
}
|
|
9136
9736
|
|
|
9737
|
+
interface EnterpriseRuntimeUser {
|
|
9738
|
+
userId: string;
|
|
9739
|
+
displayName?: string | null;
|
|
9740
|
+
resolvedFromServerPrincipal?: boolean;
|
|
9741
|
+
}
|
|
9742
|
+
interface EnterpriseRuntimeTenant {
|
|
9743
|
+
tenantId: string;
|
|
9744
|
+
label?: string | null;
|
|
9745
|
+
active?: boolean;
|
|
9746
|
+
}
|
|
9747
|
+
interface EnterpriseRuntimeTenantsResponse {
|
|
9748
|
+
schemaVersion: string;
|
|
9749
|
+
activeTenant?: EnterpriseRuntimeTenant | null;
|
|
9750
|
+
tenants?: EnterpriseRuntimeTenant[];
|
|
9751
|
+
capabilities?: string[];
|
|
9752
|
+
resolvedAt?: string | null;
|
|
9753
|
+
}
|
|
9754
|
+
interface EnterpriseRuntimeContext {
|
|
9755
|
+
schemaVersion: string;
|
|
9756
|
+
user: EnterpriseRuntimeUser;
|
|
9757
|
+
activeTenant: EnterpriseRuntimeTenant;
|
|
9758
|
+
environment?: string | null;
|
|
9759
|
+
locale?: string | null;
|
|
9760
|
+
timezone?: string | null;
|
|
9761
|
+
activeProfileId?: string | null;
|
|
9762
|
+
activeModuleKey?: string | null;
|
|
9763
|
+
/**
|
|
9764
|
+
* Host-resolved security authorities usable by metadata-driven UX policies.
|
|
9765
|
+
* Do not infer these from `capabilities` unless the host/backend explicitly
|
|
9766
|
+
* publishes that shared vocabulary.
|
|
9767
|
+
*/
|
|
9768
|
+
authorities?: string[];
|
|
9769
|
+
capabilities?: string[];
|
|
9770
|
+
resolvedAt?: string | null;
|
|
9771
|
+
}
|
|
9772
|
+
interface EnterpriseRuntimeContextSwitchCommand {
|
|
9773
|
+
targetTenantId?: string | null;
|
|
9774
|
+
targetProfileId?: string | null;
|
|
9775
|
+
targetModuleKey?: string | null;
|
|
9776
|
+
locale?: string | null;
|
|
9777
|
+
timezone?: string | null;
|
|
9778
|
+
reason?: string | null;
|
|
9779
|
+
}
|
|
9780
|
+
interface EnterpriseRuntimeContextSwitchResponse {
|
|
9781
|
+
schemaVersion: string;
|
|
9782
|
+
accepted: boolean;
|
|
9783
|
+
message?: string | null;
|
|
9784
|
+
effectiveContext?: EnterpriseRuntimeContext | null;
|
|
9785
|
+
propagationHeaders?: Record<string, string>;
|
|
9786
|
+
capabilities?: string[];
|
|
9787
|
+
resolvedAt?: string | null;
|
|
9788
|
+
}
|
|
9789
|
+
interface EnterpriseRuntimeNavigationNode {
|
|
9790
|
+
id: string;
|
|
9791
|
+
label?: string | null;
|
|
9792
|
+
type?: string | null;
|
|
9793
|
+
href?: string | null;
|
|
9794
|
+
route?: string | null;
|
|
9795
|
+
moduleKey?: string | null;
|
|
9796
|
+
resourceKey?: string | null;
|
|
9797
|
+
surfaceRef?: string | null;
|
|
9798
|
+
actionRef?: string | null;
|
|
9799
|
+
capabilityRef?: string | null;
|
|
9800
|
+
children?: EnterpriseRuntimeNavigationNode[];
|
|
9801
|
+
}
|
|
9802
|
+
interface EnterpriseRuntimeNavigationResponse {
|
|
9803
|
+
schemaVersion: string;
|
|
9804
|
+
nodes?: EnterpriseRuntimeNavigationNode[];
|
|
9805
|
+
capabilities?: string[];
|
|
9806
|
+
resolvedAt?: string | null;
|
|
9807
|
+
}
|
|
9808
|
+
interface EnterpriseRuntimeSecurityEvent {
|
|
9809
|
+
eventRef?: string | null;
|
|
9810
|
+
eventType?: string | null;
|
|
9811
|
+
severity?: string | null;
|
|
9812
|
+
summary?: string | null;
|
|
9813
|
+
tenantId?: string | null;
|
|
9814
|
+
environment?: string | null;
|
|
9815
|
+
occurredAt?: string | null;
|
|
9816
|
+
metadata?: Record<string, string>;
|
|
9817
|
+
}
|
|
9818
|
+
interface EnterpriseRuntimeSecurityEventsResponse {
|
|
9819
|
+
schemaVersion: string;
|
|
9820
|
+
events?: EnterpriseRuntimeSecurityEvent[];
|
|
9821
|
+
capabilities?: string[];
|
|
9822
|
+
resolvedAt?: string | null;
|
|
9823
|
+
}
|
|
9824
|
+
interface EnterpriseRuntimeContextHeaders {
|
|
9825
|
+
'X-Tenant-ID'?: string;
|
|
9826
|
+
'X-User-ID'?: string;
|
|
9827
|
+
'X-Env'?: string;
|
|
9828
|
+
'Accept-Language'?: string;
|
|
9829
|
+
'X-Timezone'?: string;
|
|
9830
|
+
'X-Praxis-Profile-ID'?: string;
|
|
9831
|
+
'X-Praxis-Module-Key'?: string;
|
|
9832
|
+
}
|
|
9833
|
+
|
|
9834
|
+
type RuntimeHeaderMap = Record<string, string | undefined>;
|
|
9835
|
+
declare class EnterpriseRuntimeContextService {
|
|
9836
|
+
private readonly http;
|
|
9837
|
+
private readonly apiUrl;
|
|
9838
|
+
private readonly options;
|
|
9839
|
+
private readonly contextSubject;
|
|
9840
|
+
private loadPromise;
|
|
9841
|
+
readonly contextChanges$: Observable<EnterpriseRuntimeContext | null>;
|
|
9842
|
+
get snapshot(): EnterpriseRuntimeContext | null;
|
|
9843
|
+
ready(): Promise<EnterpriseRuntimeContext | null>;
|
|
9844
|
+
refresh(): Promise<EnterpriseRuntimeContext | null>;
|
|
9845
|
+
tenants(): Promise<EnterpriseRuntimeTenantsResponse>;
|
|
9846
|
+
navigation(): Promise<EnterpriseRuntimeNavigationResponse>;
|
|
9847
|
+
securityEvents(): Promise<EnterpriseRuntimeSecurityEventsResponse>;
|
|
9848
|
+
switchContext(command: EnterpriseRuntimeContextSwitchCommand): Promise<EnterpriseRuntimeContextSwitchResponse>;
|
|
9849
|
+
headers(fallback?: RuntimeHeaderMap): EnterpriseRuntimeContextHeaders;
|
|
9850
|
+
private load;
|
|
9851
|
+
private getRuntimeSurface;
|
|
9852
|
+
private endpoint;
|
|
9853
|
+
private configuredEndpoint;
|
|
9854
|
+
private runtimeRoot;
|
|
9855
|
+
private surfacePath;
|
|
9856
|
+
private requestHeaders;
|
|
9857
|
+
private globalFetchHeaders;
|
|
9858
|
+
private headersFromSnapshot;
|
|
9859
|
+
private normalizeHeaders;
|
|
9860
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnterpriseRuntimeContextService, never>;
|
|
9861
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnterpriseRuntimeContextService>;
|
|
9862
|
+
}
|
|
9863
|
+
|
|
9137
9864
|
type PraxisRuntimeComponentObservationSchemaVersion = 'praxis-runtime-component-observation.v1';
|
|
9138
9865
|
type PraxisRuntimeComponentObservationClaimKind = 'component' | 'manifest' | 'resource' | 'schemaField' | 'selection' | 'operation' | 'surface' | 'action' | 'stateDigest' | 'dataDigest';
|
|
9139
9866
|
interface PraxisRuntimeComponentObservationEnvelope {
|
|
@@ -9293,6 +10020,87 @@ declare class ResourceSurfaceOpenAdapterService {
|
|
|
9293
10020
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceSurfaceOpenAdapterService>;
|
|
9294
10021
|
}
|
|
9295
10022
|
|
|
10023
|
+
interface SurfaceOutletRegistration {
|
|
10024
|
+
resourceKey: string;
|
|
10025
|
+
surfaceId: string;
|
|
10026
|
+
priority?: number;
|
|
10027
|
+
activate: (payload: SurfaceOpenPayload, context?: GlobalActionContext) => boolean | Promise<boolean>;
|
|
10028
|
+
}
|
|
10029
|
+
declare class SurfaceOutletRegistryService {
|
|
10030
|
+
private readonly registrations;
|
|
10031
|
+
register(registration: SurfaceOutletRegistration): () => void;
|
|
10032
|
+
tryActivate(payload: SurfaceOpenPayload, context?: GlobalActionContext): Promise<boolean>;
|
|
10033
|
+
private key;
|
|
10034
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceOutletRegistryService, never>;
|
|
10035
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SurfaceOutletRegistryService>;
|
|
10036
|
+
}
|
|
10037
|
+
|
|
10038
|
+
type RelatedResourceResolutionState = 'idle' | 'resolving' | 'loading' | 'ready' | 'empty' | 'permission-limited' | 'not-found' | 'error';
|
|
10039
|
+
interface RelatedResourceQueryContext {
|
|
10040
|
+
filters?: Record<string, unknown> | null;
|
|
10041
|
+
filterExpression?: unknown;
|
|
10042
|
+
sort?: string[] | null;
|
|
10043
|
+
limit?: number | null;
|
|
10044
|
+
page?: {
|
|
10045
|
+
index?: number | null;
|
|
10046
|
+
size?: number | null;
|
|
10047
|
+
} | null;
|
|
10048
|
+
meta?: Record<string, unknown> | null;
|
|
10049
|
+
}
|
|
10050
|
+
interface RelatedResourceSurfaceResolverRequest {
|
|
10051
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
10052
|
+
parentRecord?: Record<string, unknown> | null;
|
|
10053
|
+
parentResourceId?: string | number | null;
|
|
10054
|
+
parentResourcePath?: string | null;
|
|
10055
|
+
presentation?: SurfacePresentation;
|
|
10056
|
+
title?: string | null;
|
|
10057
|
+
subtitle?: string | null;
|
|
10058
|
+
icon?: string | null;
|
|
10059
|
+
tableId?: string | null;
|
|
10060
|
+
tableConfig?: Record<string, unknown> | null;
|
|
10061
|
+
enableCustomization?: boolean | null;
|
|
10062
|
+
authoringCapability?: string | null;
|
|
10063
|
+
emptyState?: Record<string, unknown> | null;
|
|
10064
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
10065
|
+
apiEndpointKey?: ApiEndpoint | null;
|
|
10066
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
10067
|
+
}
|
|
10068
|
+
interface RelatedResourceSurfaceResolution {
|
|
10069
|
+
state: RelatedResourceResolutionState;
|
|
10070
|
+
reason?: string;
|
|
10071
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
10072
|
+
relatedResource?: RelatedResourceSurface | null;
|
|
10073
|
+
parentResourceId?: string | number | null;
|
|
10074
|
+
childResourcePath?: string | null;
|
|
10075
|
+
childResourceKey?: string | null;
|
|
10076
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
10077
|
+
payload?: SurfaceOpenPayload;
|
|
10078
|
+
}
|
|
10079
|
+
declare class RelatedResourceSurfaceResolverService {
|
|
10080
|
+
private readonly i18n;
|
|
10081
|
+
resolve(request: RelatedResourceSurfaceResolverRequest | null | undefined): RelatedResourceSurfaceResolution;
|
|
10082
|
+
state(state: RelatedResourceResolutionState, reason?: string): RelatedResourceSurfaceResolution;
|
|
10083
|
+
private buildPayload;
|
|
10084
|
+
private buildTableConfig;
|
|
10085
|
+
private buildRelatedEmptyState;
|
|
10086
|
+
private objectValue;
|
|
10087
|
+
private buildQueryContext;
|
|
10088
|
+
private resolveParentResourceId;
|
|
10089
|
+
private readPath;
|
|
10090
|
+
private isCompleteRelatedResource;
|
|
10091
|
+
private hasReadOperation;
|
|
10092
|
+
private buildStableTableId;
|
|
10093
|
+
private normalizeResourcePath;
|
|
10094
|
+
private sanitizeStableId;
|
|
10095
|
+
private humanizeResourceKey;
|
|
10096
|
+
private t;
|
|
10097
|
+
private interpolate;
|
|
10098
|
+
private trim;
|
|
10099
|
+
private clone;
|
|
10100
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RelatedResourceSurfaceResolverService, never>;
|
|
10101
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RelatedResourceSurfaceResolverService>;
|
|
10102
|
+
}
|
|
10103
|
+
|
|
9296
10104
|
type SurfaceOpenMaterializationContext = {
|
|
9297
10105
|
payload?: unknown;
|
|
9298
10106
|
runtime?: unknown;
|
|
@@ -9301,21 +10109,6 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9301
10109
|
private readonly discovery;
|
|
9302
10110
|
materialize(payload: SurfaceOpenPayload, context?: SurfaceOpenMaterializationContext): Promise<SurfaceOpenPayload>;
|
|
9303
10111
|
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
10112
|
private shouldMaterializeItemReadProjection;
|
|
9320
10113
|
private resolveResponseCardinality;
|
|
9321
10114
|
private shouldMaterializeAsCollection;
|
|
@@ -9323,9 +10116,26 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9323
10116
|
private resolveResourceId;
|
|
9324
10117
|
private resolveItemReadUrl;
|
|
9325
10118
|
private resolveSchemaFields;
|
|
10119
|
+
private materializeArrayProjection;
|
|
10120
|
+
private materializeArrayAsCrud;
|
|
9326
10121
|
private materializeArrayAsTable;
|
|
10122
|
+
private ensureCollectionTableSelectionContract;
|
|
10123
|
+
private ensureTableSelectionConfig;
|
|
9327
10124
|
private projectTableInputs;
|
|
9328
10125
|
private buildLocalTableConfig;
|
|
10126
|
+
private objectRecord;
|
|
10127
|
+
private buildRelatedCrudActions;
|
|
10128
|
+
private buildRelatedCommandFormConfig;
|
|
10129
|
+
private buildExplicitRelatedActionForm;
|
|
10130
|
+
private buildRelatedCommandLayoutPolicy;
|
|
10131
|
+
private buildSchemaUrl;
|
|
10132
|
+
private hasRelatedChildWriteOperations;
|
|
10133
|
+
private resolveRelatedChildOperations;
|
|
10134
|
+
private resolveRelatedResource;
|
|
10135
|
+
private resolveRelatedSelectionKeyField;
|
|
10136
|
+
private resolveSurfacePath;
|
|
10137
|
+
private normalizeResourcePath;
|
|
10138
|
+
private resolveRelatedActionNoun;
|
|
9329
10139
|
private inferColumnsFromData;
|
|
9330
10140
|
private extractCollectionData;
|
|
9331
10141
|
private mergeMaterializationContext;
|
|
@@ -9363,6 +10173,7 @@ interface ResolvedCrudOperation {
|
|
|
9363
10173
|
interface ResolveCrudOperationRequest {
|
|
9364
10174
|
operation: ResourceCrudOperationId;
|
|
9365
10175
|
resourcePath: string;
|
|
10176
|
+
schemaResourcePath?: string | null;
|
|
9366
10177
|
resourceId?: string | number | null;
|
|
9367
10178
|
explicit?: ExplicitCrudResolutionContract | null;
|
|
9368
10179
|
}
|
|
@@ -9380,6 +10191,7 @@ declare class CrudOperationResolutionService {
|
|
|
9380
10191
|
private buildExplicitResolution;
|
|
9381
10192
|
private buildSurfaceResolution;
|
|
9382
10193
|
private buildConventionResolution;
|
|
10194
|
+
private addConventionSurfaceDiagnostic;
|
|
9383
10195
|
private resolveCanonicalSchemaUrl;
|
|
9384
10196
|
private buildCanonicalSchemaParams;
|
|
9385
10197
|
private resolveConventionSubmitUrl;
|
|
@@ -9400,6 +10212,7 @@ declare class CrudOperationResolutionService {
|
|
|
9400
10212
|
private normalizeResourcePath;
|
|
9401
10213
|
private resolveSchemaResourcePath;
|
|
9402
10214
|
private resolveCanonicalResourcePath;
|
|
10215
|
+
private resolveCanonicalSchemaResourcePath;
|
|
9403
10216
|
private toDiscoveryOptions;
|
|
9404
10217
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudOperationResolutionService, never>;
|
|
9405
10218
|
static ɵprov: i0.ɵɵInjectableDeclaration<CrudOperationResolutionService>;
|
|
@@ -9407,10 +10220,12 @@ declare class CrudOperationResolutionService {
|
|
|
9407
10220
|
|
|
9408
10221
|
type AnalyticsIntent = 'ranking' | 'trend' | 'distribution' | 'composition' | 'comparison' | 'correlation';
|
|
9409
10222
|
type AnalyticsSourceKind = 'praxis.stats';
|
|
9410
|
-
type AnalyticsStatsOperation = 'group-by' | 'timeseries' | 'distribution';
|
|
10223
|
+
type AnalyticsStatsOperation = 'group-by' | 'timeseries' | 'distribution' | 'comparison';
|
|
9411
10224
|
type AnalyticsStatsGranularity = 'day' | 'week' | 'month';
|
|
9412
10225
|
type AnalyticsStatsMetricOperation = 'COUNT' | 'DISTINCT_COUNT' | 'SUM' | 'AVG' | 'MIN' | 'MAX';
|
|
9413
10226
|
type AnalyticsStatsOrderBy = 'KEY_ASC' | 'KEY_DESC' | 'VALUE_ASC' | 'VALUE_DESC';
|
|
10227
|
+
type AnalyticsComparisonPeriodPreset = 'TODAY' | 'YESTERDAY' | 'LAST_7_DAYS' | 'LAST_30_DAYS' | 'THIS_MONTH' | 'LAST_MONTH' | 'THIS_QUARTER' | 'THIS_YEAR';
|
|
10228
|
+
type AnalyticsComparisonPeriodMode = 'PREVIOUS_ALIGNED' | 'PREVIOUS_CALENDAR_PERIOD';
|
|
9414
10229
|
type AnalyticsPresentationFamily = 'chart' | 'analytic-table' | 'kpi' | 'summary-list';
|
|
9415
10230
|
interface PraxisXUiAnalytics {
|
|
9416
10231
|
projections: PraxisAnalyticsProjection[];
|
|
@@ -9433,17 +10248,26 @@ interface PraxisAnalyticsBindings {
|
|
|
9433
10248
|
primaryDimension?: PraxisAnalyticsDimensionBinding | null;
|
|
9434
10249
|
primaryMetrics: PraxisAnalyticsMetricBinding[];
|
|
9435
10250
|
secondaryMetrics?: PraxisAnalyticsMetricBinding[] | null;
|
|
10251
|
+
comparisonPeriod?: PraxisAnalyticsComparisonPeriodBinding | null;
|
|
9436
10252
|
}
|
|
9437
10253
|
interface PraxisAnalyticsDimensionBinding {
|
|
9438
10254
|
field: string;
|
|
9439
10255
|
role?: string | null;
|
|
9440
10256
|
label?: string | null;
|
|
10257
|
+
/** Public request field that receives the raw stats bucket key. */
|
|
10258
|
+
keyFilterField?: string | null;
|
|
9441
10259
|
}
|
|
9442
10260
|
interface PraxisAnalyticsMetricBinding {
|
|
9443
10261
|
field: string;
|
|
9444
10262
|
aggregation?: string | null;
|
|
9445
10263
|
label?: string | null;
|
|
9446
10264
|
}
|
|
10265
|
+
interface PraxisAnalyticsComparisonPeriodBinding {
|
|
10266
|
+
field: string;
|
|
10267
|
+
timezone: string;
|
|
10268
|
+
preset: AnalyticsComparisonPeriodPreset;
|
|
10269
|
+
mode: AnalyticsComparisonPeriodMode;
|
|
10270
|
+
}
|
|
9447
10271
|
interface PraxisAnalyticsDefaults {
|
|
9448
10272
|
sort?: PraxisAnalyticsSortRule[] | null;
|
|
9449
10273
|
limit?: number | null;
|
|
@@ -9503,7 +10327,51 @@ interface PraxisAnalyticsDistributionStatsRequest {
|
|
|
9503
10327
|
limit?: number;
|
|
9504
10328
|
orderBy?: AnalyticsStatsOrderBy;
|
|
9505
10329
|
}
|
|
9506
|
-
|
|
10330
|
+
interface PraxisAnalyticsComparisonStatsRequest {
|
|
10331
|
+
filter: Record<string, unknown>;
|
|
10332
|
+
field: string;
|
|
10333
|
+
periodField: string;
|
|
10334
|
+
metrics: PraxisAnalyticsStatsMetricRequest[];
|
|
10335
|
+
period: {
|
|
10336
|
+
preset: AnalyticsComparisonPeriodPreset;
|
|
10337
|
+
timezone: string;
|
|
10338
|
+
mode: AnalyticsComparisonPeriodMode;
|
|
10339
|
+
};
|
|
10340
|
+
limit?: number;
|
|
10341
|
+
orderBy?: AnalyticsStatsOrderBy;
|
|
10342
|
+
}
|
|
10343
|
+
/** One metric result returned for a bucket in a governed period comparison. */
|
|
10344
|
+
interface PraxisAnalyticsComparisonMetricValue {
|
|
10345
|
+
current: number | null;
|
|
10346
|
+
previous: number | null;
|
|
10347
|
+
delta: number | null;
|
|
10348
|
+
deltaPercent: number | null;
|
|
10349
|
+
baselineMissing: boolean;
|
|
10350
|
+
}
|
|
10351
|
+
/** A resolved, inclusive period returned by the comparison endpoint. */
|
|
10352
|
+
interface PraxisAnalyticsComparisonPeriodWindow {
|
|
10353
|
+
from: string;
|
|
10354
|
+
to: string;
|
|
10355
|
+
timezone: string;
|
|
10356
|
+
}
|
|
10357
|
+
/** Stable bucket identities emitted by the Praxis stats contract. */
|
|
10358
|
+
type PraxisAnalyticsComparisonBucketKey = string | number | boolean | null;
|
|
10359
|
+
/** A unioned bucket from the canonical comparison response. */
|
|
10360
|
+
interface PraxisAnalyticsComparisonBucket {
|
|
10361
|
+
key: PraxisAnalyticsComparisonBucketKey;
|
|
10362
|
+
label: string | null;
|
|
10363
|
+
values: Record<string, PraxisAnalyticsComparisonMetricValue | null>;
|
|
10364
|
+
}
|
|
10365
|
+
/** Canonical response from POST /{resource}/stats/comparison. */
|
|
10366
|
+
interface PraxisAnalyticsComparisonStatsResponse {
|
|
10367
|
+
field: string;
|
|
10368
|
+
periodField: string;
|
|
10369
|
+
metrics: PraxisAnalyticsStatsMetricRequest[];
|
|
10370
|
+
currentPeriod: PraxisAnalyticsComparisonPeriodWindow;
|
|
10371
|
+
previousPeriod: PraxisAnalyticsComparisonPeriodWindow;
|
|
10372
|
+
buckets: PraxisAnalyticsComparisonBucket[];
|
|
10373
|
+
}
|
|
10374
|
+
type PraxisAnalyticsStatsRequest = PraxisAnalyticsGroupByStatsRequest | PraxisAnalyticsTimeSeriesStatsRequest | PraxisAnalyticsDistributionStatsRequest | PraxisAnalyticsComparisonStatsRequest;
|
|
9507
10375
|
interface PraxisAnalyticsExecutionMetric {
|
|
9508
10376
|
field: string;
|
|
9509
10377
|
aggregation?: string;
|
|
@@ -9559,6 +10427,7 @@ declare class AnalyticsStatsRequestBuilderService {
|
|
|
9559
10427
|
buildExecutionPlan(projection: PraxisAnalyticsProjection): PraxisAnalyticsStatsExecutionPlan;
|
|
9560
10428
|
private buildStatsRequest;
|
|
9561
10429
|
private buildStatsMetric;
|
|
10430
|
+
private assertComparisonMetrics;
|
|
9562
10431
|
private mapAggregationToBackend;
|
|
9563
10432
|
private mapOrderBy;
|
|
9564
10433
|
private mapGranularityToBackend;
|
|
@@ -9795,12 +10664,33 @@ interface ObservabilityAlertRule {
|
|
|
9795
10664
|
threshold: number;
|
|
9796
10665
|
windowMs: number;
|
|
9797
10666
|
groupBy: ObservabilityAlertGroupBy;
|
|
10667
|
+
matchContext?: {
|
|
10668
|
+
lib?: string;
|
|
10669
|
+
component?: string;
|
|
10670
|
+
actionId?: string;
|
|
10671
|
+
};
|
|
9798
10672
|
throttleMs?: number;
|
|
9799
10673
|
}
|
|
9800
10674
|
interface ObservabilityCountBucket {
|
|
9801
10675
|
key: string;
|
|
9802
10676
|
count: number;
|
|
9803
10677
|
}
|
|
10678
|
+
interface ObservabilityAgenticTurnMetricBucket {
|
|
10679
|
+
key: string;
|
|
10680
|
+
started: number;
|
|
10681
|
+
completed: number;
|
|
10682
|
+
succeeded: number;
|
|
10683
|
+
timedOut: number;
|
|
10684
|
+
successRate: number;
|
|
10685
|
+
timeoutRate: number;
|
|
10686
|
+
averageDurationMs: number;
|
|
10687
|
+
p50DurationMs: number;
|
|
10688
|
+
p95DurationMs: number;
|
|
10689
|
+
}
|
|
10690
|
+
interface ObservabilityAgenticTurnMetrics extends Omit<ObservabilityAgenticTurnMetricBucket, 'key'> {
|
|
10691
|
+
byProvider: ReadonlyArray<ObservabilityAgenticTurnMetricBucket>;
|
|
10692
|
+
byModel: ReadonlyArray<ObservabilityAgenticTurnMetricBucket>;
|
|
10693
|
+
}
|
|
9804
10694
|
interface ObservabilityMetricsSnapshot {
|
|
9805
10695
|
generatedAt: string;
|
|
9806
10696
|
windowMs: number;
|
|
@@ -9809,6 +10699,7 @@ interface ObservabilityMetricsSnapshot {
|
|
|
9809
10699
|
byLib: ReadonlyArray<ObservabilityCountBucket>;
|
|
9810
10700
|
byComponent: ReadonlyArray<ObservabilityCountBucket>;
|
|
9811
10701
|
topActionIds: ReadonlyArray<ObservabilityCountBucket>;
|
|
10702
|
+
agenticTurns: ObservabilityAgenticTurnMetrics;
|
|
9812
10703
|
}
|
|
9813
10704
|
interface ObservabilityAlert {
|
|
9814
10705
|
severity: ObservabilityAlertSeverity;
|
|
@@ -9868,10 +10759,17 @@ declare class ObservabilityDashboardService {
|
|
|
9868
10759
|
getRecentAlerts(limit?: number): ReadonlyArray<ObservabilityAlert>;
|
|
9869
10760
|
clear(): void;
|
|
9870
10761
|
private evaluateAlerts;
|
|
10762
|
+
private matchesRuleContext;
|
|
9871
10763
|
private buildAlertContext;
|
|
9872
10764
|
private groupRecordsByRule;
|
|
9873
10765
|
private trimRecords;
|
|
9874
10766
|
private buildSnapshot;
|
|
10767
|
+
private buildAgenticTurnMetrics;
|
|
10768
|
+
private groupAgenticTurns;
|
|
10769
|
+
private summarizeAgenticTurns;
|
|
10770
|
+
private percentile;
|
|
10771
|
+
private agenticTurnData;
|
|
10772
|
+
private emptyAgenticTurnMetrics;
|
|
9875
10773
|
private incrementCounter;
|
|
9876
10774
|
private toSortedBuckets;
|
|
9877
10775
|
private normalizePayload;
|
|
@@ -9947,6 +10845,37 @@ declare const PRAXIS_LAYER_SCALE_VARS: {
|
|
|
9947
10845
|
};
|
|
9948
10846
|
declare function buildPraxisLayerScaleCss(scale?: PraxisLayerScale): string;
|
|
9949
10847
|
|
|
10848
|
+
/**
|
|
10849
|
+
* Host-themeable semantic surfaces shared by Praxis runtimes.
|
|
10850
|
+
*
|
|
10851
|
+
* These variables deliberately describe product roles rather than Material
|
|
10852
|
+
* implementation details. A host may override them without targeting MDC DOM.
|
|
10853
|
+
*/
|
|
10854
|
+
interface PraxisThemeSurfaceTokens {
|
|
10855
|
+
surface: string;
|
|
10856
|
+
surfaceRaised: string;
|
|
10857
|
+
surfaceOverlay: string;
|
|
10858
|
+
onSurface: string;
|
|
10859
|
+
onSurfaceMuted: string;
|
|
10860
|
+
outline: string;
|
|
10861
|
+
outlineStrong: string;
|
|
10862
|
+
focusOutline: string;
|
|
10863
|
+
elevation: string;
|
|
10864
|
+
}
|
|
10865
|
+
declare const PRAXIS_THEME_SURFACE_DEFAULTS: PraxisThemeSurfaceTokens;
|
|
10866
|
+
declare const PRAXIS_THEME_SURFACE_VARS: {
|
|
10867
|
+
readonly surface: "--praxis-theme-surface";
|
|
10868
|
+
readonly surfaceRaised: "--praxis-theme-surface-raised";
|
|
10869
|
+
readonly surfaceOverlay: "--praxis-theme-surface-overlay";
|
|
10870
|
+
readonly onSurface: "--praxis-theme-on-surface";
|
|
10871
|
+
readonly onSurfaceMuted: "--praxis-theme-on-surface-muted";
|
|
10872
|
+
readonly outline: "--praxis-theme-outline";
|
|
10873
|
+
readonly outlineStrong: "--praxis-theme-outline-strong";
|
|
10874
|
+
readonly focusOutline: "--praxis-theme-focus-outline";
|
|
10875
|
+
readonly elevation: "--praxis-theme-elevation";
|
|
10876
|
+
};
|
|
10877
|
+
declare function buildPraxisThemeSurfaceCss(tokens?: Partial<PraxisThemeSurfaceTokens>): string;
|
|
10878
|
+
|
|
9950
10879
|
declare const GLOBAL_CONFIG: InjectionToken<Partial<GlobalConfig>>;
|
|
9951
10880
|
interface PraxisAuthContext {
|
|
9952
10881
|
ready?: () => Promise<void>;
|
|
@@ -9982,6 +10911,62 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
|
|
|
9982
10911
|
declare function provideRemoteGlobalConfig(url: string): Provider;
|
|
9983
10912
|
declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
|
|
9984
10913
|
|
|
10914
|
+
interface PraxisEnterpriseRuntimeEndpoints {
|
|
10915
|
+
/**
|
|
10916
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10917
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10918
|
+
*/
|
|
10919
|
+
context?: string;
|
|
10920
|
+
/**
|
|
10921
|
+
* Absolute or relative endpoint for the host-owned tenant catalog.
|
|
10922
|
+
* Defaults to the same runtime root as `context`, ending in `/tenants`.
|
|
10923
|
+
*/
|
|
10924
|
+
tenants?: string;
|
|
10925
|
+
/**
|
|
10926
|
+
* Absolute or relative endpoint for host-owned navigation.
|
|
10927
|
+
* Defaults to the same runtime root as `context`, ending in `/navigation`.
|
|
10928
|
+
*/
|
|
10929
|
+
navigation?: string;
|
|
10930
|
+
/**
|
|
10931
|
+
* Absolute or relative endpoint for host-owned security events.
|
|
10932
|
+
* Defaults to the same runtime root as `context`, ending in `/security-events`.
|
|
10933
|
+
*/
|
|
10934
|
+
securityEvents?: string;
|
|
10935
|
+
}
|
|
10936
|
+
interface PraxisEnterpriseRuntimeContextOptions {
|
|
10937
|
+
/**
|
|
10938
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10939
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10940
|
+
* Prefer `endpoints.context` for new integrations.
|
|
10941
|
+
*/
|
|
10942
|
+
endpoint?: string;
|
|
10943
|
+
/**
|
|
10944
|
+
* Host-owned enterprise runtime surfaces. When omitted, URLs are derived from
|
|
10945
|
+
* the configured `endpoint` or from the canonical `/praxis/runtime` root.
|
|
10946
|
+
*/
|
|
10947
|
+
endpoints?: PraxisEnterpriseRuntimeEndpoints;
|
|
10948
|
+
/**
|
|
10949
|
+
* Headers used to resolve the context request. The response remains the source
|
|
10950
|
+
* of truth for tenant/user/environment headers after bootstrap.
|
|
10951
|
+
*/
|
|
10952
|
+
headersFactory?: () => Record<string, string | undefined>;
|
|
10953
|
+
/**
|
|
10954
|
+
* Include `globalThis.PAX_FETCH_HEADERS()` in the request headers when present.
|
|
10955
|
+
*/
|
|
10956
|
+
includeGlobalFetchHeaders?: boolean;
|
|
10957
|
+
/**
|
|
10958
|
+
* Block Angular bootstrap until the context has been resolved.
|
|
10959
|
+
*/
|
|
10960
|
+
blocking?: boolean;
|
|
10961
|
+
/**
|
|
10962
|
+
* Whether bootstrap should fail when the runtime context request fails.
|
|
10963
|
+
*/
|
|
10964
|
+
errorPolicy?: 'fail' | 'ignore';
|
|
10965
|
+
}
|
|
10966
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS: InjectionToken<PraxisEnterpriseRuntimeContextOptions>;
|
|
10967
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY: InjectionToken<() => Promise<void>>;
|
|
10968
|
+
declare function providePraxisEnterpriseRuntimeContext(options?: PraxisEnterpriseRuntimeContextOptions): Provider[];
|
|
10969
|
+
|
|
9985
10970
|
declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
|
|
9986
10971
|
declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
|
|
9987
10972
|
|
|
@@ -10143,6 +11128,26 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
|
10143
11128
|
|
|
10144
11129
|
declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
10145
11130
|
|
|
11131
|
+
interface TableDetailInlineRendererContext {
|
|
11132
|
+
node: TableDetailRefNode;
|
|
11133
|
+
row: unknown;
|
|
11134
|
+
rowIndex: number;
|
|
11135
|
+
detailContext?: Record<string, unknown>;
|
|
11136
|
+
}
|
|
11137
|
+
interface TableDetailInlineRendererDefinition {
|
|
11138
|
+
nodeType: TableDetailRefNode['type'];
|
|
11139
|
+
renderMode: 'inline';
|
|
11140
|
+
component: Type<unknown>;
|
|
11141
|
+
buildInputs: (context: TableDetailInlineRendererContext) => Record<string, unknown> | null;
|
|
11142
|
+
}
|
|
11143
|
+
interface TableDetailInlineNodeResolverDefinition {
|
|
11144
|
+
nodeType: TableDetailRefNode['type'];
|
|
11145
|
+
renderMode: 'inline';
|
|
11146
|
+
resolveNode: (context: TableDetailInlineRendererContext) => TableDetailRefNode | null;
|
|
11147
|
+
}
|
|
11148
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_RENDERERS: InjectionToken<readonly TableDetailInlineRendererDefinition[]>;
|
|
11149
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS: InjectionToken<readonly TableDetailInlineNodeResolverDefinition[]>;
|
|
11150
|
+
|
|
10146
11151
|
declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
|
|
10147
11152
|
|
|
10148
11153
|
declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
|
|
@@ -10152,6 +11157,9 @@ declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLo
|
|
|
10152
11157
|
declare function interpolatePraxisTranslation(template: string, params?: PraxisTranslationParams): string;
|
|
10153
11158
|
declare function mergePraxisI18nConfigs(...configs: Array<Partial<PraxisI18nConfig> | null | undefined>): PraxisI18nConfig;
|
|
10154
11159
|
|
|
11160
|
+
declare const COMPONENT_METADATA_REGISTRY_I18N_NAMESPACE = "componentMetadataRegistry";
|
|
11161
|
+
declare const COMPONENT_METADATA_REGISTRY_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
11162
|
+
|
|
10155
11163
|
declare const RESOURCE_DISCOVERY_I18N_NAMESPACE = "resourceDiscovery";
|
|
10156
11164
|
declare const RESOURCE_DISCOVERY_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
10157
11165
|
declare function normalizeResourceAvailabilityReasonCode(reason: string | null | undefined): string;
|
|
@@ -10778,7 +11786,7 @@ interface EditorialFormTemplateBuildOptions {
|
|
|
10778
11786
|
* - collections are replaced, not concatenated, unless omitted in overrides
|
|
10779
11787
|
* - template provenance is recorded under config.metadata.template
|
|
10780
11788
|
*/
|
|
10781
|
-
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions):
|
|
11789
|
+
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfigWithSections;
|
|
10782
11790
|
|
|
10783
11791
|
interface FormFieldLayoutItem {
|
|
10784
11792
|
kind: 'field';
|
|
@@ -10861,6 +11869,10 @@ interface FormRow {
|
|
|
10861
11869
|
interface FormSection {
|
|
10862
11870
|
id: string;
|
|
10863
11871
|
title?: string;
|
|
11872
|
+
/** Optional host/runtime CSS classes applied to the section container. */
|
|
11873
|
+
className?: string;
|
|
11874
|
+
/** Optional semantic presentation role used by compact/read-only layouts. */
|
|
11875
|
+
presentationRole?: string;
|
|
10864
11876
|
/** Visual appearance preset for the section container/header. */
|
|
10865
11877
|
appearance?: 'card' | 'plain' | 'step';
|
|
10866
11878
|
/** Optional compact step badge/kicker displayed before the title. */
|
|
@@ -10982,9 +11994,27 @@ interface FormSectionHeaderConfig {
|
|
|
10982
11994
|
*/
|
|
10983
11995
|
initialsMaxLength?: number;
|
|
10984
11996
|
}
|
|
11997
|
+
/**
|
|
11998
|
+
* Presentation preferences applied when a dynamic form renders semantic values
|
|
11999
|
+
* instead of editable controls.
|
|
12000
|
+
*/
|
|
12001
|
+
interface FormPresentationConfig {
|
|
12002
|
+
labelPosition?: 'above' | 'left';
|
|
12003
|
+
labelFontSize?: number | null;
|
|
12004
|
+
valueFontSize?: number | null;
|
|
12005
|
+
compact?: boolean;
|
|
12006
|
+
density?: 'comfortable' | 'cozy' | 'compact';
|
|
12007
|
+
labelWidth?: number | null;
|
|
12008
|
+
labelAlign?: 'start' | 'center' | 'end';
|
|
12009
|
+
valueAlign?: 'start' | 'center' | 'end';
|
|
12010
|
+
}
|
|
10985
12011
|
interface FormConfig {
|
|
10986
|
-
/**
|
|
10987
|
-
|
|
12012
|
+
/**
|
|
12013
|
+
* Optional manual layout sections.
|
|
12014
|
+
* When omitted, schema-driven runtimes may infer sections from field metadata
|
|
12015
|
+
* instead of forcing hosts to declare an empty manual layout.
|
|
12016
|
+
*/
|
|
12017
|
+
sections?: FormSection[];
|
|
10988
12018
|
/** Editorial or semantic rich content rendered before the form sections/actions. */
|
|
10989
12019
|
formBlocksBefore?: RichContentDocument | null;
|
|
10990
12020
|
/** Editorial or semantic rich content rendered after the form sections and before the primary action area. */
|
|
@@ -11023,7 +12053,18 @@ interface FormConfig {
|
|
|
11023
12053
|
* Útil para padronizar mensagens didáticas no host.
|
|
11024
12054
|
*/
|
|
11025
12055
|
hints?: FormModeHints;
|
|
12056
|
+
/**
|
|
12057
|
+
* Presentation policy for semantic field help (`hint`/`helpText`).
|
|
12058
|
+
* This controls visual density only; validation errors remain inline.
|
|
12059
|
+
*/
|
|
12060
|
+
helpPresentation?: FormHelpPresentationConfig;
|
|
12061
|
+
/** Presentation preferences for read-only and presentation-mode forms. */
|
|
12062
|
+
presentation?: FormPresentationConfig;
|
|
12063
|
+
}
|
|
12064
|
+
interface FormConfigWithSections extends FormConfig {
|
|
12065
|
+
sections: FormSection[];
|
|
11026
12066
|
}
|
|
12067
|
+
declare function withFormConfigSections(config: FormConfig): FormConfigWithSections;
|
|
11027
12068
|
interface FormModeHints {
|
|
11028
12069
|
dataModes: {
|
|
11029
12070
|
create: string;
|
|
@@ -11043,12 +12084,51 @@ interface FormConfigMetadata {
|
|
|
11043
12084
|
/** Last update timestamp */
|
|
11044
12085
|
lastUpdated?: Date;
|
|
11045
12086
|
/** Configuration source */
|
|
11046
|
-
source?: 'local' | 'server' | 'default';
|
|
12087
|
+
source?: 'local' | 'server' | 'default' | 'schema';
|
|
12088
|
+
/**
|
|
12089
|
+
* Layout preset used when this configuration was generated from metadata/schema.
|
|
12090
|
+
* This is provenance for generated configs; it must not be interpreted as a
|
|
12091
|
+
* command to reprocess authored or persisted layouts.
|
|
12092
|
+
*/
|
|
12093
|
+
generatedLayoutPreset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
12094
|
+
/** Runtime policy used to materialize schema-driven layout, when applicable. */
|
|
12095
|
+
schemaLayoutPolicy?: {
|
|
12096
|
+
source: 'authored' | 'schema';
|
|
12097
|
+
preset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
12098
|
+
intent?: 'detail' | 'command';
|
|
12099
|
+
lifecycle?: 'initial' | 'live';
|
|
12100
|
+
persistence?: 'transient' | 'authorable';
|
|
12101
|
+
detachBehavior?: 'none' | 'explicit';
|
|
12102
|
+
schemaOperation?: 'detail' | 'create' | 'update' | 'view';
|
|
12103
|
+
schemaType?: 'request' | 'response';
|
|
12104
|
+
detailSummary?: {
|
|
12105
|
+
includeFields?: readonly string[];
|
|
12106
|
+
excludeFields?: readonly string[];
|
|
12107
|
+
includeGroups?: readonly string[];
|
|
12108
|
+
excludeGroups?: readonly string[];
|
|
12109
|
+
includeRoles?: readonly string[];
|
|
12110
|
+
excludeRoles?: readonly string[];
|
|
12111
|
+
maxFields?: number;
|
|
12112
|
+
fieldPriority?: Record<string, number>;
|
|
12113
|
+
groupPriority?: Record<string, number>;
|
|
12114
|
+
columns?: number;
|
|
12115
|
+
responsiveColumns?: Partial<Record<'xs' | 'sm' | 'md' | 'lg' | 'xl', number>>;
|
|
12116
|
+
widthPrecedence?: 'schema' | 'summary';
|
|
12117
|
+
};
|
|
12118
|
+
};
|
|
11047
12119
|
/** Server data hash for change detection */
|
|
11048
12120
|
serverHash?: string;
|
|
12121
|
+
/**
|
|
12122
|
+
* Host-resolved security authorities used only for fieldAccess UX
|
|
12123
|
+
* materialization. Do not populate this from runtime capabilities unless the
|
|
12124
|
+
* host/backend explicitly declares that both vocabularies are shared.
|
|
12125
|
+
*/
|
|
12126
|
+
fieldAccessAuthorities?: string[];
|
|
11049
12127
|
/**
|
|
11050
12128
|
* Server schema identity used to build this configuration.
|
|
11051
|
-
* Format comes from buildSchemaId(path|operation|schemaType|internal|
|
|
12129
|
+
* Format comes from buildSchemaId(path|operation|schemaType|internal|idField|readOnly|origin).
|
|
12130
|
+
* tenant/locale remain request boundary context and do not vary structural identity
|
|
12131
|
+
* unless the backend contract starts varying the schema payload for them.
|
|
11052
12132
|
*/
|
|
11053
12133
|
schemaId?: string;
|
|
11054
12134
|
/**
|
|
@@ -11233,7 +12313,7 @@ interface FormActionConfirmationEvent {
|
|
|
11233
12313
|
confirmed: boolean;
|
|
11234
12314
|
}
|
|
11235
12315
|
|
|
11236
|
-
type RulePropertyType = 'string' | 'boolean' | 'object' | 'enum' | 'number';
|
|
12316
|
+
type RulePropertyType = 'string' | 'boolean' | 'object' | 'array' | 'enum' | 'number';
|
|
11237
12317
|
interface RulePropertyDefinition {
|
|
11238
12318
|
name: string;
|
|
11239
12319
|
type: RulePropertyType;
|
|
@@ -12173,6 +13253,35 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
|
|
|
12173
13253
|
status?: PersistedPageConfig['status'];
|
|
12174
13254
|
}): PersistedPageConfig;
|
|
12175
13255
|
|
|
13256
|
+
type PraxisResourceEventKind = 'row-click' | 'row-double-click' | 'selection-change' | 'row-action' | 'toolbar-action' | 'bulk-action' | 'export-action' | 'surface-open' | 'widget-event' | 'custom';
|
|
13257
|
+
interface PraxisResourceEvent<TPayload = unknown> {
|
|
13258
|
+
/** Canonical resource-level intent represented by the original component output. */
|
|
13259
|
+
kind: PraxisResourceEventKind;
|
|
13260
|
+
/** Component selector/id that originated the event, such as praxis-table. */
|
|
13261
|
+
sourceComponentId: string;
|
|
13262
|
+
/** Legacy/public output that produced this envelope, such as rowClick or toolbarAction. */
|
|
13263
|
+
sourceOutput?: string;
|
|
13264
|
+
/** Lifecycle phase for enterprise orchestration, analytics, auditing, and feedback. */
|
|
13265
|
+
phase?: 'request' | 'success' | 'error' | 'notification';
|
|
13266
|
+
resourcePath?: string | null;
|
|
13267
|
+
resourceKey?: string | null;
|
|
13268
|
+
resourceId?: string | number | null;
|
|
13269
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
13270
|
+
payload: TPayload;
|
|
13271
|
+
context?: Record<string, unknown> | null;
|
|
13272
|
+
}
|
|
13273
|
+
interface PraxisResourceRowClickPayload<TRow = unknown> {
|
|
13274
|
+
row: TRow;
|
|
13275
|
+
index: number;
|
|
13276
|
+
}
|
|
13277
|
+
interface PraxisResourceSelectionPayload<TRow = unknown> {
|
|
13278
|
+
trigger: string;
|
|
13279
|
+
row?: TRow;
|
|
13280
|
+
selectedRows: TRow[];
|
|
13281
|
+
selectedCount: number;
|
|
13282
|
+
tableId?: string;
|
|
13283
|
+
}
|
|
13284
|
+
|
|
12176
13285
|
type RecordRelatedSurfaceOperationId = 'dynamicPage.surface.discover' | 'dynamicPage.surface.open' | 'dynamicPage.surface.query';
|
|
12177
13286
|
interface RecordRelatedSurfaceEndpoint {
|
|
12178
13287
|
widget: string;
|
|
@@ -12478,6 +13587,51 @@ declare function mapFieldDefinitionToMetadata(field: FieldDefinition): FieldMeta
|
|
|
12478
13587
|
*/
|
|
12479
13588
|
declare function mapFieldDefinitionsToMetadata(fields: FieldDefinition[]): FieldMetadata[];
|
|
12480
13589
|
|
|
13590
|
+
type DynamicFormLayoutSource = 'authored' | 'schema';
|
|
13591
|
+
type DynamicFormSchemaLayoutPreset = 'default' | 'compactPresentation' | 'groupedCommand';
|
|
13592
|
+
type DynamicFormLayoutIntent = 'detail' | 'command';
|
|
13593
|
+
type DynamicFormLayoutLifecycle = 'initial' | 'live';
|
|
13594
|
+
type DynamicFormLayoutPersistence = 'transient' | 'authorable';
|
|
13595
|
+
type DynamicFormLayoutDetachBehavior = 'none' | 'explicit';
|
|
13596
|
+
type DynamicFormSchemaOperation = 'detail' | 'create' | 'update' | 'view';
|
|
13597
|
+
type DynamicFormSchemaType = 'request' | 'response';
|
|
13598
|
+
type DynamicFormResponsiveBreakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
13599
|
+
type DynamicFormResponsiveColumns = Partial<Record<DynamicFormResponsiveBreakpoint, number>>;
|
|
13600
|
+
type DynamicFormDetailSummaryWidthPrecedence = 'schema' | 'summary';
|
|
13601
|
+
interface DynamicFormDetailSummaryPolicy {
|
|
13602
|
+
includeFields?: readonly string[];
|
|
13603
|
+
excludeFields?: readonly string[];
|
|
13604
|
+
includeGroups?: readonly string[];
|
|
13605
|
+
excludeGroups?: readonly string[];
|
|
13606
|
+
includeRoles?: readonly string[];
|
|
13607
|
+
excludeRoles?: readonly string[];
|
|
13608
|
+
maxFields?: number;
|
|
13609
|
+
fieldPriority?: Record<string, number>;
|
|
13610
|
+
groupPriority?: Record<string, number>;
|
|
13611
|
+
columns?: number;
|
|
13612
|
+
responsiveColumns?: DynamicFormResponsiveColumns;
|
|
13613
|
+
widthPrecedence?: DynamicFormDetailSummaryWidthPrecedence;
|
|
13614
|
+
}
|
|
13615
|
+
interface DynamicFormLayoutPolicy {
|
|
13616
|
+
source: DynamicFormLayoutSource;
|
|
13617
|
+
preset?: DynamicFormSchemaLayoutPreset;
|
|
13618
|
+
intent?: DynamicFormLayoutIntent;
|
|
13619
|
+
lifecycle?: DynamicFormLayoutLifecycle;
|
|
13620
|
+
persistence?: DynamicFormLayoutPersistence;
|
|
13621
|
+
detachBehavior?: DynamicFormLayoutDetachBehavior;
|
|
13622
|
+
schemaOperation?: DynamicFormSchemaOperation;
|
|
13623
|
+
schemaType?: DynamicFormSchemaType;
|
|
13624
|
+
detailSummary?: DynamicFormDetailSummaryPolicy;
|
|
13625
|
+
}
|
|
13626
|
+
interface MaterializeFormLayoutOptions {
|
|
13627
|
+
policy?: DynamicFormLayoutPolicy | null;
|
|
13628
|
+
defaultSectionTitle?: string;
|
|
13629
|
+
presentationRoleMap?: Record<string, string>;
|
|
13630
|
+
includeHidden?: boolean;
|
|
13631
|
+
}
|
|
13632
|
+
declare function materializeFormLayoutFromMetadata(fields: FieldMetadata[], options?: MaterializeFormLayoutOptions): FormConfigWithSections;
|
|
13633
|
+
declare function normalizeLayoutPolicy(policy?: DynamicFormLayoutPolicy | null): Required<Pick<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>> & Omit<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>;
|
|
13634
|
+
|
|
12481
13635
|
/**
|
|
12482
13636
|
* Compose headers including optional API version information.
|
|
12483
13637
|
* If the entry already defines custom headers, they will be preserved.
|
|
@@ -12497,7 +13651,7 @@ type EnsureIdsOptions = {
|
|
|
12497
13651
|
* Garante que todas as sections/rows/columns do FormConfig possuam IDs únicos.
|
|
12498
13652
|
* Retorna um NOVO objeto (sem mutar o original).
|
|
12499
13653
|
*/
|
|
12500
|
-
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions):
|
|
13654
|
+
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions): FormConfigWithSections;
|
|
12501
13655
|
|
|
12502
13656
|
declare function resolveSpan(span?: ColumnSpan): Required<ColumnSpan>;
|
|
12503
13657
|
declare function resolveOffset(offset?: ColumnOffset): Required<ColumnOffset>;
|
|
@@ -12561,6 +13715,14 @@ interface ResolvePresetOptions {
|
|
|
12561
13715
|
minDate?: Date | null;
|
|
12562
13716
|
maxDate?: Date | null;
|
|
12563
13717
|
}
|
|
13718
|
+
interface StaticPresetResolutionOptions extends ResolvePresetOptions {
|
|
13719
|
+
referenceDate?: Date;
|
|
13720
|
+
}
|
|
13721
|
+
declare function isProgrammaticDateRangePreset(value: unknown): value is DateRangePreset;
|
|
13722
|
+
declare function isStaticDateRangePreset(value: unknown): value is StaticDateRangePreset;
|
|
13723
|
+
declare function staticDateRangePresetToPreset(preset: StaticDateRangePreset, opts?: StaticPresetResolutionOptions): DateRangePreset;
|
|
13724
|
+
declare function resolveDateRangeShortcutPreset(shortcut: DateRangeShortcutPreset, builtins: Record<string, DateRangePreset>, opts?: StaticPresetResolutionOptions): DateRangePreset | null;
|
|
13725
|
+
declare function resolveDateRangeShortcutPresets(shortcuts: readonly DateRangeShortcutPreset[], builtins: Record<string, DateRangePreset>, opts?: StaticPresetResolutionOptions): DateRangePreset[];
|
|
12564
13726
|
/** Normalize a date to start of day (00:00:00.000) respecting timezone if provided. */
|
|
12565
13727
|
declare function normalizeStart(date: Date, timezone?: string): Date;
|
|
12566
13728
|
/** Normalize a date to end of day (23:59:59.999) respecting timezone if provided. */
|
|
@@ -12835,7 +13997,7 @@ interface ComponentAuthoringManifest {
|
|
|
12835
13997
|
examples: ManifestExample[];
|
|
12836
13998
|
/**
|
|
12837
13999
|
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
12838
|
-
* base, mas precisam expor
|
|
14000
|
+
* base, mas precisam expor semântica granular por componente/controlType.
|
|
12839
14001
|
*/
|
|
12840
14002
|
controlProfiles?: ManifestControlProfile[];
|
|
12841
14003
|
}
|
|
@@ -12994,13 +14156,13 @@ interface ManifestControlProfile {
|
|
|
12994
14156
|
profileId: string;
|
|
12995
14157
|
/** Nome curto usado por ferramentas de authoring. */
|
|
12996
14158
|
title: string;
|
|
12997
|
-
/** Explica a
|
|
14159
|
+
/** Explica a semântica que este perfil adiciona sobre o manifesto base. */
|
|
12998
14160
|
description: string;
|
|
12999
14161
|
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
13000
14162
|
appliesTo: ManifestControlProfileApplicability;
|
|
13001
14163
|
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
13002
14164
|
editableTargets?: ManifestTarget[];
|
|
13003
|
-
/**
|
|
14165
|
+
/** Operações específicas do perfil/controlType. */
|
|
13004
14166
|
operations: ManifestOperation[];
|
|
13005
14167
|
/** Validadores especificos do perfil/controlType. */
|
|
13006
14168
|
validators: ManifestValidator[];
|
|
@@ -13064,7 +14226,7 @@ interface CapabilityCatalog extends AiCapabilityCatalog {
|
|
|
13064
14226
|
}
|
|
13065
14227
|
declare const DYNAMIC_PAGE_AI_CAPABILITIES: CapabilityCatalog;
|
|
13066
14228
|
|
|
13067
|
-
type ComponentContextOptionMode = 'enum' | 'suggested';
|
|
14229
|
+
type ComponentContextOptionMode = 'enum' | 'suggested' | 'expression';
|
|
13068
14230
|
interface ComponentContextOption {
|
|
13069
14231
|
value: string | number;
|
|
13070
14232
|
label?: string;
|
|
@@ -13073,6 +14235,7 @@ interface ComponentContextOption {
|
|
|
13073
14235
|
interface ComponentContextOptionsByPathEntry {
|
|
13074
14236
|
mode: ComponentContextOptionMode;
|
|
13075
14237
|
options: ComponentContextOption[];
|
|
14238
|
+
suggestedRoots?: string[];
|
|
13076
14239
|
}
|
|
13077
14240
|
interface ComponentActionParam {
|
|
13078
14241
|
name: string;
|
|
@@ -13161,6 +14324,7 @@ interface WidgetEventEnvelope {
|
|
|
13161
14324
|
output?: string;
|
|
13162
14325
|
payload?: any;
|
|
13163
14326
|
path?: WidgetEventPathSegment[];
|
|
14327
|
+
resourceEvent?: PraxisResourceEvent;
|
|
13164
14328
|
}
|
|
13165
14329
|
type WidgetResolutionPhase = 'ready' | 'metadata-missing' | 'create-error' | 'validation-error' | 'bind-error';
|
|
13166
14330
|
interface WidgetResolutionDiagnostic {
|
|
@@ -13462,6 +14626,8 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
13462
14626
|
private orderedInputEntries;
|
|
13463
14627
|
private resolveAndCoerceValue;
|
|
13464
14628
|
private withInferredIdentityInputs;
|
|
14629
|
+
private areInputValuesEquivalent;
|
|
14630
|
+
private areJsonLikeInputsEqual;
|
|
13465
14631
|
private normalizeMaterializedRuntimeInputs;
|
|
13466
14632
|
private inferResourcePathFromSchemaUrl;
|
|
13467
14633
|
private bindOutputs;
|
|
@@ -13527,6 +14693,19 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
13527
14693
|
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
14694
|
}
|
|
13529
14695
|
|
|
14696
|
+
declare class PraxisResourceIdentityComponent {
|
|
14697
|
+
identity: MaterializedResourceIdentity | null;
|
|
14698
|
+
emptyTitle: string;
|
|
14699
|
+
density: 'compact' | 'comfortable';
|
|
14700
|
+
showMetadataLabels: boolean;
|
|
14701
|
+
protected title(): string;
|
|
14702
|
+
protected prefix(item: ResourceIdentityPart): string;
|
|
14703
|
+
protected suffix(item: ResourceIdentityPart): string;
|
|
14704
|
+
protected isChip(item: ResourceIdentityPart): boolean;
|
|
14705
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisResourceIdentityComponent, never>;
|
|
14706
|
+
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>;
|
|
14707
|
+
}
|
|
14708
|
+
|
|
13530
14709
|
declare const BUILTIN_PAGE_LAYOUT_PRESETS: Record<string, WidgetPageLayoutPresetDefinition>;
|
|
13531
14710
|
declare const BUILTIN_PAGE_THEME_PRESETS: Record<string, WidgetPageThemePresetDefinition>;
|
|
13532
14711
|
|
|
@@ -13646,6 +14825,7 @@ declare class CompositionValidatorService {
|
|
|
13646
14825
|
private readonly nestedPortCatalog;
|
|
13647
14826
|
private readonly jsonLogic;
|
|
13648
14827
|
constructor(nestedPortCatalog?: NestedPortCatalogService, jsonLogic?: PraxisJsonLogicService);
|
|
14828
|
+
validateLinks(links: SemanticCompositionLink[], context?: CompositionValidatorContext): DiagnosticRecord[];
|
|
13649
14829
|
validateLink(link: SemanticCompositionLink, context?: CompositionValidatorContext): DiagnosticRecord[];
|
|
13650
14830
|
private validateEndpointDirections;
|
|
13651
14831
|
private validateBindingPathBridge;
|
|
@@ -13658,6 +14838,12 @@ declare class CompositionValidatorService {
|
|
|
13658
14838
|
private validateCondition;
|
|
13659
14839
|
private validateTransformCatalog;
|
|
13660
14840
|
private validateSemanticCompatibility;
|
|
14841
|
+
private validateFeedbackCycles;
|
|
14842
|
+
private findFeedbackPath;
|
|
14843
|
+
private stableUniqueLinkIds;
|
|
14844
|
+
private feedbackNodeKey;
|
|
14845
|
+
private isIntentionalGuardedFeedback;
|
|
14846
|
+
private createFeedbackCycleDiagnostic;
|
|
13661
14847
|
private endpointSemanticKind;
|
|
13662
14848
|
private areSemanticKindsCompatible;
|
|
13663
14849
|
private areKindsDirectlyCompatible;
|
|
@@ -13857,6 +15043,7 @@ declare class CompositionRuntimeEngine {
|
|
|
13857
15043
|
private extractDerivedNodeKey;
|
|
13858
15044
|
private appendDiagnosticTraceEntries;
|
|
13859
15045
|
private createNestedWidgetEventBridgeDiagnostics;
|
|
15046
|
+
private createFeedbackCycleBlockedDiagnostics;
|
|
13860
15047
|
}
|
|
13861
15048
|
|
|
13862
15049
|
interface CompositionRuntimeFacadeOptions {
|
|
@@ -13969,6 +15156,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
13969
15156
|
private pageDefinition?;
|
|
13970
15157
|
private pageState;
|
|
13971
15158
|
private pageRuntime;
|
|
15159
|
+
private readonly configEditorContextRequests;
|
|
15160
|
+
private nextConfigEditorContextRequestId;
|
|
13972
15161
|
private layout?;
|
|
13973
15162
|
private canvas?;
|
|
13974
15163
|
private grouping;
|
|
@@ -14010,6 +15199,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14010
15199
|
ngOnDestroy(): void;
|
|
14011
15200
|
ngOnChanges(changes: SimpleChanges): void;
|
|
14012
15201
|
onWidgetEvent(fromKey: string, evt: WidgetEventEnvelope): void;
|
|
15202
|
+
private isTransientOnlyCompositionCycle;
|
|
14013
15203
|
private applyWidgetInputPatchToPage;
|
|
14014
15204
|
private resolveWidgetInputPatchNestedPath;
|
|
14015
15205
|
private extractWidgetInputPatch;
|
|
@@ -14065,6 +15255,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14065
15255
|
private enrichRuntimeWidgetInputs;
|
|
14066
15256
|
private buildRichContentHostCapabilities;
|
|
14067
15257
|
private dispatchRichContentAction;
|
|
15258
|
+
private emitRichContentCustomAction;
|
|
14068
15259
|
private isRichContentActionAvailable;
|
|
14069
15260
|
private hasRichContentCapability;
|
|
14070
15261
|
private resolveComponentBindingPath;
|
|
@@ -14104,7 +15295,9 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14104
15295
|
private resolveTemplate;
|
|
14105
15296
|
private lookup;
|
|
14106
15297
|
openWidgetShellSettings(key: string): void;
|
|
14107
|
-
openWidgetComponentSettings(key: string): void
|
|
15298
|
+
openWidgetComponentSettings(key: string): Promise<void>;
|
|
15299
|
+
private resolveWidgetConfigEditorContext;
|
|
15300
|
+
private isConfigEditorContextResult;
|
|
14108
15301
|
private materializeRuntimeInputsForWidget;
|
|
14109
15302
|
private findWidgetLoader;
|
|
14110
15303
|
private dispatchWidgetComponentSettingsToRuntime;
|
|
@@ -14137,6 +15330,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14137
15330
|
private resolveLayoutPresetDefinition;
|
|
14138
15331
|
private mergeLayout;
|
|
14139
15332
|
private applyResponsivePresentation;
|
|
15333
|
+
private projectPersistentCompositionStateInputs;
|
|
15334
|
+
private projectRuntimeCompositionStateInputs;
|
|
14140
15335
|
private resolveEffectivePresentation;
|
|
14141
15336
|
private resolveDeviceVariant;
|
|
14142
15337
|
private resolveCanvas;
|
|
@@ -14250,6 +15445,9 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14250
15445
|
*/
|
|
14251
15446
|
renderTitleInsideBody: boolean;
|
|
14252
15447
|
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
15448
|
+
rowClick: EventEmitter<unknown>;
|
|
15449
|
+
selectionChange: EventEmitter<unknown>;
|
|
15450
|
+
resourceEvent: EventEmitter<PraxisResourceEvent<unknown>>;
|
|
14253
15451
|
private beforeWidgetLoader?;
|
|
14254
15452
|
private mainWidgetLoader?;
|
|
14255
15453
|
private afterWidgetLoader?;
|
|
@@ -14267,16 +15465,97 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14267
15465
|
private isRichContentActionAvailable;
|
|
14268
15466
|
private hasRichContentCapability;
|
|
14269
15467
|
onSlotWidgetEvent(ownerWidgetKey: string, event: WidgetEventEnvelope): void;
|
|
15468
|
+
private toResourceEvent;
|
|
15469
|
+
private readRecord;
|
|
15470
|
+
private stringOrNull;
|
|
15471
|
+
private resourceIdOrNull;
|
|
15472
|
+
private toResourceSurface;
|
|
14270
15473
|
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>;
|
|
15474
|
+
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
15475
|
}
|
|
14273
15476
|
|
|
15477
|
+
type RelatedResourceOutletMode = 'inline' | 'open-action';
|
|
15478
|
+
declare class PraxisRelatedResourceOutletComponent {
|
|
15479
|
+
private readonly resolver;
|
|
15480
|
+
private readonly materializer;
|
|
15481
|
+
private readonly i18n;
|
|
15482
|
+
private readonly injector;
|
|
15483
|
+
private discoverySubscription?;
|
|
15484
|
+
private discoveryRequestKey;
|
|
15485
|
+
private materializationRequestKey;
|
|
15486
|
+
readonly surface: i0.InputSignal<ResourceSurfaceCatalogItem | null>;
|
|
15487
|
+
readonly surfaceId: i0.InputSignal<string | null>;
|
|
15488
|
+
readonly surfaceCatalog: i0.InputSignal<ResourceSurfaceCatalogResponse | null>;
|
|
15489
|
+
readonly discoverySource: i0.InputSignal<ResourceLinkSource | null>;
|
|
15490
|
+
readonly parentLinks: i0.InputSignal<RestApiLinks | RestApiResponse<unknown> | null>;
|
|
15491
|
+
readonly apiEndpointKey: i0.InputSignal<ApiEndpoint | null>;
|
|
15492
|
+
readonly apiUrlEntry: i0.InputSignal<ApiUrlEntry | null>;
|
|
15493
|
+
readonly parentRecord: i0.InputSignal<Record<string, unknown> | null>;
|
|
15494
|
+
readonly parentResourceId: i0.InputSignal<string | number | null>;
|
|
15495
|
+
readonly parentResourcePath: i0.InputSignal<string | null>;
|
|
15496
|
+
readonly presentation: i0.InputSignal<SurfacePresentation>;
|
|
15497
|
+
readonly title: i0.InputSignal<string | null>;
|
|
15498
|
+
readonly subtitle: i0.InputSignal<string | null>;
|
|
15499
|
+
readonly icon: i0.InputSignal<string | null>;
|
|
15500
|
+
readonly tableId: i0.InputSignal<string | null>;
|
|
15501
|
+
readonly tableConfig: i0.InputSignal<Record<string, unknown> | null>;
|
|
15502
|
+
readonly enableCustomization: i0.InputSignal<boolean>;
|
|
15503
|
+
readonly authoringCapability: i0.InputSignal<string | null>;
|
|
15504
|
+
readonly emptyState: i0.InputSignal<Record<string, unknown> | null>;
|
|
15505
|
+
readonly queryContext: i0.InputSignal<RelatedResourceQueryContext | null>;
|
|
15506
|
+
readonly mode: i0.InputSignal<RelatedResourceOutletMode>;
|
|
15507
|
+
readonly state: i0.InputSignal<RelatedResourceResolutionState | null>;
|
|
15508
|
+
readonly stateReason: i0.InputSignal<string | null>;
|
|
15509
|
+
readonly compact: i0.InputSignal<boolean>;
|
|
15510
|
+
readonly strictValidation: i0.InputSignal<boolean>;
|
|
15511
|
+
readonly ownerWidgetKey: i0.InputSignal<string>;
|
|
15512
|
+
readonly surfaceOpen: i0.OutputEmitterRef<SurfaceOpenPayload>;
|
|
15513
|
+
readonly widgetEvent: i0.OutputEmitterRef<WidgetEventEnvelope>;
|
|
15514
|
+
readonly resourceEvent: i0.OutputEmitterRef<PraxisResourceEvent<unknown>>;
|
|
15515
|
+
private readonly discoveredSurface;
|
|
15516
|
+
private readonly discoveryState;
|
|
15517
|
+
private readonly discoveryStateReason;
|
|
15518
|
+
private readonly materializedPayload;
|
|
15519
|
+
readonly resolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
15520
|
+
readonly renderResolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
15521
|
+
readonly isBusy: i0.Signal<boolean>;
|
|
15522
|
+
constructor();
|
|
15523
|
+
openRelated(): void;
|
|
15524
|
+
onWidgetEvent(event: WidgetEventEnvelope): void;
|
|
15525
|
+
stateIcon(): string;
|
|
15526
|
+
stateTitle(): string;
|
|
15527
|
+
stateDescription(): string;
|
|
15528
|
+
t(key: string, fallback: string): string;
|
|
15529
|
+
private defaultTitle;
|
|
15530
|
+
private defaultDescription;
|
|
15531
|
+
private applyCatalogSurface;
|
|
15532
|
+
private resetDiscoveryState;
|
|
15533
|
+
private discoveryOptions;
|
|
15534
|
+
private resolveFallbackSurfaceCatalogHref;
|
|
15535
|
+
private normalizeResourcePath;
|
|
15536
|
+
private buildDiscoveryRequestKey;
|
|
15537
|
+
private buildMaterializationRequestKey;
|
|
15538
|
+
private isPermissionError;
|
|
15539
|
+
private extractResourceEvent;
|
|
15540
|
+
private trim;
|
|
15541
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisRelatedResourceOutletComponent, never>;
|
|
15542
|
+
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>;
|
|
15543
|
+
}
|
|
15544
|
+
|
|
15545
|
+
declare const PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA: ComponentDocMeta;
|
|
15546
|
+
declare function providePraxisRelatedResourceOutletMetadata(): Provider;
|
|
15547
|
+
|
|
14274
15548
|
interface EmptyAction {
|
|
14275
15549
|
label: string;
|
|
14276
15550
|
icon?: string;
|
|
14277
15551
|
color?: 'primary' | 'accent' | 'warn' | undefined;
|
|
14278
15552
|
action: () => void;
|
|
14279
15553
|
}
|
|
15554
|
+
type EmptyStateTone = 'neutral' | 'primary' | 'secondary';
|
|
15555
|
+
type EmptyStateVariant = 'card' | 'inline' | 'panel' | 'transparent';
|
|
15556
|
+
type EmptyStateAlignment = 'start' | 'center';
|
|
15557
|
+
type EmptyStateDensity = 'compact' | 'comfortable';
|
|
15558
|
+
type EmptyStateIconContainer = 'none' | 'circle' | 'soft';
|
|
14280
15559
|
declare class EmptyStateCardComponent {
|
|
14281
15560
|
icon: string;
|
|
14282
15561
|
title: string;
|
|
@@ -14284,17 +15563,25 @@ declare class EmptyStateCardComponent {
|
|
|
14284
15563
|
primaryAction?: EmptyAction;
|
|
14285
15564
|
secondaryActions: EmptyAction[];
|
|
14286
15565
|
inline: boolean;
|
|
14287
|
-
tone:
|
|
15566
|
+
tone: EmptyStateTone;
|
|
15567
|
+
variant: EmptyStateVariant;
|
|
15568
|
+
alignment: EmptyStateAlignment;
|
|
15569
|
+
density: EmptyStateDensity;
|
|
15570
|
+
iconContainer: EmptyStateIconContainer;
|
|
15571
|
+
effectiveVariant(): EmptyStateVariant;
|
|
14288
15572
|
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>;
|
|
15573
|
+
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
15574
|
}
|
|
14291
15575
|
|
|
14292
|
-
declare class ResourceQuickConnectComponent implements SettingsValueProvider {
|
|
15576
|
+
declare class ResourceQuickConnectComponent implements SettingsValueProvider, OnChanges, OnInit {
|
|
14293
15577
|
resourcePath: string;
|
|
14294
15578
|
isDirty$: BehaviorSubject<boolean>;
|
|
14295
15579
|
isValid$: BehaviorSubject<boolean>;
|
|
14296
15580
|
isBusy$: BehaviorSubject<boolean>;
|
|
15581
|
+
ngOnInit(): void;
|
|
15582
|
+
ngOnChanges(): void;
|
|
14297
15583
|
updateState(): void;
|
|
15584
|
+
private updateValidity;
|
|
14298
15585
|
getSettingsValue(): any;
|
|
14299
15586
|
onSave(): any;
|
|
14300
15587
|
showInvalid(): boolean;
|
|
@@ -14457,9 +15744,13 @@ interface SchemaIdParams {
|
|
|
14457
15744
|
operation?: string;
|
|
14458
15745
|
schemaType?: 'response' | 'request';
|
|
14459
15746
|
includeInternalSchemas?: boolean;
|
|
15747
|
+
idField?: string;
|
|
15748
|
+
readOnly?: boolean;
|
|
15749
|
+
/** Boundary/header context. Structurally neutral for schema identity in the current Praxis metadata contract. */
|
|
14460
15750
|
tenant?: string;
|
|
15751
|
+
/** Boundary/header context. Structurally neutral for schema identity in the current Praxis metadata contract. */
|
|
14461
15752
|
locale?: string;
|
|
14462
|
-
/** Optional
|
|
15753
|
+
/** Optional local cache binding to avoid cross-origin collisions (e.g., https://api.example.com). */
|
|
14463
15754
|
apiOrigin?: string;
|
|
14464
15755
|
}
|
|
14465
15756
|
declare function normalizePath(p: string): string;
|
|
@@ -14649,5 +15940,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
14649
15940
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
14650
15941
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
14651
15942
|
|
|
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 };
|
|
15943
|
+
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 };
|
|
15944
|
+
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, 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 };
|