@vuu-ui/vuu-layout 0.7.0-debug → 0.7.1-debug

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuu-ui/vuu-layout",
3
- "version": "0.7.0-debug",
3
+ "version": "0.7.1-debug",
4
4
  "description": "VUU Layout Components",
5
5
  "author": "heswell",
6
6
  "license": "Apache-2.0",
@@ -8,8 +8,8 @@
8
8
  "@salt-ds/core": "1.2.0",
9
9
  "@salt-ds/icons": "1.1.0",
10
10
  "@heswell/salt-lab": "1.0.0-alpha.2",
11
- "@vuu-ui/vuu-popups": "0.7.0-debug",
12
- "@vuu-ui/vuu-utils": "0.7.0-debug"
11
+ "@vuu-ui/vuu-popups": "0.7.1-debug",
12
+ "@vuu-ui/vuu-utils": "0.7.1-debug"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "classnames": "^2.2.6",
@@ -1,5 +1,6 @@
1
1
  import { ListItemProps } from "@heswell/salt-lab";
2
2
  import { HTMLAttributes, ReactElement } from "react";
3
+ import { ViewProps } from "../layout-view";
3
4
  import "./Palette.css";
4
5
  export interface PaletteItemProps extends ListItemProps {
5
6
  children: ReactElement;
@@ -14,5 +15,6 @@ export interface PaletteProps extends Omit<HTMLAttributes<HTMLDivElement>, "onSe
14
15
  children: ReactElement[];
15
16
  orientation: "horizontal" | "vertical";
16
17
  selection?: string;
18
+ ViewProps?: Partial<ViewProps>;
17
19
  }
18
- export declare const Palette: ({ children, className, orientation, ...props }: PaletteProps) => JSX.Element;
20
+ export declare const Palette: ({ children, className, orientation, ViewProps, ...props }: PaletteProps) => JSX.Element;