@praxisui/core 6.0.0-beta.0 → 8.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +53 -0
- package/fesm2022/praxisui-core.mjs +1574 -409
- package/index.d.ts +502 -163
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -93,20 +93,28 @@ interface OptionSourceMetadata {
|
|
|
93
93
|
|
|
94
94
|
type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
95
95
|
type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
|
|
96
|
-
type
|
|
96
|
+
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';
|
|
97
|
+
type PraxisHostRuleOperator = string & {
|
|
98
|
+
readonly __praxisHostRuleOperator?: never;
|
|
99
|
+
};
|
|
100
|
+
type PraxisCustomRuleOperator = PraxisBuiltinCustomRuleOperator | PraxisHostRuleOperator;
|
|
97
101
|
type PraxisRuleOperator = PraxisNativeJsonLogicOperator | PraxisCustomRuleOperator;
|
|
98
102
|
type JsonLogicPrimitive = string | number | boolean | null;
|
|
99
103
|
interface JsonLogicArray extends Array<JsonLogicValue> {
|
|
100
104
|
}
|
|
101
105
|
interface JsonLogicRecord {
|
|
102
|
-
[key: string]: JsonLogicValue;
|
|
106
|
+
[key: string]: JsonLogicValue | undefined;
|
|
107
|
+
}
|
|
108
|
+
interface JsonLogicDataRecord {
|
|
109
|
+
[key: string]: unknown;
|
|
103
110
|
}
|
|
104
111
|
type JsonLogicVarReference = string | [path: string] | [path: string, defaultValue: JsonLogicValue];
|
|
105
112
|
interface JsonLogicVarExpression {
|
|
106
113
|
var: JsonLogicVarReference;
|
|
107
114
|
}
|
|
108
115
|
type JsonLogicArguments = JsonLogicValue | JsonLogicArray;
|
|
109
|
-
interface JsonLogicOperationExpression
|
|
116
|
+
interface JsonLogicOperationExpression {
|
|
117
|
+
[operator: string]: JsonLogicArguments;
|
|
110
118
|
}
|
|
111
119
|
type JsonLogicExpression = JsonLogicPrimitive | JsonLogicVarExpression | JsonLogicOperationExpression;
|
|
112
120
|
type JsonLogicDerivedValueExpression = Exclude<JsonLogicExpression, string>;
|
|
@@ -120,6 +128,171 @@ interface PraxisConditionalRule<TExpression = JsonLogicExpression | null> {
|
|
|
120
128
|
condition: TExpression;
|
|
121
129
|
}
|
|
122
130
|
|
|
131
|
+
type RichBlockContextScope = 'row' | 'computed' | 'detail' | 'meta' | 'user' | 'tenant';
|
|
132
|
+
interface RichBlockContextConfig {
|
|
133
|
+
scopes?: RichBlockContextScope[];
|
|
134
|
+
aliases?: Record<string, string>;
|
|
135
|
+
}
|
|
136
|
+
interface RichBlockRuleSet {
|
|
137
|
+
visibleWhen?: JsonLogicExpression | null;
|
|
138
|
+
disabledWhen?: JsonLogicExpression | null;
|
|
139
|
+
loadWhen?: JsonLogicExpression | null;
|
|
140
|
+
classWhen?: Array<{
|
|
141
|
+
className: string;
|
|
142
|
+
expr: JsonLogicExpression;
|
|
143
|
+
}>;
|
|
144
|
+
styleWhen?: Array<{
|
|
145
|
+
style: Record<string, string | number>;
|
|
146
|
+
expr: JsonLogicExpression;
|
|
147
|
+
}>;
|
|
148
|
+
}
|
|
149
|
+
interface RichBlockBaseNode extends RichBlockRuleSet {
|
|
150
|
+
id?: string;
|
|
151
|
+
testId?: string;
|
|
152
|
+
className?: string;
|
|
153
|
+
style?: Record<string, string | number>;
|
|
154
|
+
bindings?: RichBlockContextConfig;
|
|
155
|
+
}
|
|
156
|
+
interface RichTextNode extends RichBlockBaseNode {
|
|
157
|
+
type: 'text';
|
|
158
|
+
text?: string;
|
|
159
|
+
textExpr?: string;
|
|
160
|
+
}
|
|
161
|
+
interface RichIconNode extends RichBlockBaseNode {
|
|
162
|
+
type: 'icon';
|
|
163
|
+
icon: string;
|
|
164
|
+
ariaLabel?: string;
|
|
165
|
+
}
|
|
166
|
+
interface RichImageNode extends RichBlockBaseNode {
|
|
167
|
+
type: 'image';
|
|
168
|
+
src?: string;
|
|
169
|
+
srcExpr?: string;
|
|
170
|
+
alt?: string;
|
|
171
|
+
altExpr?: string;
|
|
172
|
+
}
|
|
173
|
+
interface RichBadgeNode extends RichBlockBaseNode {
|
|
174
|
+
type: 'badge';
|
|
175
|
+
label?: string;
|
|
176
|
+
labelExpr?: string;
|
|
177
|
+
icon?: string;
|
|
178
|
+
}
|
|
179
|
+
interface RichAvatarNode extends RichBlockBaseNode {
|
|
180
|
+
type: 'avatar';
|
|
181
|
+
name?: string;
|
|
182
|
+
nameExpr?: string;
|
|
183
|
+
imageSrc?: string;
|
|
184
|
+
imageSrcExpr?: string;
|
|
185
|
+
initials?: string;
|
|
186
|
+
initialsExpr?: string;
|
|
187
|
+
}
|
|
188
|
+
interface RichMetricNode extends RichBlockBaseNode {
|
|
189
|
+
type: 'metric';
|
|
190
|
+
label: string;
|
|
191
|
+
valueExpr: string;
|
|
192
|
+
captionExpr?: string;
|
|
193
|
+
icon?: string;
|
|
194
|
+
}
|
|
195
|
+
interface RichProgressNode extends RichBlockBaseNode {
|
|
196
|
+
type: 'progress';
|
|
197
|
+
valueExpr: string;
|
|
198
|
+
max?: number;
|
|
199
|
+
label?: string;
|
|
200
|
+
labelExpr?: string;
|
|
201
|
+
showPercent?: boolean;
|
|
202
|
+
}
|
|
203
|
+
type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode;
|
|
204
|
+
interface RichComposeNode extends RichBlockBaseNode {
|
|
205
|
+
type: 'compose';
|
|
206
|
+
direction?: 'row' | 'column';
|
|
207
|
+
gap?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
208
|
+
wrap?: boolean;
|
|
209
|
+
items: RichPresenterNode[];
|
|
210
|
+
}
|
|
211
|
+
interface RichCardNode extends RichBlockBaseNode {
|
|
212
|
+
type: 'card';
|
|
213
|
+
title?: string;
|
|
214
|
+
titleExpr?: string;
|
|
215
|
+
subtitle?: string;
|
|
216
|
+
subtitleExpr?: string;
|
|
217
|
+
content: Array<RichPresenterNode | RichComposeNode>;
|
|
218
|
+
}
|
|
219
|
+
interface RichMediaBlockNode extends RichBlockBaseNode {
|
|
220
|
+
type: 'mediaBlock';
|
|
221
|
+
avatar?: RichAvatarNode;
|
|
222
|
+
title?: RichTextNode;
|
|
223
|
+
subtitle?: RichTextNode;
|
|
224
|
+
meta?: RichComposeNode;
|
|
225
|
+
trailing?: RichBlockNode[];
|
|
226
|
+
}
|
|
227
|
+
interface RichTimelineItem {
|
|
228
|
+
id?: string;
|
|
229
|
+
title?: string;
|
|
230
|
+
titleExpr?: string;
|
|
231
|
+
subtitle?: string;
|
|
232
|
+
subtitleExpr?: string;
|
|
233
|
+
meta?: string;
|
|
234
|
+
metaExpr?: string;
|
|
235
|
+
icon?: string;
|
|
236
|
+
iconExpr?: string;
|
|
237
|
+
badge?: string;
|
|
238
|
+
badgeExpr?: string;
|
|
239
|
+
}
|
|
240
|
+
interface RichTimelineNode extends RichBlockBaseNode {
|
|
241
|
+
type: 'timeline';
|
|
242
|
+
title?: string;
|
|
243
|
+
titleExpr?: string;
|
|
244
|
+
emptyText?: string;
|
|
245
|
+
items: RichTimelineItem[];
|
|
246
|
+
}
|
|
247
|
+
type CorePresetKind = 'surface-open' | 'widget-page-layout' | 'widget-page-theme' | 'editorial-theme' | 'editorial-compliance' | 'editorial-solution' | 'rich-block';
|
|
248
|
+
interface CorePresetRef {
|
|
249
|
+
kind: CorePresetKind;
|
|
250
|
+
namespace: string;
|
|
251
|
+
presetId: string;
|
|
252
|
+
version?: string;
|
|
253
|
+
}
|
|
254
|
+
interface RichPresetReferenceNode extends RichBlockBaseNode {
|
|
255
|
+
type: 'preset';
|
|
256
|
+
ref: CorePresetRef & {
|
|
257
|
+
kind: 'rich-block';
|
|
258
|
+
};
|
|
259
|
+
inputs?: Record<string, unknown>;
|
|
260
|
+
}
|
|
261
|
+
interface CorePresetDescriptor {
|
|
262
|
+
ref: CorePresetRef;
|
|
263
|
+
label: string;
|
|
264
|
+
description?: string;
|
|
265
|
+
tags?: string[];
|
|
266
|
+
owner?: string;
|
|
267
|
+
}
|
|
268
|
+
interface CorePresetDiscoveryRegistry {
|
|
269
|
+
list(kind?: CorePresetKind): CorePresetDescriptor[];
|
|
270
|
+
get(ref: CorePresetRef): CorePresetDescriptor | null;
|
|
271
|
+
}
|
|
272
|
+
interface RichBlockHostCapabilities {
|
|
273
|
+
dispatchAction?(actionId: string, payload?: unknown): void | Promise<void>;
|
|
274
|
+
resolveEmbed?(kind: 'component' | 'templateRef' | 'formRef' | 'tableRef' | 'chartRef', ref: string, inputs?: Record<string, unknown>): unknown;
|
|
275
|
+
resolvePreset?(ref: CorePresetRef): unknown;
|
|
276
|
+
loadData?(request: {
|
|
277
|
+
source: string;
|
|
278
|
+
params?: Record<string, unknown>;
|
|
279
|
+
}): Promise<unknown>;
|
|
280
|
+
getFallbackPolicy?(): {
|
|
281
|
+
onUnknownEmbed?: 'hide' | 'error' | 'placeholder';
|
|
282
|
+
onUnknownPreset?: 'hide' | 'error' | 'placeholder';
|
|
283
|
+
onLoadError?: 'hide' | 'error' | 'placeholder';
|
|
284
|
+
};
|
|
285
|
+
}
|
|
286
|
+
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichMediaBlockNode | RichTimelineNode;
|
|
287
|
+
type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
|
|
288
|
+
interface RichContentDocument {
|
|
289
|
+
kind: 'praxis.rich-content';
|
|
290
|
+
version: '1.0.0';
|
|
291
|
+
context?: RichBlockContextConfig;
|
|
292
|
+
nodes: RichBlockNode[];
|
|
293
|
+
}
|
|
294
|
+
declare function createEmptyRichContentDocument(): RichContentDocument;
|
|
295
|
+
|
|
123
296
|
/**
|
|
124
297
|
* Nova arquitetura modular do TableConfig v2.0
|
|
125
298
|
* Preparada para crescimento exponencial e alinhada com as 5 abas do editor
|
|
@@ -589,12 +762,12 @@ interface TableExpansionConfig {
|
|
|
589
762
|
kind?: 'praxis.detail.schema';
|
|
590
763
|
version?: string;
|
|
591
764
|
compat?: 'semver' | 'strict';
|
|
592
|
-
allowedNodes?:
|
|
765
|
+
allowedNodes?: TableDetailAllowedNode[];
|
|
593
766
|
sanitization?: 'strict';
|
|
594
767
|
};
|
|
595
768
|
source?: {
|
|
596
769
|
mode?: 'inline' | 'resource' | 'resourcePath' | 'hypermedia';
|
|
597
|
-
inlineSchema?:
|
|
770
|
+
inlineSchema?: TableDetailSchemaNode | TableDetailInlineSchemaDocument;
|
|
598
771
|
resource?: {
|
|
599
772
|
kind?: 'ui-composition' | 'form-schema' | 'table-schema' | 'dashboard-schema';
|
|
600
773
|
id?: string;
|
|
@@ -1357,6 +1530,174 @@ interface ConfirmationConfig {
|
|
|
1357
1530
|
[actionId: string]: Partial<ConfirmationConfig['default']>;
|
|
1358
1531
|
};
|
|
1359
1532
|
}
|
|
1533
|
+
type TableDetailAllowedNode = 'layout' | 'stack' | 'tabs' | 'tab' | 'text' | 'icon' | 'image' | 'badge' | 'avatar' | 'metric' | 'progress' | 'compose' | 'card' | 'mediaBlock' | 'cardGrid' | 'timeline' | 'value' | 'action' | 'actionBar' | 'list' | 'detailList' | 'formRef' | 'tableRef' | 'chartRef' | 'diagramEmbed' | 'richText' | 'templateRef';
|
|
1534
|
+
interface TableDetailBaseNode {
|
|
1535
|
+
type: TableDetailAllowedNode;
|
|
1536
|
+
id?: string;
|
|
1537
|
+
title?: string;
|
|
1538
|
+
subtitle?: string;
|
|
1539
|
+
visibleWhen?: JsonLogicExpression | null;
|
|
1540
|
+
[key: string]: unknown;
|
|
1541
|
+
}
|
|
1542
|
+
interface TableDetailLayoutNode extends TableDetailBaseNode {
|
|
1543
|
+
type: 'layout' | 'stack';
|
|
1544
|
+
items?: TableDetailSchemaNode[];
|
|
1545
|
+
content?: TableDetailSchemaNode[];
|
|
1546
|
+
}
|
|
1547
|
+
interface TableDetailTabsNode extends TableDetailBaseNode {
|
|
1548
|
+
type: 'tabs';
|
|
1549
|
+
items?: TableDetailTabNode[];
|
|
1550
|
+
content?: TableDetailTabNode[];
|
|
1551
|
+
}
|
|
1552
|
+
interface TableDetailTabNode extends TableDetailBaseNode {
|
|
1553
|
+
type: 'tab';
|
|
1554
|
+
badge?: string | number;
|
|
1555
|
+
icon?: string;
|
|
1556
|
+
items?: TableDetailSchemaNode[];
|
|
1557
|
+
content?: TableDetailSchemaNode[];
|
|
1558
|
+
}
|
|
1559
|
+
interface TableDetailCardNode extends TableDetailBaseNode {
|
|
1560
|
+
type: 'card';
|
|
1561
|
+
items?: TableDetailSchemaNode[];
|
|
1562
|
+
content?: TableDetailSchemaNode[];
|
|
1563
|
+
}
|
|
1564
|
+
interface TableDetailCardGridCardNode {
|
|
1565
|
+
id?: string;
|
|
1566
|
+
title?: string;
|
|
1567
|
+
subtitle?: string;
|
|
1568
|
+
content: Array<RichPresenterNode | RichComposeNode>;
|
|
1569
|
+
}
|
|
1570
|
+
interface TableDetailCardGridNode extends TableDetailBaseNode {
|
|
1571
|
+
type: 'cardGrid';
|
|
1572
|
+
title?: string;
|
|
1573
|
+
subtitle?: string;
|
|
1574
|
+
columns?: 1 | 2 | 3 | 4 | 'auto';
|
|
1575
|
+
minCardWidth?: number;
|
|
1576
|
+
cards: TableDetailCardGridCardNode[];
|
|
1577
|
+
}
|
|
1578
|
+
interface TableDetailMediaBlockNode extends RichMediaBlockNode {
|
|
1579
|
+
type: 'mediaBlock';
|
|
1580
|
+
}
|
|
1581
|
+
interface TableDetailTimelineItemSchema {
|
|
1582
|
+
titleField?: string;
|
|
1583
|
+
subtitleField?: string;
|
|
1584
|
+
metaField?: string;
|
|
1585
|
+
iconField?: string;
|
|
1586
|
+
badgeField?: string;
|
|
1587
|
+
}
|
|
1588
|
+
interface TableDetailTimelineStaticItem {
|
|
1589
|
+
id?: string;
|
|
1590
|
+
title?: string;
|
|
1591
|
+
titleExpr?: string;
|
|
1592
|
+
subtitle?: string;
|
|
1593
|
+
subtitleExpr?: string;
|
|
1594
|
+
meta?: string;
|
|
1595
|
+
metaExpr?: string;
|
|
1596
|
+
icon?: string;
|
|
1597
|
+
iconExpr?: string;
|
|
1598
|
+
badge?: string;
|
|
1599
|
+
badgeExpr?: string;
|
|
1600
|
+
[key: string]: unknown;
|
|
1601
|
+
}
|
|
1602
|
+
interface TableDetailTimelineNode extends TableDetailBaseNode {
|
|
1603
|
+
type: 'timeline';
|
|
1604
|
+
field?: string;
|
|
1605
|
+
items?: Array<TableDetailTimelineStaticItem | string | number | boolean | bigint | unknown[]>;
|
|
1606
|
+
emptyText?: string;
|
|
1607
|
+
itemSchema?: TableDetailTimelineItemSchema;
|
|
1608
|
+
}
|
|
1609
|
+
interface TableDetailValueNode extends TableDetailBaseNode {
|
|
1610
|
+
type: 'value';
|
|
1611
|
+
field?: string;
|
|
1612
|
+
valueField?: string;
|
|
1613
|
+
value?: unknown;
|
|
1614
|
+
}
|
|
1615
|
+
interface TableDetailActionNode extends TableDetailBaseNode {
|
|
1616
|
+
type: 'action';
|
|
1617
|
+
actionId?: string;
|
|
1618
|
+
icon?: string;
|
|
1619
|
+
payloadExpr?: string;
|
|
1620
|
+
disabled?: boolean;
|
|
1621
|
+
statusText?: string;
|
|
1622
|
+
}
|
|
1623
|
+
interface TableDetailActionBarAction {
|
|
1624
|
+
actionId: string;
|
|
1625
|
+
label: string;
|
|
1626
|
+
icon?: string;
|
|
1627
|
+
payloadExpr?: string;
|
|
1628
|
+
visibleWhen?: JsonLogicExpression | null;
|
|
1629
|
+
disabledWhen?: JsonLogicExpression | null;
|
|
1630
|
+
}
|
|
1631
|
+
interface TableDetailActionBarNode extends TableDetailBaseNode {
|
|
1632
|
+
type: 'actionBar';
|
|
1633
|
+
emptyText?: string;
|
|
1634
|
+
actions: TableDetailActionBarAction[];
|
|
1635
|
+
}
|
|
1636
|
+
interface TableDetailListNode extends TableDetailBaseNode {
|
|
1637
|
+
type: 'list';
|
|
1638
|
+
field?: string;
|
|
1639
|
+
items?: unknown[];
|
|
1640
|
+
emptyText?: string;
|
|
1641
|
+
}
|
|
1642
|
+
interface TableDetailListItemContextConfig {
|
|
1643
|
+
itemAlias?: string;
|
|
1644
|
+
indexAlias?: string;
|
|
1645
|
+
}
|
|
1646
|
+
interface TableDetailListItemSchema {
|
|
1647
|
+
layout?: 'stack' | 'row' | 'card-list';
|
|
1648
|
+
nodes: RichBlockNode[];
|
|
1649
|
+
}
|
|
1650
|
+
interface TableDetailListItemAction {
|
|
1651
|
+
actionId: string;
|
|
1652
|
+
label: string;
|
|
1653
|
+
icon?: string;
|
|
1654
|
+
payloadExpr?: string;
|
|
1655
|
+
visibleWhen?: JsonLogicExpression | null;
|
|
1656
|
+
disabledWhen?: JsonLogicExpression | null;
|
|
1657
|
+
}
|
|
1658
|
+
interface TableDetailRichListNode extends TableDetailBaseNode {
|
|
1659
|
+
type: 'detailList';
|
|
1660
|
+
field?: string;
|
|
1661
|
+
items?: unknown[];
|
|
1662
|
+
emptyText?: string;
|
|
1663
|
+
itemKeyField?: string;
|
|
1664
|
+
itemSchema: TableDetailListItemSchema;
|
|
1665
|
+
itemContext?: TableDetailListItemContextConfig;
|
|
1666
|
+
itemActions?: TableDetailListItemAction[];
|
|
1667
|
+
}
|
|
1668
|
+
type TableDetailEmbedAction = TableDetailActionBarAction;
|
|
1669
|
+
interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
1670
|
+
description?: string;
|
|
1671
|
+
caption?: string;
|
|
1672
|
+
emptyText?: string;
|
|
1673
|
+
inputs?: Record<string, unknown>;
|
|
1674
|
+
presetRef?: CorePresetRef;
|
|
1675
|
+
action?: TableDetailEmbedAction;
|
|
1676
|
+
}
|
|
1677
|
+
interface TableDetailRefNode extends TableDetailEmbedBaseNode {
|
|
1678
|
+
type: 'formRef' | 'tableRef' | 'chartRef';
|
|
1679
|
+
schemaId?: string;
|
|
1680
|
+
}
|
|
1681
|
+
interface TableDetailDiagramEmbedNode extends TableDetailEmbedBaseNode {
|
|
1682
|
+
type: 'diagramEmbed';
|
|
1683
|
+
provider: 'mermaid' | 'bpmn' | 'custom';
|
|
1684
|
+
source?: string;
|
|
1685
|
+
sourceField?: string;
|
|
1686
|
+
}
|
|
1687
|
+
interface TableDetailRichTextNode extends TableDetailBaseNode {
|
|
1688
|
+
type: 'richText';
|
|
1689
|
+
html?: string;
|
|
1690
|
+
text?: string;
|
|
1691
|
+
}
|
|
1692
|
+
interface TableDetailTemplateRefNode extends TableDetailEmbedBaseNode {
|
|
1693
|
+
type: 'templateRef';
|
|
1694
|
+
templateId?: string;
|
|
1695
|
+
}
|
|
1696
|
+
type TableDetailSchemaNode = TableDetailLayoutNode | TableDetailTabsNode | TableDetailTabNode | TableDetailCardNode | TableDetailMediaBlockNode | TableDetailCardGridNode | TableDetailTimelineNode | TableDetailValueNode | TableDetailActionNode | TableDetailActionBarNode | TableDetailListNode | TableDetailRichListNode | TableDetailRefNode | TableDetailDiagramEmbedNode | TableDetailRichTextNode | TableDetailTemplateRefNode;
|
|
1697
|
+
interface TableDetailInlineSchemaDocument {
|
|
1698
|
+
layout?: 'stack' | 'tabs';
|
|
1699
|
+
items?: TableDetailSchemaNode[];
|
|
1700
|
+
}
|
|
1360
1701
|
interface ExportConfig {
|
|
1361
1702
|
/** Habilitar exportação */
|
|
1362
1703
|
enabled: boolean;
|
|
@@ -5995,10 +6336,10 @@ interface MaterialTreeSelectMetadata extends FieldMetadata {
|
|
|
5995
6336
|
returnObject?: boolean;
|
|
5996
6337
|
}
|
|
5997
6338
|
|
|
5998
|
-
type PraxisJsonLogicIssueCode = 'RULE_SHAPE_INVALID' | 'RULE_OPERATOR_UNKNOWN' | 'RULE_ARITY_INVALID' | 'RULE_PATH_INVALID' | 'RULE_CONTEXT_AMBIGUOUS' | 'RULE_ROOT_UNKNOWN' | 'RULE_ARGUMENT_TYPE_INVALID';
|
|
6339
|
+
type PraxisJsonLogicIssueCode = 'RULE_SHAPE_INVALID' | 'RULE_OPERATOR_UNKNOWN' | 'RULE_OPERATOR_CONFLICT' | 'RULE_ARITY_INVALID' | 'RULE_PATH_INVALID' | 'RULE_CONTEXT_AMBIGUOUS' | 'RULE_ROOT_UNKNOWN' | 'RULE_ARGUMENT_TYPE_INVALID';
|
|
5999
6340
|
type PraxisJsonLogicRuntimeValue = unknown;
|
|
6000
6341
|
interface PraxisJsonLogicEvaluationContext {
|
|
6001
|
-
data:
|
|
6342
|
+
data: JsonLogicDataRecord;
|
|
6002
6343
|
availableRoots?: RuleContextRoot[];
|
|
6003
6344
|
defaultRoot?: RuleContextRoot | null;
|
|
6004
6345
|
allowImplicitRoot?: boolean;
|
|
@@ -6031,10 +6372,26 @@ interface PraxisJsonLogicOperatorHelpers {
|
|
|
6031
6372
|
resolvePath(path: string): PraxisJsonLogicRuntimeValue;
|
|
6032
6373
|
requireArgs(operator: string, rawArgs: PraxisJsonLogicRuntimeValue[], min: number, max?: number): PraxisJsonLogicRuntimeValue[];
|
|
6033
6374
|
}
|
|
6034
|
-
|
|
6035
|
-
|
|
6375
|
+
type PraxisJsonLogicOperatorReturnType = 'boolean' | 'number' | 'string' | 'date' | 'array' | 'object' | 'unknown';
|
|
6376
|
+
type PraxisJsonLogicOperatorPurity = 'pure' | 'contextual';
|
|
6377
|
+
type PraxisJsonLogicOperatorSource = 'native' | 'praxis' | 'host';
|
|
6378
|
+
interface PraxisJsonLogicOperatorMetadata {
|
|
6379
|
+
operator: PraxisRuleOperator;
|
|
6380
|
+
namespace?: string;
|
|
6381
|
+
label?: string;
|
|
6382
|
+
description?: string;
|
|
6036
6383
|
minArgs?: number;
|
|
6037
6384
|
maxArgs?: number;
|
|
6385
|
+
returnType?: PraxisJsonLogicOperatorReturnType;
|
|
6386
|
+
purity?: PraxisJsonLogicOperatorPurity;
|
|
6387
|
+
since?: string;
|
|
6388
|
+
deprecated?: boolean;
|
|
6389
|
+
}
|
|
6390
|
+
interface PraxisJsonLogicOperatorDescriptor extends PraxisJsonLogicOperatorMetadata {
|
|
6391
|
+
source: PraxisJsonLogicOperatorSource;
|
|
6392
|
+
}
|
|
6393
|
+
interface PraxisJsonLogicOperatorDefinition extends PraxisJsonLogicOperatorMetadata {
|
|
6394
|
+
override?: boolean;
|
|
6038
6395
|
evaluate(args: PraxisJsonLogicRuntimeValue[], context: PraxisJsonLogicEvaluationContext, helpers: PraxisJsonLogicOperatorHelpers): PraxisJsonLogicRuntimeValue;
|
|
6039
6396
|
}
|
|
6040
6397
|
interface PraxisJsonLogicEvaluationResult {
|
|
@@ -6043,7 +6400,7 @@ interface PraxisJsonLogicEvaluationResult {
|
|
|
6043
6400
|
}
|
|
6044
6401
|
interface PraxisConditionalRuleMatchInput {
|
|
6045
6402
|
condition: JsonLogicExpression | null;
|
|
6046
|
-
data:
|
|
6403
|
+
data: JsonLogicDataRecord;
|
|
6047
6404
|
options?: PraxisJsonLogicEvaluationOptions;
|
|
6048
6405
|
}
|
|
6049
6406
|
|
|
@@ -6054,12 +6411,16 @@ declare class PraxisJsonLogicError extends Error {
|
|
|
6054
6411
|
declare class PraxisJsonLogicService {
|
|
6055
6412
|
private readonly customOperators;
|
|
6056
6413
|
constructor(operatorDefinitions: PraxisJsonLogicOperatorDefinition[] | null);
|
|
6057
|
-
evaluate(expression: JsonLogicExpression, data:
|
|
6058
|
-
evaluateResult(expression: JsonLogicExpression, data:
|
|
6414
|
+
evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord, options?: PraxisJsonLogicEvaluationOptions): PraxisJsonLogicRuntimeValue;
|
|
6415
|
+
evaluateResult(expression: JsonLogicExpression, data: JsonLogicDataRecord, options?: PraxisJsonLogicEvaluationOptions): PraxisJsonLogicEvaluationResult;
|
|
6059
6416
|
validate(expression: JsonLogicExpression, options?: PraxisJsonLogicValidationOptions): void;
|
|
6060
6417
|
validateResult(expression: JsonLogicExpression, options?: PraxisJsonLogicValidationOptions): PraxisJsonLogicValidationResult;
|
|
6061
6418
|
matches(input: PraxisConditionalRuleMatchInput): boolean;
|
|
6062
6419
|
truthy(value: PraxisJsonLogicRuntimeValue): boolean;
|
|
6420
|
+
listOperatorDescriptors(): PraxisJsonLogicOperatorDescriptor[];
|
|
6421
|
+
getOperatorDescriptor(operator: string): PraxisJsonLogicOperatorDescriptor | undefined;
|
|
6422
|
+
private registerCustomOperator;
|
|
6423
|
+
private toOperatorDescriptor;
|
|
6063
6424
|
private createContext;
|
|
6064
6425
|
private evaluateValue;
|
|
6065
6426
|
private evaluateRecord;
|
|
@@ -6073,6 +6434,16 @@ declare class PraxisJsonLogicService {
|
|
|
6073
6434
|
private evaluateArithmetic;
|
|
6074
6435
|
private evaluateCat;
|
|
6075
6436
|
private evaluateSubstr;
|
|
6437
|
+
private evaluateMerge;
|
|
6438
|
+
private evaluateMap;
|
|
6439
|
+
private evaluateFilter;
|
|
6440
|
+
private evaluateReduce;
|
|
6441
|
+
private evaluateAll;
|
|
6442
|
+
private evaluateSome;
|
|
6443
|
+
private evaluateNone;
|
|
6444
|
+
private requireHigherOrderArgs;
|
|
6445
|
+
private assertArrayOperand;
|
|
6446
|
+
private createChildContext;
|
|
6076
6447
|
private evaluateArgs;
|
|
6077
6448
|
private requireArgs;
|
|
6078
6449
|
private resolveVarPath;
|
|
@@ -6408,6 +6779,13 @@ interface ComponentDocMeta {
|
|
|
6408
6779
|
}>;
|
|
6409
6780
|
/** Optional canonical semantic ports that complement legacy inputs/outputs metadata. */
|
|
6410
6781
|
ports?: PortContract[];
|
|
6782
|
+
/** Optional settings-panel editor for the component input contract. */
|
|
6783
|
+
configEditor?: {
|
|
6784
|
+
/** Component used by settings-panel to edit this component's inputs. */
|
|
6785
|
+
component: Type<unknown>;
|
|
6786
|
+
/** Optional title shown by hosts when opening the editor. */
|
|
6787
|
+
title?: string;
|
|
6788
|
+
};
|
|
6411
6789
|
/** Tags or categories for search */
|
|
6412
6790
|
tags?: string[];
|
|
6413
6791
|
/** Source library for the component */
|
|
@@ -6735,6 +7113,7 @@ type ResourceSurfaceKind = 'FORM' | 'PARTIAL_FORM' | 'VIEW' | 'READ_PROJECTION';
|
|
|
6735
7113
|
type ResourceSurfaceScope = 'COLLECTION' | 'ITEM';
|
|
6736
7114
|
type ResourceActionScope = 'COLLECTION' | 'ITEM';
|
|
6737
7115
|
type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
|
|
7116
|
+
type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
|
|
6738
7117
|
interface ResourceSurfaceCatalogItem {
|
|
6739
7118
|
id: string;
|
|
6740
7119
|
resourceKey: string;
|
|
@@ -6784,12 +7163,21 @@ interface ResourceActionCatalogResponse {
|
|
|
6784
7163
|
resourceId?: string | number | null;
|
|
6785
7164
|
actions: ResourceActionCatalogItem[];
|
|
6786
7165
|
}
|
|
7166
|
+
interface ResourceCapabilityOperation {
|
|
7167
|
+
id: ResourceCrudOperationId;
|
|
7168
|
+
supported: boolean;
|
|
7169
|
+
scope: ResourceSurfaceScope;
|
|
7170
|
+
preferredMethod?: string | null;
|
|
7171
|
+
preferredRel?: string | null;
|
|
7172
|
+
availability?: ResourceAvailabilityDecision | null;
|
|
7173
|
+
}
|
|
6787
7174
|
interface ResourceCapabilitySnapshot {
|
|
6788
7175
|
resourceKey: string;
|
|
6789
7176
|
resourcePath: string;
|
|
6790
7177
|
group?: string | null;
|
|
6791
7178
|
resourceId?: string | number | null;
|
|
6792
7179
|
canonicalOperations: Record<string, boolean>;
|
|
7180
|
+
operations?: Partial<Record<ResourceCrudOperationId, ResourceCapabilityOperation>>;
|
|
6793
7181
|
surfaces: ResourceSurfaceCatalogItem[];
|
|
6794
7182
|
actions: ResourceActionCatalogItem[];
|
|
6795
7183
|
}
|
|
@@ -6881,6 +7269,73 @@ declare class ResourceSurfaceOpenAdapterService {
|
|
|
6881
7269
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceSurfaceOpenAdapterService>;
|
|
6882
7270
|
}
|
|
6883
7271
|
|
|
7272
|
+
type ResolvedCrudOperationSource = 'explicit' | 'capability' | 'surface' | 'link' | 'convention';
|
|
7273
|
+
interface ExplicitCrudResolutionContract {
|
|
7274
|
+
schemaUrl?: string | null;
|
|
7275
|
+
responseSchemaUrl?: string | null;
|
|
7276
|
+
submitUrl?: string | null;
|
|
7277
|
+
submitMethod?: string | null;
|
|
7278
|
+
}
|
|
7279
|
+
interface ResolvedCrudOperation {
|
|
7280
|
+
operation: ResourceCrudOperationId;
|
|
7281
|
+
source: ResolvedCrudOperationSource;
|
|
7282
|
+
resourcePath: string;
|
|
7283
|
+
resourceId?: string | number | null;
|
|
7284
|
+
scope: ResourceSurfaceScope;
|
|
7285
|
+
supported: boolean;
|
|
7286
|
+
visible: boolean;
|
|
7287
|
+
enabled: boolean;
|
|
7288
|
+
availability?: ResourceAvailabilityDecision | null;
|
|
7289
|
+
schemaUrl?: string | null;
|
|
7290
|
+
responseSchemaUrl?: string | null;
|
|
7291
|
+
submitUrl?: string | null;
|
|
7292
|
+
submitMethod?: string | null;
|
|
7293
|
+
diagnostics: string[];
|
|
7294
|
+
}
|
|
7295
|
+
interface ResolveCrudOperationRequest {
|
|
7296
|
+
operation: ResourceCrudOperationId;
|
|
7297
|
+
resourcePath: string;
|
|
7298
|
+
resourceId?: string | number | null;
|
|
7299
|
+
explicit?: ExplicitCrudResolutionContract | null;
|
|
7300
|
+
}
|
|
7301
|
+
|
|
7302
|
+
interface CrudOperationResolutionContext extends ResolveCrudOperationRequest {
|
|
7303
|
+
capabilities?: ResourceCapabilitySnapshot | null;
|
|
7304
|
+
surfaces?: ResourceSurfaceCatalogItem[] | null;
|
|
7305
|
+
links?: RestApiLinks | null;
|
|
7306
|
+
endpointKey?: ResourceDiscoveryRequestOptions['endpointKey'];
|
|
7307
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
7308
|
+
}
|
|
7309
|
+
declare class CrudOperationResolutionService {
|
|
7310
|
+
private readonly discovery;
|
|
7311
|
+
resolve(request: CrudOperationResolutionContext): ResolvedCrudOperation;
|
|
7312
|
+
private buildExplicitResolution;
|
|
7313
|
+
private buildSurfaceResolution;
|
|
7314
|
+
private buildConventionResolution;
|
|
7315
|
+
private resolveCanonicalSchemaUrl;
|
|
7316
|
+
private buildCanonicalSchemaParams;
|
|
7317
|
+
private resolveConventionSubmitUrl;
|
|
7318
|
+
private resolveLink;
|
|
7319
|
+
private buildCapabilityFromCanonicalFlags;
|
|
7320
|
+
private findSurface;
|
|
7321
|
+
private matchesOperation;
|
|
7322
|
+
private isReadableSurface;
|
|
7323
|
+
private isWritableSurface;
|
|
7324
|
+
private resolveScope;
|
|
7325
|
+
private resolvePreferredMethod;
|
|
7326
|
+
private resolveActualOperationPath;
|
|
7327
|
+
private hasExplicitContract;
|
|
7328
|
+
private isAvailable;
|
|
7329
|
+
private operationRel;
|
|
7330
|
+
private defaultScope;
|
|
7331
|
+
private defaultMethod;
|
|
7332
|
+
private normalizeResourcePath;
|
|
7333
|
+
private resolveCanonicalResourcePath;
|
|
7334
|
+
private toDiscoveryOptions;
|
|
7335
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CrudOperationResolutionService, never>;
|
|
7336
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CrudOperationResolutionService>;
|
|
7337
|
+
}
|
|
7338
|
+
|
|
6884
7339
|
type AnalyticsIntent = 'ranking' | 'trend' | 'distribution' | 'composition' | 'comparison' | 'correlation';
|
|
6885
7340
|
type AnalyticsSourceKind = 'praxis.stats';
|
|
6886
7341
|
type AnalyticsStatsOperation = 'group-by' | 'timeseries' | 'distribution';
|
|
@@ -7060,6 +7515,11 @@ type PraxisAnalyticsOptions = {
|
|
|
7060
7515
|
};
|
|
7061
7516
|
declare function providePraxisAnalyticsGlobalActions(opts?: PraxisAnalyticsOptions): Provider;
|
|
7062
7517
|
|
|
7518
|
+
interface PraxisIconDefaultsOptions {
|
|
7519
|
+
defaultFontSetClass?: string[];
|
|
7520
|
+
}
|
|
7521
|
+
declare function providePraxisIconDefaults(options?: PraxisIconDefaultsOptions): Provider[];
|
|
7522
|
+
|
|
7063
7523
|
interface PraxisHttpLoadingOptions {
|
|
7064
7524
|
includeDefaultRenderer?: boolean;
|
|
7065
7525
|
}
|
|
@@ -7624,6 +8084,7 @@ declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
|
7624
8084
|
|
|
7625
8085
|
declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
|
|
7626
8086
|
declare function providePraxisJsonLogicOperator(definition: PraxisJsonLogicOperatorDefinition): Provider;
|
|
8087
|
+
declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLogicOperatorDefinition): Provider;
|
|
7627
8088
|
|
|
7628
8089
|
declare function interpolatePraxisTranslation(template: string, params?: PraxisTranslationParams): string;
|
|
7629
8090
|
declare function mergePraxisI18nConfigs(...configs: Array<Partial<PraxisI18nConfig> | null | undefined>): PraxisI18nConfig;
|
|
@@ -8183,10 +8644,10 @@ interface EditorialFormTemplateMetadata {
|
|
|
8183
8644
|
owner?: string;
|
|
8184
8645
|
}
|
|
8185
8646
|
interface EditorialFormTemplateLayoutPreset {
|
|
8186
|
-
formBlocksBefore?:
|
|
8187
|
-
formBlocksBeforeActions?:
|
|
8647
|
+
formBlocksBefore?: RichContentDocument | null;
|
|
8648
|
+
formBlocksBeforeActions?: RichContentDocument | null;
|
|
8188
8649
|
formBlocksBeforeActionsPlacement?: 'insideLastSection' | 'afterSections';
|
|
8189
|
-
formBlocksAfter?:
|
|
8650
|
+
formBlocksAfter?: RichContentDocument | null;
|
|
8190
8651
|
sections?: FormSection[];
|
|
8191
8652
|
actions?: FormActionsLayout;
|
|
8192
8653
|
}
|
|
@@ -8419,15 +8880,15 @@ interface FormSectionHeaderConfig {
|
|
|
8419
8880
|
interface FormConfig {
|
|
8420
8881
|
/** Layout sections for simple form organization */
|
|
8421
8882
|
sections: FormSection[];
|
|
8422
|
-
/** Editorial or semantic
|
|
8423
|
-
formBlocksBefore?:
|
|
8424
|
-
/** Editorial or semantic
|
|
8425
|
-
formBlocksBeforeActions?:
|
|
8883
|
+
/** Editorial or semantic rich content rendered before the form sections/actions. */
|
|
8884
|
+
formBlocksBefore?: RichContentDocument | null;
|
|
8885
|
+
/** Editorial or semantic rich content rendered after the form sections and before the primary action area. */
|
|
8886
|
+
formBlocksBeforeActions?: RichContentDocument | null;
|
|
8426
8887
|
/** Controls whether `formBlocksBeforeActions` render inside the last section or after all sections. */
|
|
8427
8888
|
formBlocksBeforeActionsPlacement?: 'insideLastSection' | 'afterSections';
|
|
8428
|
-
/** Editorial or semantic
|
|
8429
|
-
formBlocksAfter?:
|
|
8430
|
-
/** Shared context used to resolve editorial
|
|
8889
|
+
/** Editorial or semantic rich content rendered after the form sections/actions. */
|
|
8890
|
+
formBlocksAfter?: RichContentDocument | null;
|
|
8891
|
+
/** Shared context used to resolve editorial rich-content bindings inside the form host. */
|
|
8431
8892
|
editorialContext?: Record<string, unknown>;
|
|
8432
8893
|
/** Complete field metadata for all fields in the form */
|
|
8433
8894
|
fieldMetadata?: FieldMetadata[];
|
|
@@ -9157,142 +9618,6 @@ declare function getEditorialThemePresetById(themeId: string): EditorialThemePre
|
|
|
9157
9618
|
declare function getEditorialCompliancePresetById(presetId: string): EditorialCompliancePreset | undefined;
|
|
9158
9619
|
declare function getEditorialSolutionPresetById(presetId: string): EditorialSolutionPreset | undefined;
|
|
9159
9620
|
|
|
9160
|
-
type RichBlockContextScope = 'row' | 'computed' | 'detail' | 'meta' | 'user' | 'tenant';
|
|
9161
|
-
interface RichBlockContextConfig {
|
|
9162
|
-
scopes?: RichBlockContextScope[];
|
|
9163
|
-
aliases?: Record<string, string>;
|
|
9164
|
-
}
|
|
9165
|
-
interface RichBlockRuleSet {
|
|
9166
|
-
visibleWhen?: JsonLogicExpression | null;
|
|
9167
|
-
disabledWhen?: JsonLogicExpression | null;
|
|
9168
|
-
loadWhen?: JsonLogicExpression | null;
|
|
9169
|
-
classWhen?: Array<{
|
|
9170
|
-
className: string;
|
|
9171
|
-
expr: JsonLogicExpression;
|
|
9172
|
-
}>;
|
|
9173
|
-
styleWhen?: Array<{
|
|
9174
|
-
style: Record<string, string | number>;
|
|
9175
|
-
expr: JsonLogicExpression;
|
|
9176
|
-
}>;
|
|
9177
|
-
}
|
|
9178
|
-
interface RichBlockBaseNode extends RichBlockRuleSet {
|
|
9179
|
-
id?: string;
|
|
9180
|
-
testId?: string;
|
|
9181
|
-
className?: string;
|
|
9182
|
-
style?: Record<string, string | number>;
|
|
9183
|
-
bindings?: RichBlockContextConfig;
|
|
9184
|
-
}
|
|
9185
|
-
interface RichTextNode extends RichBlockBaseNode {
|
|
9186
|
-
type: 'text';
|
|
9187
|
-
text?: string;
|
|
9188
|
-
textExpr?: string;
|
|
9189
|
-
}
|
|
9190
|
-
interface RichIconNode extends RichBlockBaseNode {
|
|
9191
|
-
type: 'icon';
|
|
9192
|
-
icon: string;
|
|
9193
|
-
ariaLabel?: string;
|
|
9194
|
-
}
|
|
9195
|
-
interface RichImageNode extends RichBlockBaseNode {
|
|
9196
|
-
type: 'image';
|
|
9197
|
-
src?: string;
|
|
9198
|
-
srcExpr?: string;
|
|
9199
|
-
alt?: string;
|
|
9200
|
-
altExpr?: string;
|
|
9201
|
-
}
|
|
9202
|
-
interface RichBadgeNode extends RichBlockBaseNode {
|
|
9203
|
-
type: 'badge';
|
|
9204
|
-
label?: string;
|
|
9205
|
-
labelExpr?: string;
|
|
9206
|
-
icon?: string;
|
|
9207
|
-
}
|
|
9208
|
-
interface RichAvatarNode extends RichBlockBaseNode {
|
|
9209
|
-
type: 'avatar';
|
|
9210
|
-
name?: string;
|
|
9211
|
-
nameExpr?: string;
|
|
9212
|
-
imageSrc?: string;
|
|
9213
|
-
imageSrcExpr?: string;
|
|
9214
|
-
initials?: string;
|
|
9215
|
-
initialsExpr?: string;
|
|
9216
|
-
}
|
|
9217
|
-
interface RichMetricNode extends RichBlockBaseNode {
|
|
9218
|
-
type: 'metric';
|
|
9219
|
-
label: string;
|
|
9220
|
-
valueExpr: string;
|
|
9221
|
-
captionExpr?: string;
|
|
9222
|
-
icon?: string;
|
|
9223
|
-
}
|
|
9224
|
-
interface RichProgressNode extends RichBlockBaseNode {
|
|
9225
|
-
type: 'progress';
|
|
9226
|
-
valueExpr: string;
|
|
9227
|
-
max?: number;
|
|
9228
|
-
label?: string;
|
|
9229
|
-
labelExpr?: string;
|
|
9230
|
-
showPercent?: boolean;
|
|
9231
|
-
}
|
|
9232
|
-
type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode;
|
|
9233
|
-
interface RichComposeNode extends RichBlockBaseNode {
|
|
9234
|
-
type: 'compose';
|
|
9235
|
-
direction?: 'row' | 'column';
|
|
9236
|
-
gap?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
9237
|
-
wrap?: boolean;
|
|
9238
|
-
items: RichPresenterNode[];
|
|
9239
|
-
}
|
|
9240
|
-
interface RichCardNode extends RichBlockBaseNode {
|
|
9241
|
-
type: 'card';
|
|
9242
|
-
title?: string;
|
|
9243
|
-
titleExpr?: string;
|
|
9244
|
-
subtitle?: string;
|
|
9245
|
-
subtitleExpr?: string;
|
|
9246
|
-
content: Array<RichPresenterNode | RichComposeNode>;
|
|
9247
|
-
}
|
|
9248
|
-
type CorePresetKind = 'surface-open' | 'widget-page-layout' | 'widget-page-theme' | 'editorial-theme' | 'editorial-compliance' | 'editorial-solution' | 'rich-block';
|
|
9249
|
-
interface CorePresetRef {
|
|
9250
|
-
kind: CorePresetKind;
|
|
9251
|
-
namespace: string;
|
|
9252
|
-
presetId: string;
|
|
9253
|
-
version?: string;
|
|
9254
|
-
}
|
|
9255
|
-
interface RichPresetReferenceNode extends RichBlockBaseNode {
|
|
9256
|
-
type: 'preset';
|
|
9257
|
-
ref: CorePresetRef & {
|
|
9258
|
-
kind: 'rich-block';
|
|
9259
|
-
};
|
|
9260
|
-
inputs?: Record<string, unknown>;
|
|
9261
|
-
}
|
|
9262
|
-
interface CorePresetDescriptor {
|
|
9263
|
-
ref: CorePresetRef;
|
|
9264
|
-
label: string;
|
|
9265
|
-
description?: string;
|
|
9266
|
-
tags?: string[];
|
|
9267
|
-
owner?: string;
|
|
9268
|
-
}
|
|
9269
|
-
interface CorePresetDiscoveryRegistry {
|
|
9270
|
-
list(kind?: CorePresetKind): CorePresetDescriptor[];
|
|
9271
|
-
get(ref: CorePresetRef): CorePresetDescriptor | null;
|
|
9272
|
-
}
|
|
9273
|
-
interface RichBlockHostCapabilities {
|
|
9274
|
-
dispatchAction?(actionId: string, payload?: unknown): void | Promise<void>;
|
|
9275
|
-
resolveEmbed?(kind: 'component' | 'templateRef' | 'formRef' | 'tableRef' | 'chartRef', ref: string, inputs?: Record<string, unknown>): unknown;
|
|
9276
|
-
resolvePreset?(ref: CorePresetRef): unknown;
|
|
9277
|
-
loadData?(request: {
|
|
9278
|
-
source: string;
|
|
9279
|
-
params?: Record<string, unknown>;
|
|
9280
|
-
}): Promise<unknown>;
|
|
9281
|
-
getFallbackPolicy?(): {
|
|
9282
|
-
onUnknownEmbed?: 'hide' | 'error' | 'placeholder';
|
|
9283
|
-
onUnknownPreset?: 'hide' | 'error' | 'placeholder';
|
|
9284
|
-
onLoadError?: 'hide' | 'error' | 'placeholder';
|
|
9285
|
-
};
|
|
9286
|
-
}
|
|
9287
|
-
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode;
|
|
9288
|
-
type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
|
|
9289
|
-
interface RichContentDocument {
|
|
9290
|
-
kind: 'praxis.rich-content';
|
|
9291
|
-
version: '1.0.0';
|
|
9292
|
-
context?: RichBlockContextConfig;
|
|
9293
|
-
nodes: RichBlockNode[];
|
|
9294
|
-
}
|
|
9295
|
-
|
|
9296
9621
|
type WidgetShellActionPlacement = 'header' | 'window';
|
|
9297
9622
|
interface WidgetShellAction {
|
|
9298
9623
|
/** Unique action id used for tracking and default emit name. */
|
|
@@ -9324,6 +9649,7 @@ interface WidgetShellWindowActions {
|
|
|
9324
9649
|
/** Show fullscreen toggle in the header. */
|
|
9325
9650
|
fullscreen?: boolean;
|
|
9326
9651
|
}
|
|
9652
|
+
type WidgetShellBodyLayout = 'content' | 'fill' | 'scroll';
|
|
9327
9653
|
interface WidgetShellConfig {
|
|
9328
9654
|
/** Shell type. 'dashboard-card' enables the default dashboard styling. */
|
|
9329
9655
|
kind?: 'dashboard-card' | 'none';
|
|
@@ -9347,6 +9673,8 @@ interface WidgetShellConfig {
|
|
|
9347
9673
|
expanded?: boolean;
|
|
9348
9674
|
/** Initial fullscreen state. */
|
|
9349
9675
|
fullscreen?: boolean;
|
|
9676
|
+
/** Defines how projected widget content should occupy the shell body. */
|
|
9677
|
+
bodyLayout?: WidgetShellBodyLayout;
|
|
9350
9678
|
/** Optional appearance overrides for card, header, and typography. */
|
|
9351
9679
|
appearance?: {
|
|
9352
9680
|
card?: {
|
|
@@ -10595,6 +10923,7 @@ type ActionList = WidgetShellAction[];
|
|
|
10595
10923
|
type Appearance = WidgetShellConfig['appearance'];
|
|
10596
10924
|
declare const BUILTIN_SHELL_PRESETS: Record<string, NonNullable<Appearance>>;
|
|
10597
10925
|
declare class WidgetShellComponent implements OnChanges {
|
|
10926
|
+
private readonly i18n;
|
|
10598
10927
|
shell?: WidgetShellConfig | null;
|
|
10599
10928
|
context?: Record<string, any> | null;
|
|
10600
10929
|
dragSurfaceEnabled: boolean;
|
|
@@ -10620,12 +10949,14 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
10620
10949
|
onHeaderKeydown(event: KeyboardEvent): void;
|
|
10621
10950
|
stopIfExpanded(ev: MouseEvent): void;
|
|
10622
10951
|
closeOverlay(): void;
|
|
10952
|
+
moreActionsLabel(): string;
|
|
10623
10953
|
private handleWindowAction;
|
|
10624
10954
|
private buildWindowActions;
|
|
10625
10955
|
private isVisible;
|
|
10626
10956
|
private resolvePresetAppearance;
|
|
10627
10957
|
private mergeAppearance;
|
|
10628
10958
|
private isInteractiveHeaderTarget;
|
|
10959
|
+
private t;
|
|
10629
10960
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetShellComponent, never>;
|
|
10630
10961
|
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetShellComponent, "praxis-widget-shell", never, { "shell": { "alias": "shell"; "required": false; }; "context": { "alias": "context"; "required": false; }; "dragSurfaceEnabled": { "alias": "dragSurfaceEnabled"; "required": false; }; "dragSurfaceLabel": { "alias": "dragSurfaceLabel"; "required": false; }; }, { "action": "action"; "dragSurfacePointerDown": "dragSurfacePointerDown"; "dragSurfaceKeydown": "dragSurfaceKeydown"; }, ["loader"], ["*"], true, never>;
|
|
10631
10962
|
}
|
|
@@ -10997,6 +11328,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
10997
11328
|
private readonly globalActions;
|
|
10998
11329
|
private readonly storage;
|
|
10999
11330
|
private readonly componentKeys;
|
|
11331
|
+
private readonly componentMetadata;
|
|
11000
11332
|
private readonly i18n;
|
|
11001
11333
|
private readonly route;
|
|
11002
11334
|
private readonly conn;
|
|
@@ -11008,9 +11340,12 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11008
11340
|
ngOnDestroy(): void;
|
|
11009
11341
|
ngOnChanges(changes: SimpleChanges): void;
|
|
11010
11342
|
onWidgetEvent(fromKey: string, evt: WidgetEventEnvelope): void;
|
|
11343
|
+
private applyWidgetInputPatchToPage;
|
|
11344
|
+
private extractWidgetInputPatch;
|
|
11011
11345
|
private buildStateRuntime;
|
|
11012
11346
|
private bootstrapCompositionAdapter;
|
|
11013
11347
|
private applyEditShellActions;
|
|
11348
|
+
private withShellActions;
|
|
11014
11349
|
private applyBootstrapCompositionHydration;
|
|
11015
11350
|
private reportStateDiagnostics;
|
|
11016
11351
|
private dispatchWidgetEventToComposition;
|
|
@@ -11022,7 +11357,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11022
11357
|
private resolveShellTemplates;
|
|
11023
11358
|
private resolveComponentBindingPath;
|
|
11024
11359
|
private buildRuntimeEventId;
|
|
11025
|
-
private
|
|
11360
|
+
private shouldInjectEditShellActions;
|
|
11361
|
+
private canOpenWidgetShellSettings;
|
|
11026
11362
|
private areStateValuesEqual;
|
|
11027
11363
|
onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
|
|
11028
11364
|
onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
@@ -11034,6 +11370,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11034
11370
|
private resolveTemplate;
|
|
11035
11371
|
private lookup;
|
|
11036
11372
|
openWidgetShellSettings(key: string): void;
|
|
11373
|
+
openWidgetComponentSettings(key: string): void;
|
|
11374
|
+
private applyWidgetComponentInputs;
|
|
11037
11375
|
openPageSettings(): void;
|
|
11038
11376
|
private applyWidgetShell;
|
|
11039
11377
|
private applyPageLayout;
|
|
@@ -11056,6 +11394,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11056
11394
|
private resolveCanvas;
|
|
11057
11395
|
private resolveDeviceKind;
|
|
11058
11396
|
isCanvasMode(): boolean;
|
|
11397
|
+
shouldAutoWireOutputs(widget: WidgetInstance | RenderedWidgetInstance): boolean;
|
|
11059
11398
|
selectCanvasWidget(widgetKey: string): void;
|
|
11060
11399
|
isCanvasWidgetSelected(widgetKey: string): boolean;
|
|
11061
11400
|
isCanvasWidgetBlocked(widgetKey: string): boolean;
|
|
@@ -11238,11 +11577,11 @@ declare class IconPickerService {
|
|
|
11238
11577
|
|
|
11239
11578
|
/**
|
|
11240
11579
|
* Binds a stored icon string to a mat-icon element supporting:
|
|
11241
|
-
* - Material Icons (classic ligatures): "mi:pending"
|
|
11580
|
+
* - Material Icons (classic ligatures): "mi:pending"
|
|
11242
11581
|
* - Material Symbols Outlined: "mso:right_click" or "ms:right_click"
|
|
11243
11582
|
* - Material Symbols Rounded: "msr:right_click"
|
|
11244
11583
|
* - Material Symbols Sharp: "mss:right_click"
|
|
11245
|
-
* Falls back to
|
|
11584
|
+
* Falls back to Material Symbols Outlined when prefix is omitted.
|
|
11246
11585
|
*/
|
|
11247
11586
|
declare class PraxisIconDirective implements OnChanges {
|
|
11248
11587
|
private el;
|
|
@@ -11525,5 +11864,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
11525
11864
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
11526
11865
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
11527
11866
|
|
|
11528
|
-
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, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG$1 as GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_CATALOG as GLOBAL_ACTION_SPEC_CATALOG, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisLayerScaleCss, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getGlobalActionCatalog, getGlobalActionUiSchema, getReferencedFieldMetadata, getTextTransformer, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isInlineFilterControlType, isRangeValidForFilter, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, normalizePraxisDataQueryContext, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisJsonLogicOperator, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, withMessage, withPraxisHttpLoading };
|
|
11529
|
-
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilitySnapshot, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCardNode, RichComposeNode, RichContentDocument, RichIconNode, RichImageNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichTextAppearance, RichTextNode, RichTextVariant, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
11867
|
+
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG$1 as GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_CATALOG as GLOBAL_ACTION_SPEC_CATALOG, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisLayerScaleCss, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getGlobalActionCatalog, getGlobalActionUiSchema, getReferencedFieldMetadata, getTextTransformer, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isInlineFilterControlType, isRangeValidForFilter, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, normalizePraxisDataQueryContext, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, withMessage, withPraxisHttpLoading };
|
|
11868
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityOperation, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCardNode, RichComposeNode, RichContentDocument, RichIconNode, RichImageNode, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineItem, RichTimelineNode, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|