@atlaskit/empty-state 7.3.1 → 7.3.5
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 +26 -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/dist/types/empty-state.d.ts +1 -0
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @atlaskit/empty-state
|
|
2
2
|
|
|
3
|
+
## 7.3.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - Updates usage of deprecated token names so they're aligned with the latest naming conventions. No UI or visual changes
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
## 7.3.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
16
|
+
## 7.3.3
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- [`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.
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
|
|
23
|
+
## 7.3.2
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- [`0397fedf294`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0397fedf294) - Added documentation homepage URL to package.json
|
|
28
|
+
|
|
3
29
|
## 7.3.1
|
|
4
30
|
|
|
5
31
|
### 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, ".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, ${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, ".concat(N800, ")")
|
|
10
9
|
});
|
|
11
10
|
/**
|
|
12
11
|
* __Description__
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/empty-state",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.5",
|
|
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/"
|
|
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",
|
|
@@ -16,7 +17,6 @@
|
|
|
16
17
|
"atlaskit:src": "src/index.tsx",
|
|
17
18
|
"atlassian": {
|
|
18
19
|
"team": "Design System Team",
|
|
19
|
-
"inPublicMirror": true,
|
|
20
20
|
"releaseModel": "scheduled",
|
|
21
21
|
"website": {
|
|
22
22
|
"name": "Empty state"
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@atlaskit/button": "^16.1.0",
|
|
27
27
|
"@atlaskit/spinner": "^15.1.0",
|
|
28
|
-
"@atlaskit/theme": "^12.
|
|
29
|
-
"@atlaskit/tokens": "^0.
|
|
28
|
+
"@atlaskit/theme": "^12.1.0",
|
|
29
|
+
"@atlaskit/tokens": "^0.6.0",
|
|
30
30
|
"@babel/runtime": "^7.0.0",
|
|
31
31
|
"@emotion/core": "^10.0.9"
|
|
32
32
|
},
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"react": "^16.8.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@atlaskit/build-utils": "*",
|
|
38
37
|
"@atlaskit/docs": "^9.0.0",
|
|
39
38
|
"@atlaskit/ssr": "*",
|
|
40
39
|
"@atlaskit/visual-regression": "*",
|
|
@@ -52,7 +51,10 @@
|
|
|
52
51
|
"@repo/internal": {
|
|
53
52
|
"analytics": "analytics-next",
|
|
54
53
|
"theming": "tokens",
|
|
55
|
-
"styling":
|
|
54
|
+
"styling": [
|
|
55
|
+
"static",
|
|
56
|
+
"emotion"
|
|
57
|
+
],
|
|
56
58
|
"design-system": "v1",
|
|
57
59
|
"deprecation": "no-deprecated-imports"
|
|
58
60
|
}
|