Skip to content

Commit

Permalink
Development master (#2803)
Browse files Browse the repository at this point in the history
* Fix #2788 (#2790)

Break if current range-start is clicked to prevent infinite loop

* adding placement option (#2789)

* fixes #2785 (#2797)

* fixes #2785
fixes #2783
fixes #2768
improves docs flow

* fixed plugin/locale missing type defs

* 2791 more tests (#2800)

* validation tests
* update datetime tests
* "dates" tests
* actions tests

* fixing infinity loop bug in date range (#2798)

* Improvements (#2801)

* fixes #2795
* fixes #2784
* fixes #2687
* fixes #2786
* resolves #2764 
* fix repl cdn links
* fix date range bug

* version 6.7.7

* version 6.7.7

---------

Co-authored-by: iTzVirtual_ <[email protected]>
Co-authored-by: Killian Hale <[email protected]>
Co-authored-by: GitHub User <[email protected]>
  • Loading branch information
4 people authored Apr 22, 2023
1 parent fbb65fa commit efba21a
Show file tree
Hide file tree
Showing 130 changed files with 4,055 additions and 6,318 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/feature-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
uses: actions/checkout@v3
- name: Setup
uses: ./.github/workflows/base
with:
registry: 'https://npm.pkg.github.com'
- name: Set package version
id: set_version
run: |
Expand All @@ -44,8 +42,14 @@ jobs:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
- name: Create Release
run: npm run release:version ${{steps.set_version.outputs.VERSION }} ${{steps.set_version.outputs.NEW_VERSION }}
- name: Publish package
run: |
npm publish --access public --registry https://npm.pkg.github.com/
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Create Tag
uses: actions/github-script@v6
with:
script: |
const {DIST_VERSION} = process.env
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: `refs/tags/${{steps.set_version.outputs.NEW_VERSION }}`,
sha: context.sha
})
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/R6R53OEFF)

[![Rate on Openbase](https://badges.openbase.com/js/rating/@eonasdan/tempus-dominus.svg)](https://openbase.com/js/@eonasdan/tempus-dominus?utm_source=embedded&utm_medium=badge&utm_campaign=rate-badge)

# Tempus Dominus Date/Time Picker v6.4.4
# Tempus Dominus Date/Time Picker v6.7.7

Tempus Dominus is a powerful and robust date time picker for javascript. Version 6 is another major rewrite over the previous version. V6 is written with modern browsers in mind and is written in typescript. Bootstrap, momentjs and jQuery are no longer required dependencies. Popper2 is all that is required for the picker to position correctly. If you still require jQuery (seriously, you should move off that asap) there's a jQuery provider that wraps the native js functions.

Expand Down
2 changes: 1 addition & 1 deletion dist/js/jQuery-provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*global $, tempusDominus */

/*!
* Tempus Dominus v6.4.4 (https://getdatepicker.com/)
* Tempus Dominus v6.7.7 (https://getdatepicker.com/)
* Copyright 2013-2021 Jonathan Peterson
* Licensed under MIT (https://github.com/Eonasdan/tempus-dominus/blob/master/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/js/jQuery-provider.min.js

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

Loading

0 comments on commit efba21a

Please sign in to comment.