@atlaskit/icon 34.2.0 → 34.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 +40 -0
- package/core/bezier-curve.d.ts +13 -0
- package/core/bezier-curve.js +29 -0
- package/core/chart-pie.js +2 -2
- package/core/figma-community.d.ts +13 -0
- package/core/figma-community.js +29 -0
- package/core/figma-component-instance-swap.d.ts +13 -0
- package/core/figma-component-instance-swap.js +29 -0
- package/core/figma-component-instance.d.ts +13 -0
- package/core/figma-component-instance.js +29 -0
- package/core/figma-component.d.ts +13 -0
- package/core/figma-component.js +29 -0
- package/core/figma-slot.d.ts +13 -0
- package/core/figma-slot.js +29 -0
- package/core/figma.d.ts +13 -0
- package/core/figma.js +29 -0
- package/core/markdown.js +2 -2
- package/core/quotation-block.d.ts +13 -0
- package/core/quotation-block.js +29 -0
- package/dist/cjs/metadata-core.js +73 -1
- package/dist/es2019/metadata-core.js +73 -1
- package/dist/esm/metadata-core.js +73 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +7 -8
- package/svgs/core/bezier-curve.svg +1 -0
- package/svgs/core/chart-pie.svg +1 -1
- package/svgs/core/figma-community.svg +1 -0
- package/svgs/core/figma-component-instance-swap.svg +1 -0
- package/svgs/core/figma-component-instance.svg +1 -0
- package/svgs/core/figma-component.svg +1 -0
- package/svgs/core/figma-slot.svg +1 -0
- package/svgs/core/figma.svg +1 -0
- package/svgs/core/markdown.svg +1 -1
- package/svgs/core/quotation-block.svg +1 -0
- package/offerings.json +0 -69
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @atlaskit/icon
|
|
2
2
|
|
|
3
|
+
## 34.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0e2b29db61e0a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0e2b29db61e0a) -
|
|
8
|
+
This release adds icons in `@atlaskit/icon`.
|
|
9
|
+
|
|
10
|
+
### Added:
|
|
11
|
+
|
|
12
|
+
**`@atlaskit/icon/core`**
|
|
13
|
+
- `bezier-curve`
|
|
14
|
+
- `figma-community`
|
|
15
|
+
- `figma-component-instance-swap`
|
|
16
|
+
- `figma-component-instance`
|
|
17
|
+
- `figma-component`
|
|
18
|
+
- `figma-slot`
|
|
19
|
+
- `figma`
|
|
20
|
+
|
|
21
|
+
## 34.3.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- [`a8a1708dfe5e6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a8a1708dfe5e6) -
|
|
26
|
+
This release adds and updates icons in `@atlaskit/icon`.
|
|
27
|
+
|
|
28
|
+
### Added:
|
|
29
|
+
|
|
30
|
+
**`@atlaskit/icon/core`**
|
|
31
|
+
- `quotation-block`
|
|
32
|
+
|
|
33
|
+
### Updated:
|
|
34
|
+
|
|
35
|
+
**`@atlaskit/icon/core`**
|
|
36
|
+
- `chart-pie`
|
|
37
|
+
- `markdown`
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
|
|
3
43
|
## 34.2.0
|
|
4
44
|
|
|
5
45
|
### 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::54191e6ffff0ae77147e30a73507a938>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const BezierCurveIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default BezierCurveIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b4fea2e330c700bf75c14517d1912484>>
|
|
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: "BezierCurve".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Represents bezier curve functions of vector paths, or animation easing curves.
|
|
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 BezierCurveIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "BezierCurveIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M16 2.5c-2.66 0-4.15.73-5.13 1.73C9.85 5.27 9.3 6.68 8.7 8.27c-.58 1.53-1.22 3.25-2.5 4.55C4.88 14.17 2.97 15 0 15v-1.5c2.66 0 4.15-.73 5.13-1.73C6.15 10.73 6.7 9.32 7.3 7.73c.58-1.53 1.22-3.25 2.5-4.55C11.12 1.83 13.03 1 16 1zm-4.5 11a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5M4.5 1a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m4 12.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5M7.5 1a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
BezierCurveIcon.displayName = 'BezierCurveIcon';
|
|
29
|
+
var _default = exports.default = BezierCurveIcon;
|
package/core/chart-pie.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::67f7aba0aa86c611ea8057a7607189f6>>
|
|
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 ChartPieIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
24
|
name: "ChartPieIcon",
|
|
25
|
-
dangerouslySetGlyph: `<mask id="
|
|
25
|
+
dangerouslySetGlyph: `<mask id="mask0_66923_23419" width="16" height="16" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="currentcolor" d="M5.106 0C5.04.239 5 .49 5 .75v7.5a2.75 2.75 0 0 0 3.462 2.656l7.246-1.941q.15-.04.292-.098V16H0V0zm5.672 4.59-.278.076v-.29q.143.102.278.215M16 2.17A10.3 10.3 0 0 0 13.831 0H16z"/></mask><g mask="url(#mask0_66923_23419)"><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M1.75 8a6.25 6.25 0 1 0 12.5 0 6.25 6.25 0 0 0-12.5 0Z"/></g><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M7.75 8.25V.75c3.47 0 6.39 2.357 7.246 5.558z"/>`
|
|
26
26
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
27
|
}, props));
|
|
28
28
|
ChartPieIcon.displayName = 'ChartPieIcon';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::f23f461862359f989c6091a01de13fcc>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const FigmaCommunityIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default FigmaCommunityIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::0ff619c57a3348dd46ea7077d973da4f>>
|
|
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: "FigmaCommunity".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Reserved for representing Figma Community.
|
|
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 FigmaCommunityIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "FigmaCommunityIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M9.25 2.75a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0m1.5 0a2.75 2.75 0 1 1-5.5 0 2.75 2.75 0 0 1 5.5 0m4.21 1.81a.75.75 0 0 1 1.04.69v7a.75.75 0 0 1-.46.69l-7.25 3a.75.75 0 0 1-1.04-.69v-7a.75.75 0 0 1 .46-.69zM8.75 8.75v5.38l5.75-2.38V6.37z"/><path fill="currentcolor" d="M1.037 4.557A.75.75 0 0 0 0 5.25v7a.75.75 0 0 0 .463.693l7.25 3a.75.75 0 0 0 1.037-.693v-7a.75.75 0 0 0-.463-.693zM7.25 8.75v5.376L1.5 11.748V6.372z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
FigmaCommunityIcon.displayName = 'FigmaCommunityIcon';
|
|
29
|
+
var _default = exports.default = FigmaCommunityIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b3e92d8a6b959dbadca4a90f90eea7e2>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const FigmaComponentInstanceSwapIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default FigmaComponentInstanceSwapIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::3113892432e7a3adfb89237981c032b5>>
|
|
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: "FigmaComponentInstanceSwap".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Reserved for represent component instance swap property in Figma.
|
|
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 FigmaComponentInstanceSwapIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "FigmaComponentInstanceSwapIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M6.586.604a2 2 0 0 1 2.828 0l5.983 5.982a2 2 0 0 1 0 2.828l-5.983 5.983a2 2 0 0 1-2.828 0L2.19 11h2.122l3.334 3.335a.5.5 0 0 0 .708 0l5.982-5.982a.5.5 0 0 0 0-.708L8.354 1.664a.5.5 0 0 0-.708 0L4.31 5.001H2.188z"/><path fill="currentcolor" fill-rule="evenodd" d="M8 5.501a2.5 2.5 0 1 1-2.385 3.25H0v-1.5h5.614A2.5 2.5 0 0 1 8 5.501m0 1.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2" clip-rule="evenodd"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
FigmaComponentInstanceSwapIcon.displayName = 'FigmaComponentInstanceSwapIcon';
|
|
29
|
+
var _default = exports.default = FigmaComponentInstanceSwapIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::31f9b06bf0f2caaa22fa891d00b0d0f9>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const FigmaComponentInstanceIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default FigmaComponentInstanceIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::06cb9ca33012af679794a8f5ecd8d9cc>>
|
|
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: "FigmaComponentInstance".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Reserved for representing Figma component instances.
|
|
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 FigmaComponentInstanceIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "FigmaComponentInstanceIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.586.603a2 2 0 0 1 2.828 0l5.983 5.983a2 2 0 0 1 0 2.828l-5.983 5.982a2 2 0 0 1-2.828 0L.604 9.414a2 2 0 0 1 0-2.828zm1.768 1.06a.5.5 0 0 0-.708 0L1.664 7.647a.5.5 0 0 0 0 .707l5.982 5.983a.5.5 0 0 0 .708 0l5.982-5.983a.5.5 0 0 0 0-.707z" clip-rule="evenodd"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
FigmaComponentInstanceIcon.displayName = 'FigmaComponentInstanceIcon';
|
|
29
|
+
var _default = exports.default = FigmaComponentInstanceIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::54ebeb03d3118295f5cd417651833aee>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const FigmaComponentIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default FigmaComponentIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b367cddbf0976ef733475e17d2696e1b>>
|
|
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: "FigmaComponent".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Reserved for representing Figma source components.
|
|
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 FigmaComponentIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "FigmaComponentIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M7.33.24c.39-.32.95-.32 1.34 0l.08.07 2.31 2.31a1.06 1.06 0 0 1 0 1.5L8.75 6.43a1.06 1.06 0 0 1-1.5 0l-2.31-2.3a1.06 1.06 0 0 1 0-1.5L7.25.32zm0 9.25c.39-.32.95-.32 1.34 0l.08.07 2.31 2.31a1.06 1.06 0 0 1 0 1.5l-2.31 2.31a1.06 1.06 0 0 1-1.5 0l-2.31-2.3a1.06 1.06 0 0 1 0-1.5l2.31-2.31zm4.62-4.62c.39-.32.95-.32 1.34 0l.08.07 2.31 2.31a1.06 1.06 0 0 1 0 1.5l-2.31 2.31a1.06 1.06 0 0 1-1.5 0l-2.3-2.31a1.06 1.06 0 0 1 0-1.5l2.31-2.31zm-9.25 0c.39-.32.95-.32 1.34 0l.08.07 2.31 2.31a1.06 1.06 0 0 1 0 1.5l-2.3 2.31a1.06 1.06 0 0 1-1.5 0L.32 8.75a1.06 1.06 0 0 1 0-1.5l2.3-2.31z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
FigmaComponentIcon.displayName = 'FigmaComponentIcon';
|
|
29
|
+
var _default = exports.default = FigmaComponentIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::2953aba9251eb30c3225e6848b62988f>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const FigmaSlotIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default FigmaSlotIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::53d116ce26938ab6111ffbdfb43be6f9>>
|
|
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: "FigmaSlot".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Reserved for representing slots in Figma.
|
|
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 FigmaSlotIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "FigmaSlotIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 2.5a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V3a.5.5 0 0 0-.5-.5z" clip-rule="evenodd"/><path fill="currentcolor" d="M8.75 5v2.25H11v1.5H8.75V11h-1.5V8.75H5v-1.5h2.25V5z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
FigmaSlotIcon.displayName = 'FigmaSlotIcon';
|
|
29
|
+
var _default = exports.default = FigmaSlotIcon;
|
package/core/figma.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::bc88f797f706f0ae80642846c40ecc58>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const FigmaIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default FigmaIcon;
|
package/core/figma.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::70bee9a86caa9dbbde0512b0b5f536b4>>
|
|
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: "Figma".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Reserved for representing Figma.
|
|
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 FigmaIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "FigmaIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M10.417 0a3.166 3.166 0 0 1 0 6.332H5.583a3.166 3.166 0 0 1 0-6.332zM5.583 1.5a1.666 1.666 0 0 0 0 3.332H7.25V1.5zM8.75 4.832h1.666a1.666 1.666 0 0 0 0-3.332H8.75z" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M8 4.832a.75.75 0 0 1 .75.75v4.832a.75.75 0 0 1-.75.75H5.584a3.166 3.166 0 0 1 0-6.332zm-2.416 1.5a1.666 1.666 0 0 0 0 3.332H7.25V6.332z" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M10.417 4.832a3.166 3.166 0 1 1 0 6.331 3.166 3.166 0 0 1 0-6.331m0 1.5a1.667 1.667 0 1 0 0 3.333 1.667 1.667 0 0 0 0-3.333" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M8 9.664a.75.75 0 0 1 .75.75v2.416a3.166 3.166 0 1 1-3.166-3.166zm-2.416 1.5A1.666 1.666 0 1 0 7.25 12.83v-1.666z" clip-rule="evenodd"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
FigmaIcon.displayName = 'FigmaIcon';
|
|
29
|
+
var _default = exports.default = FigmaIcon;
|
package/core/markdown.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::f344f95c9825310e9fccac7493ea14e3>>
|
|
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 MarkdownIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
24
|
name: "MarkdownIcon",
|
|
25
|
-
dangerouslySetGlyph: `<path fill="currentcolor"
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M1.25 3.5c.293 0 .56.17.682.438L4 8.45l2.068-4.512.052-.096a.75.75 0 0 1 .63-.342h.5a.75.75 0 0 1 .75.75v8.25H6.5V6.595l-1.818 3.968a.75.75 0 0 1-1.364 0L1.5 6.595V12.5H0V4.25a.75.75 0 0 1 .75-.75zM13 3.5v6.111l1.664-2.08 1.172.938-3 3.75a.75.75 0 0 1-1.172 0l-3-3.75 1.172-.938 1.664 2.08V3.5z"/>`
|
|
26
26
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
27
|
}, props));
|
|
28
28
|
MarkdownIcon.displayName = 'MarkdownIcon';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::7ed7cd28cae2eadaa5d2c28645282315>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const QuotationBlockIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default QuotationBlockIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::0f82f0b9830ced32cc77fda273e62034>>
|
|
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: "QuotationBlock".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Preferred for representing block quotes and quote text style in Confluence
|
|
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 QuotationBlockIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "QuotationBlockIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M9.5 9a2 2 0 0 1 2 2v2.94c0 .59-.48 1.06-1.06 1.06H9.06A1.06 1.06 0 0 1 8 13.94v-1.38c0-.59.48-1.06 1.06-1.06H10V11a.5.5 0 0 0-.5-.5H9V9zM6.94 1C7.52 1 8 1.48 8 2.06v1.37c0 .59-.48 1.07-1.06 1.07H6V5a.5.5 0 0 0 .5.5H7V7h-.5a2 2 0 0 1-2-2V2.06C4.5 1.48 4.98 1 5.56 1zM14 9a2 2 0 0 1 2 2v2.94c0 .59-.48 1.06-1.06 1.06h-1.38a1.06 1.06 0 0 1-1.06-1.06v-1.38c0-.59.48-1.06 1.06-1.06h.94V11a.5.5 0 0 0-.5-.5h-.5V9zM2.44 1c.58 0 1.06.48 1.06 1.06v1.37c0 .59-.48 1.06-1.06 1.06H1.5V5a.5.5 0 0 0 .5.5h.5V7H2a2 2 0 0 1-2-2V2.06C0 1.48.48 1 1.06 1z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
QuotationBlockIcon.displayName = 'QuotationBlockIcon';
|
|
29
|
+
var _default = exports.default = QuotationBlockIcon;
|
|
@@ -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::a4eb86ec22225f9a913ef8f15c767f6f>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -331,6 +331,15 @@ var metadata = {
|
|
|
331
331
|
team: 'Design System Team',
|
|
332
332
|
status: 'published'
|
|
333
333
|
},
|
|
334
|
+
'bezier-curve': {
|
|
335
|
+
keywords: ['bezier-curve', 'beziercurve', 'icon', 'motion', 'transition', 'bezier', 'easing', 'animation', 'curve'],
|
|
336
|
+
componentName: 'BezierCurveIcon',
|
|
337
|
+
package: '@atlaskit/icon/core/bezier-curve',
|
|
338
|
+
categorization: 'multi-purpose',
|
|
339
|
+
usage: 'Represents bezier curve functions of vector paths, or animation easing curves.',
|
|
340
|
+
team: 'Design System Team',
|
|
341
|
+
status: 'published'
|
|
342
|
+
},
|
|
334
343
|
board: {
|
|
335
344
|
keywords: ['board', 'icon', 'columns', 'active sprint'],
|
|
336
345
|
componentName: 'BoardIcon',
|
|
@@ -1216,6 +1225,60 @@ var metadata = {
|
|
|
1216
1225
|
team: 'Design System Team',
|
|
1217
1226
|
status: 'published'
|
|
1218
1227
|
},
|
|
1228
|
+
figma: {
|
|
1229
|
+
keywords: ['figma', 'icon', 'figma', 'logo'],
|
|
1230
|
+
componentName: 'FigmaIcon',
|
|
1231
|
+
package: '@atlaskit/icon/core/figma',
|
|
1232
|
+
categorization: 'single-purpose',
|
|
1233
|
+
usage: 'Reserved for representing Figma.',
|
|
1234
|
+
team: 'Design System Team',
|
|
1235
|
+
status: 'published'
|
|
1236
|
+
},
|
|
1237
|
+
'figma-community': {
|
|
1238
|
+
keywords: ['figma-community', 'figmacommunity', 'icon', 'figma', 'community'],
|
|
1239
|
+
componentName: 'FigmaCommunityIcon',
|
|
1240
|
+
package: '@atlaskit/icon/core/figma-community',
|
|
1241
|
+
categorization: 'single-purpose',
|
|
1242
|
+
usage: 'Reserved for representing Figma Community.',
|
|
1243
|
+
team: 'Design System Team',
|
|
1244
|
+
status: 'published'
|
|
1245
|
+
},
|
|
1246
|
+
'figma-component': {
|
|
1247
|
+
keywords: ['figma-component', 'figmacomponent', 'icon', 'figma', 'source', 'component', 'master'],
|
|
1248
|
+
componentName: 'FigmaComponentIcon',
|
|
1249
|
+
package: '@atlaskit/icon/core/figma-component',
|
|
1250
|
+
categorization: 'single-purpose',
|
|
1251
|
+
usage: 'Reserved for representing Figma source components.',
|
|
1252
|
+
team: 'Design System Team',
|
|
1253
|
+
status: 'published'
|
|
1254
|
+
},
|
|
1255
|
+
'figma-component-instance': {
|
|
1256
|
+
keywords: ['figma-component-instance', 'figmacomponentinstance', 'icon', 'figma', 'component', 'instance'],
|
|
1257
|
+
componentName: 'FigmaComponentInstanceIcon',
|
|
1258
|
+
package: '@atlaskit/icon/core/figma-component-instance',
|
|
1259
|
+
categorization: 'single-purpose',
|
|
1260
|
+
usage: 'Reserved for representing Figma component instances.',
|
|
1261
|
+
team: 'Design System Team',
|
|
1262
|
+
status: 'published'
|
|
1263
|
+
},
|
|
1264
|
+
'figma-component-instance-swap': {
|
|
1265
|
+
keywords: ['figma-component-instance-swap', 'figmacomponentinstanceswap', 'icon', 'figma', 'component property', 'instance swap', 'component swap'],
|
|
1266
|
+
componentName: 'FigmaComponentInstanceSwapIcon',
|
|
1267
|
+
package: '@atlaskit/icon/core/figma-component-instance-swap',
|
|
1268
|
+
categorization: 'single-purpose',
|
|
1269
|
+
usage: 'Reserved for represent component instance swap property in Figma.',
|
|
1270
|
+
team: 'Design System Team',
|
|
1271
|
+
status: 'published'
|
|
1272
|
+
},
|
|
1273
|
+
'figma-slot': {
|
|
1274
|
+
keywords: ['figma-slot', 'figmaslot', 'icon', 'figma', 'slot', 'custom content'],
|
|
1275
|
+
componentName: 'FigmaSlotIcon',
|
|
1276
|
+
package: '@atlaskit/icon/core/figma-slot',
|
|
1277
|
+
categorization: 'single-purpose',
|
|
1278
|
+
usage: 'Reserved for representing slots in Figma.',
|
|
1279
|
+
team: 'Design System Team',
|
|
1280
|
+
status: 'published'
|
|
1281
|
+
},
|
|
1219
1282
|
file: {
|
|
1220
1283
|
keywords: ['file', 'document', 'paper', 'page', 'sheet', 'icon', 'document', 'file', 'paper'],
|
|
1221
1284
|
componentName: 'FileIcon',
|
|
@@ -2247,6 +2310,15 @@ var metadata = {
|
|
|
2247
2310
|
team: 'Design System Team',
|
|
2248
2311
|
status: 'published'
|
|
2249
2312
|
},
|
|
2313
|
+
'quotation-block': {
|
|
2314
|
+
keywords: ['quotation-block', 'quotationblock', 'icon', 'quotation marks', 'blockquote'],
|
|
2315
|
+
componentName: 'QuotationBlockIcon',
|
|
2316
|
+
package: '@atlaskit/icon/core/quotation-block',
|
|
2317
|
+
categorization: 'multi-purpose',
|
|
2318
|
+
usage: 'Preferred for representing block quotes and quote text style in Confluence',
|
|
2319
|
+
team: 'Design System Team',
|
|
2320
|
+
status: 'published'
|
|
2321
|
+
},
|
|
2250
2322
|
'quotation-mark': {
|
|
2251
2323
|
keywords: ['quotation-mark', 'quotationmark', 'icon', 'quote', 'testimonial', 'blockquote', 'jira status'],
|
|
2252
2324
|
componentName: 'QuotationMarkIcon',
|
|
@@ -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::a4eb86ec22225f9a913ef8f15c767f6f>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -325,6 +325,15 @@ const metadata = {
|
|
|
325
325
|
team: 'Design System Team',
|
|
326
326
|
status: 'published'
|
|
327
327
|
},
|
|
328
|
+
'bezier-curve': {
|
|
329
|
+
keywords: ['bezier-curve', 'beziercurve', 'icon', 'motion', 'transition', 'bezier', 'easing', 'animation', 'curve'],
|
|
330
|
+
componentName: 'BezierCurveIcon',
|
|
331
|
+
package: '@atlaskit/icon/core/bezier-curve',
|
|
332
|
+
categorization: 'multi-purpose',
|
|
333
|
+
usage: 'Represents bezier curve functions of vector paths, or animation easing curves.',
|
|
334
|
+
team: 'Design System Team',
|
|
335
|
+
status: 'published'
|
|
336
|
+
},
|
|
328
337
|
board: {
|
|
329
338
|
keywords: ['board', 'icon', 'columns', 'active sprint'],
|
|
330
339
|
componentName: 'BoardIcon',
|
|
@@ -1210,6 +1219,60 @@ const metadata = {
|
|
|
1210
1219
|
team: 'Design System Team',
|
|
1211
1220
|
status: 'published'
|
|
1212
1221
|
},
|
|
1222
|
+
figma: {
|
|
1223
|
+
keywords: ['figma', 'icon', 'figma', 'logo'],
|
|
1224
|
+
componentName: 'FigmaIcon',
|
|
1225
|
+
package: '@atlaskit/icon/core/figma',
|
|
1226
|
+
categorization: 'single-purpose',
|
|
1227
|
+
usage: 'Reserved for representing Figma.',
|
|
1228
|
+
team: 'Design System Team',
|
|
1229
|
+
status: 'published'
|
|
1230
|
+
},
|
|
1231
|
+
'figma-community': {
|
|
1232
|
+
keywords: ['figma-community', 'figmacommunity', 'icon', 'figma', 'community'],
|
|
1233
|
+
componentName: 'FigmaCommunityIcon',
|
|
1234
|
+
package: '@atlaskit/icon/core/figma-community',
|
|
1235
|
+
categorization: 'single-purpose',
|
|
1236
|
+
usage: 'Reserved for representing Figma Community.',
|
|
1237
|
+
team: 'Design System Team',
|
|
1238
|
+
status: 'published'
|
|
1239
|
+
},
|
|
1240
|
+
'figma-component': {
|
|
1241
|
+
keywords: ['figma-component', 'figmacomponent', 'icon', 'figma', 'source', 'component', 'master'],
|
|
1242
|
+
componentName: 'FigmaComponentIcon',
|
|
1243
|
+
package: '@atlaskit/icon/core/figma-component',
|
|
1244
|
+
categorization: 'single-purpose',
|
|
1245
|
+
usage: 'Reserved for representing Figma source components.',
|
|
1246
|
+
team: 'Design System Team',
|
|
1247
|
+
status: 'published'
|
|
1248
|
+
},
|
|
1249
|
+
'figma-component-instance': {
|
|
1250
|
+
keywords: ['figma-component-instance', 'figmacomponentinstance', 'icon', 'figma', 'component', 'instance'],
|
|
1251
|
+
componentName: 'FigmaComponentInstanceIcon',
|
|
1252
|
+
package: '@atlaskit/icon/core/figma-component-instance',
|
|
1253
|
+
categorization: 'single-purpose',
|
|
1254
|
+
usage: 'Reserved for representing Figma component instances.',
|
|
1255
|
+
team: 'Design System Team',
|
|
1256
|
+
status: 'published'
|
|
1257
|
+
},
|
|
1258
|
+
'figma-component-instance-swap': {
|
|
1259
|
+
keywords: ['figma-component-instance-swap', 'figmacomponentinstanceswap', 'icon', 'figma', 'component property', 'instance swap', 'component swap'],
|
|
1260
|
+
componentName: 'FigmaComponentInstanceSwapIcon',
|
|
1261
|
+
package: '@atlaskit/icon/core/figma-component-instance-swap',
|
|
1262
|
+
categorization: 'single-purpose',
|
|
1263
|
+
usage: 'Reserved for represent component instance swap property in Figma.',
|
|
1264
|
+
team: 'Design System Team',
|
|
1265
|
+
status: 'published'
|
|
1266
|
+
},
|
|
1267
|
+
'figma-slot': {
|
|
1268
|
+
keywords: ['figma-slot', 'figmaslot', 'icon', 'figma', 'slot', 'custom content'],
|
|
1269
|
+
componentName: 'FigmaSlotIcon',
|
|
1270
|
+
package: '@atlaskit/icon/core/figma-slot',
|
|
1271
|
+
categorization: 'single-purpose',
|
|
1272
|
+
usage: 'Reserved for representing slots in Figma.',
|
|
1273
|
+
team: 'Design System Team',
|
|
1274
|
+
status: 'published'
|
|
1275
|
+
},
|
|
1213
1276
|
file: {
|
|
1214
1277
|
keywords: ['file', 'document', 'paper', 'page', 'sheet', 'icon', 'document', 'file', 'paper'],
|
|
1215
1278
|
componentName: 'FileIcon',
|
|
@@ -2241,6 +2304,15 @@ const metadata = {
|
|
|
2241
2304
|
team: 'Design System Team',
|
|
2242
2305
|
status: 'published'
|
|
2243
2306
|
},
|
|
2307
|
+
'quotation-block': {
|
|
2308
|
+
keywords: ['quotation-block', 'quotationblock', 'icon', 'quotation marks', 'blockquote'],
|
|
2309
|
+
componentName: 'QuotationBlockIcon',
|
|
2310
|
+
package: '@atlaskit/icon/core/quotation-block',
|
|
2311
|
+
categorization: 'multi-purpose',
|
|
2312
|
+
usage: 'Preferred for representing block quotes and quote text style in Confluence',
|
|
2313
|
+
team: 'Design System Team',
|
|
2314
|
+
status: 'published'
|
|
2315
|
+
},
|
|
2244
2316
|
'quotation-mark': {
|
|
2245
2317
|
keywords: ['quotation-mark', 'quotationmark', 'icon', 'quote', 'testimonial', 'blockquote', 'jira status'],
|
|
2246
2318
|
componentName: 'QuotationMarkIcon',
|
|
@@ -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::a4eb86ec22225f9a913ef8f15c767f6f>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -325,6 +325,15 @@ var metadata = {
|
|
|
325
325
|
team: 'Design System Team',
|
|
326
326
|
status: 'published'
|
|
327
327
|
},
|
|
328
|
+
'bezier-curve': {
|
|
329
|
+
keywords: ['bezier-curve', 'beziercurve', 'icon', 'motion', 'transition', 'bezier', 'easing', 'animation', 'curve'],
|
|
330
|
+
componentName: 'BezierCurveIcon',
|
|
331
|
+
package: '@atlaskit/icon/core/bezier-curve',
|
|
332
|
+
categorization: 'multi-purpose',
|
|
333
|
+
usage: 'Represents bezier curve functions of vector paths, or animation easing curves.',
|
|
334
|
+
team: 'Design System Team',
|
|
335
|
+
status: 'published'
|
|
336
|
+
},
|
|
328
337
|
board: {
|
|
329
338
|
keywords: ['board', 'icon', 'columns', 'active sprint'],
|
|
330
339
|
componentName: 'BoardIcon',
|
|
@@ -1210,6 +1219,60 @@ var metadata = {
|
|
|
1210
1219
|
team: 'Design System Team',
|
|
1211
1220
|
status: 'published'
|
|
1212
1221
|
},
|
|
1222
|
+
figma: {
|
|
1223
|
+
keywords: ['figma', 'icon', 'figma', 'logo'],
|
|
1224
|
+
componentName: 'FigmaIcon',
|
|
1225
|
+
package: '@atlaskit/icon/core/figma',
|
|
1226
|
+
categorization: 'single-purpose',
|
|
1227
|
+
usage: 'Reserved for representing Figma.',
|
|
1228
|
+
team: 'Design System Team',
|
|
1229
|
+
status: 'published'
|
|
1230
|
+
},
|
|
1231
|
+
'figma-community': {
|
|
1232
|
+
keywords: ['figma-community', 'figmacommunity', 'icon', 'figma', 'community'],
|
|
1233
|
+
componentName: 'FigmaCommunityIcon',
|
|
1234
|
+
package: '@atlaskit/icon/core/figma-community',
|
|
1235
|
+
categorization: 'single-purpose',
|
|
1236
|
+
usage: 'Reserved for representing Figma Community.',
|
|
1237
|
+
team: 'Design System Team',
|
|
1238
|
+
status: 'published'
|
|
1239
|
+
},
|
|
1240
|
+
'figma-component': {
|
|
1241
|
+
keywords: ['figma-component', 'figmacomponent', 'icon', 'figma', 'source', 'component', 'master'],
|
|
1242
|
+
componentName: 'FigmaComponentIcon',
|
|
1243
|
+
package: '@atlaskit/icon/core/figma-component',
|
|
1244
|
+
categorization: 'single-purpose',
|
|
1245
|
+
usage: 'Reserved for representing Figma source components.',
|
|
1246
|
+
team: 'Design System Team',
|
|
1247
|
+
status: 'published'
|
|
1248
|
+
},
|
|
1249
|
+
'figma-component-instance': {
|
|
1250
|
+
keywords: ['figma-component-instance', 'figmacomponentinstance', 'icon', 'figma', 'component', 'instance'],
|
|
1251
|
+
componentName: 'FigmaComponentInstanceIcon',
|
|
1252
|
+
package: '@atlaskit/icon/core/figma-component-instance',
|
|
1253
|
+
categorization: 'single-purpose',
|
|
1254
|
+
usage: 'Reserved for representing Figma component instances.',
|
|
1255
|
+
team: 'Design System Team',
|
|
1256
|
+
status: 'published'
|
|
1257
|
+
},
|
|
1258
|
+
'figma-component-instance-swap': {
|
|
1259
|
+
keywords: ['figma-component-instance-swap', 'figmacomponentinstanceswap', 'icon', 'figma', 'component property', 'instance swap', 'component swap'],
|
|
1260
|
+
componentName: 'FigmaComponentInstanceSwapIcon',
|
|
1261
|
+
package: '@atlaskit/icon/core/figma-component-instance-swap',
|
|
1262
|
+
categorization: 'single-purpose',
|
|
1263
|
+
usage: 'Reserved for represent component instance swap property in Figma.',
|
|
1264
|
+
team: 'Design System Team',
|
|
1265
|
+
status: 'published'
|
|
1266
|
+
},
|
|
1267
|
+
'figma-slot': {
|
|
1268
|
+
keywords: ['figma-slot', 'figmaslot', 'icon', 'figma', 'slot', 'custom content'],
|
|
1269
|
+
componentName: 'FigmaSlotIcon',
|
|
1270
|
+
package: '@atlaskit/icon/core/figma-slot',
|
|
1271
|
+
categorization: 'single-purpose',
|
|
1272
|
+
usage: 'Reserved for representing slots in Figma.',
|
|
1273
|
+
team: 'Design System Team',
|
|
1274
|
+
status: 'published'
|
|
1275
|
+
},
|
|
1213
1276
|
file: {
|
|
1214
1277
|
keywords: ['file', 'document', 'paper', 'page', 'sheet', 'icon', 'document', 'file', 'paper'],
|
|
1215
1278
|
componentName: 'FileIcon',
|
|
@@ -2241,6 +2304,15 @@ var metadata = {
|
|
|
2241
2304
|
team: 'Design System Team',
|
|
2242
2305
|
status: 'published'
|
|
2243
2306
|
},
|
|
2307
|
+
'quotation-block': {
|
|
2308
|
+
keywords: ['quotation-block', 'quotationblock', 'icon', 'quotation marks', 'blockquote'],
|
|
2309
|
+
componentName: 'QuotationBlockIcon',
|
|
2310
|
+
package: '@atlaskit/icon/core/quotation-block',
|
|
2311
|
+
categorization: 'multi-purpose',
|
|
2312
|
+
usage: 'Preferred for representing block quotes and quote text style in Confluence',
|
|
2313
|
+
team: 'Design System Team',
|
|
2314
|
+
status: 'published'
|
|
2315
|
+
},
|
|
2244
2316
|
'quotation-mark': {
|
|
2245
2317
|
keywords: ['quotation-mark', 'quotationmark', 'icon', 'quote', 'testimonial', 'blockquote', 'jira status'],
|
|
2246
2318
|
componentName: 'QuotationMarkIcon',
|
|
@@ -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::a4eb86ec22225f9a913ef8f15c767f6f>>
|
|
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::a4eb86ec22225f9a913ef8f15c767f6f>>
|
|
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",
|
|
3
|
-
"version": "34.
|
|
3
|
+
"version": "34.4.0",
|
|
4
4
|
"description": "An icon is a symbol representing a command, device, directory, or common action.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
45
|
-
"@atlaskit/tile": "^1.
|
|
45
|
+
"@atlaskit/tile": "^1.1.0",
|
|
46
46
|
"@atlaskit/tokens": "^13.0.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0",
|
|
48
48
|
"@compiled/react": "^0.20.0"
|
|
@@ -56,23 +56,22 @@
|
|
|
56
56
|
"@af/integration-testing": "workspace:^",
|
|
57
57
|
"@af/visual-regression": "workspace:^",
|
|
58
58
|
"@atlaskit/button": "^23.11.0",
|
|
59
|
-
"@atlaskit/code": "^17.
|
|
59
|
+
"@atlaskit/code": "^17.5.0",
|
|
60
60
|
"@atlaskit/css": "^0.19.0",
|
|
61
61
|
"@atlaskit/docs": "^11.8.0",
|
|
62
62
|
"@atlaskit/form": "^15.5.0",
|
|
63
63
|
"@atlaskit/heading": "^5.4.0",
|
|
64
64
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
65
|
-
"@atlaskit/icon-object": "^7.5.0",
|
|
66
65
|
"@atlaskit/link": "^3.4.0",
|
|
67
|
-
"@atlaskit/logo": "^20.
|
|
66
|
+
"@atlaskit/logo": "^20.1.0",
|
|
68
67
|
"@atlaskit/menu": "^8.5.0",
|
|
69
|
-
"@atlaskit/modal-dialog": "^14.
|
|
68
|
+
"@atlaskit/modal-dialog": "^14.18.0",
|
|
70
69
|
"@atlaskit/primitives": "^19.0.0",
|
|
71
70
|
"@atlaskit/section-message": "^8.12.0",
|
|
72
71
|
"@atlaskit/textfield": "^8.3.0",
|
|
73
|
-
"@atlaskit/theme": "^23.
|
|
72
|
+
"@atlaskit/theme": "^23.2.0",
|
|
74
73
|
"@atlaskit/toggle": "^15.6.0",
|
|
75
|
-
"@atlaskit/tooltip": "^
|
|
74
|
+
"@atlaskit/tooltip": "^22.0.0",
|
|
76
75
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
77
76
|
"@atlassian/react-compiler-gating": "workspace:^",
|
|
78
77
|
"@atlassian/ssr-tests": "workspace:^",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M16 2.5c-2.66 0-4.15.73-5.13 1.73C9.85 5.27 9.3 6.68 8.7 8.27c-.58 1.53-1.22 3.25-2.5 4.55C4.88 14.17 2.97 15 0 15v-1.5c2.66 0 4.15-.73 5.13-1.73C6.15 10.73 6.7 9.32 7.3 7.73c.58-1.53 1.22-3.25 2.5-4.55C11.12 1.83 13.03 1 16 1zm-4.5 11a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5M4.5 1a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m4 12.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5M7.5 1a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5"/></svg>
|
package/svgs/core/chart-pie.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><mask id="
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><mask id="mask0_66923_23419" width="16" height="16" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="currentcolor" d="M5.106 0C5.04.239 5 .49 5 .75v7.5a2.75 2.75 0 0 0 3.462 2.656l7.246-1.941q.15-.04.292-.098V16H0V0zm5.672 4.59-.278.076v-.29q.143.102.278.215M16 2.17A10.3 10.3 0 0 0 13.831 0H16z"/></mask><g mask="url(#mask0_66923_23419)"><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M1.75 8a6.25 6.25 0 1 0 12.5 0 6.25 6.25 0 0 0-12.5 0Z"/></g><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M7.75 8.25V.75c3.47 0 6.39 2.357 7.246 5.558z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M9.25 2.75a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0m1.5 0a2.75 2.75 0 1 1-5.5 0 2.75 2.75 0 0 1 5.5 0m4.21 1.81a.75.75 0 0 1 1.04.69v7a.75.75 0 0 1-.46.69l-7.25 3a.75.75 0 0 1-1.04-.69v-7a.75.75 0 0 1 .46-.69zM8.75 8.75v5.38l5.75-2.38V6.37z"/><path fill="currentcolor" d="M1.037 4.557A.75.75 0 0 0 0 5.25v7a.75.75 0 0 0 .463.693l7.25 3a.75.75 0 0 0 1.037-.693v-7a.75.75 0 0 0-.463-.693zM7.25 8.75v5.376L1.5 11.748V6.372z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6.586.604a2 2 0 0 1 2.828 0l5.983 5.982a2 2 0 0 1 0 2.828l-5.983 5.983a2 2 0 0 1-2.828 0L2.19 11h2.122l3.334 3.335a.5.5 0 0 0 .708 0l5.982-5.982a.5.5 0 0 0 0-.708L8.354 1.664a.5.5 0 0 0-.708 0L4.31 5.001H2.188z"/><path fill="currentcolor" fill-rule="evenodd" d="M8 5.501a2.5 2.5 0 1 1-2.385 3.25H0v-1.5h5.614A2.5 2.5 0 0 1 8 5.501m0 1.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M6.586.603a2 2 0 0 1 2.828 0l5.983 5.983a2 2 0 0 1 0 2.828l-5.983 5.982a2 2 0 0 1-2.828 0L.604 9.414a2 2 0 0 1 0-2.828zm1.768 1.06a.5.5 0 0 0-.708 0L1.664 7.647a.5.5 0 0 0 0 .707l5.982 5.983a.5.5 0 0 0 .708 0l5.982-5.983a.5.5 0 0 0 0-.707z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M7.33.24c.39-.32.95-.32 1.34 0l.08.07 2.31 2.31a1.06 1.06 0 0 1 0 1.5L8.75 6.43a1.06 1.06 0 0 1-1.5 0l-2.31-2.3a1.06 1.06 0 0 1 0-1.5L7.25.32zm0 9.25c.39-.32.95-.32 1.34 0l.08.07 2.31 2.31a1.06 1.06 0 0 1 0 1.5l-2.31 2.31a1.06 1.06 0 0 1-1.5 0l-2.31-2.3a1.06 1.06 0 0 1 0-1.5l2.31-2.31zm4.62-4.62c.39-.32.95-.32 1.34 0l.08.07 2.31 2.31a1.06 1.06 0 0 1 0 1.5l-2.31 2.31a1.06 1.06 0 0 1-1.5 0l-2.3-2.31a1.06 1.06 0 0 1 0-1.5l2.31-2.31zm-9.25 0c.39-.32.95-.32 1.34 0l.08.07 2.31 2.31a1.06 1.06 0 0 1 0 1.5l-2.3 2.31a1.06 1.06 0 0 1-1.5 0L.32 8.75a1.06 1.06 0 0 1 0-1.5l2.3-2.31z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zM3 2.5a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V3a.5.5 0 0 0-.5-.5z" clip-rule="evenodd"/><path fill="currentcolor" d="M8.75 5v2.25H11v1.5H8.75V11h-1.5V8.75H5v-1.5h2.25V5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M10.417 0a3.166 3.166 0 0 1 0 6.332H5.583a3.166 3.166 0 0 1 0-6.332zM5.583 1.5a1.666 1.666 0 0 0 0 3.332H7.25V1.5zM8.75 4.832h1.666a1.666 1.666 0 0 0 0-3.332H8.75z" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M8 4.832a.75.75 0 0 1 .75.75v4.832a.75.75 0 0 1-.75.75H5.584a3.166 3.166 0 0 1 0-6.332zm-2.416 1.5a1.666 1.666 0 0 0 0 3.332H7.25V6.332z" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M10.417 4.832a3.166 3.166 0 1 1 0 6.331 3.166 3.166 0 0 1 0-6.331m0 1.5a1.667 1.667 0 1 0 0 3.333 1.667 1.667 0 0 0 0-3.333" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M8 9.664a.75.75 0 0 1 .75.75v2.416a3.166 3.166 0 1 1-3.166-3.166zm-2.416 1.5A1.666 1.666 0 1 0 7.25 12.83v-1.666z" clip-rule="evenodd"/></svg>
|
package/svgs/core/markdown.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg width="
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M1.25 3.5c.293 0 .56.17.682.438L4 8.45l2.068-4.512.052-.096a.75.75 0 0 1 .63-.342h.5a.75.75 0 0 1 .75.75v8.25H6.5V6.595l-1.818 3.968a.75.75 0 0 1-1.364 0L1.5 6.595V12.5H0V4.25a.75.75 0 0 1 .75-.75zM13 3.5v6.111l1.664-2.08 1.172.938-3 3.75a.75.75 0 0 1-1.172 0l-3-3.75 1.172-.938 1.664 2.08V3.5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M9.5 9a2 2 0 0 1 2 2v2.94c0 .59-.48 1.06-1.06 1.06H9.06A1.06 1.06 0 0 1 8 13.94v-1.38c0-.59.48-1.06 1.06-1.06H10V11a.5.5 0 0 0-.5-.5H9V9zM6.94 1C7.52 1 8 1.48 8 2.06v1.37c0 .59-.48 1.07-1.06 1.07H6V5a.5.5 0 0 0 .5.5H7V7h-.5a2 2 0 0 1-2-2V2.06C4.5 1.48 4.98 1 5.56 1zM14 9a2 2 0 0 1 2 2v2.94c0 .59-.48 1.06-1.06 1.06h-1.38a1.06 1.06 0 0 1-1.06-1.06v-1.38c0-.59.48-1.06 1.06-1.06h.94V11a.5.5 0 0 0-.5-.5h-.5V9zM2.44 1c.58 0 1.06.48 1.06 1.06v1.37c0 .59-.48 1.06-1.06 1.06H1.5V5a.5.5 0 0 0 .5.5h.5V7H2a2 2 0 0 1-2-2V2.06C0 1.48.48 1 1.06 1z"/></svg>
|
package/offerings.json
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"name": "Icon",
|
|
4
|
-
"package": "@atlaskit/icon",
|
|
5
|
-
"import": {
|
|
6
|
-
"name": "Icon",
|
|
7
|
-
"package": "@atlaskit/icon",
|
|
8
|
-
"type": "default"
|
|
9
|
-
},
|
|
10
|
-
"keywords": ["icon", "symbol", "command", "device", "directory", "action", "visual"],
|
|
11
|
-
"categories": ["images-and-icons"],
|
|
12
|
-
"shortDescription": "An icon is a symbol representing a command, device, directory, or common action.",
|
|
13
|
-
"status": "general-availability",
|
|
14
|
-
"accessibilityGuidelines": [
|
|
15
|
-
"Provide appropriate alt text or labels for icons",
|
|
16
|
-
"Use meaningful icon choices that convey clear meaning",
|
|
17
|
-
"Ensure sufficient color contrast for icon visibility",
|
|
18
|
-
"Consider icon size for touch targets",
|
|
19
|
-
"Use consistent iconography across the interface"
|
|
20
|
-
],
|
|
21
|
-
"usageGuidelines": [
|
|
22
|
-
"Use icons to enhance visual communication",
|
|
23
|
-
"Choose icons that clearly represent their function",
|
|
24
|
-
"Maintain consistent icon style and size",
|
|
25
|
-
"Use appropriate icon sizes for different contexts",
|
|
26
|
-
"Consider cultural and contextual icon meanings"
|
|
27
|
-
],
|
|
28
|
-
"contentGuidelines": [
|
|
29
|
-
"Use clear, recognizable icon symbols",
|
|
30
|
-
"Ensure icons are culturally appropriate",
|
|
31
|
-
"Maintain visual consistency across icon sets",
|
|
32
|
-
"Use appropriate icon labels and descriptions"
|
|
33
|
-
],
|
|
34
|
-
"generativeInstructions": "./docs/ai/icon-instructions.md",
|
|
35
|
-
"examples": ["./examples/ai/icon.tsx"]
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"name": "IconTile",
|
|
39
|
-
"package": "@atlaskit/icon",
|
|
40
|
-
"import": {
|
|
41
|
-
"name": "IconTile",
|
|
42
|
-
"package": "@atlaskit/icon",
|
|
43
|
-
"type": "named"
|
|
44
|
-
},
|
|
45
|
-
"keywords": ["icon", "tile", "container", "background", "shape", "appearance"],
|
|
46
|
-
"categories": ["images-and-icons"],
|
|
47
|
-
"shortDescription": "A tile component that displays an icon with customizable background, shape, and appearance.",
|
|
48
|
-
"status": "release-candidate",
|
|
49
|
-
"accessibilityGuidelines": [
|
|
50
|
-
"Provide appropriate labels for icon tiles",
|
|
51
|
-
"Ensure sufficient color contrast",
|
|
52
|
-
"Use meaningful icon choices",
|
|
53
|
-
"Consider touch target sizes"
|
|
54
|
-
],
|
|
55
|
-
"usageGuidelines": [
|
|
56
|
-
"Use for icon presentation with background styling",
|
|
57
|
-
"Choose appropriate shapes and appearances",
|
|
58
|
-
"Maintain consistent sizing across tiles",
|
|
59
|
-
"Use for visual emphasis or categorization"
|
|
60
|
-
],
|
|
61
|
-
"contentGuidelines": [
|
|
62
|
-
"Use clear, recognizable icons",
|
|
63
|
-
"Choose appropriate colors and shapes",
|
|
64
|
-
"Ensure visual consistency across tiles"
|
|
65
|
-
],
|
|
66
|
-
"generativeInstructions": "./docs/ai/icon-tile-instructions.md",
|
|
67
|
-
"examples": ["./examples/ai/icon-tile.tsx"]
|
|
68
|
-
}
|
|
69
|
-
]
|