@m4l/layouts 0.0.14 → 0.0.15
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/layouts/ModuleLayout/contexts/ModuleContext/types.d.ts +1 -1
- package/dist/layouts/ModuleLayout/index.js +1 -1
- package/dist/layouts/ModuleLayout/types.d.ts +1 -1
- package/dist/layouts/NoAuthModuleLayout/contexts/NoAuthModuleContext/types.d.ts +1 -1
- package/dist/layouts/NoAuthModuleLayout/index.js +1 -1
- package/dist/layouts/NoAuthModuleLayout/types.d.ts +1 -1
- package/package.json +2 -2
|
@@ -4,7 +4,7 @@ export interface DomainStyleOptions {
|
|
|
4
4
|
company_logo_normal_url: string;
|
|
5
5
|
}
|
|
6
6
|
export interface NoAuthModuleLayoutProviderProps {
|
|
7
|
-
moduleId:
|
|
7
|
+
moduleId: string;
|
|
8
8
|
children: ReactNode;
|
|
9
9
|
}
|
|
10
10
|
export interface NoAuthModuleLayoutContextProps extends Pick<NoAuthModuleLayoutProviderProps, 'moduleId'> {
|
|
@@ -4,7 +4,7 @@ export interface ContainerProps {
|
|
|
4
4
|
}
|
|
5
5
|
export declare type MenuActionType = 'main' | 'allways' | 'normal';
|
|
6
6
|
export interface NoAuthModuleLayoutProps {
|
|
7
|
-
moduleId:
|
|
7
|
+
moduleId: string;
|
|
8
8
|
moduleName?: string;
|
|
9
9
|
componentsDictionary: string[];
|
|
10
10
|
children: ReactNode;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/layouts",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.15",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "vite",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"format": "npm run prettier:fix && npm run lint:fix"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@m4l/components": "^0.0.
|
|
17
|
+
"@m4l/components": "^0.0.38",
|
|
18
18
|
"react": "^17.0.0 || 18.x",
|
|
19
19
|
"react-dom": "^18.0.0"
|
|
20
20
|
},
|