@atlaskit/icon 22.8.0 → 22.10.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 +18 -0
- package/core/app-switcher-legacy.d.ts +9 -0
- package/core/app-switcher-legacy.js +26 -0
- package/core/app-switcher.d.ts +9 -0
- package/core/app-switcher.js +26 -0
- package/core/menu.d.ts +9 -0
- package/core/{migration/edit--editor-add.js → menu.js} +7 -10
- package/core/migration/{edit--editor-add.d.ts → add--editor-add.d.ts} +2 -2
- package/core/migration/add--editor-add.js +29 -0
- package/core/migration/angle-brackets--bitbucket-repos.d.ts +9 -0
- package/core/migration/angle-brackets--bitbucket-repos.js +29 -0
- package/core/migration/app-switcher--switcher.d.ts +9 -0
- package/core/migration/app-switcher--switcher.js +29 -0
- package/core/migration/app-switcher.d.ts +9 -0
- package/core/migration/app-switcher.js +29 -0
- package/core/migration/download.d.ts +9 -0
- package/core/migration/download.js +29 -0
- package/core/migration/{audio--vid-audio-on.d.ts → emoji--emoji-people.d.ts} +2 -2
- package/core/migration/emoji--emoji-people.js +29 -0
- package/core/migration/flag--emoji-flags.d.ts +9 -0
- package/core/migration/flag--emoji-flags.js +29 -0
- package/core/migration/grid--editor-table.d.ts +9 -0
- package/core/migration/grid--editor-table.js +29 -0
- package/core/migration/lightbulb--lightbulb-filled.d.ts +9 -0
- package/core/migration/lightbulb--lightbulb-filled.js +29 -0
- package/core/migration/link--link-filled.d.ts +9 -0
- package/core/migration/link--link-filled.js +29 -0
- package/core/migration/menu--menu-expand.d.ts +9 -0
- package/core/migration/menu--menu-expand.js +29 -0
- package/core/migration/menu.d.ts +9 -0
- package/core/migration/menu.js +29 -0
- package/core/migration/microphone--vid-audio-on.d.ts +9 -0
- package/core/migration/{audio--vid-audio-on.js → microphone--vid-audio-on.js} +8 -7
- package/core/migration/minimize--media-services-fit-to-page.d.ts +9 -0
- package/core/migration/minimize--media-services-fit-to-page.js +29 -0
- package/core/migration/minimize--vid-full-screen-off.d.ts +9 -0
- package/core/migration/minimize--vid-full-screen-off.js +29 -0
- package/core/migration/notification--notification-direct.d.ts +9 -0
- package/core/migration/notification--notification-direct.js +29 -0
- package/core/migration/notification.d.ts +9 -0
- package/core/migration/notification.js +29 -0
- package/core/migration/upload--export.d.ts +9 -0
- package/core/migration/upload--export.js +29 -0
- package/core/notification.d.ts +9 -0
- package/core/notification.js +26 -0
- package/dist/cjs/entry-points/migration-map.js +10 -2
- package/dist/cjs/metadata-core.js +56 -8
- package/dist/cjs/metadata-utility.js +1 -1
- package/dist/cjs/migration-map.js +178 -89
- package/dist/es2019/entry-points/migration-map.js +1 -1
- package/dist/es2019/metadata-core.js +56 -8
- package/dist/es2019/metadata-utility.js +1 -1
- package/dist/es2019/migration-map.js +177 -88
- package/dist/esm/entry-points/migration-map.js +1 -1
- package/dist/esm/metadata-core.js +56 -8
- package/dist/esm/metadata-utility.js +1 -1
- package/dist/esm/migration-map.js +177 -88
- package/dist/types/entry-points/migration-map.d.ts +2 -1
- package/dist/types/migration-map.d.ts +2 -1
- package/dist/types/types.d.ts +19 -3
- package/dist/types-ts4.5/entry-points/migration-map.d.ts +2 -1
- package/dist/types-ts4.5/migration-map.d.ts +2 -1
- package/dist/types-ts4.5/types.d.ts +19 -3
- package/glyph/app-switcher.js +4 -1
- package/glyph/bitbucket/repos.js +4 -1
- package/glyph/download.js +4 -1
- package/glyph/editor/add.js +2 -2
- package/glyph/editor/table.js +4 -1
- package/glyph/emoji/flags.js +4 -1
- package/glyph/emoji/people.js +4 -1
- package/glyph/export.js +4 -1
- package/glyph/lightbulb-filled.js +4 -1
- package/glyph/link-filled.js +4 -1
- package/glyph/media-services/fit-to-page.js +4 -1
- package/glyph/menu-expand.js +4 -1
- package/glyph/menu.js +4 -1
- package/glyph/notification-direct.js +4 -1
- package/glyph/notification.js +4 -1
- package/glyph/switcher.js +4 -1
- package/glyph/vid-audio-on.js +2 -2
- package/glyph/vid-full-screen-off.js +2 -2
- package/package.json +2 -3
- package/utility/migration/add--editor-add.d.ts +9 -0
- package/utility/migration/add--editor-add.js +29 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
4
|
+
|
|
5
|
+
declare const MicrophoneIconMigration: {
|
|
6
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
export default MicrophoneIconMigration;
|
|
@@ -5,24 +5,25 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var
|
|
8
|
+
var _microphone = _interopRequireDefault(require("@atlaskit/icon/core/microphone"));
|
|
9
9
|
var _vidAudioOn = _interopRequireDefault(require("@atlaskit/icon/glyph/vid-audio-on"));
|
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
11
|
/**
|
|
12
12
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are a work in progress and subject to change or removal in future minor or patch releases.
|
|
13
13
|
* Please reach out in #help-design-system before using these in production.
|
|
14
14
|
*
|
|
15
|
-
* Migration Icon component for
|
|
16
|
-
* This component is
|
|
15
|
+
* Migration Icon component for MicrophoneIcon.
|
|
16
|
+
* This component is MicrophoneIcon, with `UNSAFE_fallbackIcon` set to "VidAudioOnIcon".
|
|
17
17
|
*
|
|
18
|
-
* Category:
|
|
18
|
+
* Category: Multi-purpose
|
|
19
19
|
* Location: Icon contributions
|
|
20
|
+
* Usage guidance: Known uses: record sounds in Trello.
|
|
20
21
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
21
22
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
22
23
|
*/
|
|
23
|
-
const
|
|
24
|
+
const MicrophoneIcon = props => /*#__PURE__*/_react.default.createElement(_microphone.default, Object.assign({
|
|
24
25
|
LEGACY_fallbackIcon: _vidAudioOn.default
|
|
25
26
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
27
|
}, props));
|
|
27
|
-
|
|
28
|
-
var _default = exports.default =
|
|
28
|
+
MicrophoneIcon.Name = 'MicrophoneIconMigration';
|
|
29
|
+
var _default = exports.default = MicrophoneIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
4
|
+
|
|
5
|
+
declare const MinimizeIconMigration: {
|
|
6
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
export default MinimizeIconMigration;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _minimize = _interopRequireDefault(require("@atlaskit/icon/core/minimize"));
|
|
9
|
+
var _fitToPage = _interopRequireDefault(require("@atlaskit/icon/glyph/media-services/fit-to-page"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
/**
|
|
12
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are a work in progress and subject to change or removal in future minor or patch releases.
|
|
13
|
+
* Please reach out in #help-design-system before using these in production.
|
|
14
|
+
*
|
|
15
|
+
* Migration Icon component for MinimizeIcon.
|
|
16
|
+
* This component is MinimizeIcon, with `UNSAFE_fallbackIcon` set to "MediaServicesFitToPageIcon".
|
|
17
|
+
*
|
|
18
|
+
* Category: Single-purpose
|
|
19
|
+
* Location: ADS
|
|
20
|
+
* Usage guidance: Known uses: minimize modal window, minimize panel, minimize video screen.
|
|
21
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
22
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
23
|
+
*/
|
|
24
|
+
const MinimizeIcon = props => /*#__PURE__*/_react.default.createElement(_minimize.default, Object.assign({
|
|
25
|
+
LEGACY_fallbackIcon: _fitToPage.default
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
MinimizeIcon.Name = 'MinimizeIconMigration';
|
|
29
|
+
var _default = exports.default = MinimizeIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
4
|
+
|
|
5
|
+
declare const MinimizeIconMigration: {
|
|
6
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
export default MinimizeIconMigration;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _minimize = _interopRequireDefault(require("@atlaskit/icon/core/minimize"));
|
|
9
|
+
var _vidFullScreenOff = _interopRequireDefault(require("@atlaskit/icon/glyph/vid-full-screen-off"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
/**
|
|
12
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are a work in progress and subject to change or removal in future minor or patch releases.
|
|
13
|
+
* Please reach out in #help-design-system before using these in production.
|
|
14
|
+
*
|
|
15
|
+
* Migration Icon component for MinimizeIcon.
|
|
16
|
+
* This component is MinimizeIcon, with `UNSAFE_fallbackIcon` set to "VidFullScreenOffIcon".
|
|
17
|
+
*
|
|
18
|
+
* Category: Single-purpose
|
|
19
|
+
* Location: ADS
|
|
20
|
+
* Usage guidance: Known uses: minimize modal window, minimize panel, minimize video screen.
|
|
21
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
22
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
23
|
+
*/
|
|
24
|
+
const MinimizeIcon = props => /*#__PURE__*/_react.default.createElement(_minimize.default, Object.assign({
|
|
25
|
+
LEGACY_fallbackIcon: _vidFullScreenOff.default
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
MinimizeIcon.Name = 'MinimizeIconMigration';
|
|
29
|
+
var _default = exports.default = MinimizeIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
4
|
+
|
|
5
|
+
declare const NotificationIconMigration: {
|
|
6
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
export default NotificationIconMigration;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _notification = _interopRequireDefault(require("@atlaskit/icon/core/notification"));
|
|
9
|
+
var _notificationDirect = _interopRequireDefault(require("@atlaskit/icon/glyph/notification-direct"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
/**
|
|
12
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are a work in progress and subject to change or removal in future minor or patch releases.
|
|
13
|
+
* Please reach out in #help-design-system before using these in production.
|
|
14
|
+
*
|
|
15
|
+
* Migration Icon component for NotificationIcon.
|
|
16
|
+
* This component is NotificationIcon, with `UNSAFE_fallbackIcon` set to "NotificationDirectIcon".
|
|
17
|
+
*
|
|
18
|
+
* Category: Single-purpose
|
|
19
|
+
* Location: ADS
|
|
20
|
+
* Usage guidance: Reserved for notifications within global product navigation and within product screens.
|
|
21
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
22
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
23
|
+
*/
|
|
24
|
+
const NotificationIcon = props => /*#__PURE__*/_react.default.createElement(_notification.default, Object.assign({
|
|
25
|
+
LEGACY_fallbackIcon: _notificationDirect.default
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
NotificationIcon.Name = 'NotificationIconMigration';
|
|
29
|
+
var _default = exports.default = NotificationIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
4
|
+
|
|
5
|
+
declare const NotificationIconMigration: {
|
|
6
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
export default NotificationIconMigration;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _notification = _interopRequireDefault(require("@atlaskit/icon/core/notification"));
|
|
9
|
+
var _notification2 = _interopRequireDefault(require("@atlaskit/icon/glyph/notification"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
/**
|
|
12
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are a work in progress and subject to change or removal in future minor or patch releases.
|
|
13
|
+
* Please reach out in #help-design-system before using these in production.
|
|
14
|
+
*
|
|
15
|
+
* Migration Icon component for NotificationIcon.
|
|
16
|
+
* This component is NotificationIcon, with `UNSAFE_fallbackIcon` set to "NotificationIcon".
|
|
17
|
+
*
|
|
18
|
+
* Category: Single-purpose
|
|
19
|
+
* Location: ADS
|
|
20
|
+
* Usage guidance: Reserved for notifications within global product navigation and within product screens.
|
|
21
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
22
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
23
|
+
*/
|
|
24
|
+
const NotificationIcon = props => /*#__PURE__*/_react.default.createElement(_notification.default, Object.assign({
|
|
25
|
+
LEGACY_fallbackIcon: _notification2.default
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
NotificationIcon.Name = 'NotificationIconMigration';
|
|
29
|
+
var _default = exports.default = NotificationIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
4
|
+
|
|
5
|
+
declare const UploadIconMigration: {
|
|
6
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
export default UploadIconMigration;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _upload = _interopRequireDefault(require("@atlaskit/icon/core/upload"));
|
|
9
|
+
var _export = _interopRequireDefault(require("@atlaskit/icon/glyph/export"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
/**
|
|
12
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are a work in progress and subject to change or removal in future minor or patch releases.
|
|
13
|
+
* Please reach out in #help-design-system before using these in production.
|
|
14
|
+
*
|
|
15
|
+
* Migration Icon component for UploadIcon.
|
|
16
|
+
* This component is UploadIcon, with `UNSAFE_fallbackIcon` set to "ExportIcon".
|
|
17
|
+
*
|
|
18
|
+
* Category: Single-purpose
|
|
19
|
+
* Location: ADS
|
|
20
|
+
* Usage guidance: Reserved for upload in Editor.
|
|
21
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
22
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
23
|
+
*/
|
|
24
|
+
const UploadIcon = props => /*#__PURE__*/_react.default.createElement(_upload.default, Object.assign({
|
|
25
|
+
LEGACY_fallbackIcon: _export.default
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
UploadIcon.Name = 'UploadIconMigration';
|
|
29
|
+
var _default = exports.default = UploadIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
4
|
+
|
|
5
|
+
declare const NotificationIcon: {
|
|
6
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
export default NotificationIcon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
10
|
+
/**
|
|
11
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are a work in progress and subject to change or removal in future minor or patch releases.
|
|
12
|
+
* Please reach out in #help-design-system before using these in production.
|
|
13
|
+
*
|
|
14
|
+
* Icon: "Notification".
|
|
15
|
+
* Category: Single-purpose
|
|
16
|
+
* Location: ADS
|
|
17
|
+
* Usage guidance: Reserved for notifications within global product navigation and within product screens.
|
|
18
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
19
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
20
|
+
*/
|
|
21
|
+
const NotificationIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
22
|
+
dangerouslySetGlyph: `<path stroke="currentColor" stroke-linejoin="round" stroke-width="1.5" d="m3.675 9.106-2.23 3.159a.625.625 0 0 0 .511.985h12.088a.625.625 0 0 0 .51-.985l-2.229-3.159a.4.4 0 0 1-.075-.236V5a4.25 4.25 0 0 0-8.5 0v3.87a.4.4 0 0 1-.075.236Z"/><path fill="currentColor" stroke="currentColor" stroke-linejoin="round" stroke-width="1.5" d="M10 13.25H6a2 2 0 1 0 4 0Z"/>`
|
|
23
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
24
|
+
}, props));
|
|
25
|
+
NotificationIcon.displayName = 'NotificationIcon';
|
|
26
|
+
var _default = exports.default = NotificationIcon;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
@@ -10,4 +10,12 @@ Object.defineProperty(exports, "default", {
|
|
|
10
10
|
return _migrationMap.default;
|
|
11
11
|
}
|
|
12
12
|
});
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "migrationOutcomeDescriptionMap", {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function get() {
|
|
16
|
+
return _migrationMap.migrationOutcomeDescriptionMap;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _migrationMap = _interopRequireWildcard(require("../../src/migration-map"));
|
|
20
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
21
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
@@ -19,7 +19,7 @@ var metadata = {
|
|
|
19
19
|
keywords: ['add', 'plus', 'create', 'new', 'icon', 'core', 'create', 'plus'],
|
|
20
20
|
componentName: 'AddIcon',
|
|
21
21
|
package: '@atlaskit/icon/core/add',
|
|
22
|
-
oldName: ['add-circle', 'add', 'emoji/custom'],
|
|
22
|
+
oldName: ['add-circle', 'add', 'editor/add', 'emoji/custom'],
|
|
23
23
|
categorization: 'Single-purpose',
|
|
24
24
|
location: 'ADS',
|
|
25
25
|
team: 'ADS',
|
|
@@ -93,7 +93,7 @@ var metadata = {
|
|
|
93
93
|
keywords: ['angle-brackets', 'anglebrackets', 'icon', 'core', 'code', '<>', '</>', 'syntax'],
|
|
94
94
|
componentName: 'AngleBracketsIcon',
|
|
95
95
|
package: '@atlaskit/icon/core/angle-brackets',
|
|
96
|
-
oldName: ['bitbucket/source', 'code', 'editor/code', 'media-services/code'],
|
|
96
|
+
oldName: ['bitbucket/repos', 'bitbucket/source', 'code', 'editor/code', 'media-services/code'],
|
|
97
97
|
categorization: 'Multi-purpose',
|
|
98
98
|
location: 'Icon contributions',
|
|
99
99
|
team: 'Jira',
|
|
@@ -111,6 +111,27 @@ var metadata = {
|
|
|
111
111
|
type: 'Global noun',
|
|
112
112
|
usage: 'Reserved for marketplace apps and integrations across products.'
|
|
113
113
|
},
|
|
114
|
+
'app-switcher': {
|
|
115
|
+
keywords: ['app-switcher', 'appswitcher', 'icon', 'core', 'application switcher', 'change product', 'switch product', 'product switcher', 'top navigation'],
|
|
116
|
+
componentName: 'AppSwitcherIcon',
|
|
117
|
+
package: '@atlaskit/icon/core/app-switcher',
|
|
118
|
+
oldName: ['app-switcher', 'switcher'],
|
|
119
|
+
categorization: 'Single-purpose',
|
|
120
|
+
location: 'ADS',
|
|
121
|
+
team: 'ADS',
|
|
122
|
+
type: 'Core',
|
|
123
|
+
usage: 'Reserved for app switcher in global product navigation.'
|
|
124
|
+
},
|
|
125
|
+
'app-switcher-legacy': {
|
|
126
|
+
keywords: ['app-switcher-legacy', 'appswitcherlegacy', 'icon', 'core', 'application switcher', 'change product', 'switch product', 'product switcher', 'top navigation'],
|
|
127
|
+
componentName: 'AppSwitcherLegacyIcon',
|
|
128
|
+
package: '@atlaskit/icon/core/app-switcher-legacy',
|
|
129
|
+
categorization: 'Single-purpose',
|
|
130
|
+
location: 'ADS',
|
|
131
|
+
team: 'ADS',
|
|
132
|
+
type: 'Core',
|
|
133
|
+
usage: 'Reserved for the legacy app switcher in global product navigation.'
|
|
134
|
+
},
|
|
114
135
|
apps: {
|
|
115
136
|
keywords: ['apps', 'icon', 'core', 'third-party', 'applications'],
|
|
116
137
|
componentName: 'AppsIcon',
|
|
@@ -212,7 +233,7 @@ var metadata = {
|
|
|
212
233
|
keywords: ['audio', 'music', 'note', 'sound', 'icon', 'core', 'music', 'musical note'],
|
|
213
234
|
componentName: 'AudioIcon',
|
|
214
235
|
package: '@atlaskit/icon/core/audio',
|
|
215
|
-
oldName: ['audio-circle', 'audio', 'media-services/audio'
|
|
236
|
+
oldName: ['audio-circle', 'audio', 'media-services/audio'],
|
|
216
237
|
categorization: 'Single-purpose',
|
|
217
238
|
location: 'Icon contributions',
|
|
218
239
|
team: 'Media',
|
|
@@ -675,6 +696,7 @@ var metadata = {
|
|
|
675
696
|
keywords: ['download', 'cloud', 'icon', 'core', 'down arrow', 'file download'],
|
|
676
697
|
componentName: 'DownloadIcon',
|
|
677
698
|
package: '@atlaskit/icon/core/download',
|
|
699
|
+
oldName: ['download'],
|
|
678
700
|
categorization: 'Single-purpose',
|
|
679
701
|
location: 'ADS',
|
|
680
702
|
team: 'ADS',
|
|
@@ -696,7 +718,7 @@ var metadata = {
|
|
|
696
718
|
keywords: ['edit', 'pencil', 'write', 'icon', 'core', 'pencil', 'pencil on page'],
|
|
697
719
|
componentName: 'EditIcon',
|
|
698
720
|
package: '@atlaskit/icon/core/edit',
|
|
699
|
-
oldName: ['edit-filled', 'edit', 'editor/
|
|
721
|
+
oldName: ['edit-filled', 'edit', 'editor/edit'],
|
|
700
722
|
categorization: 'Single-purpose',
|
|
701
723
|
location: 'ADS',
|
|
702
724
|
team: 'ADS',
|
|
@@ -718,7 +740,7 @@ var metadata = {
|
|
|
718
740
|
keywords: ['emoji', 'emoticon', 'smiley', 'icon', 'core', 'smiley face', 'emoticon'],
|
|
719
741
|
componentName: 'EmojiIcon',
|
|
720
742
|
package: '@atlaskit/icon/core/emoji',
|
|
721
|
-
oldName: ['editor/emoji', 'emoji/emoji', 'emoji'],
|
|
743
|
+
oldName: ['editor/emoji', 'emoji/emoji', 'emoji', 'emoji/people'],
|
|
722
744
|
categorization: 'Single-purpose',
|
|
723
745
|
location: 'Icon contributions',
|
|
724
746
|
team: 'Editor',
|
|
@@ -826,6 +848,7 @@ var metadata = {
|
|
|
826
848
|
keywords: ['flag', 'icon', 'core', 'important', 'emoji category'],
|
|
827
849
|
componentName: 'FlagIcon',
|
|
828
850
|
package: '@atlaskit/icon/core/flag',
|
|
851
|
+
oldName: ['emoji/flags'],
|
|
829
852
|
categorization: 'Multi-purpose',
|
|
830
853
|
location: 'Icon contributions',
|
|
831
854
|
team: 'Editor',
|
|
@@ -911,7 +934,7 @@ var metadata = {
|
|
|
911
934
|
keywords: ['grid', 'icon', 'core', 'view all content', 'tile view', 'layout', 'grid', 'tiles'],
|
|
912
935
|
componentName: 'GridIcon',
|
|
913
936
|
package: '@atlaskit/icon/core/grid',
|
|
914
|
-
oldName: ['media-services/grid', 'table'],
|
|
937
|
+
oldName: ['editor/table', 'media-services/grid', 'table'],
|
|
915
938
|
categorization: 'Multi-purpose',
|
|
916
939
|
location: 'ADS',
|
|
917
940
|
team: 'ADS',
|
|
@@ -1019,7 +1042,7 @@ var metadata = {
|
|
|
1019
1042
|
keywords: ['lightbulb', 'idea', 'hint', 'icon', 'core', 'idea', 'initiative', 'tip', 'learnings'],
|
|
1020
1043
|
componentName: 'LightbulbIcon',
|
|
1021
1044
|
package: '@atlaskit/icon/core/lightbulb',
|
|
1022
|
-
oldName: ['editor/hint', 'emoji/objects', 'lightbulb'],
|
|
1045
|
+
oldName: ['editor/hint', 'emoji/objects', 'lightbulb-filled', 'lightbulb'],
|
|
1023
1046
|
categorization: 'Multi-purpose',
|
|
1024
1047
|
location: 'ADS',
|
|
1025
1048
|
team: 'ADS',
|
|
@@ -1030,7 +1053,7 @@ var metadata = {
|
|
|
1030
1053
|
keywords: ['link', 'icon', 'core', 'url', 'hyperlink', 'website', 'www', 'http'],
|
|
1031
1054
|
componentName: 'LinkIcon',
|
|
1032
1055
|
package: '@atlaskit/icon/core/link',
|
|
1033
|
-
oldName: ['editor/link', 'link'],
|
|
1056
|
+
oldName: ['editor/link', 'link-filled', 'link'],
|
|
1034
1057
|
categorization: 'Single-purpose',
|
|
1035
1058
|
location: 'ADS',
|
|
1036
1059
|
team: 'ADS',
|
|
@@ -1168,10 +1191,22 @@ var metadata = {
|
|
|
1168
1191
|
type: 'Core',
|
|
1169
1192
|
usage: 'Reserved for user mentions.'
|
|
1170
1193
|
},
|
|
1194
|
+
menu: {
|
|
1195
|
+
keywords: ['menu', 'hamburger', 'navigation', 'switcher', 'app switcher', 'icon', 'core', 'menu', 'top navigation', '3 lines', 'hamburger'],
|
|
1196
|
+
componentName: 'MenuIcon',
|
|
1197
|
+
package: '@atlaskit/icon/core/menu',
|
|
1198
|
+
oldName: ['menu-expand', 'menu'],
|
|
1199
|
+
categorization: 'Single-purpose',
|
|
1200
|
+
location: 'ADS',
|
|
1201
|
+
team: 'ADS',
|
|
1202
|
+
type: 'Core',
|
|
1203
|
+
usage: 'Reserved for accessing the menu in global product navigation.'
|
|
1204
|
+
},
|
|
1171
1205
|
microphone: {
|
|
1172
1206
|
keywords: ['microphone', 'icon', 'core', 'mic', 'mic on', 'voice', 'speak'],
|
|
1173
1207
|
componentName: 'MicrophoneIcon',
|
|
1174
1208
|
package: '@atlaskit/icon/core/microphone',
|
|
1209
|
+
oldName: ['vid-audio-on'],
|
|
1175
1210
|
categorization: 'Multi-purpose',
|
|
1176
1211
|
location: 'Icon contributions',
|
|
1177
1212
|
team: 'Media',
|
|
@@ -1182,6 +1217,7 @@ var metadata = {
|
|
|
1182
1217
|
keywords: ['minimize', 'icon', 'core', 'minimise', 'resize', 'diagonal arrows'],
|
|
1183
1218
|
componentName: 'MinimizeIcon',
|
|
1184
1219
|
package: '@atlaskit/icon/core/minimize',
|
|
1220
|
+
oldName: ['media-services/fit-to-page', 'vid-full-screen-off'],
|
|
1185
1221
|
categorization: 'Single-purpose',
|
|
1186
1222
|
location: 'ADS',
|
|
1187
1223
|
team: 'ADS',
|
|
@@ -1198,6 +1234,17 @@ var metadata = {
|
|
|
1198
1234
|
type: 'Core',
|
|
1199
1235
|
usage: 'Reserved for a non-expandable item in a page tree.'
|
|
1200
1236
|
},
|
|
1237
|
+
notification: {
|
|
1238
|
+
keywords: ['notification', 'bell', 'alarm', 'icon', 'core', 'bell', 'alert', 'top navigation'],
|
|
1239
|
+
componentName: 'NotificationIcon',
|
|
1240
|
+
package: '@atlaskit/icon/core/notification',
|
|
1241
|
+
oldName: ['notification-direct', 'notification'],
|
|
1242
|
+
categorization: 'Single-purpose',
|
|
1243
|
+
location: 'ADS',
|
|
1244
|
+
team: 'ADS',
|
|
1245
|
+
type: 'Core',
|
|
1246
|
+
usage: 'Reserved for notifications within global product navigation and within product screens.'
|
|
1247
|
+
},
|
|
1201
1248
|
'office-building': {
|
|
1202
1249
|
keywords: ['office-building', 'officebuilding', 'icon', 'core', 'organization', 'organisation', 'business'],
|
|
1203
1250
|
componentName: 'OfficeBuildingIcon',
|
|
@@ -1889,6 +1936,7 @@ var metadata = {
|
|
|
1889
1936
|
keywords: ['upload', 'cloud', 'icon', 'core', 'stream', 'file'],
|
|
1890
1937
|
componentName: 'UploadIcon',
|
|
1891
1938
|
package: '@atlaskit/icon/core/upload',
|
|
1939
|
+
oldName: ['export'],
|
|
1892
1940
|
categorization: 'Single-purpose',
|
|
1893
1941
|
location: 'ADS',
|
|
1894
1942
|
team: 'ADS',
|
|
@@ -19,7 +19,7 @@ var metadata = {
|
|
|
19
19
|
keywords: ['add', 'plus', 'create', 'new', 'icon', 'utility', 'create', 'plus'],
|
|
20
20
|
componentName: 'AddIcon',
|
|
21
21
|
package: '@atlaskit/icon/utility/add',
|
|
22
|
-
oldName: ['add-circle', 'add', 'emoji/custom'],
|
|
22
|
+
oldName: ['add-circle', 'add', 'editor/add', 'emoji/custom'],
|
|
23
23
|
categorization: 'Multi-purpose',
|
|
24
24
|
location: 'ADS',
|
|
25
25
|
team: 'ADS',
|