Skip to content

Releases: vuematerial/vue-material

v0.5.0

16 Dec 06:14
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release

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

16 Dec 06:09
Compare
Choose a tag to compare
v0.4.3 Pre-release
Pre-release

Fixes

  • fix releases tree, load versions and changelog externaly
  • fix build structure

v0.4.2

16 Dec 06:09
Compare
Choose a tag to compare
v0.4.2 Pre-release
Pre-release

Fixes

  • fix switch not updating state after value change #200
  • fix dialog with input closing after typing #183
  • fix tooltip errors in console #188
  • fix value in select with option with v-if #198

v0.4.1

08 Dec 12:49
Compare
Choose a tag to compare
v0.4.1 Pre-release
Pre-release

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

05 Dec 04:18
Compare
Choose a tag to compare
v0.4.0 Pre-release
Pre-release

New Documentation:

  • Better Getting started
  • Themes guide
  • Version selector
  • API Guide
  • Better Examples

New Components:

  • Dialog

Fixes:

  • fix shadow transition inside menus #141 #129
  • fix table row not watching item #116 #113
  • add href support for mdBottomBar #121

v0.3.3

21 Nov 05:38
Compare
Choose a tag to compare
v0.3.3 Pre-release
Pre-release

Fixes:

  • Fix regression on inputs getting wrong value after manual update #101 #100 #96

v0.3.2

21 Nov 03:41
Compare
Choose a tag to compare
v0.3.2 Pre-release
Pre-release

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

16 Nov 04:52
Compare
Choose a tag to compare
v0.3.1 Pre-release
Pre-release

Fixes:

  • md-select not being reactive #74
  • Fix components not being updated inside v-once #69 #70
  • Fix input number not accepting numbers #67
  • Fix md-input-container crashing when the select value is null #64

v0.3.0

16 Nov 04:51
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release

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)

v0.2.0

24 Oct 03:10
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release

New Components:

  • Cards

Fixes:

  • Add Roboto font and google icons to the docs 421ce7b
  • Explains better how to install and configure vue-material cc43985
  • Emit change & input events from mdTextarea b474af9 (Thanks to @jvanbrug)