@codecademy/gamut-illustrations 0.20.2 → 1.0.0-alpha.0f9d49.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/CHANGELOG.md +30 -0
- package/dist/PortfolioProject.d.ts +3 -0
- package/dist/PortfolioProject.js +35 -0
- package/dist/PracticeProject.d.ts +3 -0
- package/dist/PracticeProject.js +43 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.0-alpha.0f9d49.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-illustrations@0.21.0...@codecademy/gamut-illustrations@1.0.0-alpha.0f9d49.0) (2021-12-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ⚠ BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* bumped React to 17
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* bumped React to 17 ([4d0d029](https://github.com/Codecademy/gamut/commit/4d0d029ce293d3c4a8331c625bcdcdce93235f2d))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## [0.21.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-illustrations@0.20.3...@codecademy/gamut-illustrations@0.21.0) (2021-12-14)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **Illustration:** Add PortfolioProject and PracticeProject illustrations ([0d88277](https://github.com/Codecademy/gamut/commit/0d88277472beb0e008bb86467f40cf8184095ab4))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### [0.20.3](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-illustrations@0.20.2...@codecademy/gamut-illustrations@0.20.3) (2021-12-07)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @codecademy/gamut-illustrations
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
### [0.20.2](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-illustrations@0.20.1...@codecademy/gamut-illustrations@0.20.2) (2021-11-23)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @codecademy/gamut-illustrations
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export var PortfolioProject = function PortfolioProject(_ref) {
|
|
3
|
+
var ariaHidden = _ref['aria-hidden'],
|
|
4
|
+
className = _ref.className,
|
|
5
|
+
height = _ref.height,
|
|
6
|
+
width = _ref.width;
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
8
|
+
"aria-hidden": ariaHidden,
|
|
9
|
+
className: className,
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 96 96",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
d: "M57.005 76.209H16.701L38.917 41.22h40.278L57.005 76.21Z",
|
|
17
|
+
fill: "#FFF5FF",
|
|
18
|
+
stroke: "#10162F",
|
|
19
|
+
strokeMiterlimit: "10"
|
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M48.207 64.844H7l22.861-35.876h41.207L48.207 64.844Z",
|
|
22
|
+
fill: "#F966FF",
|
|
23
|
+
stroke: "#10162F",
|
|
24
|
+
strokeMiterlimit: "10"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M75.17 47.712c7.596 0 13.754-6.427 13.754-14.356S82.766 19 75.17 19c-7.596 0-13.753 6.427-13.753 14.356s6.157 14.356 13.753 14.356Z",
|
|
27
|
+
fill: "#FFF5FF",
|
|
28
|
+
stroke: "#10162F",
|
|
29
|
+
strokeMiterlimit: "10"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M75.17 28.212V38.5M80.073 33.358h-9.83",
|
|
32
|
+
stroke: "#10162F",
|
|
33
|
+
strokeMiterlimit: "10"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export var PracticeProject = function PracticeProject(_ref) {
|
|
3
|
+
var ariaHidden = _ref['aria-hidden'],
|
|
4
|
+
className = _ref.className,
|
|
5
|
+
height = _ref.height,
|
|
6
|
+
width = _ref.width;
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
8
|
+
"aria-hidden": ariaHidden,
|
|
9
|
+
className: className,
|
|
10
|
+
width: width,
|
|
11
|
+
height: height,
|
|
12
|
+
viewBox: "0 0 96 96",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
d: "M70.151 88.173 47.795 8 25.44 88.173",
|
|
17
|
+
stroke: "#10162F",
|
|
18
|
+
strokeLinecap: "square",
|
|
19
|
+
strokeLinejoin: "bevel"
|
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M47.795 31.909v56.264",
|
|
22
|
+
stroke: "#10162F",
|
|
23
|
+
strokeMiterlimit: "10",
|
|
24
|
+
strokeLinecap: "square"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M74.538 74.614v-55.17H21v55.17h53.538Z",
|
|
27
|
+
fill: "#66C4FF",
|
|
28
|
+
stroke: "#10162F",
|
|
29
|
+
strokeMiterlimit: "10",
|
|
30
|
+
strokeLinecap: "square"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M67.314 67.342V26.695h-39.09v40.647h39.09Z",
|
|
33
|
+
fill: "#66C4FF",
|
|
34
|
+
stroke: "#10162F",
|
|
35
|
+
strokeMiterlimit: "10",
|
|
36
|
+
strokeLinecap: "square"
|
|
37
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
38
|
+
d: "m40.99 42.34 4.467 4.562-4.834 4.667 4.702 4.771 4.808-4.667 4.834-4.64L50.5 42.47l-.237-.235-4.466-4.563-4.807 4.667Z",
|
|
39
|
+
stroke: "#10162F",
|
|
40
|
+
strokeMiterlimit: "10",
|
|
41
|
+
strokeLinecap: "square"
|
|
42
|
+
}));
|
|
43
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,8 @@ export * from './New';
|
|
|
18
18
|
export * from './NumberBlocks';
|
|
19
19
|
export * from './Onboarding';
|
|
20
20
|
export * from './Plant';
|
|
21
|
+
export * from './PortfolioProject';
|
|
22
|
+
export * from './PracticeProject';
|
|
21
23
|
export * from './Python';
|
|
22
24
|
export * from './Sun';
|
|
23
25
|
export * from './Target';
|
package/dist/index.js
CHANGED
|
@@ -18,6 +18,8 @@ export * from './New';
|
|
|
18
18
|
export * from './NumberBlocks';
|
|
19
19
|
export * from './Onboarding';
|
|
20
20
|
export * from './Plant';
|
|
21
|
+
export * from './PortfolioProject';
|
|
22
|
+
export * from './PracticeProject';
|
|
21
23
|
export * from './Python';
|
|
22
24
|
export * from './Sun';
|
|
23
25
|
export * from './Target';
|
package/package.json
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
"url": "https://github.com/Codecademy/gamut/issues"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "
|
|
7
|
+
"@codecademy/gamut-styles": "13.0.0-alpha.0f9d49.0",
|
|
8
8
|
"classnames": "^2.2.5"
|
|
9
9
|
},
|
|
10
10
|
"description": "Illustrations library for Codecademy",
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@testing-library/react": "^
|
|
12
|
+
"@testing-library/react": "^12.1.2"
|
|
13
13
|
},
|
|
14
14
|
"homepage": "https://github.com/Codecademy/gamut#readme",
|
|
15
15
|
"name": "@codecademy/gamut-illustrations",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"@emotion/react": "^11.4.0",
|
|
21
21
|
"@emotion/styled": "^11.3.0",
|
|
22
|
-
"react": ">=
|
|
23
|
-
"react-dom": ">=
|
|
22
|
+
"react": ">=17.0.2",
|
|
23
|
+
"react-dom": ">=17.0.2"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
@@ -41,6 +41,6 @@
|
|
|
41
41
|
"dist/**/[A-Z]**/[A-Z]*.js",
|
|
42
42
|
"dist/**/[A-Z]**/index.js"
|
|
43
43
|
],
|
|
44
|
-
"version": "0.
|
|
45
|
-
"gitHead": "
|
|
44
|
+
"version": "1.0.0-alpha.0f9d49.0",
|
|
45
|
+
"gitHead": "4652a10639393999d83db890e4c6467028495571"
|
|
46
46
|
}
|