Fix reports

Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
Charles de Dreuille
2026-02-05 14:41:03 +00:00
committed by Patrik Oldsberg
parent 20b5470692
commit 54dd710eb1
7 changed files with 87 additions and 58 deletions
+5 -6
View File
@@ -14,12 +14,11 @@
* limitations under the License.
*/
// Public exports
export { ToastDisplay } from './ToastDisplay';
export type { ToastContent, ToastLink, ToastDisplayProps } from './types';
// Internal exports (used within the plugin only)
export { ToastContainer } from './ToastContainer';
export { toastQueue } from './ToastQueue';
export type {
ToastContent,
ToastLink,
ToastDisplayProps,
ToastContainerProps,
} from './types';
export type { ToastContainerProps } from './types';
+2 -1
View File
@@ -92,10 +92,11 @@ export interface ToastContainerProps {
export interface ToastDisplayProps {
/**
* Number of milliseconds a transient alert will stay open for.
* @default 5000
* Defaults to 5000ms.
*/
transientTimeoutMs?: number;
/**
* Position of the toast on screen.
* @deprecated Toast uses fixed bottom-center positioning. This prop is ignored.
*/
anchorOrigin?: {
+1 -2
View File
@@ -17,10 +17,9 @@
export { appPlugin as default } from './plugin';
// Toast components for alert display
export { ToastDisplay, ToastContainer, toastQueue } from './components/Toast';
export { ToastDisplay } from './components/Toast';
export type {
ToastContent,
ToastLink,
ToastDisplayProps,
ToastContainerProps,
} from './components/Toast';