@webstudio-is/icons 0.75.0 → 0.77.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.
package/lib/types/src/gear.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ import type { IconProps } from "./types";
|
|
|
3
3
|
export declare const gearIconCssVars: ({ fill }: {
|
|
4
4
|
fill: string;
|
|
5
5
|
}) => {
|
|
6
|
-
|
|
6
|
+
"--fill-w7ovd": string;
|
|
7
7
|
};
|
|
8
8
|
export declare const GearIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.77.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.
|
|
25
|
+
"@webstudio-is/css-vars": "^0.77.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
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"storybook:
|
|
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
|
}
|
package/src/index.stories.tsx
CHANGED
|
@@ -58,9 +58,9 @@ export default {
|
|
|
58
58
|
title: "All Icons",
|
|
59
59
|
component: Icons,
|
|
60
60
|
argTypes: {
|
|
61
|
-
testColor: {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
61
|
+
testColor: { control: "boolean", name: "Test color" },
|
|
62
|
+
},
|
|
63
|
+
args: {
|
|
64
|
+
testColor: false,
|
|
65
65
|
},
|
|
66
66
|
};
|