@mxenabled/mx-icons 0.2.0 → 0.3.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/dist/index.d.ts +2 -1
- package/package.json +7 -9
package/dist/index.d.ts
CHANGED
|
@@ -56,7 +56,8 @@ export declare const Edit: ({ color, filled, size, sx }: MxIconProps) => JSX.Ele
|
|
|
56
56
|
|
|
57
57
|
export declare const Equal: ({ color, filled, size, sx }: MxIconProps) => JSX.Element;
|
|
58
58
|
|
|
59
|
-
|
|
59
|
+
declare const Error_2: ({ color, filled, size, sx }: MxIconProps) => JSX.Element;
|
|
60
|
+
export { Error_2 as Error }
|
|
60
61
|
|
|
61
62
|
export declare const ExpandLess: ({ color, filled, size, sx }: MxIconProps) => JSX.Element;
|
|
62
63
|
|
package/package.json
CHANGED
|
@@ -1,26 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mxenabled/mx-icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Library containing material symbol icons for MX",
|
|
5
5
|
"author": "MX",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"module": "./dist/index.es.js",
|
|
13
|
-
"types": "./dist/index.d.ts",
|
|
10
|
+
"main": "dist/index.es.js",
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
14
12
|
"files": [
|
|
15
13
|
"dist"
|
|
16
14
|
],
|
|
17
15
|
"scripts": {
|
|
18
|
-
"dev": "
|
|
19
|
-
"build": "tsc
|
|
16
|
+
"dev": "yarn storybook",
|
|
17
|
+
"build": "tsc && vite build",
|
|
20
18
|
"lint": "eslint .",
|
|
21
19
|
"preview": "vite preview",
|
|
22
|
-
"storybook": "storybook dev -p
|
|
23
|
-
"build-storybook": "storybook build"
|
|
20
|
+
"storybook": "storybook dev -p 8115",
|
|
21
|
+
"build-storybook": "storybook build -o compiled_docs"
|
|
24
22
|
},
|
|
25
23
|
"dependencies": {
|
|
26
24
|
"@emotion/react": "^11.14.0",
|