Skip to content
This repository has been archived by the owner on Mar 4, 2020. It is now read-only.

feat: support theming and styling #16

Merged
merged 25 commits into from
Aug 9, 2018
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
06ae6d9
move rules and vars to themes, add typings
levithomason Aug 3, 2018
a9bbbac
wip
levithomason Aug 3, 2018
9328b1b
test: add mergeTheme tests
levithomason Aug 4, 2018
af4ed15
merge master, resolve conflicts, fix tests
levithomason Aug 6, 2018
28a0270
fix: mv listVariables to listItemVariables
levithomason Aug 6, 2018
4b299a2
fix lint error, add changelog entry
levithomason Aug 6, 2018
e136132
docs: restore default imports in doc examples
levithomason Aug 6, 2018
37d1d5a
docs: cleanup cruft component-anatomy page
levithomason Aug 6, 2018
e837319
fix: Provier theme propTypes
levithomason Aug 6, 2018
bd201af
refactor: use toCompactArray where possible
levithomason Aug 6, 2018
6b788f0
refactor: renderComponentStyles to getClasses
levithomason Aug 6, 2018
b408da7
add todo for avatar icon work
levithomason Aug 7, 2018
5bd4b47
merge master, fix conflicts
levithomason Aug 9, 2018
49f2bf6
merge master
levithomason Aug 9, 2018
9c008a0
merge master
levithomason Aug 9, 2018
2820a5f
revert minor changes
levithomason Aug 9, 2018
d3bfe32
rename getClasses
levithomason Aug 9, 2018
d24d07d
rename getClasses with git mv
levithomason Aug 9, 2018
0fdb27e
merge master
levithomason Aug 9, 2018
6143126
uncomment icon styles
levithomason Aug 9, 2018
812392f
refactor: avatar styles, fix export name
levithomason Aug 9, 2018
48c5b96
refactor: add perf link to callable
levithomason Aug 9, 2018
c325f95
feat: expose resolved variables/styles in renderComponent
levithomason Aug 9, 2018
7218855
merge master
levithomason Aug 9, 2018
f12091f
feat: pass resolved variables and styles to components
levithomason Aug 9, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Features
- Update styles for Menu underlined primary @miroslavstastny ([#20](https://github.com/stardust-ui/react/pull/20))

- Support `styles` prop and nested theme Providers @levithomason ([#16](https://github.com/stardust-ui/react/pull/16))

<!--------------------------------[ v0.2.5 ]------------------------------- -->
## [v0.2.5](https://github.com/stardust-ui/react/tree/v0.2.5) (2018-08-03)
[Compare changes](https://github.com/stardust-ui/react/compare/v0.2.4...v0.2.5)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const ComponentControls: any = props => {
} = props

return (
<Menu color="green" icon="labeled" size="tiny" fitted compact text>
<Menu color="green" icon="labeled" size="tiny" compact text>
<ComponentControlsShowCode active={showCode} onClick={onShowCode} />
<ComponentControlsShowVariables active={showVariables} onClick={onShowVariables} />
<ComponentControlsRtl active={showRtl} onClick={onShowRtl} />
Expand Down
Loading