Fix reports
Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
committed by
Patrik Oldsberg
parent
20b5470692
commit
54dd710eb1
@@ -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';
|
||||
|
||||
@@ -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?: {
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user