@viamrobotics/prime-core
Advanced tools
Comparing version 0.0.13 to 0.0.14
import { SvelteComponent } from "svelte"; | ||
import cx from 'classnames'; | ||
declare const __propDef: { | ||
props: { | ||
/** Whether or not the button accepts clicks. */ disabled?: boolean; | ||
/** The behavior of the button. */ type?: 'button' | 'submit' | 'reset'; | ||
/** The communicated action type to the user. */ variant?: 'primary' | 'inverse-primary' | 'ghost' | 'danger' | 'outline-danger' | 'success'; | ||
/** The text displayed. */ label?: string; | ||
/** The text that appears in a popup box when mouse is over the element. */ title?: string; | ||
/** | ||
* The icon shown in the button. | ||
*/ icon?: string; | ||
/** The width of the button. */ width?: 'full' | 'default'; | ||
[x: string]: any; | ||
disabled?: boolean; | ||
type?: 'button' | 'submit' | 'reset'; | ||
variant?: 'primary' | 'dark' | 'ghost' | 'danger' | 'outline-danger' | 'success'; | ||
title?: string; | ||
icon?: string; | ||
width?: 'full' | 'default'; | ||
cx?: cx.Argument; | ||
}; | ||
events: { | ||
click: MouseEvent; | ||
click: CustomEvent<undefined>; | ||
} & { | ||
[evt: string]: CustomEvent<any>; | ||
}; | ||
slots: {}; | ||
slots: { | ||
default: {}; | ||
}; | ||
}; | ||
@@ -21,0 +23,0 @@ export type ButtonProps = typeof __propDef.props; |
export { default as Badge } from './badge.svelte'; | ||
export { default as Breadcrumbs } from './breadcrumbs.svelte'; | ||
export { default as Button } from './button/button.svelte'; | ||
export { default as ButtonIcon } from './button/button-icon.svelte'; | ||
export { default as IconButton } from './button/icon-button.svelte'; | ||
export { default as Collapse } from './collapse.svelte'; | ||
export { default as Icon } from './icon/icon.svelte'; | ||
export { default as Label } from './label.svelte'; | ||
export { default as Label, type LabelPosition } from './label.svelte'; | ||
export { default as Notify } from './notify.svelte'; | ||
@@ -15,3 +15,3 @@ export { default as Pill } from './pill.svelte'; | ||
export { default as ContextMenu } from './context-menu/context-menu.svelte'; | ||
export { default as ContextMenuItem } from './context-menu/context-menu-item.svelte'; | ||
export { default as ContextMenuItem, type ContextMenuItemVariant, } from './context-menu/context-menu-item.svelte'; | ||
export { default as ContextMenuSeparator } from './context-menu/context-menu-separator.svelte'; | ||
@@ -18,0 +18,0 @@ export { default as Input, type InputState } from './input/input.svelte'; |
export { default as Badge } from './badge.svelte'; | ||
export { default as Breadcrumbs } from './breadcrumbs.svelte'; | ||
export { default as Button } from './button/button.svelte'; | ||
export { default as ButtonIcon } from './button/button-icon.svelte'; | ||
export { default as IconButton } from './button/icon-button.svelte'; | ||
export { default as Collapse } from './collapse.svelte'; | ||
@@ -15,3 +15,3 @@ export { default as Icon } from './icon/icon.svelte'; | ||
export { default as ContextMenu } from './context-menu/context-menu.svelte'; | ||
export { default as ContextMenuItem } from './context-menu/context-menu-item.svelte'; | ||
export { default as ContextMenuItem, } from './context-menu/context-menu-item.svelte'; | ||
export { default as ContextMenuSeparator } from './context-menu/context-menu-separator.svelte'; | ||
@@ -18,0 +18,0 @@ export { default as Input } from './input/input.svelte'; |
{ | ||
"name": "@viamrobotics/prime-core", | ||
"version": "0.0.13", | ||
"version": "0.0.14", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "access": "public" |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
81240
1104