@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.
Files changed (84) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/core/app-switcher-legacy.d.ts +9 -0
  3. package/core/app-switcher-legacy.js +26 -0
  4. package/core/app-switcher.d.ts +9 -0
  5. package/core/app-switcher.js +26 -0
  6. package/core/menu.d.ts +9 -0
  7. package/core/{migration/edit--editor-add.js → menu.js} +7 -10
  8. package/core/migration/{edit--editor-add.d.ts → add--editor-add.d.ts} +2 -2
  9. package/core/migration/add--editor-add.js +29 -0
  10. package/core/migration/angle-brackets--bitbucket-repos.d.ts +9 -0
  11. package/core/migration/angle-brackets--bitbucket-repos.js +29 -0
  12. package/core/migration/app-switcher--switcher.d.ts +9 -0
  13. package/core/migration/app-switcher--switcher.js +29 -0
  14. package/core/migration/app-switcher.d.ts +9 -0
  15. package/core/migration/app-switcher.js +29 -0
  16. package/core/migration/download.d.ts +9 -0
  17. package/core/migration/download.js +29 -0
  18. package/core/migration/{audio--vid-audio-on.d.ts → emoji--emoji-people.d.ts} +2 -2
  19. package/core/migration/emoji--emoji-people.js +29 -0
  20. package/core/migration/flag--emoji-flags.d.ts +9 -0
  21. package/core/migration/flag--emoji-flags.js +29 -0
  22. package/core/migration/grid--editor-table.d.ts +9 -0
  23. package/core/migration/grid--editor-table.js +29 -0
  24. package/core/migration/lightbulb--lightbulb-filled.d.ts +9 -0
  25. package/core/migration/lightbulb--lightbulb-filled.js +29 -0
  26. package/core/migration/link--link-filled.d.ts +9 -0
  27. package/core/migration/link--link-filled.js +29 -0
  28. package/core/migration/menu--menu-expand.d.ts +9 -0
  29. package/core/migration/menu--menu-expand.js +29 -0
  30. package/core/migration/menu.d.ts +9 -0
  31. package/core/migration/menu.js +29 -0
  32. package/core/migration/microphone--vid-audio-on.d.ts +9 -0
  33. package/core/migration/{audio--vid-audio-on.js → microphone--vid-audio-on.js} +8 -7
  34. package/core/migration/minimize--media-services-fit-to-page.d.ts +9 -0
  35. package/core/migration/minimize--media-services-fit-to-page.js +29 -0
  36. package/core/migration/minimize--vid-full-screen-off.d.ts +9 -0
  37. package/core/migration/minimize--vid-full-screen-off.js +29 -0
  38. package/core/migration/notification--notification-direct.d.ts +9 -0
  39. package/core/migration/notification--notification-direct.js +29 -0
  40. package/core/migration/notification.d.ts +9 -0
  41. package/core/migration/notification.js +29 -0
  42. package/core/migration/upload--export.d.ts +9 -0
  43. package/core/migration/upload--export.js +29 -0
  44. package/core/notification.d.ts +9 -0
  45. package/core/notification.js +26 -0
  46. package/dist/cjs/entry-points/migration-map.js +10 -2
  47. package/dist/cjs/metadata-core.js +56 -8
  48. package/dist/cjs/metadata-utility.js +1 -1
  49. package/dist/cjs/migration-map.js +178 -89
  50. package/dist/es2019/entry-points/migration-map.js +1 -1
  51. package/dist/es2019/metadata-core.js +56 -8
  52. package/dist/es2019/metadata-utility.js +1 -1
  53. package/dist/es2019/migration-map.js +177 -88
  54. package/dist/esm/entry-points/migration-map.js +1 -1
  55. package/dist/esm/metadata-core.js +56 -8
  56. package/dist/esm/metadata-utility.js +1 -1
  57. package/dist/esm/migration-map.js +177 -88
  58. package/dist/types/entry-points/migration-map.d.ts +2 -1
  59. package/dist/types/migration-map.d.ts +2 -1
  60. package/dist/types/types.d.ts +19 -3
  61. package/dist/types-ts4.5/entry-points/migration-map.d.ts +2 -1
  62. package/dist/types-ts4.5/migration-map.d.ts +2 -1
  63. package/dist/types-ts4.5/types.d.ts +19 -3
  64. package/glyph/app-switcher.js +4 -1
  65. package/glyph/bitbucket/repos.js +4 -1
  66. package/glyph/download.js +4 -1
  67. package/glyph/editor/add.js +2 -2
  68. package/glyph/editor/table.js +4 -1
  69. package/glyph/emoji/flags.js +4 -1
  70. package/glyph/emoji/people.js +4 -1
  71. package/glyph/export.js +4 -1
  72. package/glyph/lightbulb-filled.js +4 -1
  73. package/glyph/link-filled.js +4 -1
  74. package/glyph/media-services/fit-to-page.js +4 -1
  75. package/glyph/menu-expand.js +4 -1
  76. package/glyph/menu.js +4 -1
  77. package/glyph/notification-direct.js +4 -1
  78. package/glyph/notification.js +4 -1
  79. package/glyph/switcher.js +4 -1
  80. package/glyph/vid-audio-on.js +2 -2
  81. package/glyph/vid-full-screen-off.js +2 -2
  82. package/package.json +2 -3
  83. package/utility/migration/add--editor-add.d.ts +9 -0
  84. package/utility/migration/add--editor-add.js +29 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/icon
2
2
 
3
+ ## 22.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#126553](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/126553)
8
+ [`a8d7e60d3b69d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a8d7e60d3b69d) -
9
+ Add new export, `migrationOutcomeDescriptionMap`, containing written migration guidance for use in
10
+ documentation and tooling
11
+
12
+ ## 22.9.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [#125980](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/125980)
17
+ [`4df9272f5f016`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4df9272f5f016) -
18
+ Adds four new icons to the experimental /core icon set: 'notification', 'menu', 'app-switcher',
19
+ and 'app-switcher-legacy'
20
+
3
21
  ## 22.8.0
4
22
 
5
23
  ### Minor Changes
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const AppSwitcherLegacyIcon: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default AppSwitcherLegacyIcon;
@@ -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: "AppSwitcherLegacy".
15
+ * Category: Single-purpose
16
+ * Location: ADS
17
+ * Usage guidance: Reserved for the legacy app switcher in global product navigation.
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 AppSwitcherLegacyIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
22
+ dangerouslySetGlyph: `<path fill="currentColor" d="M11.75 11.75h2.5v2.5h-2.5zm-10-10h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5zm5-10h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5zm5-10h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5z"/><path stroke="currentColor" stroke-linejoin="round" stroke-width="1.5" d="M11.75 11.75h2.5v2.5h-2.5zm-10-10h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5zm5-10h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5zm5-10h2.5v2.5h-2.5zm0 5h2.5v2.5h-2.5z"/>`
23
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
24
+ }, props));
25
+ AppSwitcherLegacyIcon.displayName = 'AppSwitcherLegacyIcon';
26
+ var _default = exports.default = AppSwitcherLegacyIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const AppSwitcherIcon: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default AppSwitcherIcon;
@@ -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: "AppSwitcher".
15
+ * Category: Single-purpose
16
+ * Location: ADS
17
+ * Usage guidance: Reserved for app switcher in global product navigation.
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 AppSwitcherIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
22
+ dangerouslySetGlyph: `<path stroke="currentColor" stroke-linejoin="round" stroke-width="1.5" d="M1.75 3c0-.69.56-1.25 1.25-1.25h2c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25H3c-.69 0-1.25-.56-1.25-1.25zm8 0c0-.69.56-1.25 1.25-1.25h2c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25h-2c-.69 0-1.25-.56-1.25-1.25zm-8 8c0-.69.56-1.25 1.25-1.25h2c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25H3c-.69 0-1.25-.56-1.25-1.25zm8 0c0-.69.56-1.25 1.25-1.25h2c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25h-2c-.69 0-1.25-.56-1.25-1.25z"/>`
23
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
24
+ }, props));
25
+ AppSwitcherIcon.displayName = 'AppSwitcherIcon';
26
+ var _default = exports.default = AppSwitcherIcon;
package/core/menu.d.ts ADDED
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const MenuIcon: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default MenuIcon;
@@ -5,25 +5,22 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  var _react = _interopRequireDefault(require("react"));
8
- var _edit = _interopRequireDefault(require("@atlaskit/icon/core/edit"));
9
- var _add = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/add"));
8
+ var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
10
9
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
10
  /**
12
11
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are a work in progress and subject to change or removal in future minor or patch releases.
13
12
  * Please reach out in #help-design-system before using these in production.
14
13
  *
15
- * Migration Icon component for EditIcon.
16
- * This component is EditIcon, with `UNSAFE_fallbackIcon` set to "EditorAddIcon".
17
- *
14
+ * Icon: "Menu".
18
15
  * Category: Single-purpose
19
16
  * Location: ADS
20
- * Usage guidance: Reserved for editing objects.
17
+ * Usage guidance: Reserved for accessing the menu in global product navigation.
21
18
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
22
19
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
23
20
  */
24
- const EditIcon = props => /*#__PURE__*/_react.default.createElement(_edit.default, Object.assign({
25
- LEGACY_fallbackIcon: _add.default
21
+ const MenuIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
22
+ dangerouslySetGlyph: `<path stroke="currentColor" stroke-width="1.5" d="M1 13.25h14M1 8h14M1 2.75h14"/>`
26
23
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
24
  }, props));
28
- EditIcon.Name = 'EditIconMigration';
29
- var _default = exports.default = EditIcon;
25
+ MenuIcon.displayName = 'MenuIcon';
26
+ var _default = exports.default = MenuIcon;
@@ -2,8 +2,8 @@
2
2
  import React from 'react';
3
3
  import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
4
 
5
- declare const EditIconMigration: {
5
+ declare const AddIconMigration: {
6
6
  (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
7
  displayName: string;
8
8
  };
9
- export default EditIconMigration;
9
+ export default AddIconMigration;
@@ -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 _add = _interopRequireDefault(require("@atlaskit/icon/core/add"));
9
+ var _add2 = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/add"));
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 AddIcon.
16
+ * This component is AddIcon, with `UNSAFE_fallbackIcon` set to "EditorAddIcon".
17
+ *
18
+ * Category: Single-purpose
19
+ * Location: ADS
20
+ * Usage guidance: Reserved for creating and adding an object.
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 AddIcon = props => /*#__PURE__*/_react.default.createElement(_add.default, Object.assign({
25
+ LEGACY_fallbackIcon: _add2.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ AddIcon.Name = 'AddIconMigration';
29
+ var _default = exports.default = AddIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const AngleBracketsIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default AngleBracketsIconMigration;
@@ -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 _angleBrackets = _interopRequireDefault(require("@atlaskit/icon/core/angle-brackets"));
9
+ var _repos = _interopRequireDefault(require("@atlaskit/icon/glyph/bitbucket/repos"));
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 AngleBracketsIcon.
16
+ * This component is AngleBracketsIcon, with `UNSAFE_fallbackIcon` set to "BitbucketReposIcon".
17
+ *
18
+ * Category: Multi-purpose
19
+ * Location: Icon contributions
20
+ * Usage guidance: Known uses: code or source code in Bitbucket and Jira.
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 AngleBracketsIcon = props => /*#__PURE__*/_react.default.createElement(_angleBrackets.default, Object.assign({
25
+ LEGACY_fallbackIcon: _repos.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ AngleBracketsIcon.Name = 'AngleBracketsIconMigration';
29
+ var _default = exports.default = AngleBracketsIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const AppSwitcherIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default AppSwitcherIconMigration;
@@ -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 _appSwitcher = _interopRequireDefault(require("@atlaskit/icon/core/app-switcher"));
9
+ var _switcher = _interopRequireDefault(require("@atlaskit/icon/glyph/switcher"));
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 AppSwitcherIcon.
16
+ * This component is AppSwitcherIcon, with `UNSAFE_fallbackIcon` set to "SwitcherIcon".
17
+ *
18
+ * Category: Single-purpose
19
+ * Location: ADS
20
+ * Usage guidance: Reserved for app switcher in global product navigation.
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 AppSwitcherIcon = props => /*#__PURE__*/_react.default.createElement(_appSwitcher.default, Object.assign({
25
+ LEGACY_fallbackIcon: _switcher.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ AppSwitcherIcon.Name = 'AppSwitcherIconMigration';
29
+ var _default = exports.default = AppSwitcherIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const AppSwitcherIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default AppSwitcherIconMigration;
@@ -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 _appSwitcher = _interopRequireDefault(require("@atlaskit/icon/core/app-switcher"));
9
+ var _appSwitcher2 = _interopRequireDefault(require("@atlaskit/icon/glyph/app-switcher"));
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 AppSwitcherIcon.
16
+ * This component is AppSwitcherIcon, with `UNSAFE_fallbackIcon` set to "AppSwitcherIcon".
17
+ *
18
+ * Category: Single-purpose
19
+ * Location: ADS
20
+ * Usage guidance: Reserved for app switcher in global product navigation.
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 AppSwitcherIcon = props => /*#__PURE__*/_react.default.createElement(_appSwitcher.default, Object.assign({
25
+ LEGACY_fallbackIcon: _appSwitcher2.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ AppSwitcherIcon.Name = 'AppSwitcherIconMigration';
29
+ var _default = exports.default = AppSwitcherIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const DownloadIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default DownloadIconMigration;
@@ -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 _download = _interopRequireDefault(require("@atlaskit/icon/core/download"));
9
+ var _download2 = _interopRequireDefault(require("@atlaskit/icon/glyph/download"));
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 DownloadIcon.
16
+ * This component is DownloadIcon, with `UNSAFE_fallbackIcon` set to "DownloadIcon".
17
+ *
18
+ * Category: Single-purpose
19
+ * Location: ADS
20
+ * Usage guidance: Reserved for file downloads.
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 DownloadIcon = props => /*#__PURE__*/_react.default.createElement(_download.default, Object.assign({
25
+ LEGACY_fallbackIcon: _download2.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ DownloadIcon.Name = 'DownloadIconMigration';
29
+ var _default = exports.default = DownloadIcon;
@@ -2,8 +2,8 @@
2
2
  import React from 'react';
3
3
  import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
4
 
5
- declare const AudioIconMigration: {
5
+ declare const EmojiIconMigration: {
6
6
  (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
7
  displayName: string;
8
8
  };
9
- export default AudioIconMigration;
9
+ export default EmojiIconMigration;
@@ -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 _emoji = _interopRequireDefault(require("@atlaskit/icon/core/emoji"));
9
+ var _people = _interopRequireDefault(require("@atlaskit/icon/glyph/emoji/people"));
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 EmojiIcon.
16
+ * This component is EmojiIcon, with `UNSAFE_fallbackIcon` set to "EmojiPeopleIcon".
17
+ *
18
+ * Category: Single-purpose
19
+ * Location: Icon contributions
20
+ * Usage guidance: Reserved for Editor as a category for Emoji's.
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 EmojiIcon = props => /*#__PURE__*/_react.default.createElement(_emoji.default, Object.assign({
25
+ LEGACY_fallbackIcon: _people.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ EmojiIcon.Name = 'EmojiIconMigration';
29
+ var _default = exports.default = EmojiIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const FlagIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default FlagIconMigration;
@@ -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 _flag = _interopRequireDefault(require("@atlaskit/icon/core/flag"));
9
+ var _flags = _interopRequireDefault(require("@atlaskit/icon/glyph/emoji/flags"));
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 FlagIcon.
16
+ * This component is FlagIcon, with `UNSAFE_fallbackIcon` set to "EmojiFlagsIcon".
17
+ *
18
+ * Category: Multi-purpose
19
+ * Location: Icon contributions
20
+ * Usage guidance: Known uses: flags in Editor, feature flags.
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 FlagIcon = props => /*#__PURE__*/_react.default.createElement(_flag.default, Object.assign({
25
+ LEGACY_fallbackIcon: _flags.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ FlagIcon.Name = 'FlagIconMigration';
29
+ var _default = exports.default = FlagIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const GridIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default GridIconMigration;
@@ -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 _grid = _interopRequireDefault(require("@atlaskit/icon/core/grid"));
9
+ var _table = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/table"));
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 GridIcon.
16
+ * This component is GridIcon, with `UNSAFE_fallbackIcon` set to "EditorTableIcon".
17
+ *
18
+ * Category: Multi-purpose
19
+ * Location: ADS
20
+ * Usage guidance: Known uses: spaces in Confluence, and grid view, all content in Confluence.
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 GridIcon = props => /*#__PURE__*/_react.default.createElement(_grid.default, Object.assign({
25
+ LEGACY_fallbackIcon: _table.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ GridIcon.Name = 'GridIconMigration';
29
+ var _default = exports.default = GridIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const LightbulbIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default LightbulbIconMigration;
@@ -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 _lightbulb = _interopRequireDefault(require("@atlaskit/icon/core/lightbulb"));
9
+ var _lightbulbFilled = _interopRequireDefault(require("@atlaskit/icon/glyph/lightbulb-filled"));
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 LightbulbIcon.
16
+ * This component is LightbulbIcon, with `UNSAFE_fallbackIcon` set to "LightbulbFilledIcon".
17
+ *
18
+ * Category: Multi-purpose
19
+ * Location: ADS
20
+ * Usage guidance: Known uses: learnings in Atlas, initiatives in Jira.
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 LightbulbIcon = props => /*#__PURE__*/_react.default.createElement(_lightbulb.default, Object.assign({
25
+ LEGACY_fallbackIcon: _lightbulbFilled.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ LightbulbIcon.Name = 'LightbulbIconMigration';
29
+ var _default = exports.default = LightbulbIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const LinkIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default LinkIconMigration;
@@ -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 _link = _interopRequireDefault(require("@atlaskit/icon/core/link"));
9
+ var _linkFilled = _interopRequireDefault(require("@atlaskit/icon/glyph/link-filled"));
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 LinkIcon.
16
+ * This component is LinkIcon, with `UNSAFE_fallbackIcon` set to "LinkFilledIcon".
17
+ *
18
+ * Category: Single-purpose
19
+ * Location: ADS
20
+ * Usage guidance: Reserved for links, urls, or copy link.
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 LinkIcon = props => /*#__PURE__*/_react.default.createElement(_link.default, Object.assign({
25
+ LEGACY_fallbackIcon: _linkFilled.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ LinkIcon.Name = 'LinkIconMigration';
29
+ var _default = exports.default = LinkIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const MenuIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default MenuIconMigration;
@@ -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 _menu = _interopRequireDefault(require("@atlaskit/icon/core/menu"));
9
+ var _menuExpand = _interopRequireDefault(require("@atlaskit/icon/glyph/menu-expand"));
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 MenuIcon.
16
+ * This component is MenuIcon, with `UNSAFE_fallbackIcon` set to "MenuExpandIcon".
17
+ *
18
+ * Category: Single-purpose
19
+ * Location: ADS
20
+ * Usage guidance: Reserved for accessing the menu in global product navigation.
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 MenuIcon = props => /*#__PURE__*/_react.default.createElement(_menu.default, Object.assign({
25
+ LEGACY_fallbackIcon: _menuExpand.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ MenuIcon.Name = 'MenuIconMigration';
29
+ var _default = exports.default = MenuIcon;
@@ -0,0 +1,9 @@
1
+
2
+ import React from 'react';
3
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
4
+
5
+ declare const MenuIconMigration: {
6
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default MenuIconMigration;
@@ -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 _menu = _interopRequireDefault(require("@atlaskit/icon/core/menu"));
9
+ var _menu2 = _interopRequireDefault(require("@atlaskit/icon/glyph/menu"));
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 MenuIcon.
16
+ * This component is MenuIcon, with `UNSAFE_fallbackIcon` set to "MenuIcon".
17
+ *
18
+ * Category: Single-purpose
19
+ * Location: ADS
20
+ * Usage guidance: Reserved for accessing the menu in global product navigation.
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 MenuIcon = props => /*#__PURE__*/_react.default.createElement(_menu.default, Object.assign({
25
+ LEGACY_fallbackIcon: _menu2.default
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ MenuIcon.Name = 'MenuIconMigration';
29
+ var _default = exports.default = MenuIcon;