Skip to content

Commit

Permalink
Verion update 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dmuy committed Aug 29, 2021
1 parent 3dc6532 commit 07712a5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion demo/index.html
Expand Up @@ -152,7 +152,6 @@ <h3>Multi select</h3>

duDatepicker('#multipicker', {
theme: 'blue', multiple: true, format: 'mm/dd/yyyy',
// value: '07/01/2021,06/01/2021',
value: ['06/01/2021','07/01/2021'],
events: {
dateChanged: function(data) {
Expand Down
2 changes: 1 addition & 1 deletion dist/duDatepicker.js
Expand Up @@ -4292,7 +4292,7 @@
}
/**
* Sets the value of the input
* @param {(string|Date)} value The new input value. If the value specified is a string, it will be parsed using `config.format`.
* @param {(string|Date|string[])} value The new input value. If the value specified is a string, it will be parsed using `config.format`.
*/

}, {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@dmuy/datepicker",
"version": "2.0.1-rc",
"version": "2.0.1",
"description": "Date picker plugin for input fields.",
"keywords": [
"date-picker",
Expand Down
2 changes: 1 addition & 1 deletion src/duDatepicker.js
Expand Up @@ -932,7 +932,7 @@ class _duDatePicker {
}
/**
* Sets the value of the input
* @param {(string|Date)} value The new input value. If the value specified is a string, it will be parsed using `config.format`.
* @param {(string|Date|string[])} value The new input value. If the value specified is a string, it will be parsed using `config.format`.
*/
setValue(value) {
if (typeof value === 'undefined')
Expand Down

0 comments on commit 07712a5

Please sign in to comment.