Skip to content

Releases: dmuy/duDialog

v1.1.5

16 Apr 10:55
Compare
Choose a tag to compare

Minor Updates

  • added Vue 3 support: plugin, usage
  • upgraded dev dependencies

duDialog v1.1.4

25 Apr 06:50
Compare
Choose a tag to compare
  • Added hideOnAction config - which auto hides the dialog whenever an action button is clicked if set to true
  • Added optOutCb & optOutText more info
  • Added dialog loading state - call setLoading() more info

duDialog v1.1.3

29 Aug 14:59
Compare
Choose a tag to compare
  • Added YES_NO_CANCEL type
  • Added functionality to group items - format here
  • Added confirmSelect config to add confirmation buttons for single select dialog
  • Fixes

duDialog v1.1.2

02 Oct 02:32
Compare
Choose a tag to compare

Updates (since v1.1.1)

  • Converted into a js project using node and rollup; used scss for the styles - src
  • Moved type parameter to options.buttons
    • Renamed button type NO_ACTION to NONE
    • Changed button type NONE value from 3 to 0
  • Renamed message parameter to content
  • Renamed DUDialog class to _duDialog
  • Added plugin script (vue-dialog.js) for Vue
  • Updated README file and moved documentation to Wiki

duDialog v1.1.2-rc2

25 Sep 12:35
Compare
Choose a tag to compare

Updates

  • Moved type dialog parameter to options.buttons
  • Renamed message dialog parameter to content
  • Renamed button type NO_ACTION to NONE
  • Renamed DUDialog class to _duDialog
  • Minor code fixes/improvements

duDialog v1.1.2-rc

17 Sep 15:43
Compare
Choose a tag to compare

Updates & fixes

duDialog v1.1.1

15 Sep 09:28
Compare
Choose a tag to compare

Updates (since v1.1.0)

  • Added Element.matches polyfill for IE11
  • Added dark configuration which determines if dark mode is on
  • Added minSelect config for multi select dialog - restricts the minimum selection required; with callback method minRequired
  • Added maxSelect config for multi select dialog - restricts the maximum selection; with callback method maxReached

Fixes (since v1.1.0)

  • Removed :scope in querySelectors which causes an error in IE11
  • Minor script and css fixes

duDialog v1.1.1-rc2

24 Aug 18:16
Compare
Choose a tag to compare
  • Added dark configuration which determines if dark mode is on

duDialog v1.1.1-rc

22 Aug 14:47
3063481
Compare
Choose a tag to compare
  • Added Element.matches polyfill for IE11
  • Removed :scope in querySelectors which causes an error in IE11

duDialog v1.1.0

27 Sep 13:17
Compare
Choose a tag to compare

What's new

  • Added allowSearch configuration (applies to selection dialog); This adds a search input on the dialog for searching select items.
  • Added onSearch callback function for customizing search algorithm (applies to selection dialog).
  • Added pulse animation on dialog for visual presentation of a modal dialog - if clicked outside the dialog (only applies to dialog with action buttons).
  • Added automatic 'scroll to' unto the selected item for single selection dialog.
  • Added itemRender callback for customizing item rendering (applies to selection dialog).
  • Added id config to add id attribute to the dialog container
  • Minor javascript/css improvements