@viamrobotics/prime-core
Advanced tools
Comparing version 0.0.1 to 0.0.2
import { SvelteComponent } from "svelte"; | ||
declare const __propDef: { | ||
props: { | ||
label?: string; | ||
variant?: "green" | "orange" | "red" | "gray" | "blue"; | ||
/** | ||
* The badge text. | ||
*/ label?: string; | ||
/** | ||
* The color theme of the badge. | ||
*/ variant?: 'green' | 'orange' | 'red' | 'gray' | 'blue'; | ||
}; | ||
@@ -15,4 +19,14 @@ events: { | ||
export type BadgeSlots = typeof __propDef.slots; | ||
/** | ||
* The badge is often used to display status information. | ||
* | ||
* ```svelte | ||
* <Badge | ||
* variant='green' | ||
* label='Active' | ||
* /> | ||
* ``` | ||
*/ | ||
export default class Badge extends SvelteComponent<BadgeProps, BadgeEvents, BadgeSlots> { | ||
} | ||
export {}; |
export { default as Badge } from './badge.svelte'; | ||
export { default as Breadcrumbs } from './breadcrumbs.svelte'; | ||
export { default as Button } from './button.svelte'; | ||
export { default as Icon } from './icon/icon.svelte'; | ||
export { default as Label } from './label.svelte'; | ||
export { default as Pill } from './pill.svelte'; | ||
export { default as Tooltip, type TooltipLocation, type TooltipState, } from './tooltip.svelte'; |
export { default as Badge } from './badge.svelte'; | ||
export { default as Breadcrumbs } from './breadcrumbs.svelte'; | ||
export { default as Button } from './button.svelte'; | ||
export { default as Icon } from './icon/icon.svelte'; | ||
export { default as Label } from './label.svelte'; | ||
export { default as Pill } from './pill.svelte'; | ||
export { default as Tooltip, } from './tooltip.svelte'; |
{ | ||
"name": "@viamrobotics/prime-core", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"publishConfig": { | ||
@@ -26,2 +26,4 @@ "access": "public" | ||
"devDependencies": { | ||
"@floating-ui/dom": "^1.2.6", | ||
"@mdi/js": "^7.2.96", | ||
"@sveltejs/adapter-auto": "^2.1.0", | ||
@@ -28,0 +30,0 @@ "@sveltejs/kit": "^1.22.3", |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
35960
23
365
35
1