grep-components
Advanced tools
Comparing version 0.0.20 to 0.0.21
import * as React from "react"; | ||
declare class AppBar extends React.Component<{}> { | ||
export interface AppBarProps { | ||
} | ||
declare class AppBar extends React.Component<AppBarProps> { | ||
render(): JSX.Element; | ||
} | ||
export default AppBar; |
@@ -1,1 +0,6 @@ | ||
export { default } from "./AppBar"; | ||
import * as React from "react"; | ||
import { AppBarProps as ComponentProps } from "./AppBar"; | ||
export interface AppBarProps extends ComponentProps { | ||
} | ||
declare const AppBar: React.ComponentType<AppBarProps>; | ||
export default AppBar; |
import * as React from "react"; | ||
interface Page { | ||
export interface NavigationProps { | ||
id: number; | ||
@@ -8,11 +8,11 @@ label: string; | ||
} | ||
interface Props { | ||
export interface AppBarNavigationListProps { | ||
selectedPage: number; | ||
pages: Page[]; | ||
pages: NavigationProps[]; | ||
} | ||
interface State { | ||
} | ||
declare class AppBarNavigationList extends React.Component<Props, State> { | ||
declare class AppBarNavigationList extends React.Component<AppBarNavigationListProps, State> { | ||
render(): JSX.Element; | ||
} | ||
export default AppBarNavigationList; |
import * as React from "react"; | ||
declare const BodyLayout: React.SFC<{}>; | ||
export interface BodyLayoutProps { | ||
} | ||
declare const BodyLayout: React.SFC<BodyLayoutProps>; | ||
export default BodyLayout; |
@@ -1,2 +0,6 @@ | ||
export { default } from "./BodyLayout"; | ||
export * from "./BodyLayout"; | ||
import * as React from "react"; | ||
import { BodyLayoutProps as ComponentProps } from "./BodyLayout"; | ||
export interface BodyLayoutProps extends ComponentProps { | ||
} | ||
declare const BodyLayout: React.ComponentType<BodyLayoutProps>; | ||
export default BodyLayout; |
import * as React from "react"; | ||
declare const CenterLayout: React.SFC<{}>; | ||
export interface CenterLayoutProps { | ||
} | ||
declare const CenterLayout: React.SFC<CenterLayoutProps>; | ||
export default CenterLayout; |
@@ -1,2 +0,6 @@ | ||
export { default } from "./CenterLayout"; | ||
export * from "./CenterLayout"; | ||
import * as React from "react"; | ||
import { CenterLayoutProps as ComponentProps } from "./CenterLayout"; | ||
export interface CenterLayoutProps extends ComponentProps { | ||
} | ||
declare const CenterLayout: React.ComponentType<CenterLayoutProps>; | ||
export default CenterLayout; |
@@ -1,2 +0,6 @@ | ||
export { default } from "./MainLayout"; | ||
export * from "./MainLayout"; | ||
import * as React from "react"; | ||
import { MainLayoutProps as ComponentProps } from "./MainLayout"; | ||
export interface MainLayoutProps extends ComponentProps { | ||
} | ||
declare const MainLayout: React.ComponentType<MainLayoutProps>; | ||
export default MainLayout; |
import * as React from "react"; | ||
declare const MainLayout: React.SFC<{}>; | ||
export interface MainLayoutProps { | ||
} | ||
declare const MainLayout: React.SFC<MainLayoutProps>; | ||
export default MainLayout; |
{ | ||
"name": "grep-components", | ||
"version": "0.0.20", | ||
"version": "0.0.21", | ||
"description": "Grep komponentbibliotek", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
123
1752199
15260