@atlaskit/icon 34.3.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 +18 -0
- package/core/bezier-curve.d.ts +13 -0
- package/core/bezier-curve.js +29 -0
- 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/deprecated-core/package.json +17 -0
- package/dist/cjs/entry-points/constants.js +6 -0
- package/dist/cjs/entry-points/deprecated-core.js +13 -0
- package/dist/cjs/entry-points/icon-new.js +20 -0
- package/dist/cjs/entry-points/icon-tile.js +13 -0
- package/dist/cjs/entry-points/metadata-core.js +13 -0
- package/dist/cjs/entry-points/skeleton.js +13 -0
- package/dist/cjs/metadata-core.js +64 -1
- package/dist/es2019/entry-points/constants.js +1 -1
- package/dist/es2019/entry-points/deprecated-core.js +1 -0
- package/dist/es2019/entry-points/icon-new.js +2 -0
- package/dist/es2019/entry-points/icon-tile.js +1 -0
- package/dist/es2019/entry-points/metadata-core.js +1 -0
- package/dist/es2019/entry-points/skeleton.js +1 -0
- package/dist/es2019/metadata-core.js +64 -1
- package/dist/esm/entry-points/constants.js +1 -1
- package/dist/esm/entry-points/deprecated-core.js +1 -0
- package/dist/esm/entry-points/icon-new.js +2 -0
- package/dist/esm/entry-points/icon-tile.js +1 -0
- package/dist/esm/entry-points/metadata-core.js +1 -0
- package/dist/esm/entry-points/skeleton.js +1 -0
- package/dist/esm/metadata-core.js +64 -1
- package/dist/types/entry-points/constants.d.ts +1 -1
- package/dist/types/entry-points/deprecated-core.d.ts +1 -0
- package/dist/types/entry-points/icon-new.d.ts +3 -0
- package/dist/types/entry-points/icon-tile.d.ts +1 -0
- package/dist/types/entry-points/metadata-core.d.ts +1 -0
- package/dist/types/entry-points/skeleton.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/entry-points/constants.d.ts +1 -1
- package/dist/types-ts4.5/entry-points/deprecated-core.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/icon-new.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/icon-tile.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/metadata-core.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/skeleton.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/icon-new/package.json +17 -0
- package/icon-tile/package.json +17 -0
- package/metadata-core/package.json +17 -0
- package/package.json +7 -8
- package/skeleton/package.json +17 -0
- package/svgs/core/bezier-curve.svg +1 -0
- 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/offerings.json +0 -69
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
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
|
+
|
|
3
21
|
## 34.3.0
|
|
4
22
|
|
|
5
23
|
### 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;
|
|
@@ -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;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/icon/deprecated-core",
|
|
3
|
+
"main": "../dist/cjs/entry-points/deprecated-core.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/deprecated-core.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/deprecated-core.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/deprecated-core.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/deprecated-core.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
+
Object.defineProperty(exports, "dimensions", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _constants.dimensions;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
6
12
|
Object.defineProperty(exports, "sizeMap", {
|
|
7
13
|
enumerable: true,
|
|
8
14
|
get: function get() {
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _deprecatedCore.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _deprecatedCore = _interopRequireDefault(require("../deprecated-core"));
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "Icon", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _iconNew.Icon;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
Object.defineProperty(exports, "default", {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function get() {
|
|
16
|
+
return _iconNew.default;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _iconNew = _interopRequireWildcard(require("../components/icon-new"));
|
|
20
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _index.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _index = _interopRequireDefault(require("../components/icon-tile/index"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _metadataCore.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _metadataCore = _interopRequireDefault(require("../metadata-core"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _skeleton.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _skeleton = _interopRequireDefault(require("../components/skeleton"));
|
|
@@ -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',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { sizeMap, sizes } from '../constants';
|
|
1
|
+
export { dimensions, sizeMap, sizes } from '../constants';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../deprecated-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../components/icon-tile/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../metadata-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../components/skeleton';
|
|
@@ -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',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { sizeMap, sizes } from '../constants';
|
|
1
|
+
export { dimensions, sizeMap, sizes } from '../constants';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../deprecated-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../components/icon-tile/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../metadata-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../components/skeleton';
|
|
@@ -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',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { sizeMap, sizes } from '../constants';
|
|
1
|
+
export { dimensions, sizeMap, sizes } from '../constants';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../deprecated-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../components/icon-tile/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../metadata-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../components/skeleton';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { CustomGlyphProps, GlyphProps, IconProps,
|
|
1
|
+
export type { CustomGlyphProps, GlyphProps, IconProps, IconSize, IconSpacing, IconTileAppearance, IconTileProps, IconTileSize, LEGACY_Metadata, LegacyIconTileSize, NewCoreIconProps, NewGlyphColorProps, NewIconProps, NewIconTileSize, SVGProps, Size, SkeletonProps, UNSAFE_NewCoreGlyphProps, UNSAFE_NewGlyphProps, } from '../types';
|
|
@@ -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 {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { sizeMap, sizes } from '../constants';
|
|
1
|
+
export { dimensions, sizeMap, sizes } from '../constants';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../deprecated-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../components/icon-tile/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../metadata-core';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../components/skeleton';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { CustomGlyphProps, GlyphProps, IconProps,
|
|
1
|
+
export type { CustomGlyphProps, GlyphProps, IconProps, IconSize, IconSpacing, IconTileAppearance, IconTileProps, IconTileSize, LEGACY_Metadata, LegacyIconTileSize, NewCoreIconProps, NewGlyphColorProps, NewIconProps, NewIconTileSize, SVGProps, Size, SkeletonProps, UNSAFE_NewCoreGlyphProps, UNSAFE_NewGlyphProps, } from '../types';
|
|
@@ -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 {
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/icon/icon-new",
|
|
3
|
+
"main": "../dist/cjs/entry-points/icon-new.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/icon-new.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/icon-new.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/icon-new.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/icon-new.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/icon/icon-tile",
|
|
3
|
+
"main": "../dist/cjs/entry-points/icon-tile.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/icon-tile.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/icon-tile.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/icon-tile.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/icon-tile.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/icon/metadata-core",
|
|
3
|
+
"main": "../dist/cjs/entry-points/metadata-core.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/metadata-core.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/metadata-core.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/metadata-core.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/metadata-core.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
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,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/icon/skeleton",
|
|
3
|
+
"main": "../dist/cjs/entry-points/skeleton.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/skeleton.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/skeleton.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/skeleton.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/skeleton.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -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>
|
|
@@ -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/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
|
-
]
|