@3birds/midori-ui 0.0.4 → 0.0.6
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 +6 -1
- package/dist/index.js +6 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as Btn } from './components/Btn.svelte';
|
|
2
|
+
export { default as Fab } from './components/Fab.svelte';
|
|
3
|
+
export { default as faviconSvg } from './assets/favicon.svg';
|
|
4
|
+
export { default as faceManSvg } from './assets/face-man.svg';
|
|
5
|
+
export { default as menuSvg } from './assets/menu.svg';
|
|
6
|
+
export { default as closeSvg } from './assets/close.svg';
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,7 @@
|
|
|
1
1
|
// place files you want to export through the `$lib` alias in this folder.
|
|
2
|
-
export { default as
|
|
2
|
+
export { default as Btn } from './components/Btn.svelte';
|
|
3
|
+
export { default as Fab } from './components/Fab.svelte';
|
|
4
|
+
export { default as faviconSvg } from './assets/favicon.svg';
|
|
5
|
+
export { default as faceManSvg } from './assets/face-man.svg';
|
|
6
|
+
export { default as menuSvg } from './assets/menu.svg';
|
|
7
|
+
export { default as closeSvg } from './assets/close.svg';
|