iconograph-ui 1.1.0 → 1.1.2

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.
Files changed (2) hide show
  1. package/index.js +20 -2
  2. package/package.json +2 -1
package/index.js CHANGED
@@ -1,3 +1,21 @@
1
- import Button from "./lib/Button.svelte";
1
+ import Button from "./lib/form/Button.svelte";
2
+ import Form from "./lib/form/Form.svelte"
3
+ import Input from "./lib/form/Input.svelte"
4
+ import BodySection from "./lib/layout/BodySection.svelte"
5
+ import HeadSection from "./lib/layout/HeadSection.svelte"
6
+ import Card from "./lib/layout/Card.svelte"
7
+ import MainMenu from "./lib/navigation/MainMenu.svelte"
8
+ import Notification from "./lib/notification/Notification.svelte";
9
+ import NotificationWrapper from "./lib/notification/NotificationWrapper.svelte";
2
10
 
3
- export { Button };
11
+ export {
12
+ Button,
13
+ Form,
14
+ Input,
15
+ BodySection,
16
+ HeadSection,
17
+ Card,
18
+ MainMenu,
19
+ Notification,
20
+ NotificationWrapper
21
+ };
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "iconograph-ui",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "A Svelte Kit components library",
5
5
  "main": "index.js",
6
+ "svelte": "src/index.js",
6
7
  "scripts": {
7
8
  "test": "echo \"Error: no test specified\" && exit 1"
8
9
  },