kk-test-special-force
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -8,3 +8,3 @@ import { jsx as o } from "react/jsx-runtime"; | ||
type: "button", | ||
className: "h-[50px] w-[120px] border-gray-300 focus:ring-0 focus:ring-offset-0 text-black disabled:opacity-50 bg-red-500 border-2 read-the-docs ", | ||
className: "h-[50px] w-[120px] border-gray-300 focus:ring-0 focus:ring-offset-0 text-black disabled:opacity-50 bg-red-500 border-2", | ||
children: t | ||
@@ -11,0 +11,0 @@ } |
@@ -1,10 +0,5 @@ | ||
import { Page as m } from "./page/Page.js"; | ||
import { Button as f } from "./button/Button.js"; | ||
import { Header as a } from "./header/Header.js"; | ||
import { Button as m } from "./button/Button.js"; | ||
import "react/jsx-runtime"; | ||
import "react"; | ||
export { | ||
f as Button, | ||
a as Header, | ||
m as Page | ||
m as Button | ||
}; |
import { JSX as JSX_2 } from 'react/jsx-runtime'; | ||
import { default as React_2 } from 'react'; | ||
/** | ||
* Primary UI component for user interaction | ||
*/ | ||
export declare const Button: ({ label, }: ButtonProps) => JSX_2.Element; | ||
declare type ButtonProps = { | ||
/** | ||
* Is this the principal call to action on the page? | ||
*/ | ||
primary?: boolean; | ||
/** | ||
* What background color to use | ||
*/ | ||
backgroundColor?: string; | ||
/** | ||
* How large should the button be? | ||
*/ | ||
size?: 'small' | 'medium' | 'large'; | ||
/** | ||
* Button contents | ||
*/ | ||
label: string; | ||
/** | ||
* Optional click handler | ||
*/ | ||
onClick?: () => void; | ||
}; | ||
export declare const Header: ({ user, onLogin, onLogout, onCreateAccount }: HeaderProps) => JSX_2.Element; | ||
declare interface HeaderProps { | ||
user?: User; | ||
onLogin: () => void; | ||
onLogout: () => void; | ||
onCreateAccount: () => void; | ||
} | ||
export declare const Page: React_2.FC; | ||
declare type User = { | ||
name: string; | ||
}; | ||
export { } |
@@ -1,10 +0,5 @@ | ||
import { Page as m } from "./components/page/Page.js"; | ||
import { Button as f } from "./components/button/Button.js"; | ||
import { Header as a } from "./components/header/Header.js"; | ||
import { Button as m } from "./components/button/Button.js"; | ||
import "react/jsx-runtime"; | ||
import "react"; | ||
export { | ||
f as Button, | ||
a as Header, | ||
m as Page | ||
m as Button | ||
}; |
{ | ||
"name": "kk-test-special-force", | ||
"private": false, | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"type": "module", | ||
@@ -6,0 +6,0 @@ "main": "dist/main.js", |
Sorry, the diff of this file is not supported yet
8633
8
53