do-ui-design-system 0.0.2 → 0.0.4

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.
@@ -0,0 +1,3 @@
1
+ import Button from "./Button/Button.svelte";
2
+ import Icon from "./Icons/Icon.svelte";
3
+ export { Button, Icon };
@@ -0,0 +1,3 @@
1
+ import Button from "./Button/Button.svelte";
2
+ import Icon from "./Icons/Icon.svelte";
3
+ export { Button, Icon };
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  import './do-theme/index.css';
2
- export { default as Button } from './atoms/Button/Button.svelte';
3
- export { default as Icon } from './atoms/Icons/Icon.svelte';
4
- export { default as IconButton } from './molecules/IconButton/IconButton.svelte';
2
+ import { Button, Icon } from './atoms/index.ts';
3
+ import { IconButton } from './molecules/index.ts';
4
+ export { Button, Icon, IconButton };
package/dist/index.js CHANGED
@@ -1,7 +1,10 @@
1
1
  //css export
2
2
  import './do-theme/index.css';
3
- //export atoms
4
- export { default as Button } from './atoms/Button/Button.svelte';
5
- export { default as Icon } from './atoms/Icons/Icon.svelte';
6
- //export molecules
7
- export { default as IconButton } from './molecules/IconButton/IconButton.svelte';
3
+ import { Button, Icon } from './atoms/index.ts';
4
+ import { IconButton } from './molecules/index.ts';
5
+ export { Button, Icon, IconButton };
6
+ // //export atoms
7
+ // export { default as Button } from './atoms/Button/Button.svelte';
8
+ // export { default as Icon } from './atoms/Icons/Icon.svelte';
9
+ // //export molecules
10
+ // export { default as IconButton } from './molecules/IconButton/IconButton.svelte';
@@ -0,0 +1,2 @@
1
+ import IconButton from "./IconButton/IconButton.svelte";
2
+ export { IconButton };
@@ -0,0 +1,2 @@
1
+ import IconButton from "./IconButton/IconButton.svelte";
2
+ export { IconButton };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "do-ui-design-system",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Design system en Svelte + Tailwind + DaisyUI",
5
5
  "author": "Data Observatory",
6
6
  "license": "MIT",