@codecademy/gamut-patterns 1.0.0-alpha.f6cb5a.0 → 67.0.0-alpha.7455bb.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/LICENSE +1 -1
- package/dist/patterns/CheckerDense.js +39 -32
- package/dist/patterns/CheckerLoose.js +39 -32
- package/dist/patterns/CheckerRegular.js +39 -32
- package/dist/patterns/DiagonalADense.js +73 -66
- package/dist/patterns/DiagonalALoose.js +217 -210
- package/dist/patterns/DiagonalARegular.js +121 -114
- package/dist/patterns/DiagonalBDense.js +55 -48
- package/dist/patterns/DiagonalBLoose.js +123 -116
- package/dist/patterns/DiagonalBRegular.js +79 -72
- package/dist/patterns/DotDense.js +34 -27
- package/dist/patterns/DotLoose.js +77 -70
- package/dist/patterns/DotRegular.js +34 -27
- package/dist/patterns/ExDense.js +56 -49
- package/dist/patterns/ExLoose.js +56 -49
- package/dist/patterns/ExRegular.js +56 -49
- package/dist/patterns/FlowerDense.js +50 -43
- package/dist/patterns/FlowerLoose.js +50 -43
- package/dist/patterns/FlowerRegular.js +50 -43
- package/dist/patterns/GridDense.js +49 -42
- package/dist/patterns/GridLoose.js +49 -42
- package/dist/patterns/GridRegular.js +49 -42
- package/dist/patterns/Herringbone.js +67 -60
- package/dist/patterns/RainDense.js +39 -32
- package/dist/patterns/RainLoose.js +39 -32
- package/dist/patterns/RainRegular.js +39 -32
- package/dist/patterns/StripeDense.js +71 -64
- package/dist/patterns/StripeLoose.js +203 -196
- package/dist/patterns/StripeRegular.js +115 -108
- package/dist/types.js +1 -0
- package/dist/usePatternId.js +4 -6
- package/package.json +16 -17
- package/.svgo.yml +0 -11
- package/CHANGELOG.md +0 -329
- package/babel.config.js +0 -5
- package/emotion-plugin.js +0 -46
- package/index-template.js +0 -10
- package/jest.config.js +0 -1
- package/pattern-template.js +0 -30
- package/svgr.config.js +0 -29
- package/tsconfig.json +0 -12
|
@@ -1,123 +1,130 @@
|
|
|
1
|
-
function
|
|
2
|
-
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
5
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
6
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
3
7
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
-
|
|
5
8
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
|
-
|
|
7
9
|
import * as React from 'react';
|
|
8
10
|
import { Svg } from '../props';
|
|
9
11
|
import { usePatternId } from '../usePatternId';
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
14
|
export var StripeRegular = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
|
|
11
15
|
var _ref$title = _ref.title,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
+
title = _ref$title === void 0 ? 'Stripe Regular' : _ref$title,
|
|
17
|
+
titleId = _ref.titleId,
|
|
18
|
+
props = _objectWithoutProperties(_ref, ["title", "titleId"]);
|
|
16
19
|
var patternId = usePatternId('StripeRegular');
|
|
17
|
-
return /*#__PURE__*/
|
|
20
|
+
return /*#__PURE__*/_jsxs(Svg, _objectSpread(_objectSpread({
|
|
18
21
|
fill: "currentColor",
|
|
19
22
|
role: "img",
|
|
20
23
|
"aria-hidden": "true",
|
|
21
24
|
ref: svgRef,
|
|
22
25
|
"aria-labelledby": titleId
|
|
23
|
-
}, props),
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
26
|
+
}, props), {}, {
|
|
27
|
+
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
|
+
id: titleId,
|
|
29
|
+
children: title
|
|
30
|
+
}) : null, /*#__PURE__*/_jsxs("pattern", {
|
|
31
|
+
id: patternId,
|
|
32
|
+
x: 0,
|
|
33
|
+
y: 0,
|
|
34
|
+
width: 8,
|
|
35
|
+
height: 8,
|
|
36
|
+
patternUnits: "userSpaceOnUse",
|
|
37
|
+
children: [/*#__PURE__*/_jsx("rect", {
|
|
38
|
+
x: 1,
|
|
39
|
+
width: 1,
|
|
40
|
+
height: 1,
|
|
41
|
+
fill: "currentColor"
|
|
42
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
43
|
+
width: 1,
|
|
44
|
+
height: 1,
|
|
45
|
+
fill: "currentColor"
|
|
46
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
47
|
+
x: 2,
|
|
48
|
+
width: 1,
|
|
49
|
+
height: 1,
|
|
50
|
+
fill: "currentColor"
|
|
51
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
52
|
+
x: 3,
|
|
53
|
+
width: 1,
|
|
54
|
+
height: 1,
|
|
55
|
+
fill: "currentColor"
|
|
56
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
57
|
+
x: 1,
|
|
58
|
+
y: 4,
|
|
59
|
+
width: 1,
|
|
60
|
+
height: 1,
|
|
61
|
+
fill: "currentColor"
|
|
62
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
63
|
+
y: 4,
|
|
64
|
+
width: 1,
|
|
65
|
+
height: 1,
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
68
|
+
x: 2,
|
|
69
|
+
y: 4,
|
|
70
|
+
width: 1,
|
|
71
|
+
height: 1,
|
|
72
|
+
fill: "currentColor"
|
|
73
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
74
|
+
x: 3,
|
|
75
|
+
y: 4,
|
|
76
|
+
width: 1,
|
|
77
|
+
height: 1,
|
|
78
|
+
fill: "currentColor"
|
|
79
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
80
|
+
x: 5,
|
|
81
|
+
width: 1,
|
|
82
|
+
height: 1,
|
|
83
|
+
fill: "currentColor"
|
|
84
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
85
|
+
x: 4,
|
|
86
|
+
width: 1,
|
|
87
|
+
height: 1,
|
|
88
|
+
fill: "currentColor"
|
|
89
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
90
|
+
x: 6,
|
|
91
|
+
width: 1,
|
|
92
|
+
height: 1,
|
|
93
|
+
fill: "currentColor"
|
|
94
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
95
|
+
x: 7,
|
|
96
|
+
width: 1,
|
|
97
|
+
height: 1,
|
|
98
|
+
fill: "currentColor"
|
|
99
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
100
|
+
x: 5,
|
|
101
|
+
y: 4,
|
|
102
|
+
width: 1,
|
|
103
|
+
height: 1,
|
|
104
|
+
fill: "currentColor"
|
|
105
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
106
|
+
x: 4,
|
|
107
|
+
y: 4,
|
|
108
|
+
width: 1,
|
|
109
|
+
height: 1,
|
|
110
|
+
fill: "currentColor"
|
|
111
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
112
|
+
x: 6,
|
|
113
|
+
y: 4,
|
|
114
|
+
width: 1,
|
|
115
|
+
height: 1,
|
|
116
|
+
fill: "currentColor"
|
|
117
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
118
|
+
x: 7,
|
|
119
|
+
y: 4,
|
|
120
|
+
width: 1,
|
|
121
|
+
height: 1,
|
|
122
|
+
fill: "currentColor"
|
|
123
|
+
})]
|
|
124
|
+
}), /*#__PURE__*/_jsx("rect", {
|
|
125
|
+
width: "100%",
|
|
126
|
+
height: "100%",
|
|
127
|
+
fill: "url(#".concat(patternId, ")")
|
|
128
|
+
})]
|
|
122
129
|
}));
|
|
123
130
|
});
|
package/dist/types.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/usePatternId.js
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
+
import { useId } from '@reach/auto-id';
|
|
1
2
|
import { useMemo } from 'react';
|
|
2
|
-
var counter = {};
|
|
3
3
|
export function usePatternId(id) {
|
|
4
|
+
var generatedId = useId();
|
|
4
5
|
return useMemo(function () {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
counter[key] = idCounter;
|
|
8
|
-
return "".concat(id, "-pattern-").concat(counter[key] += 1);
|
|
9
|
-
}, [id]);
|
|
6
|
+
return "".concat(id, "-pattern-").concat(generatedId);
|
|
7
|
+
}, [id, generatedId]);
|
|
10
8
|
}
|
package/package.json
CHANGED
|
@@ -4,27 +4,31 @@
|
|
|
4
4
|
"url": "https://github.com/Codecademy/gamut/issues"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "
|
|
8
|
-
"@codecademy/variance": "
|
|
7
|
+
"@codecademy/gamut-styles": "67.0.0-alpha.7455bb.0",
|
|
8
|
+
"@codecademy/variance": "67.0.0-alpha.7455bb.0",
|
|
9
9
|
"classnames": "^2.2.5"
|
|
10
10
|
},
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"@svgr/cli": "5.5.0",
|
|
13
|
+
"@testing-library/react": "^12.1.2",
|
|
14
|
+
"lodash": "^4.17.5",
|
|
15
|
+
"svgo": "^1.3.2"
|
|
16
|
+
},
|
|
11
17
|
"description": "Pattern library for Codecademy",
|
|
12
18
|
"homepage": "https://github.com/Codecademy/gamut#readme",
|
|
13
19
|
"name": "@codecademy/gamut-patterns",
|
|
14
20
|
"module": "dist/index.js",
|
|
15
21
|
"types": "dist/index.d.ts",
|
|
16
22
|
"main": "dist/index.js",
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
17
26
|
"license": "MIT",
|
|
18
27
|
"peerDependencies": {
|
|
19
28
|
"@emotion/react": "^11.4.0",
|
|
20
29
|
"@emotion/styled": "^11.3.0",
|
|
21
|
-
"react": "
|
|
22
|
-
"react-dom": "
|
|
23
|
-
},
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"@svgr/cli": "5.5.0",
|
|
26
|
-
"lodash": "^4.17.5",
|
|
27
|
-
"svgo": "^1.3.2"
|
|
30
|
+
"react": "^17.0.2 || ^18.2.0",
|
|
31
|
+
"react-dom": "^17.0.2 || ^18.2.0"
|
|
28
32
|
},
|
|
29
33
|
"publishConfig": {
|
|
30
34
|
"access": "public"
|
|
@@ -34,15 +38,10 @@
|
|
|
34
38
|
"url": "git+ssh://git@github.com/Codecademy/gamut.git"
|
|
35
39
|
},
|
|
36
40
|
"scripts": {
|
|
37
|
-
"verify": "tsc --noEmit",
|
|
38
41
|
"format": "svgo -f ./src/svg --pretty --config=.svgo.yml",
|
|
39
|
-
"build
|
|
40
|
-
"build:types": "tsc --emitDeclarationOnly",
|
|
41
|
-
"build:compile": "babel ./src --out-dir ./dist --copy-files --extensions \".ts,.tsx\"",
|
|
42
|
-
"build": "yarn build:icons && yarn build:compile && yarn build:types",
|
|
43
|
-
"lernaBuildTask": "yarn build"
|
|
42
|
+
"build": "nx build @codecademy/gamut-patterns"
|
|
44
43
|
},
|
|
45
44
|
"sideEffects": false,
|
|
46
|
-
"version": "
|
|
47
|
-
"gitHead": "
|
|
45
|
+
"version": "67.0.0-alpha.7455bb.0",
|
|
46
|
+
"gitHead": "4d8aa12c1ee3d1fd30bb1055440cccaedaaf4eb2"
|
|
48
47
|
}
|
package/.svgo.yml
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,329 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [1.0.0-alpha.f6cb5a.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.7.3...@codecademy/gamut-patterns@1.0.0-alpha.f6cb5a.0) (2022-01-19)
|
|
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
|
-
### Reverts
|
|
19
|
-
|
|
20
|
-
* Revert "Updated svgr and svgo to latest" ([d049662](https://github.com/Codecademy/gamut/commit/d049662334753f113245a04e1cc7f37827fc4f52))
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
### [0.7.3](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.7.2...@codecademy/gamut-patterns@0.7.3) (2021-12-07)
|
|
25
|
-
|
|
26
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### [0.7.2](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.7.1...@codecademy/gamut-patterns@0.7.2) (2021-11-23)
|
|
33
|
-
|
|
34
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
### [0.7.1](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.7.0...@codecademy/gamut-patterns@0.7.1) (2021-10-27)
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
### Bug Fixes
|
|
44
|
-
|
|
45
|
-
* **Pattern:** fix white bg on regular and dense diagonal patterns ([2f321c2](https://github.com/Codecademy/gamut/commit/2f321c2446cdc28e4338fa1dae94efa698e4c6ea))
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## 0.7.0 (2021-10-26)
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
### ⚠ BREAKING CHANGES
|
|
53
|
-
|
|
54
|
-
* add new gamut-patterns package
|
|
55
|
-
|
|
56
|
-
### Features
|
|
57
|
-
|
|
58
|
-
* bump ESLint configs to latest ([4e3cf77](https://github.com/Codecademy/gamut/commit/4e3cf77928bdd69bce3eeca8a7f07439627b4f08))
|
|
59
|
-
* **Patterns:** Add SVGR build process and SVGO settings ([e8433ce](https://github.com/Codecademy/gamut/commit/e8433ceace8b617fcaa45f13a11ce1367cff0e0b))
|
|
60
|
-
* **props:** Support `color` and other HTML attributes as system props without type collision GM-247 ([ff93f0c](https://github.com/Codecademy/gamut/commit/ff93f0c9b7ca64ed9819586709f58436ca4502b9))
|
|
61
|
-
* Migrate final gamut-system docs + functions to variance [WEB-1413] ([f966933](https://github.com/Codecademy/gamut/commit/f966933ac814d228072e781ee2a3d75a33190a85))
|
|
62
|
-
* **theme:** createTheme self containment ([87a203c](https://github.com/Codecademy/gamut/commit/87a203c56df8002406552208b8b5ffc55b228262)), closes [#666666](https://github.com/Codecademy/gamut/issues/666666) [#666666](https://github.com/Codecademy/gamut/issues/666666)
|
|
63
|
-
* add new gamut-patterns package ([3b9785a](https://github.com/Codecademy/gamut/commit/3b9785a20e26767a9531b1f1ce8de5f504f2dd34))
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
### [0.6.2](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.6.1...@codecademy/gamut-patterns@0.6.2) (2021-09-30)
|
|
68
|
-
|
|
69
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
### [0.6.1](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.6.0...@codecademy/gamut-patterns@0.6.1) (2021-09-13)
|
|
76
|
-
|
|
77
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
## [0.6.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.5.8...@codecademy/gamut-patterns@0.6.0) (2021-09-10)
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
### Features
|
|
87
|
-
|
|
88
|
-
* bump ESLint configs to latest ([e0a201a](https://github.com/Codecademy/gamut/commit/e0a201abcc5f49718538d3d91af21cb37db4470e))
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
### [0.5.8](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.5.7...@codecademy/gamut-patterns@0.5.8) (2021-08-30)
|
|
93
|
-
|
|
94
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
### [0.5.7](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.5.6...@codecademy/gamut-patterns@0.5.7) (2021-08-16)
|
|
101
|
-
|
|
102
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
### [0.5.6](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.5.5...@codecademy/gamut-patterns@0.5.6) (2021-08-16)
|
|
109
|
-
|
|
110
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
### [0.5.5](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.5.4...@codecademy/gamut-patterns@0.5.5) (2021-08-13)
|
|
117
|
-
|
|
118
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
### [0.5.4](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.5.3...@codecademy/gamut-patterns@0.5.4) (2021-08-12)
|
|
125
|
-
|
|
126
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
### [0.5.3](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.5.2...@codecademy/gamut-patterns@0.5.3) (2021-08-05)
|
|
133
|
-
|
|
134
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
### [0.5.2](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.5.1...@codecademy/gamut-patterns@0.5.2) (2021-08-03)
|
|
141
|
-
|
|
142
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
### [0.5.1](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.5.0...@codecademy/gamut-patterns@0.5.1) (2021-07-29)
|
|
149
|
-
|
|
150
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
## [0.5.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.4.7...@codecademy/gamut-patterns@0.5.0) (2021-07-27)
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
### Features
|
|
160
|
-
|
|
161
|
-
* **Patterns:** Add SVGR build process and SVGO settings ([56e50ff](https://github.com/Codecademy/gamut/commit/56e50ffe021102b84a7f9e5d7bb33ea6de890994))
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
### [0.4.7](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.4.6...@codecademy/gamut-patterns@0.4.7) (2021-07-19)
|
|
166
|
-
|
|
167
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
### [0.4.6](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.4.5...@codecademy/gamut-patterns@0.4.6) (2021-07-16)
|
|
174
|
-
|
|
175
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
### [0.4.5](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.4.4...@codecademy/gamut-patterns@0.4.5) (2021-07-15)
|
|
182
|
-
|
|
183
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
### [0.4.4](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.4.3...@codecademy/gamut-patterns@0.4.4) (2021-06-17)
|
|
190
|
-
|
|
191
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
### [0.4.3](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.4.2...@codecademy/gamut-patterns@0.4.3) (2021-06-16)
|
|
198
|
-
|
|
199
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
### [0.4.2](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.4.1...@codecademy/gamut-patterns@0.4.2) (2021-06-16)
|
|
206
|
-
|
|
207
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
### [0.4.1](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.4.0...@codecademy/gamut-patterns@0.4.1) (2021-06-16)
|
|
214
|
-
|
|
215
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
## [0.4.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.3.4...@codecademy/gamut-patterns@0.4.0) (2021-06-15)
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
### Features
|
|
225
|
-
|
|
226
|
-
* **props:** Support `color` and other HTML attributes as system props without type collision GM-247 ([50a8b43](https://github.com/Codecademy/gamut/commit/50a8b43b27eff2d75307d317d724383156e5a3ed))
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
### [0.3.4](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.3.3...@codecademy/gamut-patterns@0.3.4) (2021-06-10)
|
|
231
|
-
|
|
232
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
### [0.3.3](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.3.2...@codecademy/gamut-patterns@0.3.3) (2021-06-10)
|
|
239
|
-
|
|
240
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
### [0.3.2](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.3.1...@codecademy/gamut-patterns@0.3.2) (2021-06-03)
|
|
247
|
-
|
|
248
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
### [0.3.1](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.3.0...@codecademy/gamut-patterns@0.3.1) (2021-06-02)
|
|
255
|
-
|
|
256
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
## [0.3.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.2.2...@codecademy/gamut-patterns@0.3.0) (2021-05-27)
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
### Features
|
|
266
|
-
|
|
267
|
-
* Migrate final gamut-system docs + functions to variance [WEB-1413] ([67c8651](https://github.com/Codecademy/gamut/commit/67c8651dc4985dd656c8d488af4cf56ca21a813b))
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
### [0.2.2](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.2.1...@codecademy/gamut-patterns@0.2.2) (2021-05-25)
|
|
272
|
-
|
|
273
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
### [0.2.1](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.2.0...@codecademy/gamut-patterns@0.2.1) (2021-05-24)
|
|
280
|
-
|
|
281
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
## [0.2.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.1.3...@codecademy/gamut-patterns@0.2.0) (2021-05-18)
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
### Features
|
|
291
|
-
|
|
292
|
-
* **theme:** createTheme self containment ([59ddff7](https://github.com/Codecademy/gamut/commit/59ddff7224cd8e0972212dd6ba1696f40ccac835)), closes [#666666](https://github.com/Codecademy/gamut/issues/666666) [#666666](https://github.com/Codecademy/gamut/issues/666666)
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
### [0.1.3](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.1.2...@codecademy/gamut-patterns@0.1.3) (2021-05-12)
|
|
297
|
-
|
|
298
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
### [0.1.2](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.1.1...@codecademy/gamut-patterns@0.1.2) (2021-05-11)
|
|
305
|
-
|
|
306
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
### [0.1.1](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-patterns@0.1.0...@codecademy/gamut-patterns@0.1.1) (2021-05-07)
|
|
313
|
-
|
|
314
|
-
**Note:** Version bump only for package @codecademy/gamut-patterns
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
## 0.1.0 (2021-05-06)
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
### ⚠ BREAKING CHANGES
|
|
324
|
-
|
|
325
|
-
* add new gamut-patterns package
|
|
326
|
-
|
|
327
|
-
### Features
|
|
328
|
-
|
|
329
|
-
* add new gamut-patterns package ([e0b30b1](https://github.com/Codecademy/gamut/commit/e0b30b102b32b8447a1b4c97f9da63fcce365af6))
|