forked from react-toolbox/react-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dev: (45 commits) Changed Icon Prop type to String or Element instead of Any. Also fixed an inappropriate example for checkbox. Proper property sorting Add allowBlank to Dropdown Chip - tweak stroke width Chip - Replace fonticon with inline SVG, tweak size and position Add prop to autocomplete to place labels below or above input Clean up chip styling, remove hover and pressed styles Update chip children prop type, readme Use children instead of special label and avatar props in Chip component Add onDeleteClick property Update autocomplete component to use chips Add chip component Added !default to all config values as per react-toolbox#424 Don't show actions container in dialog if no actions exist keepachangelog.com :) only render content of current tab + linting, docs, test have Dialog.jsx import from './style' and not './style.scss' 0.15.0 release 0.14.2 release docs(media): keep navigation for wider screens ...
- Loading branch information
Showing
81 changed files
with
953 additions
and
482 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
### Changed | ||
- Tabs now only render the contents of the currently active tab. | ||
|
||
## [0.15.0] - 2016-03-24 | ||
|
||
Click on the link above for this release's commit history. | ||
|
||
## [0.14.2] - 2016-03-07 | ||
|
||
Click on the link above for this release's commit history. | ||
|
||
## [0.14.1] - 2016-01-26 | ||
|
||
Click on the link above for this release's commit history. | ||
|
||
## [0.14.0] - 2015-12-20 | ||
### Added | ||
- A `Ripple` HOC that can be used with your custom components. | ||
|
||
### Changed | ||
- Added `className` for the pickers to customize them. | ||
- Animated auto-transition in `DatePicker` component. | ||
- All `Input` components have now an error prop. | ||
- `Dropdown` improvements and normalization with `Input` component. | ||
- More `react-toolbox` attributes to easy customize picker components. | ||
- `btn-colors` mixin extracted to easily define custom `Buttons`. | ||
- New `neutral` boolean property to avoid taking default styles in `Button`. | ||
- Remove hidden scroll from webkit browsers by `commons.scss`. | ||
- Better `Navigation` styles. | ||
- `Overlay` opacity can now be styled from CSS. | ||
|
||
**For previous changes, please see the commit messages in | ||
https://github.com/react-toolbox/react-toolbox/releases.** | ||
|
||
[Unreleased]: https://github.com/react-toolbox/react-toolbox/compare/0.15.0...dev | ||
[0.15.0]: https://github.com/react-toolbox/react-toolbox/compare/0.14.2...0.15.0 | ||
[0.14.2]: https://github.com/react-toolbox/react-toolbox/compare/0.14.1...0.14.2 | ||
[0.14.1]: https://github.com/react-toolbox/react-toolbox/compare/0.14.0...0.14.1 | ||
[0.14.0]: https://github.com/react-toolbox/react-toolbox/compare/0.13.4...0.14.0 |
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,6 +1,6 @@ | ||
$appbar-color: $color-primary-dark !default; | ||
$appbar-contrast: $color-primary-contrast !default; | ||
$appbar-title-total-distance: 8 * $unit; | ||
$appbar-title-total-distance: 8 * $unit !default; | ||
$appbar-height: 6.4 * $unit !default; | ||
$appbar-h-padding: 2.4 * $unit; | ||
$appbar-title-distance: $appbar-title-total-distance - $appbar-h-padding; | ||
$appbar-h-padding: 2.4 * $unit !default; | ||
$appbar-title-distance: $appbar-title-total-distance - $appbar-h-padding !default; |
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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
$autocomplete-color-primary-contrast: $color-primary-contrast !default; | ||
$autocomplete-color-primary: $color-primary !default; | ||
$autocomplete-overflow-max-height: 45vh; | ||
$autocomplete-overflow-max-height: 45vh !default; | ||
$autocomplete-suggestion-active-background: $palette-grey-200 !default; | ||
$autocomplete-suggestion-padding: $unit; | ||
$autocomplete-suggestion-padding: $unit !default; | ||
$autocomplete-suggestions-background: $color-white !default; | ||
$autocomplete-value-border-radius: .2 * $unit; | ||
$autocomplete-value-margin: $unit * .25 $unit * .5 $unit * .25 0; | ||
$autocomplete-value-padding: $unit * .5 $unit * .75; | ||
$autocomplete-value-margin: $unit * .25 $unit * .5 $unit * .25 0 !default; |
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
$card-color-white: $color-white !default; | ||
$card-text-overlay: rgba($color-black, 0.35) !default; | ||
$card-background-color: $card-color-white !default; | ||
$card-padding-sm: .8 * $unit; | ||
$card-padding: 1.6 * $unit; | ||
$card-padding-lg: 2 * $unit; | ||
$card-font-size: $font-size-small; | ||
$card-padding-sm: .8 * $unit !default; | ||
$card-padding: 1.6 * $unit !default; | ||
$card-padding-lg: 2 * $unit !default; | ||
$card-font-size: $font-size-small !default; |
Oops, something went wrong.