Skip to content

Releases: Adslot/adslot-ui

v24.0.0

23 Jan 04:12
b918f0b
Compare
Choose a tag to compare

This release aims to remove duplication, merge functionality, and reduce package size.

Breaking Change Migration

SpinnerButton

SpinnerButton has now been merged with Button. A replace all SpinnerButton with Button should resolve issues. Some tests may fail should you be

expect(shallow(component).find(Button)).to.have.length(1)

may now return 2.

Check your tests, consider using the supported dts prop to select e.g.

expect(shallow(component).find(Button).filter({ dts: 'save-button'})).to.have.length(1)

Moment

The dependency, moment, has now been removed from the bundle. It is required by the DatePicker component. If you are using the datepicker component you will now need to include moment as part of your package.json

Extras

If you were previously including core.js and extras.js you now need to just include main.js. extras has now been deprecated in favour of one, consolidated, bundle. The reason for the previous split was to do with the above datepicker/moment/moment-tz bundle causing the bundle to be massive. If you are using moment locales in the datepicker, you may need to read the datepicker/moment docs on locales.

AlertInput onFocus prop addition

18 Oct 03:32
Compare
Choose a tag to compare
Merge pull request #636 from Adslot/alert-input-onfocus-prop

New: AlertInput onFocus prop addition

23.1.0

15 Oct 23:45
Compare
Choose a tag to compare

Mostly bug fixes and documentation cleanup. Thanks to @sonhanguyen @lightbringer1991 @lteacher @vinteo for this release :)

v14.2.0

21 Dec 22:29
Compare
Choose a tag to compare

MINOR

#471 - New: Spinner Button Component (wraps Bootstrap Button with isLoading state) (@sonhanguyen)

PATCH

#475 - Fix: Remove default sort ordering (assume array already sorted) (@mdotwills)

14.1.0

12 Dec 03:05
Compare
Choose a tag to compare

MINOR

#465 - Add: Tree Picker option to hide SVG (@pphminions)

PATCH

#401 - Fix: Close icon for modals (@patrick-ivers)

14.0.0

07 Dec 00:17
Compare
Choose a tag to compare

WooHoo! 🍰

After an arduous upgrade process, we're back in business. Nothing major to note, despite the breaking SemVer release. This release catches up on all those Greenkeeper.io PRs; new react version with performance improvements and stricter type checking from propTypes; and some addons to treepicker nodes.

Updates

#443 Tree picker node component to support child nodes - @pphminions

Fixes

#385 ESLint wasn't being ran on .jsx files - @omgaz

11.0.1

21 Jun 23:27
Compare
Choose a tag to compare
  • added data test selectors for listpickers
  • added item type for list pickers so we know what it's a list of (useful for dts and copy)
  • BREAKING: renamed listpickers controllerFormatter to addonFormatter. If used, please update.

10.1.0

01 Jun 03:53
Compare
Choose a tag to compare
  • Code coverage has returned to 100% (and we now log it to the terminal when you run npm run test)
  • Update to how we do help-text within a label in horizontal forms (help-block is nested inside a label with a .control-label class)
    • Using "recommended" as opposed to "optional" for non-mandatory fields. Implies that we'd like them filled but not necessary as opposed to optional which we feel was too blasé.
  • Fixed build errors and warnings

10.0.0

23 May 03:18
Compare
Choose a tag to compare
  • Update: Dependencies
  • New: PrettyDiff component
  • Breaking: Fix inline Datepicker (#223)
    • Datepickers are now display: block, please upgrade accordingly (see Main.js for example)
  • New: Data test selectors for confirmation modal and list picker elements
  • Update: README.md
  • Fix: Build/Linting
  • Update: Node switched to LTS 4.4.4

9.6.0

18 May 05:10
Compare
Choose a tag to compare

Add option for ListPickerPure to have single/multiple selections