@atlaskit/empty-state 10.1.16 → 10.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 +13 -0
- package/dist/cjs/entry-points/empty-state.js +13 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/empty-state.js +1 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/empty-state.js +1 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/empty-state.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/empty-state.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/empty-state/package.json +17 -0
- package/package.json +4 -4
- package/types/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/empty-state
|
|
2
2
|
|
|
3
|
+
## 10.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`7d6e9b5e6e7c6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7d6e9b5e6e7c6) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
## 10.1.17
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 10.1.16
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _emptyState.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _emptyState = _interopRequireDefault(require("../empty-state"));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../empty-state';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../empty-state';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../empty-state';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { EmptyStateProps, RenderImageProps, Width } from '../types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../empty-state';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { EmptyStateProps, RenderImageProps, Width } from '../types';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/empty-state/empty-state",
|
|
3
|
+
"main": "../dist/cjs/entry-points/empty-state.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/empty-state.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/empty-state.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/empty-state.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/empty-state.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/empty-state",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.0",
|
|
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/"
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/button": "^23.11.0",
|
|
35
35
|
"@atlaskit/heading": "^5.4.0",
|
|
36
|
-
"@atlaskit/primitives": "^
|
|
36
|
+
"@atlaskit/primitives": "^19.0.0",
|
|
37
37
|
"@atlaskit/spinner": "^19.1.0",
|
|
38
|
-
"@atlaskit/tokens": "^
|
|
38
|
+
"@atlaskit/tokens": "^13.0.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0",
|
|
40
40
|
"@compiled/react": "^0.20.0"
|
|
41
41
|
},
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@af/accessibility-testing": "workspace:^",
|
|
47
47
|
"@af/integration-testing": "workspace:^",
|
|
48
48
|
"@af/visual-regression": "workspace:^",
|
|
49
|
-
"@atlaskit/docs": "^11.
|
|
49
|
+
"@atlaskit/docs": "^11.8.0",
|
|
50
50
|
"@atlaskit/link": "^3.4.0",
|
|
51
51
|
"@atlaskit/section-message": "^8.12.0",
|
|
52
52
|
"@atlassian/react-compiler-gating": "workspace:^",
|
package/types/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/empty-state/types",
|
|
3
|
-
"main": "../dist/cjs/types.js",
|
|
4
|
-
"module": "../dist/esm/types.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/types.js",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/types.d.ts",
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/types.d.ts"
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|