@atlaskit/icon-lab 3.2.0 → 3.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 +17 -0
- package/core/continue-when.d.ts +13 -0
- package/core/continue-when.js +31 -0
- package/core/split-parallel.d.ts +13 -0
- package/core/split-parallel.js +31 -0
- package/core/switch-case.d.ts +13 -0
- package/core/switch-case.js +31 -0
- package/core/workflow-controls.d.ts +13 -0
- package/core/workflow-controls.js +31 -0
- package/dist/cjs/metadata-core.js +41 -1
- package/dist/es2019/metadata-core.js +41 -1
- package/dist/esm/metadata-core.js +41 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +1 -1
- package/svgs/core/continue-when.svg +1 -0
- package/svgs/core/split-parallel.svg +1 -0
- package/svgs/core/switch-case.svg +1 -0
- package/svgs/core/workflow-controls.svg +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/icon-lab
|
|
2
2
|
|
|
3
|
+
## 3.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#120135](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/120135)
|
|
8
|
+
[`be3eb3ea91920`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/be3eb3ea91920) -
|
|
9
|
+
This release adds icons in `@atlaskit/icon-lab`.
|
|
10
|
+
|
|
11
|
+
### Added:
|
|
12
|
+
|
|
13
|
+
**`@atlaskit/icon-lab/core`**
|
|
14
|
+
|
|
15
|
+
- `continue-when`
|
|
16
|
+
- `split-parallel`
|
|
17
|
+
- `switch-case`
|
|
18
|
+
- `workflow-controls`
|
|
19
|
+
|
|
3
20
|
## 3.2.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a9d9f763c2ee7c95f9a17b4236d2142a>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ContinueWhenIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ContinueWhenIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::0d120a37e1c7738b3e51d5035c85b394>>
|
|
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
|
+
* ⚠️ 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: "ContinueWhen".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for continue when delay in automation.
|
|
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 ContinueWhenIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M9.75 5v6m-3.5-6v6m9-3A7.25 7.25 0 1 1 .75 8a7.25 7.25 0 0 1 14.5 0Z"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
ContinueWhenIcon.displayName = 'ContinueWhenIcon';
|
|
31
|
+
var _default = exports.default = ContinueWhenIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e97dbe824a861f3f4e70fddfa83f1b15>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SplitParallelIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SplitParallelIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::22523fa7e4a5d7fd950381df34cbc34e>>
|
|
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
|
+
* ⚠️ 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: "SplitParallel".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for split parallel branches in Automation
|
|
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 SplitParallelIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M4.25 4.5v7M6.5 7.25h4c.69 0 1.25.56 1.25 1.25v2.375M4.25 4.75a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm7.5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
SplitParallelIcon.displayName = 'SplitParallelIcon';
|
|
31
|
+
var _default = exports.default = SplitParallelIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::2ada7965fa2784c669df498a14aa5bb3>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SwitchCaseIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SwitchCaseIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::f782e2eafc43306f113dc8001b946be4>>
|
|
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
|
+
* ⚠️ 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: "SwitchCase".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for switch case conditions in automation
|
|
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 SwitchCaseIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 4.25V7.5m-6.25 4.25 2.5 2.5 2.5-2.5m2.5 0 2.5 2.5 2.5-2.5m-10 1.625V9.25C4.25 8.56 4.81 8 5.5 8h5c.69 0 1.25.56 1.25 1.25v4.125M8 4.75a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
SwitchCaseIcon.displayName = 'SwitchCaseIcon';
|
|
31
|
+
var _default = exports.default = SwitchCaseIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::c22909b855cda0a9bb2d10d26678d0ef>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const WorkflowControlsIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default WorkflowControlsIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ea83c00121b7ad44d4ac1acc954eda04>>
|
|
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
|
+
* ⚠️ 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: "WorkflowControls".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for workflow controls in automation
|
|
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 WorkflowControlsIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M6.25 9.75H7A.75.75 0 0 0 6.25 9zm-4.5 0V9a.75.75 0 0 0-.75.75zm0 4.5H1c0 .414.336.75.75.75zm4.5 0V15a.75.75 0 0 0 .75-.75zM12 6.907l-.53.53.53.53.53-.53zm2.828-2.829.53.53a.75.75 0 0 0 0-1.06zM12 1.25l.53-.53a.75.75 0 0 0-1.06 0zM9.172 4.078l-.53-.53a.75.75 0 0 0 0 1.06zM4 1a3 3 0 0 0-3 3h1.5A1.5 1.5 0 0 1 4 2.5zm3 3a3 3 0 0 0-3-3v1.5A1.5 1.5 0 0 1 5.5 4zM4 7a3 3 0 0 0 3-3H5.5A1.5 1.5 0 0 1 4 5.5zm0-1.5A1.5 1.5 0 0 1 2.5 4H1a3 3 0 0 0 3 3zm8 9.5a3 3 0 0 0 3-3h-1.5a1.5 1.5 0 0 1-1.5 1.5zm-3-3a3 3 0 0 0 3 3v-1.5a1.5 1.5 0 0 1-1.5-1.5zm3-3a3 3 0 0 0-3 3h1.5a1.5 1.5 0 0 1 1.5-1.5zm0 1.5a1.5 1.5 0 0 1 1.5 1.5H15a3 3 0 0 0-3-3zM6.25 9h-4.5v1.5h4.5zM1 9.75v4.5h1.5v-4.5zM1.75 15h4.5v-1.5h-4.5zM7 14.25v-4.5H5.5v4.5zm5.53-6.813 2.83-2.827-1.06-1.06-2.83 2.828zm2.829-3.889L12.53.72l-1.06 1.06 2.828 2.829zM11.469.72 8.642 3.548l1.06 1.06 2.83-2.828zM8.642 4.609l2.829 2.828 1.06-1.06-2.828-2.829zM3.25 6v3.75h1.5V6zm8 .75V9.5h1.5V6.75zm-5-2h3v-1.5h-3z"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
WorkflowControlsIcon.displayName = 'WorkflowControlsIcon';
|
|
31
|
+
var _default = exports.default = WorkflowControlsIcon;
|
|
@@ -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::a3e465431b2746a63afc0d110a78358b>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -149,6 +149,16 @@ var metadata = {
|
|
|
149
149
|
usage: 'Multi purpose',
|
|
150
150
|
team: 'Design System Team'
|
|
151
151
|
},
|
|
152
|
+
'continue-when': {
|
|
153
|
+
keywords: ['continue-when', 'continuewhen', 'icon', 'icon-lab', 'core'],
|
|
154
|
+
componentName: 'ContinueWhenIcon',
|
|
155
|
+
package: '@atlaskit/icon-lab/core/continue-when',
|
|
156
|
+
type: 'core',
|
|
157
|
+
categorization: 'single-purpose',
|
|
158
|
+
usage: 'Reserved for continue when delay in automation.',
|
|
159
|
+
team: 'Automation',
|
|
160
|
+
slackChannel: '#help-automation-design'
|
|
161
|
+
},
|
|
152
162
|
'cross-octagon': {
|
|
153
163
|
keywords: ['cross-octagon', 'crossoctagon', 'icon', 'icon-lab', 'core', 'cross', 'stop', 'block', 'octagon'],
|
|
154
164
|
componentName: 'CrossOctagonIcon',
|
|
@@ -481,6 +491,16 @@ var metadata = {
|
|
|
481
491
|
usage: 'Multi purpose',
|
|
482
492
|
team: 'Design System Team'
|
|
483
493
|
},
|
|
494
|
+
'split-parallel': {
|
|
495
|
+
keywords: ['split-parallel', 'splitparallel', 'icon', 'icon-lab', 'core', 'router', 'branches'],
|
|
496
|
+
componentName: 'SplitParallelIcon',
|
|
497
|
+
package: '@atlaskit/icon-lab/core/split-parallel',
|
|
498
|
+
type: 'core',
|
|
499
|
+
categorization: 'single-purpose',
|
|
500
|
+
usage: 'Reserved for split parallel branches in Automation',
|
|
501
|
+
team: 'Automation',
|
|
502
|
+
slackChannel: '#help-automation-design'
|
|
503
|
+
},
|
|
484
504
|
stamp: {
|
|
485
505
|
keywords: ['stamp', 'icon', 'icon-lab', 'core', 'stamp', 'rubber stamp', 'handstamp'],
|
|
486
506
|
componentName: 'StampIcon',
|
|
@@ -580,6 +600,16 @@ var metadata = {
|
|
|
580
600
|
usage: 'Swapping between Jira tickets in Whiteboard smart section',
|
|
581
601
|
team: 'Whiteboards'
|
|
582
602
|
},
|
|
603
|
+
'switch-case': {
|
|
604
|
+
keywords: ['switch-case', 'switchcase', 'icon', 'icon-lab', 'core', 'conditions', 'if', 'else', 'else if'],
|
|
605
|
+
componentName: 'SwitchCaseIcon',
|
|
606
|
+
package: '@atlaskit/icon-lab/core/switch-case',
|
|
607
|
+
type: 'core',
|
|
608
|
+
categorization: 'single-purpose',
|
|
609
|
+
usage: 'Reserved for switch case conditions in automation',
|
|
610
|
+
team: 'Automations',
|
|
611
|
+
slackChannel: '#help-automation-design'
|
|
612
|
+
},
|
|
583
613
|
sync: {
|
|
584
614
|
keywords: ['sync', 'icon', 'icon-lab', 'core', 'sync', 'synch', 'synchronise', 'synchronize', 'saving', 'arrows'],
|
|
585
615
|
componentName: 'SyncIcon',
|
|
@@ -672,6 +702,16 @@ var metadata = {
|
|
|
672
702
|
team: 'Insights',
|
|
673
703
|
slackChannel: '#cc-insights-and-reporting'
|
|
674
704
|
},
|
|
705
|
+
'workflow-controls': {
|
|
706
|
+
keywords: ['workflow-controls', 'workflowcontrols', 'icon', 'icon-lab', 'core', 'orchestration'],
|
|
707
|
+
componentName: 'WorkflowControlsIcon',
|
|
708
|
+
package: '@atlaskit/icon-lab/core/workflow-controls',
|
|
709
|
+
type: 'core',
|
|
710
|
+
categorization: 'single-purpose',
|
|
711
|
+
usage: 'Reserved for workflow controls in automation',
|
|
712
|
+
team: 'Automation',
|
|
713
|
+
slackChannel: '#help-automation-design'
|
|
714
|
+
},
|
|
675
715
|
wrench: {
|
|
676
716
|
keywords: ['wrench', 'icon', 'icon-lab', 'core', 'wrench', 'spanner', 'tool'],
|
|
677
717
|
componentName: 'WrenchIcon',
|
|
@@ -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::a3e465431b2746a63afc0d110a78358b>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -143,6 +143,16 @@ const metadata = {
|
|
|
143
143
|
usage: 'Multi purpose',
|
|
144
144
|
team: 'Design System Team'
|
|
145
145
|
},
|
|
146
|
+
'continue-when': {
|
|
147
|
+
keywords: ['continue-when', 'continuewhen', 'icon', 'icon-lab', 'core'],
|
|
148
|
+
componentName: 'ContinueWhenIcon',
|
|
149
|
+
package: '@atlaskit/icon-lab/core/continue-when',
|
|
150
|
+
type: 'core',
|
|
151
|
+
categorization: 'single-purpose',
|
|
152
|
+
usage: 'Reserved for continue when delay in automation.',
|
|
153
|
+
team: 'Automation',
|
|
154
|
+
slackChannel: '#help-automation-design'
|
|
155
|
+
},
|
|
146
156
|
'cross-octagon': {
|
|
147
157
|
keywords: ['cross-octagon', 'crossoctagon', 'icon', 'icon-lab', 'core', 'cross', 'stop', 'block', 'octagon'],
|
|
148
158
|
componentName: 'CrossOctagonIcon',
|
|
@@ -475,6 +485,16 @@ const metadata = {
|
|
|
475
485
|
usage: 'Multi purpose',
|
|
476
486
|
team: 'Design System Team'
|
|
477
487
|
},
|
|
488
|
+
'split-parallel': {
|
|
489
|
+
keywords: ['split-parallel', 'splitparallel', 'icon', 'icon-lab', 'core', 'router', 'branches'],
|
|
490
|
+
componentName: 'SplitParallelIcon',
|
|
491
|
+
package: '@atlaskit/icon-lab/core/split-parallel',
|
|
492
|
+
type: 'core',
|
|
493
|
+
categorization: 'single-purpose',
|
|
494
|
+
usage: 'Reserved for split parallel branches in Automation',
|
|
495
|
+
team: 'Automation',
|
|
496
|
+
slackChannel: '#help-automation-design'
|
|
497
|
+
},
|
|
478
498
|
stamp: {
|
|
479
499
|
keywords: ['stamp', 'icon', 'icon-lab', 'core', 'stamp', 'rubber stamp', 'handstamp'],
|
|
480
500
|
componentName: 'StampIcon',
|
|
@@ -574,6 +594,16 @@ const metadata = {
|
|
|
574
594
|
usage: 'Swapping between Jira tickets in Whiteboard smart section',
|
|
575
595
|
team: 'Whiteboards'
|
|
576
596
|
},
|
|
597
|
+
'switch-case': {
|
|
598
|
+
keywords: ['switch-case', 'switchcase', 'icon', 'icon-lab', 'core', 'conditions', 'if', 'else', 'else if'],
|
|
599
|
+
componentName: 'SwitchCaseIcon',
|
|
600
|
+
package: '@atlaskit/icon-lab/core/switch-case',
|
|
601
|
+
type: 'core',
|
|
602
|
+
categorization: 'single-purpose',
|
|
603
|
+
usage: 'Reserved for switch case conditions in automation',
|
|
604
|
+
team: 'Automations',
|
|
605
|
+
slackChannel: '#help-automation-design'
|
|
606
|
+
},
|
|
577
607
|
sync: {
|
|
578
608
|
keywords: ['sync', 'icon', 'icon-lab', 'core', 'sync', 'synch', 'synchronise', 'synchronize', 'saving', 'arrows'],
|
|
579
609
|
componentName: 'SyncIcon',
|
|
@@ -666,6 +696,16 @@ const metadata = {
|
|
|
666
696
|
team: 'Insights',
|
|
667
697
|
slackChannel: '#cc-insights-and-reporting'
|
|
668
698
|
},
|
|
699
|
+
'workflow-controls': {
|
|
700
|
+
keywords: ['workflow-controls', 'workflowcontrols', 'icon', 'icon-lab', 'core', 'orchestration'],
|
|
701
|
+
componentName: 'WorkflowControlsIcon',
|
|
702
|
+
package: '@atlaskit/icon-lab/core/workflow-controls',
|
|
703
|
+
type: 'core',
|
|
704
|
+
categorization: 'single-purpose',
|
|
705
|
+
usage: 'Reserved for workflow controls in automation',
|
|
706
|
+
team: 'Automation',
|
|
707
|
+
slackChannel: '#help-automation-design'
|
|
708
|
+
},
|
|
669
709
|
wrench: {
|
|
670
710
|
keywords: ['wrench', 'icon', 'icon-lab', 'core', 'wrench', 'spanner', 'tool'],
|
|
671
711
|
componentName: 'WrenchIcon',
|
|
@@ -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::a3e465431b2746a63afc0d110a78358b>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -143,6 +143,16 @@ var metadata = {
|
|
|
143
143
|
usage: 'Multi purpose',
|
|
144
144
|
team: 'Design System Team'
|
|
145
145
|
},
|
|
146
|
+
'continue-when': {
|
|
147
|
+
keywords: ['continue-when', 'continuewhen', 'icon', 'icon-lab', 'core'],
|
|
148
|
+
componentName: 'ContinueWhenIcon',
|
|
149
|
+
package: '@atlaskit/icon-lab/core/continue-when',
|
|
150
|
+
type: 'core',
|
|
151
|
+
categorization: 'single-purpose',
|
|
152
|
+
usage: 'Reserved for continue when delay in automation.',
|
|
153
|
+
team: 'Automation',
|
|
154
|
+
slackChannel: '#help-automation-design'
|
|
155
|
+
},
|
|
146
156
|
'cross-octagon': {
|
|
147
157
|
keywords: ['cross-octagon', 'crossoctagon', 'icon', 'icon-lab', 'core', 'cross', 'stop', 'block', 'octagon'],
|
|
148
158
|
componentName: 'CrossOctagonIcon',
|
|
@@ -475,6 +485,16 @@ var metadata = {
|
|
|
475
485
|
usage: 'Multi purpose',
|
|
476
486
|
team: 'Design System Team'
|
|
477
487
|
},
|
|
488
|
+
'split-parallel': {
|
|
489
|
+
keywords: ['split-parallel', 'splitparallel', 'icon', 'icon-lab', 'core', 'router', 'branches'],
|
|
490
|
+
componentName: 'SplitParallelIcon',
|
|
491
|
+
package: '@atlaskit/icon-lab/core/split-parallel',
|
|
492
|
+
type: 'core',
|
|
493
|
+
categorization: 'single-purpose',
|
|
494
|
+
usage: 'Reserved for split parallel branches in Automation',
|
|
495
|
+
team: 'Automation',
|
|
496
|
+
slackChannel: '#help-automation-design'
|
|
497
|
+
},
|
|
478
498
|
stamp: {
|
|
479
499
|
keywords: ['stamp', 'icon', 'icon-lab', 'core', 'stamp', 'rubber stamp', 'handstamp'],
|
|
480
500
|
componentName: 'StampIcon',
|
|
@@ -574,6 +594,16 @@ var metadata = {
|
|
|
574
594
|
usage: 'Swapping between Jira tickets in Whiteboard smart section',
|
|
575
595
|
team: 'Whiteboards'
|
|
576
596
|
},
|
|
597
|
+
'switch-case': {
|
|
598
|
+
keywords: ['switch-case', 'switchcase', 'icon', 'icon-lab', 'core', 'conditions', 'if', 'else', 'else if'],
|
|
599
|
+
componentName: 'SwitchCaseIcon',
|
|
600
|
+
package: '@atlaskit/icon-lab/core/switch-case',
|
|
601
|
+
type: 'core',
|
|
602
|
+
categorization: 'single-purpose',
|
|
603
|
+
usage: 'Reserved for switch case conditions in automation',
|
|
604
|
+
team: 'Automations',
|
|
605
|
+
slackChannel: '#help-automation-design'
|
|
606
|
+
},
|
|
577
607
|
sync: {
|
|
578
608
|
keywords: ['sync', 'icon', 'icon-lab', 'core', 'sync', 'synch', 'synchronise', 'synchronize', 'saving', 'arrows'],
|
|
579
609
|
componentName: 'SyncIcon',
|
|
@@ -666,6 +696,16 @@ var metadata = {
|
|
|
666
696
|
team: 'Insights',
|
|
667
697
|
slackChannel: '#cc-insights-and-reporting'
|
|
668
698
|
},
|
|
699
|
+
'workflow-controls': {
|
|
700
|
+
keywords: ['workflow-controls', 'workflowcontrols', 'icon', 'icon-lab', 'core', 'orchestration'],
|
|
701
|
+
componentName: 'WorkflowControlsIcon',
|
|
702
|
+
package: '@atlaskit/icon-lab/core/workflow-controls',
|
|
703
|
+
type: 'core',
|
|
704
|
+
categorization: 'single-purpose',
|
|
705
|
+
usage: 'Reserved for workflow controls in automation',
|
|
706
|
+
team: 'Automation',
|
|
707
|
+
slackChannel: '#help-automation-design'
|
|
708
|
+
},
|
|
669
709
|
wrench: {
|
|
670
710
|
keywords: ['wrench', 'icon', 'icon-lab', 'core', 'wrench', 'spanner', 'tool'],
|
|
671
711
|
componentName: 'WrenchIcon',
|
|
@@ -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::a3e465431b2746a63afc0d110a78358b>>
|
|
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::a3e465431b2746a63afc0d110a78358b>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
interface metadata {
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path stroke="currentcolor" stroke-width="1.5" d="M9.75 5v6m-3.5-6v6m9-3A7.25 7.25 0 1 1 .75 8a7.25 7.25 0 0 1 14.5 0Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path stroke="currentcolor" stroke-width="1.5" d="M4.25 4.5v7M6.5 7.25h4c.69 0 1.25.56 1.25 1.25v2.375M4.25 4.75a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm7.5 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 4.25V7.5m-6.25 4.25 2.5 2.5 2.5-2.5m2.5 0 2.5 2.5 2.5-2.5m-10 1.625V9.25C4.25 8.56 4.81 8 5.5 8h5c.69 0 1.25.56 1.25 1.25v4.125M8 4.75a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6.25 9.75H7A.75.75 0 0 0 6.25 9zm-4.5 0V9a.75.75 0 0 0-.75.75zm0 4.5H1c0 .414.336.75.75.75zm4.5 0V15a.75.75 0 0 0 .75-.75zM12 6.907l-.53.53.53.53.53-.53zm2.828-2.829.53.53a.75.75 0 0 0 0-1.06zM12 1.25l.53-.53a.75.75 0 0 0-1.06 0zM9.172 4.078l-.53-.53a.75.75 0 0 0 0 1.06zM4 1a3 3 0 0 0-3 3h1.5A1.5 1.5 0 0 1 4 2.5zm3 3a3 3 0 0 0-3-3v1.5A1.5 1.5 0 0 1 5.5 4zM4 7a3 3 0 0 0 3-3H5.5A1.5 1.5 0 0 1 4 5.5zm0-1.5A1.5 1.5 0 0 1 2.5 4H1a3 3 0 0 0 3 3zm8 9.5a3 3 0 0 0 3-3h-1.5a1.5 1.5 0 0 1-1.5 1.5zm-3-3a3 3 0 0 0 3 3v-1.5a1.5 1.5 0 0 1-1.5-1.5zm3-3a3 3 0 0 0-3 3h1.5a1.5 1.5 0 0 1 1.5-1.5zm0 1.5a1.5 1.5 0 0 1 1.5 1.5H15a3 3 0 0 0-3-3zM6.25 9h-4.5v1.5h4.5zM1 9.75v4.5h1.5v-4.5zM1.75 15h4.5v-1.5h-4.5zM7 14.25v-4.5H5.5v4.5zm5.53-6.813 2.83-2.827-1.06-1.06-2.83 2.828zm2.829-3.889L12.53.72l-1.06 1.06 2.828 2.829zM11.469.72 8.642 3.548l1.06 1.06 2.83-2.828zM8.642 4.609l2.829 2.828 1.06-1.06-2.828-2.829zM3.25 6v3.75h1.5V6zm8 .75V9.5h1.5V6.75zm-5-2h3v-1.5h-3z"/></svg>
|