Skip to content

Commit

Permalink
Export Checkbox Input (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte authored Aug 26, 2023
1 parent 0f9ed31 commit 97ebef8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/hungry-worms-retire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"bits-ui": minor
---

- Export `CheckboxInput`
11 changes: 10 additions & 1 deletion src/lib/bits/checkbox/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
import Root from "./components/Checkbox.svelte";
import Indicator from "./components/CheckboxIndicator.svelte";
import Input from "./components/CheckboxInput.svelte";

export { Root, Indicator, Root as Checkbox, Indicator as CheckboxIndicator };
export {
Root,
Indicator,
Input,
//
Root as Checkbox,
Indicator as CheckboxIndicator,
Input as CheckboxInput
};
export * from "./types.js";

0 comments on commit 97ebef8

Please sign in to comment.