@atlaskit/object 0.2.2 → 0.2.4
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 +15 -0
- package/constellation/index/examples.mdx +41 -0
- package/constellation/index/images/do-donts/object-colors-do.png +0 -0
- package/constellation/index/images/do-donts/object-colors-dont.png +0 -0
- package/constellation/index/images/do-donts/object-larger-do.png +0 -0
- package/constellation/index/images/do-donts/object-larger-dont.png +0 -0
- package/constellation/index/images/object-size-dark.png +0 -0
- package/constellation/index/images/object-size-light.png +0 -0
- package/constellation/index/object-explorer.mdx +13 -0
- package/constellation/index/props.mdx +11 -0
- package/constellation/index/usage.mdx +102 -0
- package/constellation/object-tile/code.mdx +13 -0
- package/constellation/object-tile/examples.mdx +59 -0
- package/constellation/object-tile/images/do-donts/object-tile-colors-do.png +0 -0
- package/constellation/object-tile/images/do-donts/object-tile-colors-dont.png +0 -0
- package/constellation/object-tile/images/do-donts/object-tile-smaller-do.png +0 -0
- package/constellation/object-tile/images/do-donts/object-tile-smaller-dont.png +0 -0
- package/constellation/object-tile/images/object-tile-anatomy-dark.png +0 -0
- package/constellation/object-tile/images/object-tile-anatomy-light.png +0 -0
- package/constellation/object-tile/images/object-tile-size-dark.png +0 -0
- package/constellation/object-tile/images/object-tile-size-light.png +0 -0
- package/constellation/object-tile/object-tile-explorer.mdx +15 -0
- package/constellation/object-tile/usage.mdx +112 -0
- package/dist/cjs/components/object/components/{issue.js → work-item.js} +4 -4
- package/dist/cjs/components/object-tile/components/{issue.js → work-item.js} +4 -4
- package/dist/cjs/metadata.js +615 -0
- package/dist/cjs/types.js +1 -0
- package/dist/es2019/components/object/components/{issue.js → work-item.js} +3 -3
- package/dist/es2019/components/object-tile/components/{issue.js → work-item.js} +3 -3
- package/dist/es2019/metadata.js +422 -0
- package/dist/es2019/types.js +0 -0
- package/dist/esm/components/object/components/{issue.js → work-item.js} +3 -3
- package/dist/esm/components/object-tile/components/{issue.js → work-item.js} +3 -3
- package/dist/esm/metadata.js +514 -0
- package/dist/esm/types.js +0 -0
- package/dist/types/components/object/components/{issue.d.ts → work-item.d.ts} +2 -2
- package/dist/{types-ts4.5/components/object-tile/components/issue.d.ts → types/components/object-tile/components/work-item.d.ts} +2 -2
- package/dist/types/metadata.d.ts +22 -0
- package/dist/types/types.d.ts +2 -0
- package/dist/types-ts4.5/components/object/components/{issue.d.ts → work-item.d.ts} +2 -2
- package/dist/{types/components/object-tile/components/issue.d.ts → types-ts4.5/components/object-tile/components/work-item.d.ts} +2 -2
- package/dist/types-ts4.5/metadata.d.ts +22 -0
- package/dist/types-ts4.5/types.d.ts +2 -0
- package/metadata/package.json +17 -0
- package/package.json +8 -11
- package/tile/work-item/package.json +17 -0
- package/types/package.json +17 -0
- package/work-item/package.json +17 -0
- package/issue/package.json +0 -17
- package/tile/issue/package.json +0 -17
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/object/tile/work-item",
|
|
3
|
+
"main": "../../dist/cjs/components/object-tile/components/work-item.js",
|
|
4
|
+
"module": "../../dist/esm/components/object-tile/components/work-item.js",
|
|
5
|
+
"module:es2019": "../../dist/es2019/components/object-tile/components/work-item.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../../dist/types/components/object-tile/components/work-item.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../../dist/types-ts4.5/components/object-tile/components/work-item.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/object/types",
|
|
3
|
+
"main": "../dist/cjs/types.js",
|
|
4
|
+
"module": "../dist/esm/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/object/work-item",
|
|
3
|
+
"main": "../dist/cjs/components/object/components/work-item.js",
|
|
4
|
+
"module": "../dist/esm/components/object/components/work-item.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/components/object/components/work-item.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/components/object/components/work-item.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/components/object/components/work-item.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/issue/package.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlaskit/object/issue",
|
|
3
|
-
"main": "../dist/cjs/components/object/components/issue.js",
|
|
4
|
-
"module": "../dist/esm/components/object/components/issue.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/components/object/components/issue.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.compiled.css"
|
|
8
|
-
],
|
|
9
|
-
"types": "../dist/types/components/object/components/issue.d.ts",
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../dist/types-ts4.5/components/object/components/issue.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
package/tile/issue/package.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@atlaskit/object/tile/issue",
|
|
3
|
-
"main": "../../dist/cjs/components/object-tile/components/issue.js",
|
|
4
|
-
"module": "../../dist/esm/components/object-tile/components/issue.js",
|
|
5
|
-
"module:es2019": "../../dist/es2019/components/object-tile/components/issue.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.compiled.css"
|
|
8
|
-
],
|
|
9
|
-
"types": "../../dist/types/components/object-tile/components/issue.d.ts",
|
|
10
|
-
"typesVersions": {
|
|
11
|
-
">=4.5 <5.9": {
|
|
12
|
-
"*": [
|
|
13
|
-
"../../dist/types-ts4.5/components/object-tile/components/issue.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|