@atlaskit/icon 22.24.0 → 22.24.2

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 (57) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/afm-cc/tsconfig.json +1 -2
  3. package/afm-jira/tsconfig.json +26 -26
  4. package/afm-post-office/tsconfig.json +26 -26
  5. package/core/arrow-down-right.js +2 -2
  6. package/core/arrow-up-left.js +2 -2
  7. package/core/bulleted-list.js +1 -1
  8. package/core/expand.js +1 -2
  9. package/core/migration/content-wrap-left--editor-media-wrap-left.d.ts +15 -0
  10. package/core/migration/content-wrap-left--editor-media-wrap-left.js +33 -0
  11. package/core/migration/content-wrap-right--editor-media-wrap-right.d.ts +15 -0
  12. package/core/migration/content-wrap-right--editor-media-wrap-right.js +33 -0
  13. package/core/migration/discovery--editor-note.d.ts +15 -0
  14. package/core/migration/discovery--editor-note.js +33 -0
  15. package/core/migration/file--document-filled.d.ts +15 -0
  16. package/core/migration/file--document-filled.js +33 -0
  17. package/core/migration/file--document.d.ts +15 -0
  18. package/core/migration/file--document.js +33 -0
  19. package/core/migration/files--documents.d.ts +15 -0
  20. package/core/migration/files--documents.js +33 -0
  21. package/core/migration/minus--editor-divider.d.ts +15 -0
  22. package/core/migration/minus--editor-divider.js +33 -0
  23. package/core/migration/video--hipchat-sd-video.js +2 -2
  24. package/core/migration/video--media-services-video.js +2 -2
  25. package/core/migration/video--vid-camera-on.js +2 -2
  26. package/core/migration/video--video-circle.js +2 -2
  27. package/core/migration/video--video-filled.js +2 -2
  28. package/core/scales.js +2 -2
  29. package/core/screen-plus.js +2 -2
  30. package/core/send.js +2 -2
  31. package/core/smart-link.js +2 -2
  32. package/core/status-verified.js +2 -2
  33. package/core/video.js +2 -2
  34. package/dist/cjs/components/icon.js +5 -4
  35. package/dist/cjs/entry-points/metadata.js +15 -1
  36. package/dist/cjs/metadata-core.js +12 -8
  37. package/dist/cjs/migration-map.js +39 -4
  38. package/dist/es2019/components/icon.js +1 -3
  39. package/dist/es2019/entry-points/metadata.js +3 -1
  40. package/dist/es2019/metadata-core.js +12 -8
  41. package/dist/es2019/migration-map.js +39 -4
  42. package/dist/esm/components/icon.js +5 -4
  43. package/dist/esm/entry-points/metadata.js +3 -1
  44. package/dist/esm/metadata-core.js +12 -8
  45. package/dist/esm/migration-map.js +39 -4
  46. package/dist/types/entry-points/metadata.d.ts +2 -0
  47. package/dist/types/metadata-core.d.ts +1 -1
  48. package/dist/types-ts4.5/entry-points/metadata.d.ts +2 -0
  49. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  50. package/glyph/document-filled.js +2 -2
  51. package/glyph/document.js +2 -2
  52. package/glyph/documents.js +2 -2
  53. package/glyph/editor/divider.js +4 -1
  54. package/glyph/editor/media-wrap-left.js +4 -1
  55. package/glyph/editor/media-wrap-right.js +4 -1
  56. package/glyph/editor/note.js +2 -2
  57. package/package.json +45 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @atlaskit/icon
2
2
 
3
+ ## 22.24.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#160518](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/160518)
8
+ [`a59ea189efe8c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a59ea189efe8c) -
9
+ Fix bug with core icons: `send`, `scale` and `status-verified`
10
+
11
+ ## 22.24.1
12
+
13
+ ### Patch Changes
14
+
15
+ - [#157955](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/157955)
16
+ [`ea8ebc84a9079`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ea8ebc84a9079) -
17
+ Updated migration mapping for several icon entrypoints.
18
+
19
+ **`@atlaskit/icon/core/migration`**
20
+
21
+ - `content-wrap-left--editor-media-wrap-left`
22
+ - `content-wrap-right--editor-media-wrap-right`
23
+ - `discovery--editor-note`
24
+ - `file--document-filled`
25
+ - `file--document`
26
+ - `files--documents`
27
+ - `minus--editor-divider`
28
+
29
+ Updated legacy icons to map to new icons via the icon facade:
30
+
31
+ - document → file
32
+ - document-filled → file
33
+ - documents → files
34
+ - editor/divider → minus
35
+ - editor/media-wrap-left → content-wrap-left
36
+ - editor/media-wrap-right → content-wrap-right
37
+ - editor/note → discovery
38
+
3
39
  ## 22.24.0
4
40
 
5
41
  ### Minor Changes
@@ -5,8 +5,7 @@
5
5
  "target": "es5",
6
6
  "composite": true,
7
7
  "outDir": "../dist",
8
- "rootDir": "../",
9
- "baseUrl": "../"
8
+ "rootDir": "../"
10
9
  },
11
10
  "include": [
12
11
  "../src/**/*.ts",
@@ -1,27 +1,27 @@
1
1
  {
2
- "extends": "../../../../tsconfig.entry-points.jira.json",
3
- "compilerOptions": {
4
- "declaration": true,
5
- "target": "es5",
6
- "outDir": "../../../../../tsDist/@atlaskit__icon/app",
7
- "composite": true,
8
- "rootDir": "../"
9
- },
10
- "include": [
11
- "../src/**/*.ts",
12
- "../src/**/*.tsx"
13
- ],
14
- "exclude": [
15
- "../src/**/__tests__/*",
16
- "../src/**/*.test.*",
17
- "../src/**/test.*"
18
- ],
19
- "references": [
20
- {
21
- "path": "../../../platform/feature-flags/afm-jira/tsconfig.json"
22
- },
23
- {
24
- "path": "../../tokens/afm-jira/tsconfig.json"
25
- }
26
- ]
27
- }
2
+ "extends": "../../../../tsconfig.entry-points.jira.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../tsDist/@atlaskit__icon/app",
7
+ "rootDir": "../",
8
+ "composite": true
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../../platform/feature-flags/afm-jira/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../tokens/afm-jira/tsconfig.json"
25
+ }
26
+ ]
27
+ }
@@ -1,27 +1,27 @@
1
1
  {
2
- "extends": "../../../../tsconfig.entry-points.post-office.json",
3
- "compilerOptions": {
4
- "declaration": true,
5
- "target": "es5",
6
- "outDir": "../../../../../tsDist/@atlaskit__icon/app",
7
- "composite": true,
8
- "rootDir": "../"
9
- },
10
- "include": [
11
- "../src/**/*.ts",
12
- "../src/**/*.tsx"
13
- ],
14
- "exclude": [
15
- "../src/**/__tests__/*",
16
- "../src/**/*.test.*",
17
- "../src/**/test.*"
18
- ],
19
- "references": [
20
- {
21
- "path": "../../../platform/feature-flags/afm-post-office/tsconfig.json"
22
- },
23
- {
24
- "path": "../../tokens/afm-post-office/tsconfig.json"
25
- }
26
- ]
27
- }
2
+ "extends": "../../../../tsconfig.entry-points.post-office.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../post-office/tsDist/@atlaskit__icon/app",
7
+ "rootDir": "../",
8
+ "composite": true
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../../platform/feature-flags/afm-post-office/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../tokens/afm-post-office/tsconfig.json"
25
+ }
26
+ ]
27
+ }
@@ -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::6a9f5ee98156f63d62305feba12bfad4>>
3
+ * @codegen <<SignedSource::eda0bdc253772efe6fc5227280ff2166>>
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: "ArrowDownRight".
20
20
  * Category: multi-purpose
21
21
  * Location: @atlaskit/icon
22
- * Usage guidance: Multi purpose
22
+ * Usage guidance: Known uses: TBC
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
  */
@@ -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::9b4f3099fbcaa563c8c9387fbfa08b6a>>
3
+ * @codegen <<SignedSource::acb0c2c38bbaaab859d63d96902a03f9>>
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: "ArrowUpLeft".
20
20
  * Category: multi-purpose
21
21
  * Location: @atlaskit/icon
22
- * Usage guidance: Multi purpose
22
+ * Usage guidance: Known uses: TBC
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
  */
@@ -29,4 +29,4 @@ const BulletedListIcon = props => /*#__PURE__*/_react.default.createElement(_UNS
29
29
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
30
30
  }, props));
31
31
  BulletedListIcon.displayName = 'BulletedListIcon';
32
- var _default = exports.default = BulletedListIcon;
32
+ var _default = exports.default = BulletedListIcon;
package/core/expand.js CHANGED
@@ -13,7 +13,6 @@ var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
14
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
- * @deprecated Use `@atlaskit/icon/core/maximize` instead.
17
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
17
  * Please reach out in #icon-contributions before using these in production.
19
18
  *
@@ -29,4 +28,4 @@ const ExpandIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_ba
29
28
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
30
29
  }, props));
31
30
  ExpandIcon.displayName = 'ExpandIcon';
32
- var _default = exports.default = ExpandIcon;
31
+ var _default = exports.default = ExpandIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::ed123c466ae8d0fca547a321571416d1>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
10
+
11
+ declare const ContentWrapLeftIconMigration: {
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default ContentWrapLeftIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::aa78811470485bb3a924a1ffc7ba2346>>
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 _contentWrapLeft = _interopRequireDefault(require("@atlaskit/icon/core/content-wrap-left"));
14
+ var _mediaWrapLeft = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/media-wrap-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 ContentWrapLeftIcon.
20
+ * This component is ContentWrapLeftIcon, with `UNSAFE_fallbackIcon` set to "EditorMediaWrapLeftIcon".
21
+ *
22
+ * Category: single-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Single purpose - Reserved for left aligning media and content with wrapping enabled.
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 ContentWrapLeftIcon = props => /*#__PURE__*/_react.default.createElement(_contentWrapLeft.default, Object.assign({
29
+ LEGACY_fallbackIcon: _mediaWrapLeft.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ ContentWrapLeftIcon.Name = 'ContentWrapLeftIconMigration';
33
+ var _default = exports.default = ContentWrapLeftIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::ad0c6c4b1a9194856d4378bd807d8750>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
10
+
11
+ declare const ContentWrapRightIconMigration: {
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default ContentWrapRightIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::55a7f1c09c25653217ff074c79cc9853>>
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 _contentWrapRight = _interopRequireDefault(require("@atlaskit/icon/core/content-wrap-right"));
14
+ var _mediaWrapRight = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/media-wrap-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 ContentWrapRightIcon.
20
+ * This component is ContentWrapRightIcon, with `UNSAFE_fallbackIcon` set to "EditorMediaWrapRightIcon".
21
+ *
22
+ * Category: single-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Single purpose - Reserved for right aligning media and content with wrapping enabled.
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 ContentWrapRightIcon = props => /*#__PURE__*/_react.default.createElement(_contentWrapRight.default, Object.assign({
29
+ LEGACY_fallbackIcon: _mediaWrapRight.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ ContentWrapRightIcon.Name = 'ContentWrapRightIconMigration';
33
+ var _default = exports.default = ContentWrapRightIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::7d66bdbe58cc695156fc227a0654ef06>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
10
+
11
+ declare const DiscoveryIconMigration: {
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default DiscoveryIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::9af21fe67c79950014f02edbb68b85b0>>
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 _discovery = _interopRequireDefault(require("@atlaskit/icon/core/discovery"));
14
+ var _note = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/note"));
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 DiscoveryIcon.
20
+ * This component is DiscoveryIcon, with `UNSAFE_fallbackIcon` set to "EditorNoteIcon".
21
+ *
22
+ * Category: single-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Single purpose - Reserved for representing discovery. Used for Note info panel variant in Editor.
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 DiscoveryIcon = props => /*#__PURE__*/_react.default.createElement(_discovery.default, Object.assign({
29
+ LEGACY_fallbackIcon: _note.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ DiscoveryIcon.Name = 'DiscoveryIconMigration';
33
+ var _default = exports.default = DiscoveryIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::fa14c6d08e368b33546e9c56821965d4>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
10
+
11
+ declare const FileIconMigration: {
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default FileIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::4afbad9fc39f7f3368478b0974fa96af>>
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 _file = _interopRequireDefault(require("@atlaskit/icon/core/file"));
14
+ var _documentFilled = _interopRequireDefault(require("@atlaskit/icon/glyph/document-filled"));
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 FileIcon.
20
+ * This component is FileIcon, with `UNSAFE_fallbackIcon` set to "DocumentFilledIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: document, file. Do not use to represent a page — use the dedicated 'Page' icon instead.
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 FileIcon = props => /*#__PURE__*/_react.default.createElement(_file.default, Object.assign({
29
+ LEGACY_fallbackIcon: _documentFilled.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ FileIcon.Name = 'FileIconMigration';
33
+ var _default = exports.default = FileIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::fa14c6d08e368b33546e9c56821965d4>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
10
+
11
+ declare const FileIconMigration: {
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default FileIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::4f1cf86304d50bc1fd5a255b20c6e894>>
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 _file = _interopRequireDefault(require("@atlaskit/icon/core/file"));
14
+ var _document = _interopRequireDefault(require("@atlaskit/icon/glyph/document"));
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 FileIcon.
20
+ * This component is FileIcon, with `UNSAFE_fallbackIcon` set to "DocumentIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: document, file. Do not use to represent a page — use the dedicated 'Page' icon instead.
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 FileIcon = props => /*#__PURE__*/_react.default.createElement(_file.default, Object.assign({
29
+ LEGACY_fallbackIcon: _document.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ FileIcon.Name = 'FileIconMigration';
33
+ var _default = exports.default = FileIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::1fa3fa8bdde7f161ef03648f6b07d507>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
10
+
11
+ declare const FilesIconMigration: {
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default FilesIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::6dc1a5b1450546971bd4971237c7fcf0>>
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 _files = _interopRequireDefault(require("@atlaskit/icon/core/files"));
14
+ var _documents = _interopRequireDefault(require("@atlaskit/icon/glyph/documents"));
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 FilesIcon.
20
+ * This component is FilesIcon, with `UNSAFE_fallbackIcon` set to "DocumentsIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: documents, files. Do not use to represent pages — use the dedicated 'Pages' icon instead.
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 FilesIcon = props => /*#__PURE__*/_react.default.createElement(_files.default, Object.assign({
29
+ LEGACY_fallbackIcon: _documents.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ FilesIcon.Name = 'FilesIconMigration';
33
+ var _default = exports.default = FilesIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::0695dd20fb5e5b1c65d4e21a9a397ff2>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
10
+
11
+ declare const MinusIconMigration: {
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default MinusIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::4672c42339fc6e042990bac4beef63a0>>
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 _minus = _interopRequireDefault(require("@atlaskit/icon/core/minus"));
14
+ var _divider = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/divider"));
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 MinusIcon.
20
+ * This component is MinusIcon, with `UNSAFE_fallbackIcon` set to "EditorDividerIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: horizontal rule in Editor.
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 MinusIcon = props => /*#__PURE__*/_react.default.createElement(_minus.default, Object.assign({
29
+ LEGACY_fallbackIcon: _divider.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ MinusIcon.Name = 'MinusIconMigration';
33
+ var _default = exports.default = MinusIcon;
@@ -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::e27cbcae4692252d3ae14d50c5a4acb9>>
3
+ * @codegen <<SignedSource::d7c297bfc282c7156b5606237c5f61c7>>
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 video in Media.
24
+ * Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
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
  */
@@ -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::fa2c2619bbf5b60b0a58cdf1f9af2753>>
3
+ * @codegen <<SignedSource::406f2b568fd585db8bdb2307b1b2908c>>
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 video in Media.
24
+ * Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
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
  */
@@ -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::6640ac50dac0baf46ec25e07652f162c>>
3
+ * @codegen <<SignedSource::f54c1779846e16ec02ddd36e2f649b12>>
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 video in Media.
24
+ * Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
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
  */
@@ -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::e4964785a456acdca1b61f07a8f603cb>>
3
+ * @codegen <<SignedSource::2657455b65981a3ffb405a9c0cc5ee56>>
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 video in Media.
24
+ * Usage guidance: Single purpose - Reserved for representing video content across Atlassian and Loom.
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
  */