@atlaskit/icon-lab 3.3.0 → 3.4.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 +15 -0
- package/core/queue-pop-in.d.ts +13 -0
- package/core/queue-pop-in.js +31 -0
- package/core/queue-pop-out.d.ts +13 -0
- package/core/queue-pop-out.js +31 -0
- package/dist/cjs/metadata-core.js +19 -1
- package/dist/es2019/metadata-core.js +19 -1
- package/dist/esm/metadata-core.js +19 -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/queue-pop-in.svg +1 -0
- package/svgs/core/queue-pop-out.svg +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/icon-lab
|
|
2
2
|
|
|
3
|
+
## 3.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#119848](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/119848)
|
|
8
|
+
[`7663324edf87e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7663324edf87e) -
|
|
9
|
+
This release adds icons in `@atlaskit/icon-lab`.
|
|
10
|
+
|
|
11
|
+
### Added:
|
|
12
|
+
|
|
13
|
+
**`@atlaskit/icon-lab/core`**
|
|
14
|
+
|
|
15
|
+
- `queue-pop-in`
|
|
16
|
+
- `queue-pop-out`
|
|
17
|
+
|
|
3
18
|
## 3.3.0
|
|
4
19
|
|
|
5
20
|
### 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::3800a1dc1431311b306c4143ffc21c46>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const QueuePopInIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default QueuePopInIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::00cca53c284eb95555e6b65ce51878b0>>
|
|
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: "QueuePopIn".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for JSM queue navigation to move back to sidebar
|
|
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 QueuePopInIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M6 3.25H3c-.69 0-1.25.56-1.25 1.25V13c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25v-2.75"/><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M5.25 6.5v4.25H9.5m-.75-3.5L5.5 10.5M14 7.25c.69 0 1.25-.56 1.25-1.25V2c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v4c0 .69.56 1.25 1.25 1.25z"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
QueuePopInIcon.displayName = 'QueuePopInIcon';
|
|
31
|
+
var _default = exports.default = QueuePopInIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::7cdd8ac300e6dbbf8ca348e1b9caab30>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const QueuePopOutIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default QueuePopOutIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ea66403671ba0439e5d789f0c6dd9536>>
|
|
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: "QueuePopOut".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for JSM queue navigation to pop out from sidebar
|
|
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 QueuePopOutIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 3.25H3c-.69 0-1.25.56-1.25 1.25V13c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25V8"/><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8.25 14.25V9c0-.69-.56-1.25-1.25-1.25H1.75M14.25 6V1.75H10M9.5 6.5 14 2"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
QueuePopOutIcon.displayName = 'QueuePopOutIcon';
|
|
31
|
+
var _default = exports.default = QueuePopOutIcon;
|
|
@@ -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::a855e3dd5b9a928da883751d8dffcd79>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -372,6 +372,24 @@ var metadata = {
|
|
|
372
372
|
usage: 'Reserved for QR code experiences.',
|
|
373
373
|
team: 'Assets'
|
|
374
374
|
},
|
|
375
|
+
'queue-pop-in': {
|
|
376
|
+
keywords: ['queue-pop-in', 'queuepopin', 'icon', 'icon-lab', 'core', 'Queues', 'pop-in', 'pop in', 'move back to sidebar'],
|
|
377
|
+
componentName: 'QueuePopInIcon',
|
|
378
|
+
package: '@atlaskit/icon-lab/core/queue-pop-in',
|
|
379
|
+
type: 'core',
|
|
380
|
+
categorization: 'single-purpose',
|
|
381
|
+
usage: 'Reserved for JSM queue navigation to move back to sidebar',
|
|
382
|
+
team: 'JSM core capabilities'
|
|
383
|
+
},
|
|
384
|
+
'queue-pop-out': {
|
|
385
|
+
keywords: ['queue-pop-out', 'queuepopout', 'icon', 'icon-lab', 'core', 'pop-out', 'pop out', 'Queues', 'Move out from sidebar'],
|
|
386
|
+
componentName: 'QueuePopOutIcon',
|
|
387
|
+
package: '@atlaskit/icon-lab/core/queue-pop-out',
|
|
388
|
+
type: 'core',
|
|
389
|
+
categorization: 'single-purpose',
|
|
390
|
+
usage: 'Reserved for JSM queue navigation to pop out from sidebar',
|
|
391
|
+
team: 'JSM core capabilities'
|
|
392
|
+
},
|
|
375
393
|
'roadmaps-plan': {
|
|
376
394
|
keywords: ['roadmaps-plan', 'roadmapsplan', 'icon', 'icon-lab', 'core', 'roadmaps', 'roadmap', 'plan'],
|
|
377
395
|
componentName: 'RoadmapsPlanIcon',
|
|
@@ -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::a855e3dd5b9a928da883751d8dffcd79>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -366,6 +366,24 @@ const metadata = {
|
|
|
366
366
|
usage: 'Reserved for QR code experiences.',
|
|
367
367
|
team: 'Assets'
|
|
368
368
|
},
|
|
369
|
+
'queue-pop-in': {
|
|
370
|
+
keywords: ['queue-pop-in', 'queuepopin', 'icon', 'icon-lab', 'core', 'Queues', 'pop-in', 'pop in', 'move back to sidebar'],
|
|
371
|
+
componentName: 'QueuePopInIcon',
|
|
372
|
+
package: '@atlaskit/icon-lab/core/queue-pop-in',
|
|
373
|
+
type: 'core',
|
|
374
|
+
categorization: 'single-purpose',
|
|
375
|
+
usage: 'Reserved for JSM queue navigation to move back to sidebar',
|
|
376
|
+
team: 'JSM core capabilities'
|
|
377
|
+
},
|
|
378
|
+
'queue-pop-out': {
|
|
379
|
+
keywords: ['queue-pop-out', 'queuepopout', 'icon', 'icon-lab', 'core', 'pop-out', 'pop out', 'Queues', 'Move out from sidebar'],
|
|
380
|
+
componentName: 'QueuePopOutIcon',
|
|
381
|
+
package: '@atlaskit/icon-lab/core/queue-pop-out',
|
|
382
|
+
type: 'core',
|
|
383
|
+
categorization: 'single-purpose',
|
|
384
|
+
usage: 'Reserved for JSM queue navigation to pop out from sidebar',
|
|
385
|
+
team: 'JSM core capabilities'
|
|
386
|
+
},
|
|
369
387
|
'roadmaps-plan': {
|
|
370
388
|
keywords: ['roadmaps-plan', 'roadmapsplan', 'icon', 'icon-lab', 'core', 'roadmaps', 'roadmap', 'plan'],
|
|
371
389
|
componentName: 'RoadmapsPlanIcon',
|
|
@@ -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::a855e3dd5b9a928da883751d8dffcd79>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -366,6 +366,24 @@ var metadata = {
|
|
|
366
366
|
usage: 'Reserved for QR code experiences.',
|
|
367
367
|
team: 'Assets'
|
|
368
368
|
},
|
|
369
|
+
'queue-pop-in': {
|
|
370
|
+
keywords: ['queue-pop-in', 'queuepopin', 'icon', 'icon-lab', 'core', 'Queues', 'pop-in', 'pop in', 'move back to sidebar'],
|
|
371
|
+
componentName: 'QueuePopInIcon',
|
|
372
|
+
package: '@atlaskit/icon-lab/core/queue-pop-in',
|
|
373
|
+
type: 'core',
|
|
374
|
+
categorization: 'single-purpose',
|
|
375
|
+
usage: 'Reserved for JSM queue navigation to move back to sidebar',
|
|
376
|
+
team: 'JSM core capabilities'
|
|
377
|
+
},
|
|
378
|
+
'queue-pop-out': {
|
|
379
|
+
keywords: ['queue-pop-out', 'queuepopout', 'icon', 'icon-lab', 'core', 'pop-out', 'pop out', 'Queues', 'Move out from sidebar'],
|
|
380
|
+
componentName: 'QueuePopOutIcon',
|
|
381
|
+
package: '@atlaskit/icon-lab/core/queue-pop-out',
|
|
382
|
+
type: 'core',
|
|
383
|
+
categorization: 'single-purpose',
|
|
384
|
+
usage: 'Reserved for JSM queue navigation to pop out from sidebar',
|
|
385
|
+
team: 'JSM core capabilities'
|
|
386
|
+
},
|
|
369
387
|
'roadmaps-plan': {
|
|
370
388
|
keywords: ['roadmaps-plan', 'roadmapsplan', 'icon', 'icon-lab', 'core', 'roadmaps', 'roadmap', 'plan'],
|
|
371
389
|
componentName: 'RoadmapsPlanIcon',
|
|
@@ -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::a855e3dd5b9a928da883751d8dffcd79>>
|
|
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::a855e3dd5b9a928da883751d8dffcd79>>
|
|
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-linejoin="round" stroke-width="1.5" d="M6 3.25H3c-.69 0-1.25.56-1.25 1.25V13c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25v-2.75"/><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M5.25 6.5v4.25H9.5m-.75-3.5L5.5 10.5M14 7.25c.69 0 1.25-.56 1.25-1.25V2c0-.69-.56-1.25-1.25-1.25h-4c-.69 0-1.25.56-1.25 1.25v4c0 .69.56 1.25 1.25 1.25z"/></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 3.25H3c-.69 0-1.25.56-1.25 1.25V13c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25V8"/><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8.25 14.25V9c0-.69-.56-1.25-1.25-1.25H1.75M14.25 6V1.75H10M9.5 6.5 14 2"/></svg>
|