@praxisui/list 9.0.68-rc.3 → 10.0.0-rc.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 +9 -0
- package/ai/component-registry.json +2 -2
- package/fesm2022/praxisui-list.mjs +72 -19
- package/package.json +6 -6
- package/types/praxisui-list.d.ts +11 -0
package/README.md
CHANGED
|
@@ -104,6 +104,15 @@ For HATEOAS records, the canonical `_links.self.href` is the preferred render id
|
|
|
104
104
|
|
|
105
105
|
The hosted list editor exposes **Configuration source** (`configPersistenceStrategy`). Choose **Page configuration** (`input-first`) for a composed page: saved individual list preferences must not replace the page document on reload. **Individual list preferences** preserves `local-first`; **Temporary configuration** uses `volatile`. The choice participates in Apply, Save and Reset alongside the child config, and does not silently replace an existing policy.
|
|
106
106
|
|
|
107
|
+
The standalone settings panel waits for its configured storage adapter before
|
|
108
|
+
closing on Save. While saving, repeated Save and close are blocked. A rejected
|
|
109
|
+
save retains the draft and shows a localized error so the user can retry; the
|
|
110
|
+
accepted `saved$` payload updates runtime without another storage write. A stale
|
|
111
|
+
response cannot close an editor whose draft or storage target changed. The panel
|
|
112
|
+
is bound to the List owner and closes without saving when that owner is destroyed. With
|
|
113
|
+
`volatile`, completion remains local. Adapter completion has the durability of the
|
|
114
|
+
configured adapter; an in-memory adapter does not imply remote persistence.
|
|
115
|
+
|
|
107
116
|
## Configuration Highlights
|
|
108
117
|
|
|
109
118
|
- Layout variants: `list`, `cards`, `tiles`.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-09-
|
|
3
|
+
"generatedAt": "2026-09-10T12:25:16.581Z",
|
|
4
4
|
"packageName": "@praxisui/list",
|
|
5
|
-
"packageVersion": "
|
|
5
|
+
"packageVersion": "10.0.0-rc.0",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 1,
|