@atlaskit/logo 13.14.2 → 13.14.3
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/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +7 -4
- package/report.api.md +67 -0
- package/tmp/api-report-tmp.d.ts +220 -0
package/CHANGELOG.md
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/logo",
|
|
3
|
-
"version": "13.14.
|
|
3
|
+
"version": "13.14.3",
|
|
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/"
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
"atlaskit:src": "src/index.tsx",
|
|
25
25
|
"atlassian": {
|
|
26
26
|
"team": "Design System Team",
|
|
27
|
-
"releaseModel": "
|
|
27
|
+
"releaseModel": "continuous",
|
|
28
|
+
"productPushConsumption": [
|
|
29
|
+
"jira"
|
|
30
|
+
],
|
|
28
31
|
"website": {
|
|
29
32
|
"name": "Logo",
|
|
30
33
|
"category": "Components"
|
|
@@ -66,9 +69,9 @@
|
|
|
66
69
|
"@atlaskit/button": "^16.7.0",
|
|
67
70
|
"@atlaskit/code": "^14.6.0",
|
|
68
71
|
"@atlaskit/docs": "*",
|
|
69
|
-
"@atlaskit/radio": "^5.
|
|
72
|
+
"@atlaskit/radio": "^5.6.0",
|
|
70
73
|
"@atlaskit/section-message": "^6.4.0",
|
|
71
|
-
"@atlaskit/select": "^16.
|
|
74
|
+
"@atlaskit/select": "^16.3.0",
|
|
72
75
|
"@atlaskit/ssr": "*",
|
|
73
76
|
"@atlaskit/visual-regression": "*",
|
|
74
77
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
package/report.api.md
CHANGED
|
@@ -20,6 +20,38 @@
|
|
|
20
20
|
// @public (undocumented)
|
|
21
21
|
type Appearance = 'brand' | 'inverse' | 'neutral';
|
|
22
22
|
|
|
23
|
+
// @public
|
|
24
|
+
export const AtlasIcon: ({
|
|
25
|
+
appearance,
|
|
26
|
+
label,
|
|
27
|
+
size,
|
|
28
|
+
testId,
|
|
29
|
+
}: LogoPropsAppearanceRequired) => JSX.Element;
|
|
30
|
+
|
|
31
|
+
// @public
|
|
32
|
+
export const AtlasLogo: ({
|
|
33
|
+
appearance,
|
|
34
|
+
label,
|
|
35
|
+
size,
|
|
36
|
+
testId,
|
|
37
|
+
}: LogoPropsAppearanceRequired) => JSX.Element;
|
|
38
|
+
|
|
39
|
+
// @public
|
|
40
|
+
export const AtlassianAnalyticsIcon: ({
|
|
41
|
+
appearance,
|
|
42
|
+
label,
|
|
43
|
+
size,
|
|
44
|
+
testId,
|
|
45
|
+
}: LogoPropsAppearanceRequired) => JSX.Element;
|
|
46
|
+
|
|
47
|
+
// @public
|
|
48
|
+
export const AtlassianAnalyticsLogo: ({
|
|
49
|
+
appearance,
|
|
50
|
+
label,
|
|
51
|
+
size,
|
|
52
|
+
testId,
|
|
53
|
+
}: LogoPropsAppearanceRequired) => JSX.Element;
|
|
54
|
+
|
|
23
55
|
// @public
|
|
24
56
|
export const AtlassianIcon: ({
|
|
25
57
|
appearance,
|
|
@@ -320,6 +352,30 @@ export const JiraLogo: ({
|
|
|
320
352
|
textColor,
|
|
321
353
|
}: LogoProps) => JSX.Element;
|
|
322
354
|
|
|
355
|
+
// @public
|
|
356
|
+
export const JiraProductDiscoveryIcon: ({
|
|
357
|
+
appearance,
|
|
358
|
+
label,
|
|
359
|
+
size,
|
|
360
|
+
testId,
|
|
361
|
+
iconColor,
|
|
362
|
+
iconGradientStart,
|
|
363
|
+
iconGradientStop,
|
|
364
|
+
textColor,
|
|
365
|
+
}: LogoProps) => JSX.Element;
|
|
366
|
+
|
|
367
|
+
// @public
|
|
368
|
+
export const JiraProductDiscoveryLogo: ({
|
|
369
|
+
appearance,
|
|
370
|
+
label,
|
|
371
|
+
size,
|
|
372
|
+
testId,
|
|
373
|
+
iconColor,
|
|
374
|
+
iconGradientStart,
|
|
375
|
+
iconGradientStop,
|
|
376
|
+
textColor,
|
|
377
|
+
}: LogoProps) => JSX.Element;
|
|
378
|
+
|
|
323
379
|
// @public @deprecated (undocumented)
|
|
324
380
|
export const JiraServiceDeskIcon: ({
|
|
325
381
|
iconColor,
|
|
@@ -479,6 +535,12 @@ export type LogoProps = {
|
|
|
479
535
|
testId?: string;
|
|
480
536
|
};
|
|
481
537
|
|
|
538
|
+
// @public (undocumented)
|
|
539
|
+
type LogoPropsAppearanceRequired = Omit<
|
|
540
|
+
WithRequiredProperty<LogoProps, 'appearance'>,
|
|
541
|
+
'iconColor' | 'iconGradientStart' | 'iconGradientStop' | 'textColor'
|
|
542
|
+
>;
|
|
543
|
+
|
|
482
544
|
// @public @deprecated (undocumented)
|
|
483
545
|
export const OpsGenieIcon: ({
|
|
484
546
|
iconColor,
|
|
@@ -649,6 +711,11 @@ export const TrelloWordmark: ({
|
|
|
649
711
|
textColor,
|
|
650
712
|
}: LogoProps) => JSX.Element;
|
|
651
713
|
|
|
714
|
+
// @public
|
|
715
|
+
type WithRequiredProperty<Type, Key extends keyof Type> = Type & {
|
|
716
|
+
[Property in Key]-?: Type[Property];
|
|
717
|
+
};
|
|
718
|
+
|
|
652
719
|
// (No @packageDocumentation comment for this package)
|
|
653
720
|
```
|
|
654
721
|
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
## API Report File for "@atlaskit/logo"
|
|
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
|
+
// @public (undocumented)
|
|
10
|
+
type Appearance = 'brand' | 'inverse' | 'neutral';
|
|
11
|
+
|
|
12
|
+
// @public
|
|
13
|
+
export const AtlasIcon: ({ appearance, label, size, testId, }: LogoPropsAppearanceRequired) => JSX.Element;
|
|
14
|
+
|
|
15
|
+
// @public
|
|
16
|
+
export const AtlasLogo: ({ appearance, label, size, testId, }: LogoPropsAppearanceRequired) => JSX.Element;
|
|
17
|
+
|
|
18
|
+
// @public
|
|
19
|
+
export const AtlassianAnalyticsIcon: ({ appearance, label, size, testId, }: LogoPropsAppearanceRequired) => JSX.Element;
|
|
20
|
+
|
|
21
|
+
// @public
|
|
22
|
+
export const AtlassianAnalyticsLogo: ({ appearance, label, size, testId, }: LogoPropsAppearanceRequired) => JSX.Element;
|
|
23
|
+
|
|
24
|
+
// @public
|
|
25
|
+
export const AtlassianIcon: ({ appearance, label, size, iconColor, iconGradientStart, iconGradientStop, textColor, testId, }: LogoProps) => JSX.Element;
|
|
26
|
+
|
|
27
|
+
// @public
|
|
28
|
+
export const AtlassianLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
29
|
+
|
|
30
|
+
// @public
|
|
31
|
+
export const AtlassianStartLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
32
|
+
|
|
33
|
+
// @public
|
|
34
|
+
export const AtlassianWordmark: ({ appearance, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
35
|
+
|
|
36
|
+
// @public
|
|
37
|
+
export const BitbucketIcon: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
38
|
+
|
|
39
|
+
// @public
|
|
40
|
+
export const BitbucketLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
41
|
+
|
|
42
|
+
// @public
|
|
43
|
+
export const BitbucketWordmark: ({ appearance, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
44
|
+
|
|
45
|
+
// @public
|
|
46
|
+
export const CompassIcon: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
47
|
+
|
|
48
|
+
// @public
|
|
49
|
+
export const CompassLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
50
|
+
|
|
51
|
+
// @public
|
|
52
|
+
export const CompassWordmark: ({ appearance, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
53
|
+
|
|
54
|
+
// @public
|
|
55
|
+
export const ConfluenceIcon: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
56
|
+
|
|
57
|
+
// @public
|
|
58
|
+
export const ConfluenceLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
59
|
+
|
|
60
|
+
// @public
|
|
61
|
+
export const ConfluenceWordmark: ({ appearance, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
62
|
+
|
|
63
|
+
// @public
|
|
64
|
+
export const HalpIcon: ({ appearance, label, size, testId, textColor, iconColor, iconGradientStart, iconGradientStop, }: LogoProps) => JSX.Element;
|
|
65
|
+
|
|
66
|
+
// @public
|
|
67
|
+
export const HalpLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
68
|
+
|
|
69
|
+
// @public
|
|
70
|
+
export const HalpWordmark: ({ appearance, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
71
|
+
|
|
72
|
+
// @public @deprecated (undocumented)
|
|
73
|
+
export const HipchatIcon: ({ label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
74
|
+
|
|
75
|
+
// @public @deprecated (undocumented)
|
|
76
|
+
export const HipchatLogo: ({ iconColor, iconGradientStart, iconGradientStop, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
77
|
+
|
|
78
|
+
// @public @deprecated (undocumented)
|
|
79
|
+
export const HipchatWordmark: ({ iconColor, iconGradientStart, iconGradientStop, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
80
|
+
|
|
81
|
+
// @public
|
|
82
|
+
export const JiraAlignIcon: ({ appearance, label, size, testId, textColor, iconColor, iconGradientStart, iconGradientStop, }: LogoProps) => JSX.Element;
|
|
83
|
+
|
|
84
|
+
// @public
|
|
85
|
+
export const JiraAlignLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
86
|
+
|
|
87
|
+
// @public
|
|
88
|
+
export const JiraAlignWordmark: ({ appearance, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
89
|
+
|
|
90
|
+
// @public @deprecated (undocumented)
|
|
91
|
+
export const JiraCoreIcon: ({ iconColor, iconGradientStart, iconGradientStop, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
92
|
+
|
|
93
|
+
// @public @deprecated (undocumented)
|
|
94
|
+
export const JiraCoreLogo: ({ iconColor, iconGradientStart, iconGradientStop, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
95
|
+
|
|
96
|
+
// @public @deprecated (undocumented)
|
|
97
|
+
export const JiraCoreWordmark: ({ iconColor, iconGradientStart, iconGradientStop, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
98
|
+
|
|
99
|
+
// @public
|
|
100
|
+
export const JiraIcon: ({ appearance, label, size, testId, textColor, iconColor, iconGradientStart, iconGradientStop, }: LogoProps) => JSX.Element;
|
|
101
|
+
|
|
102
|
+
// @public
|
|
103
|
+
export const JiraLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
104
|
+
|
|
105
|
+
// @public
|
|
106
|
+
export const JiraProductDiscoveryIcon: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
107
|
+
|
|
108
|
+
// @public
|
|
109
|
+
export const JiraProductDiscoveryLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
110
|
+
|
|
111
|
+
// @public @deprecated (undocumented)
|
|
112
|
+
export const JiraServiceDeskIcon: ({ iconColor, iconGradientStart, iconGradientStop, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
113
|
+
|
|
114
|
+
// @public @deprecated (undocumented)
|
|
115
|
+
export const JiraServiceDeskLogo: ({ iconColor, iconGradientStart, iconGradientStop, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
116
|
+
|
|
117
|
+
// @public @deprecated (undocumented)
|
|
118
|
+
export const JiraServiceDeskWordmark: ({ iconColor, iconGradientStart, iconGradientStop, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
119
|
+
|
|
120
|
+
// @public
|
|
121
|
+
export const JiraServiceManagementIcon: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
122
|
+
|
|
123
|
+
// @public
|
|
124
|
+
export const JiraServiceManagementLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
125
|
+
|
|
126
|
+
// @public
|
|
127
|
+
export const JiraServiceManagementWordmark: ({ appearance, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export const JiraSoftwareIcon: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
131
|
+
|
|
132
|
+
// @public
|
|
133
|
+
export const JiraSoftwareLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
134
|
+
|
|
135
|
+
// @public
|
|
136
|
+
export const JiraSoftwareWordmark: ({ appearance, label, size, testId, textColor, iconColor, iconGradientStart, iconGradientStop, }: LogoProps) => JSX.Element;
|
|
137
|
+
|
|
138
|
+
// @public
|
|
139
|
+
export const JiraWordmark: ({ appearance, label, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
140
|
+
|
|
141
|
+
// @public
|
|
142
|
+
export const JiraWorkManagementIcon: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
143
|
+
|
|
144
|
+
// @public
|
|
145
|
+
export const JiraWorkManagementLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
146
|
+
|
|
147
|
+
// @public
|
|
148
|
+
export const JiraWorkManagementWordmark: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
149
|
+
|
|
150
|
+
// @public (undocumented)
|
|
151
|
+
export type LogoProps = {
|
|
152
|
+
size?: Size;
|
|
153
|
+
appearance?: Appearance;
|
|
154
|
+
textColor?: string;
|
|
155
|
+
iconColor?: string;
|
|
156
|
+
iconGradientStart?: string;
|
|
157
|
+
iconGradientStop?: string;
|
|
158
|
+
label?: string;
|
|
159
|
+
testId?: string;
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
// @public (undocumented)
|
|
163
|
+
type LogoPropsAppearanceRequired = Omit<WithRequiredProperty<LogoProps, 'appearance'>, 'iconColor' | 'iconGradientStart' | 'iconGradientStop' | 'textColor'>;
|
|
164
|
+
|
|
165
|
+
// @public @deprecated (undocumented)
|
|
166
|
+
export const OpsGenieIcon: ({ iconColor, iconGradientStart, iconGradientStop, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
167
|
+
|
|
168
|
+
// @public
|
|
169
|
+
export const OpsgenieIcon: ({ appearance, label, size, testId, textColor, iconColor, iconGradientStart, iconGradientStop, }: LogoProps) => JSX.Element;
|
|
170
|
+
|
|
171
|
+
// @public @deprecated (undocumented)
|
|
172
|
+
export const OpsGenieLogo: ({ iconColor, iconGradientStart, iconGradientStop, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
173
|
+
|
|
174
|
+
// @public
|
|
175
|
+
export const OpsgenieLogo: ({ appearance, label, size, testId, textColor, iconColor, iconGradientStart, iconGradientStop, }: LogoProps) => JSX.Element;
|
|
176
|
+
|
|
177
|
+
// @public @deprecated (undocumented)
|
|
178
|
+
export const OpsGenieWordmark: ({ iconColor, iconGradientStart, iconGradientStop, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
179
|
+
|
|
180
|
+
// @public
|
|
181
|
+
export const OpsgenieWordmark: ({ appearance, size, testId, textColor, iconColor, iconGradientStart, iconGradientStop, }: LogoProps) => JSX.Element;
|
|
182
|
+
|
|
183
|
+
// @public (undocumented)
|
|
184
|
+
type Size = 'large' | 'medium' | 'small' | 'xlarge' | 'xsmall';
|
|
185
|
+
|
|
186
|
+
// @public
|
|
187
|
+
export const StatuspageIcon: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
188
|
+
|
|
189
|
+
// @public
|
|
190
|
+
export const StatuspageLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
191
|
+
|
|
192
|
+
// @public
|
|
193
|
+
export const StatuspageWordmark: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
194
|
+
|
|
195
|
+
// @public @deprecated (undocumented)
|
|
196
|
+
export const StrideIcon: ({ iconColor, iconGradientStart, iconGradientStop, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
197
|
+
|
|
198
|
+
// @public @deprecated (undocumented)
|
|
199
|
+
export const StrideLogo: ({ iconColor, iconGradientStart, iconGradientStop, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
200
|
+
|
|
201
|
+
// @public @deprecated (undocumented)
|
|
202
|
+
export const StrideWordmark: ({ iconColor, iconGradientStart, iconGradientStop, size, testId, textColor, }: LogoProps) => JSX.Element;
|
|
203
|
+
|
|
204
|
+
// @public
|
|
205
|
+
export const TrelloIcon: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
206
|
+
|
|
207
|
+
// @public
|
|
208
|
+
export const TrelloLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
209
|
+
|
|
210
|
+
// @public
|
|
211
|
+
export const TrelloWordmark: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
|
|
212
|
+
|
|
213
|
+
// @public
|
|
214
|
+
type WithRequiredProperty<Type, Key extends keyof Type> = Type & {
|
|
215
|
+
[Property in Key]-?: Type[Property];
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
// (No @packageDocumentation comment for this package)
|
|
219
|
+
|
|
220
|
+
```
|