@atlaskit/empty-state 7.2.1 → 7.3.3

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,37 @@
1
1
  # @atlaskit/empty-state
2
2
 
3
+ ## 7.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`f460cc7c411`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f460cc7c411) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving bundle size.
8
+ - Updated dependencies
9
+
10
+ ## 7.3.2
11
+
12
+ ### Patch Changes
13
+
14
+ - [`0397fedf294`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0397fedf294) - Added documentation homepage URL to package.json
15
+
16
+ ## 7.3.1
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+
22
+ ## 7.3.0
23
+
24
+ ### Minor Changes
25
+
26
+ - [`b5c96b26bf3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5c96b26bf3) - Instrumented empty-state with the new theming package, `@atlaskit/tokens`.
27
+
28
+ New tokens will be visible only in applications configured to use the new Tokens API (currently in alpha).
29
+ These changes are intended to be interoperable with the legacy theme implementation. Legacy dark mode users should expect no visual or breaking changes.
30
+
31
+ ### Patch Changes
32
+
33
+ - Updated dependencies
34
+
3
35
  ## 7.2.1
4
36
 
5
37
  ### Patch Changes
@@ -15,7 +15,7 @@ var _constants = require("@atlaskit/theme/constants");
15
15
  var descriptionStyles = (0, _core.css)({
16
16
  marginTop: 0,
17
17
  marginBottom: "".concat((0, _constants.gridSize)() * 3, "px"),
18
- color: _colors.N800
18
+ color: "var(--ds-text-highEmphasis, ".concat(_colors.N800, ")")
19
19
  });
20
20
  /**
21
21
  * __Description__
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/empty-state",
3
- "version": "7.2.1",
3
+ "version": "7.3.3",
4
4
  "sideEffects": false
5
5
  }
@@ -5,7 +5,7 @@ import { gridSize as getGridSize } from '@atlaskit/theme/constants';
5
5
  const descriptionStyles = css({
6
6
  marginTop: 0,
7
7
  marginBottom: `${getGridSize() * 3}px`,
8
- color: N800
8
+ color: `var(--ds-text-highEmphasis, ${N800})`
9
9
  });
10
10
  /**
11
11
  * __Description__
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/empty-state",
3
- "version": "7.2.1",
3
+ "version": "7.3.3",
4
4
  "sideEffects": false
5
5
  }
@@ -5,7 +5,7 @@ import { gridSize as getGridSize } from '@atlaskit/theme/constants';
5
5
  var descriptionStyles = css({
6
6
  marginTop: 0,
7
7
  marginBottom: "".concat(getGridSize() * 3, "px"),
8
- color: N800
8
+ color: "var(--ds-text-highEmphasis, ".concat(N800, ")")
9
9
  });
10
10
  /**
11
11
  * __Description__
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/empty-state",
3
- "version": "7.2.1",
3
+ "version": "7.3.3",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@atlaskit/empty-state",
3
- "version": "7.2.1",
4
- "description": "A React component used for presenting various empty states (no items, empty search, broken link, welcome screen etc.)",
3
+ "version": "7.3.3",
4
+ "description": "An empty state appears when there is no data to display and describes what the user can do next.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
7
7
  },
8
8
  "repository": "https://bitbucket.org/atlassian/atlassian-frontend",
9
+ "homepage": "https://atlassian.design/components/empty-state/",
9
10
  "author": "Atlassian Pty Ltd",
10
11
  "license": "Apache-2.0",
11
12
  "main": "dist/cjs/index.js",
@@ -25,7 +26,8 @@
25
26
  "dependencies": {
26
27
  "@atlaskit/button": "^16.1.0",
27
28
  "@atlaskit/spinner": "^15.1.0",
28
- "@atlaskit/theme": "^11.5.0",
29
+ "@atlaskit/theme": "^12.0.0",
30
+ "@atlaskit/tokens": "^0.4.0",
29
31
  "@babel/runtime": "^7.0.0",
30
32
  "@emotion/core": "^10.0.9"
31
33
  },
@@ -50,8 +52,11 @@
50
52
  },
51
53
  "@repo/internal": {
52
54
  "analytics": "analytics-next",
53
- "theming": "new-theming-api",
54
- "styling": "emotion",
55
+ "theming": "tokens",
56
+ "styling": [
57
+ "static",
58
+ "emotion"
59
+ ],
55
60
  "design-system": "v1",
56
61
  "deprecation": "no-deprecated-imports"
57
62
  }