@webstudio-is/icons 0.75.0 → 0.76.0

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.
@@ -3,6 +3,6 @@ import type { IconProps } from "./types";
3
3
  export declare const gearIconCssVars: ({ fill }: {
4
4
  fill: string;
5
5
  }) => {
6
- [x: string]: string;
6
+ "--fill-w7ovd": string;
7
7
  };
8
8
  export declare const GearIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -9,9 +9,12 @@ declare const _default: {
9
9
  }) => JSX.Element;
10
10
  argTypes: {
11
11
  testColor: {
12
+ control: string;
12
13
  name: string;
13
- defaultValue: boolean;
14
14
  };
15
15
  };
16
+ args: {
17
+ testColor: boolean;
18
+ };
16
19
  };
17
20
  export default _default;
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.75.0",
3
+ "version": "0.76.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
7
7
  "type": "module",
8
8
  "devDependencies": {
9
- "@storybook/react": "^6.5.16",
10
9
  "@svgo/jsx": "^0.4.2",
11
10
  "@types/react": "^18.0.35",
12
11
  "react": "^18.2.0",
@@ -23,7 +22,7 @@
23
22
  "react-dom": "^18.2.0"
24
23
  },
25
24
  "dependencies": {
26
- "@webstudio-is/css-vars": "^0.75.0"
25
+ "@webstudio-is/css-vars": "^0.76.0"
27
26
  },
28
27
  "exports": {
29
28
  ".": {
@@ -53,9 +52,8 @@
53
52
  "dts": "tsc --declarationDir lib/types",
54
53
  "generate": "rm -fr src/__generated__ && NODE_OPTIONS='--loader=tsx' svgo-jsx svgo-jsx.config.ts && tsx svg-string.ts && prettier --write ./",
55
54
  "typecheck": "tsc --noEmit --emitDeclarationOnly false",
56
- "lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
57
- "checks": "pnpm typecheck && pnpm lint",
58
- "storybook:run": "start-storybook -p 6006",
59
- "storybook:build": "build-storybook"
55
+ "checks": "pnpm typecheck",
56
+ "storybook:dev": "storybook dev -p 6006",
57
+ "storybook:build": "storybook build"
60
58
  }
61
59
  }
@@ -58,9 +58,9 @@ export default {
58
58
  title: "All Icons",
59
59
  component: Icons,
60
60
  argTypes: {
61
- testColor: {
62
- name: "Test color",
63
- defaultValue: false,
64
- },
61
+ testColor: { control: "boolean", name: "Test color" },
62
+ },
63
+ args: {
64
+ testColor: false,
65
65
  },
66
66
  };