Releases: vuematerial/vue-material
v0.5.0
New Components:
- Theme
- Layout
- Spinner
The long time requested feature is here! Vue Material has a new and easy-to-use Grid System. Enjoy!
Breaking changes:
The first breaking change we never forget. The themes engine has changed and it's more simple now. This change make the themes reactive to make the themes dynamic using the theme component or the API. The performance of the engine is waaay better and the theme styles are now fixed and have a better scope.
Check all theme changes in the new themes section inside the documentation website. There are some changes in the theme API:
v-md-theme directive removed
The v-md-theme
do not exists anymore and should be replaced by the brand new <md-theme>
component.
Register method renamed
Vue.material.theme.register
changed to Vue.material.registerTheme
. This will make the API smore simple and easy to write.
Register All removed
Vue.material.theme.registerAll
was removed. The Vue.material.registerTheme
function now accepts a object:
Vue.material.registerTheme('about', {
primary: {
color: 'indigo',
hue: 'A200'
},
accent: {
color: 'grey',
hue: 300
}
})
No need to use a default theme
Vue Material now comes with a default theme, according with the specifications.
Applying other themes as the default (A.K.A. dynamic themes)
There is a new function to set the theme of you application dynamically:
Vue.material.setCurrentTheme('about')
New:
- pass $event to on click inside md-list-item #175
- add support for theming on Cards #173
- add md-tooltip for tabheader #171
Fixes:
- adjust menu offset position when scroll is present #180
* Also it's not possible to see the code from previous versions before 0.4.3 due to a change in the build system.
v0.4.3
Fixes
- fix releases tree, load versions and changelog externaly
- fix build structure
v0.4.2
v0.4.1
Fixes:
- create custom tags in whiteframe component #169
- fix undefined object.values method and emit @change event #167 #165 (Thanks to @jtouzy)
- add reference of currentPage in mdTablePagination #163 (Thanks to @jonataswalker)
- add scrollbar behaviour in dialog content #161
- resize textarea when a value change #160
- fix disabled selects being selectable #159
- add code sample to switch #157 (Thanks to @vuchl)
- fix tooltip not being removed #156
- update prompt code example to be a prompt #150 (Thanks to @vuchl)
v0.4.0
v0.3.3
v0.3.2
Fixes:
- Fix babel export default module.exports #92
- Fix tooltips jumping when screen resize #85
- Fix table not getting instance #91 #88
- Fix regression on password review #95
- Fix input getting wrong value after manual update #100 #96
- Use the internal value of md-input to set the value of the container #97 (Thanks to @Cabbaggio)
- Add material.debug.js to dist folder #90 (Thanks to @pauloramires)
v0.3.1
v0.3.0
New Components:
- Data Table
- Menu
- Select with multiple selection
Fixes:
- md-input not reactive when initial value empty #40
- md-textarea with maxlength not writable #43
- Do not style scrollbars by default #46
- SELECT component: display issue in IE11 #34
- Select component popup shows behind other components #26
- md-select text vs value #24
- md-button ignores type prop #41 (Thanks to @pauloramires)
- md-select displaying selected text (rather than value) #36
- Added 'type' props to switch button #27 (Thanks to @guillaumerxl)
- Add babel-cli as dev dependency #28 (Thanks to @lucassouza1)
- Remove dotted outline around button in firefox #52 (Thanks to @yeknava)