utopia-ui 3.0.0-alpha.30 → 3.0.0-alpha.32

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,6 +1,8 @@
1
- /// <reference types="react" />
2
- export declare function AppShell({ appName, children, assetsApi }: {
3
- appName: any;
4
- children: any;
5
- assetsApi: any;
1
+ import * as React from 'react';
2
+ import { AssetsApi } from '../../types';
3
+ export declare function AppShell({ appName, nameWidth, children, assetsApi }: {
4
+ appName: string;
5
+ nameWidth?: number;
6
+ children: React.ReactNode;
7
+ assetsApi: AssetsApi;
6
8
  }): JSX.Element;
@@ -1,4 +1,5 @@
1
1
  /// <reference types="react" />
2
- export default function NavBar({ appName }: {
2
+ export default function NavBar({ appName, nameWidth }: {
3
3
  appName: string;
4
+ nameWidth?: number;
4
5
  }): JSX.Element;
@@ -1,10 +1,4 @@
1
1
  /// <reference types="react" />
2
- declare type ChapterProps = {
3
- clickAction?: () => void;
4
- };
5
- export declare function Welcome1({ clickAction }: ChapterProps): JSX.Element;
6
- export declare function Welcome2({ clickAction }: ChapterProps): JSX.Element;
7
- export declare function Welcome3({ clickAction }: ChapterProps): JSX.Element;
8
- export declare function Welcome4({ clickAction }: ChapterProps): JSX.Element;
9
- export declare function Modal(): JSX.Element;
10
- export {};
2
+ export declare function Modal({ children }: {
3
+ children: any;
4
+ }): JSX.Element;