livevegas-ui-kit 1.0.66 → 1.0.68

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,8 @@
1
+ type IpositionInfo = {
2
+ [K in "top" | "top-left" | "bottom" | "bottom-left" | "left" | "right"]: {
3
+ info: string;
4
+ icon: string;
5
+ };
6
+ };
7
+ export declare const positionInfo: IpositionInfo;
8
+ export {};
@@ -12,5 +12,6 @@ export interface IButton {
12
12
  streamVolume?: number;
13
13
  isHoverActive?: boolean;
14
14
  setStreamVolume?: (volume: number) => void;
15
+ positonHover?: "top" | "bottom" | "bottom-left" | "left" | "right" | "top-left";
15
16
  }
16
- export declare const Button: ({ icon, onClick, buttonInfo, isActive, isValueButton, width, height, text, textStyle, isActiveBlue, streamVolume, setStreamVolume, isHoverActive, }: IButton) => import("react/jsx-runtime").JSX.Element;
17
+ export declare const Button: ({ icon, onClick, buttonInfo, isActive, isValueButton, width, height, text, textStyle, isActiveBlue, streamVolume, setStreamVolume, isHoverActive, positonHover, }: IButton) => import("react/jsx-runtime").JSX.Element;
@@ -8,6 +8,9 @@ interface IButton {
8
8
  height?: number;
9
9
  }
10
10
  export declare const IconWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, IButton>> & string;
11
- export declare const ButtonInfo: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
11
+ interface IButtonInfo {
12
+ $positonHover: "top" | "top-left" | "bottom" | "bottom-left" | "left" | "right";
13
+ }
14
+ export declare const ButtonInfo: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, IButtonInfo>> & string;
12
15
  export declare const ButtonComponent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
13
16
  export {};
@@ -1 +1,5 @@
1
- export declare const Triangle: () => import("react/jsx-runtime").JSX.Element;
1
+ interface ITriangle {
2
+ position: "top" | "bottom" | "left" | "right" | "bottom-left" | "top-left";
3
+ }
4
+ export declare const Triangle: ({ position }: ITriangle) => import("react/jsx-runtime").JSX.Element;
5
+ export {};