@ludo.ninja/components 1.3.5 → 1.3.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludo.ninja/components",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "next dev -p 4000",
@@ -0,0 +1,7 @@
1
+ export { default as LWithoutHeader } from './LWithoutHeader';
2
+ export { default as LWithRegularHeader } from './LWithRegularHeader';
3
+ export { default as LWithSearchHeader } from './LWithSearchHeader';
4
+ export { default as LWithSimpleHeader } from './LWithSimpleHeader';
5
+
6
+
7
+
@@ -0,0 +1,9 @@
1
+ export { default as accountLayout } from './accountLayout';
2
+ export { default as formsLayout } from './formsLayout';
3
+ export { default as mainLayout } from './mainLayout';
4
+ export { default as searchLayout } from './searchLayout';
5
+ export { default as simpleLayout } from './simpleLayout';
6
+
7
+
8
+
9
+
@@ -1,4 +1,8 @@
1
1
  export * from './GlobalLayout';
2
2
  export * from './pageTransitionLayout';
3
3
  export * from './pageWithLayout';
4
+ export * from './base';
5
+ export * from './custom';
6
+
7
+
4
8
 
@@ -1,4 +1,4 @@
1
- export type * from './types';
1
+ export * from './types';
2
2
  export * from './VirtuosoPageBuilder';
3
3
  export * from './VirtuosoToTopBtn';
4
4
  export * from './useVirtuosoData';