@praxisui/core 9.0.0-beta.3 → 9.0.0-beta.30
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/ai/component-registry.json +3473 -0
- package/fesm2022/praxisui-core.mjs +2238 -397
- package/package.json +6 -2
- package/types/praxisui-core.d.ts +543 -27
package/types/praxisui-core.d.ts
CHANGED
|
@@ -322,7 +322,7 @@ declare function serializeEntityLookupValueForPayload(value: unknown, options?:
|
|
|
322
322
|
}): unknown;
|
|
323
323
|
declare function classifyEntityLookupResult(result?: Pick<EntityLookupResult<any>, 'extra'> | null, context?: EntityLookupResultStateContext): EntityLookupResultState;
|
|
324
324
|
|
|
325
|
-
type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
325
|
+
type RuleContextRoot = 'form' | 'row' | 'rowData' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
326
326
|
type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
|
|
327
327
|
type PraxisBuiltinCustomRuleOperator = 'contains' | 'startsWith' | 'endsWith' | 'matches' | 'isBlank' | 'len' | 'round' | 'ceil' | 'floor' | 'abs' | 'coalesce' | 'now' | 'date' | 'yearsSince' | 'monthsSince' | 'daysSince' | 'toNumber' | 'stringify' | 'jsonGet' | 'hasKey' | 'isToday' | 'inLast' | 'weekdayIn';
|
|
328
328
|
type PraxisHostRuleOperator = string & {
|
|
@@ -745,6 +745,43 @@ interface RichActionCardNode extends RichBlockBaseNode {
|
|
|
745
745
|
action: RichActionRef;
|
|
746
746
|
secondaryActions?: RichActionButtonNode[];
|
|
747
747
|
}
|
|
748
|
+
type RichDecisionGovernanceStatus = 'draft' | 'simulated' | 'approved' | 'published' | 'superseded' | 'reverted';
|
|
749
|
+
type RichDecisionRisk = 'low' | 'medium' | 'high' | 'critical';
|
|
750
|
+
interface RichDecisionPackageEvidence {
|
|
751
|
+
id?: string;
|
|
752
|
+
label?: string;
|
|
753
|
+
labelExpr?: string;
|
|
754
|
+
source?: string;
|
|
755
|
+
sourceExpr?: string;
|
|
756
|
+
}
|
|
757
|
+
interface RichDecisionPackageNode extends RichBlockBaseNode {
|
|
758
|
+
type: 'decisionPackage';
|
|
759
|
+
title?: string;
|
|
760
|
+
titleExpr?: string;
|
|
761
|
+
subtitle?: string;
|
|
762
|
+
subtitleExpr?: string;
|
|
763
|
+
summary?: string;
|
|
764
|
+
summaryExpr?: string;
|
|
765
|
+
status?: RichDecisionGovernanceStatus;
|
|
766
|
+
statusExpr?: string;
|
|
767
|
+
owner?: string;
|
|
768
|
+
ownerExpr?: string;
|
|
769
|
+
policySource?: string;
|
|
770
|
+
policySourceExpr?: string;
|
|
771
|
+
version?: string;
|
|
772
|
+
versionExpr?: string;
|
|
773
|
+
confidence?: number;
|
|
774
|
+
confidenceExpr?: string;
|
|
775
|
+
risk?: RichDecisionRisk;
|
|
776
|
+
riskExpr?: string;
|
|
777
|
+
lastReviewed?: string;
|
|
778
|
+
lastReviewedExpr?: string;
|
|
779
|
+
supersedes?: string;
|
|
780
|
+
supersedesExpr?: string;
|
|
781
|
+
evidence?: RichDecisionPackageEvidence[];
|
|
782
|
+
primaryAction?: RichActionButtonNode;
|
|
783
|
+
secondaryActions?: RichActionButtonNode[];
|
|
784
|
+
}
|
|
748
785
|
interface RichFormLauncherNode extends RichBlockBaseNode {
|
|
749
786
|
type: 'formLauncher';
|
|
750
787
|
title?: string;
|
|
@@ -838,6 +875,9 @@ type RichTimelineConnectorVariant = 'solid' | 'dashed' | 'none';
|
|
|
838
875
|
type RichTimelineMarkerVariant = 'dot' | 'icon' | 'number';
|
|
839
876
|
type RichTimelineMarkerStyle = 'filled' | 'outlined';
|
|
840
877
|
type RichTimelineColor = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'error' | 'info' | 'neutral';
|
|
878
|
+
type RichTimelineEmphasis = 'subtle' | 'standard' | 'strong' | 'hero';
|
|
879
|
+
type RichTimelineDensity = 'compact' | 'comfortable' | 'spacious';
|
|
880
|
+
type RichTimelineTextAppearance = 'default' | 'prominent' | 'eyebrow' | 'label';
|
|
841
881
|
interface RichTimelineNode extends RichBlockBaseNode {
|
|
842
882
|
type: 'timeline';
|
|
843
883
|
title?: string;
|
|
@@ -851,6 +891,9 @@ interface RichTimelineNode extends RichBlockBaseNode {
|
|
|
851
891
|
markerVariant?: RichTimelineMarkerVariant;
|
|
852
892
|
markerColor?: RichTimelineColor;
|
|
853
893
|
markerStyle?: RichTimelineMarkerStyle;
|
|
894
|
+
emphasis?: RichTimelineEmphasis;
|
|
895
|
+
density?: RichTimelineDensity;
|
|
896
|
+
textAppearance?: RichTimelineTextAppearance;
|
|
854
897
|
items: RichTimelineItem[];
|
|
855
898
|
}
|
|
856
899
|
type CorePresetKind = 'surface-open' | 'widget-page-layout' | 'widget-page-theme' | 'editorial-theme' | 'editorial-compliance' | 'editorial-solution' | 'rich-block';
|
|
@@ -899,7 +942,7 @@ interface RichBlockHostCapabilities {
|
|
|
899
942
|
onLoadError?: 'hide' | 'error' | 'placeholder';
|
|
900
943
|
};
|
|
901
944
|
}
|
|
902
|
-
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
|
|
945
|
+
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichDecisionPackageNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
|
|
903
946
|
type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
|
|
904
947
|
interface RichContentDocument {
|
|
905
948
|
kind: 'praxis.rich-content';
|
|
@@ -1136,6 +1179,70 @@ declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExp
|
|
|
1136
1179
|
declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
|
|
1137
1180
|
declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
|
|
1138
1181
|
|
|
1182
|
+
type PraxisPresentationVisualizationKind = 'line' | 'area' | 'column' | 'comparison' | 'stackedBar' | 'radial' | 'harveyBall' | 'bullet' | 'delta' | 'processFlow';
|
|
1183
|
+
type PraxisPresentationVisualizationSurface = 'table-cell' | 'list-item' | 'object-header' | 'card-summary' | 'form-presentation';
|
|
1184
|
+
type PraxisPresentationVisualizationSize = 'xs' | 'sm' | 'md' | 'lg' | 'responsive';
|
|
1185
|
+
type PraxisPresentationVisualizationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger' | 'critical';
|
|
1186
|
+
interface PraxisPresentationVisualizationPoint {
|
|
1187
|
+
label?: string;
|
|
1188
|
+
value: number;
|
|
1189
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1190
|
+
}
|
|
1191
|
+
interface PraxisPresentationVisualizationSegment {
|
|
1192
|
+
label?: string;
|
|
1193
|
+
value: number;
|
|
1194
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1195
|
+
}
|
|
1196
|
+
interface PraxisPresentationVisualizationThreshold {
|
|
1197
|
+
label?: string;
|
|
1198
|
+
value: number;
|
|
1199
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1200
|
+
}
|
|
1201
|
+
interface PraxisPresentationVisualizationItem {
|
|
1202
|
+
id?: string;
|
|
1203
|
+
label?: string;
|
|
1204
|
+
value?: number;
|
|
1205
|
+
icon?: string;
|
|
1206
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1207
|
+
state?: string;
|
|
1208
|
+
}
|
|
1209
|
+
interface PraxisPresentationVisualizationConfig {
|
|
1210
|
+
kind: PraxisPresentationVisualizationKind;
|
|
1211
|
+
surface?: PraxisPresentationVisualizationSurface;
|
|
1212
|
+
size?: PraxisPresentationVisualizationSize;
|
|
1213
|
+
value?: unknown;
|
|
1214
|
+
valueExpr?: JsonLogicExpression | string;
|
|
1215
|
+
valueSuffix?: string;
|
|
1216
|
+
valueSuffixExpr?: JsonLogicExpression | string;
|
|
1217
|
+
total?: number;
|
|
1218
|
+
totalExpr?: JsonLogicExpression | string;
|
|
1219
|
+
target?: number;
|
|
1220
|
+
targetExpr?: JsonLogicExpression | string;
|
|
1221
|
+
baseline?: number;
|
|
1222
|
+
baselineExpr?: JsonLogicExpression | string;
|
|
1223
|
+
points?: PraxisPresentationVisualizationPoint[];
|
|
1224
|
+
pointsExpr?: JsonLogicExpression | string;
|
|
1225
|
+
segments?: PraxisPresentationVisualizationSegment[];
|
|
1226
|
+
segmentsExpr?: JsonLogicExpression | string;
|
|
1227
|
+
thresholds?: PraxisPresentationVisualizationThreshold[];
|
|
1228
|
+
thresholdsExpr?: JsonLogicExpression | string;
|
|
1229
|
+
items?: PraxisPresentationVisualizationItem[];
|
|
1230
|
+
itemsExpr?: JsonLogicExpression | string;
|
|
1231
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1232
|
+
toneExpr?: JsonLogicExpression | string;
|
|
1233
|
+
ariaLabel?: string;
|
|
1234
|
+
ariaLabelExpr?: JsonLogicExpression | string;
|
|
1235
|
+
fallbackText: string;
|
|
1236
|
+
fallbackTextExpr?: JsonLogicExpression | string;
|
|
1237
|
+
}
|
|
1238
|
+
type ResolvedPraxisPresentationVisualizationConfig = PraxisPresentationVisualizationConfig;
|
|
1239
|
+
declare function normalizePraxisPresentationVisualization(value: PraxisPresentationVisualizationConfig | null | undefined): ResolvedPraxisPresentationVisualizationConfig | undefined;
|
|
1240
|
+
declare function isPraxisPresentationVisualizationTableSafe(value: PraxisPresentationVisualizationConfig | null | undefined): boolean;
|
|
1241
|
+
interface PraxisPresentationVisualizationHtmlOptions {
|
|
1242
|
+
locale?: string;
|
|
1243
|
+
}
|
|
1244
|
+
declare function renderPraxisPresentationVisualizationHtml(value: PraxisPresentationVisualizationConfig | null | undefined, options?: PraxisPresentationVisualizationHtmlOptions): string;
|
|
1245
|
+
|
|
1139
1246
|
type PraxisRuntimeEffectTrigger = 'on-condition-enter' | 'on-value-change' | 'while-true';
|
|
1140
1247
|
interface PraxisEffectPolicy {
|
|
1141
1248
|
trigger?: PraxisRuntimeEffectTrigger;
|
|
@@ -1354,7 +1461,7 @@ interface ColumnDefinition {
|
|
|
1354
1461
|
expr: string;
|
|
1355
1462
|
};
|
|
1356
1463
|
/** Tipo do renderizador */
|
|
1357
|
-
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'html' | 'compose';
|
|
1464
|
+
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'microVisualization' | 'html' | 'compose';
|
|
1358
1465
|
/** Tooltip associado ao renderer efetivo da célula. */
|
|
1359
1466
|
tooltip?: TableTooltipConfig;
|
|
1360
1467
|
/** Configuração de ícone (Material/SVG por nome) */
|
|
@@ -1454,6 +1561,9 @@ interface ColumnDefinition {
|
|
|
1454
1561
|
size?: 'small' | 'medium' | 'large';
|
|
1455
1562
|
ariaLabel?: string;
|
|
1456
1563
|
};
|
|
1564
|
+
microVisualization?: {
|
|
1565
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1566
|
+
};
|
|
1457
1567
|
/** Avatar (imagem ou iniciais) */
|
|
1458
1568
|
avatar?: {
|
|
1459
1569
|
src?: string;
|
|
@@ -1605,6 +1715,11 @@ interface ColumnDefinition {
|
|
|
1605
1715
|
size?: 'small' | 'medium' | 'large';
|
|
1606
1716
|
ariaLabel?: string;
|
|
1607
1717
|
};
|
|
1718
|
+
} | {
|
|
1719
|
+
type: 'microVisualization';
|
|
1720
|
+
microVisualization?: {
|
|
1721
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1722
|
+
};
|
|
1608
1723
|
} | {
|
|
1609
1724
|
type: 'html';
|
|
1610
1725
|
html?: {
|
|
@@ -2442,6 +2557,14 @@ interface ToolbarSettingsConfig {
|
|
|
2442
2557
|
options?: any[];
|
|
2443
2558
|
}>;
|
|
2444
2559
|
}
|
|
2560
|
+
interface TableAiAssistantConfig {
|
|
2561
|
+
/** Exibe e permite acionar o assistente de IA da tabela. Ausente equivale a true. */
|
|
2562
|
+
enabled?: boolean;
|
|
2563
|
+
}
|
|
2564
|
+
interface TableAiConfig {
|
|
2565
|
+
/** Configuracoes do assistente de IA embarcado na tabela. */
|
|
2566
|
+
assistant?: TableAiAssistantConfig;
|
|
2567
|
+
}
|
|
2445
2568
|
interface TableActionsConfig {
|
|
2446
2569
|
/** Ações por linha */
|
|
2447
2570
|
row?: RowActionsConfig;
|
|
@@ -3300,6 +3423,8 @@ interface TableConfigV2 {
|
|
|
3300
3423
|
toolbar?: ToolbarConfig;
|
|
3301
3424
|
/** Ações por linha e em lote (Aba: Barra de Ferramentas & Ações) */
|
|
3302
3425
|
actions?: TableActionsConfig;
|
|
3426
|
+
/** Configuracoes de IA do runtime da tabela */
|
|
3427
|
+
ai?: TableAiConfig;
|
|
3303
3428
|
/** Configurações de exportação (Aba: Barra de Ferramentas & Ações) */
|
|
3304
3429
|
export?: ExportConfig;
|
|
3305
3430
|
/** Mensagens personalizadas (Aba: Mensagens & Localização) */
|
|
@@ -3538,6 +3663,88 @@ declare const FieldControlType: {
|
|
|
3538
3663
|
};
|
|
3539
3664
|
type FieldControlType = (typeof FieldControlType)[keyof typeof FieldControlType];
|
|
3540
3665
|
|
|
3666
|
+
type FormFieldHelpDisplay = 'auto' | 'inline' | 'popover' | 'hidden';
|
|
3667
|
+
interface FormHelpPresentationConfig {
|
|
3668
|
+
/**
|
|
3669
|
+
* Controls how semantic field help (`hint`/`helpText`) is presented by field
|
|
3670
|
+
* renderers. Validation errors are never affected by this policy.
|
|
3671
|
+
*/
|
|
3672
|
+
display?: FormFieldHelpDisplay;
|
|
3673
|
+
/**
|
|
3674
|
+
* Maximum text length that may remain inline when `display` is `auto`.
|
|
3675
|
+
* Defaults to 64 characters.
|
|
3676
|
+
*/
|
|
3677
|
+
inlineMaxLength?: number;
|
|
3678
|
+
/**
|
|
3679
|
+
* Control types that should prefer a help affordance instead of inline text
|
|
3680
|
+
* when `display` is `auto`.
|
|
3681
|
+
*/
|
|
3682
|
+
preferPopoverForControls?: string[];
|
|
3683
|
+
}
|
|
3684
|
+
|
|
3685
|
+
type FieldPresentationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
3686
|
+
type FieldPresentationAppearance = 'plain' | 'soft' | 'outlined' | 'filled';
|
|
3687
|
+
type FieldPresenterKind = 'text' | 'badge' | 'chip' | 'status' | 'iconValue' | 'progress' | 'rating' | 'microVisualization';
|
|
3688
|
+
interface FieldPresentationInteractions {
|
|
3689
|
+
/** Allows readonly surfaces to expose a copy affordance without changing the field value. */
|
|
3690
|
+
copy?: boolean;
|
|
3691
|
+
/** Allows readonly surfaces to expose contextual detail expansion. */
|
|
3692
|
+
details?: boolean;
|
|
3693
|
+
/** Allows readonly surfaces to expose inline expansion for long values. */
|
|
3694
|
+
expand?: boolean;
|
|
3695
|
+
/** Allows readonly surfaces to expose a link affordance when the value is navigable. */
|
|
3696
|
+
link?: boolean;
|
|
3697
|
+
}
|
|
3698
|
+
interface FieldPresentationConfig {
|
|
3699
|
+
/** Semantic display strategy for readonly/presentation surfaces. */
|
|
3700
|
+
presenter?: FieldPresenterKind;
|
|
3701
|
+
/** Alias accepted for schema authors that describe the semantic display as a variant. */
|
|
3702
|
+
variant?: FieldPresenterKind;
|
|
3703
|
+
/** Semantic tone mapped by consumers to theme tokens. */
|
|
3704
|
+
tone?: FieldPresentationTone;
|
|
3705
|
+
/** Material Symbols icon name, without arbitrary HTML. */
|
|
3706
|
+
icon?: string;
|
|
3707
|
+
/** Optional semantic label for status/chip/badge presentations. */
|
|
3708
|
+
label?: string;
|
|
3709
|
+
/** Optional secondary marker rendered by presentation-capable consumers. */
|
|
3710
|
+
badge?: string;
|
|
3711
|
+
/** Optional tooltip text for the presentation wrapper. */
|
|
3712
|
+
tooltip?: string;
|
|
3713
|
+
/** Visual density/emphasis strategy mapped by consumers to theme tokens. */
|
|
3714
|
+
appearance?: FieldPresentationAppearance;
|
|
3715
|
+
/** Optional formatter override for the presentation surface only. */
|
|
3716
|
+
valuePresentation?: ValuePresentationConfig;
|
|
3717
|
+
/** Renderer-neutral micro visualization metadata for compact presentation surfaces. */
|
|
3718
|
+
visualization?: PraxisPresentationVisualizationConfig;
|
|
3719
|
+
/** Safe readonly affordances. No commands or mutations are executed from this contract. */
|
|
3720
|
+
interactions?: FieldPresentationInteractions;
|
|
3721
|
+
}
|
|
3722
|
+
interface FieldPresentationRule {
|
|
3723
|
+
/** Json Logic guard evaluated against the presentation context. */
|
|
3724
|
+
when: JsonLogicExpression;
|
|
3725
|
+
/** Semantic presentation state merged when the guard is truthy. */
|
|
3726
|
+
set?: FieldPresentationConfig;
|
|
3727
|
+
/** Alias for `set`, useful for rule-builder terminology. */
|
|
3728
|
+
effect?: FieldPresentationConfig;
|
|
3729
|
+
}
|
|
3730
|
+
interface ResolvedFieldPresentation extends FieldPresentationConfig {
|
|
3731
|
+
/** Indicates at least one conditional rule matched the current context. */
|
|
3732
|
+
matchedRule?: boolean;
|
|
3733
|
+
}
|
|
3734
|
+
interface FieldPresentationJsonLogicEvaluator {
|
|
3735
|
+
evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord): unknown;
|
|
3736
|
+
truthy?(value: unknown): boolean;
|
|
3737
|
+
}
|
|
3738
|
+
interface ResolveFieldPresentationOptions {
|
|
3739
|
+
jsonLogic?: FieldPresentationJsonLogicEvaluator | null;
|
|
3740
|
+
}
|
|
3741
|
+
/**
|
|
3742
|
+
* Resolves readonly field presentation from a base semantic config plus ordered
|
|
3743
|
+
* Json Logic rules. Later matching rules override earlier presentation values.
|
|
3744
|
+
*/
|
|
3745
|
+
declare function resolveFieldPresentation(base: FieldPresentationConfig | null | undefined, rules: readonly FieldPresentationRule[] | null | undefined, context?: JsonLogicDataRecord, options?: ResolveFieldPresentationOptions): ResolvedFieldPresentation;
|
|
3746
|
+
declare function normalizeFieldPresentation(value: FieldPresentationConfig | null | undefined): ResolvedFieldPresentation;
|
|
3747
|
+
|
|
3541
3748
|
/**
|
|
3542
3749
|
* @fileoverview Base metadata interfaces for dynamic Angular Material components
|
|
3543
3750
|
*
|
|
@@ -3910,6 +4117,14 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3910
4117
|
disabled?: boolean;
|
|
3911
4118
|
/** Field is read-only */
|
|
3912
4119
|
readOnly?: boolean;
|
|
4120
|
+
/**
|
|
4121
|
+
* Canonical backend-authored access metadata for field-level UX materialization.
|
|
4122
|
+
*
|
|
4123
|
+
* The frontend may use this contract to hide or lock controls for usability,
|
|
4124
|
+
* but it is not a security boundary. Backend filtering and validation remain
|
|
4125
|
+
* the final authority for sensitive data.
|
|
4126
|
+
*/
|
|
4127
|
+
fieldAccess?: FieldAccessMetadata;
|
|
3913
4128
|
/** Field is hidden from display */
|
|
3914
4129
|
hidden?: boolean;
|
|
3915
4130
|
/** Canonical conditional visibility guard for metadata-driven forms. */
|
|
@@ -3920,8 +4135,16 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3920
4135
|
placeholder?: string;
|
|
3921
4136
|
/** Help text displayed below field */
|
|
3922
4137
|
hint?: string;
|
|
4138
|
+
/** Domain help text emitted by backend schema metadata. */
|
|
4139
|
+
helpText?: string;
|
|
4140
|
+
/** Effective help presentation resolved by the form host. */
|
|
4141
|
+
helpDisplay?: FormFieldHelpDisplay;
|
|
4142
|
+
/** Field-level inline threshold used when `helpDisplay` is `auto`. */
|
|
4143
|
+
helpInlineMaxLength?: number;
|
|
3923
4144
|
/** Tooltip text on hover */
|
|
3924
4145
|
tooltip?: string;
|
|
4146
|
+
/** Enables hover tooltip presentation when supported by the field renderer. */
|
|
4147
|
+
tooltipOnHover?: boolean;
|
|
3925
4148
|
/** Semantic selection mode for boolean/single/multiple choice controls */
|
|
3926
4149
|
selectionMode?: 'boolean' | 'single' | 'multiple';
|
|
3927
4150
|
/** Visual variant used by controls with more than one supported presentation */
|
|
@@ -3961,6 +4184,10 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3961
4184
|
suffixIcon?: string;
|
|
3962
4185
|
iconPosition?: 'start' | 'end';
|
|
3963
4186
|
iconSize?: 'small' | 'medium' | 'large';
|
|
4187
|
+
iconColor?: string;
|
|
4188
|
+
iconClass?: string;
|
|
4189
|
+
iconStyle?: string;
|
|
4190
|
+
iconFontSize?: string | number;
|
|
3964
4191
|
/** Tooltip for suffix icon (used for help actions) */
|
|
3965
4192
|
suffixIconTooltip?: string;
|
|
3966
4193
|
/** ARIA label for suffix icon when used as help */
|
|
@@ -3977,6 +4204,18 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3977
4204
|
* heuristics.
|
|
3978
4205
|
*/
|
|
3979
4206
|
valuePresentation?: ValuePresentationConfig;
|
|
4207
|
+
/**
|
|
4208
|
+
* Semantic presentation metadata for read-only/display surfaces.
|
|
4209
|
+
*
|
|
4210
|
+
* Consumers map this contract to their own theme tokens and primitives. It
|
|
4211
|
+
* intentionally avoids arbitrary CSS, HTML, or mutation commands.
|
|
4212
|
+
*/
|
|
4213
|
+
presentation?: FieldPresentationConfig;
|
|
4214
|
+
/**
|
|
4215
|
+
* Ordered Json Logic rules that conditionally override `presentation` in
|
|
4216
|
+
* readonly/display surfaces. Later matching rules win.
|
|
4217
|
+
*/
|
|
4218
|
+
presentationRules?: FieldPresentationRule[];
|
|
3980
4219
|
/** Material Design specific configuration */
|
|
3981
4220
|
materialDesign?: MaterialDesignConfig;
|
|
3982
4221
|
/**
|
|
@@ -4122,6 +4361,23 @@ type CoreFieldMetadata = Pick<FieldMetadata, 'name' | 'label' | 'controlType'>;
|
|
|
4122
4361
|
/** Helper type for field metadata without computed properties */
|
|
4123
4362
|
type SerializableFieldMetadata = Omit<FieldMetadata, 'transformDisplayValue' | 'transformSaveValue'>;
|
|
4124
4363
|
|
|
4364
|
+
interface FieldAccessMetadata {
|
|
4365
|
+
visibleForAuthorities?: string[];
|
|
4366
|
+
editableForAuthorities?: string[];
|
|
4367
|
+
reason?: string;
|
|
4368
|
+
}
|
|
4369
|
+
interface FieldAccessEvaluationContext {
|
|
4370
|
+
authorities?: readonly string[] | null;
|
|
4371
|
+
}
|
|
4372
|
+
interface FieldAccessEvaluationResult {
|
|
4373
|
+
evaluated: boolean;
|
|
4374
|
+
visible: boolean;
|
|
4375
|
+
editable: boolean;
|
|
4376
|
+
reason?: string;
|
|
4377
|
+
}
|
|
4378
|
+
declare function normalizeFieldAccessMetadata(value: unknown): FieldAccessMetadata | undefined;
|
|
4379
|
+
declare function evaluateFieldAccess(fieldOrAccess: Pick<FieldMetadata, 'fieldAccess'> | FieldAccessMetadata | null | undefined, context?: FieldAccessEvaluationContext): FieldAccessEvaluationResult;
|
|
4380
|
+
|
|
4125
4381
|
/**
|
|
4126
4382
|
* Contrato de saída do normalizador de esquema (SchemaNormalizerService):
|
|
4127
4383
|
* - Converte metadados `x-ui` em FieldDefinition tipado.
|
|
@@ -4152,6 +4408,7 @@ interface FieldDefinition {
|
|
|
4152
4408
|
layout?: 'horizontal' | 'vertical';
|
|
4153
4409
|
disabled?: boolean;
|
|
4154
4410
|
readOnly?: boolean;
|
|
4411
|
+
fieldAccess?: FieldAccessMetadata;
|
|
4155
4412
|
array?: FieldArrayConfig;
|
|
4156
4413
|
collectionValidation?: FieldArrayCollectionValidation;
|
|
4157
4414
|
multiple?: boolean;
|
|
@@ -4180,6 +4437,7 @@ interface FieldDefinition {
|
|
|
4180
4437
|
helpText?: string;
|
|
4181
4438
|
hint?: string;
|
|
4182
4439
|
hiddenCondition?: JsonLogicExpression | null;
|
|
4440
|
+
tooltip?: string;
|
|
4183
4441
|
tooltipOnHover?: boolean;
|
|
4184
4442
|
icon?: string;
|
|
4185
4443
|
iconPosition?: string;
|
|
@@ -4286,6 +4544,13 @@ interface ApiUrlEntry {
|
|
|
4286
4544
|
fullUrl?: string;
|
|
4287
4545
|
version?: string;
|
|
4288
4546
|
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
4547
|
+
/**
|
|
4548
|
+
* Absolute backend origins that ResourceDiscoveryService may fold back through
|
|
4549
|
+
* a relative API_URL proxy for canonical API discovery links. Only configure
|
|
4550
|
+
* origins controlled by the same deployment boundary; arbitrary external links
|
|
4551
|
+
* remain absolute.
|
|
4552
|
+
*/
|
|
4553
|
+
trustedOrigins?: string[];
|
|
4289
4554
|
}
|
|
4290
4555
|
interface ApiUrlConfig {
|
|
4291
4556
|
[key: string]: ApiUrlEntry;
|
|
@@ -5330,6 +5595,9 @@ declare class TableConfigService {
|
|
|
5330
5595
|
declare function buildBaseColumnFromDef(def: FieldDefinition): ColumnDefinition;
|
|
5331
5596
|
declare function applyLocalCustomizations$1(baseCol: ColumnDefinition, localCol: ColumnDefinition): ColumnDefinition;
|
|
5332
5597
|
declare function reconcileTableConfig(layout: TableConfigV2, serverDefs: FieldDefinition[]): TableConfigV2;
|
|
5598
|
+
declare function resolveColumnTypeFromFieldDefinition(def: FieldDefinition, fallback?: ColumnDefinition['type']): ColumnDefinition['type'] | undefined;
|
|
5599
|
+
declare function resolveTextMaskFormatFromFieldDefinition(def: FieldDefinition): string | undefined;
|
|
5600
|
+
declare function resolveTextMaskFormat(value: unknown): string | undefined;
|
|
5333
5601
|
|
|
5334
5602
|
interface ConfigStorage {
|
|
5335
5603
|
loadConfig<T>(key: string): T | null;
|
|
@@ -8551,6 +8819,13 @@ declare class ResourceDiscoveryService {
|
|
|
8551
8819
|
resolveApiEntry(options?: ResourceDiscoveryRequestOptions): ApiUrlEntry;
|
|
8552
8820
|
private resolveApiOrigin;
|
|
8553
8821
|
private resolveApiBaseUrl;
|
|
8822
|
+
private resolveTrustedAbsoluteHref;
|
|
8823
|
+
private isTrustedOrigin;
|
|
8824
|
+
private getTrustedOrigins;
|
|
8825
|
+
private normalizeOrigin;
|
|
8826
|
+
private isProxyableApiPath;
|
|
8827
|
+
private normalizePathPrefix;
|
|
8828
|
+
private isAbsoluteHttpUrl;
|
|
8554
8829
|
private resolveApiBaseHref;
|
|
8555
8830
|
private resolveEndpointEntry;
|
|
8556
8831
|
private getRuntimeOrigin;
|
|
@@ -9091,6 +9366,133 @@ declare class DomainRuleService {
|
|
|
9091
9366
|
static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
|
|
9092
9367
|
}
|
|
9093
9368
|
|
|
9369
|
+
interface EnterpriseRuntimeUser {
|
|
9370
|
+
userId: string;
|
|
9371
|
+
displayName?: string | null;
|
|
9372
|
+
resolvedFromServerPrincipal?: boolean;
|
|
9373
|
+
}
|
|
9374
|
+
interface EnterpriseRuntimeTenant {
|
|
9375
|
+
tenantId: string;
|
|
9376
|
+
label?: string | null;
|
|
9377
|
+
active?: boolean;
|
|
9378
|
+
}
|
|
9379
|
+
interface EnterpriseRuntimeTenantsResponse {
|
|
9380
|
+
schemaVersion: string;
|
|
9381
|
+
activeTenant?: EnterpriseRuntimeTenant | null;
|
|
9382
|
+
tenants?: EnterpriseRuntimeTenant[];
|
|
9383
|
+
capabilities?: string[];
|
|
9384
|
+
resolvedAt?: string | null;
|
|
9385
|
+
}
|
|
9386
|
+
interface EnterpriseRuntimeContext {
|
|
9387
|
+
schemaVersion: string;
|
|
9388
|
+
user: EnterpriseRuntimeUser;
|
|
9389
|
+
activeTenant: EnterpriseRuntimeTenant;
|
|
9390
|
+
environment?: string | null;
|
|
9391
|
+
locale?: string | null;
|
|
9392
|
+
timezone?: string | null;
|
|
9393
|
+
activeProfileId?: string | null;
|
|
9394
|
+
activeModuleKey?: string | null;
|
|
9395
|
+
/**
|
|
9396
|
+
* Host-resolved security authorities usable by metadata-driven UX policies.
|
|
9397
|
+
* Do not infer these from `capabilities` unless the host/backend explicitly
|
|
9398
|
+
* publishes that shared vocabulary.
|
|
9399
|
+
*/
|
|
9400
|
+
authorities?: string[];
|
|
9401
|
+
capabilities?: string[];
|
|
9402
|
+
resolvedAt?: string | null;
|
|
9403
|
+
}
|
|
9404
|
+
interface EnterpriseRuntimeContextSwitchCommand {
|
|
9405
|
+
targetTenantId?: string | null;
|
|
9406
|
+
targetProfileId?: string | null;
|
|
9407
|
+
targetModuleKey?: string | null;
|
|
9408
|
+
locale?: string | null;
|
|
9409
|
+
timezone?: string | null;
|
|
9410
|
+
reason?: string | null;
|
|
9411
|
+
}
|
|
9412
|
+
interface EnterpriseRuntimeContextSwitchResponse {
|
|
9413
|
+
schemaVersion: string;
|
|
9414
|
+
accepted: boolean;
|
|
9415
|
+
message?: string | null;
|
|
9416
|
+
effectiveContext?: EnterpriseRuntimeContext | null;
|
|
9417
|
+
propagationHeaders?: Record<string, string>;
|
|
9418
|
+
capabilities?: string[];
|
|
9419
|
+
resolvedAt?: string | null;
|
|
9420
|
+
}
|
|
9421
|
+
interface EnterpriseRuntimeNavigationNode {
|
|
9422
|
+
id: string;
|
|
9423
|
+
label?: string | null;
|
|
9424
|
+
type?: string | null;
|
|
9425
|
+
href?: string | null;
|
|
9426
|
+
route?: string | null;
|
|
9427
|
+
moduleKey?: string | null;
|
|
9428
|
+
resourceKey?: string | null;
|
|
9429
|
+
surfaceRef?: string | null;
|
|
9430
|
+
actionRef?: string | null;
|
|
9431
|
+
capabilityRef?: string | null;
|
|
9432
|
+
children?: EnterpriseRuntimeNavigationNode[];
|
|
9433
|
+
}
|
|
9434
|
+
interface EnterpriseRuntimeNavigationResponse {
|
|
9435
|
+
schemaVersion: string;
|
|
9436
|
+
nodes?: EnterpriseRuntimeNavigationNode[];
|
|
9437
|
+
capabilities?: string[];
|
|
9438
|
+
resolvedAt?: string | null;
|
|
9439
|
+
}
|
|
9440
|
+
interface EnterpriseRuntimeSecurityEvent {
|
|
9441
|
+
eventRef?: string | null;
|
|
9442
|
+
eventType?: string | null;
|
|
9443
|
+
severity?: string | null;
|
|
9444
|
+
summary?: string | null;
|
|
9445
|
+
tenantId?: string | null;
|
|
9446
|
+
environment?: string | null;
|
|
9447
|
+
occurredAt?: string | null;
|
|
9448
|
+
metadata?: Record<string, string>;
|
|
9449
|
+
}
|
|
9450
|
+
interface EnterpriseRuntimeSecurityEventsResponse {
|
|
9451
|
+
schemaVersion: string;
|
|
9452
|
+
events?: EnterpriseRuntimeSecurityEvent[];
|
|
9453
|
+
capabilities?: string[];
|
|
9454
|
+
resolvedAt?: string | null;
|
|
9455
|
+
}
|
|
9456
|
+
interface EnterpriseRuntimeContextHeaders {
|
|
9457
|
+
'X-Tenant-ID'?: string;
|
|
9458
|
+
'X-User-ID'?: string;
|
|
9459
|
+
'X-Env'?: string;
|
|
9460
|
+
'Accept-Language'?: string;
|
|
9461
|
+
'X-Timezone'?: string;
|
|
9462
|
+
'X-Praxis-Profile-ID'?: string;
|
|
9463
|
+
'X-Praxis-Module-Key'?: string;
|
|
9464
|
+
}
|
|
9465
|
+
|
|
9466
|
+
type RuntimeHeaderMap = Record<string, string | undefined>;
|
|
9467
|
+
declare class EnterpriseRuntimeContextService {
|
|
9468
|
+
private readonly http;
|
|
9469
|
+
private readonly apiUrl;
|
|
9470
|
+
private readonly options;
|
|
9471
|
+
private readonly contextSubject;
|
|
9472
|
+
private loadPromise;
|
|
9473
|
+
readonly contextChanges$: Observable<EnterpriseRuntimeContext | null>;
|
|
9474
|
+
get snapshot(): EnterpriseRuntimeContext | null;
|
|
9475
|
+
ready(): Promise<EnterpriseRuntimeContext | null>;
|
|
9476
|
+
refresh(): Promise<EnterpriseRuntimeContext | null>;
|
|
9477
|
+
tenants(): Promise<EnterpriseRuntimeTenantsResponse>;
|
|
9478
|
+
navigation(): Promise<EnterpriseRuntimeNavigationResponse>;
|
|
9479
|
+
securityEvents(): Promise<EnterpriseRuntimeSecurityEventsResponse>;
|
|
9480
|
+
switchContext(command: EnterpriseRuntimeContextSwitchCommand): Promise<EnterpriseRuntimeContextSwitchResponse>;
|
|
9481
|
+
headers(fallback?: RuntimeHeaderMap): EnterpriseRuntimeContextHeaders;
|
|
9482
|
+
private load;
|
|
9483
|
+
private getRuntimeSurface;
|
|
9484
|
+
private endpoint;
|
|
9485
|
+
private configuredEndpoint;
|
|
9486
|
+
private runtimeRoot;
|
|
9487
|
+
private surfacePath;
|
|
9488
|
+
private requestHeaders;
|
|
9489
|
+
private globalFetchHeaders;
|
|
9490
|
+
private headersFromSnapshot;
|
|
9491
|
+
private normalizeHeaders;
|
|
9492
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnterpriseRuntimeContextService, never>;
|
|
9493
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnterpriseRuntimeContextService>;
|
|
9494
|
+
}
|
|
9495
|
+
|
|
9094
9496
|
type PraxisRuntimeComponentObservationSchemaVersion = 'praxis-runtime-component-observation.v1';
|
|
9095
9497
|
type PraxisRuntimeComponentObservationClaimKind = 'component' | 'manifest' | 'resource' | 'schemaField' | 'selection' | 'operation' | 'surface' | 'action' | 'stateDigest' | 'dataDigest';
|
|
9096
9498
|
interface PraxisRuntimeComponentObservationEnvelope {
|
|
@@ -9258,21 +9660,6 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9258
9660
|
private readonly discovery;
|
|
9259
9661
|
materialize(payload: SurfaceOpenPayload, context?: SurfaceOpenMaterializationContext): Promise<SurfaceOpenPayload>;
|
|
9260
9662
|
private projectMaterializedFormInputs;
|
|
9261
|
-
private buildLocalFormConfig;
|
|
9262
|
-
private buildMaterializedFormFields;
|
|
9263
|
-
private buildMaterializedFormSections;
|
|
9264
|
-
private shouldRenderMaterializedFormField;
|
|
9265
|
-
private isTechnicalRelationIdField;
|
|
9266
|
-
private isResolvedDisplayCompanionField;
|
|
9267
|
-
private resolveDisplayCompanionBase;
|
|
9268
|
-
private hasDisplayCompanion;
|
|
9269
|
-
private isDuplicateMediaUrlField;
|
|
9270
|
-
private looksLikeMediaUrlField;
|
|
9271
|
-
private looksLikeAvatarFieldName;
|
|
9272
|
-
private inferFormControlType;
|
|
9273
|
-
private humanizeFieldName;
|
|
9274
|
-
private stableSectionId;
|
|
9275
|
-
private chunk;
|
|
9276
9663
|
private shouldMaterializeItemReadProjection;
|
|
9277
9664
|
private resolveResponseCardinality;
|
|
9278
9665
|
private shouldMaterializeAsCollection;
|
|
@@ -9281,6 +9668,8 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9281
9668
|
private resolveItemReadUrl;
|
|
9282
9669
|
private resolveSchemaFields;
|
|
9283
9670
|
private materializeArrayAsTable;
|
|
9671
|
+
private ensureCollectionTableSelectionContract;
|
|
9672
|
+
private ensureTableSelectionConfig;
|
|
9284
9673
|
private projectTableInputs;
|
|
9285
9674
|
private buildLocalTableConfig;
|
|
9286
9675
|
private inferColumnsFromData;
|
|
@@ -9939,6 +10328,62 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
|
|
|
9939
10328
|
declare function provideRemoteGlobalConfig(url: string): Provider;
|
|
9940
10329
|
declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
|
|
9941
10330
|
|
|
10331
|
+
interface PraxisEnterpriseRuntimeEndpoints {
|
|
10332
|
+
/**
|
|
10333
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10334
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10335
|
+
*/
|
|
10336
|
+
context?: string;
|
|
10337
|
+
/**
|
|
10338
|
+
* Absolute or relative endpoint for the host-owned tenant catalog.
|
|
10339
|
+
* Defaults to the same runtime root as `context`, ending in `/tenants`.
|
|
10340
|
+
*/
|
|
10341
|
+
tenants?: string;
|
|
10342
|
+
/**
|
|
10343
|
+
* Absolute or relative endpoint for host-owned navigation.
|
|
10344
|
+
* Defaults to the same runtime root as `context`, ending in `/navigation`.
|
|
10345
|
+
*/
|
|
10346
|
+
navigation?: string;
|
|
10347
|
+
/**
|
|
10348
|
+
* Absolute or relative endpoint for host-owned security events.
|
|
10349
|
+
* Defaults to the same runtime root as `context`, ending in `/security-events`.
|
|
10350
|
+
*/
|
|
10351
|
+
securityEvents?: string;
|
|
10352
|
+
}
|
|
10353
|
+
interface PraxisEnterpriseRuntimeContextOptions {
|
|
10354
|
+
/**
|
|
10355
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10356
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10357
|
+
* Prefer `endpoints.context` for new integrations.
|
|
10358
|
+
*/
|
|
10359
|
+
endpoint?: string;
|
|
10360
|
+
/**
|
|
10361
|
+
* Host-owned enterprise runtime surfaces. When omitted, URLs are derived from
|
|
10362
|
+
* the configured `endpoint` or from the canonical `/praxis/runtime` root.
|
|
10363
|
+
*/
|
|
10364
|
+
endpoints?: PraxisEnterpriseRuntimeEndpoints;
|
|
10365
|
+
/**
|
|
10366
|
+
* Headers used to resolve the context request. The response remains the source
|
|
10367
|
+
* of truth for tenant/user/environment headers after bootstrap.
|
|
10368
|
+
*/
|
|
10369
|
+
headersFactory?: () => Record<string, string | undefined>;
|
|
10370
|
+
/**
|
|
10371
|
+
* Include `globalThis.PAX_FETCH_HEADERS()` in the request headers when present.
|
|
10372
|
+
*/
|
|
10373
|
+
includeGlobalFetchHeaders?: boolean;
|
|
10374
|
+
/**
|
|
10375
|
+
* Block Angular bootstrap until the context has been resolved.
|
|
10376
|
+
*/
|
|
10377
|
+
blocking?: boolean;
|
|
10378
|
+
/**
|
|
10379
|
+
* Whether bootstrap should fail when the runtime context request fails.
|
|
10380
|
+
*/
|
|
10381
|
+
errorPolicy?: 'fail' | 'ignore';
|
|
10382
|
+
}
|
|
10383
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS: InjectionToken<PraxisEnterpriseRuntimeContextOptions>;
|
|
10384
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY: InjectionToken<() => Promise<void>>;
|
|
10385
|
+
declare function providePraxisEnterpriseRuntimeContext(options?: PraxisEnterpriseRuntimeContextOptions): Provider[];
|
|
10386
|
+
|
|
9942
10387
|
declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
|
|
9943
10388
|
declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
|
|
9944
10389
|
|
|
@@ -10818,6 +11263,10 @@ interface FormRow {
|
|
|
10818
11263
|
interface FormSection {
|
|
10819
11264
|
id: string;
|
|
10820
11265
|
title?: string;
|
|
11266
|
+
/** Optional host/runtime CSS classes applied to the section container. */
|
|
11267
|
+
className?: string;
|
|
11268
|
+
/** Optional semantic presentation role used by compact/read-only layouts. */
|
|
11269
|
+
presentationRole?: string;
|
|
10821
11270
|
/** Visual appearance preset for the section container/header. */
|
|
10822
11271
|
appearance?: 'card' | 'plain' | 'step';
|
|
10823
11272
|
/** Optional compact step badge/kicker displayed before the title. */
|
|
@@ -10980,6 +11429,11 @@ interface FormConfig {
|
|
|
10980
11429
|
* Útil para padronizar mensagens didáticas no host.
|
|
10981
11430
|
*/
|
|
10982
11431
|
hints?: FormModeHints;
|
|
11432
|
+
/**
|
|
11433
|
+
* Presentation policy for semantic field help (`hint`/`helpText`).
|
|
11434
|
+
* This controls visual density only; validation errors remain inline.
|
|
11435
|
+
*/
|
|
11436
|
+
helpPresentation?: FormHelpPresentationConfig;
|
|
10983
11437
|
}
|
|
10984
11438
|
interface FormModeHints {
|
|
10985
11439
|
dataModes: {
|
|
@@ -11000,9 +11454,32 @@ interface FormConfigMetadata {
|
|
|
11000
11454
|
/** Last update timestamp */
|
|
11001
11455
|
lastUpdated?: Date;
|
|
11002
11456
|
/** Configuration source */
|
|
11003
|
-
source?: 'local' | 'server' | 'default';
|
|
11457
|
+
source?: 'local' | 'server' | 'default' | 'schema';
|
|
11458
|
+
/**
|
|
11459
|
+
* Layout preset used when this configuration was generated from metadata/schema.
|
|
11460
|
+
* This is provenance for generated configs; it must not be interpreted as a
|
|
11461
|
+
* command to reprocess authored or persisted layouts.
|
|
11462
|
+
*/
|
|
11463
|
+
generatedLayoutPreset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
11464
|
+
/** Runtime policy used to materialize schema-driven layout, when applicable. */
|
|
11465
|
+
schemaLayoutPolicy?: {
|
|
11466
|
+
source: 'authored' | 'schema';
|
|
11467
|
+
preset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
11468
|
+
intent?: 'detail' | 'command';
|
|
11469
|
+
lifecycle?: 'initial' | 'live';
|
|
11470
|
+
persistence?: 'transient' | 'authorable';
|
|
11471
|
+
detachBehavior?: 'none' | 'explicit';
|
|
11472
|
+
schemaOperation?: 'detail' | 'create' | 'update' | 'view';
|
|
11473
|
+
schemaType?: 'request' | 'response';
|
|
11474
|
+
};
|
|
11004
11475
|
/** Server data hash for change detection */
|
|
11005
11476
|
serverHash?: string;
|
|
11477
|
+
/**
|
|
11478
|
+
* Host-resolved security authorities used only for fieldAccess UX
|
|
11479
|
+
* materialization. Do not populate this from runtime capabilities unless the
|
|
11480
|
+
* host/backend explicitly declares that both vocabularies are shared.
|
|
11481
|
+
*/
|
|
11482
|
+
fieldAccessAuthorities?: string[];
|
|
11006
11483
|
/**
|
|
11007
11484
|
* Server schema identity used to build this configuration.
|
|
11008
11485
|
* Format comes from buildSchemaId(path|operation|schemaType|internal|tenant|locale|origin).
|
|
@@ -11190,7 +11667,7 @@ interface FormActionConfirmationEvent {
|
|
|
11190
11667
|
confirmed: boolean;
|
|
11191
11668
|
}
|
|
11192
11669
|
|
|
11193
|
-
type RulePropertyType = 'string' | 'boolean' | 'object' | 'enum' | 'number';
|
|
11670
|
+
type RulePropertyType = 'string' | 'boolean' | 'object' | 'array' | 'enum' | 'number';
|
|
11194
11671
|
interface RulePropertyDefinition {
|
|
11195
11672
|
name: string;
|
|
11196
11673
|
type: RulePropertyType;
|
|
@@ -11703,6 +12180,10 @@ interface WidgetShellAction {
|
|
|
11703
12180
|
tooltip?: string;
|
|
11704
12181
|
/** Visual style of the action button. */
|
|
11705
12182
|
variant?: 'icon' | 'text' | 'outlined';
|
|
12183
|
+
/** Optional icon rendered when the action is pressed. Falls back to `icon`. */
|
|
12184
|
+
pressedIcon?: string;
|
|
12185
|
+
/** Toggle state exposed through aria-pressed for shell actions that enable/disable a runtime mode. */
|
|
12186
|
+
pressed?: boolean | string;
|
|
11706
12187
|
/** Placement inside the shell header. Defaults to 'header'. */
|
|
11707
12188
|
placement?: WidgetShellActionPlacement;
|
|
11708
12189
|
/** Output name to emit to the page builder (defaults to `shell:${id}`). */
|
|
@@ -11784,6 +12265,8 @@ interface WidgetShellActionEvent {
|
|
|
11784
12265
|
emit?: string;
|
|
11785
12266
|
/** Optional payload for the action. */
|
|
11786
12267
|
payload?: any;
|
|
12268
|
+
/** Toggle state captured when the action was emitted. */
|
|
12269
|
+
pressed?: boolean | string;
|
|
11787
12270
|
/** Original action definition, when available. */
|
|
11788
12271
|
action?: WidgetShellAction;
|
|
11789
12272
|
}
|
|
@@ -12429,6 +12912,33 @@ declare function mapFieldDefinitionToMetadata(field: FieldDefinition): FieldMeta
|
|
|
12429
12912
|
*/
|
|
12430
12913
|
declare function mapFieldDefinitionsToMetadata(fields: FieldDefinition[]): FieldMetadata[];
|
|
12431
12914
|
|
|
12915
|
+
type DynamicFormLayoutSource = 'authored' | 'schema';
|
|
12916
|
+
type DynamicFormSchemaLayoutPreset = 'default' | 'compactPresentation' | 'groupedCommand';
|
|
12917
|
+
type DynamicFormLayoutIntent = 'detail' | 'command';
|
|
12918
|
+
type DynamicFormLayoutLifecycle = 'initial' | 'live';
|
|
12919
|
+
type DynamicFormLayoutPersistence = 'transient' | 'authorable';
|
|
12920
|
+
type DynamicFormLayoutDetachBehavior = 'none' | 'explicit';
|
|
12921
|
+
type DynamicFormSchemaOperation = 'detail' | 'create' | 'update' | 'view';
|
|
12922
|
+
type DynamicFormSchemaType = 'request' | 'response';
|
|
12923
|
+
interface DynamicFormLayoutPolicy {
|
|
12924
|
+
source: DynamicFormLayoutSource;
|
|
12925
|
+
preset?: DynamicFormSchemaLayoutPreset;
|
|
12926
|
+
intent?: DynamicFormLayoutIntent;
|
|
12927
|
+
lifecycle?: DynamicFormLayoutLifecycle;
|
|
12928
|
+
persistence?: DynamicFormLayoutPersistence;
|
|
12929
|
+
detachBehavior?: DynamicFormLayoutDetachBehavior;
|
|
12930
|
+
schemaOperation?: DynamicFormSchemaOperation;
|
|
12931
|
+
schemaType?: DynamicFormSchemaType;
|
|
12932
|
+
}
|
|
12933
|
+
interface MaterializeFormLayoutOptions {
|
|
12934
|
+
policy?: DynamicFormLayoutPolicy | null;
|
|
12935
|
+
defaultSectionTitle?: string;
|
|
12936
|
+
presentationRoleMap?: Record<string, string>;
|
|
12937
|
+
includeHidden?: boolean;
|
|
12938
|
+
}
|
|
12939
|
+
declare function materializeFormLayoutFromMetadata(fields: FieldMetadata[], options?: MaterializeFormLayoutOptions): FormConfig;
|
|
12940
|
+
declare function normalizeLayoutPolicy(policy?: DynamicFormLayoutPolicy | null): Required<Pick<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>> & Omit<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>;
|
|
12941
|
+
|
|
12432
12942
|
/**
|
|
12433
12943
|
* Compose headers including optional API version information.
|
|
12434
12944
|
* If the entry already defines custom headers, they will be preserved.
|
|
@@ -12786,7 +13296,7 @@ interface ComponentAuthoringManifest {
|
|
|
12786
13296
|
examples: ManifestExample[];
|
|
12787
13297
|
/**
|
|
12788
13298
|
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
12789
|
-
* base, mas precisam expor
|
|
13299
|
+
* base, mas precisam expor semântica granular por componente/controlType.
|
|
12790
13300
|
*/
|
|
12791
13301
|
controlProfiles?: ManifestControlProfile[];
|
|
12792
13302
|
}
|
|
@@ -12945,13 +13455,13 @@ interface ManifestControlProfile {
|
|
|
12945
13455
|
profileId: string;
|
|
12946
13456
|
/** Nome curto usado por ferramentas de authoring. */
|
|
12947
13457
|
title: string;
|
|
12948
|
-
/** Explica a
|
|
13458
|
+
/** Explica a semântica que este perfil adiciona sobre o manifesto base. */
|
|
12949
13459
|
description: string;
|
|
12950
13460
|
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
12951
13461
|
appliesTo: ManifestControlProfileApplicability;
|
|
12952
13462
|
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
12953
13463
|
editableTargets?: ManifestTarget[];
|
|
12954
|
-
/**
|
|
13464
|
+
/** Operações específicas do perfil/controlType. */
|
|
12955
13465
|
operations: ManifestOperation[];
|
|
12956
13466
|
/** Validadores especificos do perfil/controlType. */
|
|
12957
13467
|
validators: ManifestValidator[];
|
|
@@ -13015,7 +13525,7 @@ interface CapabilityCatalog extends AiCapabilityCatalog {
|
|
|
13015
13525
|
}
|
|
13016
13526
|
declare const DYNAMIC_PAGE_AI_CAPABILITIES: CapabilityCatalog;
|
|
13017
13527
|
|
|
13018
|
-
type ComponentContextOptionMode = 'enum' | 'suggested';
|
|
13528
|
+
type ComponentContextOptionMode = 'enum' | 'suggested' | 'expression';
|
|
13019
13529
|
interface ComponentContextOption {
|
|
13020
13530
|
value: string | number;
|
|
13021
13531
|
label?: string;
|
|
@@ -13024,6 +13534,7 @@ interface ComponentContextOption {
|
|
|
13024
13534
|
interface ComponentContextOptionsByPathEntry {
|
|
13025
13535
|
mode: ComponentContextOptionMode;
|
|
13026
13536
|
options: ComponentContextOption[];
|
|
13537
|
+
suggestedRoots?: string[];
|
|
13027
13538
|
}
|
|
13028
13539
|
interface ComponentActionParam {
|
|
13029
13540
|
name: string;
|
|
@@ -13458,6 +13969,7 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
13458
13969
|
get overflowHeaderActions(): ActionList;
|
|
13459
13970
|
private get maxHeaderActions();
|
|
13460
13971
|
get windowActions(): ActionList;
|
|
13972
|
+
displayActionIcon(action: WidgetShellAction): string | undefined;
|
|
13461
13973
|
onAction(action: WidgetShellAction, ev: MouseEvent): void;
|
|
13462
13974
|
onHeaderPointerDown(event: PointerEvent): void;
|
|
13463
13975
|
onHeaderKeydown(event: KeyboardEvent): void;
|
|
@@ -14015,6 +14527,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14015
14527
|
private enrichRuntimeWidgetInputs;
|
|
14016
14528
|
private buildRichContentHostCapabilities;
|
|
14017
14529
|
private dispatchRichContentAction;
|
|
14530
|
+
private emitRichContentCustomAction;
|
|
14018
14531
|
private isRichContentActionAvailable;
|
|
14019
14532
|
private hasRichContentCapability;
|
|
14020
14533
|
private resolveComponentBindingPath;
|
|
@@ -14047,6 +14560,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14047
14560
|
onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
|
|
14048
14561
|
onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
14049
14562
|
private handleSetInputCommand;
|
|
14563
|
+
private handleToggleInputCommand;
|
|
14050
14564
|
private mergeOrder;
|
|
14051
14565
|
private maybeExecuteMappedAction;
|
|
14052
14566
|
private resolveActionPayload;
|
|
@@ -14199,6 +14713,8 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14199
14713
|
*/
|
|
14200
14714
|
renderTitleInsideBody: boolean;
|
|
14201
14715
|
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
14716
|
+
rowClick: EventEmitter<unknown>;
|
|
14717
|
+
selectionChange: EventEmitter<unknown>;
|
|
14202
14718
|
private beforeWidgetLoader?;
|
|
14203
14719
|
private mainWidgetLoader?;
|
|
14204
14720
|
private afterWidgetLoader?;
|
|
@@ -14217,7 +14733,7 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14217
14733
|
private hasRichContentCapability;
|
|
14218
14734
|
onSlotWidgetEvent(ownerWidgetKey: string, event: WidgetEventEnvelope): void;
|
|
14219
14735
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
|
|
14220
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; }, never, never, true, never>;
|
|
14736
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; "rowClick": "rowClick"; "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
14221
14737
|
}
|
|
14222
14738
|
|
|
14223
14739
|
interface EmptyAction {
|
|
@@ -14598,5 +15114,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
14598
15114
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
14599
15115
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
14600
15116
|
|
|
14601
|
-
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isPraxisRuntimeGlobalActionEffect, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
|
|
14602
|
-
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormFieldLayoutItem, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionEndpointRef, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
15117
|
+
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, 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_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, evaluateFieldAccess, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isPraxisPresentationVisualizationTableSafe, isPraxisRuntimeGlobalActionEffect, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, materializeFormLayoutFromMetadata, 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, 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, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, renderPraxisPresentationVisualizationHtml, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveColumnTypeFromFieldDefinition, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveFieldPresentation, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveTextMaskFormat, resolveTextMaskFormatFromFieldDefinition, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
|
|
15118
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DraggingConfig, DynamicFormLayoutDetachBehavior, DynamicFormLayoutIntent, DynamicFormLayoutLifecycle, DynamicFormLayoutPersistence, DynamicFormLayoutPolicy, DynamicFormLayoutSource, 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, EmptyStateConfig, 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, FormCustomActionEvent, FormEntityEvent, FormFieldHelpDisplay, FormFieldLayoutItem, FormHelpPresentationConfig, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionEndpointRef, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MaterializeFormLayoutOptions, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, PraxisEnterpriseRuntimeContextOptions, PraxisEnterpriseRuntimeEndpoints, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisPresentationVisualizationConfig, PraxisPresentationVisualizationHtmlOptions, PraxisPresentationVisualizationItem, PraxisPresentationVisualizationKind, PraxisPresentationVisualizationPoint, PraxisPresentationVisualizationSegment, PraxisPresentationVisualizationSize, PraxisPresentationVisualizationSurface, PraxisPresentationVisualizationThreshold, PraxisPresentationVisualizationTone, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolveFieldPresentationOptions, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineDensity, RichTimelineEmphasis, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RichTimelineTextAppearance, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAiAssistantConfig, TableAiConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|