@synerise/ds-layout 0.13.32 → 0.13.33

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.13.33](https://github.com/synerise/synerise-design/compare/@synerise/ds-layout@0.13.32...@synerise/ds-layout@0.13.33) (2023-10-02)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-layout
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.13.32](https://github.com/synerise/synerise-design/compare/@synerise/ds-layout@0.13.31...@synerise/ds-layout@0.13.32) (2023-09-26)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-layout
@@ -15,20 +15,20 @@ export declare const LayoutMain: import("styled-components").StyledComponent<"di
15
15
  export declare const LayoutMainInner: import("styled-components").StyledComponent<"div", any, {
16
16
  fullPage: boolean;
17
17
  }, never>;
18
- declare type SidebarButtonProps = {
18
+ type SidebarButtonProps = {
19
19
  right?: boolean;
20
20
  opened: boolean;
21
21
  withSubheader?: boolean;
22
22
  bothOpened?: boolean;
23
23
  };
24
24
  export declare const SidebarButton: import("styled-components").StyledComponent<"button", any, SidebarButtonProps, never>;
25
- declare type LayoutSidebarProps = {
25
+ type LayoutSidebarProps = {
26
26
  opened: boolean;
27
27
  openedWidth: number;
28
28
  animationDisabled: boolean;
29
29
  };
30
30
  export declare const LayoutSidebar: import("styled-components").StyledComponent<"div", any, LayoutSidebarProps, never>;
31
- declare type LayoutSidebarWrapperProps = {
31
+ type LayoutSidebarWrapperProps = {
32
32
  opened: boolean;
33
33
  right?: boolean;
34
34
  openedWidth: number;
@@ -7,13 +7,13 @@ export interface Style<T> {
7
7
  right?: T;
8
8
  rightInner?: T;
9
9
  }
10
- export declare type SidebarProps = {
10
+ export type SidebarProps = {
11
11
  content: React.ReactNode;
12
12
  opened: boolean;
13
13
  onChange: (isOpened: boolean) => void;
14
14
  width?: number;
15
15
  };
16
- export declare type LayoutProps = {
16
+ export type LayoutProps = {
17
17
  header?: React.ReactNode;
18
18
  subheader?: React.ReactNode;
19
19
  left?: SidebarProps;
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- declare type LayoutProps = {
2
+ type LayoutProps = {
3
3
  navBar?: React.ReactNode;
4
4
  appMenu?: React.Component;
5
5
  children: JSX.Element;
package/dist/Page/Page.js CHANGED
@@ -7,7 +7,6 @@ var Page = function Page(_ref) {
7
7
  children = _ref.children;
8
8
  var renderAppMenu = React.useMemo(function () {
9
9
  if (appMenu) {
10
- // eslint-disable-next-line @typescript-eslint/ban-ts-ignore
11
10
  // @ts-ignore
12
11
  return React.cloneElement(appMenu, {
13
12
  top: navBar ? 56 : 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-layout",
3
- "version": "0.13.32",
3
+ "version": "0.13.33",
4
4
  "description": "Layout UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -32,14 +32,14 @@
32
32
  ],
33
33
  "types": "dist/index.d.ts",
34
34
  "dependencies": {
35
- "@synerise/ds-icon": "^0.58.2",
36
- "@synerise/ds-scrollbar": "^0.6.7",
37
- "@synerise/ds-utils": "^0.24.16"
35
+ "@synerise/ds-icon": "^0.58.3",
36
+ "@synerise/ds-scrollbar": "^0.6.8",
37
+ "@synerise/ds-utils": "^0.24.17"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "@synerise/ds-core": "*",
41
41
  "react": ">=16.9.0 < 17.0.0",
42
42
  "styled-components": "5.0.1"
43
43
  },
44
- "gitHead": "f1f520c4c5ef9f90bacb5d5e0b2e778ceb8fdf79"
44
+ "gitHead": "1c1adf344f447e404a1d6320ad1d3f8486f29f67"
45
45
  }