santosp-rslib-project 1.0.4 → 1.0.5

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.
@@ -2,6 +2,7 @@ import type { StoryObj } from '@storybook/react';
2
2
  declare const meta: {
3
3
  title: string;
4
4
  component: (props: import("./button").ButtonProps) => import("react/jsx-runtime").JSX.Element;
5
+ tags: string[];
5
6
  argTypes: {
6
7
  className: {
7
8
  control: {
@@ -2,6 +2,7 @@ import type { StoryObj } from '@storybook/react';
2
2
  declare const meta: {
3
3
  title: string;
4
4
  component: (props: import("./link").LinkProps) => import("react/jsx-runtime").JSX.Element;
5
+ tags: string[];
5
6
  argTypes: {
6
7
  className: {
7
8
  control: {
@@ -19,6 +20,7 @@ declare const meta: {
19
20
  type: "select";
20
21
  };
21
22
  options: ("primary" | "secondary" | "dark" | "light" | "purple" | "orange" | "red" | "yellow" | "sand" | "petrol" | "olive" | "lead" | "pink" | "neutral" | "green")[];
23
+ description: string;
22
24
  };
23
25
  };
24
26
  };
@@ -3,6 +3,7 @@ import { type TextProps } from './text';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: (props: TextProps) => import("react/jsx-runtime").JSX.Element;
6
+ tags: string[];
6
7
  argTypes: {
7
8
  className: {
8
9
  control: {
package/dist/styles.css CHANGED
@@ -558,7 +558,7 @@
558
558
  }
559
559
 
560
560
  .leve-leve-button--color_sand {
561
- --btn-color: var(--leve-colors-sand-500);
561
+ --btn-color: var(--leve-colors-sand-600);
562
562
  }
563
563
 
564
564
  .leve-leve-button--color_petrol {
@@ -566,7 +566,7 @@
566
566
  }
567
567
 
568
568
  .leve-leve-button--color_olive {
569
- --btn-color: var(--leve-colors-olive-500);
569
+ --btn-color: var(--leve-colors-olive-900);
570
570
  }
571
571
 
572
572
  .leve-leve-button--color_lead {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "santosp-rslib-project",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -35,11 +35,9 @@
35
35
  "@storybook/addon-docs": "^10.2.8",
36
36
  "@storybook/addon-onboarding": "^10.2.8",
37
37
  "@storybook/react": "^10.2.8",
38
- "@types/react": "^19.2.14",
39
38
  "eslint": "^9.39.2",
40
39
  "globals": "^17.3.0",
41
40
  "prettier": "^3.8.1",
42
- "react": "^19.2.4",
43
41
  "storybook": "^10.2.8",
44
42
  "storybook-addon-rslib": "^3.2.2",
45
43
  "storybook-react-rsbuild": "^3.2.2",
@@ -47,7 +45,9 @@
47
45
  "typescript-eslint": "^8.55.0",
48
46
  "@ark-ui/react": "^5.34.0",
49
47
  "@untitledui/icons": "^0.0.21",
50
- "clsx": "^2.1.1"
48
+ "clsx": "^2.1.1",
49
+ "@types/react": "^19.2.14",
50
+ "react": "^19.2.4"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "react": ">=16.9.0",