@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.
Files changed (50) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/constellation/index/examples.mdx +41 -0
  3. package/constellation/index/images/do-donts/object-colors-do.png +0 -0
  4. package/constellation/index/images/do-donts/object-colors-dont.png +0 -0
  5. package/constellation/index/images/do-donts/object-larger-do.png +0 -0
  6. package/constellation/index/images/do-donts/object-larger-dont.png +0 -0
  7. package/constellation/index/images/object-size-dark.png +0 -0
  8. package/constellation/index/images/object-size-light.png +0 -0
  9. package/constellation/index/object-explorer.mdx +13 -0
  10. package/constellation/index/props.mdx +11 -0
  11. package/constellation/index/usage.mdx +102 -0
  12. package/constellation/object-tile/code.mdx +13 -0
  13. package/constellation/object-tile/examples.mdx +59 -0
  14. package/constellation/object-tile/images/do-donts/object-tile-colors-do.png +0 -0
  15. package/constellation/object-tile/images/do-donts/object-tile-colors-dont.png +0 -0
  16. package/constellation/object-tile/images/do-donts/object-tile-smaller-do.png +0 -0
  17. package/constellation/object-tile/images/do-donts/object-tile-smaller-dont.png +0 -0
  18. package/constellation/object-tile/images/object-tile-anatomy-dark.png +0 -0
  19. package/constellation/object-tile/images/object-tile-anatomy-light.png +0 -0
  20. package/constellation/object-tile/images/object-tile-size-dark.png +0 -0
  21. package/constellation/object-tile/images/object-tile-size-light.png +0 -0
  22. package/constellation/object-tile/object-tile-explorer.mdx +15 -0
  23. package/constellation/object-tile/usage.mdx +112 -0
  24. package/dist/cjs/components/object/components/{issue.js → work-item.js} +4 -4
  25. package/dist/cjs/components/object-tile/components/{issue.js → work-item.js} +4 -4
  26. package/dist/cjs/metadata.js +615 -0
  27. package/dist/cjs/types.js +1 -0
  28. package/dist/es2019/components/object/components/{issue.js → work-item.js} +3 -3
  29. package/dist/es2019/components/object-tile/components/{issue.js → work-item.js} +3 -3
  30. package/dist/es2019/metadata.js +422 -0
  31. package/dist/es2019/types.js +0 -0
  32. package/dist/esm/components/object/components/{issue.js → work-item.js} +3 -3
  33. package/dist/esm/components/object-tile/components/{issue.js → work-item.js} +3 -3
  34. package/dist/esm/metadata.js +514 -0
  35. package/dist/esm/types.js +0 -0
  36. package/dist/types/components/object/components/{issue.d.ts → work-item.d.ts} +2 -2
  37. package/dist/{types-ts4.5/components/object-tile/components/issue.d.ts → types/components/object-tile/components/work-item.d.ts} +2 -2
  38. package/dist/types/metadata.d.ts +22 -0
  39. package/dist/types/types.d.ts +2 -0
  40. package/dist/types-ts4.5/components/object/components/{issue.d.ts → work-item.d.ts} +2 -2
  41. package/dist/{types/components/object-tile/components/issue.d.ts → types-ts4.5/components/object-tile/components/work-item.d.ts} +2 -2
  42. package/dist/types-ts4.5/metadata.d.ts +22 -0
  43. package/dist/types-ts4.5/types.d.ts +2 -0
  44. package/metadata/package.json +17 -0
  45. package/package.json +8 -11
  46. package/tile/work-item/package.json +17 -0
  47. package/types/package.json +17 -0
  48. package/work-item/package.json +17 -0
  49. package/issue/package.json +0 -17
  50. 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
+ }
@@ -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
- }
@@ -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
- }