laif-ds 0.1.22 → 0.1.23
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/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -919,7 +919,7 @@ export declare interface MultipleSelectorRef {
|
|
|
919
919
|
reset: () => void;
|
|
920
920
|
}
|
|
921
921
|
|
|
922
|
-
declare interface NavGroup {
|
|
922
|
+
export declare interface NavGroup {
|
|
923
923
|
title: string;
|
|
924
924
|
url?: string;
|
|
925
925
|
items: NavItem[];
|
|
@@ -943,7 +943,7 @@ export declare function NavigationMenuTrigger({ className, children, ...props }:
|
|
|
943
943
|
|
|
944
944
|
export declare function NavigationMenuViewport({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): JSX.Element;
|
|
945
945
|
|
|
946
|
-
declare interface NavItem {
|
|
946
|
+
export declare interface NavItem {
|
|
947
947
|
title: string;
|
|
948
948
|
url: string;
|
|
949
949
|
isActive?: boolean;
|
|
@@ -951,7 +951,7 @@ declare interface NavItem {
|
|
|
951
951
|
subItems?: NavSubItem[];
|
|
952
952
|
}
|
|
953
953
|
|
|
954
|
-
declare interface NavSubItem {
|
|
954
|
+
export declare interface NavSubItem {
|
|
955
955
|
title: string;
|
|
956
956
|
url: string;
|
|
957
957
|
isActive?: boolean;
|