Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4e88953
fix icons in docs not rendered properly
lucivpav Jul 12, 2019
10c7fef
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 12, 2019
c0dfefa
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 15, 2019
1e51da9
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 15, 2019
449df54
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 16, 2019
8372ad7
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 16, 2019
e66e4bc
update changelog
lucivpav Jul 16, 2019
f94f01c
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 16, 2019
39137b5
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 17, 2019
e994be7
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 18, 2019
6b1fbee
improve changelog
lucivpav Jul 19, 2019
e35d119
rework without styles
lucivpav Jul 26, 2019
2c7358a
remove unnecessary code
lucivpav Jul 26, 2019
718b016
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 26, 2019
857cffe
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 26, 2019
36ec625
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 29, 2019
2b3886a
Update CHANGELOG.md
lucivpav Jul 29, 2019
7da707a
Merge branch 'master' into docs/theming-icon-fix
lucivpav Jul 30, 2019
440c42b
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 1, 2019
72a0779
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 5, 2019
892eea1
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 9, 2019
5d189aa
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 9, 2019
1e3e2fd
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 12, 2019
8e3c2d7
remove value
lucivpav Aug 12, 2019
41d7c65
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 13, 2019
618b760
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 13, 2019
7dd5c47
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 13, 2019
9aa585b
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 13, 2019
fa251eb
Merge branch 'master' into docs/theming-icon-fix
lucivpav Aug 13, 2019
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Restore docs for `Ref` component @layershifter ([#1777](https://github.com/stardust-ui/react/pull/1777))
- Add prototype for expandable control messages in `Chat` @sophieH29 ([#1765](https://github.com/stardust-ui/react/pull/1765))
- Remove Font Awesome icons from docs examples @lucivpav ([#1764](https://github.com/stardust-ui/react/pull/1764))
- Fix code in Component variables section of Theming page @lucivpav ([#1625](https://github.com/stardust-ui/react/pull/1625))

<!--------------------------------[ v0.36.1 ]------------------------------- -->
## [v0.36.1](https://github.com/stardust-ui/react/tree/v0.36.1) (2019-08-09)
Expand Down Expand Up @@ -73,7 +74,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Fix layout issue rendering extra space when viewing documentation in Firefox @notandrew ([#1427](https://github.com/stardust-ui/react/pull/1427))
- Add search capability @lucivpav ([#1682](https://github.com/stardust-ui/react/pull/1682))
- Improve `Theme it` section under component examples @layershifter ([#1748](https://github.com/stardust-ui/react/pull/1748))

<!--------------------------------[ v0.35.0 ]------------------------------- -->
## [v0.35.0](https://github.com/stardust-ui/react/tree/v0.35.0) (2019-07-26)
[Compare changes](https://github.com/stardust-ui/react/compare/v0.34.3...v0.35.0)
Expand Down
10 changes: 9 additions & 1 deletion docs/src/views/Theming.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,15 @@ export default () => (
<Icon name="calendar" circular />
<Icon name="calendar" circular />

<Provider theme={{ componentVariables: { Icon: { color: 'cornflowerblue' } } }}>
<Provider
theme={{
componentVariables: {
Icon: {
color: 'cornflowerblue',
},
},
}}
>
<span>
<Icon name="calendar" circular />
<Icon name="calendar" circular />
Expand Down