@mxenabled/mx-icons 2.0.1-alpha.sms1 → 2.2.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/icons/AreaChart.d.ts +2 -0
- package/dist/icons/ArrowForward.d.ts +2 -0
- package/dist/icons/Beenhere.d.ts +2 -0
- package/dist/icons/CalendarClock.d.ts +2 -0
- package/dist/icons/Circle.d.ts +2 -0
- package/dist/icons/Create.d.ts +2 -0
- package/dist/icons/CreditCardGear.d.ts +2 -0
- package/dist/icons/FinanceMode.d.ts +2 -0
- package/dist/icons/LocalOffer.d.ts +2 -0
- package/dist/icons/MoneyBag.d.ts +2 -0
- package/dist/icons/PaymentArrowDown.d.ts +2 -0
- package/dist/icons/PriceChange.d.ts +2 -0
- package/dist/icons/ShowChart.d.ts +2 -0
- package/dist/icons/StarRate.d.ts +2 -0
- package/dist/icons/Sunny.d.ts +2 -0
- package/dist/icons/TipsAndUpdates.d.ts +2 -0
- package/dist/icons/Token.d.ts +2 -0
- package/dist/icons/TrendingFlat.d.ts +2 -0
- package/dist/icons/UnfoldMore.d.ts +2 -0
- package/dist/icons/index.d.ts +19 -0
- package/dist/index.es.js +1596 -418
- package/dist/index.es.js.map +1 -0
- package/package.json +26 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mxenabled/mx-icons",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Library containing material symbol icons for MX",
|
|
5
5
|
"author": "MX",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"files": [
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
|
-
"sideEffects": false,
|
|
17
16
|
"scripts": {
|
|
18
17
|
"build": "tsc && vite build",
|
|
19
18
|
"build-icons": "python3 buildIcons.py",
|
|
@@ -27,36 +26,36 @@
|
|
|
27
26
|
"dependencies": {
|
|
28
27
|
"@emotion/react": "^11.14.0",
|
|
29
28
|
"@emotion/styled": "^11.14.1",
|
|
30
|
-
"@mui/material": "^7.3.
|
|
31
|
-
"react": "^19.
|
|
32
|
-
"react-dom": "^19.
|
|
29
|
+
"@mui/material": "^7.3.9",
|
|
30
|
+
"react": "^19.2.4",
|
|
31
|
+
"react-dom": "^19.2.4"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
34
|
"@eslint/js": "^9.17.0",
|
|
36
|
-
"@storybook/addon-a11y": "^9.1.
|
|
37
|
-
"@storybook/addon-docs": "^9.1.
|
|
38
|
-
"@storybook/addon-onboarding": "^9.1.
|
|
39
|
-
"@storybook/addon-themes": "^9.1.
|
|
40
|
-
"@storybook/react-vite": "^9.1.
|
|
41
|
-
"@types/node": "^
|
|
42
|
-
"@types/react": "^19.
|
|
43
|
-
"@types/react-dom": "^19.
|
|
44
|
-
"@vitejs/plugin-react": "^
|
|
45
|
-
"@vueless/storybook-dark-mode": "^9.0.
|
|
46
|
-
"eslint": "^9.
|
|
47
|
-
"eslint-plugin-react-hooks": "^5.
|
|
48
|
-
"eslint-plugin-react-refresh": "^0.
|
|
49
|
-
"eslint-plugin-storybook": "^9.1.
|
|
50
|
-
"globals": "^16.
|
|
35
|
+
"@storybook/addon-a11y": "^9.1.20",
|
|
36
|
+
"@storybook/addon-docs": "^9.1.20",
|
|
37
|
+
"@storybook/addon-onboarding": "^9.1.20",
|
|
38
|
+
"@storybook/addon-themes": "^9.1.20",
|
|
39
|
+
"@storybook/react-vite": "^9.1.20",
|
|
40
|
+
"@types/node": "^25.5.0",
|
|
41
|
+
"@types/react": "^19.2.14",
|
|
42
|
+
"@types/react-dom": "^19.2.3",
|
|
43
|
+
"@vitejs/plugin-react": "^5.2.0",
|
|
44
|
+
"@vueless/storybook-dark-mode": "^9.0.10",
|
|
45
|
+
"eslint": "^9.39.4",
|
|
46
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
47
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
48
|
+
"eslint-plugin-storybook": "^9.1.20",
|
|
49
|
+
"globals": "^16.5.0",
|
|
51
50
|
"husky": "^9.1.7",
|
|
52
|
-
"lint-staged": "^16.
|
|
53
|
-
"prettier": "^3.
|
|
54
|
-
"storybook": "^9.1.
|
|
55
|
-
"typescript": "^5.9.
|
|
56
|
-
"typescript-eslint": "^8.
|
|
57
|
-
"vite": "^
|
|
51
|
+
"lint-staged": "^16.4.0",
|
|
52
|
+
"prettier": "^3.8.1",
|
|
53
|
+
"storybook": "^9.1.20",
|
|
54
|
+
"typescript": "^5.9.3",
|
|
55
|
+
"typescript-eslint": "^8.58.0",
|
|
56
|
+
"vite": "^7.3.1",
|
|
58
57
|
"vite-plugin-dts": "^4.5.4",
|
|
59
58
|
"vite-tsconfig-paths": "^5.1.4"
|
|
60
59
|
},
|
|
61
|
-
"packageManager": "yarn@4.
|
|
60
|
+
"packageManager": "yarn@4.13.0"
|
|
62
61
|
}
|