theui-svelte
Advanced tools
Comparing version 1.0.0-rc.5 to 1.0.0-rc.6
@@ -5,8 +5,7 @@ import { SvelteComponent } from "svelte"; | ||
props: { | ||
[x: string]: any; | ||
title?: string | undefined; | ||
content?: string | undefined; | ||
ariaLabel?: string | undefined; | ||
isOpen?: boolean | undefined; | ||
id?: string | undefined; | ||
isFlush?: boolean | undefined; | ||
animationSpeed?: ANIMATE_SPEED; | ||
@@ -13,0 +12,0 @@ containerClass?: string | undefined; |
@@ -0,18 +1,46 @@ | ||
export const NAV: {}; | ||
/** @typedef {typeof __propDef.props} NavbarProps */ | ||
/** @typedef {typeof __propDef.events} NavbarEvents */ | ||
/** @typedef {typeof __propDef.slots} NavbarSlots */ | ||
export default class Navbar extends SvelteComponent<{ | ||
[x: string]: any; | ||
rounded?: string | undefined; | ||
animate?: string | undefined; | ||
height?: string | undefined; | ||
segment?: string | undefined; | ||
activeLinkStyle?: string | undefined; | ||
linkStyle?: string | undefined; | ||
mobileNavOn?: string | undefined; | ||
navInner?: string | undefined; | ||
scrollAmountToHide?: number | undefined; | ||
scrollAmountToShrink?: number | undefined; | ||
scrollBehavior?: string | undefined; | ||
scrollClass?: string | undefined; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
}, { | ||
topbar: {}; | ||
default: { | ||
segment: string; | ||
}; | ||
}> { | ||
} | ||
export type NavbarProps = typeof __propDef.props; | ||
export type NavbarEvents = typeof __propDef.events; | ||
export type NavbarSlots = typeof __propDef.slots; | ||
import { SvelteComponent } from "svelte"; | ||
export declare const NAV: any; | ||
import type { ANIMATE_SPEED, ROUNDED } from "../types"; | ||
declare const __propDef: { | ||
props: { | ||
[x: string]: any; | ||
rounded?: string | undefined; | ||
animate?: string | undefined; | ||
height?: string | undefined; | ||
segment?: string | undefined; | ||
activeLinkStyle?: string | undefined; | ||
animate?: ANIMATE_SPEED; | ||
height?: "sm" | "md" | "lg" | "xl" | undefined; | ||
linkStyle?: string | undefined; | ||
mobileNavOn?: false | "md" | "lg" | "xl" | undefined; | ||
navInnerClasses?: string | undefined; | ||
rounded?: ROUNDED; | ||
mobileNavOn?: string | undefined; | ||
navInner?: string | undefined; | ||
scrollAmountToHide?: number | undefined; | ||
scrollAmountToShrink?: number | undefined; | ||
scrollBehavior?: "default" | "fixed" | "shrinkOnScrollDown" | "hideOnScrollDown" | "shrinkAndHide" | undefined; | ||
scrollBehavior?: string | undefined; | ||
scrollClass?: string | undefined; | ||
@@ -24,2 +52,3 @@ }; | ||
slots: { | ||
topbar: {}; | ||
default: { | ||
@@ -30,7 +59,2 @@ segment: string; | ||
}; | ||
export type NavbarProps = typeof __propDef.props; | ||
export type NavbarEvents = typeof __propDef.events; | ||
export type NavbarSlots = typeof __propDef.slots; | ||
export default class Navbar extends SvelteComponent<NavbarProps, NavbarEvents, NavbarSlots> { | ||
} | ||
export {}; |
{ | ||
"name": "theui-svelte", | ||
"version": "1.0.0-rc.5", | ||
"version": "1.0.0-rc.6", | ||
"description": "theui-svelte A component library by TheUI. Out-of-the-box accessible and easy to customize built with TailwindCSS.", | ||
@@ -5,0 +5,0 @@ "author": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
251940
122
2289