@atlaskit/skeleton 0.1.1 → 0.2.0

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @atlaskit/skeleton
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+
3
13
  ## 0.1.1
4
14
 
5
15
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/skeleton",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/skeleton",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/skeleton",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/skeleton",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "A skeleton acts as a placeholder for content, usually while the content loads.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -31,7 +31,7 @@
31
31
  ".": "./src/index.tsx"
32
32
  },
33
33
  "dependencies": {
34
- "@atlaskit/theme": "^12.4.0",
34
+ "@atlaskit/theme": "^12.5.0",
35
35
  "@babel/runtime": "^7.0.0",
36
36
  "@emotion/react": "^11.7.1"
37
37
  },
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@atlaskit/docs": "*",
43
- "@atlaskit/ds-explorations": "^2.0.5",
44
- "@atlaskit/primitives": "^0.8.0",
43
+ "@atlaskit/ds-explorations": "^2.1.0",
44
+ "@atlaskit/primitives": "^0.9.0",
45
45
  "@atlaskit/ssr": "*",
46
46
  "@atlaskit/visual-regression": "*",
47
47
  "@atlaskit/webdriver-runner": "*",
@@ -1,25 +0,0 @@
1
- ## API Report File for "@atlaskit/skeleton"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import { jsx } from '@emotion/react';
8
-
9
- // @public
10
- const Skeleton: ({ width, height, borderRadius, isShimmering, groupName, testId, }: SkeletonProps) => jsx.JSX.Element;
11
- export default Skeleton;
12
-
13
- // @public (undocumented)
14
- type SkeletonProps = {
15
- width: number | string;
16
- height: number | string;
17
- borderRadius?: number | string;
18
- isShimmering?: boolean;
19
- groupName?: string;
20
- testId?: string;
21
- };
22
-
23
- // (No @packageDocumentation comment for this package)
24
-
25
- ```