@overmap-ai/blocks 1.0.40-TableStyling.0 → 1.0.40-TableStyling.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Toast/toast.d.ts +12 -0
- package/dist/blocks.js +0 -2
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +0 -2
- package/dist/blocks.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ExternalToast } from './typings';
|
|
2
|
+
export declare const toast: ((options: ExternalToast) => string | number) & {
|
|
3
|
+
success: (options: ExternalToast) => string | number;
|
|
4
|
+
info: (options: ExternalToast) => string | number;
|
|
5
|
+
warning: (options: ExternalToast) => string | number;
|
|
6
|
+
error: (options: ExternalToast) => string | number;
|
|
7
|
+
custom: (jsx: (id: string | number) => import('react').ReactElement<unknown, string | import('react').JSXElementConstructor<any>>, data?: import('sonner').ExternalToast | undefined) => string | number;
|
|
8
|
+
dismiss: (id?: string | number | undefined) => string | number;
|
|
9
|
+
} & {
|
|
10
|
+
getHistory: () => (import('sonner').ToastT | import('sonner').ToastToDismiss)[];
|
|
11
|
+
getToasts: () => (import('sonner').ToastT | import('sonner').ToastToDismiss)[];
|
|
12
|
+
};
|
package/dist/blocks.js
CHANGED
|
@@ -6178,8 +6178,6 @@ const toast = Object.assign(
|
|
|
6178
6178
|
warning,
|
|
6179
6179
|
error,
|
|
6180
6180
|
custom: toast$1.custom,
|
|
6181
|
-
promise: toast$1.promise,
|
|
6182
|
-
loading: toast$1.loading,
|
|
6183
6181
|
dismiss: toast$1.dismiss
|
|
6184
6182
|
},
|
|
6185
6183
|
{ getHistory: toast$1.getHistory, getToasts: toast$1.getToasts }
|