@almadar/ui 5.0.0 → 5.1.1
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/dist/avl/index.cjs +2233 -1838
- package/dist/avl/index.js +844 -452
- package/dist/components/atoms/Icon.d.ts +7 -4
- package/dist/components/index.cjs +1967 -1572
- package/dist/components/index.js +807 -415
- package/dist/components/molecules/Breadcrumb.d.ts +4 -4
- package/dist/components/molecules/EmptyState.d.ts +1 -1
- package/dist/components/templates/DashboardLayout.d.ts +1 -1
- package/dist/docs/index.cjs +437 -79
- package/dist/docs/index.d.cts +7 -4
- package/dist/docs/index.js +410 -55
- package/dist/lib/iconFamily.d.ts +41 -0
- package/dist/marketing/index.cjs +462 -106
- package/dist/marketing/index.d.cts +7 -4
- package/dist/marketing/index.js +428 -75
- package/dist/providers/index.cjs +1836 -1441
- package/dist/providers/index.js +811 -419
- package/dist/runtime/index.cjs +1864 -1469
- package/dist/runtime/index.js +804 -412
- package/package.json +4 -1
- package/themes/atelier.css +4 -3
- package/themes/index.css +5 -0
- package/themes/kiosk.css +6 -4
|
@@ -20,9 +20,9 @@ export interface BreadcrumbItem {
|
|
|
20
20
|
*/
|
|
21
21
|
path?: string;
|
|
22
22
|
/**
|
|
23
|
-
* Item icon
|
|
23
|
+
* Item icon (canonical kebab-case name or LucideIcon component)
|
|
24
24
|
*/
|
|
25
|
-
icon?: LucideIcon;
|
|
25
|
+
icon?: LucideIcon | string;
|
|
26
26
|
/**
|
|
27
27
|
* Click handler (if href not provided)
|
|
28
28
|
*/
|
|
@@ -40,9 +40,9 @@ export interface BreadcrumbProps {
|
|
|
40
40
|
*/
|
|
41
41
|
items: BreadcrumbItem[];
|
|
42
42
|
/**
|
|
43
|
-
* Separator icon
|
|
43
|
+
* Separator icon (canonical kebab-case name or LucideIcon component)
|
|
44
44
|
*/
|
|
45
|
-
separator?: LucideIcon;
|
|
45
|
+
separator?: LucideIcon | string;
|
|
46
46
|
/**
|
|
47
47
|
* Maximum items to show (truncates with ellipsis)
|
|
48
48
|
*/
|