@smart-factor/gem-ui-components 0.0.112 → 0.0.114

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 (33) hide show
  1. package/dist/{Drawer-CR1frcWF.js → Drawer-C7iAluIV.js} +1 -1
  2. package/dist/SignEditor.js +10186 -10573
  3. package/dist/{Stack-CP81SpOh.js → Stack-BmOPvE5G.js} +4 -3
  4. package/dist/{Tree-6R0L5vqg.js → Tree-Cg45ggbj.js} +2 -2
  5. package/dist/components/Drawer/index.js +1 -1
  6. package/dist/components/Login/Login.d.ts +7 -0
  7. package/dist/components/Login/Login.stories.d.ts +7 -0
  8. package/dist/components/Login/Login.styles.d.ts +24 -0
  9. package/dist/components/Login/index.d.ts +2 -0
  10. package/dist/components/LoginModal/LoginModal.d.ts +0 -4
  11. package/dist/components/Sidebar/Sidebar.d.ts +30 -0
  12. package/dist/components/Sidebar/Sidebar.stories.d.ts +17 -0
  13. package/dist/components/Sidebar/SidebarCollapseButton/SidebarCollapseButton.d.ts +7 -0
  14. package/dist/components/Sidebar/SidebarCollapseButton/index.d.ts +2 -0
  15. package/dist/components/Sidebar/SidebarLogo.d.ts +5 -0
  16. package/dist/components/Sidebar/SidebarLogoutButton/SidebarLogoutButton.d.ts +6 -0
  17. package/dist/components/Sidebar/SidebarLogoutButton/index.d.ts +2 -0
  18. package/dist/components/Sidebar/SidebarMenuItem/SidebarMenuItem.d.ts +11 -0
  19. package/dist/components/Sidebar/SidebarMenuItem/SidebarMenuItem.styles.d.ts +5 -0
  20. package/dist/components/Sidebar/SidebarMenuItem/index.d.ts +2 -0
  21. package/dist/components/Sidebar/index.d.ts +2 -0
  22. package/dist/components/Tree/index.js +1 -1
  23. package/dist/licenses.txt +103 -103
  24. package/dist/main.d.ts +3 -0
  25. package/dist/main.js +1710 -1655
  26. package/dist/services/auth/clearAuthStorage.d.ts +4 -0
  27. package/dist/services/mutations/auth/useLogout.d.ts +4 -0
  28. package/dist/services/mutations/auth/useResetPassword.d.ts +5 -0
  29. package/dist/services/queries/auth/useGetAppDetails.d.ts +19 -0
  30. package/dist/services/queryKeys.d.ts +1 -0
  31. package/dist/{theme-BLG8R3oq.js → theme-BJI1wus0.js} +23344 -22621
  32. package/dist/{warning-CJpi1iFg.js → warning--yabK0jO.js} +1 -1
  33. package/package.json +1 -1
@@ -7472,9 +7472,10 @@ export {
7472
7472
  Wu as an,
7473
7473
  Uu as ao,
7474
7474
  an as ap,
7475
- Xe as aq,
7476
- Je as ar,
7477
- Ze as as,
7475
+ kr as aq,
7476
+ Xe as ar,
7477
+ Je as as,
7478
+ Ze as at,
7478
7479
  Ua as b,
7479
7480
  Ku as c,
7480
7481
  on as d,
@@ -1,8 +1,8 @@
1
1
  import { jsx as v, jsxs as Re } from "react/jsx-runtime";
2
2
  import * as x from "react";
3
3
  import { createElement as Ht } from "react";
4
- import { g as Ie, f as ge, h as st, H as Yt, t as Qt, i as Zt, J as en, u as pe, s as U, k as Me, n as he, v as tt, p as lt, P as o, K as at, x as Ne, C as fe, L as tn, D as ct, M as nn, c as be, B as on, j as ee, N as nt, _ as T, O as te, y as Q, o as rn, A as sn, q as ln, Q as ze, r as ie, z as ot, F as an, S as cn, G as dn, I as un } from "./Stack-CP81SpOh.js";
5
- import { u as pn, a as fn, b as mn, w as Se, c as ue, d as In, V as gn, e as hn } from "./warning-CJpi1iFg.js";
4
+ import { g as Ie, f as ge, h as st, H as Yt, t as Qt, i as Zt, J as en, u as pe, s as U, k as Me, n as he, v as tt, p as lt, P as o, K as at, x as Ne, C as fe, L as tn, D as ct, M as nn, c as be, B as on, j as ee, N as nt, _ as T, O as te, y as Q, o as rn, A as sn, q as ln, Q as ze, r as ie, z as ot, F as an, S as cn, G as dn, I as un } from "./Stack-BmOPvE5G.js";
5
+ import { u as pn, a as fn, b as mn, w as Se, c as ue, d as In, V as gn, e as hn } from "./warning--yabK0jO.js";
6
6
  function bn(e) {
7
7
  return Ie("MuiCollapse", e);
8
8
  }
@@ -1,4 +1,4 @@
1
- import { D as e } from "../../Drawer-CR1frcWF.js";
1
+ import { D as e } from "../../Drawer-C7iAluIV.js";
2
2
  export {
3
3
  e as Drawer
4
4
  };
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ export type LoginProps = {
3
+ onSubmit: (login: string, token: string) => Promise<void> | void;
4
+ testId?: string;
5
+ };
6
+ export declare const LoginContent: React.FC<LoginProps>;
7
+ export declare const Login: React.ComponentType<LoginProps>;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Login } from './Login';
3
+ declare const meta: Meta<typeof Login>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Docs: Story;
7
+ export declare const ErrorState: Story;
@@ -0,0 +1,24 @@
1
+ export declare const Container: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2
+ export declare const ContentWrapper: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3
+ export declare const Window: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
4
+ export declare const Logo: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
5
+ export declare const Form: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, {}>;
6
+ export declare const InputWrapper: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
7
+ export declare const Input: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
8
+ hasError?: boolean;
9
+ }, import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {}>;
10
+ export declare const PasswordFieldWrapper: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
11
+ export declare const PasswordInput: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
12
+ hasError?: boolean;
13
+ } & import('react').ClassAttributes<HTMLInputElement> & import('react').InputHTMLAttributes<HTMLInputElement>, {}, {}>;
14
+ export declare const PasswordToggleButton: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
15
+ export declare const FieldError: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
16
+ export declare const Button: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
17
+ interface ErrorProps {
18
+ isVisible?: boolean;
19
+ }
20
+ export declare const Error: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & ErrorProps, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
21
+ export declare const ForgotPasswordButton: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
22
+ export declare const AppDetailsText: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
23
+ export declare const SuccessMessage: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {}>;
24
+ export {};
@@ -0,0 +1,2 @@
1
+ export type { LoginProps } from './Login';
2
+ export { Login } from './Login';
@@ -1,10 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  export type LoginModalProps = {
3
3
  open: boolean;
4
- /**
5
- * Called after successful login.
6
- * Receives the login and token extracted from the API response.
7
- */
8
4
  onSubmit: (login: string, token: string) => Promise<void> | void;
9
5
  onClose?: () => void;
10
6
  };
@@ -0,0 +1,30 @@
1
+ import { default as React } from 'react';
2
+ import { SidebarMenuItemProps } from './SidebarMenuItem';
3
+ export interface SidebarProps {
4
+ items: SidebarMenuItemProps[];
5
+ onLogout?: () => void;
6
+ /**
7
+ * Initial open state of the sidebar
8
+ * @default true
9
+ */
10
+ defaultOpen?: boolean;
11
+ /**
12
+ * Custom width when sidebar is open
13
+ */
14
+ customOpenWidth?: number;
15
+ /**
16
+ * Custom width when sidebar is closed
17
+ * @default 100
18
+ */
19
+ customCloseWidth?: number;
20
+ /**
21
+ * Function to determine if a menu item is active based on its route.
22
+ * If not provided, defaults to checking if the route is included in window.location.pathname.
23
+ */
24
+ isActiveFn?: (route?: string) => boolean;
25
+ /**
26
+ * Custom component to render in the bottom area (e.g., notifications)
27
+ */
28
+ bottomContent?: React.ReactNode;
29
+ }
30
+ export declare const Sidebar: ({ items, onLogout, defaultOpen, customOpenWidth, customCloseWidth, isActiveFn, bottomContent, }: SidebarProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,17 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Sidebar } from './Sidebar';
3
+ declare const meta: Meta<typeof Sidebar>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Docs: Story;
7
+ export declare const Collapsed: Story;
8
+ export declare const WithoutLogout: Story;
9
+ export declare const CustomWidth: Story;
10
+ export declare const WithNestedItems: Story;
11
+ export declare const WithActiveState: Story;
12
+ export declare const WithBottomContent: Story;
13
+ export declare const CustomTexts: Story;
14
+ export declare const WideSidebar: Story;
15
+ export declare const WithSelectedItem: Story;
16
+ export declare const WithSelectedViaFunction: Story;
17
+ export declare const WithIconsAndNested: Story;
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ export interface SidebarCollapseButtonProps {
3
+ isMinified: boolean;
4
+ onClick: () => void;
5
+ collapseText?: string;
6
+ }
7
+ export declare const SidebarCollapseButton: FC<SidebarCollapseButtonProps>;
@@ -0,0 +1,2 @@
1
+ export type { SidebarCollapseButtonProps } from './SidebarCollapseButton';
2
+ export { SidebarCollapseButton } from './SidebarCollapseButton';
@@ -0,0 +1,5 @@
1
+ import { FC } from 'react';
2
+ export interface SidebarLogoProps {
3
+ minified: boolean;
4
+ }
5
+ export declare const SidebarLogo: FC<SidebarLogoProps>;
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ export interface SidebarLogoutButtonProps {
3
+ isMinified?: boolean;
4
+ onLogout?: () => void;
5
+ }
6
+ export declare const SidebarLogoutButton: FC<SidebarLogoutButtonProps>;
@@ -0,0 +1,2 @@
1
+ export type { SidebarLogoutButtonProps } from './SidebarLogoutButton';
2
+ export { SidebarLogoutButton } from './SidebarLogoutButton';
@@ -0,0 +1,11 @@
1
+ export interface SidebarMenuItemProps {
2
+ isOpen?: boolean;
3
+ route?: string;
4
+ Icon?: React.ReactNode;
5
+ label: string;
6
+ onClick?: () => void;
7
+ subItems?: SidebarMenuItemProps[];
8
+ isActive?: boolean;
9
+ isActiveFn?: (route?: string) => boolean;
10
+ }
11
+ export declare const SidebarMenuItem: ({ Icon, label, onClick, isOpen, subItems, isActive: isActiveProp, route, isActiveFn, }: SidebarMenuItemProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export declare const StyledSidebarMenuItem: import('@emotion/styled').StyledComponent<import('@mui/material').MenuItemOwnProps & Omit<import('@mui/material').ButtonBaseOwnProps, "classes"> & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
2
+ ref?: ((instance: HTMLLIElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLLIElement> | null | undefined;
3
+ }, "style" | "autoFocus" | "className" | "tabIndex" | "children" | "sx" | "classes" | "action" | "centerRipple" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "selected" | "dense" | "divider" | "disableGutters"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
4
+ isActive?: boolean;
5
+ }, {}, {}>;
@@ -0,0 +1,2 @@
1
+ export type { SidebarMenuItemProps } from './SidebarMenuItem';
2
+ export { SidebarMenuItem } from './SidebarMenuItem';
@@ -0,0 +1,2 @@
1
+ export type { SidebarProps } from './Sidebar';
2
+ export { Sidebar } from './Sidebar';
@@ -1,4 +1,4 @@
1
- import { T as o } from "../../Tree-6R0L5vqg.js";
1
+ import { T as o } from "../../Tree-Cg45ggbj.js";
2
2
  export {
3
3
  o as Tree
4
4
  };
package/dist/licenses.txt CHANGED
@@ -173,76 +173,6 @@ SOFTWARE.
173
173
 
174
174
  ---
175
175
 
176
- Name: @tanstack/query-core
177
- Version: 5.75.0
178
- License: MIT
179
- Private: false
180
- Description: The framework agnostic core that powers TanStack Query
181
- Repository: https://github.com/TanStack/query.git
182
- Homepage: https://tanstack.com/query
183
- Author: tannerlinsley
184
- License Copyright:
185
- ===
186
-
187
- MIT License
188
-
189
- Copyright (c) 2021-present Tanner Linsley
190
-
191
- Permission is hereby granted, free of charge, to any person obtaining a copy
192
- of this software and associated documentation files (the "Software"), to deal
193
- in the Software without restriction, including without limitation the rights
194
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
195
- copies of the Software, and to permit persons to whom the Software is
196
- furnished to do so, subject to the following conditions:
197
-
198
- The above copyright notice and this permission notice shall be included in all
199
- copies or substantial portions of the Software.
200
-
201
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
202
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
203
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
204
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
205
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
206
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
207
- SOFTWARE.
208
-
209
- ---
210
-
211
- Name: @tanstack/react-query
212
- Version: 5.75.2
213
- License: MIT
214
- Private: false
215
- Description: Hooks for managing, caching and syncing asynchronous and remote data in React
216
- Repository: https://github.com/TanStack/query.git
217
- Homepage: https://tanstack.com/query
218
- Author: tannerlinsley
219
- License Copyright:
220
- ===
221
-
222
- MIT License
223
-
224
- Copyright (c) 2021-present Tanner Linsley
225
-
226
- Permission is hereby granted, free of charge, to any person obtaining a copy
227
- of this software and associated documentation files (the "Software"), to deal
228
- in the Software without restriction, including without limitation the rights
229
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
230
- copies of the Software, and to permit persons to whom the Software is
231
- furnished to do so, subject to the following conditions:
232
-
233
- The above copyright notice and this permission notice shall be included in all
234
- copies or substantial portions of the Software.
235
-
236
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
237
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
238
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
239
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
240
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
241
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
242
- SOFTWARE.
243
-
244
- ---
245
-
246
176
  Name: js-base64
247
177
  Version: 3.7.7
248
178
  License: BSD-3-Clause
@@ -1171,39 +1101,6 @@ terms above.
1171
1101
 
1172
1102
  ---
1173
1103
 
1174
- Name: react-error-boundary
1175
- Version: 6.0.0
1176
- License: MIT
1177
- Private: false
1178
- Description: Simple reusable React error boundary component
1179
- Repository: https://github.com/bvaughn/react-error-boundary
1180
- Author: Brian Vaughn <brian.david.vaughn@gmail.com>
1181
- License Copyright:
1182
- ===
1183
-
1184
- The MIT License (MIT)
1185
- Copyright (c) 2020 Brian Vaughn
1186
-
1187
- Permission is hereby granted, free of charge, to any person obtaining a copy
1188
- of this software and associated documentation files (the "Software"), to deal
1189
- in the Software without restriction, including without limitation the rights
1190
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1191
- copies of the Software, and to permit persons to whom the Software is
1192
- furnished to do so, subject to the following conditions:
1193
-
1194
- The above copyright notice and this permission notice shall be included in all
1195
- copies or substantial portions of the Software.
1196
-
1197
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1198
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1199
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1200
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1201
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1202
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1203
- SOFTWARE.
1204
-
1205
- ---
1206
-
1207
1104
  Name: react-intersection-observer
1208
1105
  Version: 9.16.0
1209
1106
  License: MIT
@@ -2391,6 +2288,39 @@ SOFTWARE.
2391
2288
 
2392
2289
  ---
2393
2290
 
2291
+ Name: react-error-boundary
2292
+ Version: 6.0.0
2293
+ License: MIT
2294
+ Private: false
2295
+ Description: Simple reusable React error boundary component
2296
+ Repository: https://github.com/bvaughn/react-error-boundary
2297
+ Author: Brian Vaughn <brian.david.vaughn@gmail.com>
2298
+ License Copyright:
2299
+ ===
2300
+
2301
+ The MIT License (MIT)
2302
+ Copyright (c) 2020 Brian Vaughn
2303
+
2304
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2305
+ of this software and associated documentation files (the "Software"), to deal
2306
+ in the Software without restriction, including without limitation the rights
2307
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2308
+ copies of the Software, and to permit persons to whom the Software is
2309
+ furnished to do so, subject to the following conditions:
2310
+
2311
+ The above copyright notice and this permission notice shall be included in all
2312
+ copies or substantial portions of the Software.
2313
+
2314
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2315
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2316
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2317
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2318
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2319
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2320
+ SOFTWARE.
2321
+
2322
+ ---
2323
+
2394
2324
  Name: @mui/x-data-grid
2395
2325
  Version: 7.29.2
2396
2326
  License: MIT
@@ -2426,6 +2356,76 @@ SOFTWARE.
2426
2356
 
2427
2357
  ---
2428
2358
 
2359
+ Name: @tanstack/query-core
2360
+ Version: 5.75.0
2361
+ License: MIT
2362
+ Private: false
2363
+ Description: The framework agnostic core that powers TanStack Query
2364
+ Repository: https://github.com/TanStack/query.git
2365
+ Homepage: https://tanstack.com/query
2366
+ Author: tannerlinsley
2367
+ License Copyright:
2368
+ ===
2369
+
2370
+ MIT License
2371
+
2372
+ Copyright (c) 2021-present Tanner Linsley
2373
+
2374
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2375
+ of this software and associated documentation files (the "Software"), to deal
2376
+ in the Software without restriction, including without limitation the rights
2377
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2378
+ copies of the Software, and to permit persons to whom the Software is
2379
+ furnished to do so, subject to the following conditions:
2380
+
2381
+ The above copyright notice and this permission notice shall be included in all
2382
+ copies or substantial portions of the Software.
2383
+
2384
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2385
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2386
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2387
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2388
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2389
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2390
+ SOFTWARE.
2391
+
2392
+ ---
2393
+
2394
+ Name: @tanstack/react-query
2395
+ Version: 5.75.2
2396
+ License: MIT
2397
+ Private: false
2398
+ Description: Hooks for managing, caching and syncing asynchronous and remote data in React
2399
+ Repository: https://github.com/TanStack/query.git
2400
+ Homepage: https://tanstack.com/query
2401
+ Author: tannerlinsley
2402
+ License Copyright:
2403
+ ===
2404
+
2405
+ MIT License
2406
+
2407
+ Copyright (c) 2021-present Tanner Linsley
2408
+
2409
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2410
+ of this software and associated documentation files (the "Software"), to deal
2411
+ in the Software without restriction, including without limitation the rights
2412
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2413
+ copies of the Software, and to permit persons to whom the Software is
2414
+ furnished to do so, subject to the following conditions:
2415
+
2416
+ The above copyright notice and this permission notice shall be included in all
2417
+ copies or substantial portions of the Software.
2418
+
2419
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2420
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2421
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2422
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2423
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2424
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2425
+ SOFTWARE.
2426
+
2427
+ ---
2428
+
2429
2429
  Name: @hookform/resolvers
2430
2430
  Version: 4.1.3
2431
2431
  License: MIT
package/dist/main.d.ts CHANGED
@@ -12,10 +12,13 @@ export { FixedActionsBottomPanel } from './components/FixedActionsBottomPanel/Fi
12
12
  export * from './components/FormComponents';
13
13
  export { Grid, GridInitialState } from './components/Grid';
14
14
  export { LoadingBackdrop } from './components/LoadingBackdrop/LoadingBackdrop';
15
+ export { Login } from './components/Login/Login';
15
16
  export { LoginModal } from './components/LoginModal/LoginModal';
16
17
  export { MuiLikeWrapper } from './components/MuiLikeWrapper';
17
18
  export { PaginatedPopover } from './components/PaginatedPopover/PaginatedPopover';
18
19
  export { ResizableWrapper } from './components/ResizableWrapper/ResizableWrapper';
20
+ export type { SidebarProps } from './components/Sidebar';
21
+ export { Sidebar } from './components/Sidebar';
19
22
  export { SimpleAutocomplete } from './components/SimpleAutocomplete';
20
23
  export { SimpleInput } from './components/SimpleInput/SimpleInput';
21
24
  export { SimpleSelect } from './components/SimpleSelect/SimpleSelect';