@atlaskit/logo 13.9.1 → 13.10.1
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 +12 -0
- package/dist/cjs/version.json +1 -1
- package/dist/cjs/wrapper.js +6 -6
- package/dist/es2019/version.json +1 -1
- package/dist/es2019/wrapper.js +2 -2
- package/dist/esm/version.json +1 -1
- package/dist/esm/wrapper.js +2 -2
- package/dist/types/wrapper.d.ts +2 -2
- package/dist/types-ts4.0/wrapper.d.ts +2 -2
- package/package.json +9 -7
- package/report.api.md +269 -228
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/logo
|
|
2
2
|
|
|
3
|
+
## 13.10.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`88a34a8c2dd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/88a34a8c2dd) - Remove redundant `role=presentation` on wrapping @atlaskit/icon and @atlaskit/logo spans.
|
|
8
|
+
|
|
9
|
+
## 13.10.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`68e771a783a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68e771a783a) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
|
|
14
|
+
|
|
3
15
|
## 13.9.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/cjs/wrapper.js
CHANGED
|
@@ -15,14 +15,14 @@ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/h
|
|
|
15
15
|
|
|
16
16
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _react = require("@emotion/react");
|
|
19
19
|
|
|
20
20
|
var _constants = require("./constants");
|
|
21
21
|
|
|
22
22
|
var _excluded = ["label", "svg", "size", "appearance", "iconGradientStart", "iconGradientStop", "iconColor", "textColor", "testId"];
|
|
23
23
|
var CSS_VAR_COLOR = '--logo-color';
|
|
24
24
|
var CSS_VAR_FILL = '--logo-fill';
|
|
25
|
-
var baseWrapperStyles = (0,
|
|
25
|
+
var baseWrapperStyles = (0, _react.css)({
|
|
26
26
|
display: 'inline-block',
|
|
27
27
|
position: 'relative',
|
|
28
28
|
color: "var(".concat(CSS_VAR_COLOR, ")"),
|
|
@@ -36,7 +36,7 @@ var baseWrapperStyles = (0, _core.css)({
|
|
|
36
36
|
fill: 'inherit'
|
|
37
37
|
}
|
|
38
38
|
});
|
|
39
|
-
var stopColorStyles = (0,
|
|
39
|
+
var stopColorStyles = (0, _react.css)({
|
|
40
40
|
// eslint-disable-next-line @repo/internal/styles/no-nested-styles
|
|
41
41
|
stop: {
|
|
42
42
|
stopColor: 'currentColor'
|
|
@@ -47,7 +47,7 @@ var sizeStyles = Object.entries(_constants.sizes).reduce(function (acc, _ref) {
|
|
|
47
47
|
key = _ref2[0],
|
|
48
48
|
val = _ref2[1];
|
|
49
49
|
|
|
50
|
-
acc[key] = (0,
|
|
50
|
+
acc[key] = (0, _react.css)({
|
|
51
51
|
height: "".concat(val, "px")
|
|
52
52
|
});
|
|
53
53
|
return acc;
|
|
@@ -73,12 +73,12 @@ var Wrapper = function Wrapper(_ref3) {
|
|
|
73
73
|
rest = (0, _objectWithoutProperties2.default)(_ref3, _excluded);
|
|
74
74
|
var shouldApplyStopColor = iconGradientStart === 'inherit' && iconGradientStop === 'inherit' && appearance === undefined;
|
|
75
75
|
var testId = userDefinedTestId && "".concat(userDefinedTestId, "--wrapper");
|
|
76
|
-
return (0,
|
|
76
|
+
return (0, _react.jsx)("span", (0, _extends2.default)({
|
|
77
77
|
css: [baseWrapperStyles, shouldApplyStopColor && stopColorStyles, size && sizeStyles[size]],
|
|
78
78
|
"data-testid": testId,
|
|
79
79
|
style: (_ref4 = {}, (0, _defineProperty2.default)(_ref4, CSS_VAR_COLOR, iconColor), (0, _defineProperty2.default)(_ref4, CSS_VAR_FILL, textColor), _ref4),
|
|
80
80
|
"aria-label": label ? label : undefined,
|
|
81
|
-
role: label ? 'img' :
|
|
81
|
+
role: label ? 'img' : undefined,
|
|
82
82
|
dangerouslySetInnerHTML: {
|
|
83
83
|
__html: svg
|
|
84
84
|
} // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
package/dist/es2019/version.json
CHANGED
package/dist/es2019/wrapper.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
|
|
3
3
|
/** @jsx jsx */
|
|
4
|
-
import { css, jsx } from '@emotion/
|
|
4
|
+
import { css, jsx } from '@emotion/react';
|
|
5
5
|
import { sizes } from './constants';
|
|
6
6
|
const CSS_VAR_COLOR = '--logo-color';
|
|
7
7
|
const CSS_VAR_FILL = '--logo-fill';
|
|
@@ -59,7 +59,7 @@ const Wrapper = ({
|
|
|
59
59
|
[CSS_VAR_FILL]: textColor
|
|
60
60
|
},
|
|
61
61
|
"aria-label": label ? label : undefined,
|
|
62
|
-
role: label ? 'img' :
|
|
62
|
+
role: label ? 'img' : undefined,
|
|
63
63
|
dangerouslySetInnerHTML: {
|
|
64
64
|
__html: svg
|
|
65
65
|
} // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
package/dist/esm/version.json
CHANGED
package/dist/esm/wrapper.js
CHANGED
|
@@ -5,7 +5,7 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
|
5
5
|
var _excluded = ["label", "svg", "size", "appearance", "iconGradientStart", "iconGradientStop", "iconColor", "textColor", "testId"];
|
|
6
6
|
|
|
7
7
|
/** @jsx jsx */
|
|
8
|
-
import { css, jsx } from '@emotion/
|
|
8
|
+
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import { sizes } from './constants';
|
|
10
10
|
var CSS_VAR_COLOR = '--logo-color';
|
|
11
11
|
var CSS_VAR_FILL = '--logo-fill';
|
|
@@ -66,7 +66,7 @@ var Wrapper = function Wrapper(_ref3) {
|
|
|
66
66
|
"data-testid": testId,
|
|
67
67
|
style: (_ref4 = {}, _defineProperty(_ref4, CSS_VAR_COLOR, iconColor), _defineProperty(_ref4, CSS_VAR_FILL, textColor), _ref4),
|
|
68
68
|
"aria-label": label ? label : undefined,
|
|
69
|
-
role: label ? 'img' :
|
|
69
|
+
role: label ? 'img' : undefined,
|
|
70
70
|
dangerouslySetInnerHTML: {
|
|
71
71
|
__html: svg
|
|
72
72
|
} // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
package/dist/types/wrapper.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
|
-
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
3
|
import { WrapperProps } from './constants';
|
|
4
4
|
/**
|
|
5
5
|
* __Wrapper__
|
|
6
6
|
*
|
|
7
7
|
* An internal component used by `@atlaskit/logo` to render logo SVGs with correct styles.
|
|
8
8
|
*/
|
|
9
|
-
declare const Wrapper: ({ label, svg, size, appearance, iconGradientStart, iconGradientStop, iconColor, textColor, testId: userDefinedTestId, ...rest }: WrapperProps) => JSX.Element;
|
|
9
|
+
declare const Wrapper: ({ label, svg, size, appearance, iconGradientStart, iconGradientStop, iconColor, textColor, testId: userDefinedTestId, ...rest }: WrapperProps) => jsx.JSX.Element;
|
|
10
10
|
export default Wrapper;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
/** @jsx jsx */
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
3
|
import { WrapperProps } from './constants';
|
|
4
4
|
/**
|
|
5
5
|
* __Wrapper__
|
|
6
6
|
*
|
|
7
7
|
* An internal component used by `@atlaskit/logo` to render logo SVGs with correct styles.
|
|
8
8
|
*/
|
|
9
|
-
declare const Wrapper: ({ label, svg, size, appearance, iconGradientStart, iconGradientStop, iconColor, textColor, testId: userDefinedTestId, ...rest }: WrapperProps) => JSX.Element;
|
|
9
|
+
declare const Wrapper: ({ label, svg, size, appearance, iconGradientStart, iconGradientStop, iconColor, textColor, testId: userDefinedTestId, ...rest }: WrapperProps) => jsx.JSX.Element;
|
|
10
10
|
export default Wrapper;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/logo",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.10.1",
|
|
4
4
|
"description": "A logo is a visual representation of a brand or product. It can be a word or an image, or a combination of both.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -15,13 +15,15 @@
|
|
|
15
15
|
"typesVersions": {
|
|
16
16
|
">=4.0 <4.5": {
|
|
17
17
|
"*": [
|
|
18
|
-
"dist/types-ts4.0/*"
|
|
18
|
+
"dist/types-ts4.0/*",
|
|
19
|
+
"dist/types-ts4.0/index.d.ts"
|
|
19
20
|
]
|
|
20
21
|
}
|
|
21
22
|
},
|
|
22
23
|
"sideEffects": false,
|
|
23
24
|
"atlaskit:src": "src/index.tsx",
|
|
24
25
|
"atlassian": {
|
|
26
|
+
"disableProductCI": true,
|
|
25
27
|
"team": "Design System Team",
|
|
26
28
|
"releaseModel": "scheduled",
|
|
27
29
|
"website": {
|
|
@@ -53,19 +55,19 @@
|
|
|
53
55
|
"@atlaskit/theme": "^12.2.0",
|
|
54
56
|
"@atlaskit/tokens": "^0.10.0",
|
|
55
57
|
"@babel/runtime": "^7.0.0",
|
|
56
|
-
"@emotion/
|
|
58
|
+
"@emotion/react": "^11.7.1",
|
|
57
59
|
"react-uid": "^2.2.0"
|
|
58
60
|
},
|
|
59
61
|
"peerDependencies": {
|
|
60
62
|
"react": "^16.8.0"
|
|
61
63
|
},
|
|
62
64
|
"devDependencies": {
|
|
63
|
-
"@atlaskit/atlassian-navigation": "^2.
|
|
64
|
-
"@atlaskit/button": "^16.
|
|
65
|
-
"@atlaskit/code": "^14.
|
|
65
|
+
"@atlaskit/atlassian-navigation": "^2.3.0",
|
|
66
|
+
"@atlaskit/button": "^16.4.0",
|
|
67
|
+
"@atlaskit/code": "^14.4.0",
|
|
66
68
|
"@atlaskit/docs": "*",
|
|
67
69
|
"@atlaskit/radio": "^5.4.0",
|
|
68
|
-
"@atlaskit/section-message": "^6.
|
|
70
|
+
"@atlaskit/section-message": "^6.3.0",
|
|
69
71
|
"@atlaskit/select": "^15.7.0",
|
|
70
72
|
"@atlaskit/ssr": "*",
|
|
71
73
|
"@atlaskit/visual-regression": "*",
|
package/report.api.md
CHANGED
|
@@ -2,186 +2,208 @@
|
|
|
2
2
|
|
|
3
3
|
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
4
|
|
|
5
|
+
<!--
|
|
6
|
+
Generated API Report version: 2.0
|
|
7
|
+
-->
|
|
8
|
+
|
|
9
|
+
[Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
|
|
10
|
+
|
|
5
11
|
```ts
|
|
6
12
|
/// <reference types="react" />
|
|
7
13
|
|
|
8
|
-
|
|
14
|
+
// @public (undocumented)
|
|
15
|
+
type Appearance = 'brand' | 'neutral' | 'inverse';
|
|
16
|
+
|
|
17
|
+
// @public
|
|
18
|
+
export const AtlassianIcon: ({
|
|
19
|
+
appearance,
|
|
20
|
+
label,
|
|
21
|
+
size,
|
|
9
22
|
iconColor,
|
|
10
23
|
iconGradientStart,
|
|
11
24
|
iconGradientStop,
|
|
12
|
-
label,
|
|
13
|
-
size,
|
|
14
25
|
textColor,
|
|
15
26
|
testId,
|
|
16
27
|
}: LogoProps) => JSX.Element;
|
|
17
28
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
iconGradientStop,
|
|
29
|
+
// @public
|
|
30
|
+
export const AtlassianLogo: ({
|
|
31
|
+
appearance,
|
|
22
32
|
label,
|
|
23
33
|
size,
|
|
24
34
|
testId,
|
|
25
|
-
textColor,
|
|
26
|
-
}: LogoProps) => JSX.Element;
|
|
27
|
-
|
|
28
|
-
export declare const AtlassianStartLogo: ({
|
|
29
35
|
iconColor,
|
|
30
36
|
iconGradientStart,
|
|
31
37
|
iconGradientStop,
|
|
32
|
-
label,
|
|
33
|
-
size,
|
|
34
|
-
testId,
|
|
35
38
|
textColor,
|
|
36
39
|
}: LogoProps) => JSX.Element;
|
|
37
40
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
iconGradientStop,
|
|
41
|
+
// @public
|
|
42
|
+
export const AtlassianStartLogo: ({
|
|
43
|
+
appearance,
|
|
42
44
|
label,
|
|
43
45
|
size,
|
|
44
46
|
testId,
|
|
45
|
-
textColor,
|
|
46
|
-
}: LogoProps) => JSX.Element;
|
|
47
|
-
|
|
48
|
-
export declare const BitbucketIcon: ({
|
|
49
47
|
iconColor,
|
|
50
48
|
iconGradientStart,
|
|
51
49
|
iconGradientStop,
|
|
52
|
-
label,
|
|
53
|
-
size,
|
|
54
|
-
testId,
|
|
55
50
|
textColor,
|
|
56
51
|
}: LogoProps) => JSX.Element;
|
|
57
52
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
iconGradientStop,
|
|
53
|
+
// @public
|
|
54
|
+
export const AtlassianWordmark: ({
|
|
55
|
+
appearance,
|
|
62
56
|
label,
|
|
63
57
|
size,
|
|
64
58
|
testId,
|
|
65
59
|
textColor,
|
|
66
60
|
}: LogoProps) => JSX.Element;
|
|
67
61
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
iconGradientStop,
|
|
62
|
+
// @public
|
|
63
|
+
export const BitbucketIcon: ({
|
|
64
|
+
appearance,
|
|
72
65
|
label,
|
|
73
66
|
size,
|
|
74
67
|
testId,
|
|
75
|
-
textColor,
|
|
76
|
-
}: LogoProps) => JSX.Element;
|
|
77
|
-
|
|
78
|
-
export declare const CompassIcon: ({
|
|
79
68
|
iconColor,
|
|
80
69
|
iconGradientStart,
|
|
81
70
|
iconGradientStop,
|
|
82
|
-
label,
|
|
83
|
-
size,
|
|
84
|
-
testId,
|
|
85
71
|
textColor,
|
|
86
72
|
}: LogoProps) => JSX.Element;
|
|
87
73
|
|
|
88
|
-
|
|
74
|
+
// @public
|
|
75
|
+
export const BitbucketLogo: ({
|
|
76
|
+
appearance,
|
|
77
|
+
label,
|
|
78
|
+
size,
|
|
79
|
+
testId,
|
|
89
80
|
iconColor,
|
|
90
81
|
iconGradientStart,
|
|
91
82
|
iconGradientStop,
|
|
83
|
+
textColor,
|
|
84
|
+
}: LogoProps) => JSX.Element;
|
|
85
|
+
|
|
86
|
+
// @public
|
|
87
|
+
export const BitbucketWordmark: ({
|
|
88
|
+
appearance,
|
|
92
89
|
label,
|
|
93
90
|
size,
|
|
94
91
|
testId,
|
|
95
92
|
textColor,
|
|
96
93
|
}: LogoProps) => JSX.Element;
|
|
97
94
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
iconGradientStop,
|
|
95
|
+
// @public
|
|
96
|
+
export const CompassIcon: ({
|
|
97
|
+
appearance,
|
|
102
98
|
label,
|
|
103
99
|
size,
|
|
104
100
|
testId,
|
|
101
|
+
iconColor,
|
|
102
|
+
iconGradientStart,
|
|
103
|
+
iconGradientStop,
|
|
105
104
|
textColor,
|
|
106
105
|
}: LogoProps) => JSX.Element;
|
|
107
106
|
|
|
108
|
-
|
|
107
|
+
// @public
|
|
108
|
+
export const CompassLogo: ({
|
|
109
|
+
appearance,
|
|
110
|
+
label,
|
|
111
|
+
size,
|
|
112
|
+
testId,
|
|
109
113
|
iconColor,
|
|
110
114
|
iconGradientStart,
|
|
111
115
|
iconGradientStop,
|
|
116
|
+
textColor,
|
|
117
|
+
}: LogoProps) => JSX.Element;
|
|
118
|
+
|
|
119
|
+
// @public
|
|
120
|
+
export const CompassWordmark: ({
|
|
121
|
+
appearance,
|
|
112
122
|
label,
|
|
113
123
|
size,
|
|
114
124
|
testId,
|
|
115
125
|
textColor,
|
|
116
126
|
}: LogoProps) => JSX.Element;
|
|
117
127
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
iconGradientStop,
|
|
128
|
+
// @public
|
|
129
|
+
export const ConfluenceIcon: ({
|
|
130
|
+
appearance,
|
|
122
131
|
label,
|
|
123
132
|
size,
|
|
124
133
|
testId,
|
|
134
|
+
iconColor,
|
|
135
|
+
iconGradientStart,
|
|
136
|
+
iconGradientStop,
|
|
125
137
|
textColor,
|
|
126
138
|
}: LogoProps) => JSX.Element;
|
|
127
139
|
|
|
128
|
-
|
|
140
|
+
// @public
|
|
141
|
+
export const ConfluenceLogo: ({
|
|
142
|
+
appearance,
|
|
143
|
+
label,
|
|
144
|
+
size,
|
|
145
|
+
testId,
|
|
129
146
|
iconColor,
|
|
130
147
|
iconGradientStart,
|
|
131
148
|
iconGradientStop,
|
|
149
|
+
textColor,
|
|
150
|
+
}: LogoProps) => JSX.Element;
|
|
151
|
+
|
|
152
|
+
// @public
|
|
153
|
+
export const ConfluenceWordmark: ({
|
|
154
|
+
appearance,
|
|
132
155
|
label,
|
|
133
156
|
size,
|
|
134
157
|
testId,
|
|
135
158
|
textColor,
|
|
136
159
|
}: LogoProps) => JSX.Element;
|
|
137
160
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
iconGradientStop,
|
|
161
|
+
// @public
|
|
162
|
+
export const HalpIcon: ({
|
|
163
|
+
appearance,
|
|
142
164
|
label,
|
|
143
165
|
size,
|
|
144
166
|
testId,
|
|
145
167
|
textColor,
|
|
146
|
-
}: LogoProps) => JSX.Element;
|
|
147
|
-
|
|
148
|
-
export declare const HalpLogo: ({
|
|
149
168
|
iconColor,
|
|
150
169
|
iconGradientStart,
|
|
151
170
|
iconGradientStop,
|
|
171
|
+
}: LogoProps) => JSX.Element;
|
|
172
|
+
|
|
173
|
+
// @public
|
|
174
|
+
export const HalpLogo: ({
|
|
175
|
+
appearance,
|
|
152
176
|
label,
|
|
153
177
|
size,
|
|
154
178
|
testId,
|
|
155
|
-
textColor,
|
|
156
|
-
}: LogoProps) => JSX.Element;
|
|
157
|
-
|
|
158
|
-
export declare const HalpWordmark: ({
|
|
159
179
|
iconColor,
|
|
160
180
|
iconGradientStart,
|
|
161
181
|
iconGradientStop,
|
|
182
|
+
textColor,
|
|
183
|
+
}: LogoProps) => JSX.Element;
|
|
184
|
+
|
|
185
|
+
// @public
|
|
186
|
+
export const HalpWordmark: ({
|
|
187
|
+
appearance,
|
|
162
188
|
label,
|
|
163
189
|
size,
|
|
164
190
|
testId,
|
|
165
191
|
textColor,
|
|
166
192
|
}: LogoProps) => JSX.Element;
|
|
167
193
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
*/
|
|
171
|
-
export declare const HipchatIcon: ({
|
|
172
|
-
iconColor,
|
|
173
|
-
iconGradientStart,
|
|
174
|
-
iconGradientStop,
|
|
194
|
+
// @public @deprecated (undocumented)
|
|
195
|
+
export const HipchatIcon: ({
|
|
175
196
|
label,
|
|
176
197
|
size,
|
|
177
198
|
testId,
|
|
199
|
+
iconColor,
|
|
200
|
+
iconGradientStart,
|
|
201
|
+
iconGradientStop,
|
|
178
202
|
textColor,
|
|
179
203
|
}: LogoProps) => JSX.Element;
|
|
180
204
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
*/
|
|
184
|
-
export declare const HipchatLogo: ({
|
|
205
|
+
// @public @deprecated (undocumented)
|
|
206
|
+
export const HipchatLogo: ({
|
|
185
207
|
iconColor,
|
|
186
208
|
iconGradientStart,
|
|
187
209
|
iconGradientStop,
|
|
@@ -191,10 +213,8 @@ export declare const HipchatLogo: ({
|
|
|
191
213
|
textColor,
|
|
192
214
|
}: LogoProps) => JSX.Element;
|
|
193
215
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
*/
|
|
197
|
-
export declare const HipchatWordmark: ({
|
|
216
|
+
// @public @deprecated (undocumented)
|
|
217
|
+
export const HipchatWordmark: ({
|
|
198
218
|
iconColor,
|
|
199
219
|
iconGradientStart,
|
|
200
220
|
iconGradientStop,
|
|
@@ -204,46 +224,41 @@ export declare const HipchatWordmark: ({
|
|
|
204
224
|
textColor,
|
|
205
225
|
}: LogoProps) => JSX.Element;
|
|
206
226
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
export declare const JiraCoreIcon: ({
|
|
211
|
-
iconColor,
|
|
212
|
-
iconGradientStart,
|
|
213
|
-
iconGradientStop,
|
|
227
|
+
// @public
|
|
228
|
+
export const JiraAlignIcon: ({
|
|
229
|
+
appearance,
|
|
214
230
|
label,
|
|
215
231
|
size,
|
|
216
232
|
testId,
|
|
217
233
|
textColor,
|
|
218
|
-
}: LogoProps) => JSX.Element;
|
|
219
|
-
|
|
220
|
-
/**
|
|
221
|
-
* @deprecated JiraCoreLogo will be removed from @atlaskit/logo in the next major release. Please use JiraWorkManagementLogo instead.
|
|
222
|
-
*/
|
|
223
|
-
export declare const JiraCoreLogo: ({
|
|
224
234
|
iconColor,
|
|
225
235
|
iconGradientStart,
|
|
226
236
|
iconGradientStop,
|
|
237
|
+
}: LogoProps) => JSX.Element;
|
|
238
|
+
|
|
239
|
+
// @public
|
|
240
|
+
export const JiraAlignLogo: ({
|
|
241
|
+
appearance,
|
|
227
242
|
label,
|
|
228
243
|
size,
|
|
229
244
|
testId,
|
|
230
|
-
textColor,
|
|
231
|
-
}: LogoProps) => JSX.Element;
|
|
232
|
-
|
|
233
|
-
/**
|
|
234
|
-
* @deprecated JiraCoreWordmark will be removed from @atlaskit/logo in the next major release. Please use JiraWorkManagementWordmark instead.
|
|
235
|
-
*/
|
|
236
|
-
export declare const JiraCoreWordmark: ({
|
|
237
245
|
iconColor,
|
|
238
246
|
iconGradientStart,
|
|
239
247
|
iconGradientStop,
|
|
248
|
+
textColor,
|
|
249
|
+
}: LogoProps) => JSX.Element;
|
|
250
|
+
|
|
251
|
+
// @public
|
|
252
|
+
export const JiraAlignWordmark: ({
|
|
253
|
+
appearance,
|
|
240
254
|
label,
|
|
241
255
|
size,
|
|
242
256
|
testId,
|
|
243
257
|
textColor,
|
|
244
258
|
}: LogoProps) => JSX.Element;
|
|
245
259
|
|
|
246
|
-
|
|
260
|
+
// @public @deprecated (undocumented)
|
|
261
|
+
export const JiraCoreIcon: ({
|
|
247
262
|
iconColor,
|
|
248
263
|
iconGradientStart,
|
|
249
264
|
iconGradientStop,
|
|
@@ -253,7 +268,8 @@ export declare const JiraIcon: ({
|
|
|
253
268
|
textColor,
|
|
254
269
|
}: LogoProps) => JSX.Element;
|
|
255
270
|
|
|
256
|
-
|
|
271
|
+
// @public @deprecated (undocumented)
|
|
272
|
+
export const JiraCoreLogo: ({
|
|
257
273
|
iconColor,
|
|
258
274
|
iconGradientStart,
|
|
259
275
|
iconGradientStop,
|
|
@@ -263,10 +279,8 @@ export declare const JiraLogo: ({
|
|
|
263
279
|
textColor,
|
|
264
280
|
}: LogoProps) => JSX.Element;
|
|
265
281
|
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
*/
|
|
269
|
-
export declare const JiraServiceDeskIcon: ({
|
|
282
|
+
// @public @deprecated (undocumented)
|
|
283
|
+
export const JiraCoreWordmark: ({
|
|
270
284
|
iconColor,
|
|
271
285
|
iconGradientStart,
|
|
272
286
|
iconGradientStop,
|
|
@@ -276,33 +290,32 @@ export declare const JiraServiceDeskIcon: ({
|
|
|
276
290
|
textColor,
|
|
277
291
|
}: LogoProps) => JSX.Element;
|
|
278
292
|
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
export declare const JiraServiceDeskLogo: ({
|
|
283
|
-
iconColor,
|
|
284
|
-
iconGradientStart,
|
|
285
|
-
iconGradientStop,
|
|
293
|
+
// @public
|
|
294
|
+
export const JiraIcon: ({
|
|
295
|
+
appearance,
|
|
286
296
|
label,
|
|
287
297
|
size,
|
|
288
298
|
testId,
|
|
289
299
|
textColor,
|
|
290
|
-
}: LogoProps) => JSX.Element;
|
|
291
|
-
|
|
292
|
-
/**
|
|
293
|
-
* @deprecated JiraServiceDeskWordmark will be removed from atlaskit/logo in the next major release. Please use JiraServiceManagementWordmark instead.
|
|
294
|
-
*/
|
|
295
|
-
export declare const JiraServiceDeskWordmark: ({
|
|
296
300
|
iconColor,
|
|
297
301
|
iconGradientStart,
|
|
298
302
|
iconGradientStop,
|
|
303
|
+
}: LogoProps) => JSX.Element;
|
|
304
|
+
|
|
305
|
+
// @public
|
|
306
|
+
export const JiraLogo: ({
|
|
307
|
+
appearance,
|
|
299
308
|
label,
|
|
300
309
|
size,
|
|
301
310
|
testId,
|
|
311
|
+
iconColor,
|
|
312
|
+
iconGradientStart,
|
|
313
|
+
iconGradientStop,
|
|
302
314
|
textColor,
|
|
303
315
|
}: LogoProps) => JSX.Element;
|
|
304
316
|
|
|
305
|
-
|
|
317
|
+
// @public @deprecated (undocumented)
|
|
318
|
+
export const JiraServiceDeskIcon: ({
|
|
306
319
|
iconColor,
|
|
307
320
|
iconGradientStart,
|
|
308
321
|
iconGradientStop,
|
|
@@ -312,7 +325,8 @@ export declare const JiraServiceManagementIcon: ({
|
|
|
312
325
|
textColor,
|
|
313
326
|
}: LogoProps) => JSX.Element;
|
|
314
327
|
|
|
315
|
-
|
|
328
|
+
// @public @deprecated (undocumented)
|
|
329
|
+
export const JiraServiceDeskLogo: ({
|
|
316
330
|
iconColor,
|
|
317
331
|
iconGradientStart,
|
|
318
332
|
iconGradientStop,
|
|
@@ -322,7 +336,8 @@ export declare const JiraServiceManagementLogo: ({
|
|
|
322
336
|
textColor,
|
|
323
337
|
}: LogoProps) => JSX.Element;
|
|
324
338
|
|
|
325
|
-
|
|
339
|
+
// @public @deprecated (undocumented)
|
|
340
|
+
export const JiraServiceDeskWordmark: ({
|
|
326
341
|
iconColor,
|
|
327
342
|
iconGradientStart,
|
|
328
343
|
iconGradientStop,
|
|
@@ -332,113 +347,134 @@ export declare const JiraServiceManagementWordmark: ({
|
|
|
332
347
|
textColor,
|
|
333
348
|
}: LogoProps) => JSX.Element;
|
|
334
349
|
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
iconGradientStop,
|
|
350
|
+
// @public
|
|
351
|
+
export const JiraServiceManagementIcon: ({
|
|
352
|
+
appearance,
|
|
339
353
|
label,
|
|
340
354
|
size,
|
|
341
355
|
testId,
|
|
356
|
+
iconColor,
|
|
357
|
+
iconGradientStart,
|
|
358
|
+
iconGradientStop,
|
|
342
359
|
textColor,
|
|
343
360
|
}: LogoProps) => JSX.Element;
|
|
344
361
|
|
|
345
|
-
|
|
362
|
+
// @public
|
|
363
|
+
export const JiraServiceManagementLogo: ({
|
|
364
|
+
appearance,
|
|
365
|
+
label,
|
|
366
|
+
size,
|
|
367
|
+
testId,
|
|
346
368
|
iconColor,
|
|
347
369
|
iconGradientStart,
|
|
348
370
|
iconGradientStop,
|
|
371
|
+
textColor,
|
|
372
|
+
}: LogoProps) => JSX.Element;
|
|
373
|
+
|
|
374
|
+
// @public
|
|
375
|
+
export const JiraServiceManagementWordmark: ({
|
|
376
|
+
appearance,
|
|
349
377
|
label,
|
|
350
378
|
size,
|
|
351
379
|
testId,
|
|
352
380
|
textColor,
|
|
353
381
|
}: LogoProps) => JSX.Element;
|
|
354
382
|
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
iconGradientStop,
|
|
383
|
+
// @public
|
|
384
|
+
export const JiraSoftwareIcon: ({
|
|
385
|
+
appearance,
|
|
359
386
|
label,
|
|
360
387
|
size,
|
|
361
388
|
testId,
|
|
389
|
+
iconColor,
|
|
390
|
+
iconGradientStart,
|
|
391
|
+
iconGradientStop,
|
|
362
392
|
textColor,
|
|
363
393
|
}: LogoProps) => JSX.Element;
|
|
364
394
|
|
|
365
|
-
|
|
395
|
+
// @public
|
|
396
|
+
export const JiraSoftwareLogo: ({
|
|
397
|
+
appearance,
|
|
398
|
+
label,
|
|
399
|
+
size,
|
|
400
|
+
testId,
|
|
366
401
|
iconColor,
|
|
367
402
|
iconGradientStart,
|
|
368
403
|
iconGradientStop,
|
|
404
|
+
textColor,
|
|
405
|
+
}: LogoProps) => JSX.Element;
|
|
406
|
+
|
|
407
|
+
// @public
|
|
408
|
+
export const JiraSoftwareWordmark: ({
|
|
409
|
+
appearance,
|
|
369
410
|
label,
|
|
370
411
|
size,
|
|
371
412
|
testId,
|
|
372
413
|
textColor,
|
|
373
|
-
}: LogoProps) => JSX.Element;
|
|
374
|
-
|
|
375
|
-
export declare const JiraWorkManagementIcon: ({
|
|
376
414
|
iconColor,
|
|
377
415
|
iconGradientStart,
|
|
378
416
|
iconGradientStop,
|
|
417
|
+
}: LogoProps) => JSX.Element;
|
|
418
|
+
|
|
419
|
+
// @public
|
|
420
|
+
export const JiraWordmark: ({
|
|
421
|
+
appearance,
|
|
379
422
|
label,
|
|
380
423
|
size,
|
|
381
424
|
testId,
|
|
382
425
|
textColor,
|
|
383
426
|
}: LogoProps) => JSX.Element;
|
|
384
427
|
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
iconGradientStop,
|
|
428
|
+
// @public
|
|
429
|
+
export const JiraWorkManagementIcon: ({
|
|
430
|
+
appearance,
|
|
389
431
|
label,
|
|
390
432
|
size,
|
|
391
433
|
testId,
|
|
434
|
+
iconColor,
|
|
435
|
+
iconGradientStart,
|
|
436
|
+
iconGradientStop,
|
|
392
437
|
textColor,
|
|
393
438
|
}: LogoProps) => JSX.Element;
|
|
394
439
|
|
|
395
|
-
|
|
440
|
+
// @public
|
|
441
|
+
export const JiraWorkManagementLogo: ({
|
|
442
|
+
appearance,
|
|
443
|
+
label,
|
|
444
|
+
size,
|
|
445
|
+
testId,
|
|
396
446
|
iconColor,
|
|
397
447
|
iconGradientStart,
|
|
398
448
|
iconGradientStop,
|
|
449
|
+
textColor,
|
|
450
|
+
}: LogoProps) => JSX.Element;
|
|
451
|
+
|
|
452
|
+
// @public
|
|
453
|
+
export const JiraWorkManagementWordmark: ({
|
|
454
|
+
appearance,
|
|
399
455
|
label,
|
|
400
456
|
size,
|
|
401
457
|
testId,
|
|
458
|
+
iconColor,
|
|
459
|
+
iconGradientStart,
|
|
460
|
+
iconGradientStop,
|
|
402
461
|
textColor,
|
|
403
462
|
}: LogoProps) => JSX.Element;
|
|
404
463
|
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
size?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
|
|
410
|
-
/**
|
|
411
|
-
* CSS color to be applied to the wordmark portion of the logo SVG.
|
|
412
|
-
*/
|
|
464
|
+
// @public (undocumented)
|
|
465
|
+
export type LogoProps = {
|
|
466
|
+
size?: Size;
|
|
467
|
+
appearance?: Appearance;
|
|
413
468
|
textColor?: string;
|
|
414
|
-
/**
|
|
415
|
-
* CSS color to be applied to the non-gradient icon portion of the logo SVG.
|
|
416
|
-
*/
|
|
417
469
|
iconColor?: string;
|
|
418
|
-
/**
|
|
419
|
-
* CSS color to start the gradient/shadow on the icon.
|
|
420
|
-
*/
|
|
421
470
|
iconGradientStart?: string;
|
|
422
|
-
/**
|
|
423
|
-
* CSS color to end the gradient/shadow on the icon. Should usually match iconColor to avoid
|
|
424
|
-
* rendering issues in some browsers such as Safari.
|
|
425
|
-
*/
|
|
426
471
|
iconGradientStop?: string;
|
|
427
|
-
/**
|
|
428
|
-
* Accessible text to be used for screen readers (it's optional since defaultProps contains empty string for it).
|
|
429
|
-
*/
|
|
430
472
|
label?: string;
|
|
431
|
-
/**
|
|
432
|
-
* A testId prop is provided for specified elements, which is a unique string that appears as a data attribute data-testid in the rendered code, serving as a hook for automated tests.
|
|
433
|
-
* - `{testId}--wrapper` to access the svg element's wrapper
|
|
434
|
-
*/
|
|
435
473
|
testId?: string;
|
|
436
474
|
};
|
|
437
475
|
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
*/
|
|
441
|
-
export declare const OpsGenieIcon: ({
|
|
476
|
+
// @public @deprecated (undocumented)
|
|
477
|
+
export const OpsGenieIcon: ({
|
|
442
478
|
iconColor,
|
|
443
479
|
iconGradientStart,
|
|
444
480
|
iconGradientStop,
|
|
@@ -447,23 +483,20 @@ export declare const OpsGenieIcon: ({
|
|
|
447
483
|
textColor,
|
|
448
484
|
}: LogoProps) => JSX.Element;
|
|
449
485
|
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
export declare const OpsgenieIcon: ({
|
|
454
|
-
iconColor,
|
|
455
|
-
iconGradientStart,
|
|
456
|
-
iconGradientStop,
|
|
486
|
+
// @public
|
|
487
|
+
export const OpsgenieIcon: ({
|
|
488
|
+
appearance,
|
|
457
489
|
label,
|
|
458
490
|
size,
|
|
459
491
|
testId,
|
|
460
492
|
textColor,
|
|
493
|
+
iconColor,
|
|
494
|
+
iconGradientStart,
|
|
495
|
+
iconGradientStop,
|
|
461
496
|
}: LogoProps) => JSX.Element;
|
|
462
497
|
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
*/
|
|
466
|
-
export declare const OpsGenieLogo: ({
|
|
498
|
+
// @public @deprecated (undocumented)
|
|
499
|
+
export const OpsGenieLogo: ({
|
|
467
500
|
iconColor,
|
|
468
501
|
iconGradientStart,
|
|
469
502
|
iconGradientStop,
|
|
@@ -472,32 +505,20 @@ export declare const OpsGenieLogo: ({
|
|
|
472
505
|
textColor,
|
|
473
506
|
}: LogoProps) => JSX.Element;
|
|
474
507
|
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
export declare const OpsgenieLogo: ({
|
|
479
|
-
iconColor,
|
|
480
|
-
iconGradientStart,
|
|
481
|
-
iconGradientStop,
|
|
508
|
+
// @public
|
|
509
|
+
export const OpsgenieLogo: ({
|
|
510
|
+
appearance,
|
|
482
511
|
label,
|
|
483
512
|
size,
|
|
484
513
|
testId,
|
|
485
514
|
textColor,
|
|
486
|
-
}: LogoProps) => JSX.Element;
|
|
487
|
-
|
|
488
|
-
/**
|
|
489
|
-
* @deprecated OpsGenieWordmark is incorrectly cased and will be removed from atlaskit/logo in the next major release. Please use OpsgenieLogo (no capital 'g') instead.
|
|
490
|
-
*/
|
|
491
|
-
export declare const OpsGenieWordmark: ({
|
|
492
515
|
iconColor,
|
|
493
516
|
iconGradientStart,
|
|
494
517
|
iconGradientStop,
|
|
495
|
-
size,
|
|
496
|
-
testId,
|
|
497
|
-
textColor,
|
|
498
518
|
}: LogoProps) => JSX.Element;
|
|
499
519
|
|
|
500
|
-
|
|
520
|
+
// @public @deprecated (undocumented)
|
|
521
|
+
export const OpsGenieWordmark: ({
|
|
501
522
|
iconColor,
|
|
502
523
|
iconGradientStart,
|
|
503
524
|
iconGradientStop,
|
|
@@ -506,52 +527,58 @@ export declare const OpsgenieWordmark: ({
|
|
|
506
527
|
textColor,
|
|
507
528
|
}: LogoProps) => JSX.Element;
|
|
508
529
|
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
iconGradientStop,
|
|
513
|
-
label,
|
|
530
|
+
// @public
|
|
531
|
+
export const OpsgenieWordmark: ({
|
|
532
|
+
appearance,
|
|
514
533
|
size,
|
|
515
534
|
testId,
|
|
516
535
|
textColor,
|
|
517
|
-
}: LogoProps) => JSX.Element;
|
|
518
|
-
|
|
519
|
-
export declare const StatuspageLogo: ({
|
|
520
536
|
iconColor,
|
|
521
537
|
iconGradientStart,
|
|
522
538
|
iconGradientStop,
|
|
539
|
+
}: LogoProps) => JSX.Element;
|
|
540
|
+
|
|
541
|
+
// @public (undocumented)
|
|
542
|
+
type Size = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
|
|
543
|
+
|
|
544
|
+
// @public
|
|
545
|
+
export const StatuspageIcon: ({
|
|
546
|
+
appearance,
|
|
523
547
|
label,
|
|
524
548
|
size,
|
|
525
549
|
testId,
|
|
526
|
-
textColor,
|
|
527
|
-
}: LogoProps) => JSX.Element;
|
|
528
|
-
|
|
529
|
-
export declare const StatuspageWordmark: ({
|
|
530
550
|
iconColor,
|
|
531
551
|
iconGradientStart,
|
|
532
552
|
iconGradientStop,
|
|
553
|
+
textColor,
|
|
554
|
+
}: LogoProps) => JSX.Element;
|
|
555
|
+
|
|
556
|
+
// @public
|
|
557
|
+
export const StatuspageLogo: ({
|
|
558
|
+
appearance,
|
|
533
559
|
label,
|
|
534
560
|
size,
|
|
535
561
|
testId,
|
|
562
|
+
iconColor,
|
|
563
|
+
iconGradientStart,
|
|
564
|
+
iconGradientStop,
|
|
536
565
|
textColor,
|
|
537
566
|
}: LogoProps) => JSX.Element;
|
|
538
567
|
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
568
|
+
// @public
|
|
569
|
+
export const StatuspageWordmark: ({
|
|
570
|
+
appearance,
|
|
571
|
+
label,
|
|
572
|
+
size,
|
|
573
|
+
testId,
|
|
543
574
|
iconColor,
|
|
544
575
|
iconGradientStart,
|
|
545
576
|
iconGradientStop,
|
|
546
|
-
size,
|
|
547
|
-
testId,
|
|
548
577
|
textColor,
|
|
549
578
|
}: LogoProps) => JSX.Element;
|
|
550
579
|
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
*/
|
|
554
|
-
export declare const StrideLogo: ({
|
|
580
|
+
// @public @deprecated (undocumented)
|
|
581
|
+
export const StrideIcon: ({
|
|
555
582
|
iconColor,
|
|
556
583
|
iconGradientStart,
|
|
557
584
|
iconGradientStop,
|
|
@@ -560,10 +587,8 @@ export declare const StrideLogo: ({
|
|
|
560
587
|
textColor,
|
|
561
588
|
}: LogoProps) => JSX.Element;
|
|
562
589
|
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
*/
|
|
566
|
-
export declare const StrideWordmark: ({
|
|
590
|
+
// @public @deprecated (undocumented)
|
|
591
|
+
export const StrideLogo: ({
|
|
567
592
|
iconColor,
|
|
568
593
|
iconGradientStart,
|
|
569
594
|
iconGradientStop,
|
|
@@ -572,35 +597,51 @@ export declare const StrideWordmark: ({
|
|
|
572
597
|
textColor,
|
|
573
598
|
}: LogoProps) => JSX.Element;
|
|
574
599
|
|
|
575
|
-
|
|
600
|
+
// @public @deprecated (undocumented)
|
|
601
|
+
export const StrideWordmark: ({
|
|
576
602
|
iconColor,
|
|
577
603
|
iconGradientStart,
|
|
578
604
|
iconGradientStop,
|
|
579
|
-
label,
|
|
580
605
|
size,
|
|
581
606
|
testId,
|
|
582
607
|
textColor,
|
|
583
608
|
}: LogoProps) => JSX.Element;
|
|
584
609
|
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
iconGradientStop,
|
|
610
|
+
// @public
|
|
611
|
+
export const TrelloIcon: ({
|
|
612
|
+
appearance,
|
|
589
613
|
label,
|
|
590
614
|
size,
|
|
591
615
|
testId,
|
|
616
|
+
iconColor,
|
|
617
|
+
iconGradientStart,
|
|
618
|
+
iconGradientStop,
|
|
592
619
|
textColor,
|
|
593
620
|
}: LogoProps) => JSX.Element;
|
|
594
621
|
|
|
595
|
-
|
|
622
|
+
// @public
|
|
623
|
+
export const TrelloLogo: ({
|
|
624
|
+
appearance,
|
|
625
|
+
label,
|
|
626
|
+
size,
|
|
627
|
+
testId,
|
|
596
628
|
iconColor,
|
|
597
629
|
iconGradientStart,
|
|
598
630
|
iconGradientStop,
|
|
631
|
+
textColor,
|
|
632
|
+
}: LogoProps) => JSX.Element;
|
|
633
|
+
|
|
634
|
+
// @public
|
|
635
|
+
export const TrelloWordmark: ({
|
|
636
|
+
appearance,
|
|
599
637
|
label,
|
|
600
638
|
size,
|
|
601
639
|
testId,
|
|
640
|
+
iconColor,
|
|
641
|
+
iconGradientStart,
|
|
642
|
+
iconGradientStop,
|
|
602
643
|
textColor,
|
|
603
644
|
}: LogoProps) => JSX.Element;
|
|
604
645
|
|
|
605
|
-
|
|
646
|
+
// (No @packageDocumentation comment for this package)
|
|
606
647
|
```
|