@almadar/ui 5.155.0 → 5.156.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/dist/{NavStackContext-BoVV9nWb.d.cts → NavStackContext-bw2nlBgT.d.cts} +4 -0
- package/dist/{NavStackContext-BoVV9nWb.d.ts → NavStackContext-bw2nlBgT.d.ts} +4 -0
- package/dist/avl/index.cjs +215 -114
- package/dist/avl/index.js +217 -116
- package/dist/components/index.cjs +215 -114
- package/dist/components/index.d.cts +28 -12
- package/dist/components/index.d.ts +28 -12
- package/dist/components/index.js +217 -116
- package/dist/hooks/index.d.cts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/{offline-executor-Qz4b6GpF.d.cts → offline-executor-QUdKOj7f.d.cts} +1 -1
- package/dist/{offline-executor-Qz4b6GpF.d.ts → offline-executor-QUdKOj7f.d.ts} +1 -1
- package/dist/providers/index.cjs +252 -119
- package/dist/providers/index.d.cts +26 -4
- package/dist/providers/index.d.ts +26 -4
- package/dist/providers/index.js +252 -121
- package/dist/renderer/index.d.cts +2 -2
- package/dist/renderer/index.d.ts +2 -2
- package/dist/runtime/index.cjs +215 -114
- package/dist/runtime/index.js +217 -116
- package/package.json +4 -4
- package/themes/_fonts-kenney.css +11 -0
- package/themes/index.css +3 -0
|
@@ -55,6 +55,10 @@ interface NavStackApi {
|
|
|
55
55
|
back: () => void;
|
|
56
56
|
/** Navigate to an arbitrary stack entry (breadcrumb click). */
|
|
57
57
|
goTo: (href: string) => void;
|
|
58
|
+
/** Relabel the current page's stack entry with the loaded record's title
|
|
59
|
+
* (idempotent; no-op when the label already matches). DetailPanel calls
|
|
60
|
+
* this from the routed main slot so cold-loaded crumbs read like pushes. */
|
|
61
|
+
setCurrentLabel: (label: string) => void;
|
|
58
62
|
}
|
|
59
63
|
declare function useNavStack(): NavStackApi;
|
|
60
64
|
interface NavStackProviderProps {
|
|
@@ -55,6 +55,10 @@ interface NavStackApi {
|
|
|
55
55
|
back: () => void;
|
|
56
56
|
/** Navigate to an arbitrary stack entry (breadcrumb click). */
|
|
57
57
|
goTo: (href: string) => void;
|
|
58
|
+
/** Relabel the current page's stack entry with the loaded record's title
|
|
59
|
+
* (idempotent; no-op when the label already matches). DetailPanel calls
|
|
60
|
+
* this from the routed main slot so cold-loaded crumbs read like pushes. */
|
|
61
|
+
setCurrentLabel: (label: string) => void;
|
|
58
62
|
}
|
|
59
63
|
declare function useNavStack(): NavStackApi;
|
|
60
64
|
interface NavStackProviderProps {
|