@atlaskit/icon-lab 5.1.0 → 5.3.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.
- package/CHANGELOG.md +37 -0
- package/build/index.tsx +2 -2
- package/core/boolean.d.ts +13 -0
- package/core/boolean.js +28 -0
- package/core/chart-area.d.ts +13 -0
- package/core/chart-area.js +28 -0
- package/core/chart-bar-line.d.ts +13 -0
- package/core/chart-bar-line.js +28 -0
- package/core/chart-box-plot.d.ts +13 -0
- package/core/chart-box-plot.js +28 -0
- package/core/chart-scatter-plot.d.ts +13 -0
- package/core/chart-scatter-plot.js +28 -0
- package/core/signpost.d.ts +13 -0
- package/core/signpost.js +27 -0
- package/core/terminal.d.ts +13 -0
- package/core/terminal.js +27 -0
- package/dist/cjs/metadata-core.js +69 -1
- package/dist/es2019/metadata-core.js +69 -1
- package/dist/esm/metadata-core.js +69 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +9 -10
- package/svgs/core/boolean.svg +1 -0
- package/svgs/core/chart-area.svg +1 -0
- package/svgs/core/chart-bar-line.svg +1 -0
- package/svgs/core/chart-box-plot.svg +1 -0
- package/svgs/core/chart-scatter-plot.svg +1 -0
- package/svgs/core/signpost.svg +1 -0
- package/svgs/core/terminal.svg +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @atlaskit/icon-lab
|
|
2
2
|
|
|
3
|
+
## 5.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#194121](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/194121)
|
|
8
|
+
[`7ae4095151c9a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7ae4095151c9a) -
|
|
9
|
+
This release adds icons in `@atlaskit/icon-lab`.
|
|
10
|
+
|
|
11
|
+
### Added:
|
|
12
|
+
|
|
13
|
+
**`@atlaskit/icon-lab/core`**
|
|
14
|
+
|
|
15
|
+
- `chart-area`
|
|
16
|
+
- `chart-bar-line`
|
|
17
|
+
- `chart-box-plot`
|
|
18
|
+
- `chart-scatter-plot`
|
|
19
|
+
- `signpost`
|
|
20
|
+
- `terminal`
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
|
|
26
|
+
## 5.2.0
|
|
27
|
+
|
|
28
|
+
### Minor Changes
|
|
29
|
+
|
|
30
|
+
- [#187880](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/187880)
|
|
31
|
+
[`4683d36b12b0e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4683d36b12b0e) -
|
|
32
|
+
This release adds icons in `@atlaskit/icon-lab`.
|
|
33
|
+
|
|
34
|
+
### Added:
|
|
35
|
+
|
|
36
|
+
**`@atlaskit/icon-lab/core`**
|
|
37
|
+
|
|
38
|
+
- `boolean`
|
|
39
|
+
|
|
3
40
|
## 5.1.0
|
|
4
41
|
|
|
5
42
|
### Minor Changes
|
package/build/index.tsx
CHANGED
|
@@ -66,7 +66,7 @@ async function main() {
|
|
|
66
66
|
const [vrExampleCore, vrTestCore] = createVRTest(
|
|
67
67
|
coreIconMetadata,
|
|
68
68
|
'../../../..',
|
|
69
|
-
|
|
69
|
+
50,
|
|
70
70
|
'core',
|
|
71
71
|
true,
|
|
72
72
|
);
|
|
@@ -125,7 +125,7 @@ async function main() {
|
|
|
125
125
|
const [vrExampleUtility, vrTestUtility] = createVRTest(
|
|
126
126
|
utilityIconMetadata,
|
|
127
127
|
'../../../..',
|
|
128
|
-
|
|
128
|
+
50,
|
|
129
129
|
'utility',
|
|
130
130
|
true,
|
|
131
131
|
);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b796e0f31871673307e8a508c0cef0f2>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const BooleanIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default BooleanIcon;
|
package/core/boolean.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::4b25699ec8a6909ce012b866aa6865d3>>
|
|
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: "Boolean".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for representing boolean data types and operations.
|
|
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 BooleanIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 8a4 4 0 0 0-4-4h-5a4 4 0 1 0 0 8h5a4 4 0 0 0 4-4M16 8a5.5 5.5 0 0 1-5.5 5.5h-5a5.5 5.5 0 1 1 0-11h5A5.5 5.5 0 0 1 16 8"/><path fill="currentcolor" d="M5.5 5.25a2.75 2.75 0 1 1 0 5.5 2.75 2.75 0 0 1 0-5.5"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
BooleanIcon.displayName = 'BooleanIcon';
|
|
28
|
+
var _default = exports.default = BooleanIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::32ed27d357dc456877fd71d65ba46491>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ChartAreaIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ChartAreaIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::baef9982ec2dab1b366ea4e66c5e12d1>>
|
|
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: "ChartArea".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Known uses: Area charts
|
|
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 ChartAreaIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M14 3v1.5h-3L7.2 7.35a.75.75 0 0 1-.45.15H3.5V6h3l3.8-2.85a.75.75 0 0 1 .45-.15zm-.75 4a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-.75.75h-9a.75.75 0 0 1-.75-.75v-1.5a.75.75 0 0 1 .75-.75h2.79l3.82-2.39.09-.05a.75.75 0 0 1 .3-.06z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ChartAreaIcon.displayName = 'ChartAreaIcon';
|
|
28
|
+
var _default = exports.default = ChartAreaIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::19fc92d98c8cb67d888b3f6da0a84bac>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ChartBarLineIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ChartBarLineIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d4b637c3694ad97c930dfcd88d31acad>>
|
|
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: "ChartBarLine".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Known uses: Bar charts with trend lines
|
|
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 ChartBarLineIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M14 2v1.5h-2.97L7.24 6.81a.75.75 0 0 1-.49.19H3.5V5.5h2.97l3.79-3.31.11-.08a.75.75 0 0 1 .38-.11zm-8.75 8h.08a.75.75 0 0 1 .67.75v1a.75.75 0 0 1-.75.75h-1a.75.75 0 0 1-.75-.75v-1a.75.75 0 0 1 .75-.75zm4-2h.08a.75.75 0 0 1 .67.75v3a.75.75 0 0 1-.75.75h-1a.75.75 0 0 1-.75-.75v-3A.75.75 0 0 1 8.25 8zm4-2a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-.75.75h-1a.75.75 0 0 1-.75-.75v-5a.75.75 0 0 1 .75-.75z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ChartBarLineIcon.displayName = 'ChartBarLineIcon';
|
|
28
|
+
var _default = exports.default = ChartBarLineIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::be1a4d0de67d455926ff901d785ca705>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ChartBoxPlotIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ChartBoxPlotIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::6c8c010f1ad18d91852e52d914803559>>
|
|
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: "ChartBoxPlot".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Known uses: Box plot charts
|
|
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 ChartBoxPlotIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M7 2v2.5h.75a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-.75.75H7v2H5.5v-2h-.75A.75.75 0 0 1 4 9.25v-4a.75.75 0 0 1 .75-.75h.75V2zM5.5 8.5H7V6H5.5zM13 1v2h.83a.75.75 0 0 1 .67.75v4.5a.75.75 0 0 1-.75.75H13v3h-1.5V9h-.75a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 1 .75-.75h.75V1zm-1.5 6.5H13v-3h-1.5z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ChartBoxPlotIcon.displayName = 'ChartBoxPlotIcon';
|
|
28
|
+
var _default = exports.default = ChartBoxPlotIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::3aec10ce62e0fc0db177982296dec0ad>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ChartScatterPlotIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ChartScatterPlotIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::2aec4c9821ac81865bb8b5c65dbec6d6>>
|
|
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: "ChartScatterPlot".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Known uses: Scatter plot chart
|
|
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 ChartScatterPlotIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M5 8a1 1 0 1 1 0 2 1 1 0 0 1 0-2m4 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-4a1 1 0 1 1 0 2 1 1 0 0 1 0-2m4 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-4a1 1 0 1 1 0 2 1 1 0 0 1 0-2"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ChartScatterPlotIcon.displayName = 'ChartScatterPlotIcon';
|
|
28
|
+
var _default = exports.default = ChartScatterPlotIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d5bd5fd6a108184119212852d428b191>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SignpostIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SignpostIcon;
|
package/core/signpost.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::0a68a8b9adb42339f874d72d1865b4c0>>
|
|
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: "Signpost".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
20
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
21
|
+
*/
|
|
22
|
+
const SignpostIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
23
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M3 4.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h8.792a.5.5 0 0 0 .323-.118L14.338 6.5l-2.223-1.882a.5.5 0 0 0-.323-.118zM7 3V0h1.5v3h3.292a2 2 0 0 1 1.292.474l2.337 1.976c.649.55.649 1.55 0 2.1l-2.337 1.976a2 2 0 0 1-1.292.474H8.5v6H7v-6H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/>`
|
|
24
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
25
|
+
}, props));
|
|
26
|
+
SignpostIcon.displayName = 'SignpostIcon';
|
|
27
|
+
var _default = exports.default = SignpostIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::aeee223b51039a34b495fc135878c81e>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const TerminalIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default TerminalIcon;
|
package/core/terminal.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::789ff9f665690fc4471ff3036fb65a7d>>
|
|
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: "Terminal".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
20
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
21
|
+
*/
|
|
22
|
+
const TerminalIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
23
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 3a.5.5 0 0 0-.4-.49L14 2.5H2a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5zM16 13a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h12l.204.01A2 2 0 0 1 16 3z"/><path fill="currentcolor" d="m4.28 4.72 2.75 2.75a.75.75 0 0 1 0 1.06l-2.75 2.75-1.06-1.06L5.44 8 3.22 5.78zM12.5 9.5V11H8V9.5z"/>`
|
|
24
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
25
|
+
}, props));
|
|
26
|
+
TerminalIcon.displayName = 'TerminalIcon';
|
|
27
|
+
var _default = exports.default = TerminalIcon;
|
|
@@ -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::
|
|
12
|
+
* @codegen <<SignedSource::60e5f4928cb817cb8ee3d5b4e978af93>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -282,6 +282,16 @@ var metadata = {
|
|
|
282
282
|
team: 'Design System Team',
|
|
283
283
|
status: 'published'
|
|
284
284
|
},
|
|
285
|
+
boolean: {
|
|
286
|
+
keywords: ['boolean', 'icon', 'icon-lab', 'core', 'true', 'false', 'binary', 'boolean', 'on', 'off'],
|
|
287
|
+
componentName: 'BooleanIcon',
|
|
288
|
+
package: '@atlaskit/icon-lab/core/boolean',
|
|
289
|
+
type: 'core',
|
|
290
|
+
categorization: 'single-purpose',
|
|
291
|
+
usage: 'Reserved for representing boolean data types and operations.',
|
|
292
|
+
team: 'Data Experiences (AVP)',
|
|
293
|
+
status: 'published'
|
|
294
|
+
},
|
|
285
295
|
'browser-extension': {
|
|
286
296
|
keywords: ['browser-extension', 'browserextension', 'icon', 'icon-lab', 'core', 'extension', 'puzzle piece', 'add on', 'jigsaw', 'chrome web store'],
|
|
287
297
|
componentName: 'BrowserExtensionIcon',
|
|
@@ -303,6 +313,46 @@ var metadata = {
|
|
|
303
313
|
team: 'Databases',
|
|
304
314
|
status: 'published'
|
|
305
315
|
},
|
|
316
|
+
'chart-area': {
|
|
317
|
+
keywords: ['chart-area', 'chartarea', 'icon', 'icon-lab', 'core', 'chart', 'area', 'analytics', 'graph'],
|
|
318
|
+
componentName: 'ChartAreaIcon',
|
|
319
|
+
package: '@atlaskit/icon-lab/core/chart-area',
|
|
320
|
+
type: 'core',
|
|
321
|
+
categorization: 'multi-purpose',
|
|
322
|
+
usage: 'Known uses: Area charts',
|
|
323
|
+
team: 'Data Experiences',
|
|
324
|
+
status: 'published'
|
|
325
|
+
},
|
|
326
|
+
'chart-bar-line': {
|
|
327
|
+
keywords: ['chart-bar-line', 'chartbarline', 'icon', 'icon-lab', 'core', 'chart', 'bar', 'line', 'trend', 'graph', 'analytics'],
|
|
328
|
+
componentName: 'ChartBarLineIcon',
|
|
329
|
+
package: '@atlaskit/icon-lab/core/chart-bar-line',
|
|
330
|
+
type: 'core',
|
|
331
|
+
categorization: 'multi-purpose',
|
|
332
|
+
usage: 'Known uses: Bar charts with trend lines',
|
|
333
|
+
team: 'Data Experiences',
|
|
334
|
+
status: 'published'
|
|
335
|
+
},
|
|
336
|
+
'chart-box-plot': {
|
|
337
|
+
keywords: ['chart-box-plot', 'chartboxplot', 'icon', 'icon-lab', 'core', 'chart', 'box plot', 'whisker', 'distribution', 'quartile', 'analytics'],
|
|
338
|
+
componentName: 'ChartBoxPlotIcon',
|
|
339
|
+
package: '@atlaskit/icon-lab/core/chart-box-plot',
|
|
340
|
+
type: 'core',
|
|
341
|
+
categorization: 'multi-purpose',
|
|
342
|
+
usage: 'Known uses: Box plot charts',
|
|
343
|
+
team: 'Data Experiences',
|
|
344
|
+
status: 'published'
|
|
345
|
+
},
|
|
346
|
+
'chart-scatter-plot': {
|
|
347
|
+
keywords: ['chart-scatter-plot', 'chartscatterplot', 'icon', 'icon-lab', 'core', 'chart', 'scatter', 'dot plot', 'distribution', 'analytics'],
|
|
348
|
+
componentName: 'ChartScatterPlotIcon',
|
|
349
|
+
package: '@atlaskit/icon-lab/core/chart-scatter-plot',
|
|
350
|
+
type: 'core',
|
|
351
|
+
categorization: 'multi-purpose',
|
|
352
|
+
usage: 'Known uses: Scatter plot chart',
|
|
353
|
+
team: 'Data Experiences',
|
|
354
|
+
status: 'published'
|
|
355
|
+
},
|
|
306
356
|
'cloud-offline': {
|
|
307
357
|
keywords: ['cloud-offline', 'cloudoffline', 'icon', 'icon-lab', 'core', 'cloud', 'offline', 'disconnected', 'strikethrough'],
|
|
308
358
|
componentName: 'CloudOfflineIcon',
|
|
@@ -1558,6 +1608,15 @@ var metadata = {
|
|
|
1558
1608
|
team: 'Whiteboards',
|
|
1559
1609
|
status: 'published'
|
|
1560
1610
|
},
|
|
1611
|
+
signpost: {
|
|
1612
|
+
keywords: ['signpost', 'icon', 'icon-lab', 'core', 'signpost', 'direction', 'milestone'],
|
|
1613
|
+
componentName: 'SignpostIcon',
|
|
1614
|
+
package: '@atlaskit/icon-lab/core/signpost',
|
|
1615
|
+
type: 'core',
|
|
1616
|
+
categorization: 'multi-purpose',
|
|
1617
|
+
team: 'Design System Team',
|
|
1618
|
+
status: 'published'
|
|
1619
|
+
},
|
|
1561
1620
|
'sort-options': {
|
|
1562
1621
|
keywords: ['sort-options', 'sortoptions', 'icon', 'icon-lab', 'core', 'sorting', 'ordering', 'alphabetization', 'alphabetisation', 'reordering'],
|
|
1563
1622
|
componentName: 'SortOptionsIcon',
|
|
@@ -1832,6 +1891,15 @@ var metadata = {
|
|
|
1832
1891
|
team: 'Whiteboards',
|
|
1833
1892
|
status: 'published'
|
|
1834
1893
|
},
|
|
1894
|
+
terminal: {
|
|
1895
|
+
keywords: ['terminal', 'icon', 'icon-lab', 'core', 'terminal', 'IDE', 'code editor', 'command line'],
|
|
1896
|
+
componentName: 'TerminalIcon',
|
|
1897
|
+
package: '@atlaskit/icon-lab/core/terminal',
|
|
1898
|
+
type: 'core',
|
|
1899
|
+
categorization: 'multi-purpose',
|
|
1900
|
+
team: 'Design System Team',
|
|
1901
|
+
status: 'published'
|
|
1902
|
+
},
|
|
1835
1903
|
'text-adjust-length': {
|
|
1836
1904
|
keywords: ['text-adjust-length', 'textadjustlength', 'icon', 'icon-lab', 'core', 'text length', 'change text length', 'adjust text length'],
|
|
1837
1905
|
componentName: 'TextAdjustLengthIcon',
|
|
@@ -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::
|
|
6
|
+
* @codegen <<SignedSource::60e5f4928cb817cb8ee3d5b4e978af93>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -276,6 +276,16 @@ const metadata = {
|
|
|
276
276
|
team: 'Design System Team',
|
|
277
277
|
status: 'published'
|
|
278
278
|
},
|
|
279
|
+
boolean: {
|
|
280
|
+
keywords: ['boolean', 'icon', 'icon-lab', 'core', 'true', 'false', 'binary', 'boolean', 'on', 'off'],
|
|
281
|
+
componentName: 'BooleanIcon',
|
|
282
|
+
package: '@atlaskit/icon-lab/core/boolean',
|
|
283
|
+
type: 'core',
|
|
284
|
+
categorization: 'single-purpose',
|
|
285
|
+
usage: 'Reserved for representing boolean data types and operations.',
|
|
286
|
+
team: 'Data Experiences (AVP)',
|
|
287
|
+
status: 'published'
|
|
288
|
+
},
|
|
279
289
|
'browser-extension': {
|
|
280
290
|
keywords: ['browser-extension', 'browserextension', 'icon', 'icon-lab', 'core', 'extension', 'puzzle piece', 'add on', 'jigsaw', 'chrome web store'],
|
|
281
291
|
componentName: 'BrowserExtensionIcon',
|
|
@@ -297,6 +307,46 @@ const metadata = {
|
|
|
297
307
|
team: 'Databases',
|
|
298
308
|
status: 'published'
|
|
299
309
|
},
|
|
310
|
+
'chart-area': {
|
|
311
|
+
keywords: ['chart-area', 'chartarea', 'icon', 'icon-lab', 'core', 'chart', 'area', 'analytics', 'graph'],
|
|
312
|
+
componentName: 'ChartAreaIcon',
|
|
313
|
+
package: '@atlaskit/icon-lab/core/chart-area',
|
|
314
|
+
type: 'core',
|
|
315
|
+
categorization: 'multi-purpose',
|
|
316
|
+
usage: 'Known uses: Area charts',
|
|
317
|
+
team: 'Data Experiences',
|
|
318
|
+
status: 'published'
|
|
319
|
+
},
|
|
320
|
+
'chart-bar-line': {
|
|
321
|
+
keywords: ['chart-bar-line', 'chartbarline', 'icon', 'icon-lab', 'core', 'chart', 'bar', 'line', 'trend', 'graph', 'analytics'],
|
|
322
|
+
componentName: 'ChartBarLineIcon',
|
|
323
|
+
package: '@atlaskit/icon-lab/core/chart-bar-line',
|
|
324
|
+
type: 'core',
|
|
325
|
+
categorization: 'multi-purpose',
|
|
326
|
+
usage: 'Known uses: Bar charts with trend lines',
|
|
327
|
+
team: 'Data Experiences',
|
|
328
|
+
status: 'published'
|
|
329
|
+
},
|
|
330
|
+
'chart-box-plot': {
|
|
331
|
+
keywords: ['chart-box-plot', 'chartboxplot', 'icon', 'icon-lab', 'core', 'chart', 'box plot', 'whisker', 'distribution', 'quartile', 'analytics'],
|
|
332
|
+
componentName: 'ChartBoxPlotIcon',
|
|
333
|
+
package: '@atlaskit/icon-lab/core/chart-box-plot',
|
|
334
|
+
type: 'core',
|
|
335
|
+
categorization: 'multi-purpose',
|
|
336
|
+
usage: 'Known uses: Box plot charts',
|
|
337
|
+
team: 'Data Experiences',
|
|
338
|
+
status: 'published'
|
|
339
|
+
},
|
|
340
|
+
'chart-scatter-plot': {
|
|
341
|
+
keywords: ['chart-scatter-plot', 'chartscatterplot', 'icon', 'icon-lab', 'core', 'chart', 'scatter', 'dot plot', 'distribution', 'analytics'],
|
|
342
|
+
componentName: 'ChartScatterPlotIcon',
|
|
343
|
+
package: '@atlaskit/icon-lab/core/chart-scatter-plot',
|
|
344
|
+
type: 'core',
|
|
345
|
+
categorization: 'multi-purpose',
|
|
346
|
+
usage: 'Known uses: Scatter plot chart',
|
|
347
|
+
team: 'Data Experiences',
|
|
348
|
+
status: 'published'
|
|
349
|
+
},
|
|
300
350
|
'cloud-offline': {
|
|
301
351
|
keywords: ['cloud-offline', 'cloudoffline', 'icon', 'icon-lab', 'core', 'cloud', 'offline', 'disconnected', 'strikethrough'],
|
|
302
352
|
componentName: 'CloudOfflineIcon',
|
|
@@ -1552,6 +1602,15 @@ const metadata = {
|
|
|
1552
1602
|
team: 'Whiteboards',
|
|
1553
1603
|
status: 'published'
|
|
1554
1604
|
},
|
|
1605
|
+
signpost: {
|
|
1606
|
+
keywords: ['signpost', 'icon', 'icon-lab', 'core', 'signpost', 'direction', 'milestone'],
|
|
1607
|
+
componentName: 'SignpostIcon',
|
|
1608
|
+
package: '@atlaskit/icon-lab/core/signpost',
|
|
1609
|
+
type: 'core',
|
|
1610
|
+
categorization: 'multi-purpose',
|
|
1611
|
+
team: 'Design System Team',
|
|
1612
|
+
status: 'published'
|
|
1613
|
+
},
|
|
1555
1614
|
'sort-options': {
|
|
1556
1615
|
keywords: ['sort-options', 'sortoptions', 'icon', 'icon-lab', 'core', 'sorting', 'ordering', 'alphabetization', 'alphabetisation', 'reordering'],
|
|
1557
1616
|
componentName: 'SortOptionsIcon',
|
|
@@ -1826,6 +1885,15 @@ const metadata = {
|
|
|
1826
1885
|
team: 'Whiteboards',
|
|
1827
1886
|
status: 'published'
|
|
1828
1887
|
},
|
|
1888
|
+
terminal: {
|
|
1889
|
+
keywords: ['terminal', 'icon', 'icon-lab', 'core', 'terminal', 'IDE', 'code editor', 'command line'],
|
|
1890
|
+
componentName: 'TerminalIcon',
|
|
1891
|
+
package: '@atlaskit/icon-lab/core/terminal',
|
|
1892
|
+
type: 'core',
|
|
1893
|
+
categorization: 'multi-purpose',
|
|
1894
|
+
team: 'Design System Team',
|
|
1895
|
+
status: 'published'
|
|
1896
|
+
},
|
|
1829
1897
|
'text-adjust-length': {
|
|
1830
1898
|
keywords: ['text-adjust-length', 'textadjustlength', 'icon', 'icon-lab', 'core', 'text length', 'change text length', 'adjust text length'],
|
|
1831
1899
|
componentName: 'TextAdjustLengthIcon',
|
|
@@ -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::
|
|
6
|
+
* @codegen <<SignedSource::60e5f4928cb817cb8ee3d5b4e978af93>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -276,6 +276,16 @@ var metadata = {
|
|
|
276
276
|
team: 'Design System Team',
|
|
277
277
|
status: 'published'
|
|
278
278
|
},
|
|
279
|
+
boolean: {
|
|
280
|
+
keywords: ['boolean', 'icon', 'icon-lab', 'core', 'true', 'false', 'binary', 'boolean', 'on', 'off'],
|
|
281
|
+
componentName: 'BooleanIcon',
|
|
282
|
+
package: '@atlaskit/icon-lab/core/boolean',
|
|
283
|
+
type: 'core',
|
|
284
|
+
categorization: 'single-purpose',
|
|
285
|
+
usage: 'Reserved for representing boolean data types and operations.',
|
|
286
|
+
team: 'Data Experiences (AVP)',
|
|
287
|
+
status: 'published'
|
|
288
|
+
},
|
|
279
289
|
'browser-extension': {
|
|
280
290
|
keywords: ['browser-extension', 'browserextension', 'icon', 'icon-lab', 'core', 'extension', 'puzzle piece', 'add on', 'jigsaw', 'chrome web store'],
|
|
281
291
|
componentName: 'BrowserExtensionIcon',
|
|
@@ -297,6 +307,46 @@ var metadata = {
|
|
|
297
307
|
team: 'Databases',
|
|
298
308
|
status: 'published'
|
|
299
309
|
},
|
|
310
|
+
'chart-area': {
|
|
311
|
+
keywords: ['chart-area', 'chartarea', 'icon', 'icon-lab', 'core', 'chart', 'area', 'analytics', 'graph'],
|
|
312
|
+
componentName: 'ChartAreaIcon',
|
|
313
|
+
package: '@atlaskit/icon-lab/core/chart-area',
|
|
314
|
+
type: 'core',
|
|
315
|
+
categorization: 'multi-purpose',
|
|
316
|
+
usage: 'Known uses: Area charts',
|
|
317
|
+
team: 'Data Experiences',
|
|
318
|
+
status: 'published'
|
|
319
|
+
},
|
|
320
|
+
'chart-bar-line': {
|
|
321
|
+
keywords: ['chart-bar-line', 'chartbarline', 'icon', 'icon-lab', 'core', 'chart', 'bar', 'line', 'trend', 'graph', 'analytics'],
|
|
322
|
+
componentName: 'ChartBarLineIcon',
|
|
323
|
+
package: '@atlaskit/icon-lab/core/chart-bar-line',
|
|
324
|
+
type: 'core',
|
|
325
|
+
categorization: 'multi-purpose',
|
|
326
|
+
usage: 'Known uses: Bar charts with trend lines',
|
|
327
|
+
team: 'Data Experiences',
|
|
328
|
+
status: 'published'
|
|
329
|
+
},
|
|
330
|
+
'chart-box-plot': {
|
|
331
|
+
keywords: ['chart-box-plot', 'chartboxplot', 'icon', 'icon-lab', 'core', 'chart', 'box plot', 'whisker', 'distribution', 'quartile', 'analytics'],
|
|
332
|
+
componentName: 'ChartBoxPlotIcon',
|
|
333
|
+
package: '@atlaskit/icon-lab/core/chart-box-plot',
|
|
334
|
+
type: 'core',
|
|
335
|
+
categorization: 'multi-purpose',
|
|
336
|
+
usage: 'Known uses: Box plot charts',
|
|
337
|
+
team: 'Data Experiences',
|
|
338
|
+
status: 'published'
|
|
339
|
+
},
|
|
340
|
+
'chart-scatter-plot': {
|
|
341
|
+
keywords: ['chart-scatter-plot', 'chartscatterplot', 'icon', 'icon-lab', 'core', 'chart', 'scatter', 'dot plot', 'distribution', 'analytics'],
|
|
342
|
+
componentName: 'ChartScatterPlotIcon',
|
|
343
|
+
package: '@atlaskit/icon-lab/core/chart-scatter-plot',
|
|
344
|
+
type: 'core',
|
|
345
|
+
categorization: 'multi-purpose',
|
|
346
|
+
usage: 'Known uses: Scatter plot chart',
|
|
347
|
+
team: 'Data Experiences',
|
|
348
|
+
status: 'published'
|
|
349
|
+
},
|
|
300
350
|
'cloud-offline': {
|
|
301
351
|
keywords: ['cloud-offline', 'cloudoffline', 'icon', 'icon-lab', 'core', 'cloud', 'offline', 'disconnected', 'strikethrough'],
|
|
302
352
|
componentName: 'CloudOfflineIcon',
|
|
@@ -1552,6 +1602,15 @@ var metadata = {
|
|
|
1552
1602
|
team: 'Whiteboards',
|
|
1553
1603
|
status: 'published'
|
|
1554
1604
|
},
|
|
1605
|
+
signpost: {
|
|
1606
|
+
keywords: ['signpost', 'icon', 'icon-lab', 'core', 'signpost', 'direction', 'milestone'],
|
|
1607
|
+
componentName: 'SignpostIcon',
|
|
1608
|
+
package: '@atlaskit/icon-lab/core/signpost',
|
|
1609
|
+
type: 'core',
|
|
1610
|
+
categorization: 'multi-purpose',
|
|
1611
|
+
team: 'Design System Team',
|
|
1612
|
+
status: 'published'
|
|
1613
|
+
},
|
|
1555
1614
|
'sort-options': {
|
|
1556
1615
|
keywords: ['sort-options', 'sortoptions', 'icon', 'icon-lab', 'core', 'sorting', 'ordering', 'alphabetization', 'alphabetisation', 'reordering'],
|
|
1557
1616
|
componentName: 'SortOptionsIcon',
|
|
@@ -1826,6 +1885,15 @@ var metadata = {
|
|
|
1826
1885
|
team: 'Whiteboards',
|
|
1827
1886
|
status: 'published'
|
|
1828
1887
|
},
|
|
1888
|
+
terminal: {
|
|
1889
|
+
keywords: ['terminal', 'icon', 'icon-lab', 'core', 'terminal', 'IDE', 'code editor', 'command line'],
|
|
1890
|
+
componentName: 'TerminalIcon',
|
|
1891
|
+
package: '@atlaskit/icon-lab/core/terminal',
|
|
1892
|
+
type: 'core',
|
|
1893
|
+
categorization: 'multi-purpose',
|
|
1894
|
+
team: 'Design System Team',
|
|
1895
|
+
status: 'published'
|
|
1896
|
+
},
|
|
1829
1897
|
'text-adjust-length': {
|
|
1830
1898
|
keywords: ['text-adjust-length', 'textadjustlength', 'icon', 'icon-lab', 'core', 'text length', 'change text length', 'adjust text length'],
|
|
1831
1899
|
componentName: 'TextAdjustLengthIcon',
|
|
@@ -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::
|
|
6
|
+
* @codegen <<SignedSource::60e5f4928cb817cb8ee3d5b4e978af93>>
|
|
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 `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::60e5f4928cb817cb8ee3d5b4e978af93>>
|
|
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": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"description": "An icon package for public icon contributions",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -25,14 +25,13 @@
|
|
|
25
25
|
"website": {
|
|
26
26
|
"name": "Icon",
|
|
27
27
|
"category": "Images and icons"
|
|
28
|
-
}
|
|
29
|
-
"runReact18": true
|
|
28
|
+
}
|
|
30
29
|
},
|
|
31
30
|
"scripts": {
|
|
32
31
|
"build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
|
|
33
32
|
},
|
|
34
33
|
"dependencies": {
|
|
35
|
-
"@atlaskit/icon": "^27.
|
|
34
|
+
"@atlaskit/icon": "^27.9.0",
|
|
36
35
|
"@babel/runtime": "^7.0.0"
|
|
37
36
|
},
|
|
38
37
|
"peerDependencies": {
|
|
@@ -41,15 +40,15 @@
|
|
|
41
40
|
"devDependencies": {
|
|
42
41
|
"@af/icon-build-process": "workspace:^",
|
|
43
42
|
"@af/visual-regression": "workspace:^",
|
|
44
|
-
"@atlaskit/button": "^23.
|
|
43
|
+
"@atlaskit/button": "^23.3.0",
|
|
45
44
|
"@atlaskit/code": "^17.2.0",
|
|
46
|
-
"@atlaskit/ds-lib": "^
|
|
45
|
+
"@atlaskit/ds-lib": "^5.0.0",
|
|
47
46
|
"@atlaskit/heading": "^5.2.0",
|
|
48
|
-
"@atlaskit/modal-dialog": "^14.
|
|
49
|
-
"@atlaskit/primitives": "^14.
|
|
47
|
+
"@atlaskit/modal-dialog": "^14.3.0",
|
|
48
|
+
"@atlaskit/primitives": "^14.11.0",
|
|
50
49
|
"@atlaskit/textfield": "^8.0.0",
|
|
51
|
-
"@atlaskit/tokens": "^5.
|
|
52
|
-
"@atlaskit/tooltip": "^20.
|
|
50
|
+
"@atlaskit/tokens": "^5.6.0",
|
|
51
|
+
"@atlaskit/tooltip": "^20.4.0",
|
|
53
52
|
"@atlassian/ssr-tests": "^0.2.0",
|
|
54
53
|
"@compiled/react": "^0.18.3",
|
|
55
54
|
"@testing-library/react": "^13.4.0",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M14.5 8a4 4 0 0 0-4-4h-5a4 4 0 1 0 0 8h5a4 4 0 0 0 4-4M16 8a5.5 5.5 0 0 1-5.5 5.5h-5a5.5 5.5 0 1 1 0-11h5A5.5 5.5 0 0 1 16 8"/><path fill="currentcolor" d="M5.5 5.25a2.75 2.75 0 1 1 0 5.5 2.75 2.75 0 0 1 0-5.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M14 3v1.5h-3L7.2 7.35a.75.75 0 0 1-.45.15H3.5V6h3l3.8-2.85a.75.75 0 0 1 .45-.15zm-.75 4a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-.75.75h-9a.75.75 0 0 1-.75-.75v-1.5a.75.75 0 0 1 .75-.75h2.79l3.82-2.39.09-.05a.75.75 0 0 1 .3-.06z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M14 2v1.5h-2.97L7.24 6.81a.75.75 0 0 1-.49.19H3.5V5.5h2.97l3.79-3.31.11-.08a.75.75 0 0 1 .38-.11zm-8.75 8h.08a.75.75 0 0 1 .67.75v1a.75.75 0 0 1-.75.75h-1a.75.75 0 0 1-.75-.75v-1a.75.75 0 0 1 .75-.75zm4-2h.08a.75.75 0 0 1 .67.75v3a.75.75 0 0 1-.75.75h-1a.75.75 0 0 1-.75-.75v-3A.75.75 0 0 1 8.25 8zm4-2a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-.75.75h-1a.75.75 0 0 1-.75-.75v-5a.75.75 0 0 1 .75-.75z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M7 2v2.5h.75a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-.75.75H7v2H5.5v-2h-.75A.75.75 0 0 1 4 9.25v-4a.75.75 0 0 1 .75-.75h.75V2zM5.5 8.5H7V6H5.5zM13 1v2h.83a.75.75 0 0 1 .67.75v4.5a.75.75 0 0 1-.75.75H13v3h-1.5V9h-.75a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 1 .75-.75h.75V1zm-1.5 6.5H13v-3h-1.5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M5 8a1 1 0 1 1 0 2 1 1 0 0 1 0-2m4 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-4a1 1 0 1 1 0 2 1 1 0 0 1 0-2m4 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0-4a1 1 0 1 1 0 2 1 1 0 0 1 0-2"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M3 4.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h8.792a.5.5 0 0 0 .323-.118L14.338 6.5l-2.223-1.882a.5.5 0 0 0-.323-.118zM7 3V0h1.5v3h3.292a2 2 0 0 1 1.292.474l2.337 1.976c.649.55.649 1.55 0 2.1l-2.337 1.976a2 2 0 0 1-1.292.474H8.5v6H7v-6H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M14.5 3a.5.5 0 0 0-.4-.49L14 2.5H2a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5zM16 13a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h12l.204.01A2 2 0 0 1 16 3z"/><path fill="currentcolor" d="m4.28 4.72 2.75 2.75a.75.75 0 0 1 0 1.06l-2.75 2.75-1.06-1.06L5.44 8 3.22 5.78zM12.5 9.5V11H8V9.5z"/></svg>
|