-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
2,289 additions
and
646 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.eslintcache | ||
.idea | ||
/node_modules/ | ||
/coverage/ | ||
/coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npx lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ignore artifacts: | ||
build | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"editor.tabSize": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
MultiDatesPicker for jQuery UI | ||
============================== | ||
# MultiDatesPicker for jQuery UI | ||
|
||
![codecov](https://codecov.io/gh/dubrox/Multiple-Dates-Picker-for-jQuery-UI/branch/main/graph/badge.svg) | ||
|
||
This plugin extends the jQuery UI datepicker clendar, allowing to select more than one date, | ||
This plugin extends the jQuery UI datepicker clendar, allowing to select more than one date, | ||
picking them one by one or by ranges relative to the clicked date. | ||
|
||
Take a look at [some demos](http://dubrox.github.io/Multiple-Dates-Picker-for-jQuery-UI/#demos). | ||
|
||
## Install | ||
|
||
With any of the following package managers: | ||
With any of the following package managers: | ||
|
||
`bower install jquery-ui-multidatespicker` | ||
|
||
`npm install jquery-ui-multidatespicker` | ||
|
||
`yarn add jquery-ui-multidatespicker` | ||
|
||
Download the [zip](https://github.com/dubrox/Multiple-Dates-Picker-for-jQuery-UI/archive/latest.zip) | ||
Download the [zip](https://github.com/dubrox/Multiple-Dates-Picker-for-jQuery-UI/archive/latest.zip) | ||
and place wherever you need it: | ||
|
||
## Use | ||
|
||
For documentation and examples, check | ||
For documentation and examples, check | ||
[the official MDP page](https://dubrox.github.io/Multiple-Dates-Picker-for-jQuery-UI). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,28 +2,12 @@ | |
"name": "jquery-ui-multidatespicker", | ||
"description": "Extension to the jQuery UI Calendar allowing multiple selections", | ||
"license": "(MIT OR GPLv2)", | ||
"authors": [ | ||
"Luca Lauretta <[email protected]>" | ||
], | ||
"main": [ | ||
"jquery-ui.multidatespicker.js", | ||
"jquery-ui.multidatespicker.css" | ||
], | ||
"authors": ["Luca Lauretta <[email protected]>"], | ||
"main": ["jquery-ui.multidatespicker.js", "jquery-ui.multidatespicker.css"], | ||
"dependencies": { | ||
"jquery": "1.9.1 - 3.7.x", | ||
"jquery-ui": "1.7.0 - 1.14.x" | ||
}, | ||
"keywords": [ | ||
"jquery", | ||
"jquery-ui", | ||
"calendar", | ||
"dates" | ||
], | ||
"ignore": [ | ||
"**/.*", | ||
"*.ico", | ||
"*.png", | ||
"package.json", | ||
"index.html" | ||
] | ||
} | ||
"keywords": ["jquery", "jquery-ui", "calendar", "dates"], | ||
"ignore": ["**/.*", "*.ico", "*.png", "package.json", "index.html"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import globals from "globals"; | ||
import pluginJs from "@eslint/js"; | ||
import eslintConfigPrettier from "eslint-config-prettier"; | ||
|
||
/** @type {import('eslint').Linter.Config[]} */ | ||
export default [ | ||
{ languageOptions: { globals: globals.browser } }, | ||
eslintConfigPrettier, | ||
pluginJs.configs.recommended, | ||
{ | ||
rules: { | ||
"no-fallthrough": "off", | ||
"no-undef": "warn", | ||
"no-unused-vars": "warn", | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.