@atlaskit/icon-lab 5.11.0 → 5.12.1

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 (70) hide show
  1. package/CHANGELOG.md +48 -0
  2. package/core/pipeline.d.ts +13 -0
  3. package/core/pipeline.js +29 -0
  4. package/core/plan.d.ts +13 -0
  5. package/core/plan.js +29 -0
  6. package/core/playlist-add.d.ts +13 -0
  7. package/core/playlist-add.js +29 -0
  8. package/core/playlist-added.d.ts +13 -0
  9. package/core/playlist-added.js +29 -0
  10. package/core/playlist-remove.d.ts +13 -0
  11. package/core/playlist-remove.js +29 -0
  12. package/core/playlist.d.ts +13 -0
  13. package/core/playlist.js +29 -0
  14. package/core/roadmaps-plan.d.ts +4 -1
  15. package/core/roadmaps-plan.js +2 -2
  16. package/core/roadmaps-service.d.ts +4 -1
  17. package/core/service.d.ts +13 -0
  18. package/core/service.js +29 -0
  19. package/core/status-workflow-cancelled.d.ts +13 -0
  20. package/core/status-workflow-cancelled.js +29 -0
  21. package/core/status-workflow-danger.d.ts +13 -0
  22. package/core/status-workflow-danger.js +29 -0
  23. package/core/status-workflow-in-progress.d.ts +13 -0
  24. package/core/status-workflow-in-progress.js +29 -0
  25. package/core/status-workflow-in-review.d.ts +13 -0
  26. package/core/status-workflow-in-review.js +29 -0
  27. package/core/status-workflow-inactive.d.ts +13 -0
  28. package/core/status-workflow-inactive.js +29 -0
  29. package/core/status-workflow-incomplete.d.ts +13 -0
  30. package/core/status-workflow-incomplete.js +29 -0
  31. package/core/status-workflow-paused.d.ts +13 -0
  32. package/core/status-workflow-paused.js +29 -0
  33. package/core/status-workflow-returned.d.ts +13 -0
  34. package/core/status-workflow-returned.js +29 -0
  35. package/core/status-workflow-scheduled.d.ts +13 -0
  36. package/core/status-workflow-scheduled.js +29 -0
  37. package/core/status-workflow-stopped.d.ts +13 -0
  38. package/core/status-workflow-stopped.js +29 -0
  39. package/core/status-workflow-success.d.ts +13 -0
  40. package/core/status-workflow-success.js +29 -0
  41. package/core/status-workflow-warning.d.ts +13 -0
  42. package/core/status-workflow-warning.js +29 -0
  43. package/dist/cjs/metadata-core.js +188 -297
  44. package/dist/cjs/migration-map.js +0 -2
  45. package/dist/es2019/metadata-core.js +188 -297
  46. package/dist/es2019/migration-map.js +0 -2
  47. package/dist/esm/metadata-core.js +188 -297
  48. package/dist/esm/migration-map.js +0 -2
  49. package/dist/types/metadata-core.d.ts +2 -8
  50. package/dist/types-ts4.5/metadata-core.d.ts +2 -8
  51. package/package.json +7 -7
  52. package/svgs/core/pipeline.svg +1 -0
  53. package/svgs/core/plan.svg +1 -0
  54. package/svgs/core/playlist-add.svg +1 -0
  55. package/svgs/core/playlist-added.svg +1 -0
  56. package/svgs/core/playlist-remove.svg +1 -0
  57. package/svgs/core/playlist.svg +1 -0
  58. package/svgs/core/service.svg +1 -0
  59. package/svgs/core/status-workflow-cancelled.svg +1 -0
  60. package/svgs/core/status-workflow-danger.svg +1 -0
  61. package/svgs/core/status-workflow-in-progress.svg +1 -0
  62. package/svgs/core/status-workflow-in-review.svg +1 -0
  63. package/svgs/core/status-workflow-inactive.svg +1 -0
  64. package/svgs/core/status-workflow-incomplete.svg +1 -0
  65. package/svgs/core/status-workflow-paused.svg +1 -0
  66. package/svgs/core/status-workflow-returned.svg +1 -0
  67. package/svgs/core/status-workflow-scheduled.svg +1 -0
  68. package/svgs/core/status-workflow-stopped.svg +1 -0
  69. package/svgs/core/status-workflow-success.svg +1 -0
  70. package/svgs/core/status-workflow-warning.svg +1 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,53 @@
1
1
  # @atlaskit/icon-lab
2
2
 
3
+ ## 5.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`f0d92beae2f40`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f0d92beae2f40) -
8
+ Removes utility icons entrypoints from the '@atlaskit/icon' package. Migrates related packages to
9
+ update their imports.
10
+ - Updated dependencies
11
+
12
+ ## 5.12.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [`35c97ff8e4633`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/35c97ff8e4633) -
17
+ This release deprecates icons in `@atlaskit/icon-lab`.
18
+
19
+ ### Deprecated:
20
+
21
+ **`@atlaskit/icon-lab/core`**
22
+ - `roadmaps-plan`
23
+ - `roadmaps-service`
24
+
25
+ - [`35c97ff8e4633`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/35c97ff8e4633) -
26
+ This release adds icons in `@atlaskit/icon-lab`.
27
+
28
+ ### Added:
29
+
30
+ **`@atlaskit/icon-lab/core`**
31
+ - `pipeline`
32
+ - `plan`
33
+ - `playlist-add`
34
+ - `playlist-added`
35
+ - `playlist-remove`
36
+ - `playlist`
37
+ - `service`
38
+ - `status-workflow-cancelled`
39
+ - `status-workflow-danger`
40
+ - `status-workflow-in-progress`
41
+ - `status-workflow-in-review`
42
+ - `status-workflow-inactive`
43
+ - `status-workflow-incomplete`
44
+ - `status-workflow-paused`
45
+ - `status-workflow-returned`
46
+ - `status-workflow-scheduled`
47
+ - `status-workflow-stopped`
48
+ - `status-workflow-success`
49
+ - `status-workflow-warning`
50
+
3
51
  ## 5.11.0
4
52
 
5
53
  ### Minor Changes
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::fc18974cdb9bc587b4293e0779cedc72>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const PipelineIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default PipelineIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::81ce8ac78802c961dc11edc765b6e875>>
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
+ * Icon: "Pipeline".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for representing pipelines
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const PipelineIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "PipelineIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 8A2.5 2.5 0 0 0 12 5.5c-.763 0-1.334.298-1.852.803-.546.532-.998 1.26-1.51 2.09-.488.794-1.036 1.692-1.74 2.379C6.166 11.485 5.238 12 4 12a4 4 0 0 1-.082-7.999l-.37-.987a.75.75 0 0 1 1.17-.85l2.5 2a.75.75 0 0 1 0 1.172l-2.5 2a.75.75 0 0 1-1.17-.85l.368-.982A2.498 2.498 0 0 0 4 10.5c.763 0 1.334-.297 1.852-.802.545-.533.998-1.26 1.51-2.091.488-.794 1.036-1.692 1.74-2.378C9.834 4.515 10.762 4 12 4a4 4 0 0 1 0 8c-1.313 0-2.275-.58-3.023-1.354l1.079-1.041c.545.564 1.14.895 1.944.895A2.5 2.5 0 0 0 14.5 8"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ PipelineIcon.displayName = 'PipelineIcon';
29
+ var _default = exports.default = PipelineIcon;
package/core/plan.d.ts ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::35aabe55ddce8beff64b3e7e843c6dc7>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const PlanIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default PlanIcon;
package/core/plan.js ADDED
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::1e592cd07ebb64c538a407bba7f07723>>
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
+ * Icon: "Plan".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for representing plans.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const PlanIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "PlanIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 12.75a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0m1.5 0a2.75 2.75 0 0 1-5.394.75H5.625a3.125 3.125 0 1 1 0-6.25h4.75a1.625 1.625 0 1 0 0-3.25H5.394A2.749 2.749 0 0 1 0 3.25a2.75 2.75 0 0 1 5.394-.75h4.981a3.125 3.125 0 1 1 0 6.25h-4.75a1.625 1.625 0 0 0 0 3.25h4.981a2.749 2.749 0 0 1 5.394.75M1.5 3.25a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ PlanIcon.displayName = 'PlanIcon';
29
+ var _default = exports.default = PlanIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::69b74e4b7710892566cab3fe7d7a5386>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const PlaylistAddIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default PlaylistAddIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::04de3589381f9a0610e28dee990a4306>>
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
+ * Icon: "PlaylistAdd".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Adding items to your playlist (feature).
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const PlaylistAddIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "PlaylistAddIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M10.75 7v2.25H13v1.5h-2.25V13h-1.5v-2.25H7v-1.5h2.25V7z"/><path fill="currentcolor" d="M3.999 6.624A2.626 2.626 0 0 1 6.624 4h4.053l-.341-1.6a1.124 1.124 0 0 0-1.334-.866L2.399 2.937a1.124 1.124 0 0 0-.866 1.334l1.403 6.602c.11.517.558.873 1.063.889zm1.5 6.75c0 .621.504 1.125 1.125 1.125h6.75c.621 0 1.125-.503 1.125-1.125v-6.75c0-.62-.504-1.125-1.125-1.125h-6.75c-.621 0-1.125.504-1.125 1.125zm10.5 0A2.625 2.625 0 0 1 13.374 16h-6.75a2.625 2.625 0 0 1-2.625-2.625v-.112a2.624 2.624 0 0 1-2.53-2.077L.064 4.582A2.626 2.626 0 0 1 2.088 1.47L8.689.066a2.626 2.626 0 0 1 3.114 2.022L12.21 4h1.164a2.625 2.625 0 0 1 2.625 2.625z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ PlaylistAddIcon.displayName = 'PlaylistAddIcon';
29
+ var _default = exports.default = PlaylistAddIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::9bad2faa8e60c99f41edc4f15bd0df73>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const PlaylistAddedIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default PlaylistAddedIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::03e629e0c059fb7914069e0530221781>>
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
+ * Icon: "PlaylistAdded".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Indicating when things have been added to your playlist (feature)
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const PlaylistAddedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "PlaylistAddedIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m13.32 8.238-3.75 4.375a.75.75 0 0 1-1.162-.027l-1.75-2.25 1.184-.922 1.185 1.526 3.154-3.678z"/><path fill="currentcolor" d="M3.999 6.624A2.626 2.626 0 0 1 6.624 4h4.053l-.341-1.6a1.124 1.124 0 0 0-1.334-.866L2.399 2.937a1.124 1.124 0 0 0-.866 1.334l1.403 6.602c.11.517.558.873 1.063.889zm1.5 6.75c0 .621.504 1.125 1.125 1.125h6.75c.621 0 1.125-.503 1.125-1.125v-6.75c0-.62-.504-1.125-1.125-1.125h-6.75c-.621 0-1.125.504-1.125 1.125zm10.5 0A2.625 2.625 0 0 1 13.374 16h-6.75a2.625 2.625 0 0 1-2.625-2.625v-.112a2.624 2.624 0 0 1-2.53-2.077L.064 4.582A2.626 2.626 0 0 1 2.088 1.47L8.689.066a2.626 2.626 0 0 1 3.114 2.022L12.21 4h1.164a2.625 2.625 0 0 1 2.625 2.625z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ PlaylistAddedIcon.displayName = 'PlaylistAddedIcon';
29
+ var _default = exports.default = PlaylistAddedIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::52626dee0fc0f414275f5e7370259197>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const PlaylistRemoveIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default PlaylistRemoveIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::9b025e88f545a176f0bf73d94d1b7152>>
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
+ * Icon: "PlaylistRemove".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Represents the action for removing things from the playlist feature.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const PlaylistRemoveIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "PlaylistRemoveIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m12.78 8.28-1.72 1.719 1.72 1.72-1.06 1.06L10 11.06l-1.72 1.72-1.06-1.06L8.94 10 7.22 8.28l1.06-1.06L10 8.939l1.72-1.72z"/><path fill="currentcolor" d="M3.999 6.624A2.626 2.626 0 0 1 6.624 4h4.053l-.341-1.6a1.124 1.124 0 0 0-1.334-.866L2.399 2.937a1.124 1.124 0 0 0-.866 1.334l1.403 6.602c.11.517.558.873 1.063.889zm1.5 6.75c0 .621.504 1.125 1.125 1.125h6.75c.621 0 1.125-.503 1.125-1.125v-6.75c0-.62-.504-1.125-1.125-1.125h-6.75c-.621 0-1.125.504-1.125 1.125zm10.5 0A2.625 2.625 0 0 1 13.374 16h-6.75a2.625 2.625 0 0 1-2.625-2.625v-.112a2.624 2.624 0 0 1-2.53-2.077L.064 4.582A2.626 2.626 0 0 1 2.088 1.47L8.689.066a2.626 2.626 0 0 1 3.114 2.022L12.21 4h1.164a2.625 2.625 0 0 1 2.625 2.625z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ PlaylistRemoveIcon.displayName = 'PlaylistRemoveIcon';
29
+ var _default = exports.default = PlaylistRemoveIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::ade9f8b30138ab3eafc1855f5098e980>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const PlaylistIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default PlaylistIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::bf4678aba7dbce8407002d69c8d50334>>
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
+ * Icon: "Playlist".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Representing the playlist feature
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const PlaylistIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "PlaylistIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M8.124 7.351a.75.75 0 0 1 .748-.003l3.5 2a.75.75 0 0 1 0 1.303l-3.5 2A.75.75 0 0 1 7.75 12V8a.75.75 0 0 1 .374-.649"/><path fill="currentcolor" d="M4 6.624A2.626 2.626 0 0 1 6.625 4h4.052l-.34-1.6a1.125 1.125 0 0 0-1.334-.866L2.4 2.937a1.124 1.124 0 0 0-.866 1.334l1.403 6.602c.11.517.558.873 1.063.889zm1.5 6.75c0 .621.504 1.125 1.125 1.125h6.75c.621 0 1.125-.503 1.125-1.125v-6.75c0-.62-.504-1.125-1.125-1.125h-6.75c-.621 0-1.125.504-1.125 1.125zm10.5 0A2.625 2.625 0 0 1 13.375 16h-6.75A2.625 2.625 0 0 1 4 13.374v-.112a2.624 2.624 0 0 1-2.53-2.077L.065 4.582A2.626 2.626 0 0 1 2.09 1.47L8.69.066a2.626 2.626 0 0 1 3.114 2.022L12.211 4h1.164A2.625 2.625 0 0 1 16 6.624z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ PlaylistIcon.displayName = 'PlaylistIcon';
29
+ var _default = exports.default = PlaylistIcon;
@@ -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::360930da021ce62e41654b58ca8d1865>>
3
+ * @codegen <<SignedSource::6a1ffe017b712d418bbdbceb6d20a187>>
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 "roadmaps-plan" is deprecated in favour of "plan" from “@atlaskit/icon-lab/core”
11
+ */
9
12
  declare const RoadmapsPlanIcon: {
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::56a48b6e9d6992ba3e844b7827f74013>>
3
+ * @codegen <<SignedSource::6b7be9690353c7bf82b96c9a0cc89ae3>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -16,7 +16,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
16
16
  * Icon: "RoadmapsPlan".
17
17
  * Category: single-purpose
18
18
  * Location: @atlaskit/icon-lab
19
- * Usage guidance: Reserved for roadmaps plan.
19
+ * Usage guidance: Reserved for representing plans.
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
  */
@@ -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::59447c5366e0957d201551e38097d09d>>
3
+ * @codegen <<SignedSource::0c9194646f95b2da2083d2b3dfa992a7>>
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 "roadmaps-service" is deprecated in favour of "service" from “@atlaskit/icon-lab/core”
11
+ */
9
12
  declare const RoadmapsServiceIcon: {
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::8162d8755de094ed851859779860c6b4>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ServiceIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ServiceIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::9df73e04155b1d816856b2d88c851c72>>
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
+ * Icon: "Service".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for roadmaps service.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const ServiceIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "ServiceIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 12.75a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0m0-9.5a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0m1.5 0a2.75 2.75 0 0 1-5.394.75H8.74c-.371 0-.719.183-.928.49L5.408 8l2.403 3.51c.21.307.557.49.928.49h1.867a2.749 2.749 0 0 1 5.394.75 2.75 2.75 0 0 1-5.394.75H8.74a2.63 2.63 0 0 1-2.167-1.143L4.104 8.75H0v-1.5h4.104l2.468-3.607A2.63 2.63 0 0 1 8.74 2.5h1.867A2.749 2.749 0 0 1 16 3.25"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ ServiceIcon.displayName = 'ServiceIcon';
29
+ var _default = exports.default = ServiceIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::93bd672a671728311ec311001700723d>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const StatusWorkflowCancelledIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default StatusWorkflowCancelledIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::88bdcee760486015723a76374f559cd7>>
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
+ * Icon: "StatusWorkflowCancelled".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for representing statuses that indicated work or a process has been cancelled
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const StatusWorkflowCancelledIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "StatusWorkflowCancelledIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M2.343 2.343A8 8 0 1 1 13.658 13.66 8 8 0 0 1 2.343 2.343m10.254 1.06A6.501 6.501 0 1 0 3.404 12.6a6.501 6.501 0 0 0 9.193-9.195m-.885 1.946L9.061 8l2.651 2.652-1.06 1.06L8 9.061l-2.65 2.651-1.06-1.06L6.938 8 4.29 5.35l1.06-1.06L8 6.938l2.652-2.65z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ StatusWorkflowCancelledIcon.displayName = 'StatusWorkflowCancelledIcon';
29
+ var _default = exports.default = StatusWorkflowCancelledIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::893bb85c6d2362430219bfa2c3d97eab>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const StatusWorkflowDangerIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default StatusWorkflowDangerIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::7adb5fd03a25925a35432d6cd30431e9>>
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
+ * Icon: "StatusWorkflowDanger".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for representing statuses that signal critical issues that demand attention
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const StatusWorkflowDangerIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "StatusWorkflowDangerIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0m0 10.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-.75-7V9h1.5V3.5z" clip-rule="evenodd"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ StatusWorkflowDangerIcon.displayName = 'StatusWorkflowDangerIcon';
29
+ var _default = exports.default = StatusWorkflowDangerIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::e460b5734f65f852256887040c3fc790>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const StatusWorkflowInProgressIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default StatusWorkflowInProgressIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::cf2ef86350383ba30ac60de3c96c4f8e>>
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
+ * Icon: "StatusWorkflowInProgress".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for representing in progress statuses such as "In progress", "In development", "Draft"
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const StatusWorkflowInProgressIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "StatusWorkflowInProgressIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 8a6.5 6.5 0 1 0-13 0 6.5 6.5 0 0 0 13 0M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0"/><path fill="currentcolor" d="M8 3a5 5 0 1 1 0 10z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ StatusWorkflowInProgressIcon.displayName = 'StatusWorkflowInProgressIcon';
29
+ var _default = exports.default = StatusWorkflowInProgressIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::3ece38df6f42f783291750bccdd53bc3>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const StatusWorkflowInReviewIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default StatusWorkflowInReviewIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::177057641801787c460d2f596e29ad78>>
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
+ * Icon: "StatusWorkflowInReview".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for representing statuses that signal consideration, assessment, and review
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const StatusWorkflowInReviewIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "StatusWorkflowInReviewIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M8 3a5 5 0 1 1-5 5h5z"/><path fill="currentcolor" d="M1.5 8A6.5 6.5 0 1 0 8 1.5V0a8 8 0 1 1-8 8z"/><path fill="currentcolor" d="m.812 7.053.743.097A7 7 0 0 0 1.5 8H0q0-.53.067-1.044zm2.03-3.01c-.343.447-.63.94-.849 1.469L.607 4.938a8 8 0 0 1 1.046-1.81zm2.67-2.05a6.5 6.5 0 0 0-1.469.85l-.914-1.19A8 8 0 0 1 4.938.607zM8 1.5q-.433 0-.85.055L7.053.812 6.956.067Q7.47.001 8 0z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ StatusWorkflowInReviewIcon.displayName = 'StatusWorkflowInReviewIcon';
29
+ var _default = exports.default = StatusWorkflowInReviewIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::cb64bc9b26387fc4ce66cff65e8ff809>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const StatusWorkflowInactiveIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default StatusWorkflowInactiveIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::7384878a1e05f088c125c1af03abcde8>>
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
+ * Icon: "StatusWorkflowInactive".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for representing statuses that indicate work or a process is in an inactive state
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const StatusWorkflowInactiveIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "StatusWorkflowInactiveIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M2.343 2.343A8 8 0 1 1 13.658 13.66 8 8 0 0 1 2.343 2.343m10.254 1.06A6.501 6.501 0 1 0 3.404 12.6a6.501 6.501 0 0 0 9.193-9.195m-.885 1.946L5.35 11.712l-1.06-1.06 6.363-6.364z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ StatusWorkflowInactiveIcon.displayName = 'StatusWorkflowInactiveIcon';
29
+ var _default = exports.default = StatusWorkflowInactiveIcon;