@atlaskit/icon 23.10.1 → 23.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/core/align-center.d.ts +4 -1
  3. package/core/align-left.d.ts +4 -1
  4. package/core/align-right.d.ts +4 -1
  5. package/core/border-weight-medium.d.ts +4 -1
  6. package/core/border-weight-thick.d.ts +4 -1
  7. package/core/border-weight-thin.d.ts +4 -1
  8. package/core/content-align-center.d.ts +4 -1
  9. package/core/content-align-left.d.ts +4 -1
  10. package/core/content-align-right.d.ts +4 -1
  11. package/core/drag-handle-horizontal.d.ts +13 -0
  12. package/core/drag-handle-horizontal.js +31 -0
  13. package/core/drag-handle-vertical.d.ts +13 -0
  14. package/core/drag-handle-vertical.js +31 -0
  15. package/core/drag-handle.d.ts +4 -1
  16. package/core/drag-handle.js +2 -2
  17. package/core/migration/align-image-center--editor-align-image-center.d.ts +15 -0
  18. package/core/migration/align-image-center--editor-align-image-center.js +33 -0
  19. package/core/migration/align-image-left--editor-align-image-left.d.ts +15 -0
  20. package/core/migration/align-image-left--editor-align-image-left.js +33 -0
  21. package/core/migration/align-image-right--editor-align-image-right.d.ts +15 -0
  22. package/core/migration/align-image-right--editor-align-image-right.js +33 -0
  23. package/core/migration/align-text-center--editor-align-center.d.ts +15 -0
  24. package/core/migration/align-text-center--editor-align-center.js +33 -0
  25. package/core/migration/align-text-left--editor-align-left.d.ts +15 -0
  26. package/core/migration/align-text-left--editor-align-left.js +33 -0
  27. package/core/migration/align-text-right--editor-align-right.d.ts +15 -0
  28. package/core/migration/align-text-right--editor-align-right.js +33 -0
  29. package/core/migration/drag-handle--drag-handler.js +2 -2
  30. package/core/migration/drag-handle-vertical--drag-handler.d.ts +15 -0
  31. package/core/migration/drag-handle-vertical--drag-handler.js +33 -0
  32. package/core/migration/refresh.js +2 -2
  33. package/core/migration/stroke-weight-small--media-services-line.d.ts +15 -0
  34. package/core/migration/stroke-weight-small--media-services-line.js +33 -0
  35. package/core/refresh.js +3 -3
  36. package/dist/cjs/deprecated-core.js +57 -2
  37. package/dist/cjs/deprecated-utility.js +10 -2
  38. package/dist/cjs/metadata-core.js +80 -4
  39. package/dist/cjs/metadata-utility.js +26 -2
  40. package/dist/cjs/migration-map.js +48 -8
  41. package/dist/es2019/deprecated-core.js +57 -2
  42. package/dist/es2019/deprecated-utility.js +10 -2
  43. package/dist/es2019/metadata-core.js +80 -4
  44. package/dist/es2019/metadata-utility.js +26 -2
  45. package/dist/es2019/migration-map.js +48 -8
  46. package/dist/esm/deprecated-core.js +57 -2
  47. package/dist/esm/deprecated-utility.js +10 -2
  48. package/dist/esm/metadata-core.js +80 -4
  49. package/dist/esm/metadata-utility.js +26 -2
  50. package/dist/esm/migration-map.js +48 -8
  51. package/dist/types/deprecated-core.d.ts +1 -1
  52. package/dist/types/deprecated-utility.d.ts +1 -1
  53. package/dist/types/metadata-core.d.ts +1 -1
  54. package/dist/types/metadata-utility.d.ts +1 -1
  55. package/dist/types-ts4.5/deprecated-core.d.ts +1 -1
  56. package/dist/types-ts4.5/deprecated-utility.d.ts +1 -1
  57. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  58. package/dist/types-ts4.5/metadata-utility.d.ts +1 -1
  59. package/glyph/drag-handler.js +2 -2
  60. package/glyph/editor/align-center.js +2 -2
  61. package/glyph/editor/align-image-center.js +2 -2
  62. package/glyph/editor/align-image-left.js +2 -2
  63. package/glyph/editor/align-image-right.js +2 -2
  64. package/glyph/editor/align-left.js +2 -2
  65. package/glyph/editor/align-right.js +2 -2
  66. package/glyph/media-services/line.js +2 -2
  67. package/package.json +1 -1
  68. package/svgs/core/drag-handle-horizontal.svg +1 -0
  69. package/svgs/core/drag-handle-vertical.svg +1 -0
  70. package/svgs/core/refresh.svg +1 -1
  71. package/svgs/utility/drag-handle-horizontal.svg +1 -0
  72. package/svgs/utility/drag-handle-vertical.svg +1 -0
  73. package/utility/drag-handle-horizontal.d.ts +13 -0
  74. package/utility/drag-handle-horizontal.js +32 -0
  75. package/utility/drag-handle-vertical.d.ts +13 -0
  76. package/utility/drag-handle-vertical.js +32 -0
  77. package/utility/drag-handle.d.ts +4 -1
  78. package/utility/drag-handle.js +2 -2
  79. package/utility/migration/drag-handle--drag-handler.js +2 -2
  80. package/utility/migration/drag-handle-vertical--drag-handler.d.ts +15 -0
  81. package/utility/migration/drag-handle-vertical--drag-handler.js +33 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @atlaskit/icon
2
2
 
3
+ ## 23.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#114599](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114599)
8
+ [`bea386785f6f4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bea386785f6f4) -
9
+ This release adds, updates and deprecates icons in `@atlaskit/icon`.
10
+
11
+ ### Added:
12
+
13
+ **`@atlaskit/icon/core`**
14
+
15
+ - `drag-handle-horizontal`
16
+ - `drag-handle-vertical`
17
+
18
+ **`@atlaskit/icon/utility`**
19
+
20
+ - `drag-handle-horizontal`
21
+ - `drag-handle-vertical`
22
+
23
+ ### Updated:
24
+
25
+ **`@atlaskit/icon/core`**
26
+
27
+ - `refresh`
28
+ - `text-strikethrough`
29
+
30
+ ### Deprecated:
31
+
32
+ **`@atlaskit/icon/core`**
33
+
34
+ - `content-align-center`
35
+ - `content-align-left`
36
+ - `content-align-right`
37
+ - `border-weight-medium`
38
+ - `border-weight-thick`
39
+ - `border-weight-thin`
40
+ - `align-center`
41
+ - `align-left`
42
+ - `align-right`
43
+
3
44
  ## 23.10.1
4
45
 
5
46
  ### Patch Changes
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::adb8c1ee5cbfa3c66db4e7b85388dbc1>>
3
+ * @codegen <<SignedSource::94719a3f2cfaa3692fead765cbad4245>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "align-center" is deprecated in favour of "align-text-center" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const AlignCenterIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::89655cd0365c3bf4a11636b3a891ab28>>
3
+ * @codegen <<SignedSource::4a73a33fc0ad0edbdd11496f434abfde>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "align-left" is deprecated in favour of "align-text-left" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const AlignLeftIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::a7943b422c127a5ab8790be328ba58e9>>
3
+ * @codegen <<SignedSource::bb5dbc6b14b8902076a6a5c7fd8ae91d>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "align-right" is deprecated in favour of "align-text-right" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const AlignRightIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::4b485463d182e1c9628111dd3a59b518>>
3
+ * @codegen <<SignedSource::68054f261a3d4a84a198d34b2c93b429>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "border-weight-medium" is deprecated in favour of "stroke-weight-medium" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const BorderWeightMediumIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::779e47fab82e97de70a079251991f351>>
3
+ * @codegen <<SignedSource::ad7c6b2d7086a52c6082a9c1c7623a27>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "border-weight-thick" is deprecated in favour of "stroke-weight-large" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const BorderWeightThickIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::2cb30c1b8303acadc90aed6e2e4b9fa2>>
3
+ * @codegen <<SignedSource::b706ce1e1f9a034b2af6f814a6a2c9a4>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "border-weight-thin" is deprecated in favour of "stroke-weight-small" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const BorderWeightThinIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::feec0a71cb3a40ebc1a27ef18b10362c>>
3
+ * @codegen <<SignedSource::c48e4fd27109e50ca9988f8dd4f9b4bd>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "content-align-center" is deprecated in favour of "align-image-center" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const ContentAlignCenterIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::032c825d0203fd9062e89646a5e04f9d>>
3
+ * @codegen <<SignedSource::18f1e4def90e50feb7f640b2f8da2a92>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "content-align-left" is deprecated in favour of "align-image-left" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const ContentAlignLeftIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::ed7eec0f0b2a35551b86cb692f58c039>>
3
+ * @codegen <<SignedSource::c63516352cf3755557b5ebfd2c57518b>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "content-align-right" is deprecated in favour of "align-image-right" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const ContentAlignRightIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::33a89993d7fc969f72c73d487392f841>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const DragHandleHorizontalIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default DragHandleHorizontalIcon;
@@ -0,0 +1,31 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::371dbbdb3311a2882d5d17a05cb6ade8>>
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 _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
+ * Please reach out in #icon-contributions before using these in production.
18
+ *
19
+ * Icon: "DragHandleHorizontal".
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Single purpose - Reserved for draggle elements, like columns.
23
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
+ */
26
+ const DragHandleHorizontalIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
27
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M13.25 7a1.75 1.75 0 1 1 0-3.5 1.75 1.75 0 0 1 0 3.5m0 5.5a1.75 1.75 0 1 1 0-3.5 1.75 1.75 0 0 1 0 3.5M8 7a1.75 1.75 0 1 1 0-3.5A1.75 1.75 0 0 1 8 7m0 5.5A1.75 1.75 0 1 1 8 9a1.75 1.75 0 0 1 0 3.5M2.75 7a1.75 1.75 0 1 1 0-3.5 1.75 1.75 0 0 1 0 3.5m0 5.5a1.75 1.75 0 1 1 0-3.5 1.75 1.75 0 0 1 0 3.5"/>`
28
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
+ }, props));
30
+ DragHandleHorizontalIcon.displayName = 'DragHandleHorizontalIcon';
31
+ var _default = exports.default = DragHandleHorizontalIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::48da34ba812ceba62dc1fd828e1b17d8>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const DragHandleVerticalIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default DragHandleVerticalIcon;
@@ -0,0 +1,31 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::4481c307497582287ccd465c3de9a051>>
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 _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
+ * Please reach out in #icon-contributions before using these in production.
18
+ *
19
+ * Icon: "DragHandleVertical".
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Single purpose - Reserved for draggable elements, like rows.
23
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
+ */
26
+ const DragHandleVerticalIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
27
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M7 2.75a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0m5.5 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0M7 8a1.75 1.75 0 1 1-3.5 0A1.75 1.75 0 0 1 7 8m5.5 0A1.75 1.75 0 1 1 9 8a1.75 1.75 0 0 1 3.5 0M7 13.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0m5.5 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0"/>`
28
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
+ }, props));
30
+ DragHandleVerticalIcon.displayName = 'DragHandleVerticalIcon';
31
+ var _default = exports.default = DragHandleVerticalIcon;
@@ -1,11 +1,14 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::6a4bb4e3a8801481468cddc653228e14>>
3
+ * @codegen <<SignedSource::71343f8f1c1ed4e98189aed74a53a5f6>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
7
  import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
8
 
9
+ /**
10
+ * @deprecated The icon "drag-handle" is deprecated in favour of "drag-handle-vertical" from “@atlaskit/icon/core”
11
+ */
9
12
  declare const DragHandleIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::3181b9cde7676d7293ffd42729a41788>>
3
+ * @codegen <<SignedSource::91e617a25717aeb2c294de92433f73ef>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -19,7 +19,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
19
19
  * Icon: "DragHandle".
20
20
  * Category: single-purpose
21
21
  * Location: @atlaskit/icon
22
- * Usage guidance: Single purpose - Reserved for draggable elements.
22
+ * Usage guidance: Single purpose - Reserved for draggable elements, like rows.
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::de01422ff5f06f347c9c54896ce362b8>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
9
+ import Icon from '@atlaskit/icon/base-new';
10
+
11
+ declare const AlignImageCenterIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default AlignImageCenterIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::db17750e2ede7e5062415ef38861df82>>
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 _alignImageCenter = _interopRequireDefault(require("@atlaskit/icon/core/align-image-center"));
14
+ var _alignImageCenter2 = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/align-image-center"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for AlignImageCenterIcon.
20
+ * This component is AlignImageCenterIcon, with `UNSAFE_fallbackIcon` set to "EditorAlignImageCenterIcon".
21
+ *
22
+ * Category: single-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Single purpose - Reserved for center aligning media and content.
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 AlignImageCenterIcon = props => /*#__PURE__*/_react.default.createElement(_alignImageCenter.default, Object.assign({
29
+ LEGACY_fallbackIcon: _alignImageCenter2.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ AlignImageCenterIcon.Name = 'AlignImageCenterIconMigration';
33
+ var _default = exports.default = AlignImageCenterIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::b39d28bae398c9685b0b34c2cefb0aac>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
9
+ import Icon from '@atlaskit/icon/base-new';
10
+
11
+ declare const AlignImageLeftIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default AlignImageLeftIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::31739d658087d626115b99927952d6c8>>
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 _alignImageLeft = _interopRequireDefault(require("@atlaskit/icon/core/align-image-left"));
14
+ var _alignImageLeft2 = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/align-image-left"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for AlignImageLeftIcon.
20
+ * This component is AlignImageLeftIcon, with `UNSAFE_fallbackIcon` set to "EditorAlignImageLeftIcon".
21
+ *
22
+ * Category: single-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Single purpose - Reserved for left aligning media and content.
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 AlignImageLeftIcon = props => /*#__PURE__*/_react.default.createElement(_alignImageLeft.default, Object.assign({
29
+ LEGACY_fallbackIcon: _alignImageLeft2.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ AlignImageLeftIcon.Name = 'AlignImageLeftIconMigration';
33
+ var _default = exports.default = AlignImageLeftIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::4cf53928044d4e179e6627bc9ad6cc72>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
9
+ import Icon from '@atlaskit/icon/base-new';
10
+
11
+ declare const AlignImageRightIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default AlignImageRightIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::608e1722db7b7ac82be57a670f20e5f8>>
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 _alignImageRight = _interopRequireDefault(require("@atlaskit/icon/core/align-image-right"));
14
+ var _alignImageRight2 = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/align-image-right"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for AlignImageRightIcon.
20
+ * This component is AlignImageRightIcon, with `UNSAFE_fallbackIcon` set to "EditorAlignImageRightIcon".
21
+ *
22
+ * Category: single-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Single purpose - Reserved for right aligning media and content.
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 AlignImageRightIcon = props => /*#__PURE__*/_react.default.createElement(_alignImageRight.default, Object.assign({
29
+ LEGACY_fallbackIcon: _alignImageRight2.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ AlignImageRightIcon.Name = 'AlignImageRightIconMigration';
33
+ var _default = exports.default = AlignImageRightIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8debe7e1a5d61af76523b6165e18083c>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
9
+ import Icon from '@atlaskit/icon/base-new';
10
+
11
+ declare const AlignTextCenterIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default AlignTextCenterIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::04a654b3b1ec0246e60567550cf61dd6>>
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 _alignTextCenter = _interopRequireDefault(require("@atlaskit/icon/core/align-text-center"));
14
+ var _alignCenter = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/align-center"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for AlignTextCenterIcon.
20
+ * This component is AlignTextCenterIcon, with `UNSAFE_fallbackIcon` set to "EditorAlignCenterIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: align text center, align center.
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 AlignTextCenterIcon = props => /*#__PURE__*/_react.default.createElement(_alignTextCenter.default, Object.assign({
29
+ LEGACY_fallbackIcon: _alignCenter.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ AlignTextCenterIcon.Name = 'AlignTextCenterIconMigration';
33
+ var _default = exports.default = AlignTextCenterIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::dfd04740cf5384ffa46f2bef32e6b7ca>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
9
+ import Icon from '@atlaskit/icon/base-new';
10
+
11
+ declare const AlignTextLeftIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default AlignTextLeftIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::edd69f1dc202d655d5839c0a296fc693>>
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 _alignTextLeft = _interopRequireDefault(require("@atlaskit/icon/core/align-text-left"));
14
+ var _alignLeft = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/align-left"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for AlignTextLeftIcon.
20
+ * This component is AlignTextLeftIcon, with `UNSAFE_fallbackIcon` set to "EditorAlignLeftIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: align text left, align content left, summary.
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 AlignTextLeftIcon = props => /*#__PURE__*/_react.default.createElement(_alignTextLeft.default, Object.assign({
29
+ LEGACY_fallbackIcon: _alignLeft.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ AlignTextLeftIcon.Name = 'AlignTextLeftIconMigration';
33
+ var _default = exports.default = AlignTextLeftIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::4a9dec2f8b328bee967d264a9ede026a>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
9
+ import Icon from '@atlaskit/icon/base-new';
10
+
11
+ declare const AlignTextRightIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default AlignTextRightIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::841308ba6652e6cadc5b4034b5d91cc4>>
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 _alignTextRight = _interopRequireDefault(require("@atlaskit/icon/core/align-text-right"));
14
+ var _alignRight = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/align-right"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for AlignTextRightIcon.
20
+ * This component is AlignTextRightIcon, with `UNSAFE_fallbackIcon` set to "EditorAlignRightIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: align text right, align content right.
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 AlignTextRightIcon = props => /*#__PURE__*/_react.default.createElement(_alignTextRight.default, Object.assign({
29
+ LEGACY_fallbackIcon: _alignRight.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ AlignTextRightIcon.Name = 'AlignTextRightIconMigration';
33
+ var _default = exports.default = AlignTextRightIcon;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::b1f020b52f532dd63303bdd95008cda2>>
3
+ * @codegen <<SignedSource::efe12828f5ff62e9046b60695b745e32>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  *
22
22
  * Category: single-purpose
23
23
  * Location: @atlaskit/icon
24
- * Usage guidance: Single purpose - Reserved for draggable elements.
24
+ * Usage guidance: Single purpose - Reserved for draggable elements, like rows.
25
25
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
26
26
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
27
27
  */