@getmicdrop/svelte-components 2.6.1 → 2.6.3
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 +1 -1
- package/dist/index.js +27 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -50,7 +50,6 @@ export { default as Input } from "./components/Input/Input.svelte";
|
|
|
50
50
|
export { default as MultiSelect } from "./components/Input/MultiSelect.svelte";
|
|
51
51
|
export { default as OTPInput } from "./components/Input/OTPInput.svelte";
|
|
52
52
|
export { default as Select } from "./components/Input/Select.svelte";
|
|
53
|
-
export { Checkbox } from "flowbite-svelte";
|
|
54
53
|
export { default as BottomNav } from "./components/Layout/BottomNav.svelte";
|
|
55
54
|
export { default as Header } from "./components/Layout/Header.svelte";
|
|
56
55
|
export { default as Modal } from "./components/Modal/Modal.svelte";
|
|
@@ -79,4 +78,5 @@ export { default as TabNavigation } from "./components/pages/shows/TabNavigation
|
|
|
79
78
|
export * from "./config.js";
|
|
80
79
|
export * from "./telemetry.js";
|
|
81
80
|
export * from "./constants/formOptions.js";
|
|
81
|
+
export { Accordion, AccordionItem, Avatar, Badge as FlowbiteBadge, Checkbox, Drawer, Dropdown, DropdownItem, Label, Listgroup, ListgroupItem, Pagination, Popover, Radio, Search, Skeleton, Tabs, TabItem, Textarea, Timeline, TimelineItem, Toast, Tooltip } from "flowbite-svelte";
|
|
82
82
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -59,7 +59,33 @@ export { default as Input } from './components/Input/Input.svelte';
|
|
|
59
59
|
export { default as MultiSelect } from './components/Input/MultiSelect.svelte';
|
|
60
60
|
export { default as OTPInput } from './components/Input/OTPInput.svelte';
|
|
61
61
|
export { default as Select } from './components/Input/Select.svelte';
|
|
62
|
-
|
|
62
|
+
|
|
63
|
+
// Re-exported from flowbite-svelte
|
|
64
|
+
export {
|
|
65
|
+
Accordion,
|
|
66
|
+
AccordionItem,
|
|
67
|
+
Avatar,
|
|
68
|
+
Badge as FlowbiteBadge,
|
|
69
|
+
Checkbox,
|
|
70
|
+
Drawer,
|
|
71
|
+
Dropdown,
|
|
72
|
+
DropdownItem,
|
|
73
|
+
Label,
|
|
74
|
+
Listgroup,
|
|
75
|
+
ListgroupItem,
|
|
76
|
+
Pagination,
|
|
77
|
+
Popover,
|
|
78
|
+
Radio,
|
|
79
|
+
Search,
|
|
80
|
+
Skeleton,
|
|
81
|
+
Tabs,
|
|
82
|
+
TabItem,
|
|
83
|
+
Textarea,
|
|
84
|
+
Timeline,
|
|
85
|
+
TimelineItem,
|
|
86
|
+
Toast,
|
|
87
|
+
Tooltip,
|
|
88
|
+
} from 'flowbite-svelte';
|
|
63
89
|
|
|
64
90
|
// Layout Components
|
|
65
91
|
export { default as BottomNav } from './components/Layout/BottomNav.svelte';
|