@ludo.ninja/components 1.3.6 → 1.3.8
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
|
@@ -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
|
+
|
package/src/layouts/index.ts
CHANGED
package/src/system/index.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './theme';
|
|
|
7
7
|
export * from './Tabs';
|
|
8
8
|
export * from './Buttons';
|
|
9
9
|
export * from './Cards';
|
|
10
|
+
export * from './Forms';
|
|
10
11
|
export { default as CardsHolder } from './CardsHolderWithSkeleton/CardsHolder';
|
|
11
12
|
export { default as CardsError } from './CardsHolderWithSkeleton/CardsHolder/CardsError';
|
|
12
13
|
export { default as CardsNoResults } from './CardsHolderWithSkeleton/CardsHolder/CardsNoResults';
|