identity-admin-ui 1.12.18 → 1.12.20
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/lib/cjs/index.css +18 -18
- package/lib/cjs/index.js +13 -13
- package/lib/cjs/types/components/ImportAction/ImportAction.d.ts +9 -0
- package/lib/cjs/types/components/ImportAction/ImportNewFileDialog.d.ts +17 -0
- package/lib/cjs/types/components/index.d.ts +1 -0
- package/lib/cjs/types/context/AppConfigurationsContext.d.ts +7 -1
- package/lib/cjs/types/context/Resource.d.ts +1 -0
- package/lib/cjs/types/hooks/useAppConfigurations.d.ts +6 -0
- package/lib/cjs/types/layout/dashboard/config-navigation.d.ts +4 -4
- package/lib/cjs/types/routes/AdminRouter.d.ts +10 -10
- package/lib/cjs/types/routes/paths.d.ts +5 -5
- package/lib/cjs/types/utils/i18n.d.ts +2 -0
- package/lib/cjs/types/utils/index.d.ts +1 -0
- package/lib/esm/index.css +18 -18
- package/lib/esm/index.js +13 -13
- package/lib/esm/types/components/ImportAction/ImportAction.d.ts +9 -0
- package/lib/esm/types/components/ImportAction/ImportNewFileDialog.d.ts +17 -0
- package/lib/esm/types/components/index.d.ts +1 -0
- package/lib/esm/types/context/AppConfigurationsContext.d.ts +7 -1
- package/lib/esm/types/context/Resource.d.ts +1 -0
- package/lib/esm/types/hooks/useAppConfigurations.d.ts +6 -0
- package/lib/esm/types/layout/dashboard/config-navigation.d.ts +4 -4
- package/lib/esm/types/routes/AdminRouter.d.ts +10 -10
- package/lib/esm/types/routes/paths.d.ts +5 -5
- package/lib/esm/types/utils/i18n.d.ts +2 -0
- package/lib/esm/types/utils/index.d.ts +1 -0
- package/lib/index.d.ts +33 -14
- package/package.json +95 -92
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ListParams } from '../dataGrid/GridTypes';
|
|
3
|
+
interface IImportActionProps {
|
|
4
|
+
setParams: (value: React.SetStateAction<ListParams>) => void;
|
|
5
|
+
path: string;
|
|
6
|
+
buttonValue?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare function ImportAction({ setParams, path, buttonValue }: IImportActionProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { DialogProps } from '@mui/material';
|
|
3
|
+
interface Props extends DialogProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
uploadMessage?: string;
|
|
6
|
+
removeMessage?: string;
|
|
7
|
+
path: string;
|
|
8
|
+
onCreate?: VoidFunction;
|
|
9
|
+
onUpdate?: VoidFunction;
|
|
10
|
+
folderName?: string;
|
|
11
|
+
onChangeFolderName?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
12
|
+
open: boolean;
|
|
13
|
+
onClose: VoidFunction;
|
|
14
|
+
setParams?: (value: React.SetStateAction<any>) => void;
|
|
15
|
+
}
|
|
16
|
+
export declare function ImportNewFileDialog({ title, uploadMessage, removeMessage, open, path, setParams, onClose, onCreate, onUpdate, folderName, onChangeFolderName, ...other }: Props): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export {};
|
|
@@ -2,4 +2,5 @@ export { default as IdentityGrid } from './dataGrid/DataGridd';
|
|
|
2
2
|
export { default as NotificationPopover } from './Notifications/NotificationsPopover';
|
|
3
3
|
export { default as MotionLazyContainer } from './MotionLazyContainer';
|
|
4
4
|
export { default as SvgIconStyle } from './SvgIconStyle';
|
|
5
|
+
export { default as ThemeSettings } from './settings/index';
|
|
5
6
|
export * from './Dialog/ActionDialog';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { SizeType } from '../helpers/Types';
|
|
3
|
-
import { PaletteOptions } from '@mui/material';
|
|
3
|
+
import { BoxProps, PaletteOptions, SxProps } from '@mui/material';
|
|
4
4
|
type AppConfigurations = {
|
|
5
5
|
children?: ReactNode;
|
|
6
6
|
textFieldSize?: SizeType;
|
|
@@ -15,6 +15,12 @@ type AppConfigurations = {
|
|
|
15
15
|
loginLogo?: string;
|
|
16
16
|
loginLoginMessage?: string;
|
|
17
17
|
palette?: PaletteOptions;
|
|
18
|
+
loadingLogoSxProps?: BoxProps;
|
|
19
|
+
loginWelcomeImageSxProps?: SxProps;
|
|
20
|
+
navBarLogoSxProps?: BoxProps;
|
|
21
|
+
miniNavBarLogoSxProps?: SxProps;
|
|
22
|
+
loginLogoSxProps?: SxProps;
|
|
23
|
+
loginMessageSxProps?: SxProps;
|
|
18
24
|
};
|
|
19
25
|
declare const AppConfigurationsContext: import("react").Context<AppConfigurations>;
|
|
20
26
|
declare const AppConfigurationsContextProvider: (props: AppConfigurations) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,10 @@ export declare const useAppConfigurations: () => {
|
|
|
13
13
|
loginLogo?: string | undefined;
|
|
14
14
|
loginLoginMessage?: string | undefined;
|
|
15
15
|
palette?: import("@mui/material").PaletteOptions | undefined;
|
|
16
|
+
loadingLogoSxProps?: import("@mui/material").BoxProps | undefined;
|
|
17
|
+
loginWelcomeImageSxProps?: import("@mui/system").SxProps | undefined;
|
|
18
|
+
navBarLogoSxProps?: import("@mui/material").BoxProps | undefined;
|
|
19
|
+
miniNavBarLogoSxProps?: import("@mui/system").SxProps | undefined;
|
|
20
|
+
loginLogoSxProps?: import("@mui/system").SxProps | undefined;
|
|
21
|
+
loginMessageSxProps?: import("@mui/system").SxProps | undefined;
|
|
16
22
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function useNavData(): {
|
|
2
|
-
subheader: string;
|
|
3
|
-
items: any;
|
|
4
|
-
}[];
|
|
1
|
+
export declare function useNavData(): {
|
|
2
|
+
subheader: string;
|
|
3
|
+
items: any;
|
|
4
|
+
}[];
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { SizeType } from '../helpers/Types';
|
|
2
|
-
export declare var SIZE: SizeType;
|
|
3
|
-
export default function AdminRouter(): {
|
|
4
|
-
path: any;
|
|
5
|
-
children: {
|
|
6
|
-
path: string;
|
|
7
|
-
element: import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
children: any[];
|
|
9
|
-
}[];
|
|
10
|
-
};
|
|
1
|
+
import { SizeType } from '../helpers/Types';
|
|
2
|
+
export declare var SIZE: SizeType;
|
|
3
|
+
export default function AdminRouter(): {
|
|
4
|
+
path: any;
|
|
5
|
+
children: {
|
|
6
|
+
path: string;
|
|
7
|
+
element: import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
children: any[];
|
|
9
|
+
}[];
|
|
10
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare function path(root: string, sublink: string): string;
|
|
2
|
-
export declare const ADMIN_ROOT = "/admin";
|
|
3
|
-
export declare var ADMIN_PATH: {
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
};
|
|
1
|
+
export declare function path(root: string, sublink: string): string;
|
|
2
|
+
export declare const ADMIN_ROOT = "/admin";
|
|
3
|
+
export declare var ADMIN_PATH: {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
};
|
package/lib/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as react from 'react';
|
|
|
4
4
|
import react__default, { ReactElement, ReactNode, Reducer, Dispatch, SetStateAction } from 'react';
|
|
5
5
|
import { GridCellParams, GridRenderCellParams, GridDensity, GridSortDirection, GridRowSelectionModel } from '@mui/x-data-grid';
|
|
6
6
|
import * as _mui_material from '@mui/material';
|
|
7
|
-
import { SxProps, PaletteOptions, AlertColor as AlertColor$1,
|
|
7
|
+
import { SxProps, PaletteOptions, BoxProps, AlertColor as AlertColor$1, FormControlLabelProps, TextFieldProps, RadioGroupProps } from '@mui/material';
|
|
8
8
|
import * as axios from 'axios';
|
|
9
9
|
import { AxiosRequestConfig } from 'axios';
|
|
10
10
|
import * as _mui_system from '@mui/system';
|
|
@@ -16,6 +16,7 @@ import { UseFormReturn, Control, FieldValues } from 'react-hook-form';
|
|
|
16
16
|
import { ReactQuillProps } from 'react-quill';
|
|
17
17
|
import { DatePickerProps } from '@mui/lab';
|
|
18
18
|
import { TextFieldProps as TextFieldProps$1 } from '@mui/material/TextField';
|
|
19
|
+
export { default as i18ninit } from 'i18next';
|
|
19
20
|
|
|
20
21
|
type TLink = {
|
|
21
22
|
href?: string;
|
|
@@ -246,6 +247,7 @@ interface IAction {
|
|
|
246
247
|
edit: IActionMin;
|
|
247
248
|
new: IActionMin;
|
|
248
249
|
show: IActionMin;
|
|
250
|
+
import?: IActionMin;
|
|
249
251
|
extras?: IExtras;
|
|
250
252
|
}
|
|
251
253
|
interface IExtras {
|
|
@@ -363,6 +365,12 @@ type AppConfigurations = {
|
|
|
363
365
|
loginLogo?: string;
|
|
364
366
|
loginLoginMessage?: string;
|
|
365
367
|
palette?: PaletteOptions;
|
|
368
|
+
loadingLogoSxProps?: BoxProps;
|
|
369
|
+
loginWelcomeImageSxProps?: SxProps;
|
|
370
|
+
navBarLogoSxProps?: BoxProps;
|
|
371
|
+
miniNavBarLogoSxProps?: SxProps;
|
|
372
|
+
loginLogoSxProps?: SxProps;
|
|
373
|
+
loginMessageSxProps?: SxProps;
|
|
366
374
|
};
|
|
367
375
|
declare const AppConfigurationsContext: react.Context<AppConfigurations>;
|
|
368
376
|
declare const AppConfigurationsContextProvider: (props: AppConfigurations) => react_jsx_runtime.JSX.Element;
|
|
@@ -477,11 +485,11 @@ type Action = {
|
|
|
477
485
|
};
|
|
478
486
|
declare const AuthReducer: Reducer<State, Action>;
|
|
479
487
|
|
|
480
|
-
interface Props$
|
|
488
|
+
interface Props$h {
|
|
481
489
|
storageKey: string;
|
|
482
490
|
children: ReactNode;
|
|
483
491
|
}
|
|
484
|
-
declare const AuthProvider: react__default.FC<Props$
|
|
492
|
+
declare const AuthProvider: react__default.FC<Props$h>;
|
|
485
493
|
|
|
486
494
|
type CollapseDrawerContextProps = {
|
|
487
495
|
isCollapse?: boolean;
|
|
@@ -735,13 +743,13 @@ declare function Permissions({ isEdit }: {
|
|
|
735
743
|
|
|
736
744
|
declare function ShowMailLog(props: any): react_jsx_runtime.JSX.Element;
|
|
737
745
|
|
|
738
|
-
type Props$
|
|
746
|
+
type Props$g = {
|
|
739
747
|
isDashboard?: boolean;
|
|
740
748
|
sx?: SxProps;
|
|
741
749
|
loadingLogo?: string;
|
|
742
750
|
logoSxProps?: SxProps;
|
|
743
751
|
};
|
|
744
|
-
declare function LoadingScreen({ isDashboard, loadingLogo, logoSxProps, ...other }: Props$
|
|
752
|
+
declare function LoadingScreen({ isDashboard, loadingLogo, logoSxProps, ...other }: Props$g): react_jsx_runtime.JSX.Element;
|
|
745
753
|
|
|
746
754
|
declare function Page404(): react_jsx_runtime.JSX.Element;
|
|
747
755
|
|
|
@@ -784,6 +792,12 @@ declare const useAppConfigurations: () => {
|
|
|
784
792
|
loginLogo?: string | undefined;
|
|
785
793
|
loginLoginMessage?: string | undefined;
|
|
786
794
|
palette?: _mui_material.PaletteOptions | undefined;
|
|
795
|
+
loadingLogoSxProps?: _mui_material.BoxProps | undefined;
|
|
796
|
+
loginWelcomeImageSxProps?: _mui_system.SxProps | undefined;
|
|
797
|
+
navBarLogoSxProps?: _mui_material.BoxProps | undefined;
|
|
798
|
+
miniNavBarLogoSxProps?: _mui_system.SxProps | undefined;
|
|
799
|
+
loginLogoSxProps?: _mui_system.SxProps | undefined;
|
|
800
|
+
loginMessageSxProps?: _mui_system.SxProps | undefined;
|
|
787
801
|
};
|
|
788
802
|
|
|
789
803
|
declare const useResources: () => {
|
|
@@ -837,31 +851,36 @@ declare module 'axios' {
|
|
|
837
851
|
}
|
|
838
852
|
}
|
|
839
853
|
|
|
840
|
-
type Props$
|
|
854
|
+
type Props$f = {
|
|
841
855
|
children: ReactNode;
|
|
842
856
|
};
|
|
843
|
-
declare function ThemeProvider({ children }: Props$
|
|
857
|
+
declare function ThemeProvider({ children }: Props$f): react_jsx_runtime.JSX.Element;
|
|
844
858
|
|
|
845
|
-
type Props$
|
|
859
|
+
type Props$e = {
|
|
846
860
|
pathsObject: {
|
|
847
861
|
[key: string]: ResourcePaths;
|
|
848
862
|
};
|
|
849
863
|
HomePage: () => JSX.Element;
|
|
850
864
|
customs: ReactElement[];
|
|
851
865
|
};
|
|
852
|
-
declare function AdminRouter({ pathsObject, HomePage, customs }: Props$
|
|
866
|
+
declare function AdminRouter({ pathsObject, HomePage, customs }: Props$e): react_jsx_runtime.JSX.Element;
|
|
853
867
|
|
|
854
868
|
declare function NotificationsPopover(): react_jsx_runtime.JSX.Element;
|
|
855
869
|
|
|
856
|
-
type Props$
|
|
870
|
+
type Props$d = {
|
|
857
871
|
children: ReactNode;
|
|
858
872
|
};
|
|
859
|
-
declare function MotionLazyContainer({ children }: Props$
|
|
873
|
+
declare function MotionLazyContainer({ children }: Props$d): react_jsx_runtime.JSX.Element;
|
|
860
874
|
|
|
861
|
-
interface Props$
|
|
875
|
+
interface Props$c extends BoxProps {
|
|
862
876
|
src: string;
|
|
863
877
|
}
|
|
864
|
-
declare function SvgIconStyle({ src, sx }: Props$
|
|
878
|
+
declare function SvgIconStyle({ src, sx }: Props$c): react_jsx_runtime.JSX.Element;
|
|
879
|
+
|
|
880
|
+
type Props$b = {
|
|
881
|
+
children: React.ReactNode;
|
|
882
|
+
};
|
|
883
|
+
declare function ThemeSettings({ children }: Props$b): react_jsx_runtime.JSX.Element;
|
|
865
884
|
|
|
866
885
|
interface ActionDialogProps {
|
|
867
886
|
open: boolean;
|
|
@@ -1442,4 +1461,4 @@ declare const palette: {
|
|
|
1442
1461
|
};
|
|
1443
1462
|
};
|
|
1444
1463
|
|
|
1445
|
-
export { ActionDialog, ActionDialogProps, ActionNames, ActionTypes$1 as ActionTypes, ApiContext, ApiContextConfig, ApiContextProps, ApiContextProvider, AppConfigurationsContext, AppConfigurationsContextProvider, AuthProvider as AuthContextProvider, AuthReducer, CollapseDrawerContext, CollapseDrawerContextProps, CollapseDrawerProvider, CredentialKeys, CredentialsContext, CredentialsContextProvider, DashboardLayout, DialogContext, DialogContextProvider, FieldTypes, FileTypes, FormProvider, HandlerStrategy, IAction, IActionMin, IActionsProps, IDialogProps, IExtarAction, IExtras, IFilter, IListProps, IListRecordsProps, IMainProperty, IOptionalResource, IParent, IProperty, IResource as IResouce, ISchemaObject, ISnackMessageProps, IState, IdentityModelConfigurationPage as IdenityModelConfiguration, Page404 as Identity404, IdentityClient, DumpServiceAction as IdentityDumpServiceAction, CreateEdit as IdentityEdit, DataGridd as IdentityGrid, ListRecords as IdentityList, LoadingScreen as IdentityLoadingScreen, IdentityPage, IdentityPageProps, palette as IdentityPalette, Permissions as IdentityPermissionPage, AdminRouter as IdentityRouter, ShowRecord as IdentityShow, ShowMailLog as IdentityShowMailLog, ImageOptimizingCategories, MotionLazyContainer, NextPreviousButtons, NotificationContext, NotificationsPopover as NotificationPopover, NotificationsContextConfig, NotificationsContextProvider, PageVariant, PathsContext, PathsContextConfig, PathsContextProvider, PermissionDefaultKeys, RHFCheckbox, RHFCreatableSelect, RHFDatePicker, RHFEditor, RHFGooglePlaces, RHFGroupedTextFields, RHFLazySelect, RHFMultiCheckbox, RHFRadioGroup, RHFSelect, RHFTagsField, RHFTextField, RHFUploadAvatar, RHFUploadFileButton, RHFUploadFileButton2, RHFUploadImage, RHFUploadMultiFile, RHFUploadSingleFile, RequestConfig, RequestState, ResourcePaths, ResourceResponse, ResourcesContext, ResourcesContextConfig, ResourcesContextProvider, Severity, IdentityShow as ShowRecord, SizeType, SnackAlertContext, SnackAlertProvider, State$1 as State, SvgIconStyle, ThemeProvider, UniqueFieldHelper, UploadRsult, checkPermission, fCurrency, fData, fNumber, fPercent, fShortenNumber, getFilterValues, getUrlFilters, orderTypes, path, useApi, useAppConfigurations, useAuth, useCredentials, useDialogs, useNavData, useNotifications, usePaths, useResources, useSnackAlert };
|
|
1464
|
+
export { ActionDialog, ActionDialogProps, ActionNames, ActionTypes$1 as ActionTypes, ApiContext, ApiContextConfig, ApiContextProps, ApiContextProvider, AppConfigurationsContext, AppConfigurationsContextProvider, AuthProvider as AuthContextProvider, AuthReducer, CollapseDrawerContext, CollapseDrawerContextProps, CollapseDrawerProvider, CredentialKeys, CredentialsContext, CredentialsContextProvider, DashboardLayout, DialogContext, DialogContextProvider, FieldTypes, FileTypes, FormProvider, HandlerStrategy, IAction, IActionMin, IActionsProps, IDialogProps, IExtarAction, IExtras, IFilter, IListProps, IListRecordsProps, IMainProperty, IOptionalResource, IParent, IProperty, IResource as IResouce, ISchemaObject, ISnackMessageProps, IState, IdentityModelConfigurationPage as IdenityModelConfiguration, Page404 as Identity404, IdentityClient, DumpServiceAction as IdentityDumpServiceAction, CreateEdit as IdentityEdit, DataGridd as IdentityGrid, ListRecords as IdentityList, LoadingScreen as IdentityLoadingScreen, IdentityPage, IdentityPageProps, palette as IdentityPalette, Permissions as IdentityPermissionPage, AdminRouter as IdentityRouter, ShowRecord as IdentityShow, ShowMailLog as IdentityShowMailLog, ImageOptimizingCategories, MotionLazyContainer, NextPreviousButtons, NotificationContext, NotificationsPopover as NotificationPopover, NotificationsContextConfig, NotificationsContextProvider, PageVariant, PathsContext, PathsContextConfig, PathsContextProvider, PermissionDefaultKeys, RHFCheckbox, RHFCreatableSelect, RHFDatePicker, RHFEditor, RHFGooglePlaces, RHFGroupedTextFields, RHFLazySelect, RHFMultiCheckbox, RHFRadioGroup, RHFSelect, RHFTagsField, RHFTextField, RHFUploadAvatar, RHFUploadFileButton, RHFUploadFileButton2, RHFUploadImage, RHFUploadMultiFile, RHFUploadSingleFile, RequestConfig, RequestState, ResourcePaths, ResourceResponse, ResourcesContext, ResourcesContextConfig, ResourcesContextProvider, Severity, IdentityShow as ShowRecord, SizeType, SnackAlertContext, SnackAlertProvider, State$1 as State, SvgIconStyle, ThemeProvider, ThemeSettings, UniqueFieldHelper, UploadRsult, checkPermission, fCurrency, fData, fNumber, fPercent, fShortenNumber, getFilterValues, getUrlFilters, orderTypes, path, useApi, useAppConfigurations, useAuth, useCredentials, useDialogs, useNavData, useNotifications, usePaths, useResources, useSnackAlert };
|
package/package.json
CHANGED
|
@@ -1,92 +1,95 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "identity-admin-ui",
|
|
3
|
-
"version": "1.12.
|
|
4
|
-
"description": "Identity solutions UI package using for identity-admin dashboard",
|
|
5
|
-
"main": "lib/cjs/index.js",
|
|
6
|
-
"module": "lib/esm/index.js",
|
|
7
|
-
"files": [
|
|
8
|
-
"lib/**/*"
|
|
9
|
-
],
|
|
10
|
-
"types": "lib/index.d.ts",
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "rollup -c --bundleConfigAsCjs",
|
|
13
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
|
-
},
|
|
15
|
-
"author": "",
|
|
16
|
-
"license": "ISC",
|
|
17
|
-
"devDependencies": {
|
|
18
|
-
"@emotion/cache": "^11.11.0",
|
|
19
|
-
"@emotion/react": "^11.11.1",
|
|
20
|
-
"@emotion/styled": "^11.11.0",
|
|
21
|
-
"@hookform/resolvers": "^3.2.0",
|
|
22
|
-
"@iconify/react": "^4.1.0",
|
|
23
|
-
"@mui/icons-material": "^5.14.3",
|
|
24
|
-
"@mui/lab": "^5.0.0-alpha.139",
|
|
25
|
-
"@mui/material": "^5.14.5",
|
|
26
|
-
"@mui/x-data-grid": "^6.11.1",
|
|
27
|
-
"@mui/x-date-pickers": "^6.11.1",
|
|
28
|
-
"@rollup/plugin-commonjs": "^25.0.3",
|
|
29
|
-
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
30
|
-
"@rollup/plugin-replace": "^6.0.2",
|
|
31
|
-
"@rollup/plugin-typescript": "^11.1.2",
|
|
32
|
-
"@types/autosuggest-highlight": "^3.2.0",
|
|
33
|
-
"@types/axios": "^0.14.0",
|
|
34
|
-
"@types/draftjs-to-html": "^0.8.2",
|
|
35
|
-
"@types/html-to-draftjs": "^1.4.1",
|
|
36
|
-
"@types/moment": "^2.13.0",
|
|
37
|
-
"@types/nprogress": "^0.2.0",
|
|
38
|
-
"@types/numeral": "^2.0.2",
|
|
39
|
-
"@types/react": "^18.2.20",
|
|
40
|
-
"@types/react-beautiful-dnd": "^13.1.4",
|
|
41
|
-
"@types/react-draft-wysiwyg": "^1.13.5",
|
|
42
|
-
"@types/react-helmet-async": "^1.0.3",
|
|
43
|
-
"@types/react-lazy-load-image-component": "^1.5.3",
|
|
44
|
-
"@types/react-lazyload": "^3.2.3",
|
|
45
|
-
"@types/stylis": "^4.2.0",
|
|
46
|
-
"autosuggest-highlight": "^3.3.4",
|
|
47
|
-
"aws-amplify": "^5.3.8",
|
|
48
|
-
"axios": "^1.4.0",
|
|
49
|
-
"compressorjs": "^1.2.1",
|
|
50
|
-
"date-fns": "^2.30.0",
|
|
51
|
-
"dayjs": "^1.11.9",
|
|
52
|
-
"framer-motion": "^10.15.0",
|
|
53
|
-
"highlight.js": "^11.8.0",
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"react
|
|
64
|
-
"react-
|
|
65
|
-
"react-
|
|
66
|
-
"react-
|
|
67
|
-
"react-
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"rollup
|
|
72
|
-
"rollup-plugin-
|
|
73
|
-
"rollup-plugin-
|
|
74
|
-
"rollup-plugin-
|
|
75
|
-
"rollup-plugin-
|
|
76
|
-
"rollup-plugin-
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "identity-admin-ui",
|
|
3
|
+
"version": "1.12.20",
|
|
4
|
+
"description": "Identity solutions UI package using for identity-admin dashboard",
|
|
5
|
+
"main": "lib/cjs/index.js",
|
|
6
|
+
"module": "lib/esm/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"lib/**/*"
|
|
9
|
+
],
|
|
10
|
+
"types": "lib/index.d.ts",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "rollup -c --bundleConfigAsCjs",
|
|
13
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
|
+
},
|
|
15
|
+
"author": "",
|
|
16
|
+
"license": "ISC",
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@emotion/cache": "^11.11.0",
|
|
19
|
+
"@emotion/react": "^11.11.1",
|
|
20
|
+
"@emotion/styled": "^11.11.0",
|
|
21
|
+
"@hookform/resolvers": "^3.2.0",
|
|
22
|
+
"@iconify/react": "^4.1.0",
|
|
23
|
+
"@mui/icons-material": "^5.14.3",
|
|
24
|
+
"@mui/lab": "^5.0.0-alpha.139",
|
|
25
|
+
"@mui/material": "^5.14.5",
|
|
26
|
+
"@mui/x-data-grid": "^6.11.1",
|
|
27
|
+
"@mui/x-date-pickers": "^6.11.1",
|
|
28
|
+
"@rollup/plugin-commonjs": "^25.0.3",
|
|
29
|
+
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
30
|
+
"@rollup/plugin-replace": "^6.0.2",
|
|
31
|
+
"@rollup/plugin-typescript": "^11.1.2",
|
|
32
|
+
"@types/autosuggest-highlight": "^3.2.0",
|
|
33
|
+
"@types/axios": "^0.14.0",
|
|
34
|
+
"@types/draftjs-to-html": "^0.8.2",
|
|
35
|
+
"@types/html-to-draftjs": "^1.4.1",
|
|
36
|
+
"@types/moment": "^2.13.0",
|
|
37
|
+
"@types/nprogress": "^0.2.0",
|
|
38
|
+
"@types/numeral": "^2.0.2",
|
|
39
|
+
"@types/react": "^18.2.20",
|
|
40
|
+
"@types/react-beautiful-dnd": "^13.1.4",
|
|
41
|
+
"@types/react-draft-wysiwyg": "^1.13.5",
|
|
42
|
+
"@types/react-helmet-async": "^1.0.3",
|
|
43
|
+
"@types/react-lazy-load-image-component": "^1.5.3",
|
|
44
|
+
"@types/react-lazyload": "^3.2.3",
|
|
45
|
+
"@types/stylis": "^4.2.0",
|
|
46
|
+
"autosuggest-highlight": "^3.3.4",
|
|
47
|
+
"aws-amplify": "^5.3.8",
|
|
48
|
+
"axios": "^1.4.0",
|
|
49
|
+
"compressorjs": "^1.2.1",
|
|
50
|
+
"date-fns": "^2.30.0",
|
|
51
|
+
"dayjs": "^1.11.9",
|
|
52
|
+
"framer-motion": "^10.15.0",
|
|
53
|
+
"highlight.js": "^11.8.0",
|
|
54
|
+
"i18next": "^23.4.4",
|
|
55
|
+
"i18next-browser-languagedetector": "^7.1.0",
|
|
56
|
+
"i18next-http-backend": "^2.2.1",
|
|
57
|
+
"material-ui-phone-number": "^3.0.0",
|
|
58
|
+
"moment": "^2.29.4",
|
|
59
|
+
"notistack": "^3.0.1",
|
|
60
|
+
"nprogress": "^0.2.0",
|
|
61
|
+
"numeral": "^2.0.6",
|
|
62
|
+
"pluralize": "^8.0.0",
|
|
63
|
+
"react": "^18.2.0",
|
|
64
|
+
"react-beautiful-dnd": "^13.1.1",
|
|
65
|
+
"react-dropzone": "^14.2.3",
|
|
66
|
+
"react-helmet-async": "^1.3.0",
|
|
67
|
+
"react-hook-form": "^7.45.4",
|
|
68
|
+
"react-i18next": "^11.18.6",
|
|
69
|
+
"react-lazy-load-image-component": "^1.6.0",
|
|
70
|
+
"react-router-dom": "^6.14.2",
|
|
71
|
+
"rollup": "^3.27.0",
|
|
72
|
+
"rollup-plugin-css-bundle": "^1.0.4",
|
|
73
|
+
"rollup-plugin-dts": "^5.3.1",
|
|
74
|
+
"rollup-plugin-image": "^1.0.2",
|
|
75
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
76
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
77
|
+
"rollup-plugin-postcss-modules": "^2.1.1",
|
|
78
|
+
"rollup-plugin-preserve-directives": "^0.2.0",
|
|
79
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
80
|
+
"simplebar-react": "^3.2.4",
|
|
81
|
+
"stylis": "^4.3.0",
|
|
82
|
+
"stylis-plugin-rtl": "^2.1.1",
|
|
83
|
+
"tslib": "^2.6.1",
|
|
84
|
+
"typescript": "^5.1.6",
|
|
85
|
+
"yup": "^1.2.0"
|
|
86
|
+
},
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
89
|
+
"draftjs-to-html": "^0.9.1",
|
|
90
|
+
"html-to-draftjs": "^1.5.0",
|
|
91
|
+
"react-draft-wysiwyg": "^1.15.0",
|
|
92
|
+
"react-lazyload": "^3.2.1",
|
|
93
|
+
"react-quill": "^2.0.0"
|
|
94
|
+
}
|
|
95
|
+
}
|