@atlaskit/icon-lab 5.9.0 → 5.11.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 +43 -60
- package/build/index.tsx +1 -71
- package/core/arrow-end.d.ts +13 -0
- package/core/arrow-end.js +29 -0
- package/core/arrow-start.d.ts +13 -0
- package/core/arrow-start.js +29 -0
- package/core/assets-data-manager.js +2 -2
- package/core/assets-graph.js +2 -2
- package/core/block-synced.d.ts +13 -0
- package/core/block-synced.js +29 -0
- package/core/dash-double.d.ts +13 -0
- package/core/dash-double.js +29 -0
- package/core/directory.d.ts +13 -0
- package/core/directory.js +29 -0
- package/core/skill.d.ts +13 -0
- package/core/skill.js +29 -0
- package/core/skip-unskip.d.ts +13 -0
- package/core/skip-unskip.js +29 -0
- package/core/skip.d.ts +13 -0
- package/core/skip.js +29 -0
- package/dist/cjs/metadata-core.js +84 -1
- package/dist/es2019/metadata-core.js +84 -1
- package/dist/esm/metadata-core.js +84 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +8 -8
- package/svgs/core/arrow-end.svg +1 -0
- package/svgs/core/arrow-start.svg +1 -0
- package/svgs/core/assets-data-manager.svg +1 -1
- package/svgs/core/assets-graph.svg +1 -1
- package/svgs/core/block-synced.svg +1 -0
- package/svgs/core/dash-double.svg +1 -0
- package/svgs/core/directory.svg +1 -0
- package/svgs/core/skill.svg +1 -0
- package/svgs/core/skip-unskip.svg +1 -0
- package/svgs/core/skip.svg +1 -0
package/core/assets-graph.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::a128432aba3d4deb725c4d0760aebb99>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -22,7 +22,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
22
22
|
*/
|
|
23
23
|
const AssetsGraphIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
24
|
name: "AssetsGraphIcon",
|
|
25
|
-
dangerouslySetGlyph: `<path fill="currentcolor"
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="m12.78 4.28-1.833 1.832a3.5 3.5 0 0 1 0 3.775l1.833 1.833-1.06 1.06-1.833-1.833a3.5 3.5 0 0 1-3.775 0L4.28 12.78l-1.06-1.06 1.832-1.833a3.5 3.5 0 0 1 0-3.775L3.22 4.28l1.06-1.06 1.832 1.832a3.5 3.5 0 0 1 3.775 0L11.72 3.22zM9.414 6.586a2 2 0 1 0-2.828 2.828 2 2 0 0 0 2.828-2.828"/><path fill="currentcolor" d="M11.73.73a2.5 2.5 0 1 1 3.54 3.54A2.5 2.5 0 0 1 11.73.73m2.48 1.06A1 1 0 1 0 12.8 3.2a1 1 0 0 0 1.41-1.41m-2.48 9.94a2.5 2.5 0 1 1 3.54 3.53 2.5 2.5 0 0 1-3.54-3.53m2.48 1.06a1 1 0 1 0-1.41 1.41 1 1 0 0 0 1.41-1.41M.73.73a2.5 2.5 0 1 1 3.54 3.54A2.5 2.5 0 0 1 .73.73m2.48 1.06A1 1 0 1 0 1.8 3.2a1 1 0 0 0 1.41-1.41M.73 11.73a2.5 2.5 0 1 1 3.54 3.53 2.5 2.5 0 0 1-3.54-3.53m2.48 1.06A1 1 0 1 0 1.8 14.2a1 1 0 0 0 1.41-1.41"/>`
|
|
26
26
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
27
|
}, props));
|
|
28
28
|
AssetsGraphIcon.displayName = 'AssetsGraphIcon';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::8c9468024e2c9734cc84adf4f1f2bc21>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const BlockSyncedIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default BlockSyncedIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::527f33e0573e8027a3e6df8a9b12f86d>>
|
|
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: "BlockSynced".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for syncing content blocks in Editor experiences.
|
|
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 BlockSyncedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "BlockSyncedIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 3a.5.5 0 0 0-.5-.5H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h3V15H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v2h-1.5z"/><path fill="currentcolor" d="M14.9 8.71a3.75 3.75 0 0 1 0 5.303l-.024.026.439.146a.75.75 0 0 1-.13 1.454l-2.476.354a.75.75 0 0 1-.848-.849l.353-2.474.029-.125a.75.75 0 0 1 1.425-.006l.147.44.025-.026a2.25 2.25 0 0 0 0-3.183l-.707-.707 1.06-1.06zm-3.818-1.98a.75.75 0 0 1 .85.849l-.354 2.475a.75.75 0 0 1-1.454.13l-.147-.44-.025.026a2.25 2.25 0 0 0 0 3.183l.707.707-1.06 1.06-.708-.707a3.75 3.75 0 0 1 0-5.303l.026-.026-.44-.146a.75.75 0 0 1 .13-1.454z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
BlockSyncedIcon.displayName = 'BlockSyncedIcon';
|
|
29
|
+
var _default = exports.default = BlockSyncedIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a00908b3ae7a366af2f0787bbcfc8d6f>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const DashDoubleIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default DashDoubleIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e68b4626973b4a3a547cddd5ff3f0264>>
|
|
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: "DashDouble".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Known uses: representing no change or keeping a value as-is.
|
|
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 DashDoubleIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "DashDoubleIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M7 7.25v1.5H1v-1.5zm8 0v1.5H9v-1.5z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
DashDoubleIcon.displayName = 'DashDoubleIcon';
|
|
29
|
+
var _default = exports.default = DashDoubleIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::00cd18dd4d13fbdcf4c92b26e9387924>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const DirectoryIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default DirectoryIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::7d11389b750682e0de90d91a7c338943>>
|
|
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: "Directory".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for directory experiences.
|
|
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 DirectoryIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "DirectoryIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M13 3a.5.5 0 0 0-.5-.5h-9A.5.5 0 0 0 3 3v10a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5zm1.5 10a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2v-1.5H0V10h1.5V6H0V4.5h1.5V3a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2z"/><path fill="currentcolor" d="M8.75 9a2 2 0 0 1 2 2v.25A.75.75 0 0 1 10 12H6a.75.75 0 0 1-.75-.75V11a2 2 0 0 1 2-2zM8 4.5A1.75 1.75 0 1 1 8 8a1.75 1.75 0 0 1 0-3.5"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
DirectoryIcon.displayName = 'DirectoryIcon';
|
|
29
|
+
var _default = exports.default = DirectoryIcon;
|
package/core/skill.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::99da70c74a903942062e3156534e7934>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SkillIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SkillIcon;
|
package/core/skill.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a094e46648e7c203d266148a7c03a503>>
|
|
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: "Skill".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for skill functionality. Skills are a combination of tools and a prompt to allow an agent to perform a multistep process.
|
|
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 SkillIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "SkillIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 3a.5.5 0 0 0-.5-.5H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5zM15 13a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"/><path fill="currentcolor" d="m11.11 4.934-5 7-1.22-.871 5-7z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
SkillIcon.displayName = 'SkillIcon';
|
|
29
|
+
var _default = exports.default = SkillIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e301ec8e9842d95c79bb19827747d4c5>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SkipUnskipIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SkipUnskipIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::56c57f944fa7bbe4c1f7a5937e0cdaee>>
|
|
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: "SkipUnskip".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for reinstating a previously skipped step.
|
|
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 SkipUnskipIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "SkipUnskipIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M7.34 10.53A.5.5 0 0 0 7 11v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .47-.34l1.09 1.09c-.37.46-.93.76-1.56.76h-1a2 2 0 0 1-2-2v-1c0-.63.3-1.2.75-1.56zM2.96 6.14a6.47 6.47 0 0 0-1.46 4.11V11H0v-.75c0-1.97.71-3.78 1.9-5.17zM8 2.25a7.99 7.99 0 0 1 6.5 3.34V2.5H16v4.75a.75.75 0 0 1-.75.75h-4.07l-.68-.68V6.5h2.81a6.49 6.49 0 0 0-6.3-2.67L5.75 2.57A8 8 0 0 1 8 2.25m7.53 12.22-1.06 1.06-14-14L1.53.47z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
SkipUnskipIcon.displayName = 'SkipUnskipIcon';
|
|
29
|
+
var _default = exports.default = SkipUnskipIcon;
|
package/core/skip.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e90511a441553e52d11a4a7ef4ec1b3e>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SkipIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SkipIcon;
|
package/core/skip.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::5e7b8c9124d6377af5f062e3277b848f>>
|
|
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: "Skip".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for skipping steps.
|
|
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 SkipIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "SkipIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M9 11a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1A.5.5 0 0 0 9 12zm1.5 1a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-1a2 2 0 0 1 2-2h1a2 2 0 0 1 2 2z"/><path fill="currentcolor" d="M0 10.25a8 8 0 0 1 14.5-4.663V2.5H16v4.75a.75.75 0 0 1-.75.75H10.5V6.5h2.809A6.5 6.5 0 0 0 1.5 10.25V11H0z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
SkipIcon.displayName = 'SkipIcon';
|
|
29
|
+
var _default = exports.default = SkipIcon;
|
|
@@ -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::c9162adee99a4c616f51ac1bfb9ca964>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -252,6 +252,28 @@ var metadata = {
|
|
|
252
252
|
team: 'Design System Team',
|
|
253
253
|
status: 'published'
|
|
254
254
|
},
|
|
255
|
+
'arrow-end': {
|
|
256
|
+
keywords: ['arrow-end', 'arrowend', 'icon', 'icon-lab', 'move to end', 'move to back', 'move to last position', 'move to far right'],
|
|
257
|
+
componentName: 'ArrowEndIcon',
|
|
258
|
+
package: '@atlaskit/icon-lab/core/arrow-end',
|
|
259
|
+
type: 'core',
|
|
260
|
+
categorization: 'multi-purpose',
|
|
261
|
+
usage: 'Used for moving an object to the back or ending of a container, moving a column to last position',
|
|
262
|
+
team: 'Strategy Collection',
|
|
263
|
+
status: 'published',
|
|
264
|
+
slackChannel: '#sc-design'
|
|
265
|
+
},
|
|
266
|
+
'arrow-start': {
|
|
267
|
+
keywords: ['arrow-start', 'arrowstart', 'icon', 'icon-lab', 'move to front', 'move to start', 'move to far left', 'move to first position'],
|
|
268
|
+
componentName: 'ArrowStartIcon',
|
|
269
|
+
package: '@atlaskit/icon-lab/core/arrow-start',
|
|
270
|
+
type: 'core',
|
|
271
|
+
categorization: 'multi-purpose',
|
|
272
|
+
usage: 'Used for moving an object to the front or beginning of a container, moving a column to first position',
|
|
273
|
+
team: 'Strategy Collection',
|
|
274
|
+
status: 'published',
|
|
275
|
+
slackChannel: '#sc-design'
|
|
276
|
+
},
|
|
255
277
|
'arrows-diagonal-up-right-down-left': {
|
|
256
278
|
keywords: ['arrows-diagonal-up-right-down-left', 'arrowsdiagonaluprightdownleft', 'icon', 'icon-lab', 'Arrows', 'Switch', 'Space', 'Swap', 'crossflow'],
|
|
257
279
|
componentName: 'ArrowsDiagonalUpRightDownLeftIcon',
|
|
@@ -352,6 +374,16 @@ var metadata = {
|
|
|
352
374
|
team: 'JSM',
|
|
353
375
|
status: 'published'
|
|
354
376
|
},
|
|
377
|
+
'block-synced': {
|
|
378
|
+
keywords: ['block-synced', 'blocksynced', 'icon', 'icon-lab', 'sync', 'synced', 'content block', 'snippet'],
|
|
379
|
+
componentName: 'BlockSyncedIcon',
|
|
380
|
+
package: '@atlaskit/icon-lab/core/block-synced',
|
|
381
|
+
type: 'core',
|
|
382
|
+
categorization: 'single-purpose',
|
|
383
|
+
usage: 'Reserved for syncing content blocks in Editor experiences.',
|
|
384
|
+
team: 'Editor Platform',
|
|
385
|
+
status: 'published'
|
|
386
|
+
},
|
|
355
387
|
bluetooth: {
|
|
356
388
|
keywords: ['bluetooth', 'icon', 'icon-lab', 'bluetooth', 'connectivity', 'bt'],
|
|
357
389
|
componentName: 'BluetoothIcon',
|
|
@@ -586,6 +618,17 @@ var metadata = {
|
|
|
586
618
|
team: 'Whiteboards',
|
|
587
619
|
status: 'published'
|
|
588
620
|
},
|
|
621
|
+
'dash-double': {
|
|
622
|
+
keywords: ['dash-double', 'dashdouble', 'icon', 'icon-lab', 'double dash', 'no change', 'unchanged value', 'same value'],
|
|
623
|
+
componentName: 'DashDoubleIcon',
|
|
624
|
+
package: '@atlaskit/icon-lab/core/dash-double',
|
|
625
|
+
type: 'core',
|
|
626
|
+
categorization: 'multi-purpose',
|
|
627
|
+
usage: 'Known uses: representing no change or keeping a value as-is.',
|
|
628
|
+
team: 'Strategy Collection',
|
|
629
|
+
status: 'published',
|
|
630
|
+
slackChannel: '#sc-design'
|
|
631
|
+
},
|
|
589
632
|
'data-bucket': {
|
|
590
633
|
keywords: ['data-bucket', 'databucket', 'icon', 'icon-lab', 'data bucketing', 'segmentation'],
|
|
591
634
|
componentName: 'DataBucketIcon',
|
|
@@ -978,6 +1021,16 @@ var metadata = {
|
|
|
978
1021
|
team: 'Whiteboards',
|
|
979
1022
|
status: 'published'
|
|
980
1023
|
},
|
|
1024
|
+
directory: {
|
|
1025
|
+
keywords: ['directory', 'icon', 'icon-lab', 'directory', 'address book'],
|
|
1026
|
+
componentName: 'DirectoryIcon',
|
|
1027
|
+
package: '@atlaskit/icon-lab/core/directory',
|
|
1028
|
+
type: 'core',
|
|
1029
|
+
categorization: 'single-purpose',
|
|
1030
|
+
usage: 'Reserved for directory experiences.',
|
|
1031
|
+
team: 'Admin Hub',
|
|
1032
|
+
status: 'published'
|
|
1033
|
+
},
|
|
981
1034
|
'distribute-spacing-horizontal': {
|
|
982
1035
|
keywords: ['distribute-spacing-horizontal', 'distributespacinghorizontal', 'icon', 'icon-lab', 'Distribute', 'Horizontal spacing', 'Tidy up', 'Clean up'],
|
|
983
1036
|
componentName: 'DistributeSpacingHorizontalIcon',
|
|
@@ -1909,6 +1962,36 @@ var metadata = {
|
|
|
1909
1962
|
team: 'Design System Team',
|
|
1910
1963
|
status: 'published'
|
|
1911
1964
|
},
|
|
1965
|
+
skill: {
|
|
1966
|
+
keywords: ['skill', 'icon', 'icon-lab', 'skill', 'skills', 'agent', 'agentic', 'tools', 'tool'],
|
|
1967
|
+
componentName: 'SkillIcon',
|
|
1968
|
+
package: '@atlaskit/icon-lab/core/skill',
|
|
1969
|
+
type: 'core',
|
|
1970
|
+
categorization: 'single-purpose',
|
|
1971
|
+
usage: 'Reserved for skill functionality. Skills are a combination of tools and a prompt to allow an agent to perform a multistep process.',
|
|
1972
|
+
team: 'Studio',
|
|
1973
|
+
status: 'published'
|
|
1974
|
+
},
|
|
1975
|
+
skip: {
|
|
1976
|
+
keywords: ['skip', 'icon', 'icon-lab', 'skip', 'miss'],
|
|
1977
|
+
componentName: 'SkipIcon',
|
|
1978
|
+
package: '@atlaskit/icon-lab/core/skip',
|
|
1979
|
+
type: 'core',
|
|
1980
|
+
categorization: 'single-purpose',
|
|
1981
|
+
usage: 'Reserved for skipping steps.',
|
|
1982
|
+
team: 'Automation',
|
|
1983
|
+
status: 'published'
|
|
1984
|
+
},
|
|
1985
|
+
'skip-unskip': {
|
|
1986
|
+
keywords: ['skip-unskip', 'skipunskip', 'icon', 'icon-lab', 'unskip', 'reinstate step'],
|
|
1987
|
+
componentName: 'SkipUnskipIcon',
|
|
1988
|
+
package: '@atlaskit/icon-lab/core/skip-unskip',
|
|
1989
|
+
type: 'core',
|
|
1990
|
+
categorization: 'single-purpose',
|
|
1991
|
+
usage: 'Reserved for reinstating a previously skipped step.',
|
|
1992
|
+
team: 'Automation',
|
|
1993
|
+
status: 'published'
|
|
1994
|
+
},
|
|
1912
1995
|
'sort-options': {
|
|
1913
1996
|
keywords: ['sort-options', 'sortoptions', 'icon', 'icon-lab', 'sorting', 'ordering', 'alphabetization', 'alphabetisation', 'reordering'],
|
|
1914
1997
|
componentName: 'SortOptionsIcon',
|
|
@@ -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::c9162adee99a4c616f51ac1bfb9ca964>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -246,6 +246,28 @@ const metadata = {
|
|
|
246
246
|
team: 'Design System Team',
|
|
247
247
|
status: 'published'
|
|
248
248
|
},
|
|
249
|
+
'arrow-end': {
|
|
250
|
+
keywords: ['arrow-end', 'arrowend', 'icon', 'icon-lab', 'move to end', 'move to back', 'move to last position', 'move to far right'],
|
|
251
|
+
componentName: 'ArrowEndIcon',
|
|
252
|
+
package: '@atlaskit/icon-lab/core/arrow-end',
|
|
253
|
+
type: 'core',
|
|
254
|
+
categorization: 'multi-purpose',
|
|
255
|
+
usage: 'Used for moving an object to the back or ending of a container, moving a column to last position',
|
|
256
|
+
team: 'Strategy Collection',
|
|
257
|
+
status: 'published',
|
|
258
|
+
slackChannel: '#sc-design'
|
|
259
|
+
},
|
|
260
|
+
'arrow-start': {
|
|
261
|
+
keywords: ['arrow-start', 'arrowstart', 'icon', 'icon-lab', 'move to front', 'move to start', 'move to far left', 'move to first position'],
|
|
262
|
+
componentName: 'ArrowStartIcon',
|
|
263
|
+
package: '@atlaskit/icon-lab/core/arrow-start',
|
|
264
|
+
type: 'core',
|
|
265
|
+
categorization: 'multi-purpose',
|
|
266
|
+
usage: 'Used for moving an object to the front or beginning of a container, moving a column to first position',
|
|
267
|
+
team: 'Strategy Collection',
|
|
268
|
+
status: 'published',
|
|
269
|
+
slackChannel: '#sc-design'
|
|
270
|
+
},
|
|
249
271
|
'arrows-diagonal-up-right-down-left': {
|
|
250
272
|
keywords: ['arrows-diagonal-up-right-down-left', 'arrowsdiagonaluprightdownleft', 'icon', 'icon-lab', 'Arrows', 'Switch', 'Space', 'Swap', 'crossflow'],
|
|
251
273
|
componentName: 'ArrowsDiagonalUpRightDownLeftIcon',
|
|
@@ -346,6 +368,16 @@ const metadata = {
|
|
|
346
368
|
team: 'JSM',
|
|
347
369
|
status: 'published'
|
|
348
370
|
},
|
|
371
|
+
'block-synced': {
|
|
372
|
+
keywords: ['block-synced', 'blocksynced', 'icon', 'icon-lab', 'sync', 'synced', 'content block', 'snippet'],
|
|
373
|
+
componentName: 'BlockSyncedIcon',
|
|
374
|
+
package: '@atlaskit/icon-lab/core/block-synced',
|
|
375
|
+
type: 'core',
|
|
376
|
+
categorization: 'single-purpose',
|
|
377
|
+
usage: 'Reserved for syncing content blocks in Editor experiences.',
|
|
378
|
+
team: 'Editor Platform',
|
|
379
|
+
status: 'published'
|
|
380
|
+
},
|
|
349
381
|
bluetooth: {
|
|
350
382
|
keywords: ['bluetooth', 'icon', 'icon-lab', 'bluetooth', 'connectivity', 'bt'],
|
|
351
383
|
componentName: 'BluetoothIcon',
|
|
@@ -580,6 +612,17 @@ const metadata = {
|
|
|
580
612
|
team: 'Whiteboards',
|
|
581
613
|
status: 'published'
|
|
582
614
|
},
|
|
615
|
+
'dash-double': {
|
|
616
|
+
keywords: ['dash-double', 'dashdouble', 'icon', 'icon-lab', 'double dash', 'no change', 'unchanged value', 'same value'],
|
|
617
|
+
componentName: 'DashDoubleIcon',
|
|
618
|
+
package: '@atlaskit/icon-lab/core/dash-double',
|
|
619
|
+
type: 'core',
|
|
620
|
+
categorization: 'multi-purpose',
|
|
621
|
+
usage: 'Known uses: representing no change or keeping a value as-is.',
|
|
622
|
+
team: 'Strategy Collection',
|
|
623
|
+
status: 'published',
|
|
624
|
+
slackChannel: '#sc-design'
|
|
625
|
+
},
|
|
583
626
|
'data-bucket': {
|
|
584
627
|
keywords: ['data-bucket', 'databucket', 'icon', 'icon-lab', 'data bucketing', 'segmentation'],
|
|
585
628
|
componentName: 'DataBucketIcon',
|
|
@@ -972,6 +1015,16 @@ const metadata = {
|
|
|
972
1015
|
team: 'Whiteboards',
|
|
973
1016
|
status: 'published'
|
|
974
1017
|
},
|
|
1018
|
+
directory: {
|
|
1019
|
+
keywords: ['directory', 'icon', 'icon-lab', 'directory', 'address book'],
|
|
1020
|
+
componentName: 'DirectoryIcon',
|
|
1021
|
+
package: '@atlaskit/icon-lab/core/directory',
|
|
1022
|
+
type: 'core',
|
|
1023
|
+
categorization: 'single-purpose',
|
|
1024
|
+
usage: 'Reserved for directory experiences.',
|
|
1025
|
+
team: 'Admin Hub',
|
|
1026
|
+
status: 'published'
|
|
1027
|
+
},
|
|
975
1028
|
'distribute-spacing-horizontal': {
|
|
976
1029
|
keywords: ['distribute-spacing-horizontal', 'distributespacinghorizontal', 'icon', 'icon-lab', 'Distribute', 'Horizontal spacing', 'Tidy up', 'Clean up'],
|
|
977
1030
|
componentName: 'DistributeSpacingHorizontalIcon',
|
|
@@ -1903,6 +1956,36 @@ const metadata = {
|
|
|
1903
1956
|
team: 'Design System Team',
|
|
1904
1957
|
status: 'published'
|
|
1905
1958
|
},
|
|
1959
|
+
skill: {
|
|
1960
|
+
keywords: ['skill', 'icon', 'icon-lab', 'skill', 'skills', 'agent', 'agentic', 'tools', 'tool'],
|
|
1961
|
+
componentName: 'SkillIcon',
|
|
1962
|
+
package: '@atlaskit/icon-lab/core/skill',
|
|
1963
|
+
type: 'core',
|
|
1964
|
+
categorization: 'single-purpose',
|
|
1965
|
+
usage: 'Reserved for skill functionality. Skills are a combination of tools and a prompt to allow an agent to perform a multistep process.',
|
|
1966
|
+
team: 'Studio',
|
|
1967
|
+
status: 'published'
|
|
1968
|
+
},
|
|
1969
|
+
skip: {
|
|
1970
|
+
keywords: ['skip', 'icon', 'icon-lab', 'skip', 'miss'],
|
|
1971
|
+
componentName: 'SkipIcon',
|
|
1972
|
+
package: '@atlaskit/icon-lab/core/skip',
|
|
1973
|
+
type: 'core',
|
|
1974
|
+
categorization: 'single-purpose',
|
|
1975
|
+
usage: 'Reserved for skipping steps.',
|
|
1976
|
+
team: 'Automation',
|
|
1977
|
+
status: 'published'
|
|
1978
|
+
},
|
|
1979
|
+
'skip-unskip': {
|
|
1980
|
+
keywords: ['skip-unskip', 'skipunskip', 'icon', 'icon-lab', 'unskip', 'reinstate step'],
|
|
1981
|
+
componentName: 'SkipUnskipIcon',
|
|
1982
|
+
package: '@atlaskit/icon-lab/core/skip-unskip',
|
|
1983
|
+
type: 'core',
|
|
1984
|
+
categorization: 'single-purpose',
|
|
1985
|
+
usage: 'Reserved for reinstating a previously skipped step.',
|
|
1986
|
+
team: 'Automation',
|
|
1987
|
+
status: 'published'
|
|
1988
|
+
},
|
|
1906
1989
|
'sort-options': {
|
|
1907
1990
|
keywords: ['sort-options', 'sortoptions', 'icon', 'icon-lab', 'sorting', 'ordering', 'alphabetization', 'alphabetisation', 'reordering'],
|
|
1908
1991
|
componentName: 'SortOptionsIcon',
|