This changelog only lists notable changes. Major version are always breaking. Check individual releases (tags) and their commits to see unlisted changes.
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',
},
},