@viamrobotics/prime-core
Advanced tools
Comparing version 0.0.12 to 0.0.13
@@ -24,4 +24,10 @@ import { SvelteComponent } from "svelte"; | ||
export type ContextMenuItemSlots = typeof __propDef.slots; | ||
/** | ||
* A clickable item within a context menu that triggers some action. | ||
* ```svelte | ||
* <ContextMenuItem icon="plus" variant="danger" label="click me!" /> | ||
* ``` | ||
*/ | ||
export default class ContextMenuItem extends SvelteComponent<ContextMenuItemProps, ContextMenuItemEvents, ContextMenuItemSlots> { | ||
} | ||
export {}; |
/** @typedef {typeof __propDef.props} ContextMenuSeparatorProps */ | ||
/** @typedef {typeof __propDef.events} ContextMenuSeparatorEvents */ | ||
/** @typedef {typeof __propDef.slots} ContextMenuSeparatorSlots */ | ||
/** | ||
* A horizontal line divider within a context menu. | ||
* ```svelte | ||
* <ContextMenuSeparator /> | ||
* ``` | ||
*/ | ||
export default class ContextMenuSeparator extends SvelteComponent<{ | ||
@@ -5,0 +11,0 @@ [x: string]: never; |
/** @typedef {typeof __propDef.props} ContextMenuProps */ | ||
/** @typedef {typeof __propDef.events} ContextMenuEvents */ | ||
/** @typedef {typeof __propDef.slots} ContextMenuSlots */ | ||
/** | ||
* A simple list menu with items, usually appears on click. | ||
* ```svelte | ||
* <ContextMenu> | ||
* <ContextMenuItem icon="plus" variant="danger" label="click me!" /> | ||
* <ContextMenuSeparator /> | ||
* </ContextMenu> | ||
* ``` | ||
*/ | ||
export default class ContextMenu extends SvelteComponent<{ | ||
@@ -5,0 +14,0 @@ [x: string]: never; |
@@ -22,1 +22,7 @@ export { default as Badge } from './badge.svelte'; | ||
export { default as TextInput, type TextInputTypes, } from './input/text-input.svelte'; | ||
export { default as Table } from './table/table.svelte'; | ||
export { default as TableHeader } from './table/table-header.svelte'; | ||
export { default as TableHeaderCell } from './table/table-header-cell.svelte'; | ||
export { default as TableBody } from './table/table-body.svelte'; | ||
export { default as TableRow } from './table/table-row.svelte'; | ||
export { default as TableCell } from './table/table-cell.svelte'; |
@@ -22,1 +22,7 @@ export { default as Badge } from './badge.svelte'; | ||
export { default as TextInput, } from './input/text-input.svelte'; | ||
export { default as Table } from './table/table.svelte'; | ||
export { default as TableHeader } from './table/table-header.svelte'; | ||
export { default as TableHeaderCell } from './table/table-header-cell.svelte'; | ||
export { default as TableBody } from './table/table-body.svelte'; | ||
export { default as TableRow } from './table/table-row.svelte'; | ||
export { default as TableCell } from './table/table-cell.svelte'; |
{ | ||
"name": "@viamrobotics/prime-core", | ||
"version": "0.0.12", | ||
"version": "0.0.13", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "access": "public" |
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
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
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
81132
63
1101