-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add use_trait_observe and use_dark_effective (#551)
* feat: add use_trait_observe and use_dark_effective Makes it easy to observe traits, and the example application of this is use_dark_effective. * Apply suggestions from code review Co-authored-by: Iisakki Rotko <[email protected]> --------- Co-authored-by: Iisakki Rotko <[email protected]>
- Loading branch information
1 parent
7577df5
commit be4ee6a
Showing
8 changed files
with
76 additions
and
31 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
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
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
"""# use_dark_effective | ||
""" | ||
import solara | ||
import solara.autorouting | ||
import solara.lab | ||
from solara.website.utils import apidoc | ||
|
||
from . import NoPage | ||
|
||
title = "use_dark_effective" | ||
Page = NoPage | ||
__doc__ += apidoc(solara.lab.use_dark_effective) # type: ignore |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
"""# use_trait_observe | ||
""" | ||
import solara | ||
import solara.autorouting | ||
import solara.lab | ||
from solara.website.utils import apidoc | ||
|
||
from . import NoPage | ||
|
||
title = "use_trait_observe" | ||
Page = NoPage | ||
__doc__ += apidoc(solara.use_trait_observe) # type: ignore |
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