@atlaskit/icon 34.3.0 → 34.5.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 +31 -0
- package/afm-cc/tsconfig.json +0 -1
- package/afm-products/tsconfig.json +0 -1
- 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/paint-bucket.js +2 -2
- 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 +8 -9
- package/skeleton/package.json +17 -0
- 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/paint-bucket.svg +1 -1
- package/afm-jira/tsconfig.json +0 -34
- package/offerings.json +0 -69
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @atlaskit/icon
|
|
2
2
|
|
|
3
|
+
## 34.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`2839666e3fb27`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2839666e3fb27) -
|
|
8
|
+
This release updates icons in `@atlaskit/icon`.
|
|
9
|
+
|
|
10
|
+
### Updated:
|
|
11
|
+
|
|
12
|
+
**`@atlaskit/icon/core`**
|
|
13
|
+
- `chart-pie`
|
|
14
|
+
- `paint-bucket`
|
|
15
|
+
|
|
16
|
+
## 34.4.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- [`0e2b29db61e0a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0e2b29db61e0a) -
|
|
21
|
+
This release adds icons in `@atlaskit/icon`.
|
|
22
|
+
|
|
23
|
+
### Added:
|
|
24
|
+
|
|
25
|
+
**`@atlaskit/icon/core`**
|
|
26
|
+
- `bezier-curve`
|
|
27
|
+
- `figma-community`
|
|
28
|
+
- `figma-component-instance-swap`
|
|
29
|
+
- `figma-component-instance`
|
|
30
|
+
- `figma-component`
|
|
31
|
+
- `figma-slot`
|
|
32
|
+
- `figma`
|
|
33
|
+
|
|
3
34
|
## 34.3.0
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
package/afm-cc/tsconfig.json
CHANGED
|
@@ -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::f98839aa6331f989febbeba007e97e95>>
|
|
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_67704_26611" 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_67704_26611)"><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/paint-bucket.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::ffcd82f5e72dee881cb164e31ad1b731>>
|
|
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 PaintBucketIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
24
|
name: "PaintBucketIcon",
|
|
25
|
-
dangerouslySetGlyph: `<path fill="currentcolor"
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M5.5 1.94 6.78.66A1.38 1.38 0 0 1 8.62.57l.11.09 5.62 5.62a1.38 1.38 0 0 1 0 1.95l-5.73 5.73a2.63 2.63 0 0 1-3.71 0l-3.85-3.85a2.63 2.63 0 0 1 0-3.71L4.44 3 2.6 1.15 3.66.09zM1.81 8.5c.05.2.14.39.3.55l3.85 3.85c.44.44 1.15.44 1.59 0l4.39-4.39zM6.57 3l1.22 1.22-1.06 1.06L5.5 4.06 2.56 7h10.38L7.75 1.81zm7.68 8.25c.27 0 .52.14.65.38v.01l.01.02.03.06.12.21c.1.18.23.42.36.68s.27.55.37.82c.09.23.21.56.21.86 0 .97-.8 1.73-1.75 1.73s-1.75-.75-1.75-1.72c0-.29.12-.63.21-.86.11-.27.24-.56.37-.82s.26-.5.36-.68l.12-.21.03-.06.01-.02v-.01a.75.75 0 0 1 .65-.38"/>`
|
|
26
26
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
27
|
}, props));
|
|
28
28
|
PaintBucketIcon.displayName = 'PaintBucketIcon';
|
|
@@ -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';
|