@atlaskit/icon 27.3.0 → 27.5.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 (51) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/afm-dev-agents/tsconfig.json +27 -0
  3. package/afm-rovo-extension/tsconfig.json +27 -0
  4. package/core/ai-chat.js +3 -3
  5. package/core/collapse-horizontal.js +2 -2
  6. package/core/collapse-vertical.js +2 -2
  7. package/core/expand-horizontal.js +2 -2
  8. package/core/expand-vertical.js +2 -2
  9. package/core/migration/status-error--error.d.ts +15 -0
  10. package/core/migration/status-error--error.js +32 -0
  11. package/core/migration/status-information--editor-info.d.ts +15 -0
  12. package/core/migration/status-information--editor-info.js +33 -0
  13. package/core/migration/status-information--editor-panel.d.ts +15 -0
  14. package/core/migration/status-information--editor-panel.js +33 -0
  15. package/core/migration/status-information--info.d.ts +15 -0
  16. package/core/migration/status-information--info.js +33 -0
  17. package/core/migration/status-success--check-circle.d.ts +15 -0
  18. package/core/migration/status-success--check-circle.js +31 -0
  19. package/core/migration/status-success--editor-success.d.ts +15 -0
  20. package/core/migration/status-success--editor-success.js +31 -0
  21. package/core/migration/status-warning--editor-warning.d.ts +15 -0
  22. package/core/migration/status-warning--editor-warning.js +32 -0
  23. package/core/migration/status-warning--warning.d.ts +15 -0
  24. package/core/migration/status-warning--warning.js +32 -0
  25. package/dist/cjs/deprecated-utility.js +1 -1
  26. package/dist/cjs/metadata-core.js +8 -4
  27. package/dist/cjs/migration-map.js +47 -8
  28. package/dist/es2019/deprecated-utility.js +1 -1
  29. package/dist/es2019/metadata-core.js +8 -4
  30. package/dist/es2019/migration-map.js +47 -8
  31. package/dist/esm/deprecated-utility.js +1 -1
  32. package/dist/esm/metadata-core.js +8 -4
  33. package/dist/esm/migration-map.js +47 -8
  34. package/dist/types/deprecated-utility.d.ts +1 -1
  35. package/dist/types/metadata-core.d.ts +1 -1
  36. package/dist/types-ts4.5/deprecated-utility.d.ts +1 -1
  37. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  38. package/glyph/check-circle.js +2 -2
  39. package/glyph/editor/info.js +2 -2
  40. package/glyph/editor/panel.js +2 -2
  41. package/glyph/editor/success.js +2 -2
  42. package/glyph/editor/warning.js +2 -2
  43. package/glyph/error.js +2 -2
  44. package/glyph/info.js +2 -2
  45. package/glyph/warning.js +2 -2
  46. package/package.json +5 -5
  47. package/svgs/core/ai-chat.svg +1 -1
  48. package/svgs/core/collapse-horizontal.svg +1 -1
  49. package/svgs/core/collapse-vertical.svg +1 -1
  50. package/svgs/core/expand-horizontal.svg +1 -1
  51. package/svgs/core/expand-vertical.svg +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,48 @@
1
1
  # @atlaskit/icon
2
2
 
3
+ ## 27.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#188295](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188295)
8
+ [`301478c2f2125`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/301478c2f2125) -
9
+ This release updates icons in `@atlaskit/icon`.
10
+
11
+ ### Updated:
12
+
13
+ **`@atlaskit/icon/core`**
14
+
15
+ - `ai-chat`
16
+ - `collapse-horizontal`
17
+ - `collapse-vertical`
18
+ - `expand-horizontal`
19
+ - `expand-vertical`
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+
25
+ ## 27.4.0
26
+
27
+ ### Minor Changes
28
+
29
+ - [#188287](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188287)
30
+ [`ecadaec5669f6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ecadaec5669f6) -
31
+ Updated migration mapping for several icon entrypoints.
32
+
33
+ **`@atlaskit/icon/core/migration`**
34
+
35
+ - `close--cross → cross`
36
+ - `close--editor-close → cross--editor-close`
37
+ - `error → status-error--error`
38
+ - `information--editor-info → status-information--editor-info`
39
+ - `information--editor-panel → status-information--editor-panel`
40
+ - `information--info → status-information--info`
41
+ - `success--check-circle → status-success--check-circle`
42
+ - `success--editor-success → status-success--editor-success`
43
+ - `warning--editor-warning → status-warning--editor-warning`
44
+ - `warning → status-warning--warning`
45
+
3
46
  ## 27.3.0
4
47
 
5
48
  ### Minor Changes
@@ -0,0 +1,27 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.dev-agents.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../dev-agents/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-dev-agents/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../tokens/afm-dev-agents/tsconfig.json"
25
+ }
26
+ ]
27
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.rovo-extension.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../rovo-extension/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-rovo-extension/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../tokens/afm-rovo-extension/tsconfig.json"
25
+ }
26
+ ]
27
+ }
package/core/ai-chat.js CHANGED
@@ -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::7997b223b163fea361e6870d11885d8e>>
3
+ * @codegen <<SignedSource::fcac7b446191c258fa1c423f5b71fe45>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -16,12 +16,12 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
16
16
  * Icon: "AiChat".
17
17
  * Category: single-purpose
18
18
  * Location: @atlaskit/icon
19
- * Usage guidance: Single purpose - Reserved for Rovo Chat.
19
+ * Usage guidance: Reserved for Rovo Chat.
20
20
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const AiChatIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M0 3.125A2.625 2.625 0 0 1 2.625.5h10.75A2.625 2.625 0 0 1 16 3.125v8.25A2.625 2.625 0 0 1 13.375 14H4.449l-3.327 1.901A.75.75 0 0 1 0 15.25zM2.625 2C2.004 2 1.5 2.504 1.5 3.125v10.833L4.05 12.5h9.325c.621 0 1.125-.504 1.125-1.125v-8.25C14.5 2.504 13.996 2 13.375 2z" clip-rule="evenodd"/><path fill="currentcolor" d="M6 7.25a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M0 3.125A2.625 2.625 0 0 1 2.625.5H8V2H2.625C2.004 2 1.5 2.504 1.5 3.125v10.832L4.05 12.5h9.325c.621 0 1.125-.504 1.125-1.125V8.5H16v2.875A2.625 2.625 0 0 1 13.375 14H4.449l-3.327 1.901A.75.75 0 0 1 0 15.25z"/><path fill="currentcolor" d="M12.616.509a.75.75 0 0 1 .59.484l.613 1.687 1.688.615A.75.75 0 0 1 16 4l-.009.116a.75.75 0 0 1-.484.59l-1.688.613-.614 1.688a.75.75 0 0 1-.589.484L12.5 7.5a.75.75 0 0 1-.705-.493l-.615-1.688-1.687-.614a.75.75 0 0 1-.484-.589L9 4a.75.75 0 0 1 .493-.705l1.687-.615.615-1.687a.75.75 0 0 1 .589-.484L12.5.5z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  AiChatIcon.displayName = 'AiChatIcon';
@@ -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::a55ee8d90e8410620ee62ca5c9eecc3b>>
3
+ * @codegen <<SignedSource::1ef814cbe087eb9c6a25a0f913de5392>>
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
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const CollapseHorizontalIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M7.25 15h1.5V1h-1.5zm5.31-7.75 1.22-1.22-1.06-1.06-2.5 2.5a.75.75 0 0 0 0 1.06l2.5 2.5 1.06-1.06-1.22-1.22H16v-1.5zm-6.78.22-2.5-2.5-1.06 1.06 1.22 1.22H0v1.5h3.44L2.22 9.97l1.06 1.06 2.5-2.5a.75.75 0 0 0 0-1.06" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M7.25 0v16h1.5V0zm2.72 7.47a.75.75 0 0 0 0 1.06l3.25 3.25 1.06-1.06-1.97-1.97H16v-1.5h-3.69l1.97-1.97-1.06-1.06zM1.72 5.28l1.97 1.97H0v1.5h3.69l-1.97 1.97 1.06 1.06 3.25-3.25a.75.75 0 0 0 0-1.06L2.78 4.22z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  CollapseHorizontalIcon.displayName = 'CollapseHorizontalIcon';
@@ -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::0c36642f4e7bb284665d7f0943688a4f>>
3
+ * @codegen <<SignedSource::edcbed1bca323c065facc3958839be26>>
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
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const CollapseVerticalIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M15 7.25v1.5H1v-1.5zm-7.75 5.31-1.22 1.22-1.06-1.06 2.5-2.5a.75.75 0 0 1 1.06 0l2.5 2.5-1.06 1.06-1.22-1.22V16h-1.5zm.22-6.78-2.5-2.5 1.06-1.06 1.22 1.22V0h1.5v3.44l1.22-1.22 1.06 1.06-2.5 2.5a.75.75 0 0 1-1.06 0" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M0 7.25h16v1.5H0zm7.47 2.72a.75.75 0 0 1 1.06 0l3.25 3.25-1.06 1.06-1.97-1.97V16h-1.5v-3.69l-1.97 1.97-1.06-1.06zM5.28 1.72l1.97 1.97V0h1.5v3.69l1.97-1.97 1.06 1.06-3.25 3.25a.75.75 0 0 1-1.06 0L4.22 2.78z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  CollapseVerticalIcon.displayName = 'CollapseVerticalIcon';
@@ -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::c9fe0fb92f8f001af056b55b163878fe>>
3
+ * @codegen <<SignedSource::6b43f22b1f9a360601a4555fe1bfa47b>>
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
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const ExpandHorizontalIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M0 15V1h1.5v14zm16 0h-1.5V1H16zM3.22 7.47l2.5-2.5 1.06 1.06-1.22 1.22h4.88L9.22 6.03l1.06-1.06 2.5 2.5a.75.75 0 0 1 0 1.06l-2.5 2.5-1.06-1.06 1.22-1.22H5.56l1.22 1.22-1.06 1.06-2.5-2.5a.75.75 0 0 1 0-1.06" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M1.5 1v14H0V1zM16 1v14h-1.5V1zm-1.72 6.47a.75.75 0 0 1 0 1.06l-3.25 3.25-1.06-1.06 1.97-1.97H4.06l1.97 1.97-1.06 1.06-3.25-3.25a.75.75 0 0 1 0-1.06l3.25-3.25 1.06 1.06-1.97 1.97h7.88L9.97 5.28l1.06-1.06z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  ExpandHorizontalIcon.displayName = 'ExpandHorizontalIcon';
@@ -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::58eb69440e7f3c5bddfe5eebe60fdf2f>>
3
+ * @codegen <<SignedSource::f805017d4bff7e0b184fac688c1d087a>>
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
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const ExpandVerticalIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M15 0H1v1.5h14zm0 16v-1.5H1V16zM7.47 3.22l-2.5 2.5 1.06 1.06 1.22-1.22v4.88L6.03 9.22l-1.06 1.06 2.5 2.5a.75.75 0 0 0 1.06 0l2.5-2.5-1.06-1.06-1.22 1.22V5.56l1.22 1.22 1.06-1.06-2.5-2.5a.75.75 0 0 0-1.06 0" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M1 1.5h14V0H1zM1 16h14v-1.5H1zm6.47-1.72a.75.75 0 0 0 1.06 0l3.25-3.25-1.06-1.06-1.97 1.97V4.06l1.97 1.97 1.06-1.06-3.25-3.25a.75.75 0 0 0-1.06 0L4.22 4.97l1.06 1.06 1.97-1.97v7.88L5.28 9.97l-1.06 1.06z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  ExpandVerticalIcon.displayName = 'ExpandVerticalIcon';
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::c33f15421259c2a054db8d8057b5c9eb>>
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 StatusErrorIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default StatusErrorIconMigration;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8687bcf05df783ceffe46d3fd0178463>>
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 _statusError = _interopRequireDefault(require("@atlaskit/icon/core/status-error"));
14
+ var _error = _interopRequireDefault(require("@atlaskit/icon/glyph/error"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * Migration Icon component for StatusErrorIcon.
18
+ * This component is StatusErrorIcon, with `UNSAFE_fallbackIcon` set to "ErrorIcon".
19
+ *
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Reserved for error statuses and messaging.
23
+ Filled status icons provide higher visual contrast to draw attention to important information.
24
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
25
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
26
+ */
27
+ const StatusErrorIcon = props => /*#__PURE__*/_react.default.createElement(_statusError.default, Object.assign({
28
+ LEGACY_fallbackIcon: _error.default
29
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
30
+ }, props));
31
+ StatusErrorIcon.Name = 'StatusErrorIconMigration';
32
+ var _default = exports.default = StatusErrorIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::fec9b78c39677aefd61686edd59a3d44>>
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 StatusInformationIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default StatusInformationIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::65c0b39bd1a1282c23e57cf02e78c0e0>>
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 _statusInformation = _interopRequireDefault(require("@atlaskit/icon/core/status-information"));
14
+ var _info = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/info"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * Migration Icon component for StatusInformationIcon.
18
+ * This component is StatusInformationIcon, with `UNSAFE_fallbackIcon` set to "EditorInfoIcon".
19
+ *
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Reserved for information statuses and messaging.
23
+ Filled status icons provide higher visual contrast to draw attention to important information.
24
+ For information tooltips, use the unfilled 'information circle' icon.
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 StatusInformationIcon = props => /*#__PURE__*/_react.default.createElement(_statusInformation.default, Object.assign({
29
+ LEGACY_fallbackIcon: _info.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ StatusInformationIcon.Name = 'StatusInformationIconMigration';
33
+ var _default = exports.default = StatusInformationIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::fec9b78c39677aefd61686edd59a3d44>>
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 StatusInformationIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default StatusInformationIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::d4c08fce34755bd27ddd6baac981b869>>
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 _statusInformation = _interopRequireDefault(require("@atlaskit/icon/core/status-information"));
14
+ var _panel = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/panel"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * Migration Icon component for StatusInformationIcon.
18
+ * This component is StatusInformationIcon, with `UNSAFE_fallbackIcon` set to "EditorPanelIcon".
19
+ *
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Reserved for information statuses and messaging.
23
+ Filled status icons provide higher visual contrast to draw attention to important information.
24
+ For information tooltips, use the unfilled 'information circle' icon.
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 StatusInformationIcon = props => /*#__PURE__*/_react.default.createElement(_statusInformation.default, Object.assign({
29
+ LEGACY_fallbackIcon: _panel.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ StatusInformationIcon.Name = 'StatusInformationIconMigration';
33
+ var _default = exports.default = StatusInformationIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::fec9b78c39677aefd61686edd59a3d44>>
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 StatusInformationIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default StatusInformationIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::6e3974ad0608437b58ea5a455fd9f640>>
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 _statusInformation = _interopRequireDefault(require("@atlaskit/icon/core/status-information"));
14
+ var _info = _interopRequireDefault(require("@atlaskit/icon/glyph/info"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * Migration Icon component for StatusInformationIcon.
18
+ * This component is StatusInformationIcon, with `UNSAFE_fallbackIcon` set to "InfoIcon".
19
+ *
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Reserved for information statuses and messaging.
23
+ Filled status icons provide higher visual contrast to draw attention to important information.
24
+ For information tooltips, use the unfilled 'information circle' icon.
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 StatusInformationIcon = props => /*#__PURE__*/_react.default.createElement(_statusInformation.default, Object.assign({
29
+ LEGACY_fallbackIcon: _info.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ StatusInformationIcon.Name = 'StatusInformationIconMigration';
33
+ var _default = exports.default = StatusInformationIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::2bce5be503f9f351bf14884f7b663d14>>
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 StatusSuccessIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default StatusSuccessIconMigration;
@@ -0,0 +1,31 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::79d87fd54ca549401aa2a870cdd2f3b2>>
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 _statusSuccess = _interopRequireDefault(require("@atlaskit/icon/core/status-success"));
14
+ var _checkCircle = _interopRequireDefault(require("@atlaskit/icon/glyph/check-circle"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * Migration Icon component for StatusSuccessIcon.
18
+ * This component is StatusSuccessIcon, with `UNSAFE_fallbackIcon` set to "CheckCircleIcon".
19
+ *
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Reserved for success statuses and messaging. Filled status icons provide higher visual contrast to draw attention to important information.
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 StatusSuccessIcon = props => /*#__PURE__*/_react.default.createElement(_statusSuccess.default, Object.assign({
27
+ LEGACY_fallbackIcon: _checkCircle.default
28
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
+ }, props));
30
+ StatusSuccessIcon.Name = 'StatusSuccessIconMigration';
31
+ var _default = exports.default = StatusSuccessIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::2bce5be503f9f351bf14884f7b663d14>>
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 StatusSuccessIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default StatusSuccessIconMigration;
@@ -0,0 +1,31 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::d11500fc79ac0e5637954a63f0212549>>
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 _statusSuccess = _interopRequireDefault(require("@atlaskit/icon/core/status-success"));
14
+ var _success = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/success"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * Migration Icon component for StatusSuccessIcon.
18
+ * This component is StatusSuccessIcon, with `UNSAFE_fallbackIcon` set to "EditorSuccessIcon".
19
+ *
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Reserved for success statuses and messaging. Filled status icons provide higher visual contrast to draw attention to important information.
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 StatusSuccessIcon = props => /*#__PURE__*/_react.default.createElement(_statusSuccess.default, Object.assign({
27
+ LEGACY_fallbackIcon: _success.default
28
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
+ }, props));
30
+ StatusSuccessIcon.Name = 'StatusSuccessIconMigration';
31
+ var _default = exports.default = StatusSuccessIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::979b38a2a50bc5d2659c4d1052d1f889>>
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 StatusWarningIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default StatusWarningIconMigration;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::468397db8b621d0b872ec4fdf86e27df>>
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 _statusWarning = _interopRequireDefault(require("@atlaskit/icon/core/status-warning"));
14
+ var _warning = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/warning"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * Migration Icon component for StatusWarningIcon.
18
+ * This component is StatusWarningIcon, with `UNSAFE_fallbackIcon` set to "EditorWarningIcon".
19
+ *
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Reserved for warning statuses.
23
+ Filled status icons provide higher visual contrast to draw attention to important information.
24
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
25
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
26
+ */
27
+ const StatusWarningIcon = props => /*#__PURE__*/_react.default.createElement(_statusWarning.default, Object.assign({
28
+ LEGACY_fallbackIcon: _warning.default
29
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
30
+ }, props));
31
+ StatusWarningIcon.Name = 'StatusWarningIconMigration';
32
+ var _default = exports.default = StatusWarningIcon;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::979b38a2a50bc5d2659c4d1052d1f889>>
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 StatusWarningIconMigration: {
12
+ (props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default StatusWarningIconMigration;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::1c4f87fa6bbdffcdd6698ec12cc5fa12>>
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 _statusWarning = _interopRequireDefault(require("@atlaskit/icon/core/status-warning"));
14
+ var _warning = _interopRequireDefault(require("@atlaskit/icon/glyph/warning"));
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ /**
17
+ * Migration Icon component for StatusWarningIcon.
18
+ * This component is StatusWarningIcon, with `UNSAFE_fallbackIcon` set to "WarningIcon".
19
+ *
20
+ * Category: single-purpose
21
+ * Location: @atlaskit/icon
22
+ * Usage guidance: Reserved for warning statuses.
23
+ Filled status icons provide higher visual contrast to draw attention to important information.
24
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
25
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
26
+ */
27
+ const StatusWarningIcon = props => /*#__PURE__*/_react.default.createElement(_statusWarning.default, Object.assign({
28
+ LEGACY_fallbackIcon: _warning.default
29
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
30
+ }, props));
31
+ StatusWarningIcon.Name = 'StatusWarningIconMigration';
32
+ var _default = exports.default = StatusWarningIcon;
@@ -9,7 +9,7 @@ exports.default = void 0;
9
9
  *
10
10
  * To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
11
11
  *
12
- * @codegen <<SignedSource::ec9654a23699788f0dfeb0bccea011b6>>
12
+ * @codegen <<SignedSource::56892aca4678057bf1259d468dd867f8>>
13
13
  * @codegenCommand yarn build:icon-glyphs
14
14
  */
15
15
  var deprecatedIcons = {