@axium/server 0.11.3 → 0.11.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.
- package/package.json +1 -1
- package/web/lib/index.ts +7 -0
package/package.json
CHANGED
package/web/lib/index.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as ClipboardCopy } from './ClipboardCopy.svelte';
|
|
2
|
+
export { default as Dialog } from './Dialog.svelte';
|
|
3
|
+
export { default as FormDialog } from './FormDialog.svelte';
|
|
4
|
+
export { Icon } from './icons/index.js';
|
|
5
|
+
export { default as Toast } from './Toast.svelte';
|
|
6
|
+
export { default as Upload } from './Upload.svelte';
|
|
7
|
+
export { default as UserCard } from './UserCard.svelte';
|