Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 486 Bytes

CHANGELOG.md

File metadata and controls

27 lines (19 loc) · 486 Bytes

Changelog

This changelog only lists notable changes. Major version are always breaking. Check individual releases (tags) and their commits to see unlisted changes.

v1.0.0 (2020-05-28)

Adds the acceptAllButton option, which changes the labels.button setting from a string to an object with multiple values.

This...

labels: {
  button: 'Ok',
},

... becomes:

labels: {
  button: {
    default: 'Save preferences',
    acceptAll: 'Accept all',
  },
},