@atlaskit/object 1.0.11 → 1.0.12
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/object.docs.tsx +34 -0
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
package/object.docs.tsx
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
|
|
3
|
+
import type { ComponentStructuredContentSource } from '@atlassian/structured-docs-types';
|
|
4
|
+
|
|
5
|
+
const documentation: ComponentStructuredContentSource[] = [
|
|
6
|
+
{
|
|
7
|
+
name: 'Object',
|
|
8
|
+
description: 'An object is an icon that represents an Atlassian-specific content type.',
|
|
9
|
+
status: 'general-availability',
|
|
10
|
+
import: {
|
|
11
|
+
name: 'Object',
|
|
12
|
+
package: '@atlaskit/object',
|
|
13
|
+
type: 'default',
|
|
14
|
+
packagePath: path.resolve(__dirname),
|
|
15
|
+
packageJson: require('./package.json'),
|
|
16
|
+
},
|
|
17
|
+
examples: [
|
|
18
|
+
{
|
|
19
|
+
name: 'Object',
|
|
20
|
+
description: 'Object example',
|
|
21
|
+
source: path.resolve(__dirname, './examples/object.tsx'),
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
name: 'Object Tile',
|
|
25
|
+
description: 'Object tile example',
|
|
26
|
+
source: path.resolve(__dirname, './examples/object-tile.tsx'),
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
keywords: ['object', 'icon', 'content type', 'tile', 'object tile', 'atlassian'],
|
|
30
|
+
categories: ['images and icons'],
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
export default documentation;
|
package/package.json
CHANGED
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"atlaskit:src": "src/index.tsx",
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@atlaskit/css": "^0.19.0",
|
|
29
|
-
"@atlaskit/icon": "^
|
|
30
|
-
"@atlaskit/icon-lab": "^
|
|
29
|
+
"@atlaskit/icon": "^33.0.0",
|
|
30
|
+
"@atlaskit/icon-lab": "^6.0.0",
|
|
31
31
|
"@atlaskit/primitives": "^18.0.0",
|
|
32
32
|
"@atlaskit/tile": "^1.0.0",
|
|
33
|
-
"@atlaskit/tokens": "^11.
|
|
33
|
+
"@atlaskit/tokens": "^11.1.0",
|
|
34
34
|
"@babel/runtime": "^7.0.0",
|
|
35
|
-
"@compiled/react": "^0.
|
|
35
|
+
"@compiled/react": "^0.20.0",
|
|
36
36
|
"tiny-invariant": "^1.2.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -42,9 +42,10 @@
|
|
|
42
42
|
"@af/accessibility-testing": "workspace:^",
|
|
43
43
|
"@af/formatting": "workspace:^",
|
|
44
44
|
"@af/visual-regression": "workspace:^",
|
|
45
|
-
"@atlaskit/ds-lib": "^
|
|
45
|
+
"@atlaskit/ds-lib": "^6.0.0",
|
|
46
46
|
"@atlaskit/ssr": "workspace:^",
|
|
47
47
|
"@atlassian/codegen": "^0.1.0",
|
|
48
|
+
"@atlassian/structured-docs-types": "workspace:^",
|
|
48
49
|
"@atlassian/testing-library": "^0.4.0",
|
|
49
50
|
"fs-extra": "^4.0.2",
|
|
50
51
|
"lodash": "^4.17.21",
|
|
@@ -90,7 +91,7 @@
|
|
|
90
91
|
}
|
|
91
92
|
},
|
|
92
93
|
"name": "@atlaskit/object",
|
|
93
|
-
"version": "1.0.
|
|
94
|
+
"version": "1.0.12",
|
|
94
95
|
"description": "An object is an icon that represents an Atlassian-specific content type.",
|
|
95
96
|
"author": "Atlassian Pty Ltd",
|
|
96
97
|
"license": "Apache-2.0",
|