@refinedev/core 4.45.1 → 4.46.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.
Files changed (55) hide show
  1. package/CHANGELOG.md +114 -0
  2. package/README.md +61 -77
  3. package/dist/components/authenticated/index.d.ts +34 -0
  4. package/dist/components/authenticated/index.d.ts.map +1 -1
  5. package/dist/components/pages/auth/components/login/index.d.ts.map +1 -1
  6. package/dist/components/pages/auth/components/register/index.d.ts.map +1 -1
  7. package/dist/components/pages/welcome/index.d.ts.map +1 -1
  8. package/dist/esm/index.js +6 -6
  9. package/dist/esm/index.js.map +1 -1
  10. package/dist/hooks/data/useDelete.d.ts.map +1 -1
  11. package/dist/hooks/data/useDeleteMany.d.ts.map +1 -1
  12. package/dist/hooks/data/useMany.d.ts +1 -1
  13. package/dist/hooks/data/useMany.d.ts.map +1 -1
  14. package/dist/hooks/data/useOne.d.ts +1 -1
  15. package/dist/hooks/data/useOne.d.ts.map +1 -1
  16. package/dist/hooks/data/useUpdate.d.ts.map +1 -1
  17. package/dist/hooks/data/useUpdateMany.d.ts.map +1 -1
  18. package/dist/hooks/form/useForm.d.ts +1 -1
  19. package/dist/hooks/form/useForm.d.ts.map +1 -1
  20. package/dist/hooks/show/useShow.d.ts +3 -3
  21. package/dist/hooks/show/useShow.d.ts.map +1 -1
  22. package/dist/hooks/useMeta/index.d.ts +2 -0
  23. package/dist/hooks/useMeta/index.d.ts.map +1 -1
  24. package/dist/hooks/useSelect/index.d.ts +3 -3
  25. package/dist/hooks/useSelect/index.d.ts.map +1 -1
  26. package/dist/iife/index.js +6 -6
  27. package/dist/iife/index.js.map +1 -1
  28. package/dist/index.js +6 -6
  29. package/dist/index.js.map +1 -1
  30. package/dist/interfaces/auth.d.ts +12 -0
  31. package/dist/interfaces/auth.d.ts.map +1 -1
  32. package/dist/interfaces/metaData/graphqlQueryOptions.d.ts +6 -0
  33. package/dist/interfaces/metaData/graphqlQueryOptions.d.ts.map +1 -0
  34. package/dist/interfaces/metaData/metaQuery.d.ts +2 -1
  35. package/dist/interfaces/metaData/metaQuery.d.ts.map +1 -1
  36. package/package.json +2 -1
  37. package/src/components/authenticated/index.tsx +118 -139
  38. package/src/components/pages/auth/components/login/index.tsx +110 -84
  39. package/src/components/pages/auth/components/register/index.tsx +88 -65
  40. package/src/components/pages/welcome/index.tsx +125 -124
  41. package/src/hooks/auth/useLogin/index.ts +4 -4
  42. package/src/hooks/auth/useLogout/index.ts +4 -4
  43. package/src/hooks/auth/useRegister/index.ts +5 -4
  44. package/src/hooks/data/useDelete.ts +5 -1
  45. package/src/hooks/data/useDeleteMany.ts +5 -1
  46. package/src/hooks/data/useMany.ts +1 -1
  47. package/src/hooks/data/useOne.ts +1 -1
  48. package/src/hooks/data/useUpdate.ts +5 -1
  49. package/src/hooks/data/useUpdateMany.ts +7 -2
  50. package/src/hooks/form/useForm.ts +1 -1
  51. package/src/hooks/show/useShow.ts +3 -3
  52. package/src/hooks/useSelect/index.ts +3 -2
  53. package/src/interfaces/auth.tsx +12 -0
  54. package/src/interfaces/metaData/graphqlQueryOptions.ts +6 -0
  55. package/src/interfaces/metaData/metaQuery.ts +3 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,119 @@
1
1
  # @refinedev/core
2
2
 
3
+ ## 4.46.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#5409](https://github.com/refinedev/refine/pull/5409) [`0026fe34d0`](https://github.com/refinedev/refine/commit/0026fe34d0e46209f42e40834c6942ade22f242f) Thanks [@BatuhanW](https://github.com/BatuhanW)! - fix: exclude `gqlMutation` and `gqlQuery` from building query keys for `useUpdate`, `useUpdateMany`, `useDelete`, and `useDeleteMany` hooks.
8
+
9
+ - [#5409](https://github.com/refinedev/refine/pull/5409) [`0026fe34d0`](https://github.com/refinedev/refine/commit/0026fe34d0e46209f42e40834c6942ade22f242f) Thanks [@BatuhanW](https://github.com/BatuhanW)! - feat: add optional `gqlQuery` and `gqlMutation` fields to `MetaQuery` type to be used in `data hooks`.
10
+
11
+ We plan to utilize these fields on our GraphQL data providers in the future.
12
+
13
+ You can build your queries/mutations with `graphql-tag` package and pass it to the `gqlQuery`/`gqlMutation` fields.
14
+
15
+ For now, only `@refinedev/nestjs-query` package supports it.
16
+
17
+ ```tsx
18
+ import { useList } from "@refinedev/core";
19
+ import gql from "graphql-tag";
20
+
21
+ const PRODUCTS_QUERY = gql`
22
+ query ProductsList(
23
+ $paging: OffsetPaging!
24
+ $filter: BlogPostFilter
25
+ $sorting: [BlogPostSort!]!
26
+ ) {
27
+ products(paging: $paging, filter: $filter, sorting: $sorting) {
28
+ nodes {
29
+ id
30
+ name
31
+ }
32
+ totalCount
33
+ }
34
+ }
35
+ `;
36
+
37
+ const { data } = useList({
38
+ resource: "products",
39
+ meta: { gqlQuery: PRODUCTS_QUERY },
40
+ });
41
+ ```
42
+
43
+ ## 4.46.0
44
+
45
+ ### Minor Changes
46
+
47
+ - [#5343](https://github.com/refinedev/refine/pull/5343) [`dd8f1270f6`](https://github.com/refinedev/refine/commit/dd8f1270f692d1eec279973e53fcc5a7e650b983) Thanks [@alicanerdurmaz](https://github.com/alicanerdurmaz)! - fix: `hideForm` should remove all form fields. (submit button, form fields, rememberMe checkbox, forgot password link, etc.) but the `/register` link should be visible.
48
+
49
+ - [#5307](https://github.com/refinedev/refine/pull/5307) [`f8e407f850`](https://github.com/refinedev/refine/commit/f8e407f85054bccf1e6ff45c84928bc01db7f5eb) Thanks [@jackprogramsjp](https://github.com/jackprogramsjp)! - feat: added `hideForm` props for `LoginPage` and `RegisterPage` for `AuthPage` feature.
50
+
51
+ Now with the `hideForm` props feature, you can be able to hide the forms (like email/password)
52
+ to only show the OAuth providers. This avoids having to make your own entire AuthPage.
53
+
54
+ ### Patch Changes
55
+
56
+ - [#5323](https://github.com/refinedev/refine/pull/5323) [`17aa8c1cd6`](https://github.com/refinedev/refine/commit/17aa8c1cd6858c5a2b0c996c97230047e049bf3b) Thanks [@alicanerdurmaz](https://github.com/alicanerdurmaz)! - ### Breaking changes
57
+
58
+ fix: added required `key` prop to `<Auhtenticated />` component to resolve issues of rendering of the unwanted content and wrongful redirections. #4782
59
+
60
+ #### Why is it required?
61
+
62
+ Due to the [nature of React](https://react.dev/learn/rendering-lists#why-does-react-need-keys), components are not unmounted and remounted again if props are changed. While this is mostly a good practice for performance, in some cases you'll want your component to re-mount instead of updating; for example, if you don't want to use any of the previous states and effects initiated with the old props.
63
+
64
+ The `<Authenticated />` component has this kind of scenario when it's used for page-level authentication checks. If the previous check results were used for the rendering of the content (`fallback` or `children`) this may lead to unexpected behaviors and flashing of the unwanted content.
65
+
66
+ To avoid this, a key property must be set with different values for each use of the `<Authenticated />` components. This will make sure that React will unmount and remount the component instead of updating the props.
67
+
68
+ ```tsx
69
+ import { Refine, Authenticated, AuthPage } from "@refinedev/core";
70
+ import {
71
+ CatchAllNavigate,
72
+ } from "@refinedev/react-router-v6";
73
+ import { BrowserRouter, Routes, Route, Outlet, Navigate } from "react-router-dom";
74
+
75
+ const App = () => {
76
+ return (
77
+ <BrowserRouter>
78
+ <Refine {/* ... */}>
79
+ <Routes>
80
+ <Route
81
+ element={
82
+ <Authenticated
83
+ key="authenticated-routes"
84
+ fallback={<CatchAllNavigate to="/login" />}
85
+ >
86
+ <Outlet />
87
+ </Authenticated>
88
+ }
89
+ >
90
+ <Route index element={<h1>Dashboard Page</h1>} />
91
+ </Route>
92
+
93
+ <Route
94
+ element={
95
+ <Authenticated key="unauthenticated-routes" fallback={<Outlet />}>
96
+ <Navigate to="/" replace />
97
+ </Authenticated>
98
+ }
99
+ >
100
+ <Route path="/login" element={<AuthPage type="login" />} />
101
+ </Route>
102
+ </Routes>
103
+ </Refine>
104
+ </BrowserRouter>
105
+ );
106
+ };
107
+ ```
108
+
109
+ In the example above, the `<Authenticated />` is rendered as the wrapper of both the `index` route and `/login` route. Without a `key` property, `<Authenticated />` will not be re-mounted and can result in rendering the content depending on the previous authentication check. This will lead to redirecting to `/login` when trying to access the `index` route instead of rendering the content of the `index` or navigating to `index` route instead of `/login` if the user just logged out.
110
+
111
+ - [#5339](https://github.com/refinedev/refine/pull/5339) [`4c49ef0a06`](https://github.com/refinedev/refine/commit/4c49ef0a0660c2941c983025a187d45b521aa27c) Thanks [@alicanerdurmaz](https://github.com/alicanerdurmaz)! - feat: `<WelcomePage />` component redesigned.
112
+
113
+ - [#5316](https://github.com/refinedev/refine/pull/5316) [`3bdb9cb1cb`](https://github.com/refinedev/refine/commit/3bdb9cb1cb4cdcfaf363e7e9938737ed6f8e634e) Thanks [@ksankeerth](https://github.com/ksankeerth)! - fix: Return type is not mentioned correctly in useOne, useSelect, useForm, useMany and useShow hooks
114
+
115
+ This fix has improved type safety of return type of useOne, useSelect, useForm, useMany and useShow hooks.
116
+
3
117
  ## 4.45.1
4
118
 
5
119
  ### Patch Changes
package/README.md CHANGED
@@ -18,7 +18,6 @@
18
18
  <br/>
19
19
  <br/>
20
20
 
21
-
22
21
  <div align="center"><strong>Build your <a href="https://reactjs.org/">React</a>-based CRUD applications, without constraints.</strong><br>An open-source, headless web application framework developed with flexibility in mind.
23
22
 
24
23
  <br />
@@ -36,7 +35,6 @@
36
35
  [![Discord](https://img.shields.io/discord/837692625737613362.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/refine)
37
36
  [![Twitter Follow](https://img.shields.io/twitter/follow/refine_dev?style=social)](https://twitter.com/refine_dev)
38
37
 
39
-
40
38
  <a href="https://www.producthunt.com/posts/refine-3?utm_source=badge-top-post-badge&utm_medium=badge&utm_souce=badge-refine&#0045;3" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=362220&theme=light&period=daily" alt="refine - 100&#0037;&#0032;open&#0032;source&#0032;React&#0032;framework&#0032;to&#0032;build&#0032;web&#0032;apps&#0032;3x&#0032;faster | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
41
39
 
42
40
  </div>
@@ -71,7 +69,7 @@ This means you can use Refine seamlessly on different platforms like React Nativ
71
69
 
72
70
  ## ⚡ Try Refine
73
71
 
74
- Refine's [browser-based app scaffolder](https://refine.dev/#playground) enables you to build a Refine app through an interactive, step-by-step process in your browser.
72
+ Refine's [browser-based app scaffolder](https://refine.dev/#playground) enables you to build a Refine app through an interactive, step-by-step process in your browser.
75
73
 
76
74
  You have the freedom to select your preferred libraries and frameworks, and the tool generates a ready-to-download boilerplate code. This feature not only lets you preview and tweak your project on the fly but also accelerates the overall development workflow.
77
75
 
@@ -89,12 +87,12 @@ You have the freedom to select your preferred libraries and frameworks, and the
89
87
 
90
88
  You can take a look at some live examples that can be built using **refine** from scratch:
91
89
 
92
- - [Fully-functional CRM Application](https://example.crm.refine.dev/)
93
- - [Fully-functional Admin Panel](https://s.refine.dev/readme-admin-panel)
94
- - [Win95 Style Admin panel 🪟](https://win95.refine.dev/)
95
- - [Medium Clone - Real World Example](https://s.refine.dev/readme-medium-clone)
96
- - [Multitenancy Example](https://multi-tenancy-strapi.refine.dev/)
97
- - [Storefront](https://s.refine.dev/readme-ssr-storefront)
90
+ - [Fully-functional CRM Application](https://example.crm.refine.dev/)
91
+ - [Fully-functional Admin Panel](https://s.refine.dev/readme-admin-panel)
92
+ - [Win95 Style Admin panel 🪟](https://win95.refine.dev/)
93
+ - [Medium Clone - Real World Example](https://s.refine.dev/readme-medium-clone)
94
+ - [Multitenancy Example](https://multi-tenancy-strapi.refine.dev/)
95
+ - [Storefront](https://s.refine.dev/readme-ssr-storefront)
98
96
 
99
97
  [👉 Refer to most popular real use case examples](https://refine.dev/docs/examples/)
100
98
 
@@ -134,7 +132,7 @@ You can take a look at some live examples that can be built using **refine** fro
134
132
 
135
133
  There are two ways to create a Refine app: either by using the `create refine-app` CLI tool or the [browser-based app scaffolder](https://refine.dev/#playground).
136
134
 
137
- To quickly start a Refine project with [Ant Design](https://ant.design/) as the default UI framework, run the following command.
135
+ To quickly start a Refine project with [Ant Design](https://ant.design/) as the default UI framework, run the following command.
138
136
 
139
137
  ```
140
138
  npm create refine-app@latest -- -o refine-antd
@@ -146,7 +144,6 @@ Once the setup is complete, navigate to the project folder and start your projec
146
144
  npm run dev
147
145
  ```
148
146
 
149
-
150
147
  <br/>
151
148
 
152
149
  Your **Refine** application will be accessible at [http://localhost:5173](http://localhost:5173):
@@ -155,21 +152,20 @@ Your **Refine** application will be accessible at [http://localhost:5173](http:/
155
152
 
156
153
  <br/>
157
154
 
158
-
159
155
  > Note: The command above uses pre-set options for ease. For a different tech stack, simply run:
160
156
  >
161
- >```
162
- >npm create refine-app@latest
163
- >```
157
+ > ```
158
+ > npm create refine-app@latest
159
+ > ```
164
160
 
165
161
  Let's consume a public `fake REST API` and add two resources (_blog_posts_ and _categories_) to our project. Replace the contents of `src/App.tsx` with the following code:
166
162
 
167
163
  ```tsx title="src/App.tsx"
168
164
  import { Refine } from "@refinedev/core";
169
165
  import {
170
- notificationProvider,
171
- ErrorComponent,
172
- ThemedLayout,
166
+ notificationProvider,
167
+ ErrorComponent,
168
+ ThemedLayout,
173
169
  } from "@refinedev/antd";
174
170
  import routerProvider, { NavigateToResource } from "@refinedev/react-router-v6";
175
171
  import dataProvider from "@refinedev/simple-rest";
@@ -181,62 +177,53 @@ import { AntdInferencer } from "@refinedev/inferencer/antd";
181
177
  import "@refinedev/antd/dist/reset.css";
182
178
 
183
179
  const App: React.FC = () => {
184
- return (
185
- <BrowserRouter>
186
- <Refine
187
- routerProvider={routerProvider}
188
- dataProvider={dataProvider("https://api.fake-rest.refine.dev")}
189
- notificationProvider={notificationProvider}
190
- resources={[
191
- {
192
- name: "blog_posts",
193
- list: "/blog-posts",
194
- show: "/blog-posts/show/:id",
195
- create: "/blog-posts/create",
196
- edit: "/blog-posts/edit/:id",
197
- meta: { canDelete: true },
198
- },
199
- {
200
- name: "categories",
201
- list: "/categories",
202
- show: "/categories/show/:id",
203
- },
204
- ]}
205
- >
206
- <Routes>
207
- <Route
208
- element={
209
- <ThemedLayout>
210
- <Outlet />
211
- </ThemedLayout>
212
- }
213
- >
214
- <Route index element={<NavigateToResource />} />
215
- <Route path="blog-posts">
216
- <Route index element={<AntdInferencer />} />
217
- <Route
218
- path="show/:id"
219
- element={<AntdInferencer />}
220
- />
221
- <Route path="create" element={<AntdInferencer />} />
222
- <Route
223
- path="edit/:id"
224
- element={<AntdInferencer />}
225
- />
226
- </Route>
227
- <Route path="categories">
228
- <Route index element={<AntdInferencer />} />
229
- <Route
230
- path="show/:id"
231
- element={<AntdInferencer />}
232
- />
233
- </Route>
234
- <Route path="*" element={<ErrorComponent />} />
235
- </Route>
236
- </Routes>
237
- </Refine>
238
- </BrowserRouter>
239
- );
180
+ return (
181
+ <BrowserRouter>
182
+ <Refine
183
+ routerProvider={routerProvider}
184
+ dataProvider={dataProvider("https://api.fake-rest.refine.dev")}
185
+ notificationProvider={notificationProvider}
186
+ resources={[
187
+ {
188
+ name: "blog_posts",
189
+ list: "/blog-posts",
190
+ show: "/blog-posts/show/:id",
191
+ create: "/blog-posts/create",
192
+ edit: "/blog-posts/edit/:id",
193
+ meta: { canDelete: true },
194
+ },
195
+ {
196
+ name: "categories",
197
+ list: "/categories",
198
+ show: "/categories/show/:id",
199
+ },
200
+ ]}
201
+ >
202
+ <Routes>
203
+ <Route
204
+ element={
205
+ <ThemedLayout>
206
+ <Outlet />
207
+ </ThemedLayout>
208
+ }
209
+ >
210
+ <Route index element={<NavigateToResource />} />
211
+ <Route path="blog-posts">
212
+ <Route index element={<AntdInferencer />} />
213
+ <Route path="show/:id" element={<AntdInferencer />} />
214
+ <Route path="create" element={<AntdInferencer />} />
215
+ <Route path="edit/:id" element={<AntdInferencer />} />
216
+ </Route>
217
+ <Route path="categories">
218
+ <Route index element={<AntdInferencer />} />
219
+ <Route path="show/:id" element={<AntdInferencer />} />
220
+ </Route>
221
+ <Route path="*" element={<ErrorComponent />} />
222
+ </Route>
223
+ </Routes>
224
+ </Refine>
225
+ </BrowserRouter>
226
+ );
240
227
  };
241
228
 
242
229
  export default App;
@@ -244,7 +231,6 @@ export default App;
244
231
 
245
232
  <br/>
246
233
 
247
-
248
234
  🚀 The [**Refine Inferencer package**](https://refine.dev/docs/packages/documentation/inferencer/) automatically generates `list`, `show`, `create`, and `edit` pages by guessing configurations from API data. We've used it here for a quick, clear start, but you can also choose to code your pages from scratch instead of using the Inferencer feature.
249
235
 
250
236
  Now, you should see the output as a table populated with `blog_posts` & `category` data:
@@ -268,8 +254,6 @@ You can get the auto-generated page codes by clicking the `Show Code` button on
268
254
 
269
255
  👉 Play with interactive [examples](https://refine.dev/docs/examples/).
270
256
 
271
-
272
-
273
257
  ## Contribution
274
258
 
275
259
  [👉 Refer to the contribution docs for more information.](https://refine.dev/docs/contributing/#ways-to-contribute)
@@ -1,5 +1,11 @@
1
1
  import React from "react";
2
2
  export declare type AuthenticatedCommonProps = {
3
+ /**
4
+ * Unique key to identify the component.
5
+ * This is required if you have multiple `Authenticated` components at the same level.
6
+ * @required
7
+ */
8
+ key: React.Key;
3
9
  /**
4
10
  * Whether to redirect user if not logged in or not.
5
11
  * If not set, user will be redirected to `redirectTo` property of the `check` function's response.
@@ -36,6 +42,34 @@ export declare type LegacyAuthenticatedProps = {
36
42
  export declare type AuthenticatedProps = {
37
43
  v3LegacyAuthProviderCompatible?: false;
38
44
  } & AuthenticatedCommonProps;
45
+ /**
46
+ * `<Authenticated>` is the component form of {@link https://refine.dev/docs/api-reference/core/hooks/auth/useAuthenticated `useAuthenticated`}. It internally uses `useAuthenticated` to provide it's functionality.
47
+ *
48
+ * @requires {@link https://react.dev/learn/rendering-lists#why-does-react-need-keys `key`} prop if you have multiple components at the same level.
49
+ * In React, components don't automatically unmount and remount with prop changes, which is generally good for performance. However, for specific cases this can cause issues like unwanted content rendering (`fallback` or `children`). To solve this, assigning unique `key` values to each instance of component is necessary, forcing React to unmount and remount the component, rather than just updating its props.
50
+ * @example
51
+ *```tsx
52
+ * <Authenticated key="dashboard">
53
+ * <h1>Dashboard Page</h1>
54
+ * </Authenticated>
55
+ *```
56
+ *
57
+ * @see {@link https://refine.dev/docs/core/components/auth/authenticated `<Authenticated>`} component for more details.
58
+ */
39
59
  export declare function Authenticated(props: LegacyAuthenticatedProps): JSX.Element | null;
60
+ /**
61
+ * `<Authenticated>` is the component form of {@link https://refine.dev/docs/api-reference/core/hooks/auth/useAuthenticated `useAuthenticated`}. It internally uses `useAuthenticated` to provide it's functionality.
62
+ *
63
+ * @requires {@link https://react.dev/learn/rendering-lists#why-does-react-need-keys `key`} prop if you have multiple components at the same level.
64
+ * In React, components don't automatically unmount and remount with prop changes, which is generally good for performance. However, for specific cases this can cause issues like unwanted content rendering (`fallback` or `children`). To solve this, assigning unique `key` values to each instance of component is necessary, forcing React to unmount and remount the component, rather than just updating its props.
65
+ * @example
66
+ *```tsx
67
+ * <Authenticated key="dashboard">
68
+ * <h1>Dashboard Page</h1>
69
+ * </Authenticated>
70
+ *```
71
+ *
72
+ * @see {@link https://refine.dev/docs/core/components/auth/authenticated `<Authenticated>`} component for more details.
73
+ */
40
74
  export declare function Authenticated(props: AuthenticatedProps): JSX.Element | null;
41
75
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/authenticated/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAyC1B,oBAAY,wBAAwB,GAAG;IACnC;;;;;;;;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;CAC9B,CAAC;AAEF,oBAAY,wBAAwB,GAAG;IACnC,8BAA8B,EAAE,IAAI,CAAC;CACxC,GAAG,wBAAwB,CAAC;AAE7B,oBAAY,kBAAkB,GAAG;IAC7B,8BAA8B,CAAC,EAAE,KAAK,CAAC;CAC1C,GAAG,wBAAwB,CAAC;AAE7B,wBAAgB,aAAa,CACzB,KAAK,EAAE,wBAAwB,GAChC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC;AAEtB,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,oBAAY,wBAAwB,GAAG;IACnC;;;;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;CAC9B,CAAC;AAEF,oBAAY,wBAAwB,GAAG;IACnC,8BAA8B,EAAE,IAAI,CAAC;CACxC,GAAG,wBAAwB,CAAC;AAE7B,oBAAY,kBAAkB,GAAG;IAC7B,8BAA8B,CAAC,EAAE,KAAK,CAAC;CAC1C,GAAG,wBAAwB,CAAC;AAE7B;;;;;;;;;;;;;GAaG;AACH,wBAAgB,aAAa,CACzB,KAAK,EAAE,wBAAwB,GAChC,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/components/pages/auth/components/login/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AACxC,OAAO,EAAE,cAAc,EAAkB,MAAM,2BAA2B,CAAC;AAK3E,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGpD,aAAK,UAAU,GAAG,cAAc,CAAC,YAAY,EAAE,YAAY,EAAE,aAAa,CAAC,CAAC;AAE5E,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAwK1C,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/pages/auth/components/login/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AACxC,OAAO,EAAE,cAAc,EAAkB,MAAM,2BAA2B,CAAC;AAK3E,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGpD,aAAK,UAAU,GAAG,cAAc,CAAC,YAAY,EAAE,YAAY,EAAE,aAAa,CAAC,CAAC;AAE5E,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAkM1C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/pages/auth/components/register/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAU9D,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGpD,aAAK,aAAa,GAAG,iBAAiB,CAClC,YAAY,EACZ,YAAY,EACZ,aAAa,CAChB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CAgJhD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/pages/auth/components/register/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAU9D,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAGpD,aAAK,aAAa,GAAG,iBAAiB,CAClC,YAAY,EACZ,YAAY,EACZ,aAAa,CAChB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CAuKhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/pages/welcome/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAoGxC;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EA6G/B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/pages/welcome/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AA8CxC;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EA2J/B,CAAC"}