quicksnack 3.79.0 → 3.79.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.
@@ -1,13 +1,15 @@
1
- import React from "react";
1
+ import React, { PropsWithChildren } from "react";
2
2
  import { BoxProps } from "../../components/Box/Box";
3
3
  import { DefaultLayoutProps } from "../DefaultLayout";
4
- interface Props extends DefaultLayoutProps {
4
+ export interface SplitLayoutProps extends DefaultLayoutProps {
5
5
  isLoading?: boolean;
6
6
  loader?: string | JSX.Element;
7
+ }
8
+ export declare const SplitLayout: React.FC<PropsWithChildren<SplitLayoutProps>>;
9
+ export interface SplitProps {
7
10
  left: JSX.Element;
8
11
  right: JSX.Element;
9
12
  leftBoxProps?: BoxProps;
10
13
  rightBoxProps?: BoxProps;
11
14
  }
12
- export declare const SplitLayout: React.FC<Props>;
13
- export {};
15
+ export declare const Split: ({ left, leftBoxProps, right, rightBoxProps, }: SplitProps) => JSX.Element;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "quicksnack",
3
3
  "description": "Quickly create beautiful admin layouts using react",
4
- "version": "3.79.0",
4
+ "version": "3.79.1",
5
5
  "private": false,
6
6
  "files": [
7
7
  "dist/**"