@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.
- package/CHANGELOG.md +42 -0
- package/core/book-open.d.ts +15 -0
- package/core/{highlight.js → book-open.js} +9 -9
- package/core/coins.d.ts +5 -4
- package/core/coins.js +2 -2
- package/core/cross-octagon.d.ts +5 -4
- package/core/cross-octagon.js +2 -2
- package/core/editions.d.ts +5 -4
- package/core/editions.js +4 -4
- package/core/field-text.d.ts +5 -4
- package/core/field-text.js +2 -2
- package/core/lozenge.d.ts +15 -0
- package/core/{status.js → lozenge.js} +6 -6
- package/core/paint-brush.d.ts +5 -4
- package/core/paint-brush.js +2 -2
- package/core/paint-roller.d.ts +5 -4
- package/core/paint-roller.js +2 -2
- package/core/roadmaps-plan.d.ts +5 -4
- package/core/roadmaps-plan.js +3 -3
- package/core/roadmaps-service.d.ts +5 -4
- package/core/roadmaps-service.js +3 -3
- package/core/speedometer.d.ts +5 -4
- package/core/speedometer.js +2 -2
- package/core/takeout-container.d.ts +5 -4
- package/core/takeout-container.js +3 -3
- package/core/ticket.d.ts +5 -4
- package/core/ticket.js +2 -2
- package/core/vehicle-train.d.ts +5 -4
- package/core/vehicle-train.js +3 -3
- package/core/vulnerability.d.ts +15 -0
- package/core/vulnerability.js +31 -0
- package/core/wallet.d.ts +5 -4
- package/core/wallet.js +2 -2
- package/core/wrench.d.ts +5 -4
- package/core/wrench.js +2 -2
- package/dist/cjs/metadata-core.js +42 -33
- package/dist/es2019/metadata-core.js +42 -33
- package/dist/esm/metadata-core.js +42 -33
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +3 -3
- package/core/highlight.d.ts +0 -14
- package/core/status.d.ts +0 -14
package/core/vehicle-train.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::
|
|
3
|
+
* @codegen <<SignedSource::a0a2b2c4cb05b5ac1bbf383efd3ae935>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import React from 'react';
|
|
8
|
-
import
|
|
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 VehicleTrainIcon: {
|
|
11
|
-
(props: Omit<
|
|
12
|
+
(props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
13
|
displayName: string;
|
|
13
14
|
};
|
|
14
15
|
export default VehicleTrainIcon;
|
package/core/vehicle-train.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::
|
|
3
|
+
* @codegen <<SignedSource::f281c3e32ea5cc827a487d89a544662f>>
|
|
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(
|
|
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: "VehicleTrain".
|
|
20
20
|
* Category: multi-purpose
|
|
21
21
|
* Location: @atlaskit/icon-lab
|
|
22
|
-
* Usage guidance:
|
|
22
|
+
* Usage guidance: Known usages: Alternative option for transport 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
|
*/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::586629331bbaa8f19713dd6adf88d21c>>
|
|
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 VulnerabilityIcon: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default VulnerabilityIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::372db08492db251cd930b2f09abab97e>>
|
|
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(e) { return e && e.__esModule ? e : { default: e }; }
|
|
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: "Vulnerability".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for security vulnerabilities.
|
|
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 VulnerabilityIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M13 2.5h-3V1h3a2 2 0 0 1 2 2v3h-1.5V3a.5.5 0 0 0-.5-.5m-10 0a.5.5 0 0 0-.5.5v3H1V3a2 2 0 0 1 2-2h3v1.5zM2.5 10v3a.5.5 0 0 0 .5.5h3V15H3a2 2 0 0 1-2-2v-3zm11 3v-3H15v3a2 2 0 0 1-2 2h-3v-1.5h3a.5.5 0 0 0 .5-.5M7.25 8.5V4h1.5v4.5zM8 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2" clip-rule="evenodd"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
VulnerabilityIcon.displayName = 'VulnerabilityIcon';
|
|
31
|
+
var _default = exports.default = VulnerabilityIcon;
|
package/core/wallet.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::
|
|
3
|
+
* @codegen <<SignedSource::f43189b32e44d8c42af1bca6f78dfaf0>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import React from 'react';
|
|
8
|
-
import
|
|
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 WalletIcon: {
|
|
11
|
-
(props: Omit<
|
|
12
|
+
(props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
13
|
displayName: string;
|
|
13
14
|
};
|
|
14
15
|
export default WalletIcon;
|
package/core/wallet.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::
|
|
3
|
+
* @codegen <<SignedSource::e6c2c0630f02796790d3cb658f1bbee3>>
|
|
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(
|
|
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.
|
package/core/wrench.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::
|
|
3
|
+
* @codegen <<SignedSource::0b0cc8ee431e3d98b02f1cc7f17ca930>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import React from 'react';
|
|
8
|
-
import
|
|
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 WrenchIcon: {
|
|
11
|
-
(props: Omit<
|
|
12
|
+
(props: Omit<NewCoreIconProps, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
13
|
displayName: string;
|
|
13
14
|
};
|
|
14
15
|
export default WrenchIcon;
|
package/core/wrench.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::
|
|
3
|
+
* @codegen <<SignedSource::6cbb9769ee9ff173762766c4e5246d51>>
|
|
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(
|
|
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.
|
|
@@ -9,13 +9,22 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* To change the format of this file, modify `UNSAFE_createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::fb64e80f33776bd1206895e95a86eaa6>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
16
|
var metadata = {
|
|
17
|
+
'book-open': {
|
|
18
|
+
keywords: ['book-open', 'bookopen', 'icon', 'icon-lab', 'core', 'book', 'knowledgebase article'],
|
|
19
|
+
componentName: 'BookOpenIcon',
|
|
20
|
+
package: '@atlaskit/icon-lab/core/book-open',
|
|
21
|
+
type: 'core',
|
|
22
|
+
categorization: 'multi-purpose',
|
|
23
|
+
usage: 'Known uses: None',
|
|
24
|
+
team: 'Design System Team'
|
|
25
|
+
},
|
|
17
26
|
coins: {
|
|
18
|
-
keywords: ['coins', 'icon', 'icon-lab', 'core', '
|
|
27
|
+
keywords: ['coins', 'icon', 'icon-lab', 'core', 'money', 'loose change', 'currency'],
|
|
19
28
|
componentName: 'CoinsIcon',
|
|
20
29
|
package: '@atlaskit/icon-lab/core/coins',
|
|
21
30
|
type: 'core',
|
|
@@ -24,7 +33,7 @@ var metadata = {
|
|
|
24
33
|
team: 'Design System Team'
|
|
25
34
|
},
|
|
26
35
|
'cross-octagon': {
|
|
27
|
-
keywords: ['cross-octagon', 'crossoctagon', 'icon', 'icon-lab', 'core', '
|
|
36
|
+
keywords: ['cross-octagon', 'crossoctagon', 'icon', 'icon-lab', 'core', 'cross', 'stop', 'block', 'octagon'],
|
|
28
37
|
componentName: 'CrossOctagonIcon',
|
|
29
38
|
package: '@atlaskit/icon-lab/core/cross-octagon',
|
|
30
39
|
type: 'core',
|
|
@@ -33,16 +42,16 @@ var metadata = {
|
|
|
33
42
|
team: 'Design System Team'
|
|
34
43
|
},
|
|
35
44
|
editions: {
|
|
36
|
-
keywords: ['editions', 'icon', 'icon-lab', 'core', '
|
|
45
|
+
keywords: ['editions', 'icon', 'icon-lab', 'core', 'gem', 'premium', 'diamond', 'precious stone', 'editions'],
|
|
37
46
|
componentName: 'EditionsIcon',
|
|
38
47
|
package: '@atlaskit/icon-lab/core/editions',
|
|
39
48
|
type: 'core',
|
|
40
49
|
categorization: 'single-purpose',
|
|
41
|
-
usage: '
|
|
50
|
+
usage: 'Reserved for representing premium features and functionality. Editions may replace the current premium sparkle icon.',
|
|
42
51
|
team: 'Design System Team'
|
|
43
52
|
},
|
|
44
53
|
'field-text': {
|
|
45
|
-
keywords: ['field-text', 'fieldtext', 'icon', 'icon-lab', 'core', '
|
|
54
|
+
keywords: ['field-text', 'fieldtext', 'icon', 'icon-lab', 'core', 'form', 'input', 'label', 'cursor', 'text field'],
|
|
46
55
|
componentName: 'FieldTextIcon',
|
|
47
56
|
package: '@atlaskit/icon-lab/core/field-text',
|
|
48
57
|
type: 'core',
|
|
@@ -50,17 +59,17 @@ var metadata = {
|
|
|
50
59
|
usage: 'Multi purpose',
|
|
51
60
|
team: 'Design System Team'
|
|
52
61
|
},
|
|
53
|
-
|
|
54
|
-
keywords: ['
|
|
55
|
-
componentName: '
|
|
56
|
-
package: '@atlaskit/icon-lab/core/
|
|
62
|
+
lozenge: {
|
|
63
|
+
keywords: ['lozenge', 'icon', 'icon-lab', 'core', 'insert', 'status', 'badge'],
|
|
64
|
+
componentName: 'LozengeIcon',
|
|
65
|
+
package: '@atlaskit/icon-lab/core/lozenge',
|
|
57
66
|
type: 'core',
|
|
58
67
|
categorization: 'single-purpose',
|
|
59
|
-
usage: '
|
|
60
|
-
team: '
|
|
68
|
+
usage: 'Reserved for inserting status lozenges in Editor.',
|
|
69
|
+
team: 'Editor'
|
|
61
70
|
},
|
|
62
71
|
'paint-brush': {
|
|
63
|
-
keywords: ['paint-brush', 'paintbrush', 'icon', 'icon-lab', 'core', '
|
|
72
|
+
keywords: ['paint-brush', 'paintbrush', 'icon', 'icon-lab', 'core', 'brush', 'appearance', 'paint'],
|
|
64
73
|
componentName: 'PaintBrushIcon',
|
|
65
74
|
package: '@atlaskit/icon-lab/core/paint-brush',
|
|
66
75
|
type: 'core',
|
|
@@ -69,7 +78,7 @@ var metadata = {
|
|
|
69
78
|
team: 'Design System Team'
|
|
70
79
|
},
|
|
71
80
|
'paint-roller': {
|
|
72
|
-
keywords: ['paint-roller', 'paintroller', 'icon', 'icon-lab', 'core', '
|
|
81
|
+
keywords: ['paint-roller', 'paintroller', 'icon', 'icon-lab', 'core', 'roller', 'background', 'paint'],
|
|
73
82
|
componentName: 'PaintRollerIcon',
|
|
74
83
|
package: '@atlaskit/icon-lab/core/paint-roller',
|
|
75
84
|
type: 'core',
|
|
@@ -84,7 +93,7 @@ var metadata = {
|
|
|
84
93
|
oldName: ['bitbucket/builds'],
|
|
85
94
|
type: 'core',
|
|
86
95
|
categorization: 'single-purpose',
|
|
87
|
-
usage: '
|
|
96
|
+
usage: 'Reserved for roadmaps plan.',
|
|
88
97
|
team: 'Design System Team'
|
|
89
98
|
},
|
|
90
99
|
'roadmaps-service': {
|
|
@@ -94,11 +103,11 @@ var metadata = {
|
|
|
94
103
|
oldName: ['bitbucket/forks'],
|
|
95
104
|
type: 'core',
|
|
96
105
|
categorization: 'single-purpose',
|
|
97
|
-
usage: '
|
|
106
|
+
usage: 'Reserved for roadmaps service.',
|
|
98
107
|
team: 'Design System Team'
|
|
99
108
|
},
|
|
100
109
|
speedometer: {
|
|
101
|
-
keywords: ['speedometer', 'icon', 'icon-lab', 'core', '
|
|
110
|
+
keywords: ['speedometer', 'icon', 'icon-lab', 'core', 'speed', 'performance', 'dial'],
|
|
102
111
|
componentName: 'SpeedometerIcon',
|
|
103
112
|
package: '@atlaskit/icon-lab/core/speedometer',
|
|
104
113
|
type: 'core',
|
|
@@ -106,26 +115,17 @@ var metadata = {
|
|
|
106
115
|
usage: 'Multi purpose',
|
|
107
116
|
team: 'Design System Team'
|
|
108
117
|
},
|
|
109
|
-
status: {
|
|
110
|
-
keywords: ['status', 'icon', 'icon-lab', 'core', 'insert', 'status', 'badge'],
|
|
111
|
-
componentName: 'StatusIcon',
|
|
112
|
-
package: '@atlaskit/icon-lab/core/status',
|
|
113
|
-
type: 'core',
|
|
114
|
-
categorization: 'single-purpose',
|
|
115
|
-
usage: 'Reserved for inserting status lozenges in Editor.',
|
|
116
|
-
team: 'Editor'
|
|
117
|
-
},
|
|
118
118
|
'takeout-container': {
|
|
119
|
-
keywords: ['takeout-container', 'takeoutcontainer', 'icon', 'icon-lab', 'core', '
|
|
119
|
+
keywords: ['takeout-container', 'takeoutcontainer', 'icon', 'icon-lab', 'core', 'takeout', 'food', 'takeaway'],
|
|
120
120
|
componentName: 'TakeoutContainerIcon',
|
|
121
121
|
package: '@atlaskit/icon-lab/core/takeout-container',
|
|
122
122
|
type: 'core',
|
|
123
123
|
categorization: 'multi-purpose',
|
|
124
|
-
usage: '
|
|
124
|
+
usage: 'Known usages: Alternative option for food emoji category.',
|
|
125
125
|
team: 'Design System Team'
|
|
126
126
|
},
|
|
127
127
|
ticket: {
|
|
128
|
-
keywords: ['ticket', 'icon', 'icon-lab', 'core', '
|
|
128
|
+
keywords: ['ticket', 'icon', 'icon-lab', 'core', 'stub', 'ticket'],
|
|
129
129
|
componentName: 'TicketIcon',
|
|
130
130
|
package: '@atlaskit/icon-lab/core/ticket',
|
|
131
131
|
type: 'core',
|
|
@@ -134,16 +134,25 @@ var metadata = {
|
|
|
134
134
|
team: 'Design System Team'
|
|
135
135
|
},
|
|
136
136
|
'vehicle-train': {
|
|
137
|
-
keywords: ['vehicle-train', 'vehicletrain', 'icon', 'icon-lab', 'core', '
|
|
137
|
+
keywords: ['vehicle-train', 'vehicletrain', 'icon', 'icon-lab', 'core', 'transportation', 'vehicle', 'car'],
|
|
138
138
|
componentName: 'VehicleTrainIcon',
|
|
139
139
|
package: '@atlaskit/icon-lab/core/vehicle-train',
|
|
140
140
|
type: 'core',
|
|
141
141
|
categorization: 'multi-purpose',
|
|
142
|
-
usage: '
|
|
142
|
+
usage: 'Known usages: Alternative option for transport emoji category.',
|
|
143
143
|
team: 'Design System Team'
|
|
144
144
|
},
|
|
145
|
+
vulnerability: {
|
|
146
|
+
keywords: ['vulnerability', 'icon', 'icon-lab', 'core', 'vulnerability', 'security', 'alert', 'warning'],
|
|
147
|
+
componentName: 'VulnerabilityIcon',
|
|
148
|
+
package: '@atlaskit/icon-lab/core/vulnerability',
|
|
149
|
+
type: 'core',
|
|
150
|
+
categorization: 'single-purpose',
|
|
151
|
+
usage: 'Reserved for security vulnerabilities.',
|
|
152
|
+
team: 'Automation'
|
|
153
|
+
},
|
|
145
154
|
wallet: {
|
|
146
|
-
keywords: ['wallet', 'icon', 'icon-lab', 'core', '
|
|
155
|
+
keywords: ['wallet', 'icon', 'icon-lab', 'core', 'money', 'sales', 'payment', 'wallet'],
|
|
147
156
|
componentName: 'WalletIcon',
|
|
148
157
|
package: '@atlaskit/icon-lab/core/wallet',
|
|
149
158
|
type: 'core',
|
|
@@ -152,7 +161,7 @@ var metadata = {
|
|
|
152
161
|
team: 'Design System Team'
|
|
153
162
|
},
|
|
154
163
|
wrench: {
|
|
155
|
-
keywords: ['wrench', 'icon', 'icon-lab', 'core', '
|
|
164
|
+
keywords: ['wrench', 'icon', 'icon-lab', 'core', 'wrench', 'spanner', 'tool'],
|
|
156
165
|
componentName: 'WrenchIcon',
|
|
157
166
|
package: '@atlaskit/icon-lab/core/wrench',
|
|
158
167
|
type: 'core',
|
|
@@ -3,13 +3,22 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `UNSAFE_createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::fb64e80f33776bd1206895e95a86eaa6>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
const metadata = {
|
|
11
|
+
'book-open': {
|
|
12
|
+
keywords: ['book-open', 'bookopen', 'icon', 'icon-lab', 'core', 'book', 'knowledgebase article'],
|
|
13
|
+
componentName: 'BookOpenIcon',
|
|
14
|
+
package: '@atlaskit/icon-lab/core/book-open',
|
|
15
|
+
type: 'core',
|
|
16
|
+
categorization: 'multi-purpose',
|
|
17
|
+
usage: 'Known uses: None',
|
|
18
|
+
team: 'Design System Team'
|
|
19
|
+
},
|
|
11
20
|
coins: {
|
|
12
|
-
keywords: ['coins', 'icon', 'icon-lab', 'core', '
|
|
21
|
+
keywords: ['coins', 'icon', 'icon-lab', 'core', 'money', 'loose change', 'currency'],
|
|
13
22
|
componentName: 'CoinsIcon',
|
|
14
23
|
package: '@atlaskit/icon-lab/core/coins',
|
|
15
24
|
type: 'core',
|
|
@@ -18,7 +27,7 @@ const metadata = {
|
|
|
18
27
|
team: 'Design System Team'
|
|
19
28
|
},
|
|
20
29
|
'cross-octagon': {
|
|
21
|
-
keywords: ['cross-octagon', 'crossoctagon', 'icon', 'icon-lab', 'core', '
|
|
30
|
+
keywords: ['cross-octagon', 'crossoctagon', 'icon', 'icon-lab', 'core', 'cross', 'stop', 'block', 'octagon'],
|
|
22
31
|
componentName: 'CrossOctagonIcon',
|
|
23
32
|
package: '@atlaskit/icon-lab/core/cross-octagon',
|
|
24
33
|
type: 'core',
|
|
@@ -27,16 +36,16 @@ const metadata = {
|
|
|
27
36
|
team: 'Design System Team'
|
|
28
37
|
},
|
|
29
38
|
editions: {
|
|
30
|
-
keywords: ['editions', 'icon', 'icon-lab', 'core', '
|
|
39
|
+
keywords: ['editions', 'icon', 'icon-lab', 'core', 'gem', 'premium', 'diamond', 'precious stone', 'editions'],
|
|
31
40
|
componentName: 'EditionsIcon',
|
|
32
41
|
package: '@atlaskit/icon-lab/core/editions',
|
|
33
42
|
type: 'core',
|
|
34
43
|
categorization: 'single-purpose',
|
|
35
|
-
usage: '
|
|
44
|
+
usage: 'Reserved for representing premium features and functionality. Editions may replace the current premium sparkle icon.',
|
|
36
45
|
team: 'Design System Team'
|
|
37
46
|
},
|
|
38
47
|
'field-text': {
|
|
39
|
-
keywords: ['field-text', 'fieldtext', 'icon', 'icon-lab', 'core', '
|
|
48
|
+
keywords: ['field-text', 'fieldtext', 'icon', 'icon-lab', 'core', 'form', 'input', 'label', 'cursor', 'text field'],
|
|
40
49
|
componentName: 'FieldTextIcon',
|
|
41
50
|
package: '@atlaskit/icon-lab/core/field-text',
|
|
42
51
|
type: 'core',
|
|
@@ -44,17 +53,17 @@ const metadata = {
|
|
|
44
53
|
usage: 'Multi purpose',
|
|
45
54
|
team: 'Design System Team'
|
|
46
55
|
},
|
|
47
|
-
|
|
48
|
-
keywords: ['
|
|
49
|
-
componentName: '
|
|
50
|
-
package: '@atlaskit/icon-lab/core/
|
|
56
|
+
lozenge: {
|
|
57
|
+
keywords: ['lozenge', 'icon', 'icon-lab', 'core', 'insert', 'status', 'badge'],
|
|
58
|
+
componentName: 'LozengeIcon',
|
|
59
|
+
package: '@atlaskit/icon-lab/core/lozenge',
|
|
51
60
|
type: 'core',
|
|
52
61
|
categorization: 'single-purpose',
|
|
53
|
-
usage: '
|
|
54
|
-
team: '
|
|
62
|
+
usage: 'Reserved for inserting status lozenges in Editor.',
|
|
63
|
+
team: 'Editor'
|
|
55
64
|
},
|
|
56
65
|
'paint-brush': {
|
|
57
|
-
keywords: ['paint-brush', 'paintbrush', 'icon', 'icon-lab', 'core', '
|
|
66
|
+
keywords: ['paint-brush', 'paintbrush', 'icon', 'icon-lab', 'core', 'brush', 'appearance', 'paint'],
|
|
58
67
|
componentName: 'PaintBrushIcon',
|
|
59
68
|
package: '@atlaskit/icon-lab/core/paint-brush',
|
|
60
69
|
type: 'core',
|
|
@@ -63,7 +72,7 @@ const metadata = {
|
|
|
63
72
|
team: 'Design System Team'
|
|
64
73
|
},
|
|
65
74
|
'paint-roller': {
|
|
66
|
-
keywords: ['paint-roller', 'paintroller', 'icon', 'icon-lab', 'core', '
|
|
75
|
+
keywords: ['paint-roller', 'paintroller', 'icon', 'icon-lab', 'core', 'roller', 'background', 'paint'],
|
|
67
76
|
componentName: 'PaintRollerIcon',
|
|
68
77
|
package: '@atlaskit/icon-lab/core/paint-roller',
|
|
69
78
|
type: 'core',
|
|
@@ -78,7 +87,7 @@ const metadata = {
|
|
|
78
87
|
oldName: ['bitbucket/builds'],
|
|
79
88
|
type: 'core',
|
|
80
89
|
categorization: 'single-purpose',
|
|
81
|
-
usage: '
|
|
90
|
+
usage: 'Reserved for roadmaps plan.',
|
|
82
91
|
team: 'Design System Team'
|
|
83
92
|
},
|
|
84
93
|
'roadmaps-service': {
|
|
@@ -88,11 +97,11 @@ const metadata = {
|
|
|
88
97
|
oldName: ['bitbucket/forks'],
|
|
89
98
|
type: 'core',
|
|
90
99
|
categorization: 'single-purpose',
|
|
91
|
-
usage: '
|
|
100
|
+
usage: 'Reserved for roadmaps service.',
|
|
92
101
|
team: 'Design System Team'
|
|
93
102
|
},
|
|
94
103
|
speedometer: {
|
|
95
|
-
keywords: ['speedometer', 'icon', 'icon-lab', 'core', '
|
|
104
|
+
keywords: ['speedometer', 'icon', 'icon-lab', 'core', 'speed', 'performance', 'dial'],
|
|
96
105
|
componentName: 'SpeedometerIcon',
|
|
97
106
|
package: '@atlaskit/icon-lab/core/speedometer',
|
|
98
107
|
type: 'core',
|
|
@@ -100,26 +109,17 @@ const metadata = {
|
|
|
100
109
|
usage: 'Multi purpose',
|
|
101
110
|
team: 'Design System Team'
|
|
102
111
|
},
|
|
103
|
-
status: {
|
|
104
|
-
keywords: ['status', 'icon', 'icon-lab', 'core', 'insert', 'status', 'badge'],
|
|
105
|
-
componentName: 'StatusIcon',
|
|
106
|
-
package: '@atlaskit/icon-lab/core/status',
|
|
107
|
-
type: 'core',
|
|
108
|
-
categorization: 'single-purpose',
|
|
109
|
-
usage: 'Reserved for inserting status lozenges in Editor.',
|
|
110
|
-
team: 'Editor'
|
|
111
|
-
},
|
|
112
112
|
'takeout-container': {
|
|
113
|
-
keywords: ['takeout-container', 'takeoutcontainer', 'icon', 'icon-lab', 'core', '
|
|
113
|
+
keywords: ['takeout-container', 'takeoutcontainer', 'icon', 'icon-lab', 'core', 'takeout', 'food', 'takeaway'],
|
|
114
114
|
componentName: 'TakeoutContainerIcon',
|
|
115
115
|
package: '@atlaskit/icon-lab/core/takeout-container',
|
|
116
116
|
type: 'core',
|
|
117
117
|
categorization: 'multi-purpose',
|
|
118
|
-
usage: '
|
|
118
|
+
usage: 'Known usages: Alternative option for food emoji category.',
|
|
119
119
|
team: 'Design System Team'
|
|
120
120
|
},
|
|
121
121
|
ticket: {
|
|
122
|
-
keywords: ['ticket', 'icon', 'icon-lab', 'core', '
|
|
122
|
+
keywords: ['ticket', 'icon', 'icon-lab', 'core', 'stub', 'ticket'],
|
|
123
123
|
componentName: 'TicketIcon',
|
|
124
124
|
package: '@atlaskit/icon-lab/core/ticket',
|
|
125
125
|
type: 'core',
|
|
@@ -128,16 +128,25 @@ const metadata = {
|
|
|
128
128
|
team: 'Design System Team'
|
|
129
129
|
},
|
|
130
130
|
'vehicle-train': {
|
|
131
|
-
keywords: ['vehicle-train', 'vehicletrain', 'icon', 'icon-lab', 'core', '
|
|
131
|
+
keywords: ['vehicle-train', 'vehicletrain', 'icon', 'icon-lab', 'core', 'transportation', 'vehicle', 'car'],
|
|
132
132
|
componentName: 'VehicleTrainIcon',
|
|
133
133
|
package: '@atlaskit/icon-lab/core/vehicle-train',
|
|
134
134
|
type: 'core',
|
|
135
135
|
categorization: 'multi-purpose',
|
|
136
|
-
usage: '
|
|
136
|
+
usage: 'Known usages: Alternative option for transport emoji category.',
|
|
137
137
|
team: 'Design System Team'
|
|
138
138
|
},
|
|
139
|
+
vulnerability: {
|
|
140
|
+
keywords: ['vulnerability', 'icon', 'icon-lab', 'core', 'vulnerability', 'security', 'alert', 'warning'],
|
|
141
|
+
componentName: 'VulnerabilityIcon',
|
|
142
|
+
package: '@atlaskit/icon-lab/core/vulnerability',
|
|
143
|
+
type: 'core',
|
|
144
|
+
categorization: 'single-purpose',
|
|
145
|
+
usage: 'Reserved for security vulnerabilities.',
|
|
146
|
+
team: 'Automation'
|
|
147
|
+
},
|
|
139
148
|
wallet: {
|
|
140
|
-
keywords: ['wallet', 'icon', 'icon-lab', 'core', '
|
|
149
|
+
keywords: ['wallet', 'icon', 'icon-lab', 'core', 'money', 'sales', 'payment', 'wallet'],
|
|
141
150
|
componentName: 'WalletIcon',
|
|
142
151
|
package: '@atlaskit/icon-lab/core/wallet',
|
|
143
152
|
type: 'core',
|
|
@@ -146,7 +155,7 @@ const metadata = {
|
|
|
146
155
|
team: 'Design System Team'
|
|
147
156
|
},
|
|
148
157
|
wrench: {
|
|
149
|
-
keywords: ['wrench', 'icon', 'icon-lab', 'core', '
|
|
158
|
+
keywords: ['wrench', 'icon', 'icon-lab', 'core', 'wrench', 'spanner', 'tool'],
|
|
150
159
|
componentName: 'WrenchIcon',
|
|
151
160
|
package: '@atlaskit/icon-lab/core/wrench',
|
|
152
161
|
type: 'core',
|