@praxisui/core 9.0.4-rc.4 → 9.0.4-rc.41
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 +50 -54
- package/ai/component-registry.json +500 -98
- package/fesm2022/praxisui-core.mjs +3201 -1461
- package/package.json +1 -1
- package/types/praxisui-core.d.ts +379 -130
package/types/praxisui-core.d.ts
CHANGED
|
@@ -238,6 +238,7 @@ interface EntityLookupDisplayMetadata {
|
|
|
238
238
|
showBadges?: boolean;
|
|
239
239
|
showDisabledReason?: boolean;
|
|
240
240
|
showResultCount?: boolean;
|
|
241
|
+
statusLabelMap?: Record<string, string>;
|
|
241
242
|
statusToneMap?: Record<string, LookupStatusTone>;
|
|
242
243
|
badgeKeys?: string[];
|
|
243
244
|
maxVisibleBadges?: number;
|
|
@@ -969,6 +970,10 @@ declare function createEmptyRichContentDocument(): RichContentDocument;
|
|
|
969
970
|
type GlobalActionResult = {
|
|
970
971
|
success: boolean;
|
|
971
972
|
data?: any;
|
|
973
|
+
/** Stable machine-readable failure code. End-user copy remains in `error`. */
|
|
974
|
+
errorCode?: string;
|
|
975
|
+
/** Whether an automatic retry is safe without changing the current context. */
|
|
976
|
+
retryable?: boolean;
|
|
972
977
|
error?: string;
|
|
973
978
|
};
|
|
974
979
|
interface NavigationOpenRoutePayload {
|
|
@@ -1007,6 +1012,12 @@ type GlobalActionContext = {
|
|
|
1007
1012
|
formData?: any;
|
|
1008
1013
|
value?: any;
|
|
1009
1014
|
state?: any;
|
|
1015
|
+
/**
|
|
1016
|
+
* Ephemeral element that initiated the action. Visual runtime providers may
|
|
1017
|
+
* restore focus to it after an overlay closes. It is never part of an
|
|
1018
|
+
* authored GlobalActionRef, a surface payload, telemetry, or persistence.
|
|
1019
|
+
*/
|
|
1020
|
+
focusOrigin?: HTMLElement;
|
|
1010
1021
|
widgetContext?: any;
|
|
1011
1022
|
pageState?: Record<string, any>;
|
|
1012
1023
|
composition?: {
|
|
@@ -1492,6 +1503,44 @@ interface ResourceRecordOpenRef {
|
|
|
1492
1503
|
surfaceId: string;
|
|
1493
1504
|
};
|
|
1494
1505
|
}
|
|
1506
|
+
type ResourceActionRequirement = 'NONE' | 'OPTIONAL' | 'REQUIRED';
|
|
1507
|
+
type ResourceActionVersionTransport = 'NONE' | 'IF_MATCH' | 'SELECTION_MAP';
|
|
1508
|
+
type ResourceActionInteractionMode = 'DIRECT' | 'CONFIRM' | 'FORM';
|
|
1509
|
+
type ResourceActionRiskLevel = 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL';
|
|
1510
|
+
type ResourceActionOutcomeMode = 'SINGLE' | 'PER_ITEM';
|
|
1511
|
+
type ResourceActionCollectionAtomicity = 'NOT_APPLICABLE' | 'ATOMIC' | 'PER_ITEM';
|
|
1512
|
+
interface ResourceActionExecutionContract {
|
|
1513
|
+
interaction: {
|
|
1514
|
+
mode: ResourceActionInteractionMode;
|
|
1515
|
+
risk: ResourceActionRiskLevel;
|
|
1516
|
+
confirmationRequired: boolean;
|
|
1517
|
+
reversible: boolean;
|
|
1518
|
+
};
|
|
1519
|
+
preconditions: {
|
|
1520
|
+
idempotencyKey: ResourceActionRequirement;
|
|
1521
|
+
correlationId: ResourceActionRequirement;
|
|
1522
|
+
resourceVersion: ResourceActionRequirement;
|
|
1523
|
+
resourceVersionTransport: ResourceActionVersionTransport;
|
|
1524
|
+
/** Response-row field carrying the persisted version used by the declared transport. */
|
|
1525
|
+
resourceVersionField?: string | null;
|
|
1526
|
+
};
|
|
1527
|
+
selection: {
|
|
1528
|
+
idsField?: string | null;
|
|
1529
|
+
versionsField?: string | null;
|
|
1530
|
+
maxItems?: number | null;
|
|
1531
|
+
};
|
|
1532
|
+
outcome: {
|
|
1533
|
+
mode: ResourceActionOutcomeMode;
|
|
1534
|
+
atomicity: ResourceActionCollectionAtomicity;
|
|
1535
|
+
};
|
|
1536
|
+
refresh: {
|
|
1537
|
+
item: boolean;
|
|
1538
|
+
collection: boolean;
|
|
1539
|
+
actions: boolean;
|
|
1540
|
+
capabilities: boolean;
|
|
1541
|
+
resourceKeys: string[];
|
|
1542
|
+
};
|
|
1543
|
+
}
|
|
1495
1544
|
interface ResourceActionCatalogItem {
|
|
1496
1545
|
id: string;
|
|
1497
1546
|
resourceKey: string;
|
|
@@ -1509,6 +1558,8 @@ interface ResourceActionCatalogItem {
|
|
|
1509
1558
|
order: number;
|
|
1510
1559
|
successMessage?: string | null;
|
|
1511
1560
|
tags: string[];
|
|
1561
|
+
/** Backend-authored protocol and UX policy for executing this business action. */
|
|
1562
|
+
execution?: ResourceActionExecutionContract | null;
|
|
1512
1563
|
}
|
|
1513
1564
|
interface ResourceActionCatalogResponse {
|
|
1514
1565
|
resourceKey: string;
|
|
@@ -1548,6 +1599,128 @@ interface ResourceCapabilityDigest {
|
|
|
1548
1599
|
filterExpressionSupported: boolean;
|
|
1549
1600
|
}
|
|
1550
1601
|
|
|
1602
|
+
type FieldPresentationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
1603
|
+
type FieldPresentationAppearance = 'plain' | 'soft' | 'outlined' | 'filled';
|
|
1604
|
+
type FieldPresenterKind = 'text' | 'badge' | 'chip' | 'status' | 'iconValue' | 'progress' | 'rating' | 'microVisualization';
|
|
1605
|
+
interface FieldPresentationInteractions {
|
|
1606
|
+
/** Allows readonly surfaces to expose a copy affordance without changing the field value. */
|
|
1607
|
+
copy?: boolean;
|
|
1608
|
+
/** Allows readonly surfaces to expose contextual detail expansion. */
|
|
1609
|
+
details?: boolean;
|
|
1610
|
+
/** Allows readonly surfaces to expose inline expansion for long values. */
|
|
1611
|
+
expand?: boolean;
|
|
1612
|
+
/** Allows readonly surfaces to expose a link affordance when the value is navigable. */
|
|
1613
|
+
link?: boolean;
|
|
1614
|
+
}
|
|
1615
|
+
interface FieldPresentationConfig {
|
|
1616
|
+
/** Semantic display strategy for readonly/presentation surfaces. */
|
|
1617
|
+
presenter?: FieldPresenterKind;
|
|
1618
|
+
/** Alias accepted for schema authors that describe the semantic display as a variant. */
|
|
1619
|
+
variant?: FieldPresenterKind;
|
|
1620
|
+
/** Semantic tone mapped by consumers to theme tokens. */
|
|
1621
|
+
tone?: FieldPresentationTone;
|
|
1622
|
+
/** Material Symbols icon name, without arbitrary HTML. */
|
|
1623
|
+
icon?: string;
|
|
1624
|
+
/** Optional semantic label for status/chip/badge presentations. */
|
|
1625
|
+
label?: string;
|
|
1626
|
+
/** Optional secondary marker rendered by presentation-capable consumers. */
|
|
1627
|
+
badge?: string;
|
|
1628
|
+
/** Optional tooltip text for the presentation wrapper. */
|
|
1629
|
+
tooltip?: string;
|
|
1630
|
+
/** Optional readonly prefix rendered next to the displayed value without changing the raw value. */
|
|
1631
|
+
prefix?: string;
|
|
1632
|
+
/** Optional readonly suffix rendered next to the displayed value without changing the raw value. */
|
|
1633
|
+
suffix?: string;
|
|
1634
|
+
/** Visual density/emphasis strategy mapped by consumers to theme tokens. */
|
|
1635
|
+
appearance?: FieldPresentationAppearance;
|
|
1636
|
+
/** Optional formatter override for the presentation surface only. */
|
|
1637
|
+
valuePresentation?: ValuePresentationConfig;
|
|
1638
|
+
/** Renderer-neutral micro visualization metadata for compact presentation surfaces. */
|
|
1639
|
+
visualization?: PraxisPresentationVisualizationConfig;
|
|
1640
|
+
/** Safe readonly affordances. No commands or mutations are executed from this contract. */
|
|
1641
|
+
interactions?: FieldPresentationInteractions;
|
|
1642
|
+
}
|
|
1643
|
+
interface FieldPresentationRule {
|
|
1644
|
+
/** Json Logic guard evaluated against the presentation context. */
|
|
1645
|
+
when: JsonLogicExpression;
|
|
1646
|
+
/** Semantic presentation state merged when the guard is truthy. */
|
|
1647
|
+
set?: FieldPresentationConfig;
|
|
1648
|
+
/** Alias for `set`, useful for rule-builder terminology. */
|
|
1649
|
+
effect?: FieldPresentationConfig;
|
|
1650
|
+
}
|
|
1651
|
+
interface ResolvedFieldPresentation extends FieldPresentationConfig {
|
|
1652
|
+
/** Indicates at least one conditional rule matched the current context. */
|
|
1653
|
+
matchedRule?: boolean;
|
|
1654
|
+
}
|
|
1655
|
+
interface FieldPresentationJsonLogicEvaluator {
|
|
1656
|
+
evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord): unknown;
|
|
1657
|
+
truthy?(value: unknown): boolean;
|
|
1658
|
+
}
|
|
1659
|
+
interface ResolveFieldPresentationOptions {
|
|
1660
|
+
jsonLogic?: FieldPresentationJsonLogicEvaluator | null;
|
|
1661
|
+
}
|
|
1662
|
+
/**
|
|
1663
|
+
* Resolves readonly field presentation from a base semantic config plus ordered
|
|
1664
|
+
* Json Logic rules. Later matching rules override earlier presentation values.
|
|
1665
|
+
*/
|
|
1666
|
+
declare function resolveFieldPresentation(base: FieldPresentationConfig | null | undefined, rules: readonly FieldPresentationRule[] | null | undefined, context?: JsonLogicDataRecord, options?: ResolveFieldPresentationOptions): ResolvedFieldPresentation;
|
|
1667
|
+
declare function normalizeFieldPresentation(value: FieldPresentationConfig | null | undefined): ResolvedFieldPresentation;
|
|
1668
|
+
|
|
1669
|
+
interface ResourceIdentityFieldMetadata {
|
|
1670
|
+
name: string;
|
|
1671
|
+
label?: string;
|
|
1672
|
+
presentation?: FieldPresentationConfig;
|
|
1673
|
+
}
|
|
1674
|
+
type ResourceIdentitySource = 'explicit' | 'resource-id-field' | 'host-id-field';
|
|
1675
|
+
interface ResourceIdentityDiagnostic {
|
|
1676
|
+
code: 'resource-identity.explicit-invalid' | 'resource-identity.id-field-contract-invalid' | 'resource-identity.id-field-invalid' | 'resource-identity.id-field-missing-from-schema' | 'resource-identity.fallback-used' | 'resource-identity.value-missing';
|
|
1677
|
+
severity: 'info' | 'warning';
|
|
1678
|
+
message: string;
|
|
1679
|
+
source?: ResourceIdentitySource;
|
|
1680
|
+
field?: string;
|
|
1681
|
+
invalidFields?: string[];
|
|
1682
|
+
}
|
|
1683
|
+
interface ResourceIdentityContract {
|
|
1684
|
+
keyField?: string;
|
|
1685
|
+
titleField?: string;
|
|
1686
|
+
metadataFields?: string[];
|
|
1687
|
+
displayLabelField?: string;
|
|
1688
|
+
valid: boolean;
|
|
1689
|
+
invalidFields?: string[];
|
|
1690
|
+
message?: string;
|
|
1691
|
+
source?: ResourceIdentitySource;
|
|
1692
|
+
diagnostics?: ResourceIdentityDiagnostic[];
|
|
1693
|
+
}
|
|
1694
|
+
interface ResourceIdentityPart {
|
|
1695
|
+
field: string;
|
|
1696
|
+
label?: string;
|
|
1697
|
+
value: unknown;
|
|
1698
|
+
presentation?: FieldPresentationConfig;
|
|
1699
|
+
}
|
|
1700
|
+
interface MaterializedResourceIdentity {
|
|
1701
|
+
key?: ResourceIdentityPart;
|
|
1702
|
+
title?: ResourceIdentityPart;
|
|
1703
|
+
metadata: ResourceIdentityPart[];
|
|
1704
|
+
displayLabel?: string;
|
|
1705
|
+
source?: ResourceIdentitySource;
|
|
1706
|
+
diagnostics?: ResourceIdentityDiagnostic[];
|
|
1707
|
+
}
|
|
1708
|
+
interface ResolveResourceIdentityOptions {
|
|
1709
|
+
explicitIdentity?: unknown;
|
|
1710
|
+
resourceIdField?: unknown;
|
|
1711
|
+
resourceIdFieldValid?: unknown;
|
|
1712
|
+
resourceIdFieldMessage?: unknown;
|
|
1713
|
+
effectiveIdField?: unknown;
|
|
1714
|
+
availableFields?: readonly ResourceIdentityFieldMetadata[] | readonly string[];
|
|
1715
|
+
}
|
|
1716
|
+
interface ResolvedResourceIdentityContract {
|
|
1717
|
+
contract: ResourceIdentityContract | null;
|
|
1718
|
+
diagnostics: ResourceIdentityDiagnostic[];
|
|
1719
|
+
}
|
|
1720
|
+
declare function normalizeResourceIdentityContract(value: unknown): ResourceIdentityContract | null;
|
|
1721
|
+
declare function resolveResourceIdentityContract(options: ResolveResourceIdentityOptions): ResolvedResourceIdentityContract;
|
|
1722
|
+
declare function materializeResourceIdentity(contract: ResourceIdentityContract | null | undefined, record: Record<string, unknown> | null | undefined, fields?: readonly ResourceIdentityFieldMetadata[]): MaterializedResourceIdentity | null;
|
|
1723
|
+
|
|
1551
1724
|
interface TableTooltipConfig {
|
|
1552
1725
|
text?: string;
|
|
1553
1726
|
position?: 'top' | 'right' | 'bottom' | 'left' | 'above' | 'below' | 'before' | 'after';
|
|
@@ -2278,6 +2451,12 @@ interface FilteringConfig {
|
|
|
2278
2451
|
showAdvanced?: boolean;
|
|
2279
2452
|
/** Permitir salvar tags/atalhos de filtro */
|
|
2280
2453
|
allowSaveTags?: boolean;
|
|
2454
|
+
/** Atalhos governados, somente leitura, aplicados como patch do DTO de filtro */
|
|
2455
|
+
tags?: Array<{
|
|
2456
|
+
id: string;
|
|
2457
|
+
label: string;
|
|
2458
|
+
patch: Record<string, any>;
|
|
2459
|
+
}>;
|
|
2281
2460
|
/** Debounce de alterações para auto-aplicar filtros (ms) */
|
|
2282
2461
|
changeDebounceMs?: number;
|
|
2283
2462
|
/** Modo de exibição do componente de filtro (modo único) */
|
|
@@ -2651,6 +2830,11 @@ interface ToolbarConfig {
|
|
|
2651
2830
|
columnsVisibility?: {
|
|
2652
2831
|
enabled?: boolean;
|
|
2653
2832
|
};
|
|
2833
|
+
/** Controle governado para alternar a densidade visual da tabela em runtime. */
|
|
2834
|
+
densityToggle?: {
|
|
2835
|
+
enabled?: boolean;
|
|
2836
|
+
values?: TableToolbarAppearanceDensity[];
|
|
2837
|
+
};
|
|
2654
2838
|
}
|
|
2655
2839
|
type TableToolbarAppearanceVariant = 'flat' | 'outlined' | 'elevated' | 'integrated';
|
|
2656
2840
|
type TableToolbarAppearanceDensity = 'compact' | 'comfortable' | 'spacious';
|
|
@@ -2699,6 +2883,18 @@ interface ToolbarActionTarget {
|
|
|
2699
2883
|
interface ToolbarActionEvent<TRecord = Record<string, unknown>> {
|
|
2700
2884
|
action: string;
|
|
2701
2885
|
actionConfig?: ToolbarAction;
|
|
2886
|
+
/**
|
|
2887
|
+
* Canonical identity of the single selected record, when the toolbar action
|
|
2888
|
+
* targets exactly one entity. This is runtime evidence and must not be
|
|
2889
|
+
* persisted back into table configuration.
|
|
2890
|
+
*/
|
|
2891
|
+
resourceIdentity?: MaterializedResourceIdentity | null;
|
|
2892
|
+
/**
|
|
2893
|
+
* Ephemeral DOM origin for restoring focus after an overlay launched by the
|
|
2894
|
+
* action closes. Runtime-only: consumers must not serialize it into table
|
|
2895
|
+
* configuration, action payloads, telemetry, or persisted preferences.
|
|
2896
|
+
*/
|
|
2897
|
+
focusOrigin?: HTMLElement;
|
|
2702
2898
|
target?: ToolbarActionTarget;
|
|
2703
2899
|
row?: TRecord;
|
|
2704
2900
|
selectedRow?: TRecord;
|
|
@@ -3910,73 +4106,6 @@ interface FormHelpPresentationConfig {
|
|
|
3910
4106
|
preferPopoverForControls?: string[];
|
|
3911
4107
|
}
|
|
3912
4108
|
|
|
3913
|
-
type FieldPresentationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
3914
|
-
type FieldPresentationAppearance = 'plain' | 'soft' | 'outlined' | 'filled';
|
|
3915
|
-
type FieldPresenterKind = 'text' | 'badge' | 'chip' | 'status' | 'iconValue' | 'progress' | 'rating' | 'microVisualization';
|
|
3916
|
-
interface FieldPresentationInteractions {
|
|
3917
|
-
/** Allows readonly surfaces to expose a copy affordance without changing the field value. */
|
|
3918
|
-
copy?: boolean;
|
|
3919
|
-
/** Allows readonly surfaces to expose contextual detail expansion. */
|
|
3920
|
-
details?: boolean;
|
|
3921
|
-
/** Allows readonly surfaces to expose inline expansion for long values. */
|
|
3922
|
-
expand?: boolean;
|
|
3923
|
-
/** Allows readonly surfaces to expose a link affordance when the value is navigable. */
|
|
3924
|
-
link?: boolean;
|
|
3925
|
-
}
|
|
3926
|
-
interface FieldPresentationConfig {
|
|
3927
|
-
/** Semantic display strategy for readonly/presentation surfaces. */
|
|
3928
|
-
presenter?: FieldPresenterKind;
|
|
3929
|
-
/** Alias accepted for schema authors that describe the semantic display as a variant. */
|
|
3930
|
-
variant?: FieldPresenterKind;
|
|
3931
|
-
/** Semantic tone mapped by consumers to theme tokens. */
|
|
3932
|
-
tone?: FieldPresentationTone;
|
|
3933
|
-
/** Material Symbols icon name, without arbitrary HTML. */
|
|
3934
|
-
icon?: string;
|
|
3935
|
-
/** Optional semantic label for status/chip/badge presentations. */
|
|
3936
|
-
label?: string;
|
|
3937
|
-
/** Optional secondary marker rendered by presentation-capable consumers. */
|
|
3938
|
-
badge?: string;
|
|
3939
|
-
/** Optional tooltip text for the presentation wrapper. */
|
|
3940
|
-
tooltip?: string;
|
|
3941
|
-
/** Optional readonly prefix rendered next to the displayed value without changing the raw value. */
|
|
3942
|
-
prefix?: string;
|
|
3943
|
-
/** Optional readonly suffix rendered next to the displayed value without changing the raw value. */
|
|
3944
|
-
suffix?: string;
|
|
3945
|
-
/** Visual density/emphasis strategy mapped by consumers to theme tokens. */
|
|
3946
|
-
appearance?: FieldPresentationAppearance;
|
|
3947
|
-
/** Optional formatter override for the presentation surface only. */
|
|
3948
|
-
valuePresentation?: ValuePresentationConfig;
|
|
3949
|
-
/** Renderer-neutral micro visualization metadata for compact presentation surfaces. */
|
|
3950
|
-
visualization?: PraxisPresentationVisualizationConfig;
|
|
3951
|
-
/** Safe readonly affordances. No commands or mutations are executed from this contract. */
|
|
3952
|
-
interactions?: FieldPresentationInteractions;
|
|
3953
|
-
}
|
|
3954
|
-
interface FieldPresentationRule {
|
|
3955
|
-
/** Json Logic guard evaluated against the presentation context. */
|
|
3956
|
-
when: JsonLogicExpression;
|
|
3957
|
-
/** Semantic presentation state merged when the guard is truthy. */
|
|
3958
|
-
set?: FieldPresentationConfig;
|
|
3959
|
-
/** Alias for `set`, useful for rule-builder terminology. */
|
|
3960
|
-
effect?: FieldPresentationConfig;
|
|
3961
|
-
}
|
|
3962
|
-
interface ResolvedFieldPresentation extends FieldPresentationConfig {
|
|
3963
|
-
/** Indicates at least one conditional rule matched the current context. */
|
|
3964
|
-
matchedRule?: boolean;
|
|
3965
|
-
}
|
|
3966
|
-
interface FieldPresentationJsonLogicEvaluator {
|
|
3967
|
-
evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord): unknown;
|
|
3968
|
-
truthy?(value: unknown): boolean;
|
|
3969
|
-
}
|
|
3970
|
-
interface ResolveFieldPresentationOptions {
|
|
3971
|
-
jsonLogic?: FieldPresentationJsonLogicEvaluator | null;
|
|
3972
|
-
}
|
|
3973
|
-
/**
|
|
3974
|
-
* Resolves readonly field presentation from a base semantic config plus ordered
|
|
3975
|
-
* Json Logic rules. Later matching rules override earlier presentation values.
|
|
3976
|
-
*/
|
|
3977
|
-
declare function resolveFieldPresentation(base: FieldPresentationConfig | null | undefined, rules: readonly FieldPresentationRule[] | null | undefined, context?: JsonLogicDataRecord, options?: ResolveFieldPresentationOptions): ResolvedFieldPresentation;
|
|
3978
|
-
declare function normalizeFieldPresentation(value: FieldPresentationConfig | null | undefined): ResolvedFieldPresentation;
|
|
3979
|
-
|
|
3980
4109
|
/**
|
|
3981
4110
|
* @fileoverview Base metadata interfaces for dynamic Angular Material components
|
|
3982
4111
|
*
|
|
@@ -5234,61 +5363,6 @@ declare class GlobalConfigService {
|
|
|
5234
5363
|
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalConfigService>;
|
|
5235
5364
|
}
|
|
5236
5365
|
|
|
5237
|
-
interface ResourceIdentityFieldMetadata {
|
|
5238
|
-
name: string;
|
|
5239
|
-
label?: string;
|
|
5240
|
-
presentation?: FieldPresentationConfig;
|
|
5241
|
-
}
|
|
5242
|
-
type ResourceIdentitySource = 'explicit' | 'resource-id-field' | 'host-id-field';
|
|
5243
|
-
interface ResourceIdentityDiagnostic {
|
|
5244
|
-
code: 'resource-identity.explicit-invalid' | 'resource-identity.id-field-contract-invalid' | 'resource-identity.id-field-invalid' | 'resource-identity.id-field-missing-from-schema' | 'resource-identity.fallback-used' | 'resource-identity.value-missing';
|
|
5245
|
-
severity: 'info' | 'warning';
|
|
5246
|
-
message: string;
|
|
5247
|
-
source?: ResourceIdentitySource;
|
|
5248
|
-
field?: string;
|
|
5249
|
-
invalidFields?: string[];
|
|
5250
|
-
}
|
|
5251
|
-
interface ResourceIdentityContract {
|
|
5252
|
-
keyField?: string;
|
|
5253
|
-
titleField?: string;
|
|
5254
|
-
metadataFields?: string[];
|
|
5255
|
-
displayLabelField?: string;
|
|
5256
|
-
valid: boolean;
|
|
5257
|
-
invalidFields?: string[];
|
|
5258
|
-
message?: string;
|
|
5259
|
-
source?: ResourceIdentitySource;
|
|
5260
|
-
diagnostics?: ResourceIdentityDiagnostic[];
|
|
5261
|
-
}
|
|
5262
|
-
interface ResourceIdentityPart {
|
|
5263
|
-
field: string;
|
|
5264
|
-
label?: string;
|
|
5265
|
-
value: unknown;
|
|
5266
|
-
presentation?: FieldPresentationConfig;
|
|
5267
|
-
}
|
|
5268
|
-
interface MaterializedResourceIdentity {
|
|
5269
|
-
key?: ResourceIdentityPart;
|
|
5270
|
-
title?: ResourceIdentityPart;
|
|
5271
|
-
metadata: ResourceIdentityPart[];
|
|
5272
|
-
displayLabel?: string;
|
|
5273
|
-
source?: ResourceIdentitySource;
|
|
5274
|
-
diagnostics?: ResourceIdentityDiagnostic[];
|
|
5275
|
-
}
|
|
5276
|
-
interface ResolveResourceIdentityOptions {
|
|
5277
|
-
explicitIdentity?: unknown;
|
|
5278
|
-
resourceIdField?: unknown;
|
|
5279
|
-
resourceIdFieldValid?: unknown;
|
|
5280
|
-
resourceIdFieldMessage?: unknown;
|
|
5281
|
-
effectiveIdField?: unknown;
|
|
5282
|
-
availableFields?: readonly ResourceIdentityFieldMetadata[] | readonly string[];
|
|
5283
|
-
}
|
|
5284
|
-
interface ResolvedResourceIdentityContract {
|
|
5285
|
-
contract: ResourceIdentityContract | null;
|
|
5286
|
-
diagnostics: ResourceIdentityDiagnostic[];
|
|
5287
|
-
}
|
|
5288
|
-
declare function normalizeResourceIdentityContract(value: unknown): ResourceIdentityContract | null;
|
|
5289
|
-
declare function resolveResourceIdentityContract(options: ResolveResourceIdentityOptions): ResolvedResourceIdentityContract;
|
|
5290
|
-
declare function materializeResourceIdentity(contract: ResourceIdentityContract | null | undefined, record: Record<string, unknown> | null | undefined, fields?: readonly ResourceIdentityFieldMetadata[]): MaterializedResourceIdentity | null;
|
|
5291
|
-
|
|
5292
5366
|
/**
|
|
5293
5367
|
* Interface para configuração de endpoints personalizados.
|
|
5294
5368
|
*
|
|
@@ -6111,6 +6185,7 @@ declare class GlobalActionService {
|
|
|
6111
6185
|
private readonly api;
|
|
6112
6186
|
private readonly guardResolver;
|
|
6113
6187
|
private readonly surfaceBindingRuntime;
|
|
6188
|
+
private readonly i18n;
|
|
6114
6189
|
constructor();
|
|
6115
6190
|
register(id: string, handler: GlobalActionHandler): void;
|
|
6116
6191
|
has(id: string): boolean;
|
|
@@ -10119,12 +10194,23 @@ interface ResourceActionOpenAdapterOptions {
|
|
|
10119
10194
|
title?: string;
|
|
10120
10195
|
subtitle?: string;
|
|
10121
10196
|
icon?: string;
|
|
10197
|
+
/** Current entity version used when execution requires an If-Match precondition. */
|
|
10198
|
+
resourceVersion?: string | number | null;
|
|
10199
|
+
/** Runtime binding used when the row version is only available when the action executes. */
|
|
10200
|
+
resourceVersionBindingPath?: string;
|
|
10201
|
+
/** Correlates this command with the host workflow and observability trail. */
|
|
10202
|
+
correlationId?: string | null;
|
|
10203
|
+
/** Initial command payload values materialized from a governed table selection. */
|
|
10204
|
+
initialValue?: Record<string, unknown> | null;
|
|
10122
10205
|
}
|
|
10123
10206
|
declare class ResourceActionOpenAdapterService {
|
|
10124
10207
|
private readonly discovery;
|
|
10125
10208
|
toPayload(action: ResourceActionCatalogItem, options: ResourceActionOpenAdapterOptions): SurfaceOpenPayload;
|
|
10126
10209
|
private resolveDynamicFormPreset;
|
|
10127
10210
|
private buildStableInstanceId;
|
|
10211
|
+
private applyExecutionInputs;
|
|
10212
|
+
private createIdempotencyKey;
|
|
10213
|
+
private createCommandIdentity;
|
|
10128
10214
|
private normalizeResourcePath;
|
|
10129
10215
|
private buildIdBinding;
|
|
10130
10216
|
private clone;
|
|
@@ -10143,12 +10229,15 @@ interface ResourceSurfaceOpenAdapterOptions {
|
|
|
10143
10229
|
title?: string;
|
|
10144
10230
|
subtitle?: string;
|
|
10145
10231
|
icon?: string;
|
|
10232
|
+
parentIdentity?: MaterializedResourceIdentity | null;
|
|
10146
10233
|
queryContext?: Record<string, any>;
|
|
10147
10234
|
}
|
|
10148
10235
|
declare class ResourceSurfaceOpenAdapterService {
|
|
10149
10236
|
private readonly discovery;
|
|
10237
|
+
private readonly relatedResourceResolver;
|
|
10150
10238
|
toPayload(surface: ResourceSurfaceCatalogItem, options: ResourceSurfaceOpenAdapterOptions): SurfaceOpenPayload;
|
|
10151
10239
|
private buildBasePayload;
|
|
10240
|
+
private resolveDefaultIcon;
|
|
10152
10241
|
private buildStableInstanceId;
|
|
10153
10242
|
private withInputBefore;
|
|
10154
10243
|
private normalizeResourcePath;
|
|
@@ -10197,6 +10286,7 @@ interface RelatedResourceSurfaceResolverRequest {
|
|
|
10197
10286
|
surface?: ResourceSurfaceCatalogItem | null;
|
|
10198
10287
|
parentRecord?: Record<string, unknown> | null;
|
|
10199
10288
|
parentResourceId?: string | number | null;
|
|
10289
|
+
parentIdentity?: MaterializedResourceIdentity | null;
|
|
10200
10290
|
parentResourcePath?: string | null;
|
|
10201
10291
|
presentation?: SurfacePresentation;
|
|
10202
10292
|
title?: string | null;
|
|
@@ -10278,10 +10368,14 @@ declare class SurfaceOpenMaterializerService {
|
|
|
10278
10368
|
private hasRelatedChildWriteOperations;
|
|
10279
10369
|
private resolveRelatedChildOperations;
|
|
10280
10370
|
private resolveRelatedResource;
|
|
10371
|
+
private buildRelatedParentInitialValue;
|
|
10372
|
+
private buildRelatedContextFields;
|
|
10281
10373
|
private resolveRelatedSelectionKeyField;
|
|
10282
10374
|
private resolveSurfacePath;
|
|
10283
10375
|
private normalizeResourcePath;
|
|
10284
10376
|
private resolveRelatedActionNoun;
|
|
10377
|
+
private singularizePtBrWord;
|
|
10378
|
+
private resolveRelatedActionDescription;
|
|
10285
10379
|
private inferColumnsFromData;
|
|
10286
10380
|
private extractCollectionData;
|
|
10287
10381
|
private mergeMaterializationContext;
|
|
@@ -10815,6 +10909,9 @@ interface ObservabilityAlertRule {
|
|
|
10815
10909
|
component?: string;
|
|
10816
10910
|
actionId?: string;
|
|
10817
10911
|
};
|
|
10912
|
+
matchData?: {
|
|
10913
|
+
code?: string;
|
|
10914
|
+
};
|
|
10818
10915
|
throttleMs?: number;
|
|
10819
10916
|
}
|
|
10820
10917
|
interface ObservabilityCountBucket {
|
|
@@ -10906,6 +11003,7 @@ declare class ObservabilityDashboardService {
|
|
|
10906
11003
|
clear(): void;
|
|
10907
11004
|
private evaluateAlerts;
|
|
10908
11005
|
private matchesRuleContext;
|
|
11006
|
+
private matchesRuleData;
|
|
10909
11007
|
private buildAlertContext;
|
|
10910
11008
|
private groupRecordsByRule;
|
|
10911
11009
|
private trimRecords;
|
|
@@ -11218,6 +11316,48 @@ interface SurfaceDrawerResult<T = unknown> {
|
|
|
11218
11316
|
type?: string;
|
|
11219
11317
|
data?: T;
|
|
11220
11318
|
}
|
|
11319
|
+
/**
|
|
11320
|
+
* Runtime-only navigation state for a single primary drawer surface.
|
|
11321
|
+
*
|
|
11322
|
+
* It is deliberately not part of persisted metadata: component types, guards,
|
|
11323
|
+
* focus and dirty-state lifecycle belong to the active host session.
|
|
11324
|
+
*/
|
|
11325
|
+
interface SurfaceDrawerNavigationState {
|
|
11326
|
+
readonly sessionId: string;
|
|
11327
|
+
readonly activeFrameId: string;
|
|
11328
|
+
readonly depth: number;
|
|
11329
|
+
readonly canGoBack: boolean;
|
|
11330
|
+
}
|
|
11331
|
+
type SurfaceDrawerNavigationGuard = () => boolean | Promise<boolean>;
|
|
11332
|
+
type SurfaceNavigationFailureCode = 'SURFACE_SESSION_NAVIGATION_REJECTED';
|
|
11333
|
+
type SurfaceNavigationOperation = 'push' | 'replace' | 'back';
|
|
11334
|
+
/**
|
|
11335
|
+
* Controlled failure emitted when an active runtime surface session refuses a
|
|
11336
|
+
* navigation transition. `frameId` is diagnostic-only and must not be shown in
|
|
11337
|
+
* end-user feedback.
|
|
11338
|
+
*/
|
|
11339
|
+
declare class SurfaceNavigationError extends Error {
|
|
11340
|
+
readonly code: SurfaceNavigationFailureCode;
|
|
11341
|
+
readonly operation: SurfaceNavigationOperation;
|
|
11342
|
+
readonly frameId?: string | undefined;
|
|
11343
|
+
constructor(code: SurfaceNavigationFailureCode, operation: SurfaceNavigationOperation, frameId?: string | undefined);
|
|
11344
|
+
}
|
|
11345
|
+
declare function isSurfaceNavigationError(error: unknown): error is SurfaceNavigationError;
|
|
11346
|
+
interface SurfaceDrawerNavigationFrame<TInputs = any> {
|
|
11347
|
+
id: string;
|
|
11348
|
+
title: string;
|
|
11349
|
+
titleIcon?: string;
|
|
11350
|
+
subtitle?: string;
|
|
11351
|
+
content: SurfaceDrawerOpenContent<TInputs>;
|
|
11352
|
+
/**
|
|
11353
|
+
* Runtime-only focus target to restore when this nested frame closes and
|
|
11354
|
+
* its parent frame resumes. Never serialize this DOM reference into a
|
|
11355
|
+
* surface definition, configuration document, telemetry, or payload.
|
|
11356
|
+
*/
|
|
11357
|
+
returnFocusTo?: HTMLElement;
|
|
11358
|
+
/** Optional runtime guard used before this frame is replaced or left. */
|
|
11359
|
+
canLeave?: SurfaceDrawerNavigationGuard;
|
|
11360
|
+
}
|
|
11221
11361
|
interface SurfaceDrawerRef<T = unknown> {
|
|
11222
11362
|
/**
|
|
11223
11363
|
* Emits once when the drawer closes, regardless of whether a semantic result
|
|
@@ -11235,6 +11375,21 @@ interface SurfaceDrawerRef<T = unknown> {
|
|
|
11235
11375
|
close?(result?: SurfaceDrawerResult<T>): void;
|
|
11236
11376
|
updateTitle?(title: string): void;
|
|
11237
11377
|
updateSize?(preset: SurfaceDrawerWidthPreset | string): void;
|
|
11378
|
+
/** State of the in-drawer navigation session, when supported by the host. */
|
|
11379
|
+
navigation$?: Observable<SurfaceDrawerNavigationState>;
|
|
11380
|
+
/** Adds a task step without opening a second overlay. */
|
|
11381
|
+
push?<TInputs = any>(frame: SurfaceDrawerNavigationFrame<TInputs>): Promise<SurfaceDrawerFrameRef | null>;
|
|
11382
|
+
/** Replaces the current task step after its leave guard succeeds. */
|
|
11383
|
+
replace?<TInputs = any>(frame: SurfaceDrawerNavigationFrame<TInputs>): Promise<SurfaceDrawerFrameRef | null>;
|
|
11384
|
+
/** Returns to the previous task step and restores its live view state. */
|
|
11385
|
+
back?(): Promise<boolean>;
|
|
11386
|
+
canGoBack?(): boolean;
|
|
11387
|
+
/** Registers or clears the leave guard of the active frame. */
|
|
11388
|
+
setCanLeave?(guard: SurfaceDrawerNavigationGuard | null): void;
|
|
11389
|
+
}
|
|
11390
|
+
/** A result scope for one step inside a drawer navigation session. */
|
|
11391
|
+
interface SurfaceDrawerFrameRef<T = unknown> extends SurfaceDrawerRef<T> {
|
|
11392
|
+
readonly frameId: string;
|
|
11238
11393
|
}
|
|
11239
11394
|
interface SurfaceDrawerOpenContent<TInputs = any> {
|
|
11240
11395
|
component: Type<any>;
|
|
@@ -11268,6 +11423,22 @@ interface SurfaceDrawerBridge {
|
|
|
11268
11423
|
open<TInputs = any, TResult = unknown>(opts: SurfaceDrawerOpenOptions<TInputs>): SurfaceDrawerRef<TResult>;
|
|
11269
11424
|
}
|
|
11270
11425
|
declare const SURFACE_DRAWER_BRIDGE: InjectionToken<SurfaceDrawerBridge>;
|
|
11426
|
+
/**
|
|
11427
|
+
* Reference to the active frame of a runtime drawer session.
|
|
11428
|
+
*
|
|
11429
|
+
* Components materialized inside a `SurfaceDrawerBridge` may inject this token
|
|
11430
|
+
* to publish outcomes, navigate or register a leave guard without depending on
|
|
11431
|
+
* a concrete drawer implementation.
|
|
11432
|
+
*/
|
|
11433
|
+
declare const SURFACE_DRAWER_REF: InjectionToken<SurfaceDrawerRef<unknown>>;
|
|
11434
|
+
/**
|
|
11435
|
+
* Runtime-only inputs used to materialize the active drawer frame.
|
|
11436
|
+
*
|
|
11437
|
+
* This token mirrors `content.inputs` and deliberately does not belong to
|
|
11438
|
+
* persisted metadata. It lets dynamically created hosts consume their launch
|
|
11439
|
+
* data through DI while regular component inputs remain available.
|
|
11440
|
+
*/
|
|
11441
|
+
declare const SURFACE_DRAWER_CONTENT_DATA: InjectionToken<Readonly<Record<string, unknown>>>;
|
|
11271
11442
|
|
|
11272
11443
|
declare const TABLE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
11273
11444
|
declare const STEPPER_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
@@ -11338,6 +11509,22 @@ declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLo
|
|
|
11338
11509
|
declare function interpolatePraxisTranslation(template: string, params?: PraxisTranslationParams): string;
|
|
11339
11510
|
declare function mergePraxisI18nConfigs(...configs: Array<Partial<PraxisI18nConfig> | null | undefined>): PraxisI18nConfig;
|
|
11340
11511
|
|
|
11512
|
+
interface PraxisI18nDocumentResolveOptions {
|
|
11513
|
+
i18n: PraxisI18nService;
|
|
11514
|
+
locale?: string | null;
|
|
11515
|
+
config?: Partial<PraxisI18nConfig> | null;
|
|
11516
|
+
namespace?: string;
|
|
11517
|
+
}
|
|
11518
|
+
/**
|
|
11519
|
+
* Resolves explicit `PraxisTextValue` descriptors in a JSON-like authored
|
|
11520
|
+
* document without mutating the canonical source document.
|
|
11521
|
+
*
|
|
11522
|
+
* Plain strings are intentionally preserved: host-owned business copy only
|
|
11523
|
+
* becomes locale-aware when the author supplies an explicit descriptor.
|
|
11524
|
+
*/
|
|
11525
|
+
declare function resolvePraxisI18nDocument<TResolved = unknown>(document: unknown, options: PraxisI18nDocumentResolveOptions): TResolved;
|
|
11526
|
+
declare function isPraxisI18nMessageDescriptor(value: unknown): value is PraxisI18nMessageDescriptor;
|
|
11527
|
+
|
|
11341
11528
|
declare const COMPONENT_METADATA_REGISTRY_I18N_NAMESPACE = "componentMetadataRegistry";
|
|
11342
11529
|
declare const COMPONENT_METADATA_REGISTRY_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
11343
11530
|
|
|
@@ -11349,6 +11536,10 @@ declare function translateResourceDiscoveryText(i18n: PraxisI18nService, key: st
|
|
|
11349
11536
|
declare function translateResourceAvailabilityReason(i18n: PraxisI18nService, reason: string | null | undefined): string;
|
|
11350
11537
|
declare function translateUnavailableWorkflowMessage(i18n: PraxisI18nService, availability?: ResourceAvailabilityDecision | null): string;
|
|
11351
11538
|
|
|
11539
|
+
declare const SURFACE_NAVIGATION_I18N_NAMESPACE = "surfaceNavigation";
|
|
11540
|
+
declare const SURFACE_NAVIGATION_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
11541
|
+
declare function translateSurfaceNavigationRejected(i18n: Pick<PraxisI18nService, 't' | 'getLocale'>): string;
|
|
11542
|
+
|
|
11352
11543
|
declare function resolveValuePresentation(config: ValuePresentationConfig, context?: ValuePresentationResolutionContext): ResolvedValuePresentation;
|
|
11353
11544
|
declare function resolveValuePresentationLocale(context?: ValuePresentationResolutionContext, localization?: LocalizationConfig | null): string;
|
|
11354
11545
|
declare function supportsImplicitValuePresentation(type: ValuePresentationType | null | undefined): boolean;
|
|
@@ -12298,6 +12489,7 @@ interface FormConfigMetadata {
|
|
|
12298
12489
|
};
|
|
12299
12490
|
groupedCommand?: {
|
|
12300
12491
|
orphanFieldExpansion?: 'preserve' | 'medium-and-wide' | 'all';
|
|
12492
|
+
contextFields?: readonly string[];
|
|
12301
12493
|
};
|
|
12302
12494
|
};
|
|
12303
12495
|
/** Server data hash for change detection */
|
|
@@ -13003,11 +13195,11 @@ interface WidgetShellAction {
|
|
|
13003
13195
|
/** Unique action id used for tracking and default emit name. */
|
|
13004
13196
|
id: string;
|
|
13005
13197
|
/** Optional label for text or outlined buttons. */
|
|
13006
|
-
label?:
|
|
13198
|
+
label?: PraxisTextValue;
|
|
13007
13199
|
/** Optional icon name (Material or Praxis icon registry). */
|
|
13008
13200
|
icon?: string;
|
|
13009
13201
|
/** Tooltip text for the action. */
|
|
13010
|
-
tooltip?:
|
|
13202
|
+
tooltip?: PraxisTextValue;
|
|
13011
13203
|
/** Visual style of the action button. */
|
|
13012
13204
|
variant?: 'icon' | 'text' | 'outlined';
|
|
13013
13205
|
/** Optional icon rendered when the action is pressed. Falls back to `icon`. */
|
|
@@ -13042,9 +13234,9 @@ interface WidgetShellConfig {
|
|
|
13042
13234
|
/** Header icon name. */
|
|
13043
13235
|
icon?: string;
|
|
13044
13236
|
/** Header title. */
|
|
13045
|
-
title?:
|
|
13237
|
+
title?: PraxisTextValue;
|
|
13046
13238
|
/** Header subtitle. */
|
|
13047
|
-
subtitle?:
|
|
13239
|
+
subtitle?: PraxisTextValue;
|
|
13048
13240
|
/** Whether to show the header; defaults to true when title/icon/actions exist. */
|
|
13049
13241
|
showHeader?: boolean;
|
|
13050
13242
|
/** Header + window actions. */
|
|
@@ -13326,6 +13518,15 @@ interface WidgetPageCompositionDefinition {
|
|
|
13326
13518
|
type WidgetPageSlotAssignments = Record<string, string>;
|
|
13327
13519
|
interface WidgetPageDefinition {
|
|
13328
13520
|
widgets: WidgetInstance[];
|
|
13521
|
+
/**
|
|
13522
|
+
* Page-owned business copy catalog used to resolve `PraxisTextValue`
|
|
13523
|
+
* descriptors inside widget shells and nested widget inputs at render time.
|
|
13524
|
+
*
|
|
13525
|
+
* The authored document remains unchanged; only the runtime projection is
|
|
13526
|
+
* localized. Framework chrome continues to come from the owning library
|
|
13527
|
+
* catalogs registered through `PraxisI18nService`.
|
|
13528
|
+
*/
|
|
13529
|
+
i18n?: Partial<PraxisI18nConfig>;
|
|
13329
13530
|
/**
|
|
13330
13531
|
* Canonical persisted composition surface.
|
|
13331
13532
|
* `composition.links` is the nominal saved shape for `CompositionLink[]`.
|
|
@@ -13466,6 +13667,35 @@ interface PraxisResourceSelectionPayload<TRow = unknown> {
|
|
|
13466
13667
|
tableId?: string;
|
|
13467
13668
|
}
|
|
13468
13669
|
|
|
13670
|
+
interface SurfaceOperationResourceRef {
|
|
13671
|
+
readonly resourceKey: string;
|
|
13672
|
+
readonly resourceId: string | number;
|
|
13673
|
+
/** Read-only display identity. It is not authorization evidence or form data. */
|
|
13674
|
+
readonly identity?: MaterializedResourceIdentity | null;
|
|
13675
|
+
}
|
|
13676
|
+
interface SurfaceOperationRelationship {
|
|
13677
|
+
readonly surfaceId?: string;
|
|
13678
|
+
readonly childResourceKey?: string;
|
|
13679
|
+
readonly parentField?: string;
|
|
13680
|
+
}
|
|
13681
|
+
/**
|
|
13682
|
+
* JSON-safe operation context carried by governed surfaces.
|
|
13683
|
+
*
|
|
13684
|
+
* `taskScope` identifies the record that owns the current work, while `subject`
|
|
13685
|
+
* identifies the record directly affected by an operation when one exists.
|
|
13686
|
+
* Neither role replaces capabilities, HATEOAS links or backend authorization.
|
|
13687
|
+
*/
|
|
13688
|
+
interface SurfaceOperationContext {
|
|
13689
|
+
readonly taskScope?: SurfaceOperationResourceRef;
|
|
13690
|
+
readonly subject?: SurfaceOperationResourceRef;
|
|
13691
|
+
readonly relationship?: SurfaceOperationRelationship;
|
|
13692
|
+
}
|
|
13693
|
+
/**
|
|
13694
|
+
* Reads an untrusted surface operation context into a detached JSON-safe value.
|
|
13695
|
+
* Invalid roles are omitted and a completely empty context resolves to `null`.
|
|
13696
|
+
*/
|
|
13697
|
+
declare function normalizeSurfaceOperationContext(value: unknown): SurfaceOperationContext | null;
|
|
13698
|
+
|
|
13469
13699
|
type RecordRelatedSurfaceOperationId = 'dynamicPage.surface.discover' | 'dynamicPage.surface.open' | 'dynamicPage.surface.query';
|
|
13470
13700
|
interface RecordRelatedSurfaceEndpoint {
|
|
13471
13701
|
widget: string;
|
|
@@ -13804,6 +14034,12 @@ interface DynamicFormGroupedCommandPolicy {
|
|
|
13804
14034
|
* medium/wide fields (6+ columns), preserving intentionally compact fields.
|
|
13805
14035
|
*/
|
|
13806
14036
|
orphanFieldExpansion?: DynamicFormGroupedCommandOrphanFieldExpansion;
|
|
14037
|
+
/**
|
|
14038
|
+
* Schema field names whose values are supplied by the surrounding business
|
|
14039
|
+
* context. Context fields remain part of the runtime form and submit payload,
|
|
14040
|
+
* but are omitted from the interactive command layout.
|
|
14041
|
+
*/
|
|
14042
|
+
contextFields?: readonly string[];
|
|
13807
14043
|
}
|
|
13808
14044
|
interface DynamicFormLayoutPolicy {
|
|
13809
14045
|
source: DynamicFormLayoutSource;
|
|
@@ -14414,6 +14650,7 @@ declare module "./praxisui-core" {
|
|
|
14414
14650
|
connections: true;
|
|
14415
14651
|
context: true;
|
|
14416
14652
|
state: true;
|
|
14653
|
+
localization: true;
|
|
14417
14654
|
}
|
|
14418
14655
|
}
|
|
14419
14656
|
type CapabilityCategory = AiCapabilityCategory;
|
|
@@ -14561,9 +14798,11 @@ declare class NestedWidgetConfigAccessor {
|
|
|
14561
14798
|
listNestedWidgets(owner: WidgetInstance): NestedWidgetResolution[];
|
|
14562
14799
|
resolveNestedWidget(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined): WidgetDefinition | undefined;
|
|
14563
14800
|
setNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string, value: unknown): NestedWidgetInputPatchResult;
|
|
14801
|
+
removeNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string): NestedWidgetInputPatchResult;
|
|
14564
14802
|
private listNestedWidgetsInDefinition;
|
|
14565
14803
|
private resolveNestedWidgetInDefinition;
|
|
14566
14804
|
private setNestedWidgetInputInDefinition;
|
|
14805
|
+
private removeNestedWidgetInputInDefinition;
|
|
14567
14806
|
private listChildWidgetLocations;
|
|
14568
14807
|
private listTabsWidgetLocations;
|
|
14569
14808
|
private listExpansionWidgetLocations;
|
|
@@ -14858,6 +15097,8 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
14858
15097
|
dragSurfacePointerDown: EventEmitter<PointerEvent>;
|
|
14859
15098
|
dragSurfaceKeydown: EventEmitter<KeyboardEvent>;
|
|
14860
15099
|
loader?: DynamicWidgetLoaderDirective;
|
|
15100
|
+
shellText(value: PraxisTextValue | null | undefined, fallback?: string): string;
|
|
15101
|
+
actionText(value: PraxisTextValue | null | undefined, fallback?: string): string;
|
|
14861
15102
|
get appearance(): WidgetShellConfig['appearance'];
|
|
14862
15103
|
collapsed: boolean;
|
|
14863
15104
|
expanded: boolean;
|
|
@@ -15456,6 +15697,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
15456
15697
|
private cloneStateValues;
|
|
15457
15698
|
private cloneGrouping;
|
|
15458
15699
|
private resolveShellTemplates;
|
|
15700
|
+
private localizeRuntimeProjection;
|
|
15459
15701
|
private enrichRuntimeWidgetInputs;
|
|
15460
15702
|
private buildRichContentHostCapabilities;
|
|
15461
15703
|
private dispatchRichContentAction;
|
|
@@ -15495,6 +15737,11 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
15495
15737
|
private handleToggleInputCommand;
|
|
15496
15738
|
private mergeOrder;
|
|
15497
15739
|
private maybeExecuteMappedAction;
|
|
15740
|
+
/**
|
|
15741
|
+
* Keeps ephemeral browser concerns out of authored output mappings while
|
|
15742
|
+
* allowing the visual surface provider to restore focus after completion.
|
|
15743
|
+
*/
|
|
15744
|
+
private resolveWidgetEventRuntime;
|
|
15498
15745
|
private resolveActionPayload;
|
|
15499
15746
|
private resolveTemplate;
|
|
15500
15747
|
private lookup;
|
|
@@ -15547,7 +15794,6 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
15547
15794
|
selectWidgetFromHostEvent(widgetKey: string, event: Event): void;
|
|
15548
15795
|
isCanvasWidgetSelected(widgetKey: string): boolean;
|
|
15549
15796
|
isWidgetSelected(widgetKey: string): boolean;
|
|
15550
|
-
private shouldPreserveInnerWidgetInteraction;
|
|
15551
15797
|
selectCanvasWidget(widgetKey: string): void;
|
|
15552
15798
|
getPageSnapshot(): WidgetPageDefinition;
|
|
15553
15799
|
isCanvasWidgetBlocked(widgetKey: string): boolean;
|
|
@@ -15660,6 +15906,7 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
15660
15906
|
readonly beforeWidgetKey = "surface.before";
|
|
15661
15907
|
readonly mainWidgetKey = "surface.main";
|
|
15662
15908
|
readonly afterWidgetKey = "surface.after";
|
|
15909
|
+
protected operationIdentity(): MaterializedResourceIdentity | null;
|
|
15663
15910
|
ngAfterViewInit(): void;
|
|
15664
15911
|
ngOnChanges(changes: SimpleChanges): void;
|
|
15665
15912
|
private scheduleWidgetRender;
|
|
@@ -15701,6 +15948,7 @@ declare class PraxisRelatedResourceOutletComponent {
|
|
|
15701
15948
|
readonly apiUrlEntry: i0.InputSignal<ApiUrlEntry | null>;
|
|
15702
15949
|
readonly parentRecord: i0.InputSignal<Record<string, unknown> | null>;
|
|
15703
15950
|
readonly parentResourceId: i0.InputSignal<string | number | null>;
|
|
15951
|
+
readonly parentIdentity: i0.InputSignal<MaterializedResourceIdentity | null>;
|
|
15704
15952
|
readonly parentResourcePath: i0.InputSignal<string | null>;
|
|
15705
15953
|
readonly presentation: i0.InputSignal<SurfacePresentation>;
|
|
15706
15954
|
readonly title: i0.InputSignal<string | null>;
|
|
@@ -15748,9 +15996,10 @@ declare class PraxisRelatedResourceOutletComponent {
|
|
|
15748
15996
|
private extractResourceEvent;
|
|
15749
15997
|
private trim;
|
|
15750
15998
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisRelatedResourceOutletComponent, never>;
|
|
15751
|
-
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>;
|
|
15999
|
+
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; }; "parentIdentity": { "alias": "parentIdentity"; "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>;
|
|
15752
16000
|
}
|
|
15753
16001
|
|
|
16002
|
+
declare const PRAXIS_RELATED_RESOURCE_OUTLET_PORTS: PortContract[];
|
|
15754
16003
|
declare const PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA: ComponentDocMeta;
|
|
15755
16004
|
declare function providePraxisRelatedResourceOutletMetadata(): Provider;
|
|
15756
16005
|
|
|
@@ -16173,5 +16422,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
16173
16422
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
16174
16423
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
16175
16424
|
|
|
16176
|
-
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_TABLE_DETAIL_RESOURCE_RESOLVER, 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, PraxisIconButtonComponent, 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, getPraxisTableCellVisualizationConstraint, getPraxisTableCellVisualizationGuidance, 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, resolveResourceIdentityContract, 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 };
|
|
16177
|
-
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, DynamicFormGroupedCommandOrphanFieldExpansion, DynamicFormGroupedCommandPolicy, 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, LookupSearchStrategyKind, LookupSearchStrategyMetadata, 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, PraxisIconButtonAppearance, PraxisIconButtonPresentation, PraxisIconButtonSize, 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, PraxisRuntimeVisualMaterializationCapability, PraxisRuntimeVisualMaterializationStatus, PraxisSubmitError, PraxisSubmitErrorDetail, PraxisTableCellVisualizationConstraint, PraxisTableCellVisualizationGuidance, 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, ResolveResourceIdentityOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedResourceIdentityContract, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCanonicalCapabilityOperationId, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceIdentityContract, ResourceIdentityDiagnostic, ResourceIdentityFieldMetadata, ResourceIdentityPart, ResourceIdentitySource, 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, SurfaceLifecycleCondition, SurfaceLifecycleOutcomeBinding, SurfaceLifecyclePolicy, SurfaceOpenPayload, SurfaceOpenPreset, SurfaceOutcome, SurfaceOutcomeKind, 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, TableDetailResourceDocument, TableDetailResourceResolver, TableDetailResourceResolverRequest, TableDetailResourceResolverResult, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarActionEvent, ToolbarActionTarget, ToolbarActionTargetCardinality, ToolbarActionTargetScope, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
16425
|
+
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_RELATED_RESOURCE_OUTLET_PORTS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS, PRAXIS_TABLE_DETAIL_INLINE_RENDERERS, PRAXIS_TABLE_DETAIL_RESOURCE_RESOLVER, 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, PraxisIconButtonComponent, 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_DRAWER_CONTENT_DATA, SURFACE_DRAWER_REF, SURFACE_NAVIGATION_I18N_CONFIG, SURFACE_NAVIGATION_I18N_NAMESPACE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceNavigationError, 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, getPraxisTableCellVisualizationConstraint, getPraxisTableCellVisualizationGuidance, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isPraxisI18nMessageDescriptor, isPraxisPresentationVisualizationTableSafe, isPraxisRuntimeGlobalActionEffect, isProgrammaticDateRangePreset, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isStaticDateRangePreset, isSurfaceNavigationError, 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, normalizeSurfaceOperationContext, 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, resolvePraxisI18nDocument, resolveResourceAvailabilityReasonKey, resolveResourceIdentityContract, resolveSpan, resolveTextMaskFormat, resolveTextMaskFormatFromFieldDefinition, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToExcel, serializePraxisCollectionToJson, slugify, staticDateRangePresetToPreset, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateSurfaceNavigationRejected, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withFormConfigSections, withMessage, withPraxisHttpLoading };
|
|
16426
|
+
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, DynamicFormGroupedCommandOrphanFieldExpansion, DynamicFormGroupedCommandPolicy, 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, LookupSearchStrategyKind, LookupSearchStrategyMetadata, 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, PraxisI18nDocumentResolveOptions, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconButtonAppearance, PraxisIconButtonPresentation, PraxisIconButtonSize, 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, PraxisRuntimeVisualMaterializationCapability, PraxisRuntimeVisualMaterializationStatus, PraxisSubmitError, PraxisSubmitErrorDetail, PraxisTableCellVisualizationConstraint, PraxisTableCellVisualizationGuidance, 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, ResolveResourceIdentityOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedResourceIdentityContract, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionCollectionAtomicity, ResourceActionExecutionContract, ResourceActionInteractionMode, ResourceActionOpenAdapterOptions, ResourceActionOutcomeMode, ResourceActionRequirement, ResourceActionRiskLevel, ResourceActionScope, ResourceActionVersionTransport, ResourceAvailabilityDecision, ResourceCanonicalCapabilityOperationId, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceIdentityContract, ResourceIdentityDiagnostic, ResourceIdentityFieldMetadata, ResourceIdentityPart, ResourceIdentitySource, 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, SurfaceDrawerFrameRef, SurfaceDrawerNavigationFrame, SurfaceDrawerNavigationGuard, SurfaceDrawerNavigationState, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceLifecycleCondition, SurfaceLifecycleOutcomeBinding, SurfaceLifecyclePolicy, SurfaceNavigationFailureCode, SurfaceNavigationOperation, SurfaceOpenPayload, SurfaceOpenPreset, SurfaceOperationContext, SurfaceOperationRelationship, SurfaceOperationResourceRef, SurfaceOutcome, SurfaceOutcomeKind, 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, TableDetailResourceDocument, TableDetailResourceResolver, TableDetailResourceResolverRequest, TableDetailResourceResolverResult, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarActionEvent, ToolbarActionTarget, ToolbarActionTargetCardinality, ToolbarActionTargetScope, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|