@atlaskit/logo 20.1.1 → 20.1.2
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/logo.docs.tsx +36 -34
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/logo.docs.tsx
CHANGED
|
@@ -1,41 +1,43 @@
|
|
|
1
1
|
import path from 'path';
|
|
2
2
|
|
|
3
|
-
import type {
|
|
3
|
+
import type { StructuredContentSource } from '@atlassian/structured-docs-types/types';
|
|
4
4
|
|
|
5
|
-
const documentation:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
description: 'A component for displaying the Atlassian icon.',
|
|
9
|
-
status: 'general-availability',
|
|
10
|
-
import: {
|
|
5
|
+
const documentation: StructuredContentSource = {
|
|
6
|
+
components: [
|
|
7
|
+
{
|
|
11
8
|
name: 'AtlassianIcon',
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
'Consider icon sizing and placement',
|
|
21
|
-
'Maintain brand consistency',
|
|
22
|
-
],
|
|
23
|
-
accessibilityGuidelines: [
|
|
24
|
-
'Provide appropriate alt text for the icon',
|
|
25
|
-
'Ensure icon visibility and contrast',
|
|
26
|
-
'Consider icon sizing and placement',
|
|
27
|
-
'Use appropriate icon variants',
|
|
28
|
-
],
|
|
29
|
-
examples: [
|
|
30
|
-
{
|
|
31
|
-
name: 'Atlassian Icon',
|
|
32
|
-
description: 'Atlassian Icon example',
|
|
33
|
-
source: path.resolve(__dirname, './examples/ai/atlassian-icon.tsx'),
|
|
9
|
+
description: 'A component for displaying the Atlassian icon.',
|
|
10
|
+
status: 'general-availability',
|
|
11
|
+
import: {
|
|
12
|
+
name: 'AtlassianIcon',
|
|
13
|
+
package: '@atlaskit/logo',
|
|
14
|
+
type: 'named',
|
|
15
|
+
packagePath: path.resolve(__dirname),
|
|
16
|
+
packageJson: require('./package.json'),
|
|
34
17
|
},
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
18
|
+
usageGuidelines: [
|
|
19
|
+
'Use for Atlassian brand representation',
|
|
20
|
+
'Choose appropriate icon variants',
|
|
21
|
+
'Consider icon sizing and placement',
|
|
22
|
+
'Maintain brand consistency',
|
|
23
|
+
],
|
|
24
|
+
accessibilityGuidelines: [
|
|
25
|
+
'Provide appropriate alt text for the icon',
|
|
26
|
+
'Ensure icon visibility and contrast',
|
|
27
|
+
'Consider icon sizing and placement',
|
|
28
|
+
'Use appropriate icon variants',
|
|
29
|
+
],
|
|
30
|
+
examples: [
|
|
31
|
+
{
|
|
32
|
+
name: 'Atlassian Icon',
|
|
33
|
+
description: 'Atlassian Icon example',
|
|
34
|
+
source: path.resolve(__dirname, './examples/ai/atlassian-icon.tsx'),
|
|
35
|
+
},
|
|
36
|
+
],
|
|
37
|
+
keywords: ['logo', 'brand', 'atlassian', 'identity', 'header'],
|
|
38
|
+
categories: ['brand'],
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
};
|
|
40
42
|
|
|
41
43
|
export default documentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/logo",
|
|
3
|
-
"version": "20.1.
|
|
3
|
+
"version": "20.1.2",
|
|
4
4
|
"description": "A logo is a visual representation of a brand or app. It can be a word, an image, or a combination of both.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@atlaskit/css": "^0.19.0",
|
|
39
39
|
"@atlaskit/ds-lib": "^7.0.0",
|
|
40
40
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
41
|
-
"@atlaskit/theme": "^
|
|
41
|
+
"@atlaskit/theme": "^25.0.0",
|
|
42
42
|
"@atlaskit/tokens": "^13.0.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"@compiled/react": "^0.20.0"
|