Skip to content

Releases: spartez/vue-aui

v1.2.0

21 Mar 14:18
Compare
Choose a tag to compare

v1.1.2...v1.2.0

v1.1.2

02 Dec 15:55
Compare
Choose a tag to compare
  • Merge pull request #59 from spartez/comma-as-the-default-separator cac3005
  • comma as default separator 39e010f

v1.1.1...v1.1.2

Change the separator in the multiselect

14 Oct 21:22
Compare
Choose a tag to compare
  • APJ-2257 change the separator in the multiselect (#58) 5632dcb

v1.1.0...v1.1.1

Bump Webpack & Babel to latest versions

15 Jun 00:02
Compare
Choose a tag to compare

Two more Select2 attributes are now supported

29 May 15:26
cf472a5
Compare
Choose a tag to compare

Summary

You can easily use maximum-selection-size and format-selection-too-big attributes for va-select2 in multiple mode from now on!
More information on the attributes can be found here.

Usage

<va-select2
     multiple
     :format-selection-too-big="formatSelectionTooBig"
     :maximum-selection-size="3"
</va-select2>
methods: {
     formatSelectionTooBig(size) {
          return `You can select up to 3 items.`;
     }
}

First stable release is finally here!

13 Apr 11:59
Compare
Choose a tag to compare

Summary of the changes from past release candidates

Updated component names prefix to va (deprecated prefix aui)

To avoid conflicts with some existing and future web components that AUI provides, we've changing naming convention away from aui-.

  • Exported all components with Va prefix i.e. import { VaButton } from 'vue-aui' (deprecated syntax import { AuiButton })
  • Registered all components with va- prefix i.e. <va-button> (deprecated syntax <aui-button>)
  • Usage of globally registered components with aui- prefix will generate warning in the console
  • BRAKING <aui-spinner> doesn't exist in its deprecated version as it overlaps with a new AUI web component. Use <va-spinner> for pre AUI 7.7 (deprecated component) and AUI web component <aui-spinner> for the following AUIs (AUI web component).
  • <aui-toggle-button> has been renamed to <va-toggle> (rather than <va-toggle-button>)

Select2 syntax simplified to be HTML-like

In 0.X you had to import 2 separate components to have single select and multiple select components. The more natural and common (including HTML select) way to do it is using multiple attribute to switch. This is exactly what has been done here as well.

  • New syntax is <va-select2 v-model="value"> and <va-select2 multiple v-model="items">
  • BRAKING <va-select2-single> and <va-select2-multi> (available in the past release candidates) are removed. Use <va-select2> and <va-select2 multiple> respectively.

P.S. For a frictionless upgrade you can still use deprecated <aui-select2-multi> and <aui-select2-single> components but upgrading to the new cleaner syntax is highly recommended.

Other small improvements

  • <va-toggle> not doesn't require (but still supports) id attribute
  • Clean up <va-inline-dialog> events to support syncable open prop.
  • Fix XSS in select2 in single mode
  • Fix misplaced select2 clear button (on non-retina displays when AUI css is minified)
  • Support busy prop that shows the spinner inside <va-button>.
  • Added <va-progress-tracker> and <va-progress-tracker-step> components

Merged from master

  • <va-lozenge> accepts default as type prop (with no effect)
  • Fix va-tooltip that doesn't disappear in some cases

v1.0.0-rc.6

05 Apr 15:09
Compare
Choose a tag to compare
v1.0.0-rc.6 Pre-release
Pre-release

✨ Support busy prop that shows the spinner inside <va-button>.

v1.0.0-rc.4

04 Apr 13:54
Compare
Choose a tag to compare
v1.0.0-rc.4 Pre-release
Pre-release

🔊 Add warning about usage of deprecated components (with aui- prefix)
🔊 Deprecacion of <va-spinner> in favour of AUI's webcomponent <aui-spinner>
🔒 Fix XSS in select2 in single mode
🐛 Fix misplaced select2 clear button on non-retina displays when AUI css is minified

v1.0.0-rc.3

29 Mar 08:11
Compare
Choose a tag to compare
v1.0.0-rc.3 Pre-release
Pre-release

Braking

aui-spinner is no longer exported in a deprecated version as it conflicts with AUI webcomponent. Use va-spinner to use old version or just aui-spinner for AUI webcomponent.

v0.15.13

14 Mar 10:44
Compare
Choose a tag to compare
v0.15.13 Pre-release
Pre-release
  • Default lozenge can now be passed as type prop
  • Fix tooltip that doesn't disappear in some cases