@praxisui/list 9.0.0-beta.3 → 9.0.0-beta.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -41
- package/ai/component-registry.json +6598 -0
- package/docs/2026-03-executive-list-platform-backlog.md +13 -12
- package/docs/2026-03-executive-list-reference-checklist.md +3 -2
- package/docs/adr/2026-03-list-inline-expansion-v1.md +101 -7
- package/fesm2022/praxisui-list.mjs +1214 -44
- package/package.json +11 -7
- package/src/lib/editors/praxis-list-config-editor.json-api.md +30 -9
- package/src/lib/praxis-list.json-api.md +14 -7
- package/types/praxisui-list.d.ts +388 -14
package/README.md
CHANGED
|
@@ -1,43 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: "List"
|
|
3
|
-
slug: "list-overview"
|
|
4
|
-
description: "Public npm documentation for @praxisui/list: configurable list/card/tile layouts, templating slots, local or remote data, actions, export and selection."
|
|
5
|
-
doc_type: "reference"
|
|
6
|
-
document_kind: "component-overview"
|
|
7
|
-
component: "list"
|
|
8
|
-
category: "components"
|
|
9
|
-
audience:
|
|
10
|
-
- "frontend"
|
|
11
|
-
- "host"
|
|
12
|
-
- "architect"
|
|
13
|
-
level: "intermediate"
|
|
14
|
-
status: "active"
|
|
15
|
-
owner: "praxis-ui"
|
|
16
|
-
tags:
|
|
17
|
-
- "list"
|
|
18
|
-
- "cards"
|
|
19
|
-
- "slots"
|
|
20
|
-
- "selection"
|
|
21
|
-
- "actions"
|
|
22
|
-
order: 40
|
|
23
|
-
icon: "view_list"
|
|
24
|
-
toc: true
|
|
25
|
-
sidebar: true
|
|
26
|
-
search_boost: 1.0
|
|
27
|
-
reading_time: 5
|
|
28
|
-
estimated_setup_time: 15
|
|
29
|
-
version: "1.0"
|
|
30
|
-
related_docs:
|
|
31
|
-
- "host-integration-guide"
|
|
32
|
-
- "consumer-integration-quickstart"
|
|
33
|
-
keywords:
|
|
34
|
-
- "cards"
|
|
35
|
-
- "grouping"
|
|
36
|
-
- "selection"
|
|
37
|
-
- "templating"
|
|
38
|
-
last_updated: "2026-06-16"
|
|
39
|
-
---
|
|
40
|
-
|
|
41
1
|
# @praxisui/list
|
|
42
2
|
|
|
43
3
|
`@praxisui/list` renders configurable list, card and tile experiences for Praxis UI Angular applications. Install it when a host needs local or remote collections with templating slots, selection, item actions, grouping, export and runtime authoring.
|
|
@@ -59,7 +19,7 @@ npm i @praxisui/list@latest
|
|
|
59
19
|
Peer dependencies:
|
|
60
20
|
|
|
61
21
|
- `@angular/common`, `@angular/core`, `@angular/forms`, `@angular/router`, `@angular/material` `^21.0.0`
|
|
62
|
-
- `@praxisui/core`, `@praxisui/dynamic-fields`, `@praxisui/rich-content`, `@praxisui/settings-panel`, `@praxisui/ai` `^9.0.0-beta.
|
|
22
|
+
- `@praxisui/core`, `@praxisui/dynamic-fields`, `@praxisui/rich-content`, `@praxisui/settings-panel`, `@praxisui/ai` `^9.0.0-beta.12`
|
|
63
23
|
- `rxjs` `>=7 <9`
|
|
64
24
|
|
|
65
25
|
Runtime dependency included by the package:
|