Skip to content

FOUR-6854 Replacing the Datepicker! #376

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

Merged
merged 19 commits into from
Feb 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
03699fd
FOUR-6854 Added vue-date-pick
Oct 31, 2022
a416274
FOUR-6854 Replaced the Datepicker component and ran the prettier/lint…
Oct 31, 2022
807a1d4
FOUR-6854 Cleaning DatePicker and simplifying some logic
josechirivella Nov 11, 2022
4a37ec0
FOUR-6854 Added functionality to parse and format dates
josechirivella Nov 15, 2022
4819ffa
FOUR-6854 Removed luxon from our dependencies and setting the current…
josechirivella Nov 17, 2022
e36721c
FOUR-6854 Added v-once since the helper gets executed only once and i…
josechirivella Dec 1, 2022
fdb7bc9
FOUR-6854 Removing the $attrs, moved the config object to be a comput…
josechirivella Dec 7, 2022
a3f7614
FOUR-6854 Moving attributes to the inputAttribute instead of the cont…
josechirivella Dec 9, 2022
46cdcd6
FOUR-6854 Added submitDate method which is submitting an emitter
josechirivella Dec 13, 2022
11e2817
FOUR-6854 MaxDate working, testing minDate
josechirivella Dec 14, 2022
531f680
FOUR-6854 Added functionality for minDate and maxDate
Dec 15, 2022
d4505a6
Merge remote-tracking branch 'origin/FOUR-6854' into FOUR-6854
Dec 15, 2022
0682023
FOUR-6854 Added minDate and maxDate functionality
Dec 21, 2022
9835c78
FOUR-6854 Cleanup the old code for minMaxDate and renamed the func to…
Dec 22, 2022
329ec92
FOUR-6854 Added styling for head cells to fix a styling issue with th…
Dec 23, 2022
822b5de
FOUR-6854 Fixed the logic for parsing the input date
Jan 5, 2023
b5e0ad9
Merge branch 'develop' into FOUR-6854
Jan 5, 2023
c3da2c3
FOUR-6854 Removed dead code and console.logs
Jan 6, 2023
90ee227
FOUR-6854 Added the extent of DatePick library
Jan 9, 2023
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
92 changes: 13 additions & 79 deletions package-lock.json

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

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"@tinymce/tinymce-vue": "2.0.0",
"bootstrap": "^4.5.3",
"jquery": "^3.5.1",
"luxon": "^1.11.3",
"moment": "^2.29.1",
"moment-timezone": "^0.5.26",
"popper.js": "^1.14.4",
Expand All @@ -31,7 +30,7 @@
"v-calendar": "^0.9.7",
"validatorjs": "^3.22.1",
"vue": "^2.6.12",
"vue-bootstrap-datetimepicker": "^5.0.1",
"vue-date-pick": "^1.5.1",
"vue-uniq-ids": "^1.0.0",
"weekstart": "^1.0.0"
},
Expand Down
Loading