@atlaskit/icon 23.10.1 → 23.11.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 +41 -0
- package/core/align-center.d.ts +4 -1
- package/core/align-left.d.ts +4 -1
- package/core/align-right.d.ts +4 -1
- package/core/border-weight-medium.d.ts +4 -1
- package/core/border-weight-thick.d.ts +4 -1
- package/core/border-weight-thin.d.ts +4 -1
- package/core/content-align-center.d.ts +4 -1
- package/core/content-align-left.d.ts +4 -1
- package/core/content-align-right.d.ts +4 -1
- package/core/drag-handle-horizontal.d.ts +13 -0
- package/core/drag-handle-horizontal.js +31 -0
- package/core/drag-handle-vertical.d.ts +13 -0
- package/core/drag-handle-vertical.js +31 -0
- package/core/drag-handle.d.ts +4 -1
- package/core/drag-handle.js +2 -2
- package/core/migration/align-image-center--editor-align-image-center.d.ts +15 -0
- package/core/migration/align-image-center--editor-align-image-center.js +33 -0
- package/core/migration/align-image-left--editor-align-image-left.d.ts +15 -0
- package/core/migration/align-image-left--editor-align-image-left.js +33 -0
- package/core/migration/align-image-right--editor-align-image-right.d.ts +15 -0
- package/core/migration/align-image-right--editor-align-image-right.js +33 -0
- package/core/migration/align-text-center--editor-align-center.d.ts +15 -0
- package/core/migration/align-text-center--editor-align-center.js +33 -0
- package/core/migration/align-text-left--editor-align-left.d.ts +15 -0
- package/core/migration/align-text-left--editor-align-left.js +33 -0
- package/core/migration/align-text-right--editor-align-right.d.ts +15 -0
- package/core/migration/align-text-right--editor-align-right.js +33 -0
- package/core/migration/drag-handle--drag-handler.js +2 -2
- package/core/migration/drag-handle-vertical--drag-handler.d.ts +15 -0
- package/core/migration/drag-handle-vertical--drag-handler.js +33 -0
- package/core/migration/refresh.js +2 -2
- package/core/migration/stroke-weight-small--media-services-line.d.ts +15 -0
- package/core/migration/stroke-weight-small--media-services-line.js +33 -0
- package/core/refresh.js +3 -3
- package/dist/cjs/deprecated-core.js +57 -2
- package/dist/cjs/deprecated-utility.js +10 -2
- package/dist/cjs/metadata-core.js +80 -4
- package/dist/cjs/metadata-utility.js +26 -2
- package/dist/cjs/migration-map.js +48 -8
- package/dist/es2019/deprecated-core.js +57 -2
- package/dist/es2019/deprecated-utility.js +10 -2
- package/dist/es2019/metadata-core.js +80 -4
- package/dist/es2019/metadata-utility.js +26 -2
- package/dist/es2019/migration-map.js +48 -8
- package/dist/esm/deprecated-core.js +57 -2
- package/dist/esm/deprecated-utility.js +10 -2
- package/dist/esm/metadata-core.js +80 -4
- package/dist/esm/metadata-utility.js +26 -2
- package/dist/esm/migration-map.js +48 -8
- package/dist/types/deprecated-core.d.ts +1 -1
- package/dist/types/deprecated-utility.d.ts +1 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types/metadata-utility.d.ts +1 -1
- package/dist/types-ts4.5/deprecated-core.d.ts +1 -1
- package/dist/types-ts4.5/deprecated-utility.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-utility.d.ts +1 -1
- package/glyph/drag-handler.js +2 -2
- package/glyph/editor/align-center.js +2 -2
- package/glyph/editor/align-image-center.js +2 -2
- package/glyph/editor/align-image-left.js +2 -2
- package/glyph/editor/align-image-right.js +2 -2
- package/glyph/editor/align-left.js +2 -2
- package/glyph/editor/align-right.js +2 -2
- package/glyph/media-services/line.js +2 -2
- package/package.json +1 -1
- package/svgs/core/drag-handle-horizontal.svg +1 -0
- package/svgs/core/drag-handle-vertical.svg +1 -0
- package/svgs/core/refresh.svg +1 -1
- package/svgs/utility/drag-handle-horizontal.svg +1 -0
- package/svgs/utility/drag-handle-vertical.svg +1 -0
- package/utility/drag-handle-horizontal.d.ts +13 -0
- package/utility/drag-handle-horizontal.js +32 -0
- package/utility/drag-handle-vertical.d.ts +13 -0
- package/utility/drag-handle-vertical.js +32 -0
- package/utility/drag-handle.d.ts +4 -1
- package/utility/drag-handle.js +2 -2
- package/utility/migration/drag-handle--drag-handler.js +2 -2
- package/utility/migration/drag-handle-vertical--drag-handler.d.ts +15 -0
- package/utility/migration/drag-handle-vertical--drag-handler.js +33 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::0ffd025b8c1d5631ea349c5a2404b747>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const DragHandleVerticalIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default DragHandleVerticalIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::00cf753aab05b73546ecd78f6bc8ff56>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
"use strict";
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "__esModule", {
|
|
9
|
+
value: true
|
|
10
|
+
});
|
|
11
|
+
exports.default = void 0;
|
|
12
|
+
var _react = _interopRequireDefault(require("react"));
|
|
13
|
+
var _dragHandleVertical = _interopRequireDefault(require("@atlaskit/icon/core/drag-handle-vertical"));
|
|
14
|
+
var _dragHandler = _interopRequireDefault(require("@atlaskit/icon/glyph/drag-handler"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
18
|
+
*
|
|
19
|
+
* Migration Icon component for DragHandleVerticalIcon.
|
|
20
|
+
* This component is DragHandleVerticalIcon, with `UNSAFE_fallbackIcon` set to "DragHandlerIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: single-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for draggable elements, like rows.
|
|
25
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
26
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
27
|
+
*/
|
|
28
|
+
const DragHandleVerticalIcon = props => /*#__PURE__*/_react.default.createElement(_dragHandleVertical.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _dragHandler.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
DragHandleVerticalIcon.Name = 'DragHandleVerticalIconMigration';
|
|
33
|
+
var _default = exports.default = DragHandleVerticalIcon;
|
|
@@ -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::1e8917d3a5aac4b99b0f55b24958842a>>
|
|
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:
|
|
24
|
+
* Usage guidance: Reserved for reloading content.
|
|
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
|
*/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::218b34ae245bdec69bf1bc75f86ff9aa>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const StrokeWeightSmallIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default StrokeWeightSmallIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::7939c8f3fdd07450329c48be10d24e3c>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
"use strict";
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "__esModule", {
|
|
9
|
+
value: true
|
|
10
|
+
});
|
|
11
|
+
exports.default = void 0;
|
|
12
|
+
var _react = _interopRequireDefault(require("react"));
|
|
13
|
+
var _strokeWeightSmall = _interopRequireDefault(require("@atlaskit/icon/core/stroke-weight-small"));
|
|
14
|
+
var _line = _interopRequireDefault(require("@atlaskit/icon/glyph/media-services/line"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
18
|
+
*
|
|
19
|
+
* Migration Icon component for StrokeWeightSmallIcon.
|
|
20
|
+
* This component is StrokeWeightSmallIcon, with `UNSAFE_fallbackIcon` set to "MediaServicesLineIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: single-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Reserved for representing thin border stroke widths.
|
|
25
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
26
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
27
|
+
*/
|
|
28
|
+
const StrokeWeightSmallIcon = props => /*#__PURE__*/_react.default.createElement(_strokeWeightSmall.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _line.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
StrokeWeightSmallIcon.Name = 'StrokeWeightSmallIconMigration';
|
|
33
|
+
var _default = exports.default = StrokeWeightSmallIcon;
|
package/core/refresh.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::f7ed6beb9fac025198bce90a008b6791>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -19,12 +19,12 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
19
19
|
* Icon: "Refresh".
|
|
20
20
|
* Category: single-purpose
|
|
21
21
|
* Location: @atlaskit/icon
|
|
22
|
-
* Usage guidance:
|
|
22
|
+
* Usage guidance: Reserved for reloading content.
|
|
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
|
*/
|
|
26
26
|
const RefreshIcon = props => /*#__PURE__*/_react.default.createElement(_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.5 1.75c2 0 5.75 2.125 5.75 6.25s-4.24 6.24-4.24 6.24m-2.51.01c-2 0-5.75-2.125-5.75-6.25s4.26-6.26 4.26-6.26m.24 3.76V1.25H2m7.75 9.23v4.25H14"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
RefreshIcon.displayName = 'RefreshIcon';
|
|
@@ -9,8 +9,63 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::55fb779a9011f99fef900f3ab2221b1c>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
|
-
var deprecatedIcons = {
|
|
15
|
+
var deprecatedIcons = {
|
|
16
|
+
'@atlaskit/icon/core/align-center': {
|
|
17
|
+
message: 'The icon "align-center" is deprecated in favour of "align-text-center" from “@atlaskit/icon/core”'
|
|
18
|
+
},
|
|
19
|
+
'@atlaskit/icon/core/align-left': {
|
|
20
|
+
message: 'The icon "align-left" is deprecated in favour of "align-text-left" from “@atlaskit/icon/core”'
|
|
21
|
+
},
|
|
22
|
+
'@atlaskit/icon/core/align-right': {
|
|
23
|
+
message: 'The icon "align-right" is deprecated in favour of "align-text-right" from “@atlaskit/icon/core”'
|
|
24
|
+
},
|
|
25
|
+
'@atlaskit/icon/core/border-weight-medium': {
|
|
26
|
+
message: 'The icon "border-weight-medium" is deprecated in favour of "stroke-weight-medium" from “@atlaskit/icon/core”'
|
|
27
|
+
},
|
|
28
|
+
'@atlaskit/icon/core/border-weight-thick': {
|
|
29
|
+
message: 'The icon "border-weight-thick" is deprecated in favour of "stroke-weight-large" from “@atlaskit/icon/core”'
|
|
30
|
+
},
|
|
31
|
+
'@atlaskit/icon/core/border-weight-thin': {
|
|
32
|
+
message: 'The icon "border-weight-thin" is deprecated in favour of "stroke-weight-small" from “@atlaskit/icon/core”'
|
|
33
|
+
},
|
|
34
|
+
'@atlaskit/icon/core/content-align-center': {
|
|
35
|
+
message: 'The icon "content-align-center" is deprecated in favour of "align-image-center" from “@atlaskit/icon/core”'
|
|
36
|
+
},
|
|
37
|
+
'@atlaskit/icon/core/content-align-left': {
|
|
38
|
+
message: 'The icon "content-align-left" is deprecated in favour of "align-image-left" from “@atlaskit/icon/core”'
|
|
39
|
+
},
|
|
40
|
+
'@atlaskit/icon/core/content-align-right': {
|
|
41
|
+
message: 'The icon "content-align-right" is deprecated in favour of "align-image-right" from “@atlaskit/icon/core”'
|
|
42
|
+
},
|
|
43
|
+
'@atlaskit/icon/core/drag-handle': {
|
|
44
|
+
message: 'The icon "drag-handle" is deprecated in favour of "drag-handle-vertical" from “@atlaskit/icon/core”'
|
|
45
|
+
},
|
|
46
|
+
'@atlaskit/icon/core/migration/align-center--editor-align-center': {
|
|
47
|
+
message: 'The icon "align-center--editor-align-center" is deprecated in favour of "align-text-center--editor-align-center" from “@atlaskit/icon/core/migration”'
|
|
48
|
+
},
|
|
49
|
+
'@atlaskit/icon/core/migration/align-left--editor-align-left': {
|
|
50
|
+
message: 'The icon "align-left--editor-align-left" is deprecated in favour of "align-text-left--editor-align-left" from “@atlaskit/icon/core/migration”'
|
|
51
|
+
},
|
|
52
|
+
'@atlaskit/icon/core/migration/align-right--editor-align-right': {
|
|
53
|
+
message: 'The icon "align-right--editor-align-right" is deprecated in favour of "align-text-right--editor-align-right" from “@atlaskit/icon/core/migration”'
|
|
54
|
+
},
|
|
55
|
+
'@atlaskit/icon/core/migration/border-weight-thin--media-services-line': {
|
|
56
|
+
message: 'The icon "border-weight-thin--media-services-line" is deprecated in favour of "stroke-weight-small--media-services-line" from “@atlaskit/icon/core/migration”'
|
|
57
|
+
},
|
|
58
|
+
'@atlaskit/icon/core/migration/content-align-center--editor-align-image-center': {
|
|
59
|
+
message: 'The icon "content-align-center--editor-align-image-center" is deprecated in favour of "align-image-center--editor-align-image-center" from “@atlaskit/icon/core/migration”'
|
|
60
|
+
},
|
|
61
|
+
'@atlaskit/icon/core/migration/content-align-left--editor-align-image-left': {
|
|
62
|
+
message: 'The icon "content-align-left--editor-align-image-left" is deprecated in favour of "align-image-left--editor-align-image-left" from “@atlaskit/icon/core/migration”'
|
|
63
|
+
},
|
|
64
|
+
'@atlaskit/icon/core/migration/content-align-right--editor-align-image-right': {
|
|
65
|
+
message: 'The icon "content-align-right--editor-align-image-right" is deprecated in favour of "align-image-right--editor-align-image-right" from “@atlaskit/icon/core/migration”'
|
|
66
|
+
},
|
|
67
|
+
'@atlaskit/icon/core/migration/drag-handle--drag-handler': {
|
|
68
|
+
message: 'The icon "drag-handle--drag-handler" is deprecated in favour of "drag-handle-vertical--drag-handler" from “@atlaskit/icon/core/migration”'
|
|
69
|
+
}
|
|
70
|
+
};
|
|
16
71
|
var _default = exports.default = deprecatedIcons;
|
|
@@ -9,8 +9,16 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::8236f283e88f1b5269e1bb00e04aff39>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
|
-
var deprecatedIcons = {
|
|
15
|
+
var deprecatedIcons = {
|
|
16
|
+
'@atlaskit/icon/utility/drag-handle': {
|
|
17
|
+
message: 'The icon "drag-handle" is deprecated in favour of "drag-handle-vertical" from “@atlaskit/icon/utility”'
|
|
18
|
+
},
|
|
19
|
+
'@atlaskit/icon/utility/migration/drag-handle--drag-handler': {
|
|
20
|
+
message: 'The icon "drag-handle--drag-handler" is deprecated, Please refer to the changelog for guidance on how to migrate. https://atlassian.design/components/icon/changelog',
|
|
21
|
+
unfixable: true
|
|
22
|
+
}
|
|
23
|
+
};
|
|
16
24
|
var _default = exports.default = deprecatedIcons;
|
|
@@ -9,7 +9,7 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::a79b61e7d7891e9865d33932dc25db57>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -57,6 +57,11 @@ var metadata = {
|
|
|
57
57
|
package: '@atlaskit/icon/core/align-center',
|
|
58
58
|
oldName: ['editor/align-center'],
|
|
59
59
|
type: 'core',
|
|
60
|
+
replacement: {
|
|
61
|
+
name: 'align-text-center',
|
|
62
|
+
type: 'core',
|
|
63
|
+
location: '@atlaskit/icon'
|
|
64
|
+
},
|
|
60
65
|
categorization: 'multi-purpose',
|
|
61
66
|
usage: 'Multi purpose - Known uses: align text center, align center.',
|
|
62
67
|
team: 'Design System Team'
|
|
@@ -65,6 +70,7 @@ var metadata = {
|
|
|
65
70
|
keywords: ['align-image-center', 'alignimagecenter', 'icon', 'core', 'content', 'media', 'image', 'alignment', 'centre'],
|
|
66
71
|
componentName: 'AlignImageCenterIcon',
|
|
67
72
|
package: '@atlaskit/icon/core/align-image-center',
|
|
73
|
+
oldName: ['editor/align-image-center'],
|
|
68
74
|
type: 'core',
|
|
69
75
|
categorization: 'single-purpose',
|
|
70
76
|
usage: 'Single purpose - Reserved for center aligning media and content.',
|
|
@@ -74,6 +80,7 @@ var metadata = {
|
|
|
74
80
|
keywords: ['align-image-left', 'alignimageleft', 'icon', 'core', 'content', 'media', 'image', 'alignment', 'left'],
|
|
75
81
|
componentName: 'AlignImageLeftIcon',
|
|
76
82
|
package: '@atlaskit/icon/core/align-image-left',
|
|
83
|
+
oldName: ['editor/align-image-left'],
|
|
77
84
|
type: 'core',
|
|
78
85
|
categorization: 'single-purpose',
|
|
79
86
|
usage: 'Single purpose - Reserved for left aligning media and content.',
|
|
@@ -83,6 +90,7 @@ var metadata = {
|
|
|
83
90
|
keywords: ['align-image-right', 'alignimageright', 'icon', 'core', 'content', 'media', 'image', 'alignment', 'right'],
|
|
84
91
|
componentName: 'AlignImageRightIcon',
|
|
85
92
|
package: '@atlaskit/icon/core/align-image-right',
|
|
93
|
+
oldName: ['editor/align-image-right'],
|
|
86
94
|
type: 'core',
|
|
87
95
|
categorization: 'single-purpose',
|
|
88
96
|
usage: 'Single purpose - Reserved for right aligning media and content.',
|
|
@@ -94,6 +102,11 @@ var metadata = {
|
|
|
94
102
|
package: '@atlaskit/icon/core/align-left',
|
|
95
103
|
oldName: ['editor/align-left', 'overview'],
|
|
96
104
|
type: 'core',
|
|
105
|
+
replacement: {
|
|
106
|
+
name: 'align-text-left',
|
|
107
|
+
type: 'core',
|
|
108
|
+
location: '@atlaskit/icon'
|
|
109
|
+
},
|
|
97
110
|
categorization: 'multi-purpose',
|
|
98
111
|
usage: 'Multi purpose - Known uses: align text left, align content left, summary.',
|
|
99
112
|
team: 'Design System Team'
|
|
@@ -104,6 +117,11 @@ var metadata = {
|
|
|
104
117
|
package: '@atlaskit/icon/core/align-right',
|
|
105
118
|
oldName: ['editor/align-right'],
|
|
106
119
|
type: 'core',
|
|
120
|
+
replacement: {
|
|
121
|
+
name: 'align-text-right',
|
|
122
|
+
type: 'core',
|
|
123
|
+
location: '@atlaskit/icon'
|
|
124
|
+
},
|
|
107
125
|
categorization: 'multi-purpose',
|
|
108
126
|
usage: 'Multi purpose - Known uses: align text right, align content right.',
|
|
109
127
|
team: 'Design System Team'
|
|
@@ -112,6 +130,7 @@ var metadata = {
|
|
|
112
130
|
keywords: ['align-text-center', 'aligntextcenter', 'icon', 'core', 'alignment', 'text', 'content'],
|
|
113
131
|
componentName: 'AlignTextCenterIcon',
|
|
114
132
|
package: '@atlaskit/icon/core/align-text-center',
|
|
133
|
+
oldName: ['editor/align-center'],
|
|
115
134
|
type: 'core',
|
|
116
135
|
categorization: 'multi-purpose',
|
|
117
136
|
usage: 'Multi purpose - Known uses: align text center, align center.',
|
|
@@ -121,6 +140,7 @@ var metadata = {
|
|
|
121
140
|
keywords: ['align-text-left', 'aligntextleft', 'icon', 'core', 'alignment', 'text', 'content', 'summary'],
|
|
122
141
|
componentName: 'AlignTextLeftIcon',
|
|
123
142
|
package: '@atlaskit/icon/core/align-text-left',
|
|
143
|
+
oldName: ['editor/align-left'],
|
|
124
144
|
type: 'core',
|
|
125
145
|
categorization: 'multi-purpose',
|
|
126
146
|
usage: 'Multi purpose - Known uses: align text left, align content left, summary.',
|
|
@@ -130,6 +150,7 @@ var metadata = {
|
|
|
130
150
|
keywords: ['align-text-right', 'aligntextright', 'icon', 'core', 'alignment', 'text', 'content'],
|
|
131
151
|
componentName: 'AlignTextRightIcon',
|
|
132
152
|
package: '@atlaskit/icon/core/align-text-right',
|
|
153
|
+
oldName: ['editor/align-right'],
|
|
133
154
|
type: 'core',
|
|
134
155
|
categorization: 'multi-purpose',
|
|
135
156
|
usage: 'Multi purpose - Known uses: align text right, align content right.',
|
|
@@ -390,6 +411,11 @@ var metadata = {
|
|
|
390
411
|
componentName: 'BorderWeightMediumIcon',
|
|
391
412
|
package: '@atlaskit/icon/core/border-weight-medium',
|
|
392
413
|
type: 'core',
|
|
414
|
+
replacement: {
|
|
415
|
+
name: 'stroke-weight-medium',
|
|
416
|
+
type: 'core',
|
|
417
|
+
location: '@atlaskit/icon'
|
|
418
|
+
},
|
|
393
419
|
categorization: 'single-purpose',
|
|
394
420
|
usage: 'Reserved for representing medium border stroke widths.',
|
|
395
421
|
team: 'Editor'
|
|
@@ -399,6 +425,11 @@ var metadata = {
|
|
|
399
425
|
componentName: 'BorderWeightThickIcon',
|
|
400
426
|
package: '@atlaskit/icon/core/border-weight-thick',
|
|
401
427
|
type: 'core',
|
|
428
|
+
replacement: {
|
|
429
|
+
name: 'stroke-weight-large',
|
|
430
|
+
type: 'core',
|
|
431
|
+
location: '@atlaskit/icon'
|
|
432
|
+
},
|
|
402
433
|
categorization: 'single-purpose',
|
|
403
434
|
usage: 'Reserved for representing thick border stroke widths.',
|
|
404
435
|
team: 'Editor'
|
|
@@ -409,6 +440,11 @@ var metadata = {
|
|
|
409
440
|
package: '@atlaskit/icon/core/border-weight-thin',
|
|
410
441
|
oldName: ['media-services/line'],
|
|
411
442
|
type: 'core',
|
|
443
|
+
replacement: {
|
|
444
|
+
name: 'stroke-weight-small',
|
|
445
|
+
type: 'core',
|
|
446
|
+
location: '@atlaskit/icon'
|
|
447
|
+
},
|
|
412
448
|
categorization: 'single-purpose',
|
|
413
449
|
usage: 'Reserved for representing thin border stroke widths.',
|
|
414
450
|
team: 'Editor'
|
|
@@ -729,6 +765,11 @@ var metadata = {
|
|
|
729
765
|
package: '@atlaskit/icon/core/content-align-center',
|
|
730
766
|
oldName: ['editor/align-image-center'],
|
|
731
767
|
type: 'core',
|
|
768
|
+
replacement: {
|
|
769
|
+
name: 'align-image-center',
|
|
770
|
+
type: 'core',
|
|
771
|
+
location: '@atlaskit/icon'
|
|
772
|
+
},
|
|
732
773
|
categorization: 'single-purpose',
|
|
733
774
|
usage: 'Single purpose - Reserved for center aligning media and content.',
|
|
734
775
|
team: 'Design System Team'
|
|
@@ -739,6 +780,11 @@ var metadata = {
|
|
|
739
780
|
package: '@atlaskit/icon/core/content-align-left',
|
|
740
781
|
oldName: ['editor/align-image-left'],
|
|
741
782
|
type: 'core',
|
|
783
|
+
replacement: {
|
|
784
|
+
name: 'align-image-left',
|
|
785
|
+
type: 'core',
|
|
786
|
+
location: '@atlaskit/icon'
|
|
787
|
+
},
|
|
742
788
|
categorization: 'single-purpose',
|
|
743
789
|
usage: 'Single purpose - Reserved for left aligning media and content.',
|
|
744
790
|
team: 'Design System Team'
|
|
@@ -749,6 +795,11 @@ var metadata = {
|
|
|
749
795
|
package: '@atlaskit/icon/core/content-align-right',
|
|
750
796
|
oldName: ['editor/align-image-right'],
|
|
751
797
|
type: 'core',
|
|
798
|
+
replacement: {
|
|
799
|
+
name: 'align-image-right',
|
|
800
|
+
type: 'core',
|
|
801
|
+
location: '@atlaskit/icon'
|
|
802
|
+
},
|
|
752
803
|
categorization: 'single-purpose',
|
|
753
804
|
usage: 'Single purpose - Reserved for right aligning media and content.',
|
|
754
805
|
team: 'Design System Team'
|
|
@@ -972,8 +1023,32 @@ var metadata = {
|
|
|
972
1023
|
package: '@atlaskit/icon/core/drag-handle',
|
|
973
1024
|
oldName: ['drag-handler'],
|
|
974
1025
|
type: 'core',
|
|
1026
|
+
replacement: {
|
|
1027
|
+
name: 'drag-handle-vertical',
|
|
1028
|
+
type: 'core',
|
|
1029
|
+
location: '@atlaskit/icon'
|
|
1030
|
+
},
|
|
975
1031
|
categorization: 'single-purpose',
|
|
976
|
-
usage: 'Single purpose - Reserved for draggable elements.',
|
|
1032
|
+
usage: 'Single purpose - Reserved for draggable elements, like rows.',
|
|
1033
|
+
team: 'Design System Team'
|
|
1034
|
+
},
|
|
1035
|
+
'drag-handle-horizontal': {
|
|
1036
|
+
keywords: ['drag-handle-horizontal', 'draghandlehorizontal', 'icon', 'core', 'drag handler', 'drag dots', 'reorder', 'move'],
|
|
1037
|
+
componentName: 'DragHandleHorizontalIcon',
|
|
1038
|
+
package: '@atlaskit/icon/core/drag-handle-horizontal',
|
|
1039
|
+
type: 'core',
|
|
1040
|
+
categorization: 'single-purpose',
|
|
1041
|
+
usage: 'Single purpose - Reserved for draggle elements, like columns.',
|
|
1042
|
+
team: 'Design System Team'
|
|
1043
|
+
},
|
|
1044
|
+
'drag-handle-vertical': {
|
|
1045
|
+
keywords: ['drag-handle-vertical', 'draghandlevertical', 'icon', 'core', 'drag handler', 'drag dots', 'reorder', 'move'],
|
|
1046
|
+
componentName: 'DragHandleVerticalIcon',
|
|
1047
|
+
package: '@atlaskit/icon/core/drag-handle-vertical',
|
|
1048
|
+
oldName: ['drag-handler'],
|
|
1049
|
+
type: 'core',
|
|
1050
|
+
categorization: 'single-purpose',
|
|
1051
|
+
usage: 'Single purpose - Reserved for draggable elements, like rows.',
|
|
977
1052
|
team: 'Design System Team'
|
|
978
1053
|
},
|
|
979
1054
|
edit: {
|
|
@@ -2314,13 +2389,13 @@ var metadata = {
|
|
|
2314
2389
|
team: 'Design System Team'
|
|
2315
2390
|
},
|
|
2316
2391
|
refresh: {
|
|
2317
|
-
keywords: ['refresh', 'cycle', 'icon', 'core', '
|
|
2392
|
+
keywords: ['refresh', 'cycle', 'icon', 'core', 'refresh', 'reload', 'update', 'circular arrows'],
|
|
2318
2393
|
componentName: 'RefreshIcon',
|
|
2319
2394
|
package: '@atlaskit/icon/core/refresh',
|
|
2320
2395
|
oldName: ['refresh'],
|
|
2321
2396
|
type: 'core',
|
|
2322
2397
|
categorization: 'single-purpose',
|
|
2323
|
-
usage: '
|
|
2398
|
+
usage: 'Reserved for reloading content.',
|
|
2324
2399
|
team: 'Design System Team'
|
|
2325
2400
|
},
|
|
2326
2401
|
release: {
|
|
@@ -2725,6 +2800,7 @@ var metadata = {
|
|
|
2725
2800
|
keywords: ['stroke-weight-small', 'strokeweightsmall', 'icon', 'core', 'border', 'weight', 'thickness', 'stroke', 'confluence', 'editor', 'whiteboards', 'thin'],
|
|
2726
2801
|
componentName: 'StrokeWeightSmallIcon',
|
|
2727
2802
|
package: '@atlaskit/icon/core/stroke-weight-small',
|
|
2803
|
+
oldName: ['media-services/line'],
|
|
2728
2804
|
type: 'core',
|
|
2729
2805
|
categorization: 'single-purpose',
|
|
2730
2806
|
usage: 'Reserved for representing thin border stroke widths.',
|
|
@@ -9,7 +9,7 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::34c18c6b3305be3ce8bfc2ad0683cdaa>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -170,8 +170,32 @@ var metadata = {
|
|
|
170
170
|
package: '@atlaskit/icon/utility/drag-handle',
|
|
171
171
|
oldName: ['drag-handler'],
|
|
172
172
|
type: 'utility',
|
|
173
|
+
replacement: {
|
|
174
|
+
name: 'drag-handle-vertical',
|
|
175
|
+
type: 'utility',
|
|
176
|
+
location: '@atlaskit/icon'
|
|
177
|
+
},
|
|
173
178
|
categorization: 'utility',
|
|
174
|
-
usage: 'Reserved for draggable elements.',
|
|
179
|
+
usage: 'Reserved for draggable elements, like rows.',
|
|
180
|
+
team: 'Design System Team'
|
|
181
|
+
},
|
|
182
|
+
'drag-handle-horizontal': {
|
|
183
|
+
keywords: ['drag-handle-horizontal', 'draghandlehorizontal', 'icon', 'utility', 'drag handler', 'drag dots', 'reorder', 'move'],
|
|
184
|
+
componentName: 'DragHandleHorizontalIcon',
|
|
185
|
+
package: '@atlaskit/icon/utility/drag-handle-horizontal',
|
|
186
|
+
type: 'utility',
|
|
187
|
+
categorization: 'utility',
|
|
188
|
+
usage: 'Reserved for draggable elements, like columns.',
|
|
189
|
+
team: 'Design System Team'
|
|
190
|
+
},
|
|
191
|
+
'drag-handle-vertical': {
|
|
192
|
+
keywords: ['drag-handle-vertical', 'draghandlevertical', 'icon', 'utility', 'drag handler', 'drag dots', 'reorder', 'move'],
|
|
193
|
+
componentName: 'DragHandleVerticalIcon',
|
|
194
|
+
package: '@atlaskit/icon/utility/drag-handle-vertical',
|
|
195
|
+
oldName: ['drag-handler'],
|
|
196
|
+
type: 'utility',
|
|
197
|
+
categorization: 'utility',
|
|
198
|
+
usage: 'Reserved for draggable elements, like rows.',
|
|
175
199
|
team: 'Design System Team'
|
|
176
200
|
},
|
|
177
201
|
error: {
|
|
@@ -90,10 +90,15 @@ var migrationMap = {
|
|
|
90
90
|
},
|
|
91
91
|
'editor/align-center': {
|
|
92
92
|
newIcon: {
|
|
93
|
-
name: 'align-center',
|
|
93
|
+
name: 'align-text-center',
|
|
94
94
|
type: 'core',
|
|
95
95
|
package: '@atlaskit/icon'
|
|
96
96
|
},
|
|
97
|
+
additionalIcons: [{
|
|
98
|
+
name: 'align-center',
|
|
99
|
+
type: 'core',
|
|
100
|
+
package: '@atlaskit/icon'
|
|
101
|
+
}],
|
|
97
102
|
sizeGuidance: {
|
|
98
103
|
small: 'swap',
|
|
99
104
|
medium: 'swap',
|
|
@@ -103,10 +108,15 @@ var migrationMap = {
|
|
|
103
108
|
},
|
|
104
109
|
'editor/align-left': {
|
|
105
110
|
newIcon: {
|
|
106
|
-
name: 'align-left',
|
|
111
|
+
name: 'align-text-left',
|
|
107
112
|
type: 'core',
|
|
108
113
|
package: '@atlaskit/icon'
|
|
109
114
|
},
|
|
115
|
+
additionalIcons: [{
|
|
116
|
+
name: 'align-left',
|
|
117
|
+
type: 'core',
|
|
118
|
+
package: '@atlaskit/icon'
|
|
119
|
+
}],
|
|
110
120
|
sizeGuidance: {
|
|
111
121
|
small: 'swap',
|
|
112
122
|
medium: 'swap',
|
|
@@ -116,10 +126,15 @@ var migrationMap = {
|
|
|
116
126
|
},
|
|
117
127
|
'editor/align-right': {
|
|
118
128
|
newIcon: {
|
|
119
|
-
name: 'align-right',
|
|
129
|
+
name: 'align-text-right',
|
|
120
130
|
type: 'core',
|
|
121
131
|
package: '@atlaskit/icon'
|
|
122
132
|
},
|
|
133
|
+
additionalIcons: [{
|
|
134
|
+
name: 'align-right',
|
|
135
|
+
type: 'core',
|
|
136
|
+
package: '@atlaskit/icon'
|
|
137
|
+
}],
|
|
123
138
|
sizeGuidance: {
|
|
124
139
|
small: 'swap',
|
|
125
140
|
medium: 'swap',
|
|
@@ -1133,10 +1148,15 @@ var migrationMap = {
|
|
|
1133
1148
|
},
|
|
1134
1149
|
'drag-handler': {
|
|
1135
1150
|
newIcon: {
|
|
1136
|
-
name: 'drag-handle',
|
|
1151
|
+
name: 'drag-handle-vertical',
|
|
1137
1152
|
type: 'core',
|
|
1138
1153
|
package: '@atlaskit/icon'
|
|
1139
1154
|
},
|
|
1155
|
+
additionalIcons: [{
|
|
1156
|
+
name: 'drag-handle',
|
|
1157
|
+
type: 'core',
|
|
1158
|
+
package: '@atlaskit/icon'
|
|
1159
|
+
}],
|
|
1140
1160
|
sizeGuidance: {
|
|
1141
1161
|
small: 'swap',
|
|
1142
1162
|
medium: 'swap',
|
|
@@ -1209,10 +1229,15 @@ var migrationMap = {
|
|
|
1209
1229
|
},
|
|
1210
1230
|
'editor/align-image-center': {
|
|
1211
1231
|
newIcon: {
|
|
1212
|
-
name: '
|
|
1232
|
+
name: 'align-image-center',
|
|
1213
1233
|
type: 'core',
|
|
1214
1234
|
package: '@atlaskit/icon'
|
|
1215
1235
|
},
|
|
1236
|
+
additionalIcons: [{
|
|
1237
|
+
name: 'content-align-center',
|
|
1238
|
+
type: 'core',
|
|
1239
|
+
package: '@atlaskit/icon'
|
|
1240
|
+
}],
|
|
1216
1241
|
sizeGuidance: {
|
|
1217
1242
|
small: 'swap-slight-visual-change',
|
|
1218
1243
|
medium: 'swap-slight-visual-change',
|
|
@@ -1222,10 +1247,15 @@ var migrationMap = {
|
|
|
1222
1247
|
},
|
|
1223
1248
|
'editor/align-image-left': {
|
|
1224
1249
|
newIcon: {
|
|
1225
|
-
name: '
|
|
1250
|
+
name: 'align-image-left',
|
|
1226
1251
|
type: 'core',
|
|
1227
1252
|
package: '@atlaskit/icon'
|
|
1228
1253
|
},
|
|
1254
|
+
additionalIcons: [{
|
|
1255
|
+
name: 'content-align-left',
|
|
1256
|
+
type: 'core',
|
|
1257
|
+
package: '@atlaskit/icon'
|
|
1258
|
+
}],
|
|
1229
1259
|
sizeGuidance: {
|
|
1230
1260
|
small: 'swap-slight-visual-change',
|
|
1231
1261
|
medium: 'swap-slight-visual-change',
|
|
@@ -1235,10 +1265,15 @@ var migrationMap = {
|
|
|
1235
1265
|
},
|
|
1236
1266
|
'editor/align-image-right': {
|
|
1237
1267
|
newIcon: {
|
|
1238
|
-
name: '
|
|
1268
|
+
name: 'align-image-right',
|
|
1239
1269
|
type: 'core',
|
|
1240
1270
|
package: '@atlaskit/icon'
|
|
1241
1271
|
},
|
|
1272
|
+
additionalIcons: [{
|
|
1273
|
+
name: 'content-align-right',
|
|
1274
|
+
type: 'core',
|
|
1275
|
+
package: '@atlaskit/icon'
|
|
1276
|
+
}],
|
|
1242
1277
|
sizeGuidance: {
|
|
1243
1278
|
small: 'swap-slight-visual-change',
|
|
1244
1279
|
medium: 'swap-slight-visual-change',
|
|
@@ -2990,10 +3025,15 @@ var migrationMap = {
|
|
|
2990
3025
|
},
|
|
2991
3026
|
'media-services/line': {
|
|
2992
3027
|
newIcon: {
|
|
2993
|
-
name: '
|
|
3028
|
+
name: 'stroke-weight-small',
|
|
2994
3029
|
type: 'core',
|
|
2995
3030
|
package: '@atlaskit/icon'
|
|
2996
3031
|
},
|
|
3032
|
+
additionalIcons: [{
|
|
3033
|
+
name: 'border-weight-thin',
|
|
3034
|
+
type: 'core',
|
|
3035
|
+
package: '@atlaskit/icon'
|
|
3036
|
+
}],
|
|
2997
3037
|
sizeGuidance: {
|
|
2998
3038
|
small: 'swap-slight-visual-change',
|
|
2999
3039
|
medium: 'swap-slight-visual-change',
|