@peacock-ui/core 2.0.0 → 3.0.0-alpha.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.
@@ -0,0 +1 @@
1
+ export declare const PeacockScene: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ interface HolographicCardProps {
3
+ children: React.ReactNode;
4
+ className?: string;
5
+ }
6
+ export declare const HolographicCard: ({ children, className }: HolographicCardProps) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+ export interface DockItem {
3
+ id: string;
4
+ icon: React.ReactNode;
5
+ label?: string;
6
+ onClick?: () => void;
7
+ }
8
+ interface PeacockDockProps {
9
+ items: DockItem[];
10
+ className?: string;
11
+ }
12
+ export declare const PeacockDock: ({ items, className }: PeacockDockProps) => import("react/jsx-runtime").JSX.Element;
13
+ export {};
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ import * as AvatarPrimitive from '@radix-ui/react-avatar';
3
+ export declare const PeacockAvatar: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React.RefAttributes<HTMLSpanElement>, "ref"> & {
4
+ glow?: boolean;
5
+ status?: "online" | "offline" | "busy";
6
+ } & React.RefAttributes<HTMLSpanElement>>;
7
+ export declare const PeacockAvatarImage: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React.RefAttributes<HTMLImageElement>, "ref"> & React.RefAttributes<HTMLImageElement>>;
8
+ export declare const PeacockAvatarFallback: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import * as SliderPrimitive from '@radix-ui/react-slider';
3
+ export declare const PeacockSlider: React.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from './MotionProvider';
2
2
  export * from './PeacockProvider';
3
3
  export * from './MotionPrimitive';
4
+ export * from './canvas/PeacockScene';
4
5
  export * from './components/PeacockButton';
5
6
  export * from './components/FluidCard';
6
7
  export * from './components/GlassMenu';
@@ -9,4 +10,8 @@ export * from './components/PeacockSwitch';
9
10
  export * from './components/PeacockBadge';
10
11
  export * from './components/PeacockTooltip';
11
12
  export * from './components/PeacockDialog';
13
+ export * from './components/HolographicCard';
14
+ export * from './components/PeacockDock';
15
+ export * from './components/inputs/PeacockSlider';
16
+ export * from './components/data-display/PeacockAvatar';
12
17
  export * from './hooks/utils';