identity-admin-ui 1.12.20 → 1.12.22

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 (28) hide show
  1. package/lib/cjs/index.css +20 -18
  2. package/lib/cjs/index.js +6 -6
  3. package/lib/cjs/types/components/DashboardFormFields/RichTextField.d.ts +2 -1
  4. package/lib/cjs/types/components/DashboardShowFields/Fields/JSONRichText.d.ts +2 -0
  5. package/lib/cjs/types/components/DashboardShowFields/Sections/RichText/JSONRichTextShow.d.ts +4 -0
  6. package/lib/cjs/types/components/hook-form/RHFRichText/JSONRichText.d.ts +4 -0
  7. package/lib/cjs/types/components/index.d.ts +1 -0
  8. package/lib/cjs/types/context/index.d.ts +1 -0
  9. package/lib/cjs/types/helpers/EnumHelper.d.ts +1 -0
  10. package/lib/cjs/types/hooks/index.d.ts +2 -0
  11. package/lib/cjs/types/layout/dashboard/config-navigation.d.ts +4 -4
  12. package/lib/cjs/types/routes/AdminRouter.d.ts +10 -10
  13. package/lib/cjs/types/routes/paths.d.ts +5 -5
  14. package/lib/esm/index.css +20 -18
  15. package/lib/esm/index.js +13 -13
  16. package/lib/esm/types/components/DashboardFormFields/RichTextField.d.ts +2 -1
  17. package/lib/esm/types/components/DashboardShowFields/Fields/JSONRichText.d.ts +2 -0
  18. package/lib/esm/types/components/DashboardShowFields/Sections/RichText/JSONRichTextShow.d.ts +4 -0
  19. package/lib/esm/types/components/hook-form/RHFRichText/JSONRichText.d.ts +4 -0
  20. package/lib/esm/types/components/index.d.ts +1 -0
  21. package/lib/esm/types/context/index.d.ts +1 -0
  22. package/lib/esm/types/helpers/EnumHelper.d.ts +1 -0
  23. package/lib/esm/types/hooks/index.d.ts +2 -0
  24. package/lib/esm/types/layout/dashboard/config-navigation.d.ts +4 -4
  25. package/lib/esm/types/routes/AdminRouter.d.ts +10 -10
  26. package/lib/esm/types/routes/paths.d.ts +5 -5
  27. package/lib/index.d.ts +130 -16
  28. package/package.json +95 -95
@@ -1,7 +1,8 @@
1
1
  import { IInputFieldProps } from './IFieldProps';
2
2
  export declare enum RichTextType {
3
3
  TYPE_ONE = 0,
4
- TYPE_TWO = 1
4
+ TYPE_TWO = 1,
5
+ JSON_TYPE = 2
5
6
  }
6
7
  interface IRichTextProps extends IInputFieldProps {
7
8
  type: RichTextType;
@@ -0,0 +1,2 @@
1
+ import { IShowField } from '../IShowField';
2
+ export declare function JSONRichTextField(props: IShowField): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import 'react-draft-wysiwyg/dist/react-draft-wysiwyg.css';
2
+ export declare function JSONRichTextShow({ stringifiedJson }: {
3
+ stringifiedJson: string;
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import 'react-draft-wysiwyg/dist/react-draft-wysiwyg.css';
2
+ import './styles.css';
3
+ import { IRichText } from './RHFRichText';
4
+ export default function RHFJSONRichText({ name, disabled }: IRichText): import("react/jsx-runtime").JSX.Element;
@@ -3,4 +3,5 @@ export { default as NotificationPopover } from './Notifications/NotificationsPop
3
3
  export { default as MotionLazyContainer } from './MotionLazyContainer';
4
4
  export { default as SvgIconStyle } from './SvgIconStyle';
5
5
  export { default as ThemeSettings } from './settings/index';
6
+ export { default as LocalizationStringForm } from './LocalizedStringForm';
6
7
  export * from './Dialog/ActionDialog';
@@ -10,3 +10,4 @@ export * from './NotificationsContext';
10
10
  export * from './auth';
11
11
  export * from './CollapseDrawerContext';
12
12
  export { default as IResouce } from './Resource';
13
+ export * from './SettingsContext';
@@ -28,6 +28,7 @@ export declare enum FieldTypes {
28
28
  LOCATION = "LOCATION",
29
29
  RICH_TEXT_I = "RICH_TEXT_I",
30
30
  RICH_TEXT_II = "RICH_TEXT_II",
31
+ JSON_RICH_TEXT = "JSON_RICH_TEXT",
31
32
  EXTERNAL_LINK = "EXTERNAL_LINK",
32
33
  MULTIPLE_TEXT = "MULTIPLE_TEXT"
33
34
  }
@@ -10,3 +10,5 @@ export * from './useDialog';
10
10
  export * from './useNotifications';
11
11
  export * from './useAuth';
12
12
  export * from './useCollapseDrawer';
13
+ export { default as useLocales } from './useLocales';
14
+ export { default as useSettings } from './useSettings';
@@ -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
@@ -10,9 +10,10 @@ import { AxiosRequestConfig } from 'axios';
10
10
  import * as _mui_system from '@mui/system';
11
11
  import * as notistack from 'notistack';
12
12
  import { SnackbarOrigin } from 'notistack';
13
+ import * as _mui_material_locale from '@mui/material/locale';
14
+ import { UseFormSetValue, UseFormReturn, Control, FieldValues } from 'react-hook-form';
13
15
  import { DropzoneOptions } from 'react-dropzone';
14
16
  import { Theme } from '@mui/material/styles';
15
- import { UseFormReturn, Control, FieldValues } from 'react-hook-form';
16
17
  import { ReactQuillProps } from 'react-quill';
17
18
  import { DatePickerProps } from '@mui/lab';
18
19
  import { TextFieldProps as TextFieldProps$1 } from '@mui/material/TextField';
@@ -123,6 +124,7 @@ declare enum FieldTypes {
123
124
  LOCATION = "LOCATION",
124
125
  RICH_TEXT_I = "RICH_TEXT_I",
125
126
  RICH_TEXT_II = "RICH_TEXT_II",
127
+ JSON_RICH_TEXT = "JSON_RICH_TEXT",
126
128
  EXTERNAL_LINK = "EXTERNAL_LINK",
127
129
  MULTIPLE_TEXT = "MULTIPLE_TEXT"
128
130
  }
@@ -485,11 +487,11 @@ type Action = {
485
487
  };
486
488
  declare const AuthReducer: Reducer<State, Action>;
487
489
 
488
- interface Props$h {
490
+ interface Props$i {
489
491
  storageKey: string;
490
492
  children: ReactNode;
491
493
  }
492
- declare const AuthProvider: react__default.FC<Props$h>;
494
+ declare const AuthProvider: react__default.FC<Props$i>;
493
495
 
494
496
  type CollapseDrawerContextProps = {
495
497
  isCollapse?: boolean;
@@ -505,6 +507,58 @@ type CollapseDrawerProviderProps = {
505
507
  };
506
508
  declare function CollapseDrawerProvider({ children }: CollapseDrawerProviderProps): react_jsx_runtime.JSX.Element;
507
509
 
510
+ type ColorVariants = {
511
+ name: string;
512
+ lighter: string;
513
+ light: string;
514
+ main: string;
515
+ dark: string;
516
+ darker: string;
517
+ contrastText: string;
518
+ };
519
+ type ThemeMode = 'light' | 'dark';
520
+ type ThemeDirection = 'rtl' | 'ltr';
521
+ type ThemeContrast = 'default' | 'bold';
522
+ type ThemeLayout = 'vertical' | 'horizontal';
523
+ type ThemeColorPresets = 'default' | 'purple' | 'cyan' | 'blue' | 'orange' | 'red';
524
+ type SettingsContextProps = {
525
+ themeMode: ThemeMode;
526
+ themeLayout: ThemeLayout;
527
+ themeContrast: ThemeContrast;
528
+ themeDirection: ThemeDirection;
529
+ themeColorPresets: ThemeColorPresets;
530
+ themeStretch: boolean;
531
+ setColor: ColorVariants;
532
+ colorOption: {
533
+ name: string;
534
+ value: string;
535
+ }[];
536
+ presetsColor?: ColorVariants;
537
+ presetsOption: {
538
+ name: string;
539
+ value: string;
540
+ }[];
541
+ onToggleMode: VoidFunction;
542
+ onChangeMode: (event: React.ChangeEvent<HTMLInputElement>) => void;
543
+ onToggleDirection: VoidFunction;
544
+ onChangeDirection: (event: React.ChangeEvent<HTMLInputElement>) => void;
545
+ onChangeDirectionByLang: (lang: string) => void;
546
+ onToggleLayout: VoidFunction;
547
+ onChangeLayout: (event: React.ChangeEvent<HTMLInputElement>) => void;
548
+ onToggleContrast: VoidFunction;
549
+ onChangeContrast: (event: React.ChangeEvent<HTMLInputElement>) => void;
550
+ onChangeColor: (event: React.ChangeEvent<HTMLInputElement>) => void;
551
+ onChangeColorPresets: (event: React.ChangeEvent<HTMLInputElement>) => void;
552
+ onToggleStretch: VoidFunction;
553
+ onResetSetting: VoidFunction;
554
+ };
555
+
556
+ declare const SettingsContext: react.Context<SettingsContextProps>;
557
+ type SettingsProviderProps = {
558
+ children: ReactNode;
559
+ };
560
+ declare function SettingsProvider({ children }: SettingsProviderProps): react_jsx_runtime.JSX.Element;
561
+
508
562
  interface IGridExtras {
509
563
  noRowsText?: string;
510
564
  bulkDeleteText?: string;
@@ -743,13 +797,13 @@ declare function Permissions({ isEdit }: {
743
797
 
744
798
  declare function ShowMailLog(props: any): react_jsx_runtime.JSX.Element;
745
799
 
746
- type Props$g = {
800
+ type Props$h = {
747
801
  isDashboard?: boolean;
748
802
  sx?: SxProps;
749
803
  loadingLogo?: string;
750
804
  logoSxProps?: SxProps;
751
805
  };
752
- declare function LoadingScreen({ isDashboard, loadingLogo, logoSxProps, ...other }: Props$g): react_jsx_runtime.JSX.Element;
806
+ declare function LoadingScreen({ isDashboard, loadingLogo, logoSxProps, ...other }: Props$h): react_jsx_runtime.JSX.Element;
753
807
 
754
808
  declare function Page404(): react_jsx_runtime.JSX.Element;
755
809
 
@@ -843,6 +897,47 @@ declare const useAuth: () => {
843
897
  logout: () => void;
844
898
  };
845
899
 
900
+ declare enum Flags {
901
+ ENGLISH_FLAG = "https://pngimg.com/uploads/flags/flags_PNG14592.png",
902
+ ARABIC_FLAG = "/assets/icons/flags/ic_flag_sa.svg",
903
+ FRENCH_FLAG = "/assets/icons/flags/ic_flag_fr.svg",
904
+ GERMAN_FLAG = "/assets/icons/flags/ic_flag_de.svg",
905
+ SPANISH_FLAG = "/assets/icons/flags/ic_flag_es.svg",
906
+ DANISH_FLAG = "/assets/icons/flags/ic_flag_da.svg",
907
+ NORWEGIAN_FLAG = "/assets/icons/flags/ic_flag_no.svg",
908
+ SWEDISH_FLAG = "/assets/icons/flags/ic_flag_se.svg"
909
+ }
910
+
911
+ declare enum Languages {
912
+ ENGLISH = "en",
913
+ ARABIC = "ar",
914
+ FRENCH = "fr",
915
+ GERMAN = "de",
916
+ SPANISH = "es",
917
+ DANISH = "da",
918
+ NORWEGIAN = "nb",
919
+ SWEDISH = "sv"
920
+ }
921
+
922
+ declare function useLocales(): {
923
+ onChangeLang: (newlang: string) => void;
924
+ translate: (text: any, options?: any) => string;
925
+ currentLang: {
926
+ label: string;
927
+ value: Languages;
928
+ systemValue: _mui_material_locale.Localization;
929
+ icon: Flags;
930
+ };
931
+ allLangs: {
932
+ label: string;
933
+ value: Languages;
934
+ systemValue: _mui_material_locale.Localization;
935
+ icon: Flags;
936
+ }[];
937
+ };
938
+
939
+ declare const useSettings: () => SettingsContextProps;
940
+
846
941
  declare const IdentityClient: axios.AxiosInstance;
847
942
  declare module 'axios' {
848
943
  interface AxiosRequestConfig {
@@ -851,36 +946,55 @@ declare module 'axios' {
851
946
  }
852
947
  }
853
948
 
854
- type Props$f = {
949
+ type Props$g = {
855
950
  children: ReactNode;
856
951
  };
857
- declare function ThemeProvider({ children }: Props$f): react_jsx_runtime.JSX.Element;
952
+ declare function ThemeProvider({ children }: Props$g): react_jsx_runtime.JSX.Element;
858
953
 
859
- type Props$e = {
954
+ type Props$f = {
860
955
  pathsObject: {
861
956
  [key: string]: ResourcePaths;
862
957
  };
863
958
  HomePage: () => JSX.Element;
864
959
  customs: ReactElement[];
865
960
  };
866
- declare function AdminRouter({ pathsObject, HomePage, customs }: Props$e): react_jsx_runtime.JSX.Element;
961
+ declare function AdminRouter({ pathsObject, HomePage, customs }: Props$f): react_jsx_runtime.JSX.Element;
867
962
 
868
963
  declare function NotificationsPopover(): react_jsx_runtime.JSX.Element;
869
964
 
870
- type Props$d = {
965
+ type Props$e = {
871
966
  children: ReactNode;
872
967
  };
873
- declare function MotionLazyContainer({ children }: Props$d): react_jsx_runtime.JSX.Element;
968
+ declare function MotionLazyContainer({ children }: Props$e): react_jsx_runtime.JSX.Element;
874
969
 
875
- interface Props$c extends BoxProps {
970
+ interface Props$d extends BoxProps {
876
971
  src: string;
877
972
  }
878
- declare function SvgIconStyle({ src, sx }: Props$c): react_jsx_runtime.JSX.Element;
973
+ declare function SvgIconStyle({ src, sx }: Props$d): react_jsx_runtime.JSX.Element;
879
974
 
880
- type Props$b = {
975
+ type Props$c = {
881
976
  children: React.ReactNode;
882
977
  };
883
- declare function ThemeSettings({ children }: Props$b): react_jsx_runtime.JSX.Element;
978
+ declare function ThemeSettings({ children }: Props$c): react_jsx_runtime.JSX.Element;
979
+
980
+ type Props$b = {
981
+ title: string;
982
+ size: SizeType;
983
+ fieldName: string;
984
+ numberOfRows?: number;
985
+ isEdit?: boolean;
986
+ value: string;
987
+ includeFrench?: boolean;
988
+ includeGerman?: boolean;
989
+ includeSpanish?: boolean;
990
+ includeDanish?: boolean;
991
+ includeNorwegian?: boolean;
992
+ includeSwedish?: boolean;
993
+ setValue: UseFormSetValue<any>;
994
+ getValues: (name: string) => any;
995
+ handleChange: (event: React.SyntheticEvent, newValue: string) => void;
996
+ };
997
+ declare function LocalizedStringForm({ title, includeFrench, includeGerman, includeSpanish, includeDanish, includeNorwegian, includeSwedish, size, value, isEdit, fieldName, numberOfRows, setValue, getValues, handleChange, }: Props$b): react_jsx_runtime.JSX.Element;
884
998
 
885
999
  interface ActionDialogProps {
886
1000
  open: boolean;
@@ -1461,4 +1575,4 @@ declare const palette: {
1461
1575
  };
1462
1576
  };
1463
1577
 
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 };
1578
+ 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, LocalizedStringForm as LocalizationStringForm, 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, SettingsContext, SettingsProvider, 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, useLocales, useNavData, useNotifications, usePaths, useResources, useSettings, useSnackAlert };
package/package.json CHANGED
@@ -1,95 +1,95 @@
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
- }
1
+ {
2
+ "name": "identity-admin-ui",
3
+ "version": "1.12.22",
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
+ }