@viamrobotics/prime-core
Advanced tools
Comparing version 0.0.36 to 0.0.37
export { default as Badge } from './badge.svelte'; | ||
export { default as Banner, type BannerVariant } from './banner.svelte'; | ||
export { Banner, BannerVariant, type BannerVariantType } from './banner'; | ||
export { default as Breadcrumbs } from './breadcrumbs.svelte'; | ||
@@ -26,3 +26,3 @@ export { default as Button } from './button/button.svelte'; | ||
export { default as VectorInput } from './vector-input.svelte'; | ||
export { NotificationContainer, notify } from './notification'; | ||
export { NotificationContainer, provideNotify, useNotify, } from './notification'; | ||
export { selectControls } from './select/controls'; | ||
@@ -29,0 +29,0 @@ export { createSearchableSelectDispatcher } from './select/dispatcher'; |
export { default as Badge } from './badge.svelte'; | ||
export { default as Banner } from './banner.svelte'; | ||
export { Banner, BannerVariant } from './banner'; | ||
export { default as Breadcrumbs } from './breadcrumbs.svelte'; | ||
@@ -25,3 +25,3 @@ export { default as Button } from './button/button.svelte'; | ||
export { default as VectorInput } from './vector-input.svelte'; | ||
export { NotificationContainer, notify } from './notification'; | ||
export { NotificationContainer, provideNotify, useNotify, } from './notification'; | ||
export { selectControls } from './select/controls'; | ||
@@ -28,0 +28,0 @@ export { createSearchableSelectDispatcher } from './select/dispatcher'; |
@@ -1,2 +0,2 @@ | ||
export { notify } from './notify'; | ||
export { default as NotificationContainer } from './notification-container.svelte'; | ||
export { provideNotify, useNotify, type Notify } from './context'; |
@@ -1,2 +0,2 @@ | ||
export { notify } from './notify'; | ||
export { default as NotificationContainer } from './notification-container.svelte'; | ||
export { provideNotify, useNotify } from './context'; |
import { SvelteComponent } from "svelte"; | ||
import { type NotificationOptions } from './stores'; | ||
declare const __propDef: { | ||
props: { | ||
/** Optional configuration for notification behavior. */ options?: Partial<NotificationOptions>; | ||
/** Optional name to allow targeting different containers. */ target?: string; | ||
}; | ||
props: Record<string, never>; | ||
events: { | ||
@@ -20,7 +16,7 @@ [evt: string]: CustomEvent<any>; | ||
* This is the "container" element that all notifications pushed using the | ||
* `notify` API will be added to. | ||
* `useNotify` API will be added to. Add this component near the root of | ||
* your application, like in the root layout component. | ||
* | ||
* ```svelte | ||
* <NotificationCenter /> | ||
* ``` | ||
* It needs access to context from `provideNotify`, which should also | ||
* be added to the root layout component. | ||
*/ | ||
@@ -27,0 +23,0 @@ export default class NotificationContainer extends SvelteComponent<NotificationContainerProps, NotificationContainerEvents, NotificationContainerSlots> { |
import { SvelteComponent } from "svelte"; | ||
import { type NotificationOptions } from './stores'; | ||
import type { Readable } from 'svelte/store'; | ||
import { type BannerVariantType } from '../banner'; | ||
declare const __propDef: { | ||
props: { | ||
item: NotificationOptions; | ||
title: string; | ||
message?: string | undefined; | ||
variant: BannerVariantType; | ||
progress: Readable<number>; | ||
dismiss: () => unknown; | ||
}; | ||
@@ -7,0 +12,0 @@ events: { |
@@ -37,3 +37,3 @@ import { SvelteComponent } from "svelte"; | ||
text: string; | ||
icon: "account-multiple" | "alert-circle-outline" | "alert-circle" | "alert-outline" | "alert" | "arrow-collapse-left" | "arrow-collapse-right" | "arrow-expand-all" | "arrow-expand-left" | "arrow-expand-right" | "arrow-left" | "arrow-right" | "arrow-top-right-bottom-left" | "arrow-up" | "broadcast-off" | "broadcast" | "camera-flip-outline" | "camera-outline" | "cancel" | "check-circle" | "check" | "chevron-up" | "chevron-right" | "chevron-down" | "chevron-left" | "close" | "cog" | "content-copy" | "content-duplicate" | "content-save-outline" | "credit-card-outline" | "dots-horizontal" | "download" | "file-download-outline" | "filter-outline" | "github" | "help-circle-outline" | "image-filter-center-focus" | "information-outline" | "information" | "instagram" | "linkedin" | "lock" | "logout" | "magnify" | "menu" | "minus" | "open-in-new" | "package-variant-closed" | "pause-circle-outline" | "pencil-outline" | "play-circle-outline" | "plus" | "earth" | "refresh" | "send" | "stop-circle-outline" | "trash-can-outline" | "twitter" | "undo" | "video-outline" | "account-group-outline" | "robot-outline" | "domain"; | ||
icon: "cancel" | "close" | "account-multiple" | "alert-circle-outline" | "alert-circle" | "alert-outline" | "alert" | "arrow-collapse-left" | "arrow-collapse-right" | "arrow-expand-all" | "arrow-expand-left" | "arrow-expand-right" | "arrow-left" | "arrow-right" | "arrow-top-right-bottom-left" | "arrow-up" | "broadcast-off" | "broadcast" | "camera-flip-outline" | "camera-outline" | "check-circle" | "check" | "chevron-up" | "chevron-right" | "chevron-down" | "chevron-left" | "cog" | "content-copy" | "content-duplicate" | "content-save-outline" | "credit-card-outline" | "dots-horizontal" | "download" | "file-download-outline" | "filter-outline" | "github" | "help-circle-outline" | "image-filter-center-focus" | "information-outline" | "information" | "instagram" | "linkedin" | "lock" | "logout" | "magnify" | "menu" | "minus" | "open-in-new" | "package-variant-closed" | "pause-circle-outline" | "pencil-outline" | "play-circle-outline" | "plus" | "earth" | "refresh" | "send" | "stop-circle-outline" | "trash-can-outline" | "twitter" | "undo" | "video-outline" | "account-group-outline" | "robot-outline" | "domain"; | ||
} | undefined; | ||
@@ -43,3 +43,3 @@ /**accessor*/ | ||
text: string; | ||
icon: "account-multiple" | "alert-circle-outline" | "alert-circle" | "alert-outline" | "alert" | "arrow-collapse-left" | "arrow-collapse-right" | "arrow-expand-all" | "arrow-expand-left" | "arrow-expand-right" | "arrow-left" | "arrow-right" | "arrow-top-right-bottom-left" | "arrow-up" | "broadcast-off" | "broadcast" | "camera-flip-outline" | "camera-outline" | "cancel" | "check-circle" | "check" | "chevron-up" | "chevron-right" | "chevron-down" | "chevron-left" | "close" | "cog" | "content-copy" | "content-duplicate" | "content-save-outline" | "credit-card-outline" | "dots-horizontal" | "download" | "file-download-outline" | "filter-outline" | "github" | "help-circle-outline" | "image-filter-center-focus" | "information-outline" | "information" | "instagram" | "linkedin" | "lock" | "logout" | "magnify" | "menu" | "minus" | "open-in-new" | "package-variant-closed" | "pause-circle-outline" | "pencil-outline" | "play-circle-outline" | "plus" | "earth" | "refresh" | "send" | "stop-circle-outline" | "trash-can-outline" | "twitter" | "undo" | "video-outline" | "account-group-outline" | "robot-outline" | "domain"; | ||
icon: "cancel" | "close" | "account-multiple" | "alert-circle-outline" | "alert-circle" | "alert-outline" | "alert" | "arrow-collapse-left" | "arrow-collapse-right" | "arrow-expand-all" | "arrow-expand-left" | "arrow-expand-right" | "arrow-left" | "arrow-right" | "arrow-top-right-bottom-left" | "arrow-up" | "broadcast-off" | "broadcast" | "camera-flip-outline" | "camera-outline" | "check-circle" | "check" | "chevron-up" | "chevron-right" | "chevron-down" | "chevron-left" | "cog" | "content-copy" | "content-duplicate" | "content-save-outline" | "credit-card-outline" | "dots-horizontal" | "download" | "file-download-outline" | "filter-outline" | "github" | "help-circle-outline" | "image-filter-center-focus" | "information-outline" | "information" | "instagram" | "linkedin" | "lock" | "logout" | "magnify" | "menu" | "minus" | "open-in-new" | "package-variant-closed" | "pause-circle-outline" | "pencil-outline" | "play-circle-outline" | "plus" | "earth" | "refresh" | "send" | "stop-circle-outline" | "trash-can-outline" | "twitter" | "undo" | "video-outline" | "account-group-outline" | "robot-outline" | "domain"; | ||
} | undefined); | ||
@@ -46,0 +46,0 @@ get heading(): string | undefined; |
{ | ||
"name": "@viamrobotics/prime-core", | ||
"version": "0.0.36", | ||
"version": "0.0.37", | ||
"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
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
142393
101
2190