@atlaskit/icon 21.12.4 → 21.12.5
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 +6 -0
- package/dist/cjs/components/icon.js +1 -1
- package/dist/cjs/components/skeleton.js +1 -1
- package/dist/cjs/components/svg.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/icon.js +1 -1
- package/dist/es2019/components/skeleton.js +1 -1
- package/dist/es2019/components/svg.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/icon.js +1 -1
- package/dist/esm/components/skeleton.js +1 -1
- package/dist/esm/components/svg.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +5 -6
- package/report.api.md +13 -0
- package/tmp/api-report-tmp.d.ts +86 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/icon
|
|
2
2
|
|
|
3
|
+
## 21.12.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`599bfe90ee3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/599bfe90ee3) - Internal change to use shape tokens. There is no expected visual change.
|
|
8
|
+
|
|
3
9
|
## 21.12.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -119,7 +119,7 @@ var Icon = /*#__PURE__*/(0, _react.memo)(function Icon(props) {
|
|
|
119
119
|
// We could then simplify how common styles are dealt with simply by encapsualting them
|
|
120
120
|
// at their appropriate level and/or having a singular approach to css variables in the package
|
|
121
121
|
dimensions &&
|
|
122
|
-
// eslint-disable-next-line @
|
|
122
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
123
123
|
(0, _react2.css)({
|
|
124
124
|
width: dimensions.width,
|
|
125
125
|
height: dimensions.height,
|
|
@@ -11,7 +11,7 @@ var _utils = require("./utils");
|
|
|
11
11
|
var _styles = require("./styles");
|
|
12
12
|
/** @jsx jsx */
|
|
13
13
|
|
|
14
|
-
// eslint-disable-next-line @
|
|
14
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
15
15
|
var svgStyles = (0, _react2.css)(_styles.commonSVGStyles);
|
|
16
16
|
|
|
17
17
|
/**
|
package/dist/cjs/version.json
CHANGED
|
@@ -113,7 +113,7 @@ export const Icon = /*#__PURE__*/memo(function Icon(props) {
|
|
|
113
113
|
// We could then simplify how common styles are dealt with simply by encapsualting them
|
|
114
114
|
// at their appropriate level and/or having a singular approach to css variables in the package
|
|
115
115
|
dimensions &&
|
|
116
|
-
// eslint-disable-next-line @
|
|
116
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
117
117
|
css({
|
|
118
118
|
width: dimensions.width,
|
|
119
119
|
height: dimensions.height,
|
|
@@ -5,7 +5,7 @@ import { useGlobalTheme } from '@atlaskit/theme/components';
|
|
|
5
5
|
import { getBackground } from './utils';
|
|
6
6
|
import { commonSVGStyles, sizeStyleMap } from './styles';
|
|
7
7
|
|
|
8
|
-
// eslint-disable-next-line @
|
|
8
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
9
9
|
const svgStyles = css(commonSVGStyles);
|
|
10
10
|
|
|
11
11
|
/**
|
package/dist/es2019/version.json
CHANGED
|
@@ -114,7 +114,7 @@ export var Icon = /*#__PURE__*/memo(function Icon(props) {
|
|
|
114
114
|
// We could then simplify how common styles are dealt with simply by encapsualting them
|
|
115
115
|
// at their appropriate level and/or having a singular approach to css variables in the package
|
|
116
116
|
dimensions &&
|
|
117
|
-
// eslint-disable-next-line @
|
|
117
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
118
118
|
css({
|
|
119
119
|
width: dimensions.width,
|
|
120
120
|
height: dimensions.height,
|
|
@@ -5,7 +5,7 @@ import { useGlobalTheme } from '@atlaskit/theme/components';
|
|
|
5
5
|
import { getBackground } from './utils';
|
|
6
6
|
import { commonSVGStyles, sizeStyleMap } from './styles';
|
|
7
7
|
|
|
8
|
-
// eslint-disable-next-line @
|
|
8
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
9
9
|
var svgStyles = css(commonSVGStyles);
|
|
10
10
|
|
|
11
11
|
/**
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/icon",
|
|
3
|
-
"version": "21.12.
|
|
3
|
+
"version": "21.12.5",
|
|
4
4
|
"description": "An icon is a visual representation of a command, device, directory, or common action.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"homepage": "https://atlassian.design/components/icon/",
|
|
26
26
|
"atlassian": {
|
|
27
27
|
"team": "Design System Team",
|
|
28
|
-
"releaseModel": "
|
|
28
|
+
"releaseModel": "continuous",
|
|
29
29
|
"website": {
|
|
30
30
|
"name": "Icon",
|
|
31
31
|
"category": "Components"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@atlaskit/theme": "^12.5.0",
|
|
48
|
-
"@atlaskit/tokens": "^1.
|
|
48
|
+
"@atlaskit/tokens": "^1.11.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|
|
50
50
|
"@emotion/react": "^11.7.1"
|
|
51
51
|
},
|
|
@@ -54,14 +54,13 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@af/icon-build-process": "^0.3.0",
|
|
57
|
-
"@atlaskit/button": "^16.
|
|
57
|
+
"@atlaskit/button": "^16.8.0",
|
|
58
58
|
"@atlaskit/docs": "*",
|
|
59
59
|
"@atlaskit/ds-lib": "^2.2.0",
|
|
60
|
-
"@atlaskit/dynamic-table": "^14.9.0",
|
|
61
60
|
"@atlaskit/icon-file-type": "^6.4.0",
|
|
62
61
|
"@atlaskit/icon-object": "^6.3.0",
|
|
63
62
|
"@atlaskit/logo": "^13.14.0",
|
|
64
|
-
"@atlaskit/modal-dialog": "^12.
|
|
63
|
+
"@atlaskit/modal-dialog": "^12.6.0",
|
|
65
64
|
"@atlaskit/section-message": "^6.4.0",
|
|
66
65
|
"@atlaskit/ssr": "*",
|
|
67
66
|
"@atlaskit/textfield": "^5.5.0",
|
package/report.api.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
### Table of contents
|
|
9
9
|
|
|
10
10
|
- [Main Entry Types](#main-entry-types)
|
|
11
|
+
- [Peer Dependencies](#peer-dependencies)
|
|
11
12
|
|
|
12
13
|
### Main Entry Types
|
|
13
14
|
|
|
@@ -97,3 +98,15 @@ export interface SVGProps extends GlyphProps {
|
|
|
97
98
|
```
|
|
98
99
|
|
|
99
100
|
<!--SECTION END: Main Entry Types-->
|
|
101
|
+
|
|
102
|
+
### Peer Dependencies
|
|
103
|
+
|
|
104
|
+
<!--SECTION START: Peer Dependencies-->
|
|
105
|
+
|
|
106
|
+
```json
|
|
107
|
+
{
|
|
108
|
+
"react": "^16.8.0"
|
|
109
|
+
}
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
<!--SECTION END: Peer Dependencies-->
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
## API Report File for "@atlaskit/icon"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
/// <reference types="react" />
|
|
8
|
+
|
|
9
|
+
import type { ComponentType } from 'react';
|
|
10
|
+
import { NamedExoticComponent } from 'react';
|
|
11
|
+
import type { ReactNode } from 'react';
|
|
12
|
+
import type { SVGProps as SVGProps_2 } from 'react';
|
|
13
|
+
|
|
14
|
+
// @public (undocumented)
|
|
15
|
+
export interface CustomGlyphProps extends SVGProps_2<SVGSVGElement> {
|
|
16
|
+
'aria-label'?: string;
|
|
17
|
+
'data-testid'?: string;
|
|
18
|
+
className?: string;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// @public (undocumented)
|
|
22
|
+
interface GlyphColorProps {
|
|
23
|
+
primaryColor?: string;
|
|
24
|
+
secondaryColor?: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// @public (undocumented)
|
|
28
|
+
export interface GlyphProps extends OtherGlyphProps, GlyphSizeProps, GlyphColorProps {
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// @public (undocumented)
|
|
32
|
+
interface GlyphSizeProps {
|
|
33
|
+
size?: Size;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// @public
|
|
37
|
+
const Icon: NamedExoticComponent<IconProps>;
|
|
38
|
+
export default Icon;
|
|
39
|
+
|
|
40
|
+
// @public (undocumented)
|
|
41
|
+
export interface IconProps extends GlyphProps {
|
|
42
|
+
// @deprecated (undocumented)
|
|
43
|
+
dangerouslySetGlyph?: string;
|
|
44
|
+
glyph?: ComponentType<CustomGlyphProps>;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// @public (undocumented)
|
|
48
|
+
interface OtherGlyphProps {
|
|
49
|
+
label: string;
|
|
50
|
+
testId?: string;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// @public (undocumented)
|
|
54
|
+
export type Size = 'large' | 'medium' | 'small' | 'xlarge';
|
|
55
|
+
|
|
56
|
+
// @public (undocumented)
|
|
57
|
+
export const size: Record<Size, Size>;
|
|
58
|
+
|
|
59
|
+
// @public (undocumented)
|
|
60
|
+
export const sizes: Record<Size, string>;
|
|
61
|
+
|
|
62
|
+
// @public
|
|
63
|
+
export const Skeleton: NamedExoticComponent<SkeletonProps>;
|
|
64
|
+
|
|
65
|
+
// @public (undocumented)
|
|
66
|
+
export interface SkeletonProps {
|
|
67
|
+
// (undocumented)
|
|
68
|
+
color?: string;
|
|
69
|
+
// (undocumented)
|
|
70
|
+
size?: Size;
|
|
71
|
+
testId?: string;
|
|
72
|
+
// (undocumented)
|
|
73
|
+
weight?: 'normal' | 'strong';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// @public
|
|
77
|
+
export const SVG: NamedExoticComponent<SVGProps>;
|
|
78
|
+
|
|
79
|
+
// @public (undocumented)
|
|
80
|
+
export interface SVGProps extends GlyphProps {
|
|
81
|
+
children?: ReactNode;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// (No @packageDocumentation comment for this package)
|
|
85
|
+
|
|
86
|
+
```
|