@smart-factor/gem-ui-components 0.0.113 → 0.0.115
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/dist/{Drawer-CR1frcWF.js → Drawer-DbJg-t8M.js} +50 -50
- package/dist/SignEditor.js +10186 -10573
- package/dist/{Stack-CP81SpOh.js → Stack-Bsa5WF4E.js} +50 -49
- package/dist/{Tree-6R0L5vqg.js → Tree-BScJ4KG_.js} +782 -1103
- package/dist/components/Drawer/index.js +1 -1
- package/dist/components/Login/AppVersion.d.ts +2 -0
- package/dist/components/Login/Login.d.ts +7 -0
- package/dist/components/Login/Login.stories.d.ts +7 -0
- package/dist/components/Login/Login.styles.d.ts +24 -0
- package/dist/components/Login/index.d.ts +2 -0
- package/dist/components/LoginModal/LoginModal.d.ts +0 -4
- package/dist/components/Sidebar/Sidebar.d.ts +31 -0
- package/dist/components/Sidebar/Sidebar.stories.d.ts +17 -0
- package/dist/components/Sidebar/SidebarCollapseButton/SidebarCollapseButton.d.ts +7 -0
- package/dist/components/Sidebar/SidebarCollapseButton/index.d.ts +2 -0
- package/dist/components/Sidebar/SidebarLogo.d.ts +5 -0
- package/dist/components/Sidebar/SidebarLogoutButton/SidebarLogoutButton.d.ts +6 -0
- package/dist/components/Sidebar/SidebarLogoutButton/index.d.ts +2 -0
- package/dist/components/Sidebar/SidebarMenuItem/SidebarMenuItem.d.ts +11 -0
- package/dist/components/Sidebar/SidebarMenuItem/SidebarMenuItem.styles.d.ts +5 -0
- package/dist/components/Sidebar/SidebarMenuItem/index.d.ts +2 -0
- package/dist/components/Sidebar/index.d.ts +2 -0
- package/dist/components/Tree/index.js +1 -1
- package/dist/licenses.txt +103 -103
- package/dist/main.d.ts +4 -1
- package/dist/main.js +1491 -1511
- package/dist/services/auth/clearAuthStorage.d.ts +4 -0
- package/dist/services/mutations/auth/useLogout.d.ts +4 -0
- package/dist/services/mutations/auth/useResetPassword.d.ts +5 -0
- package/dist/services/queries/auth/useGetAppDetails.d.ts +19 -0
- package/dist/services/queryKeys.d.ts +1 -0
- package/dist/{theme-CyElD8XL.js → theme-Dfrivrji.js} +27884 -26717
- package/dist/warning-BcYeNKLQ.js +416 -0
- package/package.json +1 -1
- package/dist/warning-CJpi1iFg.js +0 -95
|
@@ -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,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 {};
|
|
@@ -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,31 @@
|
|
|
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 SidebarBase: ({ items, onLogout, defaultOpen, customOpenWidth, customCloseWidth, isActiveFn, bottomContent, }: SidebarProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export declare const Sidebar: React.ComponentType<SidebarProps>;
|
|
@@ -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,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
|
+
}, {}, {}>;
|
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';
|
|
@@ -28,7 +31,7 @@ export { Tree } from './components/Tree/Tree';
|
|
|
28
31
|
export * from './hooks';
|
|
29
32
|
export * from './helpers';
|
|
30
33
|
export { theme } from './theme/theme';
|
|
31
|
-
export { Accordion, AccordionDetails, styled, type Theme, ThemeProvider, Typography, useTheme, } from '@mui/material';
|
|
34
|
+
export { Accordion, AccordionDetails, CssBaseline, styled, type Theme, ThemeProvider, Typography, useTheme, } from '@mui/material';
|
|
32
35
|
export { default as GemUIComponentsProvider } from './providers/GemUIComponentsProvider';
|
|
33
36
|
export { default as GemUILocalizationProvider } from './providers/GemUILocalizationProvider';
|
|
34
37
|
export { GemUIToaster } from './providers/GemUIToaster';
|