-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: enable standalone radio buttons * feat: add setter to Option.value, and improve getter * feat: allow label to be derived from innerText and improve scoping * refactor: update radio group to use dynamic slots, and remove List mixin * perf: improve rendering of radio buttons within a radio group * refactor: update radio group to use a slot * refactor: switch to sd-option to allow for CheckBoxList support * style: fix linting --------- Co-authored-by: Richard Herman <[email protected]>
- Loading branch information
Showing
7 changed files
with
377 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
import "./field"; | ||
import "./label"; | ||
import "./option"; | ||
import "./radio-group"; | ||
import "./switch"; | ||
import "./text-area"; | ||
import "./text-field"; | ||
export * from "./field"; | ||
export * from "./label"; | ||
export * from "./option"; | ||
export * from "./radio"; | ||
export * from "./radio-group"; | ||
export * from "./switch"; | ||
export * from "./text-area"; | ||
export * from "./text-field"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.