@atlaskit/empty-state 7.5.0 → 7.5.1

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,11 @@
1
1
  # @atlaskit/empty-state
2
2
 
3
+ ## 7.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
8
+
3
9
  ## 7.5.0
4
10
 
5
11
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/empty-state",
3
- "version": "7.5.0",
3
+ "version": "7.5.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/empty-state",
3
- "version": "7.5.0",
3
+ "version": "7.5.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/empty-state",
3
- "version": "7.5.0",
3
+ "version": "7.5.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,7 +1,7 @@
1
1
  /** @jsx jsx */
2
2
  import { FC, ReactNode } from 'react';
3
3
  import type { Width } from '../index';
4
- declare type ContainerProps = {
4
+ type ContainerProps = {
5
5
  testId?: string;
6
6
  width: Width;
7
7
  children: ReactNode;
@@ -1,6 +1,6 @@
1
1
  /** @jsx jsx */
2
2
  import { FC } from 'react';
3
- declare type ImageProps = {
3
+ type ImageProps = {
4
4
  height?: number;
5
5
  maxHeight: number;
6
6
  maxWidth: number;
@@ -5,8 +5,8 @@ export interface RenderImageProps {
5
5
  imageWidth?: number;
6
6
  imageHeight?: number;
7
7
  }
8
- export declare type Sizes = 'narrow' | 'wide';
9
- export declare type Width = Sizes;
8
+ export type Sizes = 'narrow' | 'wide';
9
+ export type Width = Sizes;
10
10
  export interface EmptyStateProps {
11
11
  /**
12
12
  * Title that briefly describes the page to the user.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/empty-state",
3
- "version": "7.5.0",
3
+ "version": "7.5.1",
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/"
@@ -13,6 +13,14 @@
13
13
  "module": "dist/esm/index.js",
14
14
  "module:es2019": "dist/es2019/index.js",
15
15
  "types": "dist/types/index.d.ts",
16
+ "typesVersions": {
17
+ ">=4.5 <4.9": {
18
+ "*": [
19
+ "dist/types-ts4.5/*",
20
+ "dist/types-ts4.5/index.d.ts"
21
+ ]
22
+ }
23
+ },
16
24
  "sideEffects": false,
17
25
  "atlaskit:src": "src/index.tsx",
18
26
  "atlassian": {
@@ -27,7 +35,7 @@
27
35
  "@atlaskit/button": "^16.7.0",
28
36
  "@atlaskit/spinner": "^15.5.0",
29
37
  "@atlaskit/theme": "^12.5.0",
30
- "@atlaskit/tokens": "^1.3.0",
38
+ "@atlaskit/tokens": "^1.4.0",
31
39
  "@babel/runtime": "^7.0.0",
32
40
  "@emotion/react": "^11.7.1"
33
41
  },
@@ -42,7 +50,7 @@
42
50
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
43
51
  "@testing-library/react": "^12.1.5",
44
52
  "react-dom": "^16.8.0",
45
- "typescript": "4.5.5",
53
+ "typescript": "~4.9.5",
46
54
  "wait-for-expect": "^1.2.0"
47
55
  },
48
56
  "techstack": {
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/types.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/types.d.ts"
11
+ "../dist/types-ts4.5/types.d.ts"
12
12
  ]
13
13
  }
14
14
  }