@functionalcms/svelte-components 0.8.1 → 0.8.3
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/index.d.ts +1 -2
- package/dist/index.js +7 -16
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,5 @@ import Box from './components/Box.svelte';
|
|
|
2
2
|
import Hero from './components/Hero.svelte';
|
|
3
3
|
import Header from './components/Header.svelte';
|
|
4
4
|
import Footer from './components/Footer.svelte';
|
|
5
|
-
import { authStore } from './authStore';
|
|
6
|
-
import { AuthConfig } from './authStore';
|
|
5
|
+
import { authStore, type AuthConfig } from './authStore.js';
|
|
7
6
|
export { Box, Hero, Header, Footer, authStore, AuthConfig };
|
package/dist/index.js
CHANGED
|
@@ -1,16 +1,7 @@
|
|
|
1
|
-
// Reexport your entry components here
|
|
2
|
-
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export {
|
|
10
|
-
Box,
|
|
11
|
-
Hero,
|
|
12
|
-
Header,
|
|
13
|
-
Footer,
|
|
14
|
-
authStore,
|
|
15
|
-
AuthConfig
|
|
16
|
-
};
|
|
1
|
+
// Reexport your entry components here
|
|
2
|
+
import Box from './components/Box.svelte';
|
|
3
|
+
import Hero from './components/Hero.svelte';
|
|
4
|
+
import Header from './components/Header.svelte';
|
|
5
|
+
import Footer from './components/Footer.svelte';
|
|
6
|
+
import { authStore } from './authStore.js';
|
|
7
|
+
export { Box, Hero, Header, Footer, authStore, AuthConfig };
|