@atlaskit/icon 22.15.0 → 22.15.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 +232 -1
- package/core/bulleted-list.d.ts +14 -0
- package/core/bulleted-list.js +32 -0
- package/core/collapse.d.ts +14 -0
- package/core/collapse.js +32 -0
- package/core/expand.d.ts +14 -0
- package/core/expand.js +32 -0
- package/core/migration/app-switcher--switcher.d.ts +14 -0
- package/core/migration/app-switcher--switcher.js +33 -0
- package/core/migration/bulleted-list--bullet-list.d.ts +14 -0
- package/core/migration/bulleted-list--bullet-list.js +33 -0
- package/core/migration/bulleted-list--editor-bullet-list.d.ts +14 -0
- package/core/migration/bulleted-list--editor-bullet-list.js +33 -0
- package/core/migration/check-circle.d.ts +14 -0
- package/core/migration/check-circle.js +33 -0
- package/core/migration/collapse--editor-collapse.d.ts +14 -0
- package/core/migration/collapse--editor-collapse.js +33 -0
- package/core/migration/expand--editor-expand.d.ts +14 -0
- package/core/migration/expand--editor-expand.js +33 -0
- package/core/migration/expand--editor-image-resize.d.ts +14 -0
- package/core/migration/expand--editor-image-resize.js +33 -0
- package/core/migration/expand--image-resize.d.ts +14 -0
- package/core/migration/expand--image-resize.js +33 -0
- package/core/migration/maximize--media-services-actual-size.d.ts +14 -0
- package/core/migration/maximize--media-services-actual-size.js +33 -0
- package/core/migration/minimize--media-services-fit-to-page.d.ts +14 -0
- package/core/migration/minimize--media-services-fit-to-page.js +33 -0
- package/core/migration/minimize--vid-full-screen-off.d.ts +14 -0
- package/core/migration/minimize--vid-full-screen-off.js +33 -0
- package/core/migration/phone--hipchat-dial-out.d.ts +14 -0
- package/core/migration/phone--hipchat-dial-out.js +33 -0
- package/dist/cjs/metadata-core.js +37 -5
- package/dist/cjs/metadata-utility.js +2 -2
- package/dist/cjs/migration-map.js +60 -0
- package/dist/es2019/metadata-core.js +37 -5
- package/dist/es2019/metadata-utility.js +2 -2
- package/dist/es2019/migration-map.js +60 -0
- package/dist/esm/metadata-core.js +37 -5
- package/dist/esm/metadata-utility.js +2 -2
- package/dist/esm/migration-map.js +60 -0
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types/metadata-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/package.json +6 -4
- package/utility/migration/check-circle--editor-success.d.ts +14 -0
- package/utility/migration/check-circle--editor-success.js +33 -0
- package/utility/migration/check-circle.d.ts +14 -0
- package/utility/migration/check-circle.js +33 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::8cfa72e485bead64a4cde147684c2930>>
|
|
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 _expand = _interopRequireDefault(require("@atlaskit/icon/core/expand"));
|
|
14
|
+
var _expand2 = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/expand"));
|
|
15
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
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 ExpandIcon.
|
|
20
|
+
* This component is ExpandIcon, with `UNSAFE_fallbackIcon` set to "EditorExpandIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: single-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for resizing screens, panels, modals, or media to its maximum size.
|
|
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 ExpandIcon = props => /*#__PURE__*/_react.default.createElement(_expand.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _expand2.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
ExpandIcon.Name = 'ExpandIconMigration';
|
|
33
|
+
var _default = exports.default = ExpandIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e5714a7049b81ef529ef5eddbb83df01>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const ExpandIconMigration: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default ExpandIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a46de86c63d1433ee9cdbe1a8931d899>>
|
|
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 _expand = _interopRequireDefault(require("@atlaskit/icon/core/expand"));
|
|
14
|
+
var _imageResize = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/image-resize"));
|
|
15
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
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 ExpandIcon.
|
|
20
|
+
* This component is ExpandIcon, with `UNSAFE_fallbackIcon` set to "EditorImageResizeIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: single-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for resizing screens, panels, modals, or media to its maximum size.
|
|
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 ExpandIcon = props => /*#__PURE__*/_react.default.createElement(_expand.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _imageResize.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
ExpandIcon.Name = 'ExpandIconMigration';
|
|
33
|
+
var _default = exports.default = ExpandIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e5714a7049b81ef529ef5eddbb83df01>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const ExpandIconMigration: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default ExpandIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::c85009d6b5a99552d9a4754551d06bad>>
|
|
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 _expand = _interopRequireDefault(require("@atlaskit/icon/core/expand"));
|
|
14
|
+
var _imageResize = _interopRequireDefault(require("@atlaskit/icon/glyph/image-resize"));
|
|
15
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
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 ExpandIcon.
|
|
20
|
+
* This component is ExpandIcon, with `UNSAFE_fallbackIcon` set to "ImageResizeIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: single-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for resizing screens, panels, modals, or media to its maximum size.
|
|
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 ExpandIcon = props => /*#__PURE__*/_react.default.createElement(_expand.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _imageResize.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
ExpandIcon.Name = 'ExpandIconMigration';
|
|
33
|
+
var _default = exports.default = ExpandIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::fe663a47a6a6502b424f9712599e8331>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const MaximizeIconMigration: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default MaximizeIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::1853ab363a4ba6b7615dce1957636447>>
|
|
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 _maximize = _interopRequireDefault(require("@atlaskit/icon/core/grow-diagonal"));
|
|
14
|
+
var _actualSize = _interopRequireDefault(require("@atlaskit/icon/glyph/media-services/actual-size"));
|
|
15
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
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 MaximizeIcon.
|
|
20
|
+
* This component is MaximizeIcon, with `UNSAFE_fallbackIcon` set to "MediaServicesActualSizeIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: single-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for resizing screens, panels, modals, or media to its maximum size.
|
|
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 MaximizeIcon = props => /*#__PURE__*/_react.default.createElement(_maximize.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _actualSize.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
MaximizeIcon.Name = 'MaximizeIconMigration';
|
|
33
|
+
var _default = exports.default = MaximizeIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::870ee05f485bb7ca7260c7baa20d47a8>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const MinimizeIconMigration: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default MinimizeIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::fcaad35facab6ccaf069e1472716e009>>
|
|
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 _minimize = _interopRequireDefault(require("@atlaskit/icon/core/shrink-diagonal"));
|
|
14
|
+
var _fitToPage = _interopRequireDefault(require("@atlaskit/icon/glyph/media-services/fit-to-page"));
|
|
15
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
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 MinimizeIcon.
|
|
20
|
+
* This component is MinimizeIcon, with `UNSAFE_fallbackIcon` set to "MediaServicesFitToPageIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: single-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for minimizing or docking modals to the bottom of the viewport.
|
|
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 MinimizeIcon = props => /*#__PURE__*/_react.default.createElement(_minimize.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _fitToPage.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
MinimizeIcon.Name = 'MinimizeIconMigration';
|
|
33
|
+
var _default = exports.default = MinimizeIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::870ee05f485bb7ca7260c7baa20d47a8>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const MinimizeIconMigration: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default MinimizeIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::8ed4716b8a05bc02657493d13510696d>>
|
|
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 _minimize = _interopRequireDefault(require("@atlaskit/icon/core/shrink-diagonal"));
|
|
14
|
+
var _vidFullScreenOff = _interopRequireDefault(require("@atlaskit/icon/glyph/vid-full-screen-off"));
|
|
15
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
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 MinimizeIcon.
|
|
20
|
+
* This component is MinimizeIcon, with `UNSAFE_fallbackIcon` set to "VidFullScreenOffIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: single-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Single purpose - Reserved for minimizing or docking modals to the bottom of the viewport.
|
|
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 MinimizeIcon = props => /*#__PURE__*/_react.default.createElement(_minimize.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _vidFullScreenOff.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
MinimizeIcon.Name = 'MinimizeIconMigration';
|
|
33
|
+
var _default = exports.default = MinimizeIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::1dcdbb3bae44709bcbe24731dde48c64>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const PhoneIconMigration: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default PhoneIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a1a33ceac2a9be88c821ef8854ad5a71>>
|
|
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 _phone = _interopRequireDefault(require("@atlaskit/icon/core/phone"));
|
|
14
|
+
var _dialOut = _interopRequireDefault(require("@atlaskit/icon/glyph/hipchat/dial-out"));
|
|
15
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
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 PhoneIcon.
|
|
20
|
+
* This component is PhoneIcon, with `UNSAFE_fallbackIcon` set to "HipchatDialOutIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: multi-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Multi purpose - Known uses: call us, phone number input.
|
|
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 PhoneIcon = props => /*#__PURE__*/_react.default.createElement(_phone.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _dialOut.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
PhoneIcon.Name = 'PhoneIconMigration';
|
|
33
|
+
var _default = exports.default = PhoneIcon;
|
|
@@ -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::a1b62bf6f89207d8d697a50949119712>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -105,7 +105,7 @@ var metadata = {
|
|
|
105
105
|
keywords: ['app-switcher', 'appswitcher', 'icon', 'core', 'application switcher', 'change product', 'switch product', 'product switcher'],
|
|
106
106
|
componentName: 'AppSwitcherIcon',
|
|
107
107
|
package: '@atlaskit/icon/core/app-switcher',
|
|
108
|
-
oldName: ['app-switcher'],
|
|
108
|
+
oldName: ['app-switcher', 'switcher'],
|
|
109
109
|
type: 'core',
|
|
110
110
|
categorization: 'single-purpose',
|
|
111
111
|
usage: 'Single purpose - Reserved for app switcher in global product navigation.',
|
|
@@ -307,6 +307,16 @@ var metadata = {
|
|
|
307
307
|
usage: 'Multi purpose - Known uses: Request types in JSM, bugs in Jira.',
|
|
308
308
|
team: 'Design System Team'
|
|
309
309
|
},
|
|
310
|
+
'bulleted-list': {
|
|
311
|
+
keywords: ['bulleted-list', 'bulletedlist', 'icon', 'core', 'bullets', 'unordered list'],
|
|
312
|
+
componentName: 'BulletedListIcon',
|
|
313
|
+
package: '@atlaskit/icon/core/bulleted-list',
|
|
314
|
+
oldName: ['bullet-list', 'editor/bullet-list'],
|
|
315
|
+
type: 'core',
|
|
316
|
+
categorization: 'multi-purpose',
|
|
317
|
+
usage: 'Multi purpose - Known uses: bulleted lists, view all.',
|
|
318
|
+
team: 'Design System Team'
|
|
319
|
+
},
|
|
310
320
|
calendar: {
|
|
311
321
|
keywords: ['calendar', 'date', 'icon', 'core', 'date', 'month', 'day', 'year', 'jira status'],
|
|
312
322
|
componentName: 'CalendarIcon',
|
|
@@ -397,7 +407,7 @@ var metadata = {
|
|
|
397
407
|
keywords: ['check-circle', 'checkcircle', 'tick', 'icon', 'core', 'tick', 'yes', 'completed', 'filled'],
|
|
398
408
|
componentName: 'CheckCircleIcon',
|
|
399
409
|
package: '@atlaskit/icon/core/check-circle',
|
|
400
|
-
oldName: ['check-circle-outline', 'emoji/productivity'],
|
|
410
|
+
oldName: ['check-circle', 'check-circle-outline', 'emoji/productivity'],
|
|
401
411
|
type: 'core',
|
|
402
412
|
categorization: 'multi-purpose',
|
|
403
413
|
usage: 'Multi purpose - Known uses: completed items, productivity emoji category.',
|
|
@@ -482,6 +492,16 @@ var metadata = {
|
|
|
482
492
|
usage: 'Multi purpose - Known uses: deployments in Jira.',
|
|
483
493
|
team: 'Design System Team'
|
|
484
494
|
},
|
|
495
|
+
collapse: {
|
|
496
|
+
keywords: ['collapse', 'icon', 'core', 'contract', 'width', 'horizontal arrows'],
|
|
497
|
+
componentName: 'CollapseIcon',
|
|
498
|
+
package: '@atlaskit/icon/core/collapse',
|
|
499
|
+
oldName: ['editor/collapse'],
|
|
500
|
+
type: 'core',
|
|
501
|
+
categorization: 'single-purpose',
|
|
502
|
+
usage: 'Single purpose - Reserved for contracting or reducing the width of an element.',
|
|
503
|
+
team: 'Design System Team'
|
|
504
|
+
},
|
|
485
505
|
'collapse-horizontal': {
|
|
486
506
|
keywords: ['collapse-horizontal', 'collapsehorizontal', 'icon', 'core', 'collapse', 'width', 'horizontal arrows'],
|
|
487
507
|
componentName: 'CollapseHorizontalIcon',
|
|
@@ -534,7 +554,7 @@ var metadata = {
|
|
|
534
554
|
keywords: ['compass', 'icon', 'core', 'template'],
|
|
535
555
|
componentName: 'CompassIcon',
|
|
536
556
|
package: '@atlaskit/icon/core/compass',
|
|
537
|
-
oldName: ['discover
|
|
557
|
+
oldName: ['discover'],
|
|
538
558
|
type: 'core',
|
|
539
559
|
categorization: 'multi-purpose',
|
|
540
560
|
usage: 'Multi purpose - Known uses: templates.',
|
|
@@ -841,6 +861,16 @@ var metadata = {
|
|
|
841
861
|
usage: 'Single purpose - Reserved for when there is an error.',
|
|
842
862
|
team: 'Design System Team'
|
|
843
863
|
},
|
|
864
|
+
expand: {
|
|
865
|
+
keywords: ['expand', 'icon', 'core', 'diagonal', 'resize', 'enlarge'],
|
|
866
|
+
componentName: 'ExpandIcon',
|
|
867
|
+
package: '@atlaskit/icon/core/expand',
|
|
868
|
+
oldName: ['editor/expand', 'editor/image-resize', 'image-resize'],
|
|
869
|
+
type: 'core',
|
|
870
|
+
categorization: 'single-purpose',
|
|
871
|
+
usage: 'Single purpose - Reserved for resizing screens, panels, modals, or media to its maximum size.',
|
|
872
|
+
team: 'Design System Team'
|
|
873
|
+
},
|
|
844
874
|
'expand-horizontal': {
|
|
845
875
|
keywords: ['expand-horizontal', 'expandhorizontal', 'icon', 'core', 'expand', 'width', 'horizontal arrows', 'maximum width', 'stretch', 'fit'],
|
|
846
876
|
componentName: 'ExpandHorizontalIcon',
|
|
@@ -1390,7 +1420,7 @@ var metadata = {
|
|
|
1390
1420
|
keywords: ['maximize', 'icon', 'core', 'diagonal', 'resize', 'enlarge'],
|
|
1391
1421
|
componentName: 'MaximizeIcon',
|
|
1392
1422
|
package: '@atlaskit/icon/core/maximize',
|
|
1393
|
-
oldName: ['editor/image-resize', 'image-resize'],
|
|
1423
|
+
oldName: ['editor/image-resize', 'image-resize', 'media-services/actual-size'],
|
|
1394
1424
|
type: 'core',
|
|
1395
1425
|
categorization: 'single-purpose',
|
|
1396
1426
|
usage: 'Single purpose - Reserved for resizing screens, panels, modals, or media to its maximum size.',
|
|
@@ -1457,6 +1487,7 @@ var metadata = {
|
|
|
1457
1487
|
keywords: ['minimize', 'icon', 'core', 'minimize', 'dock'],
|
|
1458
1488
|
componentName: 'MinimizeIcon',
|
|
1459
1489
|
package: '@atlaskit/icon/core/minimize',
|
|
1490
|
+
oldName: ['media-services/fit-to-page', 'vid-full-screen-off'],
|
|
1460
1491
|
type: 'core',
|
|
1461
1492
|
categorization: 'single-purpose',
|
|
1462
1493
|
usage: 'Single purpose - Reserved for minimizing or docking modals to the bottom of the viewport.',
|
|
@@ -1668,6 +1699,7 @@ var metadata = {
|
|
|
1668
1699
|
keywords: ['phone', 'icon', 'core', 'call', 'dial out'],
|
|
1669
1700
|
componentName: 'PhoneIcon',
|
|
1670
1701
|
package: '@atlaskit/icon/core/phone',
|
|
1702
|
+
oldName: ['hipchat/dial-out'],
|
|
1671
1703
|
type: 'core',
|
|
1672
1704
|
categorization: 'multi-purpose',
|
|
1673
1705
|
usage: 'Multi purpose - Known uses: call us, phone number input.',
|
|
@@ -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::9631ea87cef913a2404b055832446e10>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -68,7 +68,7 @@ var metadata = {
|
|
|
68
68
|
keywords: ['check-circle', 'checkcircle', 'tick', 'icon', 'utility', 'tick', 'yes', 'checkmark'],
|
|
69
69
|
componentName: 'CheckCircleIcon',
|
|
70
70
|
package: '@atlaskit/icon/utility/check-circle',
|
|
71
|
-
oldName: ['check-circle-outline', 'emoji/productivity'],
|
|
71
|
+
oldName: ['check-circle', 'check-circle-outline', 'emoji/productivity'],
|
|
72
72
|
type: 'utility',
|
|
73
73
|
categorization: 'utility',
|
|
74
74
|
usage: '📦 @atlaskit/icon/utility/check-circle',
|
|
@@ -507,6 +507,11 @@ var migrationMap = {
|
|
|
507
507
|
type: 'core',
|
|
508
508
|
package: '@atlaskit/icon'
|
|
509
509
|
},
|
|
510
|
+
additionalIcons: [{
|
|
511
|
+
name: 'bulleted-list',
|
|
512
|
+
type: 'core',
|
|
513
|
+
package: '@atlaskit/icon'
|
|
514
|
+
}],
|
|
510
515
|
sizeGuidance: {
|
|
511
516
|
small: 'swap',
|
|
512
517
|
medium: 'swap',
|
|
@@ -622,6 +627,11 @@ var migrationMap = {
|
|
|
622
627
|
type: 'core',
|
|
623
628
|
package: '@atlaskit/icon'
|
|
624
629
|
},
|
|
630
|
+
additionalIcons: [{
|
|
631
|
+
name: 'check-circle',
|
|
632
|
+
type: 'core',
|
|
633
|
+
package: '@atlaskit/icon'
|
|
634
|
+
}],
|
|
625
635
|
sizeGuidance: {
|
|
626
636
|
small: 'swap',
|
|
627
637
|
medium: 'swap',
|
|
@@ -997,6 +1007,11 @@ var migrationMap = {
|
|
|
997
1007
|
type: 'core',
|
|
998
1008
|
package: '@atlaskit/icon'
|
|
999
1009
|
},
|
|
1010
|
+
additionalIcons: [{
|
|
1011
|
+
name: 'phone',
|
|
1012
|
+
type: 'core',
|
|
1013
|
+
package: '@atlaskit/icon'
|
|
1014
|
+
}],
|
|
1000
1015
|
sizeGuidance: {
|
|
1001
1016
|
small: 'swap-slight-visual-change',
|
|
1002
1017
|
medium: 'swap-slight-visual-change',
|
|
@@ -1242,6 +1257,11 @@ var migrationMap = {
|
|
|
1242
1257
|
type: 'core',
|
|
1243
1258
|
package: '@atlaskit/icon'
|
|
1244
1259
|
},
|
|
1260
|
+
additionalIcons: [{
|
|
1261
|
+
name: 'bulleted-list',
|
|
1262
|
+
type: 'core',
|
|
1263
|
+
package: '@atlaskit/icon'
|
|
1264
|
+
}],
|
|
1245
1265
|
sizeGuidance: {
|
|
1246
1266
|
small: 'swap',
|
|
1247
1267
|
medium: 'swap',
|
|
@@ -1281,6 +1301,11 @@ var migrationMap = {
|
|
|
1281
1301
|
type: 'core',
|
|
1282
1302
|
package: '@atlaskit/icon'
|
|
1283
1303
|
},
|
|
1304
|
+
additionalIcons: [{
|
|
1305
|
+
name: 'collapse',
|
|
1306
|
+
type: 'core',
|
|
1307
|
+
package: '@atlaskit/icon'
|
|
1308
|
+
}],
|
|
1284
1309
|
sizeGuidance: {
|
|
1285
1310
|
small: 'swap',
|
|
1286
1311
|
medium: 'swap',
|
|
@@ -1380,6 +1405,11 @@ var migrationMap = {
|
|
|
1380
1405
|
type: 'core',
|
|
1381
1406
|
package: '@atlaskit/icon'
|
|
1382
1407
|
},
|
|
1408
|
+
additionalIcons: [{
|
|
1409
|
+
name: 'expand',
|
|
1410
|
+
type: 'core',
|
|
1411
|
+
package: '@atlaskit/icon'
|
|
1412
|
+
}],
|
|
1383
1413
|
sizeGuidance: {
|
|
1384
1414
|
small: 'swap',
|
|
1385
1415
|
medium: 'swap',
|
|
@@ -1487,6 +1517,11 @@ var migrationMap = {
|
|
|
1487
1517
|
type: 'core',
|
|
1488
1518
|
package: '@atlaskit/icon'
|
|
1489
1519
|
},
|
|
1520
|
+
additionalIcons: [{
|
|
1521
|
+
name: 'expand',
|
|
1522
|
+
type: 'core',
|
|
1523
|
+
package: '@atlaskit/icon'
|
|
1524
|
+
}],
|
|
1490
1525
|
sizeGuidance: {
|
|
1491
1526
|
small: 'swap-visual-change',
|
|
1492
1527
|
medium: 'swap-visual-change',
|
|
@@ -2426,6 +2461,11 @@ var migrationMap = {
|
|
|
2426
2461
|
type: 'core',
|
|
2427
2462
|
package: '@atlaskit/icon'
|
|
2428
2463
|
},
|
|
2464
|
+
additionalIcons: [{
|
|
2465
|
+
name: 'expand',
|
|
2466
|
+
type: 'core',
|
|
2467
|
+
package: '@atlaskit/icon'
|
|
2468
|
+
}],
|
|
2429
2469
|
sizeGuidance: {
|
|
2430
2470
|
small: 'swap-visual-change',
|
|
2431
2471
|
medium: 'swap-visual-change',
|
|
@@ -2718,6 +2758,11 @@ var migrationMap = {
|
|
|
2718
2758
|
type: 'core',
|
|
2719
2759
|
package: '@atlaskit/icon'
|
|
2720
2760
|
},
|
|
2761
|
+
additionalIcons: [{
|
|
2762
|
+
name: 'maximize',
|
|
2763
|
+
type: 'core',
|
|
2764
|
+
package: '@atlaskit/icon'
|
|
2765
|
+
}],
|
|
2721
2766
|
sizeGuidance: {
|
|
2722
2767
|
small: 'swap',
|
|
2723
2768
|
medium: 'swap',
|
|
@@ -2836,6 +2881,11 @@ var migrationMap = {
|
|
|
2836
2881
|
type: 'core',
|
|
2837
2882
|
package: '@atlaskit/icon'
|
|
2838
2883
|
},
|
|
2884
|
+
additionalIcons: [{
|
|
2885
|
+
name: 'minimize',
|
|
2886
|
+
type: 'core',
|
|
2887
|
+
package: '@atlaskit/icon'
|
|
2888
|
+
}],
|
|
2839
2889
|
sizeGuidance: {
|
|
2840
2890
|
small: 'swap',
|
|
2841
2891
|
medium: 'swap',
|
|
@@ -3816,6 +3866,11 @@ var migrationMap = {
|
|
|
3816
3866
|
type: 'core',
|
|
3817
3867
|
package: '@atlaskit/icon'
|
|
3818
3868
|
},
|
|
3869
|
+
additionalIcons: [{
|
|
3870
|
+
name: 'app-switcher',
|
|
3871
|
+
type: 'core',
|
|
3872
|
+
package: '@atlaskit/icon'
|
|
3873
|
+
}],
|
|
3819
3874
|
sizeGuidance: {
|
|
3820
3875
|
small: 'swap-visual-change',
|
|
3821
3876
|
medium: 'swap-visual-change',
|
|
@@ -4077,6 +4132,11 @@ var migrationMap = {
|
|
|
4077
4132
|
type: 'core',
|
|
4078
4133
|
package: '@atlaskit/icon'
|
|
4079
4134
|
},
|
|
4135
|
+
additionalIcons: [{
|
|
4136
|
+
name: 'minimize',
|
|
4137
|
+
type: 'core',
|
|
4138
|
+
package: '@atlaskit/icon'
|
|
4139
|
+
}],
|
|
4080
4140
|
sizeGuidance: {
|
|
4081
4141
|
small: 'swap-visual-change',
|
|
4082
4142
|
medium: 'swap-visual-change',
|