@atlaskit/icon-lab 2.3.1 → 2.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 +30 -0
- package/core/cloud-offline.d.ts +13 -0
- package/core/cloud-offline.js +31 -0
- package/core/cloud-saved.d.ts +13 -0
- package/core/cloud-saved.js +31 -0
- package/core/database-storage-cache.d.ts +13 -0
- package/core/database-storage-cache.js +31 -0
- package/core/database-storage.d.ts +13 -0
- package/core/database-storage.js +31 -0
- package/core/duplicate.d.ts +13 -0
- package/core/duplicate.js +31 -0
- package/core/page-live-doc.js +2 -2
- package/core/sunset.d.ts +13 -0
- package/core/sunset.js +31 -0
- package/core/sync.d.ts +13 -0
- package/core/sync.js +31 -0
- package/core/welcome-feed.d.ts +13 -0
- package/core/welcome-feed.js +31 -0
- package/dist/cjs/metadata-core.js +80 -4
- package/dist/es2019/metadata-core.js +80 -4
- package/dist/esm/metadata-core.js +80 -4
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @atlaskit/icon-lab
|
|
2
2
|
|
|
3
|
+
## 2.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#108250](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/108250)
|
|
8
|
+
[`4e8deb5b0b126`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4e8deb5b0b126) -
|
|
9
|
+
[ux] This adds and modifies icons in `@atlaskit/icons` and `@atlaskit/icon-lab`
|
|
10
|
+
|
|
11
|
+
### Updated:
|
|
12
|
+
|
|
13
|
+
**`@atlaskit/icon-lab/core`**
|
|
14
|
+
|
|
15
|
+
- `page-live-doc`: Updated usage guidance
|
|
16
|
+
|
|
17
|
+
### Added:
|
|
18
|
+
|
|
19
|
+
**`@atlaskit/icon-lab/core`**
|
|
20
|
+
|
|
21
|
+
- `cloud-offline`
|
|
22
|
+
- `cloud-saved`
|
|
23
|
+
- `database-storage-cache`
|
|
24
|
+
- `database-storage`
|
|
25
|
+
- `sunset`
|
|
26
|
+
- `sync`
|
|
27
|
+
- `welcome-feed`
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
|
|
3
33
|
## 2.3.1
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::513130880b1595b93be2718d20b46cc8>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const CloudOfflineIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default CloudOfflineIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::98894c8033275124ffe758e93b78e7f3>>
|
|
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: "CloudOffline".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for showing when a connection can't be established to the cloud.
|
|
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 CloudOfflineIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<mask id="a" width="16" height="16" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="currentcolor" fill-rule="evenodd" d="M16 0H0v16h16v-1.067L2.598 1.53 3.658.47 16 12.812z" clip-rule="evenodd"/></mask><g mask="url(#a)"><path fill="currentcolor" d="m3.017 6.84.182.728a.75.75 0 0 0 .565-.667zm9.908-.456-.739.129a.75.75 0 0 0 .526.59zM12 12H3.75v1.5H12zm-8.25 0A2.25 2.25 0 0 1 1.5 9.75H0a3.75 3.75 0 0 0 3.75 3.75zM1.5 9.75a2.25 2.25 0 0 1 1.7-2.182l-.366-1.455A3.75 3.75 0 0 0 0 9.75zM3.764 6.9A4.25 4.25 0 0 1 8 3V1.5a5.75 5.75 0 0 0-5.731 5.28zM8 3a4.25 4.25 0 0 1 4.186 3.513l1.478-.258A5.75 5.75 0 0 0 8 1.5zm4.712 4.103A2.5 2.5 0 0 1 14.5 9.5H16a4 4 0 0 0-2.862-3.835zM14.5 9.5A2.5 2.5 0 0 1 12 12v1.5a4 4 0 0 0 4-4z"/><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="m1 1 14 14"/></g>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
CloudOfflineIcon.displayName = 'CloudOfflineIcon';
|
|
31
|
+
var _default = exports.default = CloudOfflineIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d0c92c04937cdfdbad2f2da6e2f72e7b>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const CloudSavedIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default CloudSavedIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::3982fb49b1cd9c8e3d68dc44f4d23d2a>>
|
|
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: "CloudSaved".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for showing saved status after successful cloud synchronisation.
|
|
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 CloudSavedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<mask id="a" width="16" height="16" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="currentcolor" fill-rule="evenodd" d="M16 0H0v16h16zm-.05 4.224-3.4-2.948-4.633 5.039 1.7 4.909z" clip-rule="evenodd"/></mask><g mask="url(#a)"><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M3.75 12.75H12a3.25 3.25 0 0 0 .925-6.366 5.001 5.001 0 0 0-9.908.456 3.001 3.001 0 0 0 .733 5.91Z"/></g><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="m6.25 7 2.167 2.5L13 4.25"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
CloudSavedIcon.displayName = 'CloudSavedIcon';
|
|
31
|
+
var _default = exports.default = CloudSavedIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b06d5fd84ec986a705c3bf9159dd784a>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const DatabaseStorageCacheIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default DatabaseStorageCacheIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::900e814cf85eaa2eeba292c9318bf513>>
|
|
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: "DatabaseStorageCache".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Known uses: Storage cache in Developer Console.
|
|
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 DatabaseStorageCacheIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<mask id="a" width="16" height="16" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="currentcolor" fill-rule="evenodd" d="M16 0H0v16h8V5.625h8z" clip-rule="evenodd"/></mask><g mask="url(#a)"><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M4.375 8a3.125 3.125 0 1 1 0-6.25h7.25a3.125 3.125 0 1 1 0 6.25m-7.25 0a3.125 3.125 0 1 0 0 6.25h7.25a3.125 3.125 0 1 0 0-6.25m-7.25 0h7.25M4 4.875h1.5m2.5 0h4m-8 6.25h1.5m2.5 0h4"/></g><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M10.25 15.25v-.922c0-.367.161-.715.44-.952l4.12-3.502c.279-.237.44-.585.44-.952V8h-5v.922c0 .367.161.715.44.952l4.12 3.502c.279.237.44.585.44.952v.922z"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
DatabaseStorageCacheIcon.displayName = 'DatabaseStorageCacheIcon';
|
|
31
|
+
var _default = exports.default = DatabaseStorageCacheIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::eb7db4eb1b4e44ba7f844918dab479ad>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const DatabaseStorageIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default DatabaseStorageIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::693c844e47f0778481df70c3241a0160>>
|
|
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: "DatabaseStorage".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Known uses: SQL database in Developer Console
|
|
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 DatabaseStorageIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M4.375 8h7.25m-7.25 0a3.125 3.125 0 1 1 0-6.25h7.25a3.125 3.125 0 1 1 0 6.25m-7.25 0a3.125 3.125 0 1 0 0 6.25h7.25a3.125 3.125 0 1 0 0-6.25M4 4.875h1.5m2.5 0h4m-8 6.25h1.5m2.5 0h4"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
DatabaseStorageIcon.displayName = 'DatabaseStorageIcon';
|
|
31
|
+
var _default = exports.default = DatabaseStorageIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::7ea93e00eeb4733ea977752b24ca8ee2>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const DuplicateIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default DuplicateIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::7fd0c83eeb7517b31fc84bc8635f4d35>>
|
|
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: "Duplicate".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for cloning and duplicating objects.
|
|
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 DuplicateIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M7 7v3m0-3V4m0 3H4m3 0h3m-7 5.25h8c.69 0 1.25-.56 1.25-1.25V3c0-.69-.56-1.25-1.25-1.25H3c-.69 0-1.25.56-1.25 1.25v8c0 .69.56 1.25 1.25 1.25Z"/><path stroke="currentcolor" stroke-width="1.5" d="M5 15.25h7.75a2.5 2.5 0 0 0 2.5-2.5V5"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
DuplicateIcon.displayName = 'DuplicateIcon';
|
|
31
|
+
var _default = exports.default = DuplicateIcon;
|
package/core/page-live-doc.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::35cb21cd71989271ac7cc49853598145>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -19,7 +19,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
19
19
|
* Icon: "PageLiveDoc".
|
|
20
20
|
* Category: single-purpose
|
|
21
21
|
* Location: @atlaskit/icon-lab
|
|
22
|
-
* Usage guidance: Reserved for Live
|
|
22
|
+
* Usage guidance: Reserved for Live Document content type.
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
package/core/sunset.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::74e13975c2e5700f83a7a3683caa052b>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SunsetIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SunsetIcon;
|
package/core/sunset.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::091438efa4f445f85b8a24154c484894>>
|
|
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: "Sunset".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Farewell feed in hello.
|
|
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 SunsetIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M11.75 9a3.75 3.75 0 1 0-7.5 0M0 8.25h2M8 3V1M2.28 2.97l1.415 1.414m10-1.423L12.28 4.375M14 8.25h2m-15 3h14m-9.5 3h5"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
SunsetIcon.displayName = 'SunsetIcon';
|
|
31
|
+
var _default = exports.default = SunsetIcon;
|
package/core/sync.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::ff46b83dc5dddd24f9a97e770fbe24e0>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SyncIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SyncIcon;
|
package/core/sync.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::86d7e819ac3c507214dc3f2e696d04c1>>
|
|
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: "Sync".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Reserved for syncing changes and save operations.
|
|
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 SyncIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8.5 1.75c2 0 5.75 2.125 5.75 6.25s-4.24 6.24-4.24 6.24m-2.51.01c-2 0-5.75-2.125-5.75-6.25s4.26-6.26 4.26-6.26m.24 3.76V1.25H2m7.75 9.23v4.25H14"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
SyncIcon.displayName = 'SyncIcon';
|
|
31
|
+
var _default = exports.default = SyncIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::726d9e0e788987b40884989d50707a47>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const WelcomeFeedIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default WelcomeFeedIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e5f63885c42378894d2f765cbd54edfc>>
|
|
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: "WelcomeFeed".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Known uses: Intro blog feed picker on Hello
|
|
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 WelcomeFeedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M6.25 5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m4.5 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0"/><path fill="currentcolor" d="M4.25 13.25v-.75h-.2l-.172.099zm-3.5 2H0a.75.75 0 0 0 1.122.651zm12.625-2.75H4.25V14h9.125zm-9.497.099-3.5 2 .744 1.302 3.5-2zM1.5 15.25V3.125H0V15.25zM2.625 2h10.75V.5H2.625zM14.5 3.125v8.25H16v-8.25zM8 11c1.225 0 2.196-.536 2.835-1.033a6 6 0 0 0 .944-.925l.072-.094.006-.007.002-.003v-.001h.001l-.61-.437-.61-.436v-.001l.001-.001-.005.007-.03.04q-.045.056-.139.161a4.3 4.3 0 0 1-.552.513C9.429 9.16 8.775 9.5 8 9.5zm0-1.5c-.775 0-1.43-.34-1.915-.717a4.4 4.4 0 0 1-.721-.714l-.005-.007v.001h.001l-.61.437-.61.436.001.002.002.003a1 1 0 0 0 .078.101 6 6 0 0 0 .944.925C5.805 10.465 6.775 11 8 11zM5.5 5a.25.25 0 0 1 .25-.25v1.5C6.44 6.25 7 5.69 7 5zm.25-.25A.25.25 0 0 1 6 5H4.5c0 .69.56 1.25 1.25 1.25zM6 5a.25.25 0 0 1-.25.25v-1.5c-.69 0-1.25.56-1.25 1.25zm-.25.25A.25.25 0 0 1 5.5 5H7c0-.69-.56-1.25-1.25-1.25zM10 5a.25.25 0 0 1 .25-.25v1.5c.69 0 1.25-.56 1.25-1.25zm.25-.25a.25.25 0 0 1 .25.25H9c0 .69.56 1.25 1.25 1.25zm.25.25a.25.25 0 0 1-.25.25v-1.5C9.56 3.75 9 4.31 9 5zm-.25.25A.25.25 0 0 1 10 5h1.5c0-.69-.56-1.25-1.25-1.25zM13.375 2c.621 0 1.125.504 1.125 1.125H16A2.625 2.625 0 0 0 13.375.5zm0 12A2.625 2.625 0 0 0 16 11.375h-1.5c0 .621-.504 1.125-1.125 1.125zM1.5 3.125C1.5 2.504 2.004 2 2.625 2V.5A2.625 2.625 0 0 0 0 3.125z"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
WelcomeFeedIcon.displayName = 'WelcomeFeedIcon';
|
|
31
|
+
var _default = exports.default = WelcomeFeedIcon;
|
|
@@ -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::6dd383b7ae5466d0bcf982abba2d9cdf>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -41,6 +41,24 @@ var metadata = {
|
|
|
41
41
|
usage: 'Known uses: None',
|
|
42
42
|
team: 'Design System Team'
|
|
43
43
|
},
|
|
44
|
+
'cloud-offline': {
|
|
45
|
+
keywords: ['cloud-offline', 'cloudoffline', 'icon', 'icon-lab', 'core', 'cloud', 'offline', 'disconnected', 'strikethrough'],
|
|
46
|
+
componentName: 'CloudOfflineIcon',
|
|
47
|
+
package: '@atlaskit/icon-lab/core/cloud-offline',
|
|
48
|
+
type: 'core',
|
|
49
|
+
categorization: 'single-purpose',
|
|
50
|
+
usage: "Reserved for showing when a connection can't be established to the cloud.",
|
|
51
|
+
team: 'Content Types'
|
|
52
|
+
},
|
|
53
|
+
'cloud-saved': {
|
|
54
|
+
keywords: ['cloud-saved', 'cloudsaved', 'icon', 'icon-lab', 'core', 'cloud', 'check mark', 'saved', 'success'],
|
|
55
|
+
componentName: 'CloudSavedIcon',
|
|
56
|
+
package: '@atlaskit/icon-lab/core/cloud-saved',
|
|
57
|
+
type: 'core',
|
|
58
|
+
categorization: 'single-purpose',
|
|
59
|
+
usage: 'Reserved for showing saved status after successful cloud synchronisation.',
|
|
60
|
+
team: 'Content Types'
|
|
61
|
+
},
|
|
44
62
|
coins: {
|
|
45
63
|
keywords: ['coins', 'icon', 'icon-lab', 'core', 'money', 'loose change', 'currency'],
|
|
46
64
|
componentName: 'CoinsIcon',
|
|
@@ -59,6 +77,36 @@ var metadata = {
|
|
|
59
77
|
usage: 'Multi purpose',
|
|
60
78
|
team: 'Design System Team'
|
|
61
79
|
},
|
|
80
|
+
'database-storage': {
|
|
81
|
+
keywords: ['database-storage', 'databasestorage', 'icon', 'icon-lab', 'core', 'database', 'db', 'storage', 'sql'],
|
|
82
|
+
componentName: 'DatabaseStorageIcon',
|
|
83
|
+
package: '@atlaskit/icon-lab/core/database-storage',
|
|
84
|
+
type: 'core',
|
|
85
|
+
categorization: 'multi-purpose',
|
|
86
|
+
usage: 'Known uses: SQL database in Developer Console',
|
|
87
|
+
team: 'Ecosystem',
|
|
88
|
+
slackChannel: '#forge-sql'
|
|
89
|
+
},
|
|
90
|
+
'database-storage-cache': {
|
|
91
|
+
keywords: ['database-storage-cache', 'databasestoragecache', 'icon', 'icon-lab', 'core', 'database', 'db', 'storage', 'sql', 'cache'],
|
|
92
|
+
componentName: 'DatabaseStorageCacheIcon',
|
|
93
|
+
package: '@atlaskit/icon-lab/core/database-storage-cache',
|
|
94
|
+
type: 'core',
|
|
95
|
+
categorization: 'multi-purpose',
|
|
96
|
+
usage: 'Known uses: Storage cache in Developer Console.',
|
|
97
|
+
team: 'Ecosystem',
|
|
98
|
+
slackChannel: '#forge-sql'
|
|
99
|
+
},
|
|
100
|
+
duplicate: {
|
|
101
|
+
keywords: ['duplicate', 'icon', 'icon-lab', 'core', 'clone', 'duplicate', 'plus'],
|
|
102
|
+
componentName: 'DuplicateIcon',
|
|
103
|
+
package: '@atlaskit/icon-lab/core/duplicate',
|
|
104
|
+
type: 'core',
|
|
105
|
+
categorization: 'single-purpose',
|
|
106
|
+
usage: 'Reserved for cloning and duplicating objects.',
|
|
107
|
+
team: 'Design System Team',
|
|
108
|
+
slackChannel: '#icon-contributions'
|
|
109
|
+
},
|
|
62
110
|
editions: {
|
|
63
111
|
keywords: ['editions', 'icon', 'icon-lab', 'core', 'gem', 'premium', 'diamond', 'precious stone', 'editions'],
|
|
64
112
|
componentName: 'EditionsIcon',
|
|
@@ -96,13 +144,13 @@ var metadata = {
|
|
|
96
144
|
team: 'Editor'
|
|
97
145
|
},
|
|
98
146
|
'page-live-doc': {
|
|
99
|
-
keywords: ['page-live-doc', 'pagelivedoc', 'icon', 'icon-lab', 'core', 'page', 'live edit', 'lightning bolt', 'multiplayer', 'document'],
|
|
147
|
+
keywords: ['page-live-doc', 'pagelivedoc', 'icon', 'icon-lab', 'core', 'page', 'live edit', 'lightning bolt', 'multiplayer', 'document', 'live doc'],
|
|
100
148
|
componentName: 'PageLiveDocIcon',
|
|
101
149
|
package: '@atlaskit/icon-lab/core/page-live-doc',
|
|
102
150
|
type: 'core',
|
|
103
151
|
categorization: 'single-purpose',
|
|
104
|
-
usage: 'Reserved for Live
|
|
105
|
-
team: '
|
|
152
|
+
usage: 'Reserved for Live Document content type.',
|
|
153
|
+
team: 'Content Types'
|
|
106
154
|
},
|
|
107
155
|
'paint-brush': {
|
|
108
156
|
keywords: ['paint-brush', 'paintbrush', 'icon', 'icon-lab', 'core', 'brush', 'appearance', 'paint'],
|
|
@@ -160,6 +208,24 @@ var metadata = {
|
|
|
160
208
|
usage: 'Multi purpose',
|
|
161
209
|
team: 'Design System Team'
|
|
162
210
|
},
|
|
211
|
+
sunset: {
|
|
212
|
+
keywords: ['sunset', 'icon', 'icon-lab', 'core', 'sun', 'horizon', 'farewell', 'goodbye', 'sky', 'farewell feed'],
|
|
213
|
+
componentName: 'SunsetIcon',
|
|
214
|
+
package: '@atlaskit/icon-lab/core/sunset',
|
|
215
|
+
type: 'core',
|
|
216
|
+
categorization: 'multi-purpose',
|
|
217
|
+
usage: 'Farewell feed in hello.',
|
|
218
|
+
team: 'confluence insights'
|
|
219
|
+
},
|
|
220
|
+
sync: {
|
|
221
|
+
keywords: ['sync', 'icon', 'icon-lab', 'core', 'sync', 'synch', 'synchronise', 'synchronize', 'saving', 'arrows'],
|
|
222
|
+
componentName: 'SyncIcon',
|
|
223
|
+
package: '@atlaskit/icon-lab/core/sync',
|
|
224
|
+
type: 'core',
|
|
225
|
+
categorization: 'single-purpose',
|
|
226
|
+
usage: 'Reserved for syncing changes and save operations.',
|
|
227
|
+
team: 'Content Types'
|
|
228
|
+
},
|
|
163
229
|
'takeout-container': {
|
|
164
230
|
keywords: ['takeout-container', 'takeoutcontainer', 'icon', 'icon-lab', 'core', 'takeout', 'food', 'takeaway'],
|
|
165
231
|
componentName: 'TakeoutContainerIcon',
|
|
@@ -205,6 +271,16 @@ var metadata = {
|
|
|
205
271
|
usage: 'Multi purpose',
|
|
206
272
|
team: 'Design System Team'
|
|
207
273
|
},
|
|
274
|
+
'welcome-feed': {
|
|
275
|
+
keywords: ['welcome-feed', 'welcomefeed', 'icon', 'icon-lab', 'core', 'welcome', 'hello', 'blog', 'smile', 'intro'],
|
|
276
|
+
componentName: 'WelcomeFeedIcon',
|
|
277
|
+
package: '@atlaskit/icon-lab/core/welcome-feed',
|
|
278
|
+
type: 'core',
|
|
279
|
+
categorization: 'multi-purpose',
|
|
280
|
+
usage: 'Known uses: Intro blog feed picker on Hello',
|
|
281
|
+
team: 'Insights',
|
|
282
|
+
slackChannel: '#cc-insights-and-reporting'
|
|
283
|
+
},
|
|
208
284
|
wrench: {
|
|
209
285
|
keywords: ['wrench', 'icon', 'icon-lab', 'core', 'wrench', 'spanner', 'tool'],
|
|
210
286
|
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::6dd383b7ae5466d0bcf982abba2d9cdf>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -35,6 +35,24 @@ const metadata = {
|
|
|
35
35
|
usage: 'Known uses: None',
|
|
36
36
|
team: 'Design System Team'
|
|
37
37
|
},
|
|
38
|
+
'cloud-offline': {
|
|
39
|
+
keywords: ['cloud-offline', 'cloudoffline', 'icon', 'icon-lab', 'core', 'cloud', 'offline', 'disconnected', 'strikethrough'],
|
|
40
|
+
componentName: 'CloudOfflineIcon',
|
|
41
|
+
package: '@atlaskit/icon-lab/core/cloud-offline',
|
|
42
|
+
type: 'core',
|
|
43
|
+
categorization: 'single-purpose',
|
|
44
|
+
usage: "Reserved for showing when a connection can't be established to the cloud.",
|
|
45
|
+
team: 'Content Types'
|
|
46
|
+
},
|
|
47
|
+
'cloud-saved': {
|
|
48
|
+
keywords: ['cloud-saved', 'cloudsaved', 'icon', 'icon-lab', 'core', 'cloud', 'check mark', 'saved', 'success'],
|
|
49
|
+
componentName: 'CloudSavedIcon',
|
|
50
|
+
package: '@atlaskit/icon-lab/core/cloud-saved',
|
|
51
|
+
type: 'core',
|
|
52
|
+
categorization: 'single-purpose',
|
|
53
|
+
usage: 'Reserved for showing saved status after successful cloud synchronisation.',
|
|
54
|
+
team: 'Content Types'
|
|
55
|
+
},
|
|
38
56
|
coins: {
|
|
39
57
|
keywords: ['coins', 'icon', 'icon-lab', 'core', 'money', 'loose change', 'currency'],
|
|
40
58
|
componentName: 'CoinsIcon',
|
|
@@ -53,6 +71,36 @@ const metadata = {
|
|
|
53
71
|
usage: 'Multi purpose',
|
|
54
72
|
team: 'Design System Team'
|
|
55
73
|
},
|
|
74
|
+
'database-storage': {
|
|
75
|
+
keywords: ['database-storage', 'databasestorage', 'icon', 'icon-lab', 'core', 'database', 'db', 'storage', 'sql'],
|
|
76
|
+
componentName: 'DatabaseStorageIcon',
|
|
77
|
+
package: '@atlaskit/icon-lab/core/database-storage',
|
|
78
|
+
type: 'core',
|
|
79
|
+
categorization: 'multi-purpose',
|
|
80
|
+
usage: 'Known uses: SQL database in Developer Console',
|
|
81
|
+
team: 'Ecosystem',
|
|
82
|
+
slackChannel: '#forge-sql'
|
|
83
|
+
},
|
|
84
|
+
'database-storage-cache': {
|
|
85
|
+
keywords: ['database-storage-cache', 'databasestoragecache', 'icon', 'icon-lab', 'core', 'database', 'db', 'storage', 'sql', 'cache'],
|
|
86
|
+
componentName: 'DatabaseStorageCacheIcon',
|
|
87
|
+
package: '@atlaskit/icon-lab/core/database-storage-cache',
|
|
88
|
+
type: 'core',
|
|
89
|
+
categorization: 'multi-purpose',
|
|
90
|
+
usage: 'Known uses: Storage cache in Developer Console.',
|
|
91
|
+
team: 'Ecosystem',
|
|
92
|
+
slackChannel: '#forge-sql'
|
|
93
|
+
},
|
|
94
|
+
duplicate: {
|
|
95
|
+
keywords: ['duplicate', 'icon', 'icon-lab', 'core', 'clone', 'duplicate', 'plus'],
|
|
96
|
+
componentName: 'DuplicateIcon',
|
|
97
|
+
package: '@atlaskit/icon-lab/core/duplicate',
|
|
98
|
+
type: 'core',
|
|
99
|
+
categorization: 'single-purpose',
|
|
100
|
+
usage: 'Reserved for cloning and duplicating objects.',
|
|
101
|
+
team: 'Design System Team',
|
|
102
|
+
slackChannel: '#icon-contributions'
|
|
103
|
+
},
|
|
56
104
|
editions: {
|
|
57
105
|
keywords: ['editions', 'icon', 'icon-lab', 'core', 'gem', 'premium', 'diamond', 'precious stone', 'editions'],
|
|
58
106
|
componentName: 'EditionsIcon',
|
|
@@ -90,13 +138,13 @@ const metadata = {
|
|
|
90
138
|
team: 'Editor'
|
|
91
139
|
},
|
|
92
140
|
'page-live-doc': {
|
|
93
|
-
keywords: ['page-live-doc', 'pagelivedoc', 'icon', 'icon-lab', 'core', 'page', 'live edit', 'lightning bolt', 'multiplayer', 'document'],
|
|
141
|
+
keywords: ['page-live-doc', 'pagelivedoc', 'icon', 'icon-lab', 'core', 'page', 'live edit', 'lightning bolt', 'multiplayer', 'document', 'live doc'],
|
|
94
142
|
componentName: 'PageLiveDocIcon',
|
|
95
143
|
package: '@atlaskit/icon-lab/core/page-live-doc',
|
|
96
144
|
type: 'core',
|
|
97
145
|
categorization: 'single-purpose',
|
|
98
|
-
usage: 'Reserved for Live
|
|
99
|
-
team: '
|
|
146
|
+
usage: 'Reserved for Live Document content type.',
|
|
147
|
+
team: 'Content Types'
|
|
100
148
|
},
|
|
101
149
|
'paint-brush': {
|
|
102
150
|
keywords: ['paint-brush', 'paintbrush', 'icon', 'icon-lab', 'core', 'brush', 'appearance', 'paint'],
|
|
@@ -154,6 +202,24 @@ const metadata = {
|
|
|
154
202
|
usage: 'Multi purpose',
|
|
155
203
|
team: 'Design System Team'
|
|
156
204
|
},
|
|
205
|
+
sunset: {
|
|
206
|
+
keywords: ['sunset', 'icon', 'icon-lab', 'core', 'sun', 'horizon', 'farewell', 'goodbye', 'sky', 'farewell feed'],
|
|
207
|
+
componentName: 'SunsetIcon',
|
|
208
|
+
package: '@atlaskit/icon-lab/core/sunset',
|
|
209
|
+
type: 'core',
|
|
210
|
+
categorization: 'multi-purpose',
|
|
211
|
+
usage: 'Farewell feed in hello.',
|
|
212
|
+
team: 'confluence insights'
|
|
213
|
+
},
|
|
214
|
+
sync: {
|
|
215
|
+
keywords: ['sync', 'icon', 'icon-lab', 'core', 'sync', 'synch', 'synchronise', 'synchronize', 'saving', 'arrows'],
|
|
216
|
+
componentName: 'SyncIcon',
|
|
217
|
+
package: '@atlaskit/icon-lab/core/sync',
|
|
218
|
+
type: 'core',
|
|
219
|
+
categorization: 'single-purpose',
|
|
220
|
+
usage: 'Reserved for syncing changes and save operations.',
|
|
221
|
+
team: 'Content Types'
|
|
222
|
+
},
|
|
157
223
|
'takeout-container': {
|
|
158
224
|
keywords: ['takeout-container', 'takeoutcontainer', 'icon', 'icon-lab', 'core', 'takeout', 'food', 'takeaway'],
|
|
159
225
|
componentName: 'TakeoutContainerIcon',
|
|
@@ -199,6 +265,16 @@ const metadata = {
|
|
|
199
265
|
usage: 'Multi purpose',
|
|
200
266
|
team: 'Design System Team'
|
|
201
267
|
},
|
|
268
|
+
'welcome-feed': {
|
|
269
|
+
keywords: ['welcome-feed', 'welcomefeed', 'icon', 'icon-lab', 'core', 'welcome', 'hello', 'blog', 'smile', 'intro'],
|
|
270
|
+
componentName: 'WelcomeFeedIcon',
|
|
271
|
+
package: '@atlaskit/icon-lab/core/welcome-feed',
|
|
272
|
+
type: 'core',
|
|
273
|
+
categorization: 'multi-purpose',
|
|
274
|
+
usage: 'Known uses: Intro blog feed picker on Hello',
|
|
275
|
+
team: 'Insights',
|
|
276
|
+
slackChannel: '#cc-insights-and-reporting'
|
|
277
|
+
},
|
|
202
278
|
wrench: {
|
|
203
279
|
keywords: ['wrench', 'icon', 'icon-lab', 'core', 'wrench', 'spanner', 'tool'],
|
|
204
280
|
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::6dd383b7ae5466d0bcf982abba2d9cdf>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -35,6 +35,24 @@ var metadata = {
|
|
|
35
35
|
usage: 'Known uses: None',
|
|
36
36
|
team: 'Design System Team'
|
|
37
37
|
},
|
|
38
|
+
'cloud-offline': {
|
|
39
|
+
keywords: ['cloud-offline', 'cloudoffline', 'icon', 'icon-lab', 'core', 'cloud', 'offline', 'disconnected', 'strikethrough'],
|
|
40
|
+
componentName: 'CloudOfflineIcon',
|
|
41
|
+
package: '@atlaskit/icon-lab/core/cloud-offline',
|
|
42
|
+
type: 'core',
|
|
43
|
+
categorization: 'single-purpose',
|
|
44
|
+
usage: "Reserved for showing when a connection can't be established to the cloud.",
|
|
45
|
+
team: 'Content Types'
|
|
46
|
+
},
|
|
47
|
+
'cloud-saved': {
|
|
48
|
+
keywords: ['cloud-saved', 'cloudsaved', 'icon', 'icon-lab', 'core', 'cloud', 'check mark', 'saved', 'success'],
|
|
49
|
+
componentName: 'CloudSavedIcon',
|
|
50
|
+
package: '@atlaskit/icon-lab/core/cloud-saved',
|
|
51
|
+
type: 'core',
|
|
52
|
+
categorization: 'single-purpose',
|
|
53
|
+
usage: 'Reserved for showing saved status after successful cloud synchronisation.',
|
|
54
|
+
team: 'Content Types'
|
|
55
|
+
},
|
|
38
56
|
coins: {
|
|
39
57
|
keywords: ['coins', 'icon', 'icon-lab', 'core', 'money', 'loose change', 'currency'],
|
|
40
58
|
componentName: 'CoinsIcon',
|
|
@@ -53,6 +71,36 @@ var metadata = {
|
|
|
53
71
|
usage: 'Multi purpose',
|
|
54
72
|
team: 'Design System Team'
|
|
55
73
|
},
|
|
74
|
+
'database-storage': {
|
|
75
|
+
keywords: ['database-storage', 'databasestorage', 'icon', 'icon-lab', 'core', 'database', 'db', 'storage', 'sql'],
|
|
76
|
+
componentName: 'DatabaseStorageIcon',
|
|
77
|
+
package: '@atlaskit/icon-lab/core/database-storage',
|
|
78
|
+
type: 'core',
|
|
79
|
+
categorization: 'multi-purpose',
|
|
80
|
+
usage: 'Known uses: SQL database in Developer Console',
|
|
81
|
+
team: 'Ecosystem',
|
|
82
|
+
slackChannel: '#forge-sql'
|
|
83
|
+
},
|
|
84
|
+
'database-storage-cache': {
|
|
85
|
+
keywords: ['database-storage-cache', 'databasestoragecache', 'icon', 'icon-lab', 'core', 'database', 'db', 'storage', 'sql', 'cache'],
|
|
86
|
+
componentName: 'DatabaseStorageCacheIcon',
|
|
87
|
+
package: '@atlaskit/icon-lab/core/database-storage-cache',
|
|
88
|
+
type: 'core',
|
|
89
|
+
categorization: 'multi-purpose',
|
|
90
|
+
usage: 'Known uses: Storage cache in Developer Console.',
|
|
91
|
+
team: 'Ecosystem',
|
|
92
|
+
slackChannel: '#forge-sql'
|
|
93
|
+
},
|
|
94
|
+
duplicate: {
|
|
95
|
+
keywords: ['duplicate', 'icon', 'icon-lab', 'core', 'clone', 'duplicate', 'plus'],
|
|
96
|
+
componentName: 'DuplicateIcon',
|
|
97
|
+
package: '@atlaskit/icon-lab/core/duplicate',
|
|
98
|
+
type: 'core',
|
|
99
|
+
categorization: 'single-purpose',
|
|
100
|
+
usage: 'Reserved for cloning and duplicating objects.',
|
|
101
|
+
team: 'Design System Team',
|
|
102
|
+
slackChannel: '#icon-contributions'
|
|
103
|
+
},
|
|
56
104
|
editions: {
|
|
57
105
|
keywords: ['editions', 'icon', 'icon-lab', 'core', 'gem', 'premium', 'diamond', 'precious stone', 'editions'],
|
|
58
106
|
componentName: 'EditionsIcon',
|
|
@@ -90,13 +138,13 @@ var metadata = {
|
|
|
90
138
|
team: 'Editor'
|
|
91
139
|
},
|
|
92
140
|
'page-live-doc': {
|
|
93
|
-
keywords: ['page-live-doc', 'pagelivedoc', 'icon', 'icon-lab', 'core', 'page', 'live edit', 'lightning bolt', 'multiplayer', 'document'],
|
|
141
|
+
keywords: ['page-live-doc', 'pagelivedoc', 'icon', 'icon-lab', 'core', 'page', 'live edit', 'lightning bolt', 'multiplayer', 'document', 'live doc'],
|
|
94
142
|
componentName: 'PageLiveDocIcon',
|
|
95
143
|
package: '@atlaskit/icon-lab/core/page-live-doc',
|
|
96
144
|
type: 'core',
|
|
97
145
|
categorization: 'single-purpose',
|
|
98
|
-
usage: 'Reserved for Live
|
|
99
|
-
team: '
|
|
146
|
+
usage: 'Reserved for Live Document content type.',
|
|
147
|
+
team: 'Content Types'
|
|
100
148
|
},
|
|
101
149
|
'paint-brush': {
|
|
102
150
|
keywords: ['paint-brush', 'paintbrush', 'icon', 'icon-lab', 'core', 'brush', 'appearance', 'paint'],
|
|
@@ -154,6 +202,24 @@ var metadata = {
|
|
|
154
202
|
usage: 'Multi purpose',
|
|
155
203
|
team: 'Design System Team'
|
|
156
204
|
},
|
|
205
|
+
sunset: {
|
|
206
|
+
keywords: ['sunset', 'icon', 'icon-lab', 'core', 'sun', 'horizon', 'farewell', 'goodbye', 'sky', 'farewell feed'],
|
|
207
|
+
componentName: 'SunsetIcon',
|
|
208
|
+
package: '@atlaskit/icon-lab/core/sunset',
|
|
209
|
+
type: 'core',
|
|
210
|
+
categorization: 'multi-purpose',
|
|
211
|
+
usage: 'Farewell feed in hello.',
|
|
212
|
+
team: 'confluence insights'
|
|
213
|
+
},
|
|
214
|
+
sync: {
|
|
215
|
+
keywords: ['sync', 'icon', 'icon-lab', 'core', 'sync', 'synch', 'synchronise', 'synchronize', 'saving', 'arrows'],
|
|
216
|
+
componentName: 'SyncIcon',
|
|
217
|
+
package: '@atlaskit/icon-lab/core/sync',
|
|
218
|
+
type: 'core',
|
|
219
|
+
categorization: 'single-purpose',
|
|
220
|
+
usage: 'Reserved for syncing changes and save operations.',
|
|
221
|
+
team: 'Content Types'
|
|
222
|
+
},
|
|
157
223
|
'takeout-container': {
|
|
158
224
|
keywords: ['takeout-container', 'takeoutcontainer', 'icon', 'icon-lab', 'core', 'takeout', 'food', 'takeaway'],
|
|
159
225
|
componentName: 'TakeoutContainerIcon',
|
|
@@ -199,6 +265,16 @@ var metadata = {
|
|
|
199
265
|
usage: 'Multi purpose',
|
|
200
266
|
team: 'Design System Team'
|
|
201
267
|
},
|
|
268
|
+
'welcome-feed': {
|
|
269
|
+
keywords: ['welcome-feed', 'welcomefeed', 'icon', 'icon-lab', 'core', 'welcome', 'hello', 'blog', 'smile', 'intro'],
|
|
270
|
+
componentName: 'WelcomeFeedIcon',
|
|
271
|
+
package: '@atlaskit/icon-lab/core/welcome-feed',
|
|
272
|
+
type: 'core',
|
|
273
|
+
categorization: 'multi-purpose',
|
|
274
|
+
usage: 'Known uses: Intro blog feed picker on Hello',
|
|
275
|
+
team: 'Insights',
|
|
276
|
+
slackChannel: '#cc-insights-and-reporting'
|
|
277
|
+
},
|
|
202
278
|
wrench: {
|
|
203
279
|
keywords: ['wrench', 'icon', 'icon-lab', 'core', 'wrench', 'spanner', 'tool'],
|
|
204
280
|
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::6dd383b7ae5466d0bcf982abba2d9cdf>>
|
|
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::6dd383b7ae5466d0bcf982abba2d9cdf>>
|
|
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": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "An icon package for public icon contributions",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/icon": "^23.
|
|
35
|
+
"@atlaskit/icon": "^23.7.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@af/icon-build-process": "^2.4.0",
|
|
43
43
|
"@af/visual-regression": "*",
|
|
44
|
-
"@atlaskit/button": "^20.
|
|
44
|
+
"@atlaskit/button": "^20.5.0",
|
|
45
45
|
"@atlaskit/code": "^15.6.10",
|
|
46
46
|
"@atlaskit/ds-lib": "^3.5.0",
|
|
47
47
|
"@atlaskit/heading": "^4.0.2",
|