@refinedev/core 4.45.1 → 4.46.0
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 +74 -0
- package/README.md +61 -77
- package/dist/components/authenticated/index.d.ts +34 -0
- package/dist/components/authenticated/index.d.ts.map +1 -1
- package/dist/components/pages/auth/components/login/index.d.ts.map +1 -1
- package/dist/components/pages/auth/components/register/index.d.ts.map +1 -1
- package/dist/components/pages/welcome/index.d.ts.map +1 -1
- package/dist/esm/index.js +6 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/hooks/data/useMany.d.ts +1 -1
- package/dist/hooks/data/useMany.d.ts.map +1 -1
- package/dist/hooks/data/useOne.d.ts +1 -1
- package/dist/hooks/data/useOne.d.ts.map +1 -1
- package/dist/hooks/form/useForm.d.ts +1 -1
- package/dist/hooks/form/useForm.d.ts.map +1 -1
- package/dist/hooks/show/useShow.d.ts +3 -3
- package/dist/hooks/show/useShow.d.ts.map +1 -1
- package/dist/hooks/useSelect/index.d.ts +3 -3
- package/dist/hooks/useSelect/index.d.ts.map +1 -1
- package/dist/iife/index.js +6 -6
- package/dist/iife/index.js.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/interfaces/auth.d.ts +12 -0
- package/dist/interfaces/auth.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/authenticated/index.tsx +118 -139
- package/src/components/pages/auth/components/login/index.tsx +110 -84
- package/src/components/pages/auth/components/register/index.tsx +88 -65
- package/src/components/pages/welcome/index.tsx +125 -124
- package/src/hooks/auth/useLogin/index.ts +4 -4
- package/src/hooks/auth/useLogout/index.ts +4 -4
- package/src/hooks/auth/useRegister/index.ts +5 -4
- package/src/hooks/data/useMany.ts +1 -1
- package/src/hooks/data/useOne.ts +1 -1
- package/src/hooks/form/useForm.ts +1 -1
- package/src/hooks/show/useShow.ts +3 -3
- package/src/hooks/useSelect/index.ts +3 -2
- package/src/interfaces/auth.tsx +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,79 @@
|
|
|
1
1
|
# @refinedev/core
|
|
2
2
|
|
|
3
|
+
## 4.46.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#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.
|
|
8
|
+
|
|
9
|
+
- [#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.
|
|
10
|
+
|
|
11
|
+
Now with the `hideForm` props feature, you can be able to hide the forms (like email/password)
|
|
12
|
+
to only show the OAuth providers. This avoids having to make your own entire AuthPage.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#5323](https://github.com/refinedev/refine/pull/5323) [`17aa8c1cd6`](https://github.com/refinedev/refine/commit/17aa8c1cd6858c5a2b0c996c97230047e049bf3b) Thanks [@alicanerdurmaz](https://github.com/alicanerdurmaz)! - ### Breaking changes
|
|
17
|
+
|
|
18
|
+
fix: added required `key` prop to `<Auhtenticated />` component to resolve issues of rendering of the unwanted content and wrongful redirections. #4782
|
|
19
|
+
|
|
20
|
+
#### Why is it required?
|
|
21
|
+
|
|
22
|
+
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.
|
|
23
|
+
|
|
24
|
+
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.
|
|
25
|
+
|
|
26
|
+
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.
|
|
27
|
+
|
|
28
|
+
```tsx
|
|
29
|
+
import { Refine, Authenticated, AuthPage } from "@refinedev/core";
|
|
30
|
+
import {
|
|
31
|
+
CatchAllNavigate,
|
|
32
|
+
} from "@refinedev/react-router-v6";
|
|
33
|
+
import { BrowserRouter, Routes, Route, Outlet, Navigate } from "react-router-dom";
|
|
34
|
+
|
|
35
|
+
const App = () => {
|
|
36
|
+
return (
|
|
37
|
+
<BrowserRouter>
|
|
38
|
+
<Refine {/* ... */}>
|
|
39
|
+
<Routes>
|
|
40
|
+
<Route
|
|
41
|
+
element={
|
|
42
|
+
<Authenticated
|
|
43
|
+
key="authenticated-routes"
|
|
44
|
+
fallback={<CatchAllNavigate to="/login" />}
|
|
45
|
+
>
|
|
46
|
+
<Outlet />
|
|
47
|
+
</Authenticated>
|
|
48
|
+
}
|
|
49
|
+
>
|
|
50
|
+
<Route index element={<h1>Dashboard Page</h1>} />
|
|
51
|
+
</Route>
|
|
52
|
+
|
|
53
|
+
<Route
|
|
54
|
+
element={
|
|
55
|
+
<Authenticated key="unauthenticated-routes" fallback={<Outlet />}>
|
|
56
|
+
<Navigate to="/" replace />
|
|
57
|
+
</Authenticated>
|
|
58
|
+
}
|
|
59
|
+
>
|
|
60
|
+
<Route path="/login" element={<AuthPage type="login" />} />
|
|
61
|
+
</Route>
|
|
62
|
+
</Routes>
|
|
63
|
+
</Refine>
|
|
64
|
+
</BrowserRouter>
|
|
65
|
+
);
|
|
66
|
+
};
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
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.
|
|
70
|
+
|
|
71
|
+
- [#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.
|
|
72
|
+
|
|
73
|
+
- [#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
|
|
74
|
+
|
|
75
|
+
This fix has improved type safety of return type of useOne, useSelect, useForm, useMany and useShow hooks.
|
|
76
|
+
|
|
3
77
|
## 4.45.1
|
|
4
78
|
|
|
5
79
|
### 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
|
[](https://discord.gg/refine)
|
|
37
36
|
[](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-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% open source React framework to build web apps 3x 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
|
-
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
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
|
-
|
|
171
|
-
|
|
172
|
-
|
|
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
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
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;
|
|
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,
|
|
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,
|
|
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;
|
|
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"}
|