Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/scroll select toggle prop #290

Open
wants to merge 21 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6af22b3
Merge branch 'release/2.2.0'
WilliamDASILVA Sep 14, 2019
c35c54c
Merge branch 'release/2.3.0'
WilliamDASILVA Oct 1, 2019
0d65d01
Merge branch 'release/2.3.1'
WilliamDASILVA Oct 10, 2019
76f841c
Merge branch 'release/2.4.0'
WilliamDASILVA Oct 29, 2019
557f1ab
added ability to disable auto-select of time column on scroll
eric-norcross May 12, 2020
736de60
Merge branch 'dev' of github.com:eric-norcross/vue-ctk-date-time-picker
eric-norcross May 12, 2020
40980a9
first build
eric-norcross May 12, 2020
5a2d7e4
tested in browser
eric-norcross May 12, 2020
8893292
added 'scroll-select' and changed 'noClearButton' to 'no-clear-button…
eric-norcross May 12, 2020
dee1c4f
updated to reflect example of 'no-select'
eric-norcross May 12, 2020
8c7766c
added 'scroll-select' and changed 'noClearButton' to 'no-clear-button…
eric-norcross May 12, 2020
b5cc290
removed console logs
eric-norcross May 12, 2020
e6f5ee2
removed unused test
eric-norcross May 12, 2020
8feb007
ran tests and build scripts
eric-norcross May 12, 2020
1320fcb
adding dist to make my life easier
eric-norcross May 13, 2020
4cb6ffe
Merge branch 'release/2.5.0'
WilliamDASILVA Jun 20, 2020
7c2e0c5
Merge branch 'dev' into feat/scroll-select-toggle-prop
eric-norcross Sep 28, 2020
9b7d9b5
Merge branch 'master' of github.com:eric-norcross/vue-ctk-date-time-p…
eric-norcross Sep 28, 2020
d21f23a
merged in upstream master
eric-norcross Sep 28, 2020
d84c68c
Merge branch 'master' of github.com:eric-norcross/vue-ctk-date-time-p…
eric-norcross Sep 28, 2020
ab2f9a6
tested and built
eric-norcross Sep 28, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_Store
node_modules
/dist
.nuxt

# local env files
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,10 @@ Here is an example of [UMD implementation](https://codepen.io/louismazel/pen/jQW
| disabled-weekly (11) | Array`<integer>` | no | [] |
| no-keyboard (12) | Boolean | no | false |
| right (13) | Boolean | no | false |
| noClearButton | Boolean | no | false |
| no-clear-button | Boolean | no | false |
| behaviour | Object | no | [See behaviour](#Behaviour) |
| id (14) | String | no | undefined |
| scroll-select | Boolean | no | true |

(1) hint : Is a text that replaces the label/placeholder (Ex : Error designation)

Expand Down
17 changes: 17 additions & 0 deletions dist/demo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<meta charset="utf-8">
<title>vue-ctk-date-time-picker demo</title>
<script src="https://unpkg.com/vue"></script>
<script src="./vue-ctk-date-time-picker.umd.js"></script>
<link rel="stylesheet" href="./vue-ctk-date-time-picker.css">

<div id="app">
<demo></demo>
</div>

<script>
new Vue({
components: {
demo: vue-ctk-date-time-picker
}
}).$mount('#app')
</script>
Loading