@atlaskit/icon-lab 4.7.0 → 4.9.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 (52) hide show
  1. package/CHANGELOG.md +58 -0
  2. package/core/cloud-offline.js +2 -2
  3. package/core/colour-none.js +2 -2
  4. package/core/cursor-strikethrough.js +2 -2
  5. package/core/layout-three-columns-sidebars-left.d.ts +13 -0
  6. package/core/layout-three-columns-sidebars-left.js +28 -0
  7. package/core/layout-three-columns-sidebars-right.d.ts +13 -0
  8. package/core/layout-three-columns-sidebars-right.js +28 -0
  9. package/core/pin-strikethrough.d.ts +13 -0
  10. package/core/pin-strikethrough.js +28 -0
  11. package/core/recur.d.ts +4 -1
  12. package/core/space.js +4 -2
  13. package/core/speedometer.d.ts +4 -1
  14. package/core/studio.d.ts +13 -0
  15. package/core/studio.js +28 -0
  16. package/core/telescope.d.ts +13 -0
  17. package/core/telescope.js +28 -0
  18. package/core/text-bold-italic-strikethrough.js +2 -2
  19. package/core/text-bold-italic-underline-strikethrough.js +2 -2
  20. package/core/text-bold-strikethrough.js +2 -2
  21. package/core/text-bold-underline-strikethrough.js +2 -2
  22. package/core/text-italic-strikethrough.js +2 -2
  23. package/core/text-italic-underline-strikethrough.js +2 -2
  24. package/core/text-paragraph.js +2 -2
  25. package/core/text-underline-strikethrough.js +2 -2
  26. package/dist/cjs/deprecated-core.js +9 -2
  27. package/dist/cjs/metadata-core.js +65 -3
  28. package/dist/es2019/deprecated-core.js +9 -2
  29. package/dist/es2019/metadata-core.js +65 -3
  30. package/dist/esm/deprecated-core.js +9 -2
  31. package/dist/esm/metadata-core.js +65 -3
  32. package/dist/types/deprecated-core.d.ts +1 -1
  33. package/dist/types/metadata-core.d.ts +1 -1
  34. package/dist/types-ts4.5/deprecated-core.d.ts +1 -1
  35. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  36. package/package.json +3 -3
  37. package/svgs/core/cloud-offline.svg +1 -1
  38. package/svgs/core/colour-none.svg +1 -1
  39. package/svgs/core/cursor-strikethrough.svg +1 -1
  40. package/svgs/core/layout-three-columns-sidebars-left.svg +1 -0
  41. package/svgs/core/layout-three-columns-sidebars-right.svg +1 -0
  42. package/svgs/core/pin-strikethrough.svg +1 -0
  43. package/svgs/core/studio.svg +1 -0
  44. package/svgs/core/telescope.svg +1 -0
  45. package/svgs/core/text-bold-italic-strikethrough.svg +1 -1
  46. package/svgs/core/text-bold-italic-underline-strikethrough.svg +1 -1
  47. package/svgs/core/text-bold-strikethrough.svg +1 -1
  48. package/svgs/core/text-bold-underline-strikethrough.svg +1 -1
  49. package/svgs/core/text-italic-strikethrough.svg +1 -1
  50. package/svgs/core/text-italic-underline-strikethrough.svg +1 -1
  51. package/svgs/core/text-paragraph.svg +1 -1
  52. package/svgs/core/text-underline-strikethrough.svg +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,63 @@
1
1
  # @atlaskit/icon-lab
2
2
 
3
+ ## 4.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#141669](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/141669)
8
+ [`9834d79a5cece`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9834d79a5cece) -
9
+ This release adds icons in `@atlaskit/icon-lab`.
10
+
11
+ ### Added:
12
+
13
+ **`@atlaskit/icon-lab/core`**
14
+
15
+ - `layout-three-columns-sidebars-left`
16
+ - `layout-three-columns-sidebars-right`
17
+ - `studio`
18
+ - `telescope`
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+
24
+ ## 4.8.0
25
+
26
+ ### Minor Changes
27
+
28
+ - [#138291](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/138291)
29
+ [`12b2a21a4da5a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/12b2a21a4da5a) -
30
+ This release updates and deprecates icons in `@atlaskit/icon-lab`.
31
+
32
+ ### Updated:
33
+
34
+ **`@atlaskit/icon-lab/core`**
35
+
36
+ - `cloud-offline`
37
+ - `colour-none`
38
+ - `cursor-strikethrough`
39
+ - `incognito`
40
+ - `page-live-doc`
41
+ - `text-bold-italic-strikethrough`
42
+ - `text-bold-italic-underline-strikethrough`
43
+ - `text-bold-strikethrough`
44
+ - `text-bold-underline-strikethrough`
45
+ - `text-italic-strikethrough`
46
+ - `text-italic-underline-strikethrough`
47
+ - `text-paragraph`
48
+ - `text-underline-strikethrough`
49
+
50
+ ### Deprecated:
51
+
52
+ **`@atlaskit/icon-lab/core`**
53
+
54
+ - `recur`
55
+ - `speedometer`
56
+
57
+ ### Patch Changes
58
+
59
+ - Updated dependencies
60
+
3
61
  ## 4.7.0
4
62
 
5
63
  ### Minor Changes
@@ -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::a4e3292bce48457653e142717188c849>>
3
+ * @codegen <<SignedSource::005541104498576cdb3000e1f03d4bd7>>
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 CloudOfflineIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="m.47 1.53 2.66 2.661a5.7 5.7 0 0 0-.798 2.087A3.75 3.75 0 0 0 3.75 13.5H12q.211 0 .418-.022l2.052 2.052 1.06-1.06-1.514-1.515.004-.002-1.12-1.12-.005.002-7.74-7.742.003-.003-1.062-1.06-.004.003L1.53.47zM3.764 6.9a4.2 4.2 0 0 1 .464-1.611l6.711 6.71H3.75a2.25 2.25 0 0 1-.55-4.431.75.75 0 0 0 .564-.667" clip-rule="evenodd"/><path fill="currentcolor" d="m5.34 2.151 1.132 1.132a4.25 4.25 0 0 1 5.715 3.23.75.75 0 0 0 .525.59 2.5 2.5 0 0 1 1.366 3.787l1.074 1.073A4 4 0 0 0 13.57 5.82a5.752 5.752 0 0 0-8.23-3.669"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m.47 1.53 14 14 1.06-1.06-14-14zM8.82 12l1.5 1.5H3.75a3.75 3.75 0 0 1-1.42-7.22q.06-.32.14-.62l1.29 1.28a.75.75 0 0 1-.56.63A2.25 2.25 0 0 0 3.75 12zM8 1.5c-.96 0-1.87.24-2.66.65l1.13 1.13a4.25 4.25 0 0 1 5.72 3.23.75.75 0 0 0 .53.59 2.5 2.5 0 0 1 1.36 3.79l1.07 1.07a4 4 0 0 0-1.58-6.15A5.75 5.75 0 0 0 8 1.5"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  CloudOfflineIcon.displayName = 'CloudOfflineIcon';
@@ -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::cadb4ed75c5954118dca158b99b4cf25>>
3
+ * @codegen <<SignedSource::4cb9aeff7a02be7bf769ceffac0a2ff7>>
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 ColourNoneIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="m12.781 13.842 1.689 1.688 1.06-1.06-1.688-1.689.002-.005-1.344-1.343v.006L4.56 3.5h.007L3.223 2.157l-.004.002L1.53.47.47 1.53l1.688 1.69A2 2 0 0 0 2 4v8a2 2 0 0 0 2 2h8c.277 0 .541-.056.781-.157M11.439 12.5 3.5 4.56V12a.5.5 0 0 0 .5.5z" clip-rule="evenodd"/><path fill="currentcolor" d="M14 4v6.812l-1.5-1.5V4a.5.5 0 0 0-.5-.5H6.688L5.188 2H12a2 2 0 0 1 2 2"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m.47 1.53 14 14 1.06-1.06-14-14zM9.32 12.5l1.5 1.5H4a2 2 0 0 1-2-2V5.18l1.5 1.5V12a.5.5 0 0 0 .5.5zM12 2H5.18l1.5 1.5H12a.5.5 0 0 1 .5.5v5.32l1.5 1.5V4a2 2 0 0 0-2-2"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  ColourNoneIcon.displayName = 'ColourNoneIcon';
@@ -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::0511013eceaa261129e778523a8c4be5>>
3
+ * @codegen <<SignedSource::65c8d1a07eaaa11c9e06986fa8b5d169>>
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 CursorStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" d="M3.125 7.687 1.326 3.109C.887 1.99 1.991.887 3.11 1.326l4.578 1.799L6.53 4.282 2.827 2.827 4.282 6.53z"/><path fill="currentcolor" fill-rule="evenodd" d="m3.723 9.21.002.004L.47 12.47l1.06 1.06 2.793-2.793 1.325 3.374c.476 1.21 2.212 1.145 2.594-.099L9.6 9.6l4.412-1.358c1.244-.382 1.31-2.118.099-2.594l-3.373-1.325L13.53 1.53 12.47.47 9.214 3.725l-.004-.002L8.053 4.88l.004.002-3.175 3.175-.002-.004zm1.757.37 1.434 3.65 1.272-4.134c.134-.436.474-.776.91-.91l4.134-1.272L9.58 5.48z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m12.53 1.53-11 11-1.06-1.06 11-11zM1.33 3.11l1.52 3.86 1.16-1.16-1.17-2.99 2.99 1.17 1.16-1.16-3.86-1.52c-1.14-.42-2.24.68-1.8 1.8m4.32 11-1.01-2.57 1.16-1.16 1.12 2.85L8.19 9.1c.13-.44.47-.78.91-.91l4.13-1.27-2.84-1.12 1.16-1.16 2.57 1.01c1.21.48 1.15 2.21-.1 2.59L9.6 9.6l-1.36 4.41c-.38 1.24-2.12 1.31-2.59.1"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  CursorStrikethroughIcon.displayName = 'CursorStrikethroughIcon';
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::b10fddd71df670ff6e07ae902e1db1cb>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const LayoutThreeColumnsSidebarsLeftIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default LayoutThreeColumnsSidebarsLeftIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8011e827a84100ecf0a66bb98e2d5705>>
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: "LayoutThreeColumnsSidebarsLeft".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for 3 column layout with 2 sidebars on left option in Confluence Editor.
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 LayoutThreeColumnsSidebarsLeftIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M0 2.375C0 1.615.616 1 1.375 1h.75c.76 0 1.375.616 1.375 1.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75C.615 15 0 14.384 0 13.625zm1.5.125v11H2v-11zM5 2.375C5 1.615 5.616 1 6.375 1h.75c.76 0 1.375.616 1.375 1.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75C5.615 15 5 14.384 5 13.625zm1.5.125v11H7v-11zm3.5-.125C10 1.615 10.616 1 11.375 1h3.25C15.385 1 16 1.616 16 2.375v11.25c0 .76-.616 1.375-1.375 1.375h-3.25c-.76 0-1.375-.616-1.375-1.375zm1.5.125v11h3v-11z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ LayoutThreeColumnsSidebarsLeftIcon.displayName = 'LayoutThreeColumnsSidebarsLeftIcon';
28
+ var _default = exports.default = LayoutThreeColumnsSidebarsLeftIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::478c16600900804e96459f50620b64d0>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const LayoutThreeColumnsSidebarsRightIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default LayoutThreeColumnsSidebarsRightIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::be0749eebfc6b708c7016889e1de20a0>>
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: "LayoutThreeColumnsSidebarsRight".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for 3 column layout with 2 sidebars on right option in Confluence Editor.
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 LayoutThreeColumnsSidebarsRightIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M0 2.375C0 1.615.616 1 1.375 1h3.25C5.385 1 6 1.616 6 2.375v11.25C6 14.385 5.384 15 4.625 15h-3.25C.615 15 0 14.384 0 13.625zm1.5.125v11h3v-11zm6-.125C7.5 1.615 8.116 1 8.875 1h.75C10.385 1 11 1.616 11 2.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75c-.76 0-1.375-.616-1.375-1.375zM9 2.5v11h.5v-11zm3.5-.125c0-.76.616-1.375 1.375-1.375h.75C15.385 1 16 1.616 16 2.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75c-.76 0-1.375-.616-1.375-1.375zM14 2.5v11h.5v-11z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ LayoutThreeColumnsSidebarsRightIcon.displayName = 'LayoutThreeColumnsSidebarsRightIcon';
28
+ var _default = exports.default = LayoutThreeColumnsSidebarsRightIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::70d576619dcf9dda85e740c597647431>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const PinStrikethroughIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default PinStrikethroughIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::814e940c425f4bf86bf046517f513031>>
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: "PinStrikethrough".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Known uses: Unpinning comments in Jira
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 PinStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M12.18 7.54c.84.6 1.67 1.62 1.8 3.26L9.5 6.32V3.25a.75.75 0 0 1 .11-.39l.82-1.36H5.58l.82 1.36a.75.75 0 0 1 .11.39v.07L4.07.89A1.37 1.37 0 0 1 5.35 0h5.29a1.38 1.38 0 0 1 1.18 2.08L11 3.46v3.48c.33.12.75.31 1.18.61m-8.03-.22 1.11 1.11c-.18.08-.38.19-.58.33a2.7 2.7 0 0 0-1.11 1.73h3.75l1.5 1.5h-.07v4h-1.5v-4h-4.5a.75.75 0 0 1-.75-.75c0-1.9.9-3.05 1.82-3.71q.17-.12.33-.21M.47 1.53l14 14 1.06-1.06-14-14z"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ PinStrikethroughIcon.displayName = 'PinStrikethroughIcon';
28
+ var _default = exports.default = PinStrikethroughIcon;
package/core/recur.d.ts CHANGED
@@ -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::a26d8cdfcc51694eddba86dc6261d71a>>
3
+ * @codegen <<SignedSource::1edcfe71c2a93296a8326c58e5e61b6f>>
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 "recur" is deprecated in favour of "repeat" from “@atlaskit/icon-lab/core”
11
+ */
9
12
  declare const RecurIcon: {
10
13
  (props: NewCoreIconProps): JSX.Element;
11
14
  displayName: string;
package/core/space.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::d1b4d4bea1a405b5c062dc3e547eb252>>
3
+ * @codegen <<SignedSource::4ac9290784d2a58aa5091acba5eeec04>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -16,7 +16,9 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
16
16
  * Icon: "Space".
17
17
  * Category: single-purpose
18
18
  * Location: @atlaskit/icon-lab
19
- * Usage guidance: Reserved for use for Jira Projects for now. This will replace the Jira rocket. Context: Later, it will eventually replace the Confluence Spaces icon later when Jira Projects -> Jira Spaces. This is a planned phased rollout.
19
+ * Usage guidance: Reserved for use for Jira Projects for now. This will replace the Jira rocket.
20
+
21
+ More context: Later, it will eventually replace the Confluence Spaces icon later when Jira Projects -> Jira Spaces. This is a planned phased rollout.
20
22
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
23
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
24
  */
@@ -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::a34ed16f3ba8baf3883d01644f6a7da7>>
3
+ * @codegen <<SignedSource::b000b9e2fba9d425455c69b9c4190207>>
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 "speedometer" is deprecated in favour of "speedometer-right" from “@atlaskit/icon-lab/core”
11
+ */
9
12
  declare const SpeedometerIcon: {
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::2622294ee2582a5f748b152872a027ea>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const StudioIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default StudioIcon;
package/core/studio.js ADDED
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::983082c1a46274d57865b312a3584142>>
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: "Studio".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for functional representation of Atlassian Studio
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 StudioIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.5 7.875c0-.76.616-1.375 1.375-1.375h6.75c.76 0 1.375.616 1.375 1.375v6.75c0 .76-.616 1.375-1.375 1.375h-6.75c-.76 0-1.375-.616-1.375-1.375zM8 8v6.5h6.5V8z" clip-rule="evenodd"/><path fill="currentcolor" d="M5.955.235a1.38 1.38 0 0 0-1.41 0L.67 2.549C.254 2.797 0 3.246 0 3.73v4.29c0 .484.254.933.67 1.18l3.875 2.315q.216.128.455.172V10.04L1.5 7.95V3.8l3.75-2.239L9 3.801V5h1.5V3.73c0-.484-.255-.933-.67-1.18z"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ StudioIcon.displayName = 'StudioIcon';
28
+ var _default = exports.default = StudioIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::18598ce35cf7f85a40c338f35b440ed2>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const TelescopeIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default TelescopeIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8ad4e654fa4e4c8e1f7aa3f5bd455262>>
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: "Telescope".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Known uses: Discover feature in Atlassian Home
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 TelescopeIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M9.708 4.312 3.702 6.799l.091.22.005.011.957 2.31.004.011.091.22 1.417-.587A2 2 0 0 1 9.463 7.66l1.393-.576zm1.77 4.138-1.248.516a2 2 0 0 1-.323 1.404l2.242 3.88-1.298.75-2.192-3.792a2 2 0 0 1-.819 0L5.65 15l-1.3-.75 2.164-3.744-1.205.499a1.376 1.376 0 0 1-1.605-.418l-1.665.69a.75.75 0 0 1-.98-.406L.103 8.56a.75.75 0 0 1 .405-.98l1.665-.69a1.38 1.38 0 0 1 .84-1.43L9.18 2.906a1.38 1.38 0 0 1 .84-1.43L12.446.472a.75.75 0 0 1 .98.405l2.488 6.006a.75.75 0 0 1-.406.98l-2.425 1.004a1.376 1.376 0 0 1-1.605-.417m-8.779-.153-.924.383.383.924.924-.383zm9.925-.863-1.913-4.62 1.617-.67 1.913 4.62zM8.25 8.75a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ TelescopeIcon.displayName = 'TelescopeIcon';
28
+ var _default = exports.default = TelescopeIcon;
@@ -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::2a13ee666b5d79bec729afea3cc70e02>>
3
+ * @codegen <<SignedSource::6a9013cf7b78aca8b9d5f90ab159c2f5>>
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 TextBoldItalicStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M4.215 1.93c.094-.538.561-.93 1.108-.93h4.622c1.125 0 2.175.398 2.896 1.188.734.803 1.026 1.9.82 3.07a4.5 4.5 0 0 1-.89 1.992H15v1.5H1v-1.5h2.277zm1.413 4.945H8.91c1.238 0 2.335-.877 2.535-2.008.098-.555-.05-.926-.264-1.161-.227-.248-.633-.456-1.236-.456H6.267z" clip-rule="evenodd"/><path fill="currentcolor" d="M11.433 10.25h2.254q.019.432-.062.883C13.215 13.452 11.087 15 8.875 15H3.25a1.125 1.125 0 0 1-1.108-1.32l.604-3.43h2.285l-.44 2.5h4.284c1.238 0 2.335-.877 2.535-2.008q.047-.275.023-.492"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M4.22 1.93c.09-.54.56-.93 1.11-.93h4.62c1.13 0 2.17.4 2.9 1.19.73.8 1.03 1.9.82 3.07q-.05.25-.12.49h-2.47a2.25 2.25 0 0 0 .37-.88c.1-.56-.05-.93-.26-1.16-.23-.25-.63-.46-1.24-.46H6.27l-.44 2.5H3.54zm7.21 8.32h2.25q.02.43-.06.88c-.4 2.32-2.53 3.87-4.74 3.87H3.25a1.13 1.13 0 0 1-1.11-1.32l.6-3.43h2.29l-.44 2.5h4.28c1.24 0 2.34-.88 2.54-2.01q.05-.28.02-.49m4.57-3H0v1.5h16z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextBoldItalicStrikethroughIcon.displayName = 'TextBoldItalicStrikethroughIcon';
@@ -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::538b11cdd48f55fe86ca1c6696f4d2aa>>
3
+ * @codegen <<SignedSource::6b68800d7d06800eba3fb9092d4d7d19>>
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 TextBoldItalicUnderlineStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.125 1.75a1 1 0 0 0-.976.783L4.323 6.25H1v1.5h14v-1.5h-2.93a3.25 3.25 0 0 0-3-4.5zm.247 4.5.555-2.5H9.07a1.25 1.25 0 1 1 0 2.5z" clip-rule="evenodd"/><path fill="currentcolor" d="M12.29 9.25h-2.05a1.5 1.5 0 0 1-1.41 2H5.35l.4-2H3.71l-.56 2.8a1 1 0 0 0 .98 1.2h4.7a3.5 3.5 0 0 0 3.47-4M0 16.75h16v-1.5H0z"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M6.13 1a1 1 0 0 0-.98.78l-.6 2.72h.27zm0 0h2.94a3.25 3.25 0 0 1 3.24 3.5h-2.02A1.25 1.25 0 0 0 9.07 3H6.93L6.6 4.5H4.82zm6.2 8h-2q0 .14-.03.29a1.5 1.5 0 0 1-1.47 1.21H5.35l.3-1.5H3.61l-.46 2.3a1 1 0 0 0 .98 1.2h4.7a3.5 3.5 0 0 0 3.5-3.5M16 16H0v-1.5h16zM15 6H1v1.5h14z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextBoldItalicUnderlineStrikethroughIcon.displayName = 'TextBoldItalicUnderlineStrikethroughIcon';
@@ -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::2e67ea109fa2ed71033c652fc78f5d93>>
3
+ * @codegen <<SignedSource::38ef2745b6e28fde94214536ae8c64cd>>
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 TextBoldStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M4.125 1C3.504 1 3 1.504 3 2.125V7.25H1v1.5h14v-1.5h-2.634A3.96 3.96 0 0 0 13 5.063C13 2.626 11.004 1 8.75 1zm6.625 4.063c0 1.014-.802 1.812-2 1.812h-3.5V3.25h3.5c1.198 0 2 .798 2 1.813" clip-rule="evenodd"/><path fill="currentcolor" d="M13.945 10.25h-2.329q.133.319.134.688c0 1.014-.802 1.812-2 1.812h-4.5v-2.5H3v3.625C3 14.496 3.504 15 4.125 15H9.75c2.254 0 4.25-1.626 4.25-4.062a4 4 0 0 0-.055-.688"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M3 2.13C3 1.5 3.5 1 4.13 1h4.62C11 1 13 2.63 13 5.06q0 .36-.05.69h-2.33c.09-.21.13-.44.13-.69 0-1.01-.8-1.81-2-1.81h-3.5v2.5H3zm8.62 8.12h2.33q.06.33.06.69C14 13.37 12 15 9.75 15H4.13A1.13 1.13 0 0 1 3 13.88v-3.63h2.25v2.5h4.5c1.2 0 2-.8 2-1.81a1.8 1.8 0 0 0-.13-.69m4.38-3H0v1.5h16z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextBoldStrikethroughIcon.displayName = 'TextBoldStrikethroughIcon';
@@ -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::199e37b7f4bd95472d2aca8c559ca5f8>>
3
+ * @codegen <<SignedSource::d65ba40d9e6e7b1676701a995043e98a>>
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 TextBoldUnderlineStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M5 1a1 1 0 0 0-1 1v3.5H1V7h14V5.5h-3.192A3.375 3.375 0 0 0 8.625 1zm1 4.5h3.416a1.375 1.375 0 0 0-.79-2.5H5.999z" clip-rule="evenodd"/><path fill="currentcolor" d="M12.94 8.5h-2.09a1.38 1.38 0 0 1-1.23 2H6v-2H4v3a1 1 0 0 0 1 1h4.63a3.38 3.38 0 0 0 3.32-4M0 16h16v-1.5H0z"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M5 1a1 1 0 0 0-1 1v2.5h2V3h2.63A1.38 1.38 0 0 1 10 4.5h2v-.12A3.38 3.38 0 0 0 8.63 1zm8 8h-2q.01.06.01.13c0 .76-.62 1.38-1.37 1.38H6V9H4v2.5a1 1 0 0 0 1 1h4.63A3.38 3.38 0 0 0 13 9m3 7H0v-1.5h16zM15 6H1v1.5h14z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextBoldUnderlineStrikethroughIcon.displayName = 'TextBoldUnderlineStrikethroughIcon';
@@ -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::8d4e905519b87e431c6a5b1d18131e07>>
3
+ * @codegen <<SignedSource::3c879d0e30caa41d19b76943fba23c6b>>
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 TextItalicStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" d="M12.5 1H6v1.5h2.55L7.41 7.25H1v1.5h14v-1.5H8.95l1.14-4.75h2.41zm-4.27 9.25H6.69l-.78 3.25H3.5V15H10v-1.5H7.45z"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M6 1h6.5v1.5h-2.41l-.78 3.25H7.77l.78-3.25H6zm.69 9.25h1.54l-.78 3.25H10V15H3.5v-1.5h2.41zm8.31-3H1v1.5h14z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextItalicStrikethroughIcon.displayName = 'TextItalicStrikethroughIcon';
@@ -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::6004f4f25241da38e240f101914ee4ef>>
3
+ * @codegen <<SignedSource::b767b439e34c345c00b9dec3fa64b0a3>>
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 TextItalicUnderlineStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" d="M6.44 1h5.07v1.5H9.76l-.72 3H15V7H1V5.5h6.5l.72-3H6.44zm.34 7.5-.54 2.25H4.49v1.5h5.07v-1.5H7.78l.54-2.25zM0 16h16v-1.5H0z"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M11.51 1H6.44v1.5h1.78l-.47 2h1.54l.47-2h1.75zM8.24 9H6.7l-.47 2H4.49v1.5h5.07V11H7.78zM16 16H0v-1.5h16zM15 6H1v1.5h14z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextItalicUnderlineStrikethroughIcon.displayName = 'TextItalicUnderlineStrikethroughIcon';
@@ -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::4292144daec9b86e93ab1dd93419846d>>
3
+ * @codegen <<SignedSource::19d60f24eb2f61bcdf8495f079afbc9b>>
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 TextParagraphIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M5.25 2.5a2.75 2.75 0 0 0 0 5.5H7.5V2.5zM9 2.5V15H7.5V9.5H5.25a4.25 4.25 0 0 1 0-8.5H15v1.5h-2V15h-1.5V2.5z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.25 2.5a2.75 2.75 0 0 0 0 5.5H8V2.5zm3.25 0V15H8V9.5H6.25a4.25 4.25 0 0 1 0-8.5h5.5a.75.75 0 0 1 .75.75V15H11V2.5z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextParagraphIcon.displayName = 'TextParagraphIcon';
@@ -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::6576e0a99745db83c3d7454efc70aa4b>>
3
+ * @codegen <<SignedSource::5b607e143a45535915991770149fdca5>>
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 TextUnderlineStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" d="M3.53 8.5a4.5 4.5 0 0 0 8.95 0h-1.51a3 3 0 0 1-5.92 0zM15 7V5.5h-2.5V1H11v4.5H5V1H3.5v4.5H1V7zM0 16v-1.5h16V16z"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M3.5 4.5H5V1H3.5zM5.17 9a3 3 0 0 0 5.66 0h1.56a4.5 4.5 0 0 1-8.78 0zm7.33-4.5H11V1h1.5zM0 16v-1.5h16V16zM15 6H1v1.5h14z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextUnderlineStrikethroughIcon.displayName = 'TextUnderlineStrikethroughIcon';
@@ -9,8 +9,15 @@ 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::8445ed95dffea52ddea417fc5752ff90>>
12
+ * @codegen <<SignedSource::9acb14056f3b24b8e695fba0b6e482ae>>
13
13
  * @codegenCommand yarn build:icon-glyphs
14
14
  */
15
- var deprecatedIcons = {};
15
+ var deprecatedIcons = {
16
+ '@atlaskit/icon-lab/core/recur': {
17
+ message: 'The icon "recur" is deprecated in favour of "repeat" from “@atlaskit/icon-lab/core”'
18
+ },
19
+ '@atlaskit/icon-lab/core/speedometer': {
20
+ message: 'The icon "speedometer" is deprecated in favour of "speedometer-right" from “@atlaskit/icon-lab/core”'
21
+ }
22
+ };
16
23
  var _default = exports.default = deprecatedIcons;
@@ -9,7 +9,7 @@ exports.default = void 0;
9
9
  *
10
10
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
11
11
  *
12
- * @codegen <<SignedSource::2ff15dccd79cac17aeed3438db1b76ac>>
12
+ * @codegen <<SignedSource::507d576ac51298bbe1df0e262a310ef0>>
13
13
  * @codegenCommand yarn build:icon-glyphs
14
14
  */
15
15
 
@@ -632,6 +632,26 @@ var metadata = {
632
632
  team: 'Confluence Editor',
633
633
  status: 'published'
634
634
  },
635
+ 'layout-three-columns-sidebars-left': {
636
+ keywords: ['layout-three-columns-sidebars-left', 'layoutthreecolumnssidebarsleft', 'icon', 'icon-lab', 'core', 'layout', 'columns', '3 col', '3 cols', 'sidebars', 'asides'],
637
+ componentName: 'LayoutThreeColumnsSidebarsLeftIcon',
638
+ package: '@atlaskit/icon-lab/core/layout-three-columns-sidebars-left',
639
+ type: 'core',
640
+ categorization: 'single-purpose',
641
+ usage: 'Reserved for 3 column layout with 2 sidebars on left option in Confluence Editor.',
642
+ team: 'Editor',
643
+ status: 'published'
644
+ },
645
+ 'layout-three-columns-sidebars-right': {
646
+ keywords: ['layout-three-columns-sidebars-right', 'layoutthreecolumnssidebarsright', 'icon', 'icon-lab', 'core', 'layout', 'columns', '3 col', '3 cols', 'sidebars', 'asides'],
647
+ componentName: 'LayoutThreeColumnsSidebarsRightIcon',
648
+ package: '@atlaskit/icon-lab/core/layout-three-columns-sidebars-right',
649
+ type: 'core',
650
+ categorization: 'single-purpose',
651
+ usage: 'Reserved for 3 column layout with 2 sidebars on right option in Confluence Editor.',
652
+ team: 'Editor',
653
+ status: 'published'
654
+ },
635
655
  'link-restricted-access': {
636
656
  keywords: ['link-restricted-access', 'linkrestrictedaccess', 'icon', 'icon-lab', 'core', 'link', 'strikethrough', 'limited'],
637
657
  componentName: 'LinkRestrictedAccessIcon',
@@ -804,6 +824,16 @@ var metadata = {
804
824
  status: 'published',
805
825
  slackChannel: '#feedback-loom-vizrefresh'
806
826
  },
827
+ 'pin-strikethrough': {
828
+ keywords: ['pin-strikethrough', 'pinstrikethrough', 'icon', 'icon-lab', 'core', 'push pin', 'thumbtack', 'tack', 'unpin'],
829
+ componentName: 'PinStrikethroughIcon',
830
+ package: '@atlaskit/icon-lab/core/pin-strikethrough',
831
+ type: 'core',
832
+ categorization: 'multi-purpose',
833
+ usage: 'Known uses: Unpinning comments in Jira',
834
+ team: 'Jira',
835
+ status: 'published'
836
+ },
807
837
  'plus-circle': {
808
838
  keywords: ['plus-circle', 'pluscircle', 'icon', 'icon-lab', 'core', 'add'],
809
839
  componentName: 'PlusCircleIcon',
@@ -861,9 +891,15 @@ var metadata = {
861
891
  componentName: 'RecurIcon',
862
892
  package: '@atlaskit/icon-lab/core/recur',
863
893
  type: 'core',
894
+ replacement: {
895
+ name: 'repeat',
896
+ type: 'core',
897
+ location: '@atlaskit/icon-lab'
898
+ },
864
899
  categorization: 'single-purpose',
865
900
  usage: 'Reserved for setting objects to recur (eg Work items, Forms)',
866
901
  team: 'Pandora',
902
+ status: 'deprecated',
867
903
  slackChannel: '#horizon-pandora-eng'
868
904
  },
869
905
  repeat: {
@@ -1056,7 +1092,7 @@ var metadata = {
1056
1092
  package: '@atlaskit/icon-lab/core/space',
1057
1093
  type: 'core',
1058
1094
  categorization: 'single-purpose',
1059
- usage: 'Reserved for use for Jira Projects for now. This will replace the Jira rocket. Context: Later, it will eventually replace the Confluence Spaces icon later when Jira Projects -> Jira Spaces. This is a planned phased rollout.',
1095
+ usage: 'Reserved for use for Jira Projects for now. This will replace the Jira rocket. More context: Later, it will eventually replace the Confluence Spaces icon later when Jira Projects -> Jira Spaces. This is a planned phased rollout.',
1060
1096
  team: 'Jira',
1061
1097
  status: 'published',
1062
1098
  slackChannel: '#jira-design-system-figma-libraries'
@@ -1066,9 +1102,15 @@ var metadata = {
1066
1102
  componentName: 'SpeedometerIcon',
1067
1103
  package: '@atlaskit/icon-lab/core/speedometer',
1068
1104
  type: 'core',
1105
+ replacement: {
1106
+ name: 'speedometer-right',
1107
+ type: 'core',
1108
+ location: '@atlaskit/icon-lab'
1109
+ },
1069
1110
  categorization: 'multi-purpose',
1070
1111
  usage: 'Known uses: video is set to a faster playback speed',
1071
- team: 'Loom'
1112
+ team: 'Loom',
1113
+ status: 'deprecated'
1072
1114
  },
1073
1115
  'speedometer-left': {
1074
1116
  keywords: ['speedometer-left', 'speedometerleft', 'icon', 'icon-lab', 'core', 'speed', 'performance', 'dial', 'slow'],
@@ -1201,6 +1243,16 @@ var metadata = {
1201
1243
  team: 'Whiteboards',
1202
1244
  status: 'published'
1203
1245
  },
1246
+ studio: {
1247
+ keywords: ['studio', 'icon', 'icon-lab', 'core', 'studio', 'atlassian studio'],
1248
+ componentName: 'StudioIcon',
1249
+ package: '@atlaskit/icon-lab/core/studio',
1250
+ type: 'core',
1251
+ categorization: 'single-purpose',
1252
+ usage: 'Reserved for functional representation of Atlassian Studio',
1253
+ team: 'Design Systems Team',
1254
+ status: 'published'
1255
+ },
1204
1256
  'suggested-edit': {
1205
1257
  keywords: ['suggested-edit', 'suggestededit', 'icon', 'icon-lab', 'core', 'AI', 'suggestion', 'suggested edit', 'suggest', 'generative'],
1206
1258
  componentName: 'SuggestedEditIcon',
@@ -1283,6 +1335,16 @@ var metadata = {
1283
1335
  team: 'Talent',
1284
1336
  status: 'published'
1285
1337
  },
1338
+ telescope: {
1339
+ keywords: ['telescope', 'icon', 'icon-lab', 'core', 'telescope', 'scope', 'discover', 'discovery'],
1340
+ componentName: 'TelescopeIcon',
1341
+ package: '@atlaskit/icon-lab/core/telescope',
1342
+ type: 'core',
1343
+ categorization: 'multi-purpose',
1344
+ usage: 'Known uses: Discover feature in Atlassian Home',
1345
+ team: 'Atlassian Home',
1346
+ status: 'published'
1347
+ },
1286
1348
  template: {
1287
1349
  keywords: ['template', 'icon', 'icon-lab', 'core', 'template', 'templates'],
1288
1350
  componentName: 'TemplateIcon',
@@ -3,8 +3,15 @@
3
3
  *
4
4
  * To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::8445ed95dffea52ddea417fc5752ff90>>
6
+ * @codegen <<SignedSource::9acb14056f3b24b8e695fba0b6e482ae>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
- const deprecatedIcons = {};
9
+ const deprecatedIcons = {
10
+ '@atlaskit/icon-lab/core/recur': {
11
+ message: 'The icon "recur" is deprecated in favour of "repeat" from “@atlaskit/icon-lab/core”'
12
+ },
13
+ '@atlaskit/icon-lab/core/speedometer': {
14
+ message: 'The icon "speedometer" is deprecated in favour of "speedometer-right" from “@atlaskit/icon-lab/core”'
15
+ }
16
+ };
10
17
  export default deprecatedIcons;
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::2ff15dccd79cac17aeed3438db1b76ac>>
6
+ * @codegen <<SignedSource::507d576ac51298bbe1df0e262a310ef0>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
 
@@ -626,6 +626,26 @@ const metadata = {
626
626
  team: 'Confluence Editor',
627
627
  status: 'published'
628
628
  },
629
+ 'layout-three-columns-sidebars-left': {
630
+ keywords: ['layout-three-columns-sidebars-left', 'layoutthreecolumnssidebarsleft', 'icon', 'icon-lab', 'core', 'layout', 'columns', '3 col', '3 cols', 'sidebars', 'asides'],
631
+ componentName: 'LayoutThreeColumnsSidebarsLeftIcon',
632
+ package: '@atlaskit/icon-lab/core/layout-three-columns-sidebars-left',
633
+ type: 'core',
634
+ categorization: 'single-purpose',
635
+ usage: 'Reserved for 3 column layout with 2 sidebars on left option in Confluence Editor.',
636
+ team: 'Editor',
637
+ status: 'published'
638
+ },
639
+ 'layout-three-columns-sidebars-right': {
640
+ keywords: ['layout-three-columns-sidebars-right', 'layoutthreecolumnssidebarsright', 'icon', 'icon-lab', 'core', 'layout', 'columns', '3 col', '3 cols', 'sidebars', 'asides'],
641
+ componentName: 'LayoutThreeColumnsSidebarsRightIcon',
642
+ package: '@atlaskit/icon-lab/core/layout-three-columns-sidebars-right',
643
+ type: 'core',
644
+ categorization: 'single-purpose',
645
+ usage: 'Reserved for 3 column layout with 2 sidebars on right option in Confluence Editor.',
646
+ team: 'Editor',
647
+ status: 'published'
648
+ },
629
649
  'link-restricted-access': {
630
650
  keywords: ['link-restricted-access', 'linkrestrictedaccess', 'icon', 'icon-lab', 'core', 'link', 'strikethrough', 'limited'],
631
651
  componentName: 'LinkRestrictedAccessIcon',
@@ -798,6 +818,16 @@ const metadata = {
798
818
  status: 'published',
799
819
  slackChannel: '#feedback-loom-vizrefresh'
800
820
  },
821
+ 'pin-strikethrough': {
822
+ keywords: ['pin-strikethrough', 'pinstrikethrough', 'icon', 'icon-lab', 'core', 'push pin', 'thumbtack', 'tack', 'unpin'],
823
+ componentName: 'PinStrikethroughIcon',
824
+ package: '@atlaskit/icon-lab/core/pin-strikethrough',
825
+ type: 'core',
826
+ categorization: 'multi-purpose',
827
+ usage: 'Known uses: Unpinning comments in Jira',
828
+ team: 'Jira',
829
+ status: 'published'
830
+ },
801
831
  'plus-circle': {
802
832
  keywords: ['plus-circle', 'pluscircle', 'icon', 'icon-lab', 'core', 'add'],
803
833
  componentName: 'PlusCircleIcon',
@@ -855,9 +885,15 @@ const metadata = {
855
885
  componentName: 'RecurIcon',
856
886
  package: '@atlaskit/icon-lab/core/recur',
857
887
  type: 'core',
888
+ replacement: {
889
+ name: 'repeat',
890
+ type: 'core',
891
+ location: '@atlaskit/icon-lab'
892
+ },
858
893
  categorization: 'single-purpose',
859
894
  usage: 'Reserved for setting objects to recur (eg Work items, Forms)',
860
895
  team: 'Pandora',
896
+ status: 'deprecated',
861
897
  slackChannel: '#horizon-pandora-eng'
862
898
  },
863
899
  repeat: {
@@ -1050,7 +1086,7 @@ const metadata = {
1050
1086
  package: '@atlaskit/icon-lab/core/space',
1051
1087
  type: 'core',
1052
1088
  categorization: 'single-purpose',
1053
- usage: 'Reserved for use for Jira Projects for now. This will replace the Jira rocket. Context: Later, it will eventually replace the Confluence Spaces icon later when Jira Projects -> Jira Spaces. This is a planned phased rollout.',
1089
+ usage: 'Reserved for use for Jira Projects for now. This will replace the Jira rocket. More context: Later, it will eventually replace the Confluence Spaces icon later when Jira Projects -> Jira Spaces. This is a planned phased rollout.',
1054
1090
  team: 'Jira',
1055
1091
  status: 'published',
1056
1092
  slackChannel: '#jira-design-system-figma-libraries'
@@ -1060,9 +1096,15 @@ const metadata = {
1060
1096
  componentName: 'SpeedometerIcon',
1061
1097
  package: '@atlaskit/icon-lab/core/speedometer',
1062
1098
  type: 'core',
1099
+ replacement: {
1100
+ name: 'speedometer-right',
1101
+ type: 'core',
1102
+ location: '@atlaskit/icon-lab'
1103
+ },
1063
1104
  categorization: 'multi-purpose',
1064
1105
  usage: 'Known uses: video is set to a faster playback speed',
1065
- team: 'Loom'
1106
+ team: 'Loom',
1107
+ status: 'deprecated'
1066
1108
  },
1067
1109
  'speedometer-left': {
1068
1110
  keywords: ['speedometer-left', 'speedometerleft', 'icon', 'icon-lab', 'core', 'speed', 'performance', 'dial', 'slow'],
@@ -1195,6 +1237,16 @@ const metadata = {
1195
1237
  team: 'Whiteboards',
1196
1238
  status: 'published'
1197
1239
  },
1240
+ studio: {
1241
+ keywords: ['studio', 'icon', 'icon-lab', 'core', 'studio', 'atlassian studio'],
1242
+ componentName: 'StudioIcon',
1243
+ package: '@atlaskit/icon-lab/core/studio',
1244
+ type: 'core',
1245
+ categorization: 'single-purpose',
1246
+ usage: 'Reserved for functional representation of Atlassian Studio',
1247
+ team: 'Design Systems Team',
1248
+ status: 'published'
1249
+ },
1198
1250
  'suggested-edit': {
1199
1251
  keywords: ['suggested-edit', 'suggestededit', 'icon', 'icon-lab', 'core', 'AI', 'suggestion', 'suggested edit', 'suggest', 'generative'],
1200
1252
  componentName: 'SuggestedEditIcon',
@@ -1277,6 +1329,16 @@ const metadata = {
1277
1329
  team: 'Talent',
1278
1330
  status: 'published'
1279
1331
  },
1332
+ telescope: {
1333
+ keywords: ['telescope', 'icon', 'icon-lab', 'core', 'telescope', 'scope', 'discover', 'discovery'],
1334
+ componentName: 'TelescopeIcon',
1335
+ package: '@atlaskit/icon-lab/core/telescope',
1336
+ type: 'core',
1337
+ categorization: 'multi-purpose',
1338
+ usage: 'Known uses: Discover feature in Atlassian Home',
1339
+ team: 'Atlassian Home',
1340
+ status: 'published'
1341
+ },
1280
1342
  template: {
1281
1343
  keywords: ['template', 'icon', 'icon-lab', 'core', 'template', 'templates'],
1282
1344
  componentName: 'TemplateIcon',
@@ -3,8 +3,15 @@
3
3
  *
4
4
  * To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::8445ed95dffea52ddea417fc5752ff90>>
6
+ * @codegen <<SignedSource::9acb14056f3b24b8e695fba0b6e482ae>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
- var deprecatedIcons = {};
9
+ var deprecatedIcons = {
10
+ '@atlaskit/icon-lab/core/recur': {
11
+ message: 'The icon "recur" is deprecated in favour of "repeat" from “@atlaskit/icon-lab/core”'
12
+ },
13
+ '@atlaskit/icon-lab/core/speedometer': {
14
+ message: 'The icon "speedometer" is deprecated in favour of "speedometer-right" from “@atlaskit/icon-lab/core”'
15
+ }
16
+ };
10
17
  export default deprecatedIcons;
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::2ff15dccd79cac17aeed3438db1b76ac>>
6
+ * @codegen <<SignedSource::507d576ac51298bbe1df0e262a310ef0>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
 
@@ -626,6 +626,26 @@ var metadata = {
626
626
  team: 'Confluence Editor',
627
627
  status: 'published'
628
628
  },
629
+ 'layout-three-columns-sidebars-left': {
630
+ keywords: ['layout-three-columns-sidebars-left', 'layoutthreecolumnssidebarsleft', 'icon', 'icon-lab', 'core', 'layout', 'columns', '3 col', '3 cols', 'sidebars', 'asides'],
631
+ componentName: 'LayoutThreeColumnsSidebarsLeftIcon',
632
+ package: '@atlaskit/icon-lab/core/layout-three-columns-sidebars-left',
633
+ type: 'core',
634
+ categorization: 'single-purpose',
635
+ usage: 'Reserved for 3 column layout with 2 sidebars on left option in Confluence Editor.',
636
+ team: 'Editor',
637
+ status: 'published'
638
+ },
639
+ 'layout-three-columns-sidebars-right': {
640
+ keywords: ['layout-three-columns-sidebars-right', 'layoutthreecolumnssidebarsright', 'icon', 'icon-lab', 'core', 'layout', 'columns', '3 col', '3 cols', 'sidebars', 'asides'],
641
+ componentName: 'LayoutThreeColumnsSidebarsRightIcon',
642
+ package: '@atlaskit/icon-lab/core/layout-three-columns-sidebars-right',
643
+ type: 'core',
644
+ categorization: 'single-purpose',
645
+ usage: 'Reserved for 3 column layout with 2 sidebars on right option in Confluence Editor.',
646
+ team: 'Editor',
647
+ status: 'published'
648
+ },
629
649
  'link-restricted-access': {
630
650
  keywords: ['link-restricted-access', 'linkrestrictedaccess', 'icon', 'icon-lab', 'core', 'link', 'strikethrough', 'limited'],
631
651
  componentName: 'LinkRestrictedAccessIcon',
@@ -798,6 +818,16 @@ var metadata = {
798
818
  status: 'published',
799
819
  slackChannel: '#feedback-loom-vizrefresh'
800
820
  },
821
+ 'pin-strikethrough': {
822
+ keywords: ['pin-strikethrough', 'pinstrikethrough', 'icon', 'icon-lab', 'core', 'push pin', 'thumbtack', 'tack', 'unpin'],
823
+ componentName: 'PinStrikethroughIcon',
824
+ package: '@atlaskit/icon-lab/core/pin-strikethrough',
825
+ type: 'core',
826
+ categorization: 'multi-purpose',
827
+ usage: 'Known uses: Unpinning comments in Jira',
828
+ team: 'Jira',
829
+ status: 'published'
830
+ },
801
831
  'plus-circle': {
802
832
  keywords: ['plus-circle', 'pluscircle', 'icon', 'icon-lab', 'core', 'add'],
803
833
  componentName: 'PlusCircleIcon',
@@ -855,9 +885,15 @@ var metadata = {
855
885
  componentName: 'RecurIcon',
856
886
  package: '@atlaskit/icon-lab/core/recur',
857
887
  type: 'core',
888
+ replacement: {
889
+ name: 'repeat',
890
+ type: 'core',
891
+ location: '@atlaskit/icon-lab'
892
+ },
858
893
  categorization: 'single-purpose',
859
894
  usage: 'Reserved for setting objects to recur (eg Work items, Forms)',
860
895
  team: 'Pandora',
896
+ status: 'deprecated',
861
897
  slackChannel: '#horizon-pandora-eng'
862
898
  },
863
899
  repeat: {
@@ -1050,7 +1086,7 @@ var metadata = {
1050
1086
  package: '@atlaskit/icon-lab/core/space',
1051
1087
  type: 'core',
1052
1088
  categorization: 'single-purpose',
1053
- usage: 'Reserved for use for Jira Projects for now. This will replace the Jira rocket. Context: Later, it will eventually replace the Confluence Spaces icon later when Jira Projects -> Jira Spaces. This is a planned phased rollout.',
1089
+ usage: 'Reserved for use for Jira Projects for now. This will replace the Jira rocket. More context: Later, it will eventually replace the Confluence Spaces icon later when Jira Projects -> Jira Spaces. This is a planned phased rollout.',
1054
1090
  team: 'Jira',
1055
1091
  status: 'published',
1056
1092
  slackChannel: '#jira-design-system-figma-libraries'
@@ -1060,9 +1096,15 @@ var metadata = {
1060
1096
  componentName: 'SpeedometerIcon',
1061
1097
  package: '@atlaskit/icon-lab/core/speedometer',
1062
1098
  type: 'core',
1099
+ replacement: {
1100
+ name: 'speedometer-right',
1101
+ type: 'core',
1102
+ location: '@atlaskit/icon-lab'
1103
+ },
1063
1104
  categorization: 'multi-purpose',
1064
1105
  usage: 'Known uses: video is set to a faster playback speed',
1065
- team: 'Loom'
1106
+ team: 'Loom',
1107
+ status: 'deprecated'
1066
1108
  },
1067
1109
  'speedometer-left': {
1068
1110
  keywords: ['speedometer-left', 'speedometerleft', 'icon', 'icon-lab', 'core', 'speed', 'performance', 'dial', 'slow'],
@@ -1195,6 +1237,16 @@ var metadata = {
1195
1237
  team: 'Whiteboards',
1196
1238
  status: 'published'
1197
1239
  },
1240
+ studio: {
1241
+ keywords: ['studio', 'icon', 'icon-lab', 'core', 'studio', 'atlassian studio'],
1242
+ componentName: 'StudioIcon',
1243
+ package: '@atlaskit/icon-lab/core/studio',
1244
+ type: 'core',
1245
+ categorization: 'single-purpose',
1246
+ usage: 'Reserved for functional representation of Atlassian Studio',
1247
+ team: 'Design Systems Team',
1248
+ status: 'published'
1249
+ },
1198
1250
  'suggested-edit': {
1199
1251
  keywords: ['suggested-edit', 'suggestededit', 'icon', 'icon-lab', 'core', 'AI', 'suggestion', 'suggested edit', 'suggest', 'generative'],
1200
1252
  componentName: 'SuggestedEditIcon',
@@ -1277,6 +1329,16 @@ var metadata = {
1277
1329
  team: 'Talent',
1278
1330
  status: 'published'
1279
1331
  },
1332
+ telescope: {
1333
+ keywords: ['telescope', 'icon', 'icon-lab', 'core', 'telescope', 'scope', 'discover', 'discovery'],
1334
+ componentName: 'TelescopeIcon',
1335
+ package: '@atlaskit/icon-lab/core/telescope',
1336
+ type: 'core',
1337
+ categorization: 'multi-purpose',
1338
+ usage: 'Known uses: Discover feature in Atlassian Home',
1339
+ team: 'Atlassian Home',
1340
+ status: 'published'
1341
+ },
1280
1342
  template: {
1281
1343
  keywords: ['template', 'icon', 'icon-lab', 'core', 'template', 'templates'],
1282
1344
  componentName: 'TemplateIcon',
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::8445ed95dffea52ddea417fc5752ff90>>
6
+ * @codegen <<SignedSource::9acb14056f3b24b8e695fba0b6e482ae>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
  declare const deprecatedIcons: Record<string, {
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::2ff15dccd79cac17aeed3438db1b76ac>>
6
+ * @codegen <<SignedSource::507d576ac51298bbe1df0e262a310ef0>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
  interface metadata {
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::8445ed95dffea52ddea417fc5752ff90>>
6
+ * @codegen <<SignedSource::9acb14056f3b24b8e695fba0b6e482ae>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
  declare const deprecatedIcons: Record<string, {
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::2ff15dccd79cac17aeed3438db1b76ac>>
6
+ * @codegen <<SignedSource::507d576ac51298bbe1df0e262a310ef0>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
  interface metadata {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/icon-lab",
3
- "version": "4.7.0",
3
+ "version": "4.9.0",
4
4
  "description": "An icon package for public icon contributions",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -32,7 +32,7 @@
32
32
  "build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
33
33
  },
34
34
  "dependencies": {
35
- "@atlaskit/icon": "^25.5.0",
35
+ "@atlaskit/icon": "^25.6.0",
36
36
  "@babel/runtime": "^7.0.0"
37
37
  },
38
38
  "peerDependencies": {
@@ -48,7 +48,7 @@
48
48
  "@atlaskit/modal-dialog": "^14.1.0",
49
49
  "@atlaskit/primitives": "^14.4.0",
50
50
  "@atlaskit/textfield": "^8.0.0",
51
- "@atlaskit/tokens": "^4.7.0",
51
+ "@atlaskit/tokens": "^4.8.0",
52
52
  "@atlaskit/tooltip": "^20.0.0",
53
53
  "@atlassian/ssr-tests": "^0.2.0",
54
54
  "@compiled/react": "^0.18.3",
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="m.47 1.53 2.66 2.661a5.7 5.7 0 0 0-.798 2.087A3.75 3.75 0 0 0 3.75 13.5H12q.211 0 .418-.022l2.052 2.052 1.06-1.06-1.514-1.515.004-.002-1.12-1.12-.005.002-7.74-7.742.003-.003-1.062-1.06-.004.003L1.53.47zM3.764 6.9a4.2 4.2 0 0 1 .464-1.611l6.711 6.71H3.75a2.25 2.25 0 0 1-.55-4.431.75.75 0 0 0 .564-.667" clip-rule="evenodd"/><path fill="currentcolor" d="m5.34 2.151 1.132 1.132a4.25 4.25 0 0 1 5.715 3.23.75.75 0 0 0 .525.59 2.5 2.5 0 0 1 1.366 3.787l1.074 1.073A4 4 0 0 0 13.57 5.82a5.752 5.752 0 0 0-8.23-3.669"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="m.47 1.53 14 14 1.06-1.06-14-14zM8.82 12l1.5 1.5H3.75a3.75 3.75 0 0 1-1.42-7.22q.06-.32.14-.62l1.29 1.28a.75.75 0 0 1-.56.63A2.25 2.25 0 0 0 3.75 12zM8 1.5c-.96 0-1.87.24-2.66.65l1.13 1.13a4.25 4.25 0 0 1 5.72 3.23.75.75 0 0 0 .53.59 2.5 2.5 0 0 1 1.36 3.79l1.07 1.07a4 4 0 0 0-1.58-6.15A5.75 5.75 0 0 0 8 1.5"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="m12.781 13.842 1.689 1.688 1.06-1.06-1.688-1.689.002-.005-1.344-1.343v.006L4.56 3.5h.007L3.223 2.157l-.004.002L1.53.47.47 1.53l1.688 1.69A2 2 0 0 0 2 4v8a2 2 0 0 0 2 2h8c.277 0 .541-.056.781-.157M11.439 12.5 3.5 4.56V12a.5.5 0 0 0 .5.5z" clip-rule="evenodd"/><path fill="currentcolor" d="M14 4v6.812l-1.5-1.5V4a.5.5 0 0 0-.5-.5H6.688L5.188 2H12a2 2 0 0 1 2 2"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="m.47 1.53 14 14 1.06-1.06-14-14zM9.32 12.5l1.5 1.5H4a2 2 0 0 1-2-2V5.18l1.5 1.5V12a.5.5 0 0 0 .5.5zM12 2H5.18l1.5 1.5H12a.5.5 0 0 1 .5.5v5.32l1.5 1.5V4a2 2 0 0 0-2-2"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M3.125 7.687 1.326 3.109C.887 1.99 1.991.887 3.11 1.326l4.578 1.799L6.53 4.282 2.827 2.827 4.282 6.53z"/><path fill="currentcolor" fill-rule="evenodd" d="m3.723 9.21.002.004L.47 12.47l1.06 1.06 2.793-2.793 1.325 3.374c.476 1.21 2.212 1.145 2.594-.099L9.6 9.6l4.412-1.358c1.244-.382 1.31-2.118.099-2.594l-3.373-1.325L13.53 1.53 12.47.47 9.214 3.725l-.004-.002L8.053 4.88l.004.002-3.175 3.175-.002-.004zm1.757.37 1.434 3.65 1.272-4.134c.134-.436.474-.776.91-.91l4.134-1.272L9.58 5.48z" clip-rule="evenodd"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="m12.53 1.53-11 11-1.06-1.06 11-11zM1.33 3.11l1.52 3.86 1.16-1.16-1.17-2.99 2.99 1.17 1.16-1.16-3.86-1.52c-1.14-.42-2.24.68-1.8 1.8m4.32 11-1.01-2.57 1.16-1.16 1.12 2.85L8.19 9.1c.13-.44.47-.78.91-.91l4.13-1.27-2.84-1.12 1.16-1.16 2.57 1.01c1.21.48 1.15 2.21-.1 2.59L9.6 9.6l-1.36 4.41c-.38 1.24-2.12 1.31-2.59.1"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M0 2.375C0 1.615.616 1 1.375 1h.75c.76 0 1.375.616 1.375 1.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75C.615 15 0 14.384 0 13.625zm1.5.125v11H2v-11zM5 2.375C5 1.615 5.616 1 6.375 1h.75c.76 0 1.375.616 1.375 1.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75C5.615 15 5 14.384 5 13.625zm1.5.125v11H7v-11zm3.5-.125C10 1.615 10.616 1 11.375 1h3.25C15.385 1 16 1.616 16 2.375v11.25c0 .76-.616 1.375-1.375 1.375h-3.25c-.76 0-1.375-.616-1.375-1.375zm1.5.125v11h3v-11z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M0 2.375C0 1.615.616 1 1.375 1h3.25C5.385 1 6 1.616 6 2.375v11.25C6 14.385 5.384 15 4.625 15h-3.25C.615 15 0 14.384 0 13.625zm1.5.125v11h3v-11zm6-.125C7.5 1.615 8.116 1 8.875 1h.75C10.385 1 11 1.616 11 2.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75c-.76 0-1.375-.616-1.375-1.375zM9 2.5v11h.5v-11zm3.5-.125c0-.76.616-1.375 1.375-1.375h.75C15.385 1 16 1.616 16 2.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75c-.76 0-1.375-.616-1.375-1.375zM14 2.5v11h.5v-11z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M12.18 7.54c.84.6 1.67 1.62 1.8 3.26L9.5 6.32V3.25a.75.75 0 0 1 .11-.39l.82-1.36H5.58l.82 1.36a.75.75 0 0 1 .11.39v.07L4.07.89A1.37 1.37 0 0 1 5.35 0h5.29a1.38 1.38 0 0 1 1.18 2.08L11 3.46v3.48c.33.12.75.31 1.18.61m-8.03-.22 1.11 1.11c-.18.08-.38.19-.58.33a2.7 2.7 0 0 0-1.11 1.73h3.75l1.5 1.5h-.07v4h-1.5v-4h-4.5a.75.75 0 0 1-.75-.75c0-1.9.9-3.05 1.82-3.71q.17-.12.33-.21M.47 1.53l14 14 1.06-1.06-14-14z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M6.5 7.875c0-.76.616-1.375 1.375-1.375h6.75c.76 0 1.375.616 1.375 1.375v6.75c0 .76-.616 1.375-1.375 1.375h-6.75c-.76 0-1.375-.616-1.375-1.375zM8 8v6.5h6.5V8z" clip-rule="evenodd"/><path fill="currentcolor" d="M5.955.235a1.38 1.38 0 0 0-1.41 0L.67 2.549C.254 2.797 0 3.246 0 3.73v4.29c0 .484.254.933.67 1.18l3.875 2.315q.216.128.455.172V10.04L1.5 7.95V3.8l3.75-2.239L9 3.801V5h1.5V3.73c0-.484-.255-.933-.67-1.18z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M9.708 4.312 3.702 6.799l.091.22.005.011.957 2.31.004.011.091.22 1.417-.587A2 2 0 0 1 9.463 7.66l1.393-.576zm1.77 4.138-1.248.516a2 2 0 0 1-.323 1.404l2.242 3.88-1.298.75-2.192-3.792a2 2 0 0 1-.819 0L5.65 15l-1.3-.75 2.164-3.744-1.205.499a1.376 1.376 0 0 1-1.605-.418l-1.665.69a.75.75 0 0 1-.98-.406L.103 8.56a.75.75 0 0 1 .405-.98l1.665-.69a1.38 1.38 0 0 1 .84-1.43L9.18 2.906a1.38 1.38 0 0 1 .84-1.43L12.446.472a.75.75 0 0 1 .98.405l2.488 6.006a.75.75 0 0 1-.406.98l-2.425 1.004a1.376 1.376 0 0 1-1.605-.417m-8.779-.153-.924.383.383.924.924-.383zm9.925-.863-1.913-4.62 1.617-.67 1.913 4.62zM8.25 8.75a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1" clip-rule="evenodd"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M4.215 1.93c.094-.538.561-.93 1.108-.93h4.622c1.125 0 2.175.398 2.896 1.188.734.803 1.026 1.9.82 3.07a4.5 4.5 0 0 1-.89 1.992H15v1.5H1v-1.5h2.277zm1.413 4.945H8.91c1.238 0 2.335-.877 2.535-2.008.098-.555-.05-.926-.264-1.161-.227-.248-.633-.456-1.236-.456H6.267z" clip-rule="evenodd"/><path fill="currentcolor" d="M11.433 10.25h2.254q.019.432-.062.883C13.215 13.452 11.087 15 8.875 15H3.25a1.125 1.125 0 0 1-1.108-1.32l.604-3.43h2.285l-.44 2.5h4.284c1.238 0 2.335-.877 2.535-2.008q.047-.275.023-.492"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M4.22 1.93c.09-.54.56-.93 1.11-.93h4.62c1.13 0 2.17.4 2.9 1.19.73.8 1.03 1.9.82 3.07q-.05.25-.12.49h-2.47a2.25 2.25 0 0 0 .37-.88c.1-.56-.05-.93-.26-1.16-.23-.25-.63-.46-1.24-.46H6.27l-.44 2.5H3.54zm7.21 8.32h2.25q.02.43-.06.88c-.4 2.32-2.53 3.87-4.74 3.87H3.25a1.13 1.13 0 0 1-1.11-1.32l.6-3.43h2.29l-.44 2.5h4.28c1.24 0 2.34-.88 2.54-2.01q.05-.28.02-.49m4.57-3H0v1.5h16z"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="17" fill="none" viewBox="0 0 16 17"><path fill="currentcolor" fill-rule="evenodd" d="M6.125 1.75a1 1 0 0 0-.976.783L4.323 6.25H1v1.5h14v-1.5h-2.93a3.25 3.25 0 0 0-3-4.5zm.247 4.5.555-2.5H9.07a1.25 1.25 0 1 1 0 2.5z" clip-rule="evenodd"/><path fill="currentcolor" d="M12.29 9.25h-2.05a1.5 1.5 0 0 1-1.41 2H5.35l.4-2H3.71l-.56 2.8a1 1 0 0 0 .98 1.2h4.7a3.5 3.5 0 0 0 3.47-4M0 16.75h16v-1.5H0z"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6.13 1a1 1 0 0 0-.98.78l-.6 2.72h.27zm0 0h2.94a3.25 3.25 0 0 1 3.24 3.5h-2.02A1.25 1.25 0 0 0 9.07 3H6.93L6.6 4.5H4.82zm6.2 8h-2q0 .14-.03.29a1.5 1.5 0 0 1-1.47 1.21H5.35l.3-1.5H3.61l-.46 2.3a1 1 0 0 0 .98 1.2h4.7a3.5 3.5 0 0 0 3.5-3.5M16 16H0v-1.5h16zM15 6H1v1.5h14z"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M4.125 1C3.504 1 3 1.504 3 2.125V7.25H1v1.5h14v-1.5h-2.634A3.96 3.96 0 0 0 13 5.063C13 2.626 11.004 1 8.75 1zm6.625 4.063c0 1.014-.802 1.812-2 1.812h-3.5V3.25h3.5c1.198 0 2 .798 2 1.813" clip-rule="evenodd"/><path fill="currentcolor" d="M13.945 10.25h-2.329q.133.319.134.688c0 1.014-.802 1.812-2 1.812h-4.5v-2.5H3v3.625C3 14.496 3.504 15 4.125 15H9.75c2.254 0 4.25-1.626 4.25-4.062a4 4 0 0 0-.055-.688"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M3 2.13C3 1.5 3.5 1 4.13 1h4.62C11 1 13 2.63 13 5.06q0 .36-.05.69h-2.33c.09-.21.13-.44.13-.69 0-1.01-.8-1.81-2-1.81h-3.5v2.5H3zm8.62 8.12h2.33q.06.33.06.69C14 13.37 12 15 9.75 15H4.13A1.13 1.13 0 0 1 3 13.88v-3.63h2.25v2.5h4.5c1.2 0 2-.8 2-1.81a1.8 1.8 0 0 0-.13-.69m4.38-3H0v1.5h16z"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M5 1a1 1 0 0 0-1 1v3.5H1V7h14V5.5h-3.192A3.375 3.375 0 0 0 8.625 1zm1 4.5h3.416a1.375 1.375 0 0 0-.79-2.5H5.999z" clip-rule="evenodd"/><path fill="currentcolor" d="M12.94 8.5h-2.09a1.38 1.38 0 0 1-1.23 2H6v-2H4v3a1 1 0 0 0 1 1h4.63a3.38 3.38 0 0 0 3.32-4M0 16h16v-1.5H0z"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M5 1a1 1 0 0 0-1 1v2.5h2V3h2.63A1.38 1.38 0 0 1 10 4.5h2v-.12A3.38 3.38 0 0 0 8.63 1zm8 8h-2q.01.06.01.13c0 .76-.62 1.38-1.37 1.38H6V9H4v2.5a1 1 0 0 0 1 1h4.63A3.38 3.38 0 0 0 13 9m3 7H0v-1.5h16zM15 6H1v1.5h14z"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M12.5 1H6v1.5h2.55L7.41 7.25H1v1.5h14v-1.5H8.95l1.14-4.75h2.41zm-4.27 9.25H6.69l-.78 3.25H3.5V15H10v-1.5H7.45z"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6 1h6.5v1.5h-2.41l-.78 3.25H7.77l.78-3.25H6zm.69 9.25h1.54l-.78 3.25H10V15H3.5v-1.5h2.41zm8.31-3H1v1.5h14z"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6.44 1h5.07v1.5H9.76l-.72 3H15V7H1V5.5h6.5l.72-3H6.44zm.34 7.5-.54 2.25H4.49v1.5h5.07v-1.5H7.78l.54-2.25zM0 16h16v-1.5H0z"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M11.51 1H6.44v1.5h1.78l-.47 2h1.54l.47-2h1.75zM8.24 9H6.7l-.47 2H4.49v1.5h5.07V11H7.78zM16 16H0v-1.5h16zM15 6H1v1.5h14z"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M5.25 2.5a2.75 2.75 0 0 0 0 5.5H7.5V2.5zM9 2.5V15H7.5V9.5H5.25a4.25 4.25 0 0 1 0-8.5H15v1.5h-2V15h-1.5V2.5z" clip-rule="evenodd"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M6.25 2.5a2.75 2.75 0 0 0 0 5.5H8V2.5zm3.25 0V15H8V9.5H6.25a4.25 4.25 0 0 1 0-8.5h5.5a.75.75 0 0 1 .75.75V15H11V2.5z" clip-rule="evenodd"/></svg>
@@ -1 +1 @@
1
- <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M3.53 8.5a4.5 4.5 0 0 0 8.95 0h-1.51a3 3 0 0 1-5.92 0zM15 7V5.5h-2.5V1H11v4.5H5V1H3.5v4.5H1V7zM0 16v-1.5h16V16z"/></svg>
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M3.5 4.5H5V1H3.5zM5.17 9a3 3 0 0 0 5.66 0h1.56a4.5 4.5 0 0 1-8.78 0zm7.33-4.5H11V1h1.5zM0 16v-1.5h16V16zM15 6H1v1.5h14z"/></svg>