@atlaskit/empty-state 7.3.2 → 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 +7 -0
- package/dist/cjs/styled/description.js +1 -3
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/styled/description.js +1 -2
- package/dist/es2019/version.json +1 -1
- package/dist/esm/styled/description.js +1 -2
- package/dist/esm/version.json +1 -1
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## 7.3.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -11,13 +11,11 @@ var _colors = require("@atlaskit/theme/colors");
|
|
|
11
11
|
|
|
12
12
|
var _constants = require("@atlaskit/theme/constants");
|
|
13
13
|
|
|
14
|
-
var _tokens = require("@atlaskit/tokens");
|
|
15
|
-
|
|
16
14
|
/** @jsx jsx */
|
|
17
15
|
var descriptionStyles = (0, _core.css)({
|
|
18
16
|
marginTop: 0,
|
|
19
17
|
marginBottom: "".concat((0, _constants.gridSize)() * 3, "px"),
|
|
20
|
-
color: (
|
|
18
|
+
color: "var(--ds-text-highEmphasis, ".concat(_colors.N800, ")")
|
|
21
19
|
});
|
|
22
20
|
/**
|
|
23
21
|
* __Description__
|
package/dist/cjs/version.json
CHANGED
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
import { css, jsx } from '@emotion/core';
|
|
3
3
|
import { N800 } from '@atlaskit/theme/colors';
|
|
4
4
|
import { gridSize as getGridSize } from '@atlaskit/theme/constants';
|
|
5
|
-
import { token } from '@atlaskit/tokens';
|
|
6
5
|
const descriptionStyles = css({
|
|
7
6
|
marginTop: 0,
|
|
8
7
|
marginBottom: `${getGridSize() * 3}px`,
|
|
9
|
-
color:
|
|
8
|
+
color: `var(--ds-text-highEmphasis, ${N800})`
|
|
10
9
|
});
|
|
11
10
|
/**
|
|
12
11
|
* __Description__
|
package/dist/es2019/version.json
CHANGED
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
import { css, jsx } from '@emotion/core';
|
|
3
3
|
import { N800 } from '@atlaskit/theme/colors';
|
|
4
4
|
import { gridSize as getGridSize } from '@atlaskit/theme/constants';
|
|
5
|
-
import { token } from '@atlaskit/tokens';
|
|
6
5
|
var descriptionStyles = css({
|
|
7
6
|
marginTop: 0,
|
|
8
7
|
marginBottom: "".concat(getGridSize() * 3, "px"),
|
|
9
|
-
color:
|
|
8
|
+
color: "var(--ds-text-highEmphasis, ".concat(N800, ")")
|
|
10
9
|
});
|
|
11
10
|
/**
|
|
12
11
|
* __Description__
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/empty-state",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.3",
|
|
4
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/"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@atlaskit/button": "^16.1.0",
|
|
28
28
|
"@atlaskit/spinner": "^15.1.0",
|
|
29
29
|
"@atlaskit/theme": "^12.0.0",
|
|
30
|
-
"@atlaskit/tokens": "^0.
|
|
30
|
+
"@atlaskit/tokens": "^0.4.0",
|
|
31
31
|
"@babel/runtime": "^7.0.0",
|
|
32
32
|
"@emotion/core": "^10.0.9"
|
|
33
33
|
},
|
|
@@ -53,7 +53,10 @@
|
|
|
53
53
|
"@repo/internal": {
|
|
54
54
|
"analytics": "analytics-next",
|
|
55
55
|
"theming": "tokens",
|
|
56
|
-
"styling":
|
|
56
|
+
"styling": [
|
|
57
|
+
"static",
|
|
58
|
+
"emotion"
|
|
59
|
+
],
|
|
57
60
|
"design-system": "v1",
|
|
58
61
|
"deprecation": "no-deprecated-imports"
|
|
59
62
|
}
|