@atlaskit/right-side-panel 1.1.8 → 1.1.10

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,17 @@
1
1
  # @atlaskit/right-side-panel
2
2
 
3
+ ## 1.1.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 1.1.9
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 1.1.8
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/right-side-panel",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/right-side-panel",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/right-side-panel",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/right-side-panel",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "description": "A cross-product right-side-panel component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -12,14 +12,6 @@
12
12
  "module": "dist/esm/index.js",
13
13
  "module:es2019": "dist/es2019/index.js",
14
14
  "types": "dist/types/index.d.ts",
15
- "typesVersions": {
16
- ">=4.0 <4.5": {
17
- "*": [
18
- "dist/types-ts4.0/*",
19
- "dist/types-ts4.0/index.d.ts"
20
- ]
21
- }
22
- },
23
15
  "sideEffects": false,
24
16
  "atlaskit:src": "src/index.ts",
25
17
  "atlassian": {
@@ -32,7 +24,7 @@
32
24
  },
33
25
  "dependencies": {
34
26
  "@atlaskit/theme": "^12.2.0",
35
- "@atlaskit/tokens": "^0.10.0",
27
+ "@atlaskit/tokens": "^0.12.0",
36
28
  "@babel/runtime": "^7.0.0",
37
29
  "@emotion/styled": "^10.0.7",
38
30
  "exenv": "^1.2.2",
@@ -44,7 +36,7 @@
44
36
  "react-intl-next": "npm:react-intl@^5.18.1"
45
37
  },
46
38
  "devDependencies": {
47
- "@atlaskit/button": "^16.4.0",
39
+ "@atlaskit/button": "^16.5.0",
48
40
  "@atlaskit/docs": "*",
49
41
  "@atlaskit/navigation": "^37.0.0",
50
42
  "@atlaskit/page": "^12.2.0",
package/report.api.md CHANGED
@@ -8,6 +8,7 @@
8
8
  ### Table of contents
9
9
 
10
10
  - [Main Entry Types](#main-entry-types)
11
+ - [Peer Dependencies](#peer-dependencies)
11
12
 
12
13
  ### Main Entry Types
13
14
 
@@ -97,3 +98,17 @@ interface State {
97
98
  ```
98
99
 
99
100
  <!--SECTION END: Main Entry Types-->
101
+
102
+ ### Peer Dependencies
103
+
104
+ <!--SECTION START: Peer Dependencies-->
105
+
106
+ ```json
107
+ {
108
+ "react": "^16.8.0",
109
+ "react-dom": "^16.8.0",
110
+ "react-intl-next": "npm:react-intl@^5.18.1"
111
+ }
112
+ ```
113
+
114
+ <!--SECTION END: Peer Dependencies-->
@@ -1,3 +0,0 @@
1
- export declare const transitionDurationMs = 220;
2
- export declare const transitionTimingFunction = "cubic-bezier(0.2, 0, 0, 1)";
3
- export declare const panelWidth = 368;
@@ -1,41 +0,0 @@
1
- import React from 'react';
2
- import { Component, ReactNode } from 'react';
3
- export declare const UNMOUNTED = "unmounted";
4
- export declare const EXITED = "exited";
5
- export declare const ENTERING = "entering";
6
- export declare const ENTERED = "entered";
7
- export declare const EXITING = "exiting";
8
- export declare enum TransitionStatus {
9
- UNMOUNTED = "unmounted",
10
- EXITED = "exited",
11
- ENTERING = "entering",
12
- ENTERED = "entered",
13
- EXITING = "exiting"
14
- }
15
- export interface Props {
16
- isOpen: boolean;
17
- attachPanelTo: string;
18
- children?: ReactNode;
19
- skipAnimationOnMount?: boolean;
20
- mountOnEnter?: boolean;
21
- unmountOnExit?: boolean;
22
- disableEnterAnimation?: boolean;
23
- disableExitAnimation?: boolean;
24
- onOpenAnimationFinished?: () => void;
25
- onCloseAnimationFinished?: () => void;
26
- }
27
- export interface State {
28
- entered: boolean;
29
- container?: Element | null;
30
- }
31
- export declare class RightSidePanel extends Component<Props, State> {
32
- attachPanelTo: string;
33
- state: {
34
- entered: boolean;
35
- container: undefined;
36
- };
37
- componentDidMount(): void;
38
- renderDrawer(Container: HTMLElement): ReactNode;
39
- render(): React.ReactNode;
40
- }
41
- export default RightSidePanel;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const RightSidePanelDrawer: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement>, keyof import("react").HTMLAttributes<HTMLDivElement>>, object>;
3
- export declare const RightSidePanelDrawerContent: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement>, keyof import("react").HTMLAttributes<HTMLDivElement>>, object>;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const FlexContainer: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement>, keyof import("react").HTMLAttributes<HTMLDivElement>>, object>;
3
- export declare const ContentWrapper: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement>, keyof import("react").HTMLAttributes<HTMLDivElement>>, object>;
@@ -1,2 +0,0 @@
1
- export { default as RightSidePanel } from './components/RightSidePanel';
2
- export { FlexContainer, ContentWrapper } from './components/styled';