@atlaskit/page-layout 1.3.4 → 1.3.6

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/page-layout
2
2
 
3
+ ## 1.3.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 1.3.5
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 1.3.4
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/page-layout",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/page-layout",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/page-layout",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/page-layout",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "A collection of components which let you compose an application's page layout.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -30,7 +30,7 @@
30
30
  "@atlaskit/icon": "^21.11.0",
31
31
  "@atlaskit/motion": "^1.3.0",
32
32
  "@atlaskit/theme": "^12.2.0",
33
- "@atlaskit/tokens": "^0.11.0",
33
+ "@atlaskit/tokens": "^0.13.0",
34
34
  "@babel/runtime": "^7.0.0",
35
35
  "@emotion/react": "^11.7.1",
36
36
  "bind-event-listener": "^2.1.1",
@@ -43,7 +43,7 @@
43
43
  "devDependencies": {
44
44
  "@atlaskit/atlassian-navigation": "^2.3.0",
45
45
  "@atlaskit/atlassian-notifications": "^0.3.0",
46
- "@atlaskit/button": "^16.4.0",
46
+ "@atlaskit/button": "^16.5.0",
47
47
  "@atlaskit/docs": "*",
48
48
  "@atlaskit/drawer": "^7.4.0",
49
49
  "@atlaskit/icon": "*",
package/report.api.md CHANGED
@@ -1,12 +1,17 @@
1
+ <!-- API Report Version: 2.2 -->
2
+
1
3
  ## API Report File for "@atlaskit/page-layout"
2
4
 
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
5
+ > Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
6
+ > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
7
+
8
+ ### Table of contents
9
+
10
+ - [Main Entry Types](#main-entry-types)
4
11
 
5
- <!--
6
- Generated API Report version: 2.0
7
- -->
12
+ ### Main Entry Types
8
13
 
9
- [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
14
+ <!--SECTION START: Main Entry Types-->
10
15
 
11
16
  ```ts
12
17
  import { ButtonHTMLAttributes } from 'react';
@@ -34,13 +39,13 @@ interface ContentProps {
34
39
 
35
40
  // @public (undocumented)
36
41
  type DimensionNames =
37
- | 'leftPanelWidth'
38
42
  | 'bannerHeight'
39
- | 'topNavigationHeight'
40
- | 'leftSidebarWidth'
43
+ | 'leftPanelWidth'
41
44
  | 'leftSidebarFlyoutWidth'
45
+ | 'leftSidebarWidth'
46
+ | 'rightPanelWidth'
42
47
  | 'rightSidebarWidth'
43
- | 'rightPanelWidth';
48
+ | 'topNavigationHeight';
44
49
 
45
50
  // @public (undocumented)
46
51
  export type Dimensions = Partial<Record<DimensionNames, number>>;
@@ -193,8 +198,8 @@ export const usePageLayoutResize: () => {
193
198
  expandLeftSidebar: () => void;
194
199
  collapseLeftSidebar: (
195
200
  event?:
196
- | MouseEvent_2<Element, globalThis.MouseEvent>
197
201
  | KeyboardEvent_2<Element>
202
+ | MouseEvent_2<Element, globalThis.MouseEvent>
198
203
  | undefined,
199
204
  collapseWithoutTransition?: boolean | undefined,
200
205
  ) => void;
@@ -203,3 +208,5 @@ export const usePageLayoutResize: () => {
203
208
 
204
209
  // (No @packageDocumentation comment for this package)
205
210
  ```
211
+
212
+ <!--SECTION END: Main Entry Types-->