@atlaskit/icon-lab 0.2.0 → 1.0.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 (43) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/core/book-open.d.ts +15 -0
  3. package/core/{highlight.js → book-open.js} +9 -9
  4. package/core/coins.d.ts +5 -4
  5. package/core/coins.js +2 -2
  6. package/core/cross-octagon.d.ts +5 -4
  7. package/core/cross-octagon.js +2 -2
  8. package/core/editions.d.ts +5 -4
  9. package/core/editions.js +4 -4
  10. package/core/field-text.d.ts +5 -4
  11. package/core/field-text.js +2 -2
  12. package/core/lozenge.d.ts +15 -0
  13. package/core/{status.js → lozenge.js} +6 -6
  14. package/core/paint-brush.d.ts +5 -4
  15. package/core/paint-brush.js +2 -2
  16. package/core/paint-roller.d.ts +5 -4
  17. package/core/paint-roller.js +2 -2
  18. package/core/roadmaps-plan.d.ts +5 -4
  19. package/core/roadmaps-plan.js +3 -3
  20. package/core/roadmaps-service.d.ts +5 -4
  21. package/core/roadmaps-service.js +3 -3
  22. package/core/speedometer.d.ts +5 -4
  23. package/core/speedometer.js +2 -2
  24. package/core/takeout-container.d.ts +5 -4
  25. package/core/takeout-container.js +3 -3
  26. package/core/ticket.d.ts +5 -4
  27. package/core/ticket.js +2 -2
  28. package/core/vehicle-train.d.ts +5 -4
  29. package/core/vehicle-train.js +3 -3
  30. package/core/vulnerability.d.ts +15 -0
  31. package/core/vulnerability.js +31 -0
  32. package/core/wallet.d.ts +5 -4
  33. package/core/wallet.js +2 -2
  34. package/core/wrench.d.ts +5 -4
  35. package/core/wrench.js +2 -2
  36. package/dist/cjs/metadata-core.js +42 -33
  37. package/dist/es2019/metadata-core.js +42 -33
  38. package/dist/esm/metadata-core.js +42 -33
  39. package/dist/types/metadata-core.d.ts +1 -1
  40. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  41. package/package.json +3 -3
  42. package/core/highlight.d.ts +0 -14
  43. package/core/status.d.ts +0 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # @atlaskit/icon-lab
2
2
 
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#149469](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/149469)
8
+ [`c75edf6df890b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c75edf6df890b) -
9
+ Re-generated icons to explicitly set either `NewCoreIconProps` or `NewUtilityIconProps`.
10
+ - Updated dependencies
11
+
12
+ ## 1.0.0
13
+
14
+ ### Major Changes
15
+
16
+ - [#147410](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/147410)
17
+ [`7300bd8281c70`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7300bd8281c70) -
18
+ This release adds a supplementary set of icons to `@atlaskit/icon-lab` and removes a few icons.
19
+
20
+ ### Added:
21
+
22
+ **`@atlaskit/icon-lab/core`**
23
+
24
+ - `book-open`
25
+ - `lozenge`
26
+ - `vulnerability`
27
+
28
+ ### Renamed:
29
+
30
+ - `status → lozenge`
31
+
32
+ ### Removed entrypoints:
33
+
34
+ **`@atlaskit/icon-lab/core`**
35
+
36
+ - `highlight`
37
+
38
+ ### Patch Changes
39
+
40
+ - [#147477](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/147477)
41
+ [`2d3fe080da9cf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2d3fe080da9cf) -
42
+ Re-generated icon-lab icons after dependencies were updated
43
+ - Updated dependencies
44
+
3
45
  ## 0.2.0
4
46
 
5
47
  ### Minor Changes
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::f8ff3f28efd3207deeae7a27cb123a7c>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
10
+
11
+ declare const BookOpenIcon: {
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default BookOpenIcon;
@@ -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::5d50894a3b22e9b9b5b7f0718dd9e14e>>
3
+ * @codegen <<SignedSource::ef42c13301a15ee2eb0ff2a43170429a>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,21 +11,21 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
18
18
  *
19
- * Icon: "Highlight".
20
- * Category: single-purpose
19
+ * Icon: "BookOpen".
20
+ * Category: multi-purpose
21
21
  * Location: @atlaskit/icon-lab
22
- * Usage guidance: Single purpose - Reserved for highlight text tool in Confluence Editor.
22
+ * Usage guidance: Known uses: None
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
26
- const HighlightIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
27
- dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M4.125 9.375 3.5 8.75l1.25-3.5L10.946.925a.625.625 0 0 1 .8.07l1.259 1.26a.625.625 0 0 1 .07.8L8.75 9.25l-3.5 1.25-.625-.625m-.5-.5L3 10.5l.5.5 1.125-1.125m-.5-.5.5.5m.12-4.632 4 4"/>`
26
+ const BookOpenIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
27
+ dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 15.5v-2.25m0-8.375v8.375m0-8.375C8 3.149 9.4 1.75 11.127 1.75h3.5c.346 0 .625.28.625.625v10.25c0 .345-.28.625-.625.625H8m0-8.375A3.124 3.124 0 0 0 4.876 1.75h-3.5a.625.625 0 0 0-.625.625v10.25c0 .345.28.625.625.625H8m2.5-8h2.75m-2.75 2.5h2.75"/>`
28
28
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
29
  }, props));
30
- HighlightIcon.displayName = 'HighlightIcon';
31
- var _default = exports.default = HighlightIcon;
30
+ BookOpenIcon.displayName = 'BookOpenIcon';
31
+ var _default = exports.default = BookOpenIcon;
package/core/coins.d.ts CHANGED
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::94046cf58a089bb2b6c6710482a994a0>>
3
+ * @codegen <<SignedSource::c0f3045b04db52bc4ddd00a30edeadf0>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const CoinsIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default CoinsIcon;
package/core/coins.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::427c77c08a6583415bcb4c8772b600db>>
3
+ * @codegen <<SignedSource::a874ce8980c1f475633b3d5f4c53befa>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::676115cb835b28b640a1e66753023718>>
3
+ * @codegen <<SignedSource::c08bf193b8a3480a3d9f75bbc2271e54>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const CrossOctagonIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default CrossOctagonIcon;
@@ -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::b63a89054495ae069c2fda50d7b483a3>>
3
+ * @codegen <<SignedSource::1f74d3386eb42d074d46498e725f9daa>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::961209f7732502a188b60c4670f70181>>
3
+ * @codegen <<SignedSource::290745e7127db56e31e1b807255feb1e>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const EditionsIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default EditionsIcon;
package/core/editions.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::6ae6f7a9745e60c3ca2bb43f93ecd93e>>
3
+ * @codegen <<SignedSource::46d6bb71fdac68178ab8f549d07543d9>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -19,12 +19,12 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
19
19
  * Icon: "Editions".
20
20
  * Category: single-purpose
21
21
  * Location: @atlaskit/icon-lab
22
- * Usage guidance: Single purpose - Reserved for representing premium features and functionality. Editions may replace the current premium sparkle icon.
22
+ * Usage guidance: Reserved for representing premium features and functionality. Editions may replace the current premium sparkle icon.
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
26
26
  const EditionsIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
27
- dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="m15.25 5.75-2.5-4H9.5m5.75 4L8 14.25m7.25-8.5h-4.5m-10 0 2.5-4H6.5m-5.75 4L8 14.25M.75 5.75h4.5M8 14.25l-2.75-8.5M8 14.25l2.75-8.5m-5.5 0 1.25-4m-1.25 4h5.5m-4.25-4h3m1.25 4-1.25-4"/>`
27
+ dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="m5.25 5.75 1.25-4m-1.25 4h5.5m-5.5 0H1m4.25 0L7.92 14h.16l2.67-8.25m-4.25-4H3.25l-2.5 4L8 14.25l7.25-8.5-2.5-4H9.5m-3 0h3m1.25 4-1.25-4m1.25 4h4.125"/>`
28
28
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
29
  }, props));
30
30
  EditionsIcon.displayName = 'EditionsIcon';
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::a21599a145cf374ae420817fae6c9e3d>>
3
+ * @codegen <<SignedSource::c2177989d8c808d690151738af6d2559>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const FieldTextIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default FieldTextIcon;
@@ -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::a54872a6e2c832bc39670c1debb9b3b2>>
3
+ * @codegen <<SignedSource::cddf9d42850334b7932bd90cf51a8b1f>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -0,0 +1,15 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::6b086bc8a8cf83c35314075a3c54aab0>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
10
+
11
+ declare const LozengeIcon: {
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
13
+ displayName: string;
14
+ };
15
+ export default LozengeIcon;
@@ -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::5cca7e7516a747610e23866a45ac01d3>>
3
+ * @codegen <<SignedSource::bad58b909cb020b76e214ca91cc8be6d>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,21 +11,21 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
18
18
  *
19
- * Icon: "Status".
19
+ * Icon: "Lozenge".
20
20
  * Category: single-purpose
21
21
  * Location: @atlaskit/icon-lab
22
22
  * Usage guidance: Reserved for inserting status lozenges in Editor.
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
26
- const StatusIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
26
+ const LozengeIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
27
27
  dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M3 8h10M2 11.25h12c.69 0 1.25-.56 1.25-1.25V6c0-.69-.56-1.25-1.25-1.25H2C1.31 4.75.75 5.31.75 6v4c0 .69.56 1.25 1.25 1.25Z"/>`
28
28
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
29
  }, props));
30
- StatusIcon.displayName = 'StatusIcon';
31
- var _default = exports.default = StatusIcon;
30
+ LozengeIcon.displayName = 'LozengeIcon';
31
+ var _default = exports.default = LozengeIcon;
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::ccbde56f8ef357b7846d11b3ac2a7c51>>
3
+ * @codegen <<SignedSource::ca0486e4ac048c1ed530c8cdbc6c57ec>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const PaintBrushIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default PaintBrushIcon;
@@ -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::6cb2b34ee1df3fad20cfb5c36e928f9e>>
3
+ * @codegen <<SignedSource::961308c63190c9a8a29f262c516ba936>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::9ef604fbf52962d9bf154d19c2113823>>
3
+ * @codegen <<SignedSource::5f1a39ad637f3f75da35867e6c039936>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const PaintRollerIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default PaintRollerIcon;
@@ -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::5fc49fed68d1810a169210869aa9cde9>>
3
+ * @codegen <<SignedSource::6f5fa1e723e9aac092f6e2b74534be1b>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::e6affdf1a9f459969f316a7356ff4b75>>
3
+ * @codegen <<SignedSource::b26134bfba1069b12fab8a470efbc11a>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const RoadmapsPlanIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default RoadmapsPlanIcon;
@@ -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::3f1a9c3108f342fc61f7e84aa56136fc>>
3
+ * @codegen <<SignedSource::f7400438bfd283e666cdbdb4f2f49eb3>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -19,7 +19,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
19
19
  * Icon: "RoadmapsPlan".
20
20
  * Category: single-purpose
21
21
  * Location: @atlaskit/icon-lab
22
- * Usage guidance: Single purpose - Reserved for roadmaps plan.
22
+ * Usage guidance: Reserved for roadmaps plan.
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::dcf99ae3b727688fb7f7bf4bbff5ca3e>>
3
+ * @codegen <<SignedSource::c872ef813d790f78dc7a30424f4515eb>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const RoadmapsServiceIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default RoadmapsServiceIcon;
@@ -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::c2e4bb86b99b57a39e586d65685eacae>>
3
+ * @codegen <<SignedSource::ef9e50803f3ee51e1b1c36fe2fd0a5a9>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -19,7 +19,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
19
19
  * Icon: "RoadmapsService".
20
20
  * Category: single-purpose
21
21
  * Location: @atlaskit/icon-lab
22
- * Usage guidance: Single purpose - Reserved for roadmaps service.
22
+ * Usage guidance: Reserved for roadmaps service.
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::345177767c7586c1b0ffdbc16099b30d>>
3
+ * @codegen <<SignedSource::2cd36f6f956f6b87beebad59f470e6e0>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const SpeedometerIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default SpeedometerIcon;
@@ -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::403c1b22f560fc4a48b3c9c27ae17259>>
3
+ * @codegen <<SignedSource::582af4455e4d0335183db9e52472e37b>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::9edc14b198ceadd80caa7bb5cf562c8c>>
3
+ * @codegen <<SignedSource::2370c665679058ee658793908ac88c6e>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const TakeoutContainerIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default TakeoutContainerIcon;
@@ -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::668373425015683770c746cc9b9b24c7>>
3
+ * @codegen <<SignedSource::173d505481ca71a0e14cce9181923423>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.
@@ -19,7 +19,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
19
19
  * Icon: "TakeoutContainer".
20
20
  * Category: multi-purpose
21
21
  * Location: @atlaskit/icon-lab
22
- * Usage guidance: Multi purpose - Known usages: Alternative option for food emoji category.
22
+ * Usage guidance: Known usages: Alternative option for food emoji category.
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
package/core/ticket.d.ts CHANGED
@@ -1,14 +1,15 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::d5a44fddf8c9b6f55e9772869e7a24ab>>
3
+ * @codegen <<SignedSource::656b5056ac8998215bc6e87f2e6a98b1>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
 
7
- import React from 'react';
8
- import Icon from '@atlaskit/icon/UNSAFE_base-new';
7
+ import type React from 'react';
8
+ import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
9
+ import type Icon from '@atlaskit/icon/UNSAFE_base-new';
9
10
 
10
11
  declare const TicketIcon: {
11
- (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ (props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
13
  displayName: string;
13
14
  };
14
15
  export default TicketIcon;
package/core/ticket.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::b1f3b89c095aa9d7f40b5ed2fbd26df9>>
3
+ * @codegen <<SignedSource::de6631b71116f0955d220707e3ea5fb4>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -11,7 +11,7 @@ Object.defineProperty(exports, "__esModule", {
11
11
  exports.default = void 0;
12
12
  var _react = _interopRequireDefault(require("react"));
13
13
  var _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
17
  * Please reach out in #icon-contributions before using these in production.