react-magma-icons 3.0.0 → 3.1.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/SvgIcon.esm.js +4 -2
- package/dist/SvgIcon.esm.js.map +1 -1
- package/dist/categories.esm.js +2 -2
- package/dist/categories.esm.js.map +1 -1
- package/dist/icons/Actions/DraftOrdersIcon.d.ts +7 -0
- package/dist/icons/Actions/DraftOrdersIcon.esm.js +19 -0
- package/dist/icons/Actions/DraftOrdersIcon.esm.js.map +1 -0
- package/dist/icons/Actions/index.d.ts +1 -0
- package/dist/icons/Companies/XIcon.d.ts +7 -0
- package/dist/icons/Companies/XIcon.esm.js +19 -0
- package/dist/icons/Companies/XIcon.esm.js.map +1 -0
- package/dist/icons/Companies/index.d.ts +1 -0
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/react-magma-icons.cjs.development.js +3149 -3115
- package/dist/react-magma-icons.cjs.development.js.map +1 -1
- package/dist/react-magma-icons.cjs.production.min.js +1 -1
- package/dist/react-magma-icons.cjs.production.min.js.map +1 -1
- package/package.json +12 -7
- package/src/categories.ts +2 -0
- package/src/icons/Actions/DraftOrdersIcon.tsx +19 -0
- package/src/icons/Actions/index.ts +1 -0
- package/src/icons/Companies/XIcon.tsx +18 -0
- package/src/icons/Companies/index.ts +1 -0
- package/src/svg/icons/Actions/draft_orders.svg +1 -0
- package/src/svg/icons/Companies/X.svg +3 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-magma-icons",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
7
7
|
"typings": "dist/index.d.ts",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"react": "^17.0.2",
|
|
33
33
|
"react-dom": "^17.0.2",
|
|
34
|
-
"uuid": "^8.3.0"
|
|
34
|
+
"uuid": "^8.3.0 || ^9.0.0 || ^10.0.0 || ^11.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@babel/preset-env": "^7.
|
|
38
|
-
"@babel/preset-react": "^7.
|
|
39
|
-
"@babel/preset-typescript": "^7.
|
|
37
|
+
"@babel/preset-env": "^7.26.9",
|
|
38
|
+
"@babel/preset-react": "^7.26.3",
|
|
39
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
40
40
|
"@testing-library/jest-dom": "^5.16.5",
|
|
41
41
|
"@testing-library/react": "^12.1.5",
|
|
42
42
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
@@ -49,12 +49,17 @@
|
|
|
49
49
|
"rimraf": "^3.0.2",
|
|
50
50
|
"svgo": "^1.3.2",
|
|
51
51
|
"tsdx": "^0.14.1",
|
|
52
|
-
"uuid": "^
|
|
52
|
+
"uuid": "^11.1.0",
|
|
53
53
|
"xml2js": "^0.4.23"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@types/node": "^17.0.39",
|
|
57
57
|
"@types/react": "^17.0.5",
|
|
58
|
-
"@types/uuid": "^
|
|
58
|
+
"@types/uuid": "^10.0.0"
|
|
59
|
+
},
|
|
60
|
+
"peerDependenciesMeta": {
|
|
61
|
+
"@types/uuid": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
59
64
|
}
|
|
60
65
|
}
|
package/src/categories.ts
CHANGED
|
@@ -223,6 +223,7 @@ export const categories = {
|
|
|
223
223
|
"DoneOutlineIcon",
|
|
224
224
|
"DonutLargeIcon",
|
|
225
225
|
"DonutSmallIcon",
|
|
226
|
+
"DraftOrdersIcon",
|
|
226
227
|
"DragIndicatorIcon",
|
|
227
228
|
"DynamicFormIcon",
|
|
228
229
|
"EcoIcon",
|
|
@@ -602,6 +603,7 @@ export const categories = {
|
|
|
602
603
|
"WifiCallingIcon",
|
|
603
604
|
],
|
|
604
605
|
Companies: [
|
|
606
|
+
"XIcon",
|
|
605
607
|
"AndroidIcon",
|
|
606
608
|
"AppleIcon",
|
|
607
609
|
"GlassdoorIcon",
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/******************************************************
|
|
2
|
+
* This file was created by scripts/generate.js as part
|
|
3
|
+
* of the build process. Do not edit this file directly.
|
|
4
|
+
******************************************************/
|
|
5
|
+
|
|
6
|
+
import { IconProps } from "../../IconProps";
|
|
7
|
+
import { renderIcon } from "../../SvgIcon";
|
|
8
|
+
const iconType = {
|
|
9
|
+
viewBox: "0 -960 960 960",
|
|
10
|
+
paths: [
|
|
11
|
+
{
|
|
12
|
+
d: "M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93zM320-360v-66q0-8 3-15.5t9-13.5l209-208q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q8 9 12.5 20t4.5 22q0 11-4 22.5T663-540L455-332q-6 6-13.5 9t-15.5 3h-66q-17 0-28.5-11.5T320-360zm300-223l-37-37 37 37zM380-380h38l121-122-18-19-19-18-122 121v38zm141-141l-19-18 37 37-18-19z",
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
circles: [],
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const DraftOrdersIcon = (props: IconProps) =>
|
|
19
|
+
renderIcon(props, iconType);
|
|
@@ -104,6 +104,7 @@ export { DoneAllIcon } from "./DoneAllIcon";
|
|
|
104
104
|
export { DoneOutlineIcon } from "./DoneOutlineIcon";
|
|
105
105
|
export { DonutLargeIcon } from "./DonutLargeIcon";
|
|
106
106
|
export { DonutSmallIcon } from "./DonutSmallIcon";
|
|
107
|
+
export { DraftOrdersIcon } from "./DraftOrdersIcon";
|
|
107
108
|
export { DragIndicatorIcon } from "./DragIndicatorIcon";
|
|
108
109
|
export { DynamicFormIcon } from "./DynamicFormIcon";
|
|
109
110
|
export { EcoIcon } from "./EcoIcon";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/******************************************************
|
|
2
|
+
* This file was created by scripts/generate.js as part
|
|
3
|
+
* of the build process. Do not edit this file directly.
|
|
4
|
+
******************************************************/
|
|
5
|
+
|
|
6
|
+
import { IconProps } from "../../IconProps";
|
|
7
|
+
import { renderIcon } from "../../SvgIcon";
|
|
8
|
+
const iconType = {
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
paths: [
|
|
11
|
+
{
|
|
12
|
+
d: "M17.7511 3h3.0667l-6.6999 7.6578L22 21.0781h-6.1718l-4.8336-6.32-5.531 6.32H2.395l7.1662-8.1908L2 3h6.328l4.3695 5.7766L17.7511 3zm-1.0764 16.2424h1.6994L7.4048 4.7394H5.5814l11.0933 14.503z",
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
circles: [],
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const XIcon = (props: IconProps) => renderIcon(props, iconType);
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* of the build process. Do not edit this file directly.
|
|
4
4
|
******************************************************/
|
|
5
5
|
|
|
6
|
+
export { XIcon } from "./XIcon";
|
|
6
7
|
export { AndroidIcon } from "./AndroidIcon";
|
|
7
8
|
export { AppleIcon } from "./AppleIcon";
|
|
8
9
|
export { GlassdoorIcon } from "./GlassdoorIcon";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93ZM320-360v-66q0-8 3-15.5t9-13.5l209-208q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q8 9 12.5 20t4.5 22q0 11-4 22.5T663-540L455-332q-6 6-13.5 9t-15.5 3h-66q-17 0-28.5-11.5T320-360Zm300-223-37-37 37 37ZM380-380h38l121-122-18-19-19-18-122 121v38Zm141-141-19-18 37 37-18-19Z"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.7511 3H20.8178L14.1179 10.6578L22 21.0781H15.8282L10.9946 14.7581L5.46363 21.0781H2.39488L9.56109 12.8873L2 3H8.32809L12.6975 8.77656L17.7511 3ZM16.6747 19.2424H18.3741L7.4048 4.73934H5.58137L16.6747 19.2424Z" fill="black"/>
|
|
3
|
+
</svg>
|