@life-cockpit/angular-ui-kit 2.7.0 → 2.9.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 +4 -2
- package/fesm2022/life-cockpit-angular-ui-kit.mjs +544 -314
- package/fesm2022/life-cockpit-angular-ui-kit.mjs.map +1 -1
- package/package.json +4 -1
- package/src/assets/icon-names.json +1 -0
- package/src/styles/_theme-dark.scss +3 -0
- package/src/styles/_theme-light.scss +2 -0
- package/src/styles/tokens/_all.scss +2 -1
- package/src/styles/tokens/_colors.scss +2 -1
- package/types/life-cockpit-angular-ui-kit.d.ts +216 -23
package/README.md
CHANGED
|
@@ -60,9 +60,9 @@ export class MyComponent {}
|
|
|
60
60
|
|-----------|----------|-------------|
|
|
61
61
|
| Accordion | `lc-accordion` | Expandable/collapsible panels with optional rich header template (`lcAccordionHeader`) and lazy/deferred body (`lcAccordionContent` + `[lazy]`/`[destroyOnClose]`) |
|
|
62
62
|
| Button | `lc-button` | Primary, secondary, and text buttons |
|
|
63
|
-
| Card | `lc-card` | Content container with elevation |
|
|
63
|
+
| Card | `lc-card` | Content container with elevation; optional leading brand-tile header icon (`[icon]` / `[iconVariant]`) |
|
|
64
64
|
| Chat | `lc-chat` | Conversational UI with streaming, custom message templates |
|
|
65
|
-
| Icon | `lc-icon` | SVG icon
|
|
65
|
+
| Icon | `lc-icon` | Tabler SVG icons; fail-loud on unknown names (dev warning + visible placeholder, optional `[strict]` throw); exports `ICON_NAMES` / `isValidIconName` / `ICON_ALIASES` (+ `icon-names.json`) for static checking |
|
|
66
66
|
| Logo | `lc-logo` | Life Cockpit logo |
|
|
67
67
|
| Markdown | `lc-markdown` | GFM renderer (tables with alignment, task lists, autolinks, code/mermaid) with in-place change highlighting |
|
|
68
68
|
| Menu | `lc-menu` | Dropdown menu |
|
|
@@ -111,12 +111,14 @@ export class MyComponent {}
|
|
|
111
111
|
| Avatar | `lc-avatar` | User avatar |
|
|
112
112
|
| Badge | `lc-badge` | Status badge |
|
|
113
113
|
| Chip | `lc-chip` | Tag/label chip |
|
|
114
|
+
| Description List | `lc-description-list` | Key/value metadata (`<dl>`) with rows/stacked layout, optional dotted leaders and per-row emphasis/links |
|
|
114
115
|
| Empty State | `lc-empty-state` | Placeholder for empty content |
|
|
115
116
|
| Field Group | `lc-field-group` | Grouped form fields |
|
|
116
117
|
| Filter Bar | `lc-filter-bar` | Filter controls |
|
|
117
118
|
| List | `lc-list` | List display |
|
|
118
119
|
| Log Viewer | `lc-log-viewer` | Streaming log/terminal viewer with virtualization |
|
|
119
120
|
| Metric Card | `lc-metric-card` | KPI/metric display |
|
|
121
|
+
| Pipeline | `lc-pipeline` | Status timeline of connected process nodes; per-node status (complete/current/pending/warning/error) with captions, horizontal/vertical |
|
|
120
122
|
| Skeleton | `lc-skeleton` | Loading placeholder |
|
|
121
123
|
| Spinner | `lc-spinner` | Loading indicator |
|
|
122
124
|
| Stepper | `lc-stepper` | Step-by-step progress |
|