@rezcom/rez-components 0.0.43 → 0.0.45

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 CHANGED
@@ -1,7 +1,9 @@
1
+ import './app.css';
1
2
  import Button from './ui/Button.svelte';
2
3
  import Carousel from './ui/Carousel.svelte';
3
4
  import Dropdown from './ui/Dropdown.svelte';
4
5
  import Modal from './ui/Modal.svelte';
6
+ import Hero from './ui/Hero.svelte';
5
7
  import type { DropdownItem } from './util/type.js';
6
- export { Button, Carousel, Dropdown, Modal };
8
+ export { Button, Carousel, Dropdown, Modal, Hero };
7
9
  export type { DropdownItem };
package/dist/index.js CHANGED
@@ -1,6 +1,8 @@
1
+ import './app.css';
1
2
  import Button from './ui/Button.svelte';
2
3
  import Carousel from './ui/Carousel.svelte';
3
4
  import Dropdown from './ui/Dropdown.svelte';
4
5
  import Modal from './ui/Modal.svelte';
6
+ import Hero from './ui/Hero.svelte';
5
7
  // Reexport your entry components here
6
- export { Button, Carousel, Dropdown, Modal };
8
+ export { Button, Carousel, Dropdown, Modal, Hero };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rezcom/rez-components",
3
- "version": "0.0.43",
3
+ "version": "0.0.45",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",