livevegas-ui-kit 1.0.60 → 1.0.61

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
+ export declare const getColor: (chipAmounts: number[], amount: number) => string[];
2
+ type PositionSize = {
3
+ x: number;
4
+ y: number;
5
+ size: number;
6
+ };
7
+ export declare const getPositionAndSize: (amount: string) => PositionSize;
8
+ export {};
@@ -0,0 +1,9 @@
1
+ export interface IChip3D {
2
+ chipAmounts: number[];
3
+ amount: number;
4
+ width?: number;
5
+ height?: number;
6
+ onClick?: (amount: number) => void;
7
+ isDisabled?: boolean;
8
+ }
9
+ export declare const Chip3D: ({ chipAmounts, amount, width, height, isDisabled, onClick, }: IChip3D) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Chip3D } from '.';
3
+
4
+ declare const meta: Meta<typeof Chip3D>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof Chip3D>;
7
+ export declare const Default: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livevegas-ui-kit",
3
- "version": "1.0.60",
3
+ "version": "1.0.61",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"