@praxisui/list 9.0.4-rc.2 → 9.0.4-rc.20
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 +1 -1
- package/ai/component-registry.json +2 -2
- package/fesm2022/praxisui-list.mjs +18 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-
|
|
3
|
+
"generatedAt": "2026-08-04T11:45:12.207Z",
|
|
4
4
|
"packageName": "@praxisui/list",
|
|
5
|
-
"packageVersion": "9.0.4-rc.
|
|
5
|
+
"packageVersion": "9.0.4-rc.20",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 1,
|
|
@@ -7127,6 +7127,24 @@ class PraxisListConfigEditor {
|
|
|
7127
7127
|
context: payload?.context && typeof payload.context === 'object' && !Array.isArray(payload.context)
|
|
7128
7128
|
? { ...payload.context }
|
|
7129
7129
|
: undefined,
|
|
7130
|
+
beforeWidget: payload?.beforeWidget
|
|
7131
|
+
? { ...payload.beforeWidget, inputs: { ...(payload.beforeWidget.inputs || {}) } }
|
|
7132
|
+
: undefined,
|
|
7133
|
+
afterWidget: payload?.afterWidget
|
|
7134
|
+
? { ...payload.afterWidget, inputs: { ...(payload.afterWidget.inputs || {}) } }
|
|
7135
|
+
: undefined,
|
|
7136
|
+
onResult: payload?.onResult
|
|
7137
|
+
? { ...payload.onResult, payload: payload.onResult.payload }
|
|
7138
|
+
: undefined,
|
|
7139
|
+
lifecycle: payload?.lifecycle
|
|
7140
|
+
? {
|
|
7141
|
+
outcomes: payload.lifecycle.outcomes.map((binding) => ({
|
|
7142
|
+
...binding,
|
|
7143
|
+
when: binding.when?.map((condition) => ({ ...condition })),
|
|
7144
|
+
outcome: { ...binding.outcome },
|
|
7145
|
+
})),
|
|
7146
|
+
}
|
|
7147
|
+
: undefined,
|
|
7130
7148
|
};
|
|
7131
7149
|
}
|
|
7132
7150
|
verify() {
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/list",
|
|
3
|
-
"version": "9.0.4-rc.
|
|
3
|
+
"version": "9.0.4-rc.20",
|
|
4
4
|
"description": "List components and helpers for Praxis UI.",
|
|
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
|
-
"@praxisui/dynamic-fields": "^9.0.4-rc.
|
|
9
|
+
"@praxisui/dynamic-fields": "^9.0.4-rc.20",
|
|
10
10
|
"rxjs": ">=7 <9",
|
|
11
11
|
"@angular/forms": "^21.0.0",
|
|
12
12
|
"@angular/router": "^21.0.0",
|
|
13
|
-
"@praxisui/ai": "^9.0.4-rc.
|
|
14
|
-
"@praxisui/core": "^9.0.4-rc.
|
|
15
|
-
"@praxisui/rich-content": "^9.0.4-rc.
|
|
16
|
-
"@praxisui/settings-panel": "^9.0.4-rc.
|
|
13
|
+
"@praxisui/ai": "^9.0.4-rc.20",
|
|
14
|
+
"@praxisui/core": "^9.0.4-rc.20",
|
|
15
|
+
"@praxisui/rich-content": "^9.0.4-rc.20",
|
|
16
|
+
"@praxisui/settings-panel": "^9.0.4-rc.20"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"tslib": "^2.3.0",
|