@imj_media/tareas 1.6.0 → 1.6.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imj_media/tareas",
3
3
  "private": false,
4
- "version": "1.6.0",
4
+ "version": "1.6.2",
5
5
  "scripts": {
6
6
  "build": "vite build",
7
7
  "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
@@ -1 +0,0 @@
1
- export default function Toast(): import("react/jsx-runtime").JSX.Element;
@@ -1,14 +0,0 @@
1
- type Toast = {
2
- message: string;
3
- type: 'success' | 'error';
4
- };
5
- type ToastContextType = {
6
- toast: Toast;
7
- showSuccess: (message: string) => void;
8
- showError: (message: string) => void;
9
- };
10
- export declare const ToastProvider: ({ children }: {
11
- children: React.ReactNode;
12
- }) => import("react/jsx-runtime").JSX.Element;
13
- export declare const useToast: () => ToastContextType;
14
- export {};