@refinedev/core 4.56.0 → 4.57.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/CHANGELOG.md CHANGED
@@ -1,5 +1,91 @@
1
1
  # @refinedev/core
2
2
 
3
+ ## 4.57.1
4
+
5
+ ### Patch Changes
6
+
7
+ 📢 **Refine Community Release** 📢
8
+
9
+ - This PR fixes an issue where the ListButton component doesn't include a query filter in the navigation URL.
10
+
11
+ [Resolves #6528](https://github.com/refinedev/refine/issues/6528)
12
+
13
+ 📢 **Refine Community Release** 📢
14
+
15
+ - chore: update package descriptions
16
+
17
+ 📢 **Refine Community Release** 📢
18
+
19
+ - refactor: modified the Authenticated component to receive optional params prop to be passed to the useIsAuthenticated hook.
20
+
21
+ Fixes #6309
22
+
23
+ 📢 **Refine Community Release** 📢
24
+
25
+ - fix: `useUpdate` and `useForm` hooks throws an error when `id` is an empty string. (`id=""`) #6505
26
+
27
+ This reverts a breaking change introduced in [PR #6116](https://github.com/refinedev/refine/pull/6116) and restores support for using an empty string as `id`. This enables updates without an `id` field, as allowed before `@refinedev/core@4.54.0`.
28
+
29
+ Affected versions with this bug:
30
+
31
+ - `@refinedev/core@4.54.0`
32
+ - `@refinedev/core@4.54.1`
33
+ - `@refinedev/core@4.55.0`
34
+ - `@refinedev/core@4.56.0`
35
+
36
+ The bug is fixed in:
37
+
38
+ - `@refinedev/core@4.56.1`
39
+
40
+ Resolves [#6505](https://github.com/refinedev/refine/issues/6505)
41
+
42
+ - Updated dependencies []:
43
+ - @refinedev/devtools-internal@1.1.16
44
+
45
+ ## 4.57.0
46
+
47
+ ### Minor Changes
48
+
49
+ ⚡ **Refine Enterprise Release** ⚡
50
+
51
+ - [#6558](https://github.com/refinedev/refine/pull/6558) [`42d730aa2908003cfb0dcf0c57e9b70793c88ddc`](https://github.com/refinedev/refine/commit/42d730aa2908003cfb0dcf0c57e9b70793c88ddc) Thanks [@OmkarBansod02](https://github.com/OmkarBansod02)! - This PR fixes an issue where the ListButton component doesn't include a query filter in the navigation URL.
52
+
53
+ [Resolves #6528](https://github.com/refinedev/refine/issues/6528)
54
+
55
+ ⚡ **Refine Enterprise Release** ⚡
56
+
57
+ - [#6483](https://github.com/refinedev/refine/pull/6483) [`8309c5690e7c49529f07d288e79896636c6ce7c2`](https://github.com/refinedev/refine/commit/8309c5690e7c49529f07d288e79896636c6ce7c2) Thanks [@reedwane](https://github.com/reedwane)! - refactor: modified the Authenticated component to receive optional params prop to be passed to the useIsAuthenticated hook.
58
+
59
+ Fixes #6309
60
+
61
+ ### Patch Changes
62
+
63
+ ⚡ **Refine Enterprise Release** ⚡
64
+
65
+ - [#6554](https://github.com/refinedev/refine/pull/6554) [`3cb2ca6f687398e422b867692b597b0c0d911706`](https://github.com/refinedev/refine/commit/3cb2ca6f687398e422b867692b597b0c0d911706) Thanks [@necatiozmen](https://github.com/necatiozmen)! - chore: update package descriptions
66
+
67
+ ⚡ **Refine Enterprise Release** ⚡
68
+
69
+ - [#6514](https://github.com/refinedev/refine/pull/6514) [`f32af58283bdaf7712805520bd9feb8bfd27ba38`](https://github.com/refinedev/refine/commit/f32af58283bdaf7712805520bd9feb8bfd27ba38) Thanks [@alicanerdurmaz](https://github.com/alicanerdurmaz)! - fix: `useUpdate` and `useForm` hooks throws an error when `id` is an empty string. (`id=""`) #6505
70
+
71
+ This reverts a breaking change introduced in [PR #6116](https://github.com/refinedev/refine/pull/6116) and restores support for using an empty string as `id`. This enables updates without an `id` field, as allowed before `@refinedev/core@4.54.0`.
72
+
73
+ Affected versions with this bug:
74
+
75
+ - `@refinedev/core@4.54.0`
76
+ - `@refinedev/core@4.54.1`
77
+ - `@refinedev/core@4.55.0`
78
+ - `@refinedev/core@4.56.0`
79
+
80
+ The bug is fixed in:
81
+
82
+ - `@refinedev/core@4.56.1`
83
+
84
+ Resolves [#6505](https://github.com/refinedev/refine/issues/6505)
85
+
86
+ - Updated dependencies [[`1ced1baa1dda3251b2a3d058a9168533126efb53`](https://github.com/refinedev/refine/commit/1ced1baa1dda3251b2a3d058a9168533126efb53)]:
87
+ - @refinedev/devtools-internal@1.1.15
88
+
3
89
  ## 4.56.0
4
90
 
5
91
  ### Minor Changes
@@ -1093,8 +1179,8 @@
1093
1179
  import { Refine, Authenticated, AuthPage } from "@refinedev/core";
1094
1180
  import {
1095
1181
  CatchAllNavigate,
1096
- } from "@refinedev/react-router-v6";
1097
- import { BrowserRouter, Routes, Route, Outlet, Navigate } from "react-router-dom";
1182
+ } from "@refinedev/react-router";
1183
+ import { BrowserRouter, Routes, Route, Outlet, Navigate } from "react-router";
1098
1184
 
1099
1185
  const App = () => {
1100
1186
  return (
package/README.md CHANGED
@@ -75,8 +75,8 @@ import React from "react";
75
75
  import { Refine, useMany } from "@refinedev/core";
76
76
  import { ThemedLayoutV2 } from "@refinedev/mui";
77
77
  import dataProvider from "@refinedev/simple-rest";
78
- import routerProvider from "@refinedev/react-router-v6";
79
- import { BrowserRouter, Outlet, Route, Routes } from "react-router-dom";
78
+ import routerProvider from "@refinedev/react-router";
79
+ import { BrowserRouter, Outlet, Route, Routes } from "react-router";
80
80
 
81
81
  import CssBaseline from "@mui/material/CssBaseline";
82
82
 
@@ -138,6 +138,7 @@ export const ProductList = () => {
138
138
  field: "category",
139
139
  flex: 1,
140
140
  headerName: "Category",
141
+ display: "flex",
141
142
  renderCell: ({ value }) =>
142
143
  isLoading
143
144
  ? "Loading..."
@@ -147,6 +148,7 @@ export const ProductList = () => {
147
148
  field: "createdAt",
148
149
  flex: 1,
149
150
  headerName: "Created at",
151
+ display: "flex",
150
152
  renderCell: ({ value }) => <DateField value={value} />,
151
153
  },
152
154
  ],
@@ -155,7 +157,7 @@ export const ProductList = () => {
155
157
 
156
158
  return (
157
159
  <List>
158
- <DataGrid {...dataGridProps} columns={columns} autoHeight />
160
+ <DataGrid {...dataGridProps} columns={columns} />
159
161
  </List>
160
162
  );
161
163
  };
@@ -184,7 +186,7 @@ You can take a look at some live examples that can be built using **Refine** fro
184
186
  ## Key Features
185
187
 
186
188
  - Refine Devtools - dive deeper into your app and provide useful insights
187
- - Connectors for **15+ backend services** including [REST API](https://github.com/refinedev/refine/tree/master/packages/simple-rest), [GraphQL](https://github.com/refinedev/refine/tree/master/packages/graphql), [NestJs CRUD](https://github.com/refinedev/refine/tree/master/packages/nestjsx-crud), [Airtable](https://github.com/refinedev/refine/tree/master/packages/airtable), [Strapi](https://github.com/refinedev/refine/tree/master/packages/strapi), [Strapi v4](https://github.com/refinedev/refine/tree/master/packages/strapi-v4), [Supabase](https://github.com/refinedev/refine/tree/master/packages/supabase), [Hasura](https://github.com/refinedev/refine/tree/master/packages/hasura), [Appwrite](https://github.com/refinedev/refine/tree/master/packages/appwrite), [Nestjs-Query](https://github.com/refinedev/refine/tree/master/packages/nestjs-query), [Firebase](https://firebase.google.com/), [Sanity](https://www.sanity.io/), and [Directus](https://directus.io/).
189
+ - Connectors for **15+ backend services** including [REST API](https://github.com/refinedev/refine/tree/main/packages/simple-rest), [GraphQL](https://github.com/refinedev/refine/tree/main/packages/graphql), [NestJs CRUD](https://github.com/refinedev/refine/tree/main/packages/nestjsx-crud), [Airtable](https://github.com/refinedev/refine/tree/main/packages/airtable), [Strapi](https://github.com/refinedev/refine/tree/main/packages/strapi), [Strapi v4](https://github.com/refinedev/refine/tree/main/packages/strapi-v4), [Supabase](https://github.com/refinedev/refine/tree/main/packages/supabase), [Hasura](https://github.com/refinedev/refine/tree/main/packages/hasura), [Appwrite](https://github.com/refinedev/refine/tree/main/packages/appwrite), [Nestjs-Query](https://github.com/refinedev/refine/tree/main/packages/nestjs-query), [Firebase](https://firebase.google.com/), [Sanity](https://www.sanity.io/), and [Directus](https://directus.io/).
188
190
  - SSR support with Next.js & Remix and Advanced routing with any router library of your choice
189
191
  - Auto-generation of CRUD UIs based on your API data structure
190
192
  - Perfect state management & mutations with React Query
@@ -1,4 +1,5 @@
1
1
  import React from "react";
2
+ export type AuthCheckParams = any;
2
3
  export type AuthenticatedCommonProps = {
3
4
  /**
4
5
  * Unique key to identify the component.
@@ -32,9 +33,13 @@ export type AuthenticatedCommonProps = {
32
33
  */
33
34
  loading?: React.ReactNode;
34
35
  /**
35
- * Content to show if user is logged in
36
+ * Content to show if user is logged in.
36
37
  */
37
38
  children?: React.ReactNode;
39
+ /**
40
+ * optional params to be passed to the Auth Provider's check method via the useIsAuthenticated hook.
41
+ */
42
+ params?: AuthCheckParams;
38
43
  };
39
44
  export type LegacyAuthenticatedProps = {
40
45
  v3LegacyAuthProviderCompatible: true;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/authenticated/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;;OAIG;IACH,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC;IACf;;;;;;;;OAQG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;;OAKG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,8BAA8B,EAAE,IAAI,CAAC;CACtC,GAAG,wBAAwB,CAAC;AAE7B,MAAM,MAAM,kBAAkB,GAAG;IAC/B,8BAA8B,CAAC,EAAE,KAAK,CAAC;CACxC,GAAG,wBAAwB,CAAC;AAE7B;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CAC3B,KAAK,EAAE,wBAAwB,GAC9B,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC;AAEtB;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,GAAG,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/authenticated/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,MAAM,MAAM,eAAe,GAAG,GAAG,CAAC;AAElC,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;;OAIG;IACH,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC;IACf;;;;;;;;OAQG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;;OAKG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,MAAM,CAAC,EAAE,eAAe,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,8BAA8B,EAAE,IAAI,CAAC;CACtC,GAAG,wBAAwB,CAAC;AAE7B,MAAM,MAAM,kBAAkB,GAAG;IAC/B,8BAA8B,CAAC,EAAE,KAAK,CAAC;CACxC,GAAG,wBAAwB,CAAC;AAE7B;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CAC3B,KAAK,EAAE,wBAAwB,GAC9B,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC;AAEtB;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,GAAG,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC"}
@@ -1,4 +1,5 @@
1
1
  import React from "react";
2
+ export type AuthCheckParams = any;
2
3
  export type AuthenticatedCommonProps = {
3
4
  /**
4
5
  * Unique key to identify the component.
@@ -32,9 +33,13 @@ export type AuthenticatedCommonProps = {
32
33
  */
33
34
  loading?: React.ReactNode;
34
35
  /**
35
- * Content to show if user is logged in
36
+ * Content to show if user is logged in.
36
37
  */
37
38
  children?: React.ReactNode;
39
+ /**
40
+ * optional params to be passed to the Auth Provider's check method via the useIsAuthenticated hook.
41
+ */
42
+ params?: AuthCheckParams;
38
43
  };
39
44
  export type LegacyAuthenticatedProps = {
40
45
  v3LegacyAuthProviderCompatible: true;
@@ -1,4 +1,5 @@
1
1
  import React from "react";
2
+ export type AuthCheckParams = any;
2
3
  export type AuthenticatedCommonProps = {
3
4
  /**
4
5
  * Unique key to identify the component.
@@ -32,9 +33,13 @@ export type AuthenticatedCommonProps = {
32
33
  */
33
34
  loading?: React.ReactNode;
34
35
  /**
35
- * Content to show if user is logged in
36
+ * Content to show if user is logged in.
36
37
  */
37
38
  children?: React.ReactNode;
39
+ /**
40
+ * optional params to be passed to the Auth Provider's check method via the useIsAuthenticated hook.
41
+ */
42
+ params?: AuthCheckParams;
38
43
  };
39
44
  export type LegacyAuthenticatedProps = {
40
45
  v3LegacyAuthProviderCompatible: true;
@@ -1,4 +1,5 @@
1
1
  import React from "react";
2
+ export type AuthCheckParams = any;
2
3
  export type AuthenticatedCommonProps = {
3
4
  /**
4
5
  * Unique key to identify the component.
@@ -32,9 +33,13 @@ export type AuthenticatedCommonProps = {
32
33
  */
33
34
  loading?: React.ReactNode;
34
35
  /**
35
- * Content to show if user is logged in
36
+ * Content to show if user is logged in.
36
37
  */
37
38
  children?: React.ReactNode;
39
+ /**
40
+ * optional params to be passed to the Auth Provider's check method via the useIsAuthenticated hook.
41
+ */
42
+ params?: AuthCheckParams;
38
43
  };
39
44
  export type LegacyAuthenticatedProps = {
40
45
  v3LegacyAuthProviderCompatible: true;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/authenticated/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;;OAIG;IACH,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC;IACf;;;;;;;;OAQG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;;OAKG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,8BAA8B,EAAE,IAAI,CAAC;CACtC,GAAG,wBAAwB,CAAC;AAE7B,MAAM,MAAM,kBAAkB,GAAG;IAC/B,8BAA8B,CAAC,EAAE,KAAK,CAAC;CACxC,GAAG,wBAAwB,CAAC;AAE7B;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CAC3B,KAAK,EAAE,wBAAwB,GAC9B,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC;AAEtB;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,GAAG,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/authenticated/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,MAAM,MAAM,eAAe,GAAG,GAAG,CAAC;AAElC,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;;OAIG;IACH,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC;IACf;;;;;;;;OAQG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;;OAKG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B;;OAEG;IACH,MAAM,CAAC,EAAE,eAAe,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,8BAA8B,EAAE,IAAI,CAAC;CACtC,GAAG,wBAAwB,CAAC;AAE7B,MAAM,MAAM,kBAAkB,GAAG;IAC/B,8BAA8B,CAAC,EAAE,KAAK,CAAC;CACxC,GAAG,wBAAwB,CAAC;AAE7B;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CAC3B,KAAK,EAAE,wBAAwB,GAC9B,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC;AAEtB;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,GAAG,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/navigation/index.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAEnE,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,SAAS,CAAC;AAE7C;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa;uBAsRZ,MAAM,GAAG,aAAa,SAC1B,WAAW,SACX,aAAa;0BAtQT,MAAM,GAAG,aAAa,SAC1B,aAAa;qBA2QT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;wBA7NT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;sBAiOT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;yBAjLT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;qBAqLT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;wBApIT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;qBAwIT,MAAM,GAAG,aAAa,SAC1B,WAAW,SACX,aAAa;wBAvFT,MAAM,GAAG,aAAa,SAC1B,aAAa;iBA8FD,MAAM,WAAW,OAAO,EAAE;oBAWvB,MAAM,WAAW,OAAO,EAAE;;CAkClD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/navigation/index.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAEnE,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,SAAS,CAAC;AAE7C;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa;uBA2RZ,MAAM,GAAG,aAAa,SAC1B,WAAW,SACX,aAAa;0BA3QT,MAAM,GAAG,aAAa,SAC1B,aAAa;qBAgRT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;wBAjOT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;sBAqOT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;yBApLT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;qBAwLT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;wBAtIT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;qBA0IT,MAAM,GAAG,aAAa,SAC1B,WAAW,SACX,aAAa;wBAxFT,MAAM,GAAG,aAAa,SAC1B,aAAa;iBA+FD,MAAM,WAAW,OAAO,EAAE;oBAWvB,MAAM,WAAW,OAAO,EAAE;;CAkClD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/navigation/index.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAEnE,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,SAAS,CAAC;AAE7C;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa;uBAsRZ,MAAM,GAAG,aAAa,SAC1B,WAAW,SACX,aAAa;0BAtQT,MAAM,GAAG,aAAa,SAC1B,aAAa;qBA2QT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;wBA7NT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;sBAiOT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;yBAjLT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;qBAqLT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;wBApIT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;qBAwIT,MAAM,GAAG,aAAa,SAC1B,WAAW,SACX,aAAa;wBAvFT,MAAM,GAAG,aAAa,SAC1B,aAAa;iBA8FD,MAAM,WAAW,OAAO,EAAE;oBAWvB,MAAM,WAAW,OAAO,EAAE;;CAkClD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/navigation/index.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AACxE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAEnE,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,SAAS,CAAC;AAE7C;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa;uBA2RZ,MAAM,GAAG,aAAa,SAC1B,WAAW,SACX,aAAa;0BA3QT,MAAM,GAAG,aAAa,SAC1B,aAAa;qBAgRT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;wBAjOT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;sBAqOT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;yBApLT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;qBAwLT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,WAAW,SACX,aAAa;wBAtIT,MAAM,GAAG,aAAa,MAC5B,OAAO,SACL,aAAa;qBA0IT,MAAM,GAAG,aAAa,SAC1B,WAAW,SACX,aAAa;wBAxFT,MAAM,GAAG,aAAa,SAC1B,aAAa;iBA+FD,MAAM,WAAW,OAAO,EAAE;oBAWvB,MAAM,WAAW,OAAO,EAAE;;CAkClD,CAAC"}