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.
- package/dist/components/Button/helper.d.ts +8 -0
- package/dist/components/Button/index.d.ts +2 -1
- package/dist/components/Button/styled.d.ts +4 -1
- package/dist/icons/Triangle.d.ts +5 -1
- package/dist/livevegas-ui-kit.es.js +1067 -1029
- package/dist/livevegas-ui-kit.umd.js +154 -152
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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 {};
|
package/dist/icons/Triangle.d.ts
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
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 {};
|