@praxisui/expansion 9.0.0-beta.71 → 9.0.0-beta.73

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "generatedAt": "2026-07-11T00:12:06.404Z",
3
+ "generatedAt": "2026-07-12T01:34:40.567Z",
4
4
  "packageName": "@praxisui/expansion",
5
- "packageVersion": "9.0.0-beta.71",
5
+ "packageVersion": "9.0.0-beta.73",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 1,
@@ -14,74 +14,92 @@
14
14
  {
15
15
  "name": "config",
16
16
  "type": "ExpansionMetadata",
17
- "required": false
17
+ "required": false,
18
+ "description": "Configuração JSON (acordeão, aparência e painéis)",
19
+ "label": "Configuração"
18
20
  },
19
21
  {
20
22
  "name": "expansionId",
21
23
  "type": "string",
22
- "required": false
24
+ "required": false,
25
+ "description": "Identificador para persistência (obrigatório)",
26
+ "label": "ID"
23
27
  },
24
28
  {
25
29
  "name": "componentInstanceId",
26
30
  "type": "string",
27
- "required": false
31
+ "required": false,
32
+ "description": "Identificador opcional para múltiplas instâncias na mesma rota",
33
+ "label": "ID da instância"
28
34
  },
29
35
  {
30
36
  "name": "enableCustomization",
31
37
  "type": "boolean",
32
- "required": false
38
+ "required": false,
39
+ "label": "Modo de customização",
40
+ "default": false
33
41
  },
34
42
  {
35
43
  "name": "context",
36
44
  "type": "Record<string, any>",
37
- "required": false
45
+ "required": false,
46
+ "label": "Contexto"
38
47
  },
39
48
  {
40
49
  "name": "strictValidation",
41
50
  "type": "boolean",
42
- "required": false
51
+ "required": false,
52
+ "default": true
43
53
  },
44
54
  {
45
55
  "name": "defaultOptions",
46
56
  "type": "MatExpansionPanelDefaultOptions",
47
- "required": false
57
+ "required": false,
58
+ "label": "Opções padrão do painel"
48
59
  }
49
60
  ],
50
61
  "outputs": [
51
62
  {
52
63
  "name": "opened",
53
64
  "type": "{ panelId?: string; panelIndex: number }",
54
- "required": false
65
+ "required": false,
66
+ "label": "Painel aberto"
55
67
  },
56
68
  {
57
69
  "name": "closed",
58
70
  "type": "{ panelId?: string; panelIndex: number }",
59
- "required": false
71
+ "required": false,
72
+ "label": "Painel fechado"
60
73
  },
61
74
  {
62
75
  "name": "expandedChange",
63
76
  "type": "{ panelId?: string; panelIndex: number; expanded: boolean }",
64
- "required": false
77
+ "required": false,
78
+ "label": "Alterou expansão"
65
79
  },
66
80
  {
67
81
  "name": "afterExpand",
68
82
  "type": "{ panelId?: string; panelIndex: number }",
69
- "required": false
83
+ "required": false,
84
+ "label": "Após expandir"
70
85
  },
71
86
  {
72
87
  "name": "afterCollapse",
73
88
  "type": "{ panelId?: string; panelIndex: number }",
74
- "required": false
89
+ "required": false,
90
+ "label": "Após colapsar"
75
91
  },
76
92
  {
77
93
  "name": "destroyed",
78
94
  "type": "{ panelId?: string; panelIndex: number }",
79
- "required": false
95
+ "required": false,
96
+ "label": "Destruído"
80
97
  },
81
98
  {
82
99
  "name": "widgetEvent",
83
100
  "type": "WidgetEventEnvelope",
84
- "required": false
101
+ "required": false,
102
+ "label": "Evento interno"
85
103
  }
86
104
  ],
87
105
  "configSchemaId": null,
@@ -95,6 +113,139 @@
95
113
  "configurable"
96
114
  ],
97
115
  "lib": "@praxisui/expansion",
116
+ "actions": [
117
+ {
118
+ "id": "panel-opened",
119
+ "label": "Painel aberto",
120
+ "icon": "unfold_more",
121
+ "description": "Emite evento ao abrir um painel",
122
+ "emit": "opened",
123
+ "payloadSchema": {
124
+ "type": "object",
125
+ "properties": {
126
+ "panelId": {
127
+ "type": "string",
128
+ "description": "ID do painel"
129
+ },
130
+ "panelIndex": {
131
+ "type": "number",
132
+ "description": "Índice do painel"
133
+ }
134
+ },
135
+ "required": [
136
+ "panelIndex"
137
+ ],
138
+ "example": {
139
+ "panelIndex": 0
140
+ }
141
+ },
142
+ "scope": "context"
143
+ },
144
+ {
145
+ "id": "panel-closed",
146
+ "label": "Painel fechado",
147
+ "icon": "unfold_less",
148
+ "description": "Emite evento ao fechar um painel",
149
+ "emit": "closed",
150
+ "payloadSchema": {
151
+ "type": "object",
152
+ "properties": {
153
+ "panelId": {
154
+ "type": "string",
155
+ "description": "ID do painel"
156
+ },
157
+ "panelIndex": {
158
+ "type": "number",
159
+ "description": "Índice do painel"
160
+ }
161
+ },
162
+ "required": [
163
+ "panelIndex"
164
+ ],
165
+ "example": {
166
+ "panelIndex": 0
167
+ }
168
+ },
169
+ "scope": "context"
170
+ },
171
+ {
172
+ "id": "panel-toggle",
173
+ "label": "Alternar painel",
174
+ "icon": "open_in_full",
175
+ "description": "Emite evento ao alternar expansão do painel",
176
+ "emit": "expandedChange",
177
+ "payloadSchema": {
178
+ "type": "object",
179
+ "properties": {
180
+ "panelId": {
181
+ "type": "string",
182
+ "description": "ID do painel"
183
+ },
184
+ "panelIndex": {
185
+ "type": "number",
186
+ "description": "Índice do painel"
187
+ },
188
+ "expanded": {
189
+ "type": "boolean",
190
+ "description": "Estado expandido"
191
+ }
192
+ },
193
+ "required": [
194
+ "panelIndex",
195
+ "expanded"
196
+ ],
197
+ "example": {
198
+ "panelIndex": 0,
199
+ "expanded": true
200
+ }
201
+ },
202
+ "scope": "context"
203
+ }
204
+ ],
205
+ "ports": [
206
+ {
207
+ "id": "config",
208
+ "label": "Configuracao",
209
+ "direction": "input",
210
+ "semanticKind": "config-fragment",
211
+ "schema": {
212
+ "id": "ExpansionMetadata",
213
+ "kind": "ts-type",
214
+ "ref": "ExpansionMetadata"
215
+ },
216
+ "description": "Fragmento canonico de configuracao dos paineis e dos widgets internos.",
217
+ "exposure": {
218
+ "public": true,
219
+ "group": "config"
220
+ }
221
+ },
222
+ {
223
+ "id": "widgetEvent",
224
+ "label": "Evento interno de widget",
225
+ "direction": "output",
226
+ "semanticKind": "event",
227
+ "schema": {
228
+ "id": "WidgetEventEnvelope",
229
+ "kind": "ts-type",
230
+ "ref": "WidgetEventEnvelope"
231
+ },
232
+ "cardinality": "stream",
233
+ "description": "Bridge composta para transporte de eventos internos. As portas canonicas dos filhos sao resolvidas por component-port + nestedPath.",
234
+ "exposure": {
235
+ "public": true,
236
+ "advanced": true,
237
+ "group": "composite"
238
+ }
239
+ }
240
+ ],
241
+ "configEditor": {
242
+ "component": "[ref:PraxisExpansionWidgetConfigEditor]",
243
+ "title": "Configure expansion"
244
+ },
245
+ "authoringManifestRef": {
246
+ "componentId": "praxis-expansion",
247
+ "source": "PRAXIS_EXPANSION_AUTHORING_MANIFEST"
248
+ },
98
249
  "source": "projects/praxis-expansion/src/lib/praxis-expansion.metadata.ts",
99
250
  "exportName": "PRAXIS_EXPANSION_COMPONENT_METADATA",
100
251
  "componentCapabilities": [
@@ -1549,7 +1700,7 @@
1549
1700
  "chunkIndex": 0,
1550
1701
  "chunkKind": "summary",
1551
1702
  "content": "Component ID: praxis-expansion\nSelector: praxis-expansion\nFriendly Name: Praxis Expansion Panel\nDescription: Acordeão/Painéis de expansão configuráveis por metadata, com aparência e tokens M3.\nLib/Package: @praxisui/expansion\nTags: widget, expansion, accordion, configurable\nInputs:\n - config (ExpansionMetadata)\n - expansionId (string)\n - componentInstanceId (string)\n - enableCustomization (boolean)\n - context (Record<string, any>)\n - strictValidation (boolean)\n - defaultOptions (MatExpansionPanelDefaultOptions)\nOutputs:\n - opened ({ panelId?: string; panelIndex: number })\n - closed ({ panelId?: string; panelIndex: number })\n - expandedChange ({ panelId?: string; panelIndex: number; expanded: boolean })\n - afterExpand ({ panelId?: string; panelIndex: number })\n - afterCollapse ({ panelId?: string; panelIndex: number })\n - destroyed ({ panelId?: string; panelIndex: number })\n - widgetEvent (WidgetEventEnvelope)\n",
1552
- "sourcePointer": "praxis-ui-angular/projects/praxis-expansion/src/lib/praxis-expansion.metadata.ts",
1703
+ "sourcePointer": "projects/praxis-expansion/src/lib/praxis-expansion.metadata.ts",
1553
1704
  "contentHash": "30ccb793a31c22baf57710e1c70b92fc952e40dcea38869a7f32ce91d1600ece",
1554
1705
  "sourceKind": "component_definition",
1555
1706
  "sourceId": "praxis-expansion",
@@ -1559,7 +1710,7 @@
1559
1710
  "chunkIndex": 1,
1560
1711
  "chunkKind": "capabilities",
1561
1712
  "content": "Component Capabilities:\n - Path: appearance\n Category: appearance\n Kind: object\n Description: Appearance settings.\n - Path: appearance.density\n Category: appearance\n Kind: enum\n Description: Density preset.\n - Path: appearance.themeClass\n Category: appearance\n Kind: string\n Description: Theme CSS class for root.\n - Path: appearance.customCss\n Category: appearance\n Kind: string\n Description: Custom CSS injected into component.\n - Path: appearance.tokens\n Category: appearance\n Kind: object\n Description: Token map for theme overrides.\n - Path: appearance.tokens.[token]\n Category: appearance\n Kind: string\n Description: Token value (CSS or var).\n - Path: accordion\n Category: accordion\n Kind: object\n Description: Accordion behavior settings.\n - Path: accordion.multi\n Category: accordion\n Kind: boolean\n Description: Allow multiple panels open.\n - Path: accordion.displayMode\n Category: accordion\n Kind: enum\n Description: Accordion display mode.\n - Path: accordion.togglePosition\n Category: accordion\n Kind: enum\n Description: Toggle icon position.\n - Path: accordion.hideToggle\n Category: accordion\n Kind: boolean\n Description: Hide toggle icon.\n - Path: accordion.id\n Category: accordion\n Kind: string\n Description: Accordion id.\n - Path: panels\n Category: panels\n Kind: array\n Description: Panel list.\n - Path: panels[]\n Category: panels\n Kind: object\n Description: Panel definition.\n - Path: panels[].id\n Category: panels\n Kind: string\n Description: Panel id.\n - Path: panels[].title\n Category: panels\n Kind: string\n Description: Panel title.\n - Path: panels[].description\n Category: panels\n Kind: string\n Description: Panel description.\n - Path: panels[].icon\n Category: panels\n Kind: string\n Description: Panel header icon rendered through PraxisIconDirective.\n - Path: panels[].disabled\n Category: panels\n Kind: boolean\n Description: Disable panel.\n - Path: panels[].expanded\n Category: panels\n Kind: boolean\n Description: Expanded state.\n - Path: panels[].hideToggle\n Category: panels\n Kind: boolean\n Description: Hide toggle icon for panel.\n - Path: panels[].collapsedHeight\n Category: panels\n Kind: string\n Description: Collapsed header height (e.g., 48px).\n - Path: panels[].expandedHeight\n Category: panels\n Kind: string\n Description: Expanded header height (e.g., 64px).\n - Path: panels[].content\n Category: panels\n Kind: array\n Description: Dynamic field metadata list (legacy).\n - Path: panels[].content[]\n Category: panels\n Kind: object\n Description: Dynamic field metadata item.\n - Path: panels[].widgets\n Category: panels\n Kind: array\n Description: WidgetDefinition list for content.\n - Path: panels[].widgets[]\n Category: panels\n Kind: object\n Description: WidgetDefinition item.\n - Path: panels[].widgets[].id\n Category: panels\n Kind: enum\n Description: Component registry id for widget.\n - Path: panels[].widgets[].inputs\n Category: panels\n Kind: object\n Description: Inputs bound into the widget instance.\n - Path: panels[].widgets[].outputs\n Category: panels\n Kind: object\n Description: Outputs mapped to actions.\n - Path: panels[].widgets[].outputs.[outputName]\n Category: panels\n Kind: object\n Description: Output action mapping (ActionDefinition or \"emit\").\n - Path: panels[].widgets[].bindingOrder\n Category: panels\n Kind: array\n Description: Explicit input binding order.\n - Path: panels[].widgets[].bindingOrder[]\n Category: panels\n Kind: string\n Description: Input name applied first.\n - Path: panels[].actionButtons\n Category: actions\n Kind: array\n Description: Action buttons at panel footer.\n - Path: panels[].actionButtons[]\n Category: actions\n Kind: object\n Description: Action button definition.\n - Path: panels[].actionButtons[].icon\n Category: actions\n Kind: string\n Description: Action icon.\n - Path: panels[].actionButtons[].label\n Category: actions\n Kind: string\n Description: Action label.\n - Path: panels[].actionButtons[].action\n Category: actions\n Kind: string\n Description: Action identifier payload.\nCapability Notes:\n - panels[] should be merged by id or title to avoid replacing all panels.\n - appearance.customCss is injected into a <style> tag; avoid unsafe CSS from untrusted sources.\n - appearance.tokens supports limited keys used by styleCss().\n - panels[].widgets[].id must be a ComponentMetadataRegistry id.\n - If a field controlType lacks a dedicated catalog, treat it as FieldMetadata base.\n",
1562
- "sourcePointer": "praxis-ui-angular/projects/praxis-expansion/src/lib/ai/expansion-ai-capabilities.ts",
1713
+ "sourcePointer": "projects/praxis-expansion/src/lib/ai/expansion-ai-capabilities.ts",
1563
1714
  "contentHash": "2d3b36c05aabe4110cac4f3039fad084b74c85b8255dc525d0fd481546b0be43",
1564
1715
  "sourceKind": "component_definition",
1565
1716
  "sourceId": "praxis-expansion",
@@ -1569,7 +1720,7 @@
1569
1720
  "chunkIndex": 2,
1570
1721
  "chunkKind": "authoring_manifest",
1571
1722
  "content": "{\n \"schemaVersion\": \"1.0.0\",\n \"componentId\": \"praxis-expansion\",\n \"ownerPackage\": \"@praxisui/expansion\",\n \"configSchemaId\": \"ExpansionMetadata\",\n \"manifestVersion\": \"1.0.0\",\n \"runtimeInputs\": [\n {\n \"name\": \"config\",\n \"type\": \"ExpansionMetadata\",\n \"description\": \"Canonical accordion and panel configuration.\"\n },\n {\n \"name\": \"expansionId\",\n \"type\": \"string\",\n \"description\": \"Stable id used to derive expansion config persistence scope.\"\n },\n {\n \"name\": \"componentInstanceId\",\n \"type\": \"string\",\n \"description\": \"Optional instance discriminator for persistence scope.\"\n },\n {\n \"name\": \"context\",\n \"type\": \"Record<string, any>\",\n \"description\": \"Context passed to nested widgets.\"\n },\n {\n \"name\": \"strictValidation\",\n \"type\": \"boolean\",\n \"description\": \"Controls nested widget validation strictness.\"\n },\n {\n \"name\": \"defaultOptions\",\n \"type\": \"MatExpansionPanelDefaultOptions\",\n \"description\": \"Instance-level Material expansion defaults.\"\n },\n {\n \"name\": \"enableCustomization\",\n \"type\": \"boolean\",\n \"description\": \"Enables Settings Panel authoring surfaces.\"\n }\n ],\n \"editableTargets\": [\n {\n \"kind\": \"panel\",\n \"resolver\": \"panel-by-id-or-title\",\n \"description\": \"A panel in config.panels[].\"\n },\n {\n \"kind\": \"panelHeader\",\n \"resolver\": \"panel-by-id-or-title\",\n \"description\": \"Header title, description, icon and heights for a panel.\"\n },\n {\n \"kind\": \"panelContent\",\n \"resolver\": \"panel-content-by-id\",\n \"description\": \"Lazy panel content hosted through fields, widgets or action buttons.\"\n },\n {\n \"kind\": \"expandedState\",\n \"resolver\": \"panel-by-id-or-title\",\n \"description\": \"Panel expanded state and default expanded selection.\"\n },\n {\n \"kind\": \"disabledState\",\n \"resolver\": \"panel-by-id-or-title\",\n \"description\": \"Panel disabled state.\"\n },\n {\n \"kind\": \"layout\",\n \"resolver\": \"expansion-layout-config\",\n \"description\": \"Accordion display mode, toggle position, density and visual layout.\"\n },\n {\n \"kind\": \"behavior\",\n \"resolver\": \"expansion-behavior-config\",\n \"description\": \"Accordion multi-expand and hide-toggle behavior.\"\n }\n ],\n \"operations\": [\n {\n \"operationId\": \"panel.add\",\n \"title\": \"Add panel\",\n \"scope\": \"global\",\n \"targetKind\": \"panel\",\n \"target\": {\n \"kind\": \"panel\",\n \"resolver\": \"panels-array\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": false\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"id\",\n \"title\"\n ],\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"title\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"icon\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"expanded\": {\n \"type\": \"boolean\"\n },\n \"hideToggle\": {\n \"type\": \"boolean\"\n },\n \"collapsedHeight\": {\n \"type\": \"string\"\n },\n \"expandedHeight\": {\n \"type\": \"string\"\n },\n \"content\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\"\n }\n },\n \"widgets\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\"\n }\n },\n \"actionButtons\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\"\n }\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"append-unique\",\n \"path\": \"panels[]\",\n \"key\": \"id\"\n }\n ],\n \"destructive\": false,\n \"requiresConfirmation\": false,\n \"validators\": [\n \"panel-id-unique\",\n \"panel-order-deterministic\",\n \"panel-content-valid\"\n ],\n \"affectedPaths\": [\n \"panels[]\"\n ],\n \"submissionImpact\": \"config-only\",\n \"preconditions\": [\n \"config-initialized\"\n ]\n },\n {\n \"operationId\": \"panel.remove\",\n \"title\": \"Remove panel\",\n \"scope\": \"layout\",\n \"targetKind\": \"panel\",\n \"target\": {\n \"kind\": \"panel\",\n \"resolver\": \"panel-by-id-or-title\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": true\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"replacementExpandedPanelId\": {\n \"type\": \"string\"\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"compile-domain-patch\",\n \"handler\": \"expansion-panel-remove\",\n \"handlerContract\": {\n \"reads\": [\n \"accordion.multi\",\n \"panels[]\",\n \"panels[].id\",\n \"panels[].expanded\"\n ],\n \"writes\": [\n \"panels[]\",\n \"panels[].expanded\"\n ],\n \"identityKeys\": [\n \"panels[].id\"\n ],\n \"inputSchema\": {\n \"type\": \"object\",\n \"properties\": {\n \"replacementExpandedPanelId\": {\n \"type\": \"string\"\n }\n }\n },\n \"failureModes\": [\n \"panel-not-found\",\n \"replacement-panel-not-found\",\n \"content-removal-not-confirmed\",\n \"single-expand-conflict\"\n ],\n \"description\": \"Removes the target panel by stable id and applies replacement expanded state when the removed panel was expanded.\"\n }\n }\n ],\n \"destructive\": true,\n \"requiresConfirmation\": true,\n \"validators\": [\n \"panel-exists\",\n \"default-expanded-removal-safe\",\n \"panel-content-removal-confirmed\"\n ],\n \"affectedPaths\": [\n \"panels[]\",\n \"panels[].expanded\"\n ],\n \"submissionImpact\": \"config-only\",\n \"preconditions\": [\n \"config-initialized\",\n \"target-panel-exists\",\n \"confirmation-collected\"\n ]\n },\n {\n \"operationId\": \"panel.title.set\",\n \"title\": \"Set panel title\",\n \"scope\": \"layout\",\n \"targetKind\": \"panelHeader\",\n \"target\": {\n \"kind\": \"panelHeader\",\n \"resolver\": \"panel-by-id-or-title\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": true\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"title\"\n ],\n \"properties\": {\n \"title\": {\n \"type\": \"string\"\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"merge-by-key\",\n \"path\": \"panels[]\",\n \"key\": \"id\"\n }\n ],\n \"destructive\": false,\n \"requiresConfirmation\": false,\n \"validators\": [\n \"panel-exists\",\n \"panel-title-valid\"\n ],\n \"affectedPaths\": [\n \"panels[].title\"\n ],\n \"submissionImpact\": \"config-only\",\n \"preconditions\": [\n \"config-initialized\",\n \"target-panel-exists\"\n ]\n },\n {\n \"operationId\": \"panel.description.set\",\n \"title\": \"Set panel description\",\n \"scope\": \"layout\",\n \"targetKind\": \"panelHeader\",\n \"target\": {\n \"kind\": \"panelHeader\",\n \"resolver\": \"panel-by-id-or-title\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": true\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"description\"\n ],\n \"properties\": {\n \"description\": {\n \"type\": \"string\"\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"merge-by-key\",\n \"path\": \"panels[]\",\n \"key\": \"id\"\n }\n ],\n \"destructive\": false,\n \"requiresConfirmation\": false,\n \"validators\": [\n \"panel-exists\",\n \"panel-description-valid\"\n ],\n \"affectedPaths\": [\n \"panels[].description\"\n ],\n \"submissionImpact\": \"config-only\",\n \"preconditions\": [\n \"config-initialized\",\n \"target-panel-exists\"\n ]\n },\n {\n \"operationId\": \"panel.icon.set\",\n \"title\": \"Set panel icon\",\n \"scope\": \"layout\",\n \"targetKind\": \"panelHeader\",\n \"target\": {\n \"kind\": \"panelHeader\",\n \"resolver\": \"panel-by-id-or-title\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": true\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"icon\"\n ],\n \"properties\": {\n \"icon\": {\n \"type\": \"string\"\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"merge-by-key\",\n \"path\": \"panels[]\",\n \"key\": \"id\"\n }\n ],\n \"destructive\": false,\n \"requiresConfirmation\": false,\n \"validators\": [\n \"panel-exists\",\n \"panel-icon-valid\",\n \"editor-runtime-round-trip\"\n ],\n \"affectedPaths\": [\n \"panels[].icon\"\n ],\n \"submissionImpact\": \"config-only\",\n \"preconditions\": [\n \"config-initialized\",\n \"target-panel-exists\"\n ]\n },\n {\n \"operationId\": \"panel.order.set\",\n \"title\": \"Reorder panels\",\n \"scope\": \"layout\",\n \"targetKind\": \"panel\",\n \"target\": {\n \"kind\": \"panel\",\n \"resolver\": \"panel-by-id-or-title\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": true\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"beforePanelId\"\n ],\n \"properties\": {\n \"beforePanelId\": {\n \"type\": \"string\"\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"reorder-by-key\",\n \"path\": \"panels[]\",\n \"key\": \"id\"\n }\n ],\n \"destructive\": false,\n \"requiresConfirmation\": false,\n \"validators\": [\n \"panel-exists\",\n \"panel-order-deterministic\"\n ],\n \"affectedPaths\": [\n \"panels[]\"\n ],\n \"submissionImpact\": \"config-only\",\n \"preconditions\": [\n \"config-initialized\",\n \"target-panel-exists\"\n ]\n },\n {\n \"operationId\": \"panel.disabled.set\",\n \"title\": \"Set disabled state\",\n \"scope\": \"interaction\",\n \"targetKind\": \"disabledState\",\n \"target\": {\n \"kind\": \"disabledState\",\n \"resolver\": \"panel-by-id-or-title\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": true\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"disabled\"\n ],\n \"properties\": {\n \"disabled\": {\n \"type\": \"boolean\"\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"merge-by-key\",\n \"path\": \"panels[]\",\n \"key\": \"id\"\n }\n ],\n \"destructive\": false,\n \"requiresConfirmation\": false,\n \"validators\": [\n \"panel-exists\",\n \"disabled-expanded-compatible\"\n ],\n \"affectedPaths\": [\n \"panels[].disabled\",\n \"panels[].expanded\"\n ],\n \"submissionImpact\": \"config-only\",\n \"preconditions\": [\n \"config-initialized\",\n \"target-panel-exists\"\n ]\n },\n {\n \"operationId\": \"behavior.multiExpand.set\",\n \"title\": \"Set multi-expand behavior\",\n \"scope\": \"interaction\",\n \"targetKind\": \"behavior\",\n \"target\": {\n \"kind\": \"behavior\",\n \"resolver\": \"expansion-behavior-config\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": true\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"multi\"\n ],\n \"properties\": {\n \"multi\": {\n \"type\": \"boolean\"\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"compile-domain-patch\",\n \"handler\": \"expansion-multi-expand-set\",\n \"handlerContract\": {\n \"reads\": [\n \"accordion.multi\",\n \"panels[]\",\n \"panels[].id\",\n \"panels[].expanded\"\n ],\n \"writes\": [\n \"accordion.multi\",\n \"panels[].expanded\"\n ],\n \"identityKeys\": [\n \"panels[].id\"\n ],\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"multi\"\n ],\n \"properties\": {\n \"multi\": {\n \"type\": \"boolean\"\n }\n }\n },\n \"failureModes\": [\n \"multiple-expanded-panels-conflict\",\n \"panel-id-missing\"\n ],\n \"description\": \"Sets accordion.multi and collapses competing expanded panels when switching to single-expand behavior.\"\n }\n }\n ],\n \"destructive\": false,\n \"requiresConfirmation\": false,\n \"validators\": [\n \"multi-expand-default-compatible\",\n \"accordion-values-valid\",\n \"editor-runtime-round-trip\"\n ],\n \"affectedPaths\": [\n \"accordion.multi\",\n \"panels[].expanded\"\n ],\n \"submissionImpact\": \"config-only\",\n \"preconditions\": [\n \"config-initialized\"\n ]\n },\n {\n \"operationId\": \"behavior.defaultExpanded.set\",\n \"title\": \"Set default expanded panel\",\n \"scope\": \"interaction\",\n \"targetKind\": \"expandedState\",\n \"target\": {\n \"kind\": \"expandedState\",\n \"resolver\": \"panel-by-id-or-title\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": true\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"expanded\"\n ],\n \"properties\": {\n \"expanded\": {\n \"type\": \"boolean\"\n },\n \"collapseOthers\": {\n \"type\": \"boolean\"\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"compile-domain-patch\",\n \"handler\": \"expansion-default-expanded-upsert\",\n \"handlerContract\": {\n \"reads\": [\n \"accordion.multi\",\n \"panels[]\",\n \"panels[].id\",\n \"panels[].expanded\",\n \"panels[].disabled\"\n ],\n \"writes\": [\n \"panels[].expanded\"\n ],\n \"identityKeys\": [\n \"panels[].id\"\n ],\n \"inputSchema\": {\n \"type\": \"object\",\n \"required\": [\n \"panelId\",\n \"expanded\"\n ],\n \"properties\": {\n \"panelId\": {\n \"type\": \"string\"\n },\n \"expanded\": {\n \"type\": \"boolean\"\n },\n \"collapseOthers\": {\n \"type\": \"boolean\"\n }\n }\n },\n \"failureModes\": [\n \"panel-not-found\",\n \"panel-disabled\",\n \"single-expand-conflict\"\n ],\n \"description\": \"Sets a panel expanded state and collapses competing panels when accordion.multi is false.\"\n }\n }\n ],\n \"validators\": [\n \"panel-exists\",\n \"default-expanded-panel-exists\",\n \"multi-expand-default-compatible\",\n \"disabled-expanded-compatible\"\n ],\n \"destructive\": false,\n \"requiresConfirmation\": false,\n \"affectedPaths\": [\n \"panels[].expanded\",\n \"accordion.multi\"\n ],\n \"submissionImpact\": \"config-only\",\n \"preconditions\": [\n \"config-initialized\",\n \"target-panel-exists\"\n ]\n },\n {\n \"operationId\": \"panel.content.set\",\n \"title\": \"Set panel content\",\n \"scope\": \"layout\",\n \"targetKind\": \"panelContent\",\n \"target\": {\n \"kind\": \"panelContent\",\n \"resolver\": \"panel-content-by-id\",\n \"ambiguityPolicy\": \"fail\",\n \"required\": true\n },\n \"inputSchema\": {\n \"type\": \"object\",\n \"minProperties\": 1,\n \"properties\": {\n \"id\": {\n \"type\": \"string\"\n },\n \"title\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"icon\": {\n \"type\": \"string\"\n },\n \"disabled\": {\n \"type\": \"boolean\"\n },\n \"expanded\": {\n \"type\": \"boolean\"\n },\n \"hideToggle\": {\n \"type\": \"boolean\"\n },\n \"collapsedHeight\": {\n \"type\": \"string\"\n },\n \"expandedHeight\": {\n \"type\": \"string\"\n },\n \"content\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\"\n }\n },\n \"widgets\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\"\n }\n },\n \"actionButtons\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\"\n }\n }\n }\n },\n \"effects\": [\n {\n \"kind\": \"merge-by-key\",\n \"path\": \"panels[]\",\n \"key\": \"id\"\n }\n ],\n \"destructive\": false,\n \"requiresConfirmation\": false,\n \"validators\": [\n \"panel-exists\",\n \"panel-content-valid\",\n \"lazy-content-compatible\",\n \"nested-widget-contract-delegated\"\n ],\n \"affectedPaths\": [\n \"panels[].content\",\n \"panels[].widgets\",\n \"panels[].actionButtons\"\n ],\n \"submissionImpact\": \"affects-schema-backed-data\",\n \"preconditions\": [\n \"config-initialized\",\n \"target-panel-exists\"\n ]\n }\n ],\n \"validators\": [\n {\n \"validatorId\": \"panel-id-unique\",\n \"level\": \"error\",\n \"code\": \"PEXP001\",\n \"description\": \"Panel ids must be unique and stable within config.panels[].\"\n },\n {\n \"validatorId\": \"panel-exists\",\n \"level\": \"error\",\n \"code\": \"PEXP002\",\n \"description\": \"Target panel must exist before applying the operation.\"\n },\n {\n \"validatorId\": \"panel-order-deterministic\",\n \"level\": \"error\",\n \"code\": \"PEXP003\",\n \"description\": \"Panel ordering must use stable ids, not transient array index as identity.\"\n },\n {\n \"validatorId\": \"panel-title-valid\",\n \"level\": \"error\",\n \"code\": \"PEXP004\",\n \"description\": \"Panel title must be a non-empty text value after localization/domain projection.\"\n },\n {\n \"validatorId\": \"panel-description-valid\",\n \"level\": \"warning\",\n \"code\": \"PEXP005\",\n \"description\": \"Panel description should remain plain header-support text and not replace panel content.\"\n },\n {\n \"validatorId\": \"panel-icon-valid\",\n \"level\": \"warning\",\n \"code\": \"PEXP006\",\n \"description\": \"Panel icon metadata must remain compatible with PraxisIconDirective and editor round-trip.\"\n },\n {\n \"validatorId\": \"panel-content-valid\",\n \"level\": \"error\",\n \"code\": \"PEXP007\",\n \"description\": \"Panel content must remain valid FieldMetadata[], WidgetDefinition[] or action button metadata.\"\n },\n {\n \"validatorId\": \"panel-content-removal-confirmed\",\n \"level\": \"error\",\n \"code\": \"PEXP008\",\n \"description\": \"Removing a panel with fields, widgets or action buttons is destructive and requires confirmation.\"\n },\n {\n \"validatorId\": \"default-expanded-panel-exists\",\n \"level\": \"error\",\n \"code\": \"PEXP009\",\n \"description\": \"Default expanded state must reference an existing panel id.\"\n },\n {\n \"validatorId\": \"default-expanded-removal-safe\",\n \"level\": \"error\",\n \"code\": \"PEXP010\",\n \"description\": \"Removing an expanded panel requires deterministic replacement state or explicit confirmation.\"\n },\n {\n \"validatorId\": \"multi-expand-default-compatible\",\n \"level\": \"error\",\n \"code\": \"PEXP011\",\n \"description\": \"When accordion.multi is false, at most one panel may be marked expanded by default.\"\n },\n {\n \"validatorId\": \"disabled-expanded-compatible\",\n \"level\": \"warning\",\n \"code\": \"PEXP012\",\n \"description\": \"A disabled panel should not be the only expanded/default focus target without explicit intent.\"\n },\n {\n \"validatorId\": \"accordion-values-valid\",\n \"level\": \"error\",\n \"code\": \"PEXP013\",\n \"description\": \"Accordion behavior values must match ExpansionMetadata and Angular Material expansion bindings.\"\n },\n {\n \"validatorId\": \"lazy-content-compatible\",\n \"level\": \"info\",\n \"code\": \"PEXP015\",\n \"description\": \"Panel content remains lazy through matExpansionPanelContent and should not require eager child runtime state.\"\n },\n {\n \"validatorId\": \"nested-widget-contract-delegated\",\n \"level\": \"info\",\n \"code\": \"PEXP016\",\n \"description\": \"Nested widget content remains governed by child component contracts and component-port nestedPath semantics.\"\n },\n {\n \"validatorId\": \"editor-runtime-round-trip\",\n \"level\": \"error\",\n \"code\": \"PEXP017\",\n \"description\": \"Settings Panel editor, runtime persistence and registry projection must preserve panel ids, order, icons and expanded state.\"\n }\n ],\n \"roundTripRequirements\": [\n \"Operations must preserve stable panel ids; array index may be used only as a resolver fallback, never as canonical identity.\",\n \"Settings Panel editor, runtime persistence and registry projection must round-trip ExpansionMetadata without losing panel ids, order, icons or expanded state.\",\n \"When accordion.multi is false, authoring must collapse competing panels or fail validation instead of producing multiple default-expanded panels.\",\n \"Lazy panel content remains represented by panels[].content, panels[].widgets and panels[].actionButtons; authoring cannot require eager child component instances.\",\n \"Nested widgets remain delegated through WidgetDefinition and component-port nestedPath semantics instead of being redefined by the expansion contract.\"\n ],\n \"examples\": [\n {\n \"id\": \"add-summary-panel\",\n \"request\": \"Add a summary panel before the audit panel.\",\n \"operationId\": \"panel.add\",\n \"params\": {\n \"id\": \"summary\",\n \"title\": \"Summary\"\n },\n \"isPositive\": true\n },\n {\n \"id\": \"rename-details-panel\",\n \"request\": \"Rename details to Account details.\",\n \"operationId\": \"panel.title.set\",\n \"target\": \"details\",\n \"params\": {\n \"title\": \"Account details\"\n },\n \"isPositive\": true\n },\n {\n \"id\": \"describe-audit-panel\",\n \"request\": \"Set audit panel description to Recent changes.\",\n \"operationId\": \"panel.description.set\",\n \"target\": \"audit\",\n \"params\": {\n \"description\": \"Recent changes\"\n },\n \"isPositive\": true\n },\n {\n \"id\": \"set-panel-icon\",\n \"request\": \"Use the info icon on the summary panel.\",\n \"operationId\": \"panel.icon.set\",\n \"target\": \"summary\",\n \"params\": {\n \"icon\": \"info\"\n },\n \"isPositive\": true\n },\n {\n \"id\": \"set-default-expanded-panel\",\n \"request\": \"Open the summary panel by default.\",\n \"operationId\": \"behavior.defaultExpanded.set\",\n \"target\": \"summary\",\n \"params\": {\n \"expanded\": true,\n \"collapseOthers\": true\n },\n \"isPositive\": true\n },\n {\n \"id\": \"enable-multi-expand\",\n \"request\": \"Allow multiple panels to stay open.\",\n \"operationId\": \"behavior.multiExpand.set\",\n \"params\": {\n \"multi\": true\n },\n \"isPositive\": true\n },\n {\n \"id\": \"disable-archive-panel\",\n \"request\": \"Disable the archive panel.\",\n \"operationId\": \"panel.disabled.set\",\n \"target\": \"archive\",\n \"params\": {\n \"disabled\": true\n },\n \"isPositive\": true\n },\n {\n \"id\": \"reject-missing-default-expanded\",\n \"request\": \"Open the missing panel by default.\",\n \"operationId\": \"behavior.defaultExpanded.set\",\n \"target\": \"missing\",\n \"params\": {\n \"expanded\": true\n },\n \"isPositive\": false\n },\n {\n \"id\": \"reject-duplicate-panel-id\",\n \"request\": \"Add another panel with id summary.\",\n \"operationId\": \"panel.add\",\n \"params\": {\n \"id\": \"summary\",\n \"title\": \"Duplicate summary\"\n },\n \"isPositive\": false\n },\n {\n \"id\": \"confirm-remove-content-panel\",\n \"request\": \"Remove the details panel that contains widgets.\",\n \"operationId\": \"panel.remove\",\n \"target\": \"details\",\n \"params\": {\n \"replacementExpandedPanelId\": \"summary\"\n },\n \"isPositive\": true\n }\n ]\n}",
1572
- "sourcePointer": "praxis-ui-angular/projects/praxis-expansion/src/lib/ai/praxis-expansion-authoring-manifest.ts",
1723
+ "sourcePointer": "projects/praxis-expansion/src/lib/ai/praxis-expansion-authoring-manifest.ts",
1573
1724
  "contentHash": "e6c84530c6f11f875816c5a4832d3e3e1f70884b37a1aee2cf89a6b722ab546c",
1574
1725
  "sourceKind": "component_definition",
1575
1726
  "sourceId": "praxis-expansion",
@@ -1579,7 +1730,7 @@
1579
1730
  "chunkIndex": 3,
1580
1731
  "chunkKind": "context_pack",
1581
1732
  "content": "{\n \"componentContext\": {\n \"version\": \"v1\",\n \"optionsByPath\": {\n \"appearance.density\": {\n \"mode\": \"enum\",\n \"options\": [\n {\n \"value\": \"compact\",\n \"label\": \"Compact\"\n },\n {\n \"value\": \"comfortable\",\n \"label\": \"Comfortable\"\n },\n {\n \"value\": \"spacious\",\n \"label\": \"Spacious\"\n }\n ]\n },\n \"accordion.displayMode\": {\n \"mode\": \"enum\",\n \"options\": [\n {\n \"value\": \"default\",\n \"label\": \"Default\"\n },\n {\n \"value\": \"flat\",\n \"label\": \"Flat\"\n }\n ]\n },\n \"accordion.togglePosition\": {\n \"mode\": \"enum\",\n \"options\": [\n {\n \"value\": \"before\",\n \"label\": \"Before\"\n },\n {\n \"value\": \"after\",\n \"label\": \"After\"\n }\n ]\n }\n },\n \"actionCatalog\": [\n {\n \"id\": \"appearance.density.set\",\n \"intentExamples\": [\n \"density\",\n \"compact\",\n \"spacious\"\n ],\n \"patchTemplate\": {\n \"appearance\": {\n \"density\": \"{{value}}\"\n }\n }\n },\n {\n \"id\": \"accordion.multi.enable\",\n \"intentExamples\": [\n \"multiple panels\",\n \"multi expand\",\n \"allow multiple\"\n ],\n \"patchTemplate\": {\n \"accordion\": {\n \"multi\": true\n }\n }\n },\n {\n \"id\": \"accordion.multi.disable\",\n \"intentExamples\": [\n \"single panel\",\n \"only one open\"\n ],\n \"patchTemplate\": {\n \"accordion\": {\n \"multi\": false\n }\n }\n },\n {\n \"id\": \"accordion.hideToggle.enable\",\n \"intentExamples\": [\n \"hide toggle\",\n \"no caret\"\n ],\n \"patchTemplate\": {\n \"accordion\": {\n \"hideToggle\": true\n }\n }\n },\n {\n \"id\": \"accordion.hideToggle.disable\",\n \"intentExamples\": [\n \"show toggle\",\n \"show caret\"\n ],\n \"patchTemplate\": {\n \"accordion\": {\n \"hideToggle\": false\n }\n }\n },\n {\n \"id\": \"panel.add\",\n \"intentExamples\": [\n \"add panel\",\n \"new panel\",\n \"create panel\"\n ],\n \"patchTemplate\": {\n \"panels\": [\n {\n \"id\": \"{{target}}\",\n \"title\": \"{{value}}\"\n }\n ]\n }\n },\n {\n \"id\": \"panel.title.set\",\n \"intentExamples\": [\n \"rename panel\",\n \"panel title\"\n ],\n \"patchTemplate\": {\n \"panels\": [\n {\n \"id\": \"{{target}}\",\n \"title\": \"{{value}}\"\n }\n ]\n }\n },\n {\n \"id\": \"panel.description.set\",\n \"intentExamples\": [\n \"panel description\",\n \"subtitle\"\n ],\n \"patchTemplate\": {\n \"panels\": [\n {\n \"id\": \"{{target}}\",\n \"description\": \"{{value}}\"\n }\n ]\n }\n },\n {\n \"id\": \"panel.expand\",\n \"intentExamples\": [\n \"expand panel\",\n \"open panel\"\n ],\n \"patchTemplate\": {\n \"panels\": [\n {\n \"id\": \"{{target}}\",\n \"expanded\": true\n }\n ]\n }\n },\n {\n \"id\": \"panel.collapse\",\n \"intentExamples\": [\n \"collapse panel\",\n \"close panel\"\n ],\n \"patchTemplate\": {\n \"panels\": [\n {\n \"id\": \"{{target}}\",\n \"expanded\": false\n }\n ]\n }\n },\n {\n \"id\": \"panel.disable\",\n \"intentExamples\": [\n \"disable panel\",\n \"lock panel\"\n ],\n \"patchTemplate\": {\n \"panels\": [\n {\n \"id\": \"{{target}}\",\n \"disabled\": true\n }\n ]\n }\n },\n {\n \"id\": \"panel.enable\",\n \"intentExamples\": [\n \"enable panel\",\n \"unlock panel\"\n ],\n \"patchTemplate\": {\n \"panels\": [\n {\n \"id\": \"{{target}}\",\n \"disabled\": false\n }\n ]\n }\n },\n {\n \"id\": \"panel.hideToggle.enable\",\n \"intentExamples\": [\n \"hide panel toggle\",\n \"no panel toggle\"\n ],\n \"patchTemplate\": {\n \"panels\": [\n {\n \"id\": \"{{target}}\",\n \"hideToggle\": true\n }\n ]\n }\n },\n {\n \"id\": \"panel.hideToggle.disable\",\n \"intentExamples\": [\n \"show panel toggle\",\n \"panel caret\"\n ],\n \"patchTemplate\": {\n \"panels\": [\n {\n \"id\": \"{{target}}\",\n \"hideToggle\": false\n }\n ]\n }\n }\n ],\n \"fieldResolvers\": {\n \"panels[]\": [\n \"id\",\n \"title\"\n ]\n },\n \"hints\": [\n \"Use panels[].id or panels[].title as merge keys; avoid array indexes.\",\n \"Panels merge by id/title; prefer patching a single panel at a time.\",\n \"DOC: Widget purpose: accordion/expansion panels with optional fields or widgets.\",\n \"DOC: Host inputs: expansionId (required) and config (optional).\",\n \"DOC: Minimal config: panels[] with title for each panel.\",\n \"DOC: Panel content can be fields (content) or widgets (widgets).\"\n ]\n }\n}",
1582
- "sourcePointer": "praxis-ui-angular/projects/praxis-expansion/src/lib/ai/expansion-context-pack.ts",
1733
+ "sourcePointer": "projects/praxis-expansion/src/lib/ai/expansion-context-pack.ts",
1583
1734
  "contentHash": "2ca3138a6b14f844047857420c7881393f25f13420b0d29b18c58de0d33485ea",
1584
1735
  "sourceKind": "component_definition",
1585
1736
  "sourceId": "praxis-expansion",
@@ -1589,7 +1740,7 @@
1589
1740
  "chunkIndex": 4,
1590
1741
  "chunkKind": "recipe",
1591
1742
  "content": "{\n \"_comment\": \"Recipe for Praxis Expansion configuration with panels and form content.\",\n \"templateMeta\": {\n \"registryKey\": \"praxis-expansion\",\n \"variantId\": \"base\",\n \"useWhen\": \"Base expansion panel configuration.\",\n \"examplePrompts\": [\n \"create an expansion panel group\",\n \"add panels with icons and descriptions\"\n ]\n },\n \"config\": {\n \"appearance\": {\n \"density\": \"comfortable\",\n \"themeClass\": \"expansion-theme\",\n \"tokens\": {\n \"header-background-color\": \"#f5f7fb\"\n }\n },\n \"accordion\": {\n \"multi\": true,\n \"displayMode\": \"default\",\n \"togglePosition\": \"after\",\n \"hideToggle\": false,\n \"id\": \"profile-expansion\"\n },\n \"panels\": [\n {\n \"id\": \"panel-profile\",\n \"title\": \"Profile\",\n \"description\": \"Basic information\",\n \"expanded\": true,\n \"content\": [\n {\n \"name\": \"fullName\",\n \"label\": \"Full name\",\n \"controlType\": \"input\",\n \"inputType\": \"text\",\n \"required\": true\n },\n {\n \"name\": \"email\",\n \"label\": \"Email\",\n \"controlType\": \"input\",\n \"inputType\": \"email\"\n },\n {\n \"name\": \"status\",\n \"label\": \"Status\",\n \"controlType\": \"select\",\n \"options\": [\n { \"label\": \"Active\", \"value\": \"active\" },\n { \"label\": \"Inactive\", \"value\": \"inactive\" }\n ]\n }\n ],\n \"actionButtons\": [\n { \"label\": \"Save\", \"icon\": \"save\", \"action\": \"save-profile\" }\n ]\n },\n {\n \"id\": \"panel-preferences\",\n \"title\": \"Preferences\",\n \"description\": \"Notifications and defaults\",\n \"content\": [\n {\n \"name\": \"notifyEmail\",\n \"label\": \"Email notifications\",\n \"controlType\": \"checkbox\"\n },\n {\n \"name\": \"timezone\",\n \"label\": \"Timezone\",\n \"controlType\": \"select\",\n \"options\": [\n { \"label\": \"UTC-03\", \"value\": \"America/Sao_Paulo\" },\n { \"label\": \"UTC\", \"value\": \"UTC\" }\n ]\n }\n ]\n }\n ]\n }\n}\n",
1592
- "sourcePointer": "praxis-ui-angular/examples/ai-recipes/praxis-expansion.json",
1743
+ "sourcePointer": "examples/ai-recipes/praxis-expansion.json",
1593
1744
  "contentHash": "ef04c982030a2e5fe5bdec22ad67625de1e2533aff3ec1b3909b740f12b9b990",
1594
1745
  "sourceKind": "component_definition",
1595
1746
  "sourceId": "praxis-expansion",
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@praxisui/expansion",
3
- "version": "9.0.0-beta.71",
3
+ "version": "9.0.0-beta.73",
4
4
  "description": "Expansion panel (accordion) components for Praxis UI with metadata configuration and editor integration.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
7
7
  "@angular/core": "^21.0.0",
8
8
  "@angular/material": "^21.0.0",
9
9
  "@angular/cdk": "^21.0.0",
10
- "@praxisui/core": "^9.0.0-beta.71",
11
- "@praxisui/dynamic-fields": "^9.0.0-beta.71",
12
- "@praxisui/settings-panel": "^9.0.0-beta.71",
10
+ "@praxisui/core": "^9.0.0-beta.73",
11
+ "@praxisui/dynamic-fields": "^9.0.0-beta.73",
12
+ "@praxisui/settings-panel": "^9.0.0-beta.73",
13
13
  "@angular/forms": "^21.0.0",
14
14
  "@angular/router": "^21.0.0",
15
- "@praxisui/ai": "^9.0.0-beta.71",
15
+ "@praxisui/ai": "^9.0.0-beta.73",
16
16
  "rxjs": "~7.8.0"
17
17
  },
18
18
  "dependencies": {