- Optimize parseStyle method to run a single RegExp replace
- Abstract DOM manipulation to check for VUE_ENV first
- Add theme name to <md-theme> element when it would render its own tag
- Recompute styles when a new set of selectors is added (via styles.push)
- Use computed property to find closest themed ancestor for mixin
- Only grab md-name attribute from an md-theme component (<md-table-edit>
uses the md-name attribute for <input> tags)
* Dont overwrite currentSize of mdTablePagination with
the first value from mdPageOptions.
Check the value currentSize if it is in the array of options and set it, otherwise just take the (default) first option.
* map props default value to local data property
* allow passing the prop as a string value
by parsing it as an int
Tried one of the code examples and noticed that Vue gave the following warning:
[Vue warn]: Missing required prop: "value"
(found in <MdDialogPrompt>)
Added missing argument in code example.
* fix pagination not enabling next button when total changes #482. (#517)
* refactor property names to make more sense #517 (#521)
* Added watchers on mdTotal and mdPage. Changed the binding for the disabled attribute of the next page arrow to use a computed property. Fix issue #482.
* Improve code readability for the fix done for #482.
* After a teeny tiny delay, update the autosize
* fix pagination not enabling next button when total changes #482. (#517)
* refactor property names to make more sense #517 (#521)
* Added watchers on mdTotal and mdPage. Changed the binding for the disabled attribute of the next page arrow to use a computed property. Fix issue #482.
* Improve code readability for the fix done for #482.
* Fix - when to use default colorVariant
Solves issue https://github.com/marcosmoura/vue-material/issues/533.
* fix pagination not enabling next button when total changes #482. (#517)
* refactor property names to make more sense #517 (#521)
* Added watchers on mdTotal and mdPage. Changed the binding for the disabled attribute of the next page arrow to use a computed property. Fix issue #482.
* Improve code readability for the fix done for #482.
* Add textColor property
The property "textColor" allows you to force set color of the text for the theme.
* Added description of the textColor property in the documentation
This fixes#534, the icon is now centered inside the md-button when used with md-table
Removing the margin gives back the `margin:auto` set to the `md-icon` class
* Added watchers on mdTotal and mdPage. Changed the binding for the disabled attribute of the next page arrow to use a computed property. Fix issue #482.
* Improve code readability for the fix done for #482.