@atlaskit/icon 22.24.1 → 22.24.2
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 +8 -0
- package/afm-jira/tsconfig.json +26 -26
- package/afm-post-office/tsconfig.json +26 -26
- package/core/arrow-down-right.js +2 -2
- package/core/arrow-up-left.js +2 -2
- package/core/bulleted-list.js +1 -1
- package/core/expand.js +1 -2
- package/core/migration/video--hipchat-sd-video.js +2 -2
- package/core/migration/video--media-services-video.js +2 -2
- package/core/migration/video--vid-camera-on.js +2 -2
- package/core/migration/video--video-circle.js +2 -2
- package/core/migration/video--video-filled.js +2 -2
- package/core/scales.js +2 -2
- package/core/screen-plus.js +2 -2
- package/core/send.js +2 -2
- package/core/smart-link.js +2 -2
- package/core/status-verified.js +2 -2
- package/core/video.js +2 -2
- package/dist/cjs/components/icon.js +5 -4
- package/dist/cjs/entry-points/metadata.js +15 -1
- package/dist/cjs/metadata-core.js +6 -6
- package/dist/es2019/components/icon.js +1 -3
- package/dist/es2019/entry-points/metadata.js +3 -1
- package/dist/es2019/metadata-core.js +6 -6
- package/dist/esm/components/icon.js +5 -4
- package/dist/esm/entry-points/metadata.js +3 -1
- package/dist/esm/metadata-core.js +6 -6
- package/dist/types/entry-points/metadata.d.ts +2 -0
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/entry-points/metadata.d.ts +2 -0
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +45 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/icon
|
|
2
2
|
|
|
3
|
+
## 22.24.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#160518](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/160518)
|
|
8
|
+
[`a59ea189efe8c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a59ea189efe8c) -
|
|
9
|
+
Fix bug with core icons: `send`, `scale` and `status-verified`
|
|
10
|
+
|
|
3
11
|
## 22.24.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/afm-jira/tsconfig.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.jira.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../tsDist/@atlaskit__icon/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*"
|
|
18
|
+
],
|
|
19
|
+
"references": [
|
|
20
|
+
{
|
|
21
|
+
"path": "../../../platform/feature-flags/afm-jira/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"path": "../../tokens/afm-jira/tsconfig.json"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.post-office.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../post-office/tsDist/@atlaskit__icon/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*"
|
|
18
|
+
],
|
|
19
|
+
"references": [
|
|
20
|
+
{
|
|
21
|
+
"path": "../../../platform/feature-flags/afm-post-office/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"path": "../../tokens/afm-post-office/tsconfig.json"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
package/core/arrow-down-right.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::eda0bdc253772efe6fc5227280ff2166>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -19,7 +19,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
19
19
|
* Icon: "ArrowDownRight".
|
|
20
20
|
* Category: multi-purpose
|
|
21
21
|
* Location: @atlaskit/icon
|
|
22
|
-
* Usage guidance:
|
|
22
|
+
* Usage guidance: Known uses: TBC
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
package/core/arrow-up-left.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::acb0c2c38bbaaab859d63d96902a03f9>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -19,7 +19,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
19
19
|
* Icon: "ArrowUpLeft".
|
|
20
20
|
* Category: multi-purpose
|
|
21
21
|
* Location: @atlaskit/icon
|
|
22
|
-
* Usage guidance:
|
|
22
|
+
* Usage guidance: Known uses: TBC
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
package/core/bulleted-list.js
CHANGED
|
@@ -29,4 +29,4 @@ const BulletedListIcon = props => /*#__PURE__*/_react.default.createElement(_UNS
|
|
|
29
29
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
30
30
|
}, props));
|
|
31
31
|
BulletedListIcon.displayName = 'BulletedListIcon';
|
|
32
|
-
var _default = exports.default = BulletedListIcon;
|
|
32
|
+
var _default = exports.default = BulletedListIcon;
|
package/core/expand.js
CHANGED
|
@@ -13,7 +13,6 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
13
13
|
var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
|
-
* @deprecated Use `@atlaskit/icon/core/maximize` instead.
|
|
17
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
18
17
|
* Please reach out in #icon-contributions before using these in production.
|
|
19
18
|
*
|
|
@@ -29,4 +28,4 @@ const ExpandIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_ba
|
|
|
29
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
30
29
|
}, props));
|
|
31
30
|
ExpandIcon.displayName = 'ExpandIcon';
|
|
32
|
-
var _default = exports.default = ExpandIcon;
|
|
31
|
+
var _default = exports.default = ExpandIcon;
|
|
@@ -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::d7c297bfc282c7156b5606237c5f61c7>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
21
21
|
*
|
|
22
22
|
* Category: single-purpose
|
|
23
23
|
* Location: @atlaskit/icon
|
|
24
|
-
* Usage guidance: Single purpose - Reserved for video
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
|
|
25
25
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
26
26
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
27
27
|
*/
|
|
@@ -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::406f2b568fd585db8bdb2307b1b2908c>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
21
21
|
*
|
|
22
22
|
* Category: single-purpose
|
|
23
23
|
* Location: @atlaskit/icon
|
|
24
|
-
* Usage guidance: Single purpose - Reserved for video
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
|
|
25
25
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
26
26
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
27
27
|
*/
|
|
@@ -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::f54c1779846e16ec02ddd36e2f649b12>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
21
21
|
*
|
|
22
22
|
* Category: single-purpose
|
|
23
23
|
* Location: @atlaskit/icon
|
|
24
|
-
* Usage guidance: Single purpose - Reserved for video
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
|
|
25
25
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
26
26
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
27
27
|
*/
|
|
@@ -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::2657455b65981a3ffb405a9c0cc5ee56>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
21
21
|
*
|
|
22
22
|
* Category: single-purpose
|
|
23
23
|
* Location: @atlaskit/icon
|
|
24
|
-
* Usage guidance: Single purpose - Reserved for video
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
|
|
25
25
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
26
26
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
27
27
|
*/
|
|
@@ -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::b1e1a64477d8a2bd9bfaf4f0ba07f64c>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
21
21
|
*
|
|
22
22
|
* Category: single-purpose
|
|
23
23
|
* Location: @atlaskit/icon
|
|
24
|
-
* Usage guidance: Single purpose - Reserved for video
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
|
|
25
25
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
26
26
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
27
27
|
*/
|
package/core/scales.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::af2ad4668be05fb22a575cabc855c1bf>>
|
|
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 ScalesIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 1v2.998M.755 11.25h5.987m-2.99-6.247L6.75 11.25a3 3 0 1 1-6 0l3-6.25L8 4l4.25-1 3 6.25a3 3 0 1 1-6 0l3.002-6.248m2.996 6.248H9.253"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
ScalesIcon.displayName = 'ScalesIcon';
|
package/core/screen-plus.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::2eb43807607ad0a201e95ad8a68ce873>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -19,7 +19,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
19
19
|
* Icon: "ScreenPlus".
|
|
20
20
|
* Category: multi-purpose
|
|
21
21
|
* Location: @atlaskit/icon
|
|
22
|
-
* Usage guidance:
|
|
22
|
+
* Usage guidance: Known uses: TBC
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
package/core/send.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::578824dcb55b508774959facaa3d2955>>
|
|
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 SendIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M13.679 2.321 6.252 9.753M14.25 1.75l-13.5 5 5.5 3 3 5.5z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
SendIcon.displayName = 'SendIcon';
|
package/core/smart-link.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::1b2b3c2b0377d5fdfd2ef301d2ae1422>>
|
|
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 SmartLinkIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M5 6.5 2.75 8.75a3.182 3.182 0 0 0 4.168 4.79M11 9.5l2.25-2.25a3.182 3.182 0 0 0-4.168-4.
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M5 6.5 2.75 8.75a3.182 3.182 0 0 0 4.168 4.79M11 9.5l2.25-2.25a3.182 3.182 0 0 0-4.168-4.789m0 0A1.5 1.5 0 1 0 6.919 4.54a1.5 1.5 0 0 0 2.163-2.078ZM6.918 13.54a1.5 1.5 0 1 0 2.163-2.078 1.5 1.5 0 0 0-2.163 2.078Z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
SmartLinkIcon.displayName = 'SmartLinkIcon';
|
package/core/status-verified.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::c79209527496ded28415bb6d06619cad>>
|
|
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 StatusVerifiedIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M9.15
|
|
27
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M9.15.444a1.713 1.713 0 0 0-2.3 0L5.7 1.486a.2.2 0 0 1-.15.055L4 1.481a1.713 1.713 0 0 0-1.763 1.48l-.21 1.536a.2.2 0 0 1-.08.139l-1.226.95c-.696.54-.87 1.52-.4 2.266l.828 1.312c.03.047.04.104.027.159l-.328 1.515A1.713 1.713 0 0 0 2 12.831l1.477.474a.2.2 0 0 1 .123.103l.723 1.372c.41.78 1.346 1.12 2.162.787l1.436-.586a.2.2 0 0 1 .16 0l1.436.586a1.713 1.713 0 0 0 2.162-.787l.723-1.372a.2.2 0 0 1 .123-.103l1.477-.474a1.713 1.713 0 0 0 1.15-1.993l-.328-1.515a.2.2 0 0 1 .028-.159l.827-1.312a1.71 1.71 0 0 0-.4-2.266l-1.225-.95a.2.2 0 0 1-.08-.14l-.21-1.536A1.713 1.713 0 0 0 12 1.481l-1.55.06a.2.2 0 0 1-.15-.055zm3.176 5.036-1.152-.96L6.75 9.828 4.826 7.52l-1.152.96 2.5 3a.75.75 0 0 0 1.152 0z" clip-rule="evenodd"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
StatusVerifiedIcon.displayName = 'StatusVerifiedIcon';
|
package/core/video.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::7fcdc9d81a6b006402cdc2c95922b799>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -19,7 +19,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
19
19
|
* Icon: "Video".
|
|
20
20
|
* Category: single-purpose
|
|
21
21
|
* Location: @atlaskit/icon
|
|
22
|
-
* Usage guidance: Single purpose - Reserved for video
|
|
22
|
+
* Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
@@ -111,13 +111,14 @@ var Icon = exports.Icon = /*#__PURE__*/(0, _react.memo)(function Icon(props) {
|
|
|
111
111
|
"aria-hidden": label ? undefined : true
|
|
112
112
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
113
113
|
,
|
|
114
|
-
style:
|
|
114
|
+
style: {
|
|
115
115
|
'--icon-primary-color': primaryColor,
|
|
116
116
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
117
|
-
'--icon-secondary-color': secondaryColor || (0, _utils.getBackground)()
|
|
118
|
-
|
|
117
|
+
'--icon-secondary-color': secondaryColor || (0, _utils.getBackground)(),
|
|
118
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
119
119
|
margin: UNSAFE_margin
|
|
120
|
-
|
|
120
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
121
|
+
}
|
|
121
122
|
}, glyphProps, {
|
|
122
123
|
css: [iconStyles, baseHcmStyles, primaryColor === secondaryColor && primaryEqualsSecondaryHcmStyles, secondaryColor === 'transparent' && secondaryTransparentHcmStyles,
|
|
123
124
|
// NB: This can be resolved if this component, composes base SVG / and/or skeleton
|
|
@@ -4,10 +4,24 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
+
Object.defineProperty(exports, "coreIconMetadata", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _metadataCore.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
7
13
|
Object.defineProperty(exports, "default", {
|
|
8
14
|
enumerable: true,
|
|
9
15
|
get: function get() {
|
|
10
16
|
return _metadata.default;
|
|
11
17
|
}
|
|
12
18
|
});
|
|
13
|
-
|
|
19
|
+
Object.defineProperty(exports, "utilityIconMetadata", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function get() {
|
|
22
|
+
return _metadataUtility.default;
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
var _metadata = _interopRequireDefault(require("../metadata"));
|
|
26
|
+
var _metadataCore = _interopRequireDefault(require("../metadata-core"));
|
|
27
|
+
var _metadataUtility = _interopRequireDefault(require("../metadata-utility"));
|
|
@@ -9,7 +9,7 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* To change the format of this file, modify `UNSAFE_createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::c4b8aee35aca4112c22d6141c23cd08f>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -173,7 +173,7 @@ var metadata = {
|
|
|
173
173
|
package: '@atlaskit/icon/core/arrow-down-right',
|
|
174
174
|
type: 'core',
|
|
175
175
|
categorization: 'multi-purpose',
|
|
176
|
-
usage: '
|
|
176
|
+
usage: 'Known uses: TBC',
|
|
177
177
|
team: 'Design System Team'
|
|
178
178
|
},
|
|
179
179
|
'arrow-left': {
|
|
@@ -212,7 +212,7 @@ var metadata = {
|
|
|
212
212
|
package: '@atlaskit/icon/core/arrow-up-left',
|
|
213
213
|
type: 'core',
|
|
214
214
|
categorization: 'multi-purpose',
|
|
215
|
-
usage: '
|
|
215
|
+
usage: 'Known uses: TBC',
|
|
216
216
|
team: 'Design System Team'
|
|
217
217
|
},
|
|
218
218
|
'arrow-up-right': {
|
|
@@ -1363,7 +1363,7 @@ var metadata = {
|
|
|
1363
1363
|
team: 'Design System Team'
|
|
1364
1364
|
},
|
|
1365
1365
|
highlight: {
|
|
1366
|
-
keywords: ['highlight', 'icon', 'core', '
|
|
1366
|
+
keywords: ['highlight', 'icon', 'core', 'highlight', 'highlighter', 'stabilo', 'pen'],
|
|
1367
1367
|
componentName: 'HighlightIcon',
|
|
1368
1368
|
package: '@atlaskit/icon/core/highlight',
|
|
1369
1369
|
type: 'core',
|
|
@@ -2342,7 +2342,7 @@ var metadata = {
|
|
|
2342
2342
|
package: '@atlaskit/icon/core/screen-plus',
|
|
2343
2343
|
type: 'core',
|
|
2344
2344
|
categorization: 'multi-purpose',
|
|
2345
|
-
usage: '
|
|
2345
|
+
usage: 'Known uses: TBC',
|
|
2346
2346
|
team: 'Design System Team'
|
|
2347
2347
|
},
|
|
2348
2348
|
search: {
|
|
@@ -3077,7 +3077,7 @@ var metadata = {
|
|
|
3077
3077
|
oldName: ['media-services/video', 'hipchat/sd-video', 'vid-camera-on', 'video-circle', 'video-filled'],
|
|
3078
3078
|
type: 'core',
|
|
3079
3079
|
categorization: 'single-purpose',
|
|
3080
|
-
usage: 'Single purpose - Reserved for video
|
|
3080
|
+
usage: 'Single purpose - Reserved for representing video content across Atlassian and Loom.',
|
|
3081
3081
|
team: 'Design System Team'
|
|
3082
3082
|
},
|
|
3083
3083
|
'video-next': {
|
|
@@ -112,9 +112,7 @@ export const Icon = /*#__PURE__*/memo(function Icon(props) {
|
|
|
112
112
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
113
113
|
'--icon-secondary-color': secondaryColor || getBackground(),
|
|
114
114
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
115
|
-
|
|
116
|
-
margin: UNSAFE_margin
|
|
117
|
-
} : {})
|
|
115
|
+
margin: UNSAFE_margin
|
|
118
116
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
119
117
|
}
|
|
120
118
|
}, glyphProps, {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `UNSAFE_createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::c4b8aee35aca4112c22d6141c23cd08f>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -167,7 +167,7 @@ const metadata = {
|
|
|
167
167
|
package: '@atlaskit/icon/core/arrow-down-right',
|
|
168
168
|
type: 'core',
|
|
169
169
|
categorization: 'multi-purpose',
|
|
170
|
-
usage: '
|
|
170
|
+
usage: 'Known uses: TBC',
|
|
171
171
|
team: 'Design System Team'
|
|
172
172
|
},
|
|
173
173
|
'arrow-left': {
|
|
@@ -206,7 +206,7 @@ const metadata = {
|
|
|
206
206
|
package: '@atlaskit/icon/core/arrow-up-left',
|
|
207
207
|
type: 'core',
|
|
208
208
|
categorization: 'multi-purpose',
|
|
209
|
-
usage: '
|
|
209
|
+
usage: 'Known uses: TBC',
|
|
210
210
|
team: 'Design System Team'
|
|
211
211
|
},
|
|
212
212
|
'arrow-up-right': {
|
|
@@ -1357,7 +1357,7 @@ const metadata = {
|
|
|
1357
1357
|
team: 'Design System Team'
|
|
1358
1358
|
},
|
|
1359
1359
|
highlight: {
|
|
1360
|
-
keywords: ['highlight', 'icon', 'core', '
|
|
1360
|
+
keywords: ['highlight', 'icon', 'core', 'highlight', 'highlighter', 'stabilo', 'pen'],
|
|
1361
1361
|
componentName: 'HighlightIcon',
|
|
1362
1362
|
package: '@atlaskit/icon/core/highlight',
|
|
1363
1363
|
type: 'core',
|
|
@@ -2336,7 +2336,7 @@ const metadata = {
|
|
|
2336
2336
|
package: '@atlaskit/icon/core/screen-plus',
|
|
2337
2337
|
type: 'core',
|
|
2338
2338
|
categorization: 'multi-purpose',
|
|
2339
|
-
usage: '
|
|
2339
|
+
usage: 'Known uses: TBC',
|
|
2340
2340
|
team: 'Design System Team'
|
|
2341
2341
|
},
|
|
2342
2342
|
search: {
|
|
@@ -3071,7 +3071,7 @@ const metadata = {
|
|
|
3071
3071
|
oldName: ['media-services/video', 'hipchat/sd-video', 'vid-camera-on', 'video-circle', 'video-filled'],
|
|
3072
3072
|
type: 'core',
|
|
3073
3073
|
categorization: 'single-purpose',
|
|
3074
|
-
usage: 'Single purpose - Reserved for video
|
|
3074
|
+
usage: 'Single purpose - Reserved for representing video content across Atlassian and Loom.',
|
|
3075
3075
|
team: 'Design System Team'
|
|
3076
3076
|
},
|
|
3077
3077
|
'video-next': {
|
|
@@ -108,13 +108,14 @@ export var Icon = /*#__PURE__*/memo(function Icon(props) {
|
|
|
108
108
|
"aria-hidden": label ? undefined : true
|
|
109
109
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
110
110
|
,
|
|
111
|
-
style:
|
|
111
|
+
style: {
|
|
112
112
|
'--icon-primary-color': primaryColor,
|
|
113
113
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
114
|
-
'--icon-secondary-color': secondaryColor || getBackground()
|
|
115
|
-
|
|
114
|
+
'--icon-secondary-color': secondaryColor || getBackground(),
|
|
115
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
116
116
|
margin: UNSAFE_margin
|
|
117
|
-
|
|
117
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
118
|
+
}
|
|
118
119
|
}, glyphProps, {
|
|
119
120
|
css: [iconStyles, baseHcmStyles, primaryColor === secondaryColor && primaryEqualsSecondaryHcmStyles, secondaryColor === 'transparent' && secondaryTransparentHcmStyles,
|
|
120
121
|
// NB: This can be resolved if this component, composes base SVG / and/or skeleton
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `UNSAFE_createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::c4b8aee35aca4112c22d6141c23cd08f>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -167,7 +167,7 @@ var metadata = {
|
|
|
167
167
|
package: '@atlaskit/icon/core/arrow-down-right',
|
|
168
168
|
type: 'core',
|
|
169
169
|
categorization: 'multi-purpose',
|
|
170
|
-
usage: '
|
|
170
|
+
usage: 'Known uses: TBC',
|
|
171
171
|
team: 'Design System Team'
|
|
172
172
|
},
|
|
173
173
|
'arrow-left': {
|
|
@@ -206,7 +206,7 @@ var metadata = {
|
|
|
206
206
|
package: '@atlaskit/icon/core/arrow-up-left',
|
|
207
207
|
type: 'core',
|
|
208
208
|
categorization: 'multi-purpose',
|
|
209
|
-
usage: '
|
|
209
|
+
usage: 'Known uses: TBC',
|
|
210
210
|
team: 'Design System Team'
|
|
211
211
|
},
|
|
212
212
|
'arrow-up-right': {
|
|
@@ -1357,7 +1357,7 @@ var metadata = {
|
|
|
1357
1357
|
team: 'Design System Team'
|
|
1358
1358
|
},
|
|
1359
1359
|
highlight: {
|
|
1360
|
-
keywords: ['highlight', 'icon', 'core', '
|
|
1360
|
+
keywords: ['highlight', 'icon', 'core', 'highlight', 'highlighter', 'stabilo', 'pen'],
|
|
1361
1361
|
componentName: 'HighlightIcon',
|
|
1362
1362
|
package: '@atlaskit/icon/core/highlight',
|
|
1363
1363
|
type: 'core',
|
|
@@ -2336,7 +2336,7 @@ var metadata = {
|
|
|
2336
2336
|
package: '@atlaskit/icon/core/screen-plus',
|
|
2337
2337
|
type: 'core',
|
|
2338
2338
|
categorization: 'multi-purpose',
|
|
2339
|
-
usage: '
|
|
2339
|
+
usage: 'Known uses: TBC',
|
|
2340
2340
|
team: 'Design System Team'
|
|
2341
2341
|
},
|
|
2342
2342
|
search: {
|
|
@@ -3071,7 +3071,7 @@ var metadata = {
|
|
|
3071
3071
|
oldName: ['media-services/video', 'hipchat/sd-video', 'vid-camera-on', 'video-circle', 'video-filled'],
|
|
3072
3072
|
type: 'core',
|
|
3073
3073
|
categorization: 'single-purpose',
|
|
3074
|
-
usage: 'Single purpose - Reserved for video
|
|
3074
|
+
usage: 'Single purpose - Reserved for representing video content across Atlassian and Loom.',
|
|
3075
3075
|
team: 'Design System Team'
|
|
3076
3076
|
},
|
|
3077
3077
|
'video-next': {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `UNSAFE_createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::c4b8aee35aca4112c22d6141c23cd08f>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
interface metadata {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `UNSAFE_createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::c4b8aee35aca4112c22d6141c23cd08f>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
interface metadata {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/icon",
|
|
3
|
-
"version": "22.24.
|
|
3
|
+
"version": "22.24.2",
|
|
4
4
|
"description": "An icon is a visual representation of a command, device, directory, or common action.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -18,7 +18,46 @@
|
|
|
18
18
|
"team": "Design System Team",
|
|
19
19
|
"website": {
|
|
20
20
|
"name": "Icon",
|
|
21
|
-
"category": "Components"
|
|
21
|
+
"category": "Components",
|
|
22
|
+
"status": {
|
|
23
|
+
"type": "open-alpha",
|
|
24
|
+
"description": "These are new icons that will be released as part of Atlassian's visual refresh. Use the legacy icons for current product experiences.",
|
|
25
|
+
"actions": [
|
|
26
|
+
{
|
|
27
|
+
"text": "View legacy icons",
|
|
28
|
+
"href": "/components/icon/icon-legacy/"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"text": "Migration guide",
|
|
32
|
+
"href": "/components/icon/migration-guide/"
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"subPages": [
|
|
37
|
+
{
|
|
38
|
+
"title": "Icon (legacy)",
|
|
39
|
+
"id": "icon-legacy",
|
|
40
|
+
"sortKey": 1
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"title": "Icon tile",
|
|
44
|
+
"id": "icon-tile",
|
|
45
|
+
"status": {
|
|
46
|
+
"type": "open-alpha"
|
|
47
|
+
},
|
|
48
|
+
"sortKey": 2
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"title": "Custom icon (legacy)",
|
|
52
|
+
"id": "custom-icon",
|
|
53
|
+
"sortKey": 3
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"title": "Custom SVG",
|
|
57
|
+
"id": "custom-svg",
|
|
58
|
+
"sortKey": 4
|
|
59
|
+
}
|
|
60
|
+
]
|
|
22
61
|
},
|
|
23
62
|
"runReact18": true
|
|
24
63
|
},
|
|
@@ -27,7 +66,7 @@
|
|
|
27
66
|
},
|
|
28
67
|
"dependencies": {
|
|
29
68
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
30
|
-
"@atlaskit/tokens": "^2.
|
|
69
|
+
"@atlaskit/tokens": "^2.2.0",
|
|
31
70
|
"@babel/runtime": "^7.0.0",
|
|
32
71
|
"@emotion/react": "^11.7.1"
|
|
33
72
|
},
|
|
@@ -39,14 +78,14 @@
|
|
|
39
78
|
"@af/icon-build-process": "^2.2.0",
|
|
40
79
|
"@af/visual-regression": "*",
|
|
41
80
|
"@atlaskit/code": "^15.6.0",
|
|
42
|
-
"@atlaskit/ds-lib": "^3.
|
|
81
|
+
"@atlaskit/ds-lib": "^3.2.0",
|
|
43
82
|
"@atlaskit/logo": "^14.3.0",
|
|
44
|
-
"@atlaskit/primitives": "^13.
|
|
83
|
+
"@atlaskit/primitives": "^13.2.0",
|
|
45
84
|
"@atlaskit/ssr": "*",
|
|
46
85
|
"@atlaskit/textfield": "^6.5.0",
|
|
47
86
|
"@atlaskit/theme": "^14.0.0",
|
|
48
87
|
"@atlaskit/toggle": "^13.4.0",
|
|
49
|
-
"@atlaskit/tooltip": "^18.
|
|
88
|
+
"@atlaskit/tooltip": "^18.9.0",
|
|
50
89
|
"@atlaskit/visual-regression": "*",
|
|
51
90
|
"@babel/core": "7.24.9",
|
|
52
91
|
"@emotion/babel-preset-css-prop": "^10.0.7",
|