Releases: dmuy/duDialog
Releases · dmuy/duDialog
v1.1.5
duDialog v1.1.4
duDialog v1.1.3
- 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
Updates (since v1.1.1)
- Converted into a js project using node and rollup; used scss for the styles - src
- Moved
type
parameter tooptions.buttons
- Renamed button type
NO_ACTION
toNONE
- Changed button type
NONE
value from3
to0
- Renamed button type
- Renamed
message
parameter tocontent
- 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
Updates
- Moved
type
dialog parameter tooptions.buttons
- Renamed
message
dialog parameter tocontent
- Renamed button type
NO_ACTION
toNONE
- Renamed
DUDialog
class to_duDialog
- Minor code fixes/improvements
duDialog v1.1.2-rc
Updates & fixes
duDialog v1.1.1
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 methodminRequired
- Added
maxSelect
config for multi select dialog - restricts the maximum selection; with callback methodmaxReached
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
- Added
dark
configuration which determines if dark mode is on
duDialog v1.1.1-rc
- Added
Element.matches
polyfill for IE11 - Removed
:scope
in querySelectors which causes an error in IE11
duDialog v1.1.0
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