@codecademy/gamut-illustrations 0.28.2 → 0.28.3-alpha.df097d.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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +8 -0
- package/dist/Coffee.d.ts +3 -0
- package/dist/Coffee.js +53 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
6
|
-
[
|
|
7
|
-
[
|
|
8
|
-
[
|
|
9
|
-
[
|
|
1
|
+
[33m@codecademy/gamut-illustrations:build: [0mcache hit, replaying output [2m0498ad1a0b1c573c[0m
|
|
2
|
+
[33m@codecademy/gamut-illustrations:build: [0m$ yarn build:clean && yarn build:compile && yarn build:types
|
|
3
|
+
[33m@codecademy/gamut-illustrations:build: [0m$ rm -rf dist
|
|
4
|
+
[33m@codecademy/gamut-illustrations:build: [0m$ babel ./src --out-dir ./dist --copy-files --extensions ".ts,.tsx"
|
|
5
|
+
[33m@codecademy/gamut-illustrations:build: [0mBrowserslist: caniuse-lite is outdated. Please run:
|
|
6
|
+
[33m@codecademy/gamut-illustrations:build: [0m npx browserslist@latest --update-db
|
|
7
|
+
[33m@codecademy/gamut-illustrations:build: [0m Why you should do it regularly: https://github.com/browserslist/browserslist#browsers-data-updating
|
|
8
|
+
[33m@codecademy/gamut-illustrations:build: [0mSuccessfully compiled 36 files with Babel (2020ms).
|
|
9
|
+
[33m@codecademy/gamut-illustrations:build: [0m$ tsc --emitDeclarationOnly
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
### [0.28.3-alpha.df097d.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-illustrations@0.28.2...@codecademy/gamut-illustrations@0.28.3-alpha.df097d.0) (2022-07-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @codecademy/gamut-illustrations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
### [0.28.2](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-illustrations@0.28.1...@codecademy/gamut-illustrations@0.28.2) (2022-07-19)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @codecademy/gamut-illustrations
|
package/dist/Coffee.d.ts
ADDED
package/dist/Coffee.js
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export var Coffee = function Coffee(_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
|
+
fill: "none",
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("title", null, "Coffee Illustration"), /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
d: "M1 28.124h36v37.05c0 1.578-.777 3.091-2.16 4.207-1.385 1.116-3.261 1.743-5.218 1.743H8.378c-1.957 0-3.834-.627-5.217-1.743C1.777 68.265 1 66.751 1 65.174v-37.05ZM37 51.15h4.055c.65-.002 1.273-.252 1.732-.696a2.331 2.331 0 0 0 .716-1.675V45.22c0-.628-.257-1.23-.716-1.675a2.495 2.495 0 0 0-1.732-.695H37V39h4.79c.684 0 1.362.13 1.994.383a5.223 5.223 0 0 1 1.69 1.091 5.026 5.026 0 0 1 1.13 1.635c.262.612.397 1.267.396 1.929v5.924c0 .662-.134 1.317-.396 1.929a5.026 5.026 0 0 1-1.13 1.635 5.22 5.22 0 0 1-1.69 1.091A5.363 5.363 0 0 1 41.79 55H37v-3.85Z",
|
|
17
|
+
fill: "#fff",
|
|
18
|
+
stroke: "#10162F",
|
|
19
|
+
strokeWidth: "1.5"
|
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
d: "M22.311 11.876H7.557v15.702h14.754V11.876Z",
|
|
22
|
+
fill: "url(#a)"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
24
|
+
d: "M33.754 0H19v14.05h14.754V0Z",
|
|
25
|
+
fill: "url(#b)"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M1 62v2.47a7.61 7.61 0 0 0 2.16 5.324A7.303 7.303 0 0 0 8.379 72h21.244a7.303 7.303 0 0 0 5.217-2.206A7.61 7.61 0 0 0 37 64.47V62H1Z",
|
|
28
|
+
fill: "#fff",
|
|
29
|
+
stroke: "#10162F",
|
|
30
|
+
strokeWidth: "1.5"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", {
|
|
32
|
+
id: "a",
|
|
33
|
+
patternContentUnits: "objectBoundingBox",
|
|
34
|
+
width: ".542",
|
|
35
|
+
height: ".509"
|
|
36
|
+
}, /*#__PURE__*/React.createElement("use", {
|
|
37
|
+
xlinkHref: "#c",
|
|
38
|
+
transform: "scale(.06778 .06368)"
|
|
39
|
+
})), /*#__PURE__*/React.createElement("pattern", {
|
|
40
|
+
id: "b",
|
|
41
|
+
patternContentUnits: "objectBoundingBox",
|
|
42
|
+
width: ".542",
|
|
43
|
+
height: ".569"
|
|
44
|
+
}, /*#__PURE__*/React.createElement("use", {
|
|
45
|
+
xlinkHref: "#c",
|
|
46
|
+
transform: "scale(.06778 .07118)"
|
|
47
|
+
})), /*#__PURE__*/React.createElement("image", {
|
|
48
|
+
id: "c",
|
|
49
|
+
width: "8",
|
|
50
|
+
height: "8",
|
|
51
|
+
xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAeSURBVHgBzc4xAQAAAAEwEVxq6J+OGCzBQDk4MzgV8D0CqU26KA8AAAAASUVORK5CYII="
|
|
52
|
+
})));
|
|
53
|
+
};
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED