@vuu-ui/vuu-shell 0.6.5 → 0.6.7

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-shell",
3
- "version": "0.6.5",
3
+ "version": "0.6.7",
4
4
  "description": "VUU UI Shell",
5
5
  "author": "heswell",
6
6
  "license": "Apache-2.0",
@@ -8,9 +8,9 @@
8
8
  "@salt-ds/core": "1.0.0",
9
9
  "@salt-ds/icons": "1.0.0",
10
10
  "@heswell/salt-lab": "1.0.0-alpha.0-vuu.1",
11
- "@vuu-ui/vuu-data": "0.6.5",
12
- "@vuu-ui/vuu-layout": "0.6.5",
13
- "@vuu-ui/vuu-utils": "0.6.5",
11
+ "@vuu-ui/vuu-data": "0.6.7",
12
+ "@vuu-ui/vuu-layout": "0.6.7",
13
+ "@vuu-ui/vuu-utils": "0.6.7",
14
14
  "classnames": "^2.2.6",
15
15
  "react": "^17.0.2",
16
16
  "react-dom": "^17.0.2"
package/types/shell.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { HTMLAttributes, ReactElement, ReactNode } from "react";
2
2
  import { LayoutJSON } from "@vuu-ui/vuu-layout/src/layout-reducer";
3
3
  import "./shell.css";
4
- export declare type VuuUser = {
4
+ export type VuuUser = {
5
5
  username: string;
6
6
  token: string;
7
7
  };
@@ -7,7 +7,7 @@ export interface FeatureConfig {
7
7
  url: string;
8
8
  css?: string;
9
9
  }
10
- export declare type Features = {
10
+ export type Features = {
11
11
  [key: string]: FeatureConfig;
12
12
  };
13
13
  export interface VuuConfig {
@@ -1,7 +1,7 @@
1
1
  import React, { ReactElement } from "react";
2
2
  export declare const DEFAULT_DENSITY = "medium";
3
3
  export declare const DEFAULT_THEME = "salt-theme";
4
- export declare type Density = "high" | "medium" | "low" | "touch";
4
+ export type Density = "high" | "medium" | "low" | "touch";
5
5
  export interface ThemeContextProps {
6
6
  density?: Density;
7
7
  themes?: string[];
@@ -1,6 +1,6 @@
1
1
  import { HTMLAttributes } from "react";
2
2
  import "./ThemeSwitch.css";
3
- export declare type ThemeMode = "light" | "dark";
3
+ export type ThemeMode = "light" | "dark";
4
4
  export interface ThemeSwitchProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
5
5
  defaultMode?: ThemeMode;
6
6
  mode?: ThemeMode;