@atlaskit/icon-lab 0.1.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 (56) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/README.md +18 -0
  3. package/UNSAFE_migration-map/package.json +15 -0
  4. package/build/index.tsx +47 -0
  5. package/core/coins.d.ts +14 -0
  6. package/core/coins.js +31 -0
  7. package/core/cross-octagon.d.ts +14 -0
  8. package/core/cross-octagon.js +31 -0
  9. package/core/editions.d.ts +14 -0
  10. package/core/editions.js +31 -0
  11. package/core/field-text.d.ts +14 -0
  12. package/core/field-text.js +31 -0
  13. package/core/highlight.d.ts +14 -0
  14. package/core/highlight.js +31 -0
  15. package/core/paint-brush.d.ts +14 -0
  16. package/core/paint-brush.js +31 -0
  17. package/core/paint-roller.d.ts +14 -0
  18. package/core/paint-roller.js +31 -0
  19. package/core/roadmaps-plan.d.ts +14 -0
  20. package/core/roadmaps-plan.js +31 -0
  21. package/core/roadmaps-service.d.ts +14 -0
  22. package/core/roadmaps-service.js +31 -0
  23. package/core/speedometer.d.ts +14 -0
  24. package/core/speedometer.js +31 -0
  25. package/core/takeout-container.d.ts +14 -0
  26. package/core/takeout-container.js +31 -0
  27. package/core/ticket.d.ts +14 -0
  28. package/core/ticket.js +31 -0
  29. package/core/vehicle-train.d.ts +14 -0
  30. package/core/vehicle-train.js +31 -0
  31. package/core/wallet.d.ts +14 -0
  32. package/core/wallet.js +31 -0
  33. package/core/wrench.d.ts +14 -0
  34. package/core/wrench.js +31 -0
  35. package/dist/cjs/entry-points/metadata.js +13 -0
  36. package/dist/cjs/index.js +13 -0
  37. package/dist/cjs/metadata-core.js +155 -0
  38. package/dist/cjs/migration-map.js +35 -0
  39. package/dist/es2019/entry-points/metadata.js +1 -0
  40. package/dist/es2019/index.js +1 -0
  41. package/dist/es2019/metadata-core.js +149 -0
  42. package/dist/es2019/migration-map.js +29 -0
  43. package/dist/esm/entry-points/metadata.js +1 -0
  44. package/dist/esm/index.js +1 -0
  45. package/dist/esm/metadata-core.js +149 -0
  46. package/dist/esm/migration-map.js +29 -0
  47. package/dist/types/entry-points/metadata.d.ts +1 -0
  48. package/dist/types/index.d.ts +1 -0
  49. package/dist/types/metadata-core.d.ts +51 -0
  50. package/dist/types/migration-map.d.ts +3 -0
  51. package/dist/types-ts4.5/entry-points/metadata.d.ts +1 -0
  52. package/dist/types-ts4.5/index.d.ts +1 -0
  53. package/dist/types-ts4.5/metadata-core.d.ts +51 -0
  54. package/dist/types-ts4.5/migration-map.d.ts +3 -0
  55. package/metadata/package.json +15 -0
  56. package/package.json +89 -0
@@ -0,0 +1,31 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::668373425015683770c746cc9b9b24c7>>
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ /**
16
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
+ * Please reach out in #icon-contributions before using these in production.
18
+ *
19
+ * Icon: "TakeoutContainer".
20
+ * Category: multi-purpose
21
+ * Location: @atlaskit/icon-lab
22
+ * Usage guidance: Multi purpose - Known usages: Alternative option for food emoji category.
23
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
+ */
26
+ const TakeoutContainerIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
27
+ dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="m13.25 5.75-1 8.5h-8.5l-1-8.5m10.5 0 2.25-1.5m-2.25 1.5h-.5m-10 0L.5 4.25m2.25 1.5h.5m0 0 1.75-4h6l1.75 4m-9.5 0h9.5"/>`
28
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
+ }, props));
30
+ TakeoutContainerIcon.displayName = 'TakeoutContainerIcon';
31
+ var _default = exports.default = TakeoutContainerIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::d5a44fddf8c9b6f55e9772869e7a24ab>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const TicketIcon: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default TicketIcon;
package/core/ticket.js ADDED
@@ -0,0 +1,31 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::b1f3b89c095aa9d7f40b5ed2fbd26df9>>
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ /**
16
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
+ * Please reach out in #icon-contributions before using these in production.
18
+ *
19
+ * Icon: "Ticket".
20
+ * Category: multi-purpose
21
+ * Location: @atlaskit/icon-lab
22
+ * Usage guidance: Multi purpose
23
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
+ */
26
+ const TicketIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
27
+ dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M9.75 11.5V10m0-1.25v-1.5m0-1.25V4.5m-9-1.75v3.5H1a1.75 1.75 0 1 1 0 3.5H.75v3.5h14.5v-3.5H15a1.75 1.75 0 1 1 0-3.5h.25v-3.5z"/>`
28
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
+ }, props));
30
+ TicketIcon.displayName = 'TicketIcon';
31
+ var _default = exports.default = TicketIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::7d7e3ff69010ac1aeed5750709d50310>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const VehicleTrainIcon: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default VehicleTrainIcon;
@@ -0,0 +1,31 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8609d66d04a0cc1cec09c5aeef1be725>>
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ /**
16
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
+ * Please reach out in #icon-contributions before using these in production.
18
+ *
19
+ * Icon: "VehicleTrain".
20
+ * Category: multi-purpose
21
+ * Location: @atlaskit/icon-lab
22
+ * Usage guidance: Multi purpose - Known usages: Alternative option for transport emoji category.
23
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
+ */
26
+ const VehicleTrainIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
27
+ dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 3.25H4.387a1.25 1.25 0 0 0-1.18.837L1.89 7.85a2.5 2.5 0 0 0-.14.826V11.5c0 .69.56 1.25 1.25 1.25h1.5M8 3.25h3.613a1.25 1.25 0 0 1 1.18.837L14.11 7.85a2.5 2.5 0 0 1 .14.826V11.5c0 .69-.56 1.25-1.25 1.25h-1.5M8 3.25V.75m0 0h4m-4 0H4m.5 12L2.75 15.5m1.75-2.75h7m0 0 1.75 2.75m-7.75-.25h5m3.5-7H2"/><path fill="currentcolor" d="M5 10.5a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m7.5 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0"/>`
28
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
+ }, props));
30
+ VehicleTrainIcon.displayName = 'VehicleTrainIcon';
31
+ var _default = exports.default = VehicleTrainIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::664ff1fd0fa6a061b673537ce8a09b9b>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const WalletIcon: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default WalletIcon;
package/core/wallet.js ADDED
@@ -0,0 +1,31 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::a7d9f2dc2fa3406025033b2478515758>>
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ /**
16
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
+ * Please reach out in #icon-contributions before using these in production.
18
+ *
19
+ * Icon: "Wallet".
20
+ * Category: multi-purpose
21
+ * Location: @atlaskit/icon-lab
22
+ * Usage guidance: Multi purpose
23
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
+ */
26
+ const WalletIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
27
+ dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M1.75 4.25V13c0 .69.56 1.25 1.25 1.25h10c.69 0 1.25-.56 1.25-1.25v-2.25m-12.5-6.5H13c.69 0 1.25.56 1.25 1.25v2.25m-12.5-3.5V3c0-.69.56-1.25 1.25-1.25h10.5m.75 6H12c-.69 0-1.25.56-1.25 1.25v.5c0 .69.56 1.25 1.25 1.25h2.25m0-3v3"/>`
28
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
+ }, props));
30
+ WalletIcon.displayName = 'WalletIcon';
31
+ var _default = exports.default = WalletIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::0ff1c3087867ed3b393a0ad3c9ebebf4>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const WrenchIcon: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default WrenchIcon;
package/core/wrench.js ADDED
@@ -0,0 +1,31 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::d1cf146155179e040cb7d1e672269b05>>
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ /**
16
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
17
+ * Please reach out in #icon-contributions before using these in production.
18
+ *
19
+ * Icon: "Wrench".
20
+ * Category: multi-purpose
21
+ * Location: @atlaskit/icon-lab
22
+ * Usage guidance: Multi purpose
23
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
+ */
26
+ const WrenchIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
27
+ dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M11.5 6.75 9.25 4.5l3.29-3.29a4.75 4.75 0 0 0-6.33 6.33l-4.95 4.95a1.591 1.591 0 0 0 2.25 2.25l4.95-4.95a4.75 4.75 0 0 0 6.33-6.33z"/>`
28
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
29
+ }, props));
30
+ WrenchIcon.displayName = 'WrenchIcon';
31
+ var _default = exports.default = WrenchIcon;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "default", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _metadataCore.default;
11
+ }
12
+ });
13
+ var _metadataCore = _interopRequireDefault(require("../metadata-core"));
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "metadata", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _metadata.default;
11
+ }
12
+ });
13
+ var _metadata = _interopRequireDefault(require("./entry-points/metadata"));
@@ -0,0 +1,155 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ /**
8
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
+ *
10
+ * To change the format of this file, modify `UNSAFE_createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
11
+ *
12
+ * @codegen <<SignedSource::5cdf67bfa1b09f0b2b18ce9fe05cffe6>>
13
+ * @codegenCommand yarn build:icon-glyphs
14
+ */
15
+
16
+ var metadata = {
17
+ coins: {
18
+ keywords: ['coins', 'icon', 'icon-lab', 'core', 'currency', 'money', 'loose change'],
19
+ componentName: 'CoinsIcon',
20
+ package: '@atlaskit/icon-lab/core/coins',
21
+ type: 'core',
22
+ categorization: 'multi-purpose',
23
+ usage: 'Multi purpose',
24
+ team: 'Design System Team'
25
+ },
26
+ 'cross-octagon': {
27
+ keywords: ['cross-octagon', 'crossoctagon', 'icon', 'icon-lab', 'core', 'octagon', 'cross', 'stop', 'block'],
28
+ componentName: 'CrossOctagonIcon',
29
+ package: '@atlaskit/icon-lab/core/cross-octagon',
30
+ type: 'core',
31
+ categorization: 'multi-purpose',
32
+ usage: 'Multi purpose',
33
+ team: 'Design System Team'
34
+ },
35
+ editions: {
36
+ keywords: ['editions', 'icon', 'icon-lab', 'core', 'editions', 'gem', 'premium', 'diamond', 'precious stone'],
37
+ componentName: 'EditionsIcon',
38
+ package: '@atlaskit/icon-lab/core/editions',
39
+ type: 'core',
40
+ categorization: 'single-purpose',
41
+ usage: 'Single purpose - Reserved for representing premium features and functionality. Editions may replace the current premium sparkle icon.',
42
+ team: 'Design System Team'
43
+ },
44
+ 'field-text': {
45
+ keywords: ['field-text', 'fieldtext', 'icon', 'icon-lab', 'core', 'text field', 'form', 'input', 'label', 'cursor'],
46
+ componentName: 'FieldTextIcon',
47
+ package: '@atlaskit/icon-lab/core/field-text',
48
+ type: 'core',
49
+ categorization: 'multi-purpose',
50
+ usage: 'Multi purpose',
51
+ team: 'Design System Team'
52
+ },
53
+ highlight: {
54
+ keywords: ['highlight', 'icon', 'icon-lab', 'core', 'highlight', 'highlighter', 'stabilo', 'pen'],
55
+ componentName: 'HighlightIcon',
56
+ package: '@atlaskit/icon-lab/core/highlight',
57
+ type: 'core',
58
+ categorization: 'single-purpose',
59
+ usage: 'Single purpose - Reserved for highlight text tool in Confluence Editor.',
60
+ team: 'Design System Team'
61
+ },
62
+ 'paint-brush': {
63
+ keywords: ['paint-brush', 'paintbrush', 'icon', 'icon-lab', 'core', 'paint', 'brush', 'appearance'],
64
+ componentName: 'PaintBrushIcon',
65
+ package: '@atlaskit/icon-lab/core/paint-brush',
66
+ type: 'core',
67
+ categorization: 'multi-purpose',
68
+ usage: 'Multi purpose',
69
+ team: 'Design System Team'
70
+ },
71
+ 'paint-roller': {
72
+ keywords: ['paint-roller', 'paintroller', 'icon', 'icon-lab', 'core', 'paint', 'roller', 'background'],
73
+ componentName: 'PaintRollerIcon',
74
+ package: '@atlaskit/icon-lab/core/paint-roller',
75
+ type: 'core',
76
+ categorization: 'multi-purpose',
77
+ usage: 'Multi purpose',
78
+ team: 'Design System Team'
79
+ },
80
+ 'roadmaps-plan': {
81
+ keywords: ['roadmaps-plan', 'roadmapsplan', 'icon', 'icon-lab', 'core', 'roadmaps', 'roadmap', 'plan'],
82
+ componentName: 'RoadmapsPlanIcon',
83
+ package: '@atlaskit/icon-lab/core/roadmaps-plan',
84
+ oldName: ['bitbucket/builds'],
85
+ type: 'core',
86
+ categorization: 'single-purpose',
87
+ usage: 'Single purpose - Reserved for roadmaps plan.',
88
+ team: 'Design System Team'
89
+ },
90
+ 'roadmaps-service': {
91
+ keywords: ['roadmaps-service', 'roadmapsservice', 'icon', 'icon-lab', 'core', 'roadmaps', 'service', 'roadmap'],
92
+ componentName: 'RoadmapsServiceIcon',
93
+ package: '@atlaskit/icon-lab/core/roadmaps-service',
94
+ oldName: ['bitbucket/forks'],
95
+ type: 'core',
96
+ categorization: 'single-purpose',
97
+ usage: 'Single purpose - Reserved for roadmaps service.',
98
+ team: 'Design System Team'
99
+ },
100
+ speedometer: {
101
+ keywords: ['speedometer', 'icon', 'icon-lab', 'core', 'dial', 'speed', 'performance'],
102
+ componentName: 'SpeedometerIcon',
103
+ package: '@atlaskit/icon-lab/core/speedometer',
104
+ type: 'core',
105
+ categorization: 'multi-purpose',
106
+ usage: 'Multi purpose',
107
+ team: 'Design System Team'
108
+ },
109
+ 'takeout-container': {
110
+ keywords: ['takeout-container', 'takeoutcontainer', 'icon', 'icon-lab', 'core', 'takeaway', 'takeout', 'food'],
111
+ componentName: 'TakeoutContainerIcon',
112
+ package: '@atlaskit/icon-lab/core/takeout-container',
113
+ type: 'core',
114
+ categorization: 'multi-purpose',
115
+ usage: 'Multi purpose - Known usages: Alternative option for food emoji category.',
116
+ team: 'Design System Team'
117
+ },
118
+ ticket: {
119
+ keywords: ['ticket', 'icon', 'icon-lab', 'core', 'ticket', 'stub'],
120
+ componentName: 'TicketIcon',
121
+ package: '@atlaskit/icon-lab/core/ticket',
122
+ type: 'core',
123
+ categorization: 'multi-purpose',
124
+ usage: 'Multi purpose',
125
+ team: 'Design System Team'
126
+ },
127
+ 'vehicle-train': {
128
+ keywords: ['vehicle-train', 'vehicletrain', 'icon', 'icon-lab', 'core', 'car', 'transportation', 'vehicle'],
129
+ componentName: 'VehicleTrainIcon',
130
+ package: '@atlaskit/icon-lab/core/vehicle-train',
131
+ type: 'core',
132
+ categorization: 'multi-purpose',
133
+ usage: 'Multi purpose - Known usages: Alternative option for transport emoji category.',
134
+ team: 'Design System Team'
135
+ },
136
+ wallet: {
137
+ keywords: ['wallet', 'icon', 'icon-lab', 'core', 'wallet', 'money', 'sales', 'payment'],
138
+ componentName: 'WalletIcon',
139
+ package: '@atlaskit/icon-lab/core/wallet',
140
+ type: 'core',
141
+ categorization: 'multi-purpose',
142
+ usage: 'Multi purpose',
143
+ team: 'Design System Team'
144
+ },
145
+ wrench: {
146
+ keywords: ['wrench', 'icon', 'icon-lab', 'core', 'tool', 'wrench', 'spanner'],
147
+ componentName: 'WrenchIcon',
148
+ package: '@atlaskit/icon-lab/core/wrench',
149
+ type: 'core',
150
+ categorization: 'multi-purpose',
151
+ usage: 'Multi purpose',
152
+ team: 'Design System Team'
153
+ }
154
+ };
155
+ var _default = exports.default = metadata;
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var migrationMap = {
8
+ 'bitbucket/builds': {
9
+ newIcon: {
10
+ name: 'roadmaps-plan',
11
+ type: 'core',
12
+ package: '@atlaskit/icon-lab'
13
+ },
14
+ sizeGuidance: {
15
+ small: 'swap',
16
+ medium: 'swap',
17
+ large: 'icon-tile',
18
+ xlarge: 'icon-tile'
19
+ }
20
+ },
21
+ 'bitbucket/forks': {
22
+ newIcon: {
23
+ name: 'roadmaps-service',
24
+ type: 'core',
25
+ package: '@atlaskit/icon-lab'
26
+ },
27
+ sizeGuidance: {
28
+ small: 'swap',
29
+ medium: 'swap',
30
+ large: 'icon-tile',
31
+ xlarge: 'icon-tile'
32
+ }
33
+ }
34
+ };
35
+ var _default = exports.default = migrationMap;
@@ -0,0 +1 @@
1
+ export { default } from '../metadata-core';
@@ -0,0 +1 @@
1
+ export { default as metadata } from './entry-points/metadata';
@@ -0,0 +1,149 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ *
4
+ * To change the format of this file, modify `UNSAFE_createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
+ *
6
+ * @codegen <<SignedSource::5cdf67bfa1b09f0b2b18ce9fe05cffe6>>
7
+ * @codegenCommand yarn build:icon-glyphs
8
+ */
9
+
10
+ const metadata = {
11
+ coins: {
12
+ keywords: ['coins', 'icon', 'icon-lab', 'core', 'currency', 'money', 'loose change'],
13
+ componentName: 'CoinsIcon',
14
+ package: '@atlaskit/icon-lab/core/coins',
15
+ type: 'core',
16
+ categorization: 'multi-purpose',
17
+ usage: 'Multi purpose',
18
+ team: 'Design System Team'
19
+ },
20
+ 'cross-octagon': {
21
+ keywords: ['cross-octagon', 'crossoctagon', 'icon', 'icon-lab', 'core', 'octagon', 'cross', 'stop', 'block'],
22
+ componentName: 'CrossOctagonIcon',
23
+ package: '@atlaskit/icon-lab/core/cross-octagon',
24
+ type: 'core',
25
+ categorization: 'multi-purpose',
26
+ usage: 'Multi purpose',
27
+ team: 'Design System Team'
28
+ },
29
+ editions: {
30
+ keywords: ['editions', 'icon', 'icon-lab', 'core', 'editions', 'gem', 'premium', 'diamond', 'precious stone'],
31
+ componentName: 'EditionsIcon',
32
+ package: '@atlaskit/icon-lab/core/editions',
33
+ type: 'core',
34
+ categorization: 'single-purpose',
35
+ usage: 'Single purpose - Reserved for representing premium features and functionality. Editions may replace the current premium sparkle icon.',
36
+ team: 'Design System Team'
37
+ },
38
+ 'field-text': {
39
+ keywords: ['field-text', 'fieldtext', 'icon', 'icon-lab', 'core', 'text field', 'form', 'input', 'label', 'cursor'],
40
+ componentName: 'FieldTextIcon',
41
+ package: '@atlaskit/icon-lab/core/field-text',
42
+ type: 'core',
43
+ categorization: 'multi-purpose',
44
+ usage: 'Multi purpose',
45
+ team: 'Design System Team'
46
+ },
47
+ highlight: {
48
+ keywords: ['highlight', 'icon', 'icon-lab', 'core', 'highlight', 'highlighter', 'stabilo', 'pen'],
49
+ componentName: 'HighlightIcon',
50
+ package: '@atlaskit/icon-lab/core/highlight',
51
+ type: 'core',
52
+ categorization: 'single-purpose',
53
+ usage: 'Single purpose - Reserved for highlight text tool in Confluence Editor.',
54
+ team: 'Design System Team'
55
+ },
56
+ 'paint-brush': {
57
+ keywords: ['paint-brush', 'paintbrush', 'icon', 'icon-lab', 'core', 'paint', 'brush', 'appearance'],
58
+ componentName: 'PaintBrushIcon',
59
+ package: '@atlaskit/icon-lab/core/paint-brush',
60
+ type: 'core',
61
+ categorization: 'multi-purpose',
62
+ usage: 'Multi purpose',
63
+ team: 'Design System Team'
64
+ },
65
+ 'paint-roller': {
66
+ keywords: ['paint-roller', 'paintroller', 'icon', 'icon-lab', 'core', 'paint', 'roller', 'background'],
67
+ componentName: 'PaintRollerIcon',
68
+ package: '@atlaskit/icon-lab/core/paint-roller',
69
+ type: 'core',
70
+ categorization: 'multi-purpose',
71
+ usage: 'Multi purpose',
72
+ team: 'Design System Team'
73
+ },
74
+ 'roadmaps-plan': {
75
+ keywords: ['roadmaps-plan', 'roadmapsplan', 'icon', 'icon-lab', 'core', 'roadmaps', 'roadmap', 'plan'],
76
+ componentName: 'RoadmapsPlanIcon',
77
+ package: '@atlaskit/icon-lab/core/roadmaps-plan',
78
+ oldName: ['bitbucket/builds'],
79
+ type: 'core',
80
+ categorization: 'single-purpose',
81
+ usage: 'Single purpose - Reserved for roadmaps plan.',
82
+ team: 'Design System Team'
83
+ },
84
+ 'roadmaps-service': {
85
+ keywords: ['roadmaps-service', 'roadmapsservice', 'icon', 'icon-lab', 'core', 'roadmaps', 'service', 'roadmap'],
86
+ componentName: 'RoadmapsServiceIcon',
87
+ package: '@atlaskit/icon-lab/core/roadmaps-service',
88
+ oldName: ['bitbucket/forks'],
89
+ type: 'core',
90
+ categorization: 'single-purpose',
91
+ usage: 'Single purpose - Reserved for roadmaps service.',
92
+ team: 'Design System Team'
93
+ },
94
+ speedometer: {
95
+ keywords: ['speedometer', 'icon', 'icon-lab', 'core', 'dial', 'speed', 'performance'],
96
+ componentName: 'SpeedometerIcon',
97
+ package: '@atlaskit/icon-lab/core/speedometer',
98
+ type: 'core',
99
+ categorization: 'multi-purpose',
100
+ usage: 'Multi purpose',
101
+ team: 'Design System Team'
102
+ },
103
+ 'takeout-container': {
104
+ keywords: ['takeout-container', 'takeoutcontainer', 'icon', 'icon-lab', 'core', 'takeaway', 'takeout', 'food'],
105
+ componentName: 'TakeoutContainerIcon',
106
+ package: '@atlaskit/icon-lab/core/takeout-container',
107
+ type: 'core',
108
+ categorization: 'multi-purpose',
109
+ usage: 'Multi purpose - Known usages: Alternative option for food emoji category.',
110
+ team: 'Design System Team'
111
+ },
112
+ ticket: {
113
+ keywords: ['ticket', 'icon', 'icon-lab', 'core', 'ticket', 'stub'],
114
+ componentName: 'TicketIcon',
115
+ package: '@atlaskit/icon-lab/core/ticket',
116
+ type: 'core',
117
+ categorization: 'multi-purpose',
118
+ usage: 'Multi purpose',
119
+ team: 'Design System Team'
120
+ },
121
+ 'vehicle-train': {
122
+ keywords: ['vehicle-train', 'vehicletrain', 'icon', 'icon-lab', 'core', 'car', 'transportation', 'vehicle'],
123
+ componentName: 'VehicleTrainIcon',
124
+ package: '@atlaskit/icon-lab/core/vehicle-train',
125
+ type: 'core',
126
+ categorization: 'multi-purpose',
127
+ usage: 'Multi purpose - Known usages: Alternative option for transport emoji category.',
128
+ team: 'Design System Team'
129
+ },
130
+ wallet: {
131
+ keywords: ['wallet', 'icon', 'icon-lab', 'core', 'wallet', 'money', 'sales', 'payment'],
132
+ componentName: 'WalletIcon',
133
+ package: '@atlaskit/icon-lab/core/wallet',
134
+ type: 'core',
135
+ categorization: 'multi-purpose',
136
+ usage: 'Multi purpose',
137
+ team: 'Design System Team'
138
+ },
139
+ wrench: {
140
+ keywords: ['wrench', 'icon', 'icon-lab', 'core', 'tool', 'wrench', 'spanner'],
141
+ componentName: 'WrenchIcon',
142
+ package: '@atlaskit/icon-lab/core/wrench',
143
+ type: 'core',
144
+ categorization: 'multi-purpose',
145
+ usage: 'Multi purpose',
146
+ team: 'Design System Team'
147
+ }
148
+ };
149
+ export default metadata;
@@ -0,0 +1,29 @@
1
+ const migrationMap = {
2
+ 'bitbucket/builds': {
3
+ newIcon: {
4
+ name: 'roadmaps-plan',
5
+ type: 'core',
6
+ package: '@atlaskit/icon-lab'
7
+ },
8
+ sizeGuidance: {
9
+ small: 'swap',
10
+ medium: 'swap',
11
+ large: 'icon-tile',
12
+ xlarge: 'icon-tile'
13
+ }
14
+ },
15
+ 'bitbucket/forks': {
16
+ newIcon: {
17
+ name: 'roadmaps-service',
18
+ type: 'core',
19
+ package: '@atlaskit/icon-lab'
20
+ },
21
+ sizeGuidance: {
22
+ small: 'swap',
23
+ medium: 'swap',
24
+ large: 'icon-tile',
25
+ xlarge: 'icon-tile'
26
+ }
27
+ }
28
+ };
29
+ export default migrationMap;
@@ -0,0 +1 @@
1
+ export { default } from '../metadata-core';
@@ -0,0 +1 @@
1
+ export { default as metadata } from './entry-points/metadata';