@atlaskit/icon-lab 2.0.0 → 2.1.1
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 +25 -0
- package/core/initiative.js +2 -2
- package/core/qr-code.js +2 -2
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @atlaskit/icon-lab
|
|
2
2
|
|
|
3
|
+
## 2.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#103999](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103999)
|
|
8
|
+
[`9f62ecec4d422`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9f62ecec4d422) -
|
|
9
|
+
Update dependencies.
|
|
10
|
+
|
|
11
|
+
## 2.1.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#100878](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100878)
|
|
16
|
+
[`46c4545aa5d77`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/46c4545aa5d77) -
|
|
17
|
+
This release updates icons in `@atlaskit/icon-lab`.
|
|
18
|
+
|
|
19
|
+
**`@atlaskit/icon-lab/core`**
|
|
20
|
+
|
|
21
|
+
- 'initiative'
|
|
22
|
+
- 'qr-code'
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
|
|
3
28
|
## 2.0.0
|
|
4
29
|
|
|
5
30
|
### Major Changes
|
package/core/initiative.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::07554af816f6dd6e094d6ed9d91cff09>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const InitiativeIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M4.607 12.25a6.25 6.25 0 1 1 6.785 0m-6.785 0a1.19 1.19 0 0 0-1.128.813L2.75 15.25h10.5l-.729-2.187a1.19 1.19 0 0 0-1.129-.813m-6.785 0h6.786M4.75 7A3.25 3.25 0 0 1 8 3.75"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
InitiativeIcon.displayName = 'InitiativeIcon';
|
package/core/qr-code.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::065bae4da7c9b5223fe8a5a1ed3de3d0>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const QrCodeIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path fill="currentcolor" d="
|
|
27
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M10 10h2v2h-2z"/><path stroke="currentcolor" stroke-width="1.5" d="M1.75 5.25V3c0-.69.56-1.25 1.25-1.25h2.25m9 3.5V3c0-.69-.56-1.25-1.25-1.25h-2.25m-9 9V13c0 .69.56 1.25 1.25 1.25h2.25m9-3.5V13c0 .69-.56 1.25-1.25 1.25h-2.25m-6.75-3h4M11.25 4v4m-6.5-3.25h3.5v3.5h-3.5z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
QrCodeIcon.displayName = 'QrCodeIcon';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/icon-lab",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "An icon package for public icon contributions",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/icon": "^23.
|
|
35
|
+
"@atlaskit/icon": "^23.4.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -49,8 +49,7 @@
|
|
|
49
49
|
"pkg-dir": "^4.2.0",
|
|
50
50
|
"react-dom": "^16.8.0",
|
|
51
51
|
"ts-node": "^10.9.1",
|
|
52
|
-
"typescript": "~5.4.2"
|
|
53
|
-
"wait-for-expect": "^1.2.0"
|
|
52
|
+
"typescript": "~5.4.2"
|
|
54
53
|
},
|
|
55
54
|
"keywords": [
|
|
56
55
|
"atlaskit",
|