shadcn-app-dock 0.1.136 → 0.1.138
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/components/dock.d.ts +15 -15
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +280 -279
- package/package.json +18 -18
|
@@ -22,10 +22,10 @@ export interface DockIconProps {
|
|
|
22
22
|
children?: React.ReactNode;
|
|
23
23
|
props?: PropsWithChildren;
|
|
24
24
|
}
|
|
25
|
-
declare
|
|
26
|
-
|
|
27
|
-
displayName: string;
|
|
28
|
-
}
|
|
25
|
+
declare function DockIcon({ size, magnification, distance, mousex, className, children, ...props }: DockIconProps): React.JSX.Element;
|
|
26
|
+
declare namespace DockIcon {
|
|
27
|
+
var displayName: string;
|
|
28
|
+
}
|
|
29
29
|
export interface DockItemProps extends VariantProps<typeof dockVariants> {
|
|
30
30
|
className?: string;
|
|
31
31
|
children: React.ReactNode;
|
|
@@ -34,15 +34,15 @@ export interface DockItemProps extends VariantProps<typeof dockVariants> {
|
|
|
34
34
|
mousex?: any;
|
|
35
35
|
onClick?: () => void;
|
|
36
36
|
}
|
|
37
|
-
declare
|
|
38
|
-
|
|
39
|
-
displayName: string;
|
|
40
|
-
}
|
|
41
|
-
declare
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
displayName: string;
|
|
47
|
-
}
|
|
37
|
+
declare function DockItem({ className, children, magnification, distance, mousex, onClick, ...props }: DockItemProps): React.JSX.Element;
|
|
38
|
+
declare namespace DockItem {
|
|
39
|
+
var displayName: string;
|
|
40
|
+
}
|
|
41
|
+
declare function DockLabel({ children, className }: {
|
|
42
|
+
children: React.ReactNode;
|
|
43
|
+
className?: string;
|
|
44
|
+
}): React.JSX.Element;
|
|
45
|
+
declare namespace DockLabel {
|
|
46
|
+
var displayName: string;
|
|
47
|
+
}
|
|
48
48
|
export { Dock, DockIcon, DockItem, DockLabel, dockVariants };
|