diff --git a/package.json b/package.json index 7b01738..98af1fd 100644 --- a/package.json +++ b/package.json @@ -104,7 +104,8 @@ "react": ">= 19.0.0", "react-dom": ">= 19.0.0", "react-hook-form": "^7.71.0", + "idb-keyval": "^6.2.2", "use-sync-external-store": ">= 1.4.0", "zustand": ">= 5.0.0" } -} \ No newline at end of file +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 58e8bcc..42e9196 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -25,7 +25,7 @@ importers: version: 8.3.5(@mantine/core@8.3.1(@mantine/hooks@8.3.1(react@19.2.0))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(@mantine/hooks@8.3.1(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0) '@tabler/icons-react': specifier: ^3.35.0 - version: 3.35.0(react@19.2.0) + version: 3.36.1(react@19.2.0) '@tanstack/react-query': specifier: ^5.90.5 version: 5.90.5(react@19.2.0) @@ -38,6 +38,9 @@ importers: '@warkypublic/zustandsyncstore': specifier: ^0.0.4 version: 0.0.4(react@19.2.0)(use-sync-external-store@1.5.0(react@19.2.0))(zustand@5.0.8(@types/react@19.2.2)(immer@10.1.3)(react@19.2.0)(use-sync-external-store@1.5.0(react@19.2.0))) + idb-keyval: + specifier: ^6.2.2 + version: 6.2.2 immer: specifier: ^10.1.3 version: 10.1.3 @@ -1029,13 +1032,13 @@ packages: '@swc/types@0.1.25': resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==} - '@tabler/icons-react@3.35.0': - resolution: {integrity: sha512-XG7t2DYf3DyHT5jxFNp5xyLVbL4hMJYJhiSdHADzAjLRYfL7AnjlRfiHDHeXxkb2N103rEIvTsBRazxXtAUz2g==} + '@tabler/icons-react@3.36.1': + resolution: {integrity: sha512-/8nOXeNeMoze9xY/QyEKG65wuvRhkT3q9aytaur6Gj8bYU2A98YVJyLc9MRmc5nVvpy+bRlrrwK/Ykr8WGyUWg==} peerDependencies: react: '>= 16' - '@tabler/icons@3.35.0': - resolution: {integrity: sha512-yYXe+gJ56xlZFiXwV9zVoe3FWCGuZ/D7/G4ZIlDtGxSx5CGQK110wrnT29gUj52kEZoxqF7oURTk97GQxELOFQ==} + '@tabler/icons@3.36.1': + resolution: {integrity: sha512-f4Jg3Fof/Vru5ioix/UO4GX+sdDsF9wQo47FbtvG+utIYYVQ/QVAC0QYgcBbAjQGfbdOh2CCf0BgiFOF9Ixtjw==} '@tanstack/query-core@5.90.5': resolution: {integrity: sha512-wLamYp7FaDq6ZnNehypKI5fNvxHPfTYylE0m/ZpuuzJfJqhR5Pxg9gvGBHZx4n7J+V5Rg5mZxHHTlv25Zt5u+w==} @@ -2195,6 +2198,9 @@ packages: resolution: {integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==} engines: {node: '>=0.10.0'} + idb-keyval@6.2.2: + resolution: {integrity: sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==} + ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} @@ -4616,12 +4622,12 @@ snapshots: dependencies: '@swc/counter': 0.1.3 - '@tabler/icons-react@3.35.0(react@19.2.0)': + '@tabler/icons-react@3.36.1(react@19.2.0)': dependencies: - '@tabler/icons': 3.35.0 + '@tabler/icons': 3.36.1 react: 19.2.0 - '@tabler/icons@3.35.0': {} + '@tabler/icons@3.36.1': {} '@tanstack/query-core@5.90.5': {} @@ -6068,6 +6074,8 @@ snapshots: dependencies: safer-buffer: 2.1.2 + idb-keyval@6.2.2: {} + ignore@5.3.2: {} ignore@7.0.5: {} diff --git a/src/lib.ts b/src/lib.ts index ea6858f..61bee52 100644 --- a/src/lib.ts +++ b/src/lib.ts @@ -1,4 +1,5 @@ export * from './Boxer'; +export * from './ErrorBoundary'; export * from './Former'; export * from './FormerControllers'; export * from './Gridler';