identity-admin-ui 1.11.41 → 1.11.43
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 +37 -37
- package/lib/cjs/index.js +3 -3
- package/lib/cjs/types/components/editor/toolbar.d.ts +7 -7
- package/lib/cjs/types/components/filter/OnSubmitFilter.d.ts +2 -1
- package/lib/cjs/types/context/ResourcesContext.d.ts +2 -0
- package/lib/cjs/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +4 -0
- package/lib/cjs/types/hooks/useResources.d.ts +2 -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/esm/index.css +37 -37
- package/lib/esm/index.js +3 -3
- package/lib/esm/types/components/editor/toolbar.d.ts +7 -7
- package/lib/esm/types/components/filter/OnSubmitFilter.d.ts +2 -1
- package/lib/esm/types/context/ResourcesContext.d.ts +2 -0
- package/lib/esm/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +4 -0
- package/lib/esm/types/hooks/useResources.d.ts +2 -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/index.d.ts +9 -0
- package/package.json +89 -89
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export declare const formats: string[];
|
|
2
|
-
type EditorToolbarProps = {
|
|
3
|
-
id: string;
|
|
4
|
-
isSimple?: boolean;
|
|
5
|
-
};
|
|
6
|
-
export default function Toolbar({ id, isSimple, ...other }: EditorToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export {};
|
|
1
|
+
export declare const formats: string[];
|
|
2
|
+
type EditorToolbarProps = {
|
|
3
|
+
id: string;
|
|
4
|
+
isSimple?: boolean;
|
|
5
|
+
};
|
|
6
|
+
export default function Toolbar({ id, isSimple, ...other }: EditorToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { NavigateOptions } from 'react-router';
|
|
2
2
|
import { URLSearchParamsInit } from 'react-router-dom';
|
|
3
|
-
|
|
3
|
+
import { ResourceResponse } from '../../context';
|
|
4
|
+
export declare function onSubmitFilter(data: any, handleFilterDrawerClose: () => void, schema: any, searchParams: URLSearchParams, setSearchParams: (nextInit?: URLSearchParamsInit | ((prev: URLSearchParams) => URLSearchParamsInit) | undefined, navigateOpts?: NavigateOptions | undefined) => void, scopeKey?: string, scopeValue?: string, resources?: ResourceResponse): string;
|
|
@@ -14,6 +14,8 @@ declare const ResourcesContext: import("react").Context<{
|
|
|
14
14
|
getResources: () => void;
|
|
15
15
|
state: RequestState;
|
|
16
16
|
clearResources: () => void;
|
|
17
|
+
loadingLogo?: string | undefined;
|
|
18
|
+
logoSxProps?: SxProps | undefined;
|
|
17
19
|
}>;
|
|
18
20
|
export interface ResourcesContextConfig {
|
|
19
21
|
resourcesUrl: string;
|
|
@@ -61,4 +61,8 @@ export interface ShowRecordProps extends INextpreviousExtras {
|
|
|
61
61
|
* An optional flag to disable default actions like edit.
|
|
62
62
|
*/
|
|
63
63
|
hideHeaderBreadcrumbs?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* An optional flag to disable skeleton before loading record.
|
|
66
|
+
*/
|
|
67
|
+
hideSkeleton?: boolean;
|
|
64
68
|
}
|
|
@@ -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/esm/index.css
CHANGED
|
@@ -1,41 +1,23 @@
|
|
|
1
|
-
::-webkit-scrollbar {
|
|
2
|
-
width: 4px;
|
|
3
|
-
height: 4px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
::-webkit-scrollbar-track {
|
|
7
|
-
background: transparent;
|
|
8
|
-
border-radius: 10px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
::-webkit-scrollbar-thumb {
|
|
12
|
-
background-color: #888;
|
|
13
|
-
border-radius: 10px;
|
|
14
|
-
}
|
|
1
|
+
::-webkit-scrollbar {
|
|
2
|
+
width: 4px;
|
|
3
|
+
height: 4px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
::-webkit-scrollbar-track {
|
|
7
|
+
background: transparent;
|
|
8
|
+
border-radius: 10px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
::-webkit-scrollbar-thumb {
|
|
12
|
+
background-color: #888;
|
|
13
|
+
border-radius: 10px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
::-webkit-scrollbar-thumb:hover {
|
|
17
|
+
background: #555;
|
|
18
|
+
}
|
|
19
|
+
|
|
15
20
|
|
|
16
|
-
::-webkit-scrollbar-thumb:hover {
|
|
17
|
-
background: #555;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
.editor {
|
|
22
|
-
padding-left: 20px;
|
|
23
|
-
padding-right: 20px;
|
|
24
|
-
max-height: 350px;
|
|
25
|
-
overflow: auto;
|
|
26
|
-
}
|
|
27
|
-
.toolBar {
|
|
28
|
-
border-style: solid;
|
|
29
|
-
border-width: 0.1px;
|
|
30
|
-
border-radius: 10px;
|
|
31
|
-
border-color:lightgray;
|
|
32
|
-
}
|
|
33
|
-
.wrapper {
|
|
34
|
-
border-style: solid;
|
|
35
|
-
border-width: 0.1px;
|
|
36
|
-
border-radius: 10px;
|
|
37
|
-
border-color:lightgray;
|
|
38
|
-
}
|
|
39
21
|
/*!
|
|
40
22
|
Theme: Tomorrow Night
|
|
41
23
|
Author: Chris Kempson (http://chriskempson.com)
|
|
@@ -43,6 +25,24 @@
|
|
|
43
25
|
Maintainer: @highlightjs/core-team
|
|
44
26
|
Version: 2021.09.0
|
|
45
27
|
*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#ccc;background:#2d2d2d}.hljs ::selection,.hljs::selection{background-color:#515151;color:#ccc}.hljs-comment{color:#999}.hljs-tag{color:#b4b7b4}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#ccc}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#f2777a}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#f99157}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#fc6}.hljs-strong{font-weight:700;color:#fc6}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#9c9}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#6cc}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#69c}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#c9c}.hljs-emphasis{color:#c9c;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#a3685a}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700}
|
|
28
|
+
.editor {
|
|
29
|
+
padding-left: 20px;
|
|
30
|
+
padding-right: 20px;
|
|
31
|
+
max-height: 350px;
|
|
32
|
+
overflow: auto;
|
|
33
|
+
}
|
|
34
|
+
.toolBar {
|
|
35
|
+
border-style: solid;
|
|
36
|
+
border-width: 0.1px;
|
|
37
|
+
border-radius: 10px;
|
|
38
|
+
border-color:lightgray;
|
|
39
|
+
}
|
|
40
|
+
.wrapper {
|
|
41
|
+
border-style: solid;
|
|
42
|
+
border-width: 0.1px;
|
|
43
|
+
border-radius: 10px;
|
|
44
|
+
border-color:lightgray;
|
|
45
|
+
}
|
|
46
46
|
/*!
|
|
47
47
|
* Quill Editor v1.3.7
|
|
48
48
|
* https://quilljs.com/
|