@rovula/ui 0.0.31 → 0.0.32

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.
@@ -1,5 +1,9 @@
1
- export default function ColorPreview({ colorName, colorCode, isSmall, }: {
2
- colorName: string;
3
- colorCode: string;
4
- isSmall: boolean;
5
- }): import("react/jsx-runtime").JSX.Element;
1
+ export declare const ColorBox: ({ className }: {
2
+ className: string;
3
+ }) => import("react/jsx-runtime").JSX.Element;
4
+ export declare const ColorItems: ({ title, subTitle, colors, col, }: {
5
+ title?: string;
6
+ subTitle?: string;
7
+ colors: string[];
8
+ col?: number;
9
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const srgbToHex: (color: string) => string;
@@ -10,7 +10,7 @@ const meta = {
10
10
  layout: "fullscreen",
11
11
  },
12
12
  decorators: [
13
- (Story) => (_jsx("div", { className: "p-5 flex w-full", children: _jsx(Story, {}) })),
13
+ (Story) => (_jsx("div", { className: "p-5 flex w-full bg-base-bg2", children: _jsx(Story, {}) })),
14
14
  ],
15
15
  };
16
16
  export default meta;
@@ -36,6 +36,10 @@ const variant = [
36
36
  "small3",
37
37
  "small4",
38
38
  "small5",
39
+ "small6",
40
+ "small7",
41
+ "small8",
42
+ "small9",
39
43
  "label1",
40
44
  "label2",
41
45
  "buttonL",