Socket
Socket
Sign inDemoInstall

vue-hotel-datepicker

Package Overview
Dependencies
12
Maintainers
2
Versions
100
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.4.3 to 4.5.0

dist/i18n/en.js

18

package.json
{
"name": "vue-hotel-datepicker",
"version": "4.4.3",
"version": "4.5.0",
"description": "A responsive date range picker for Vue.js that displays the number of nights selected and allow several useful options like custom check-in/check-out rules, localization support and more",

@@ -27,9 +27,2 @@ "author": "krystalcampioni <hello@krystalcampioni.com>",

"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name vueHotelDatepicker ./src/index.js",
"build-package": "vue-cli-service build --target lib --name vueHotelDatepicker ./src/index.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"files": [

@@ -65,3 +58,10 @@ "dist/*",

"vue-template-compiler": "^2.6.14"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name vueHotelDatepicker ./src/index.js",
"build-package": "vue-cli-service build --target lib --name vueHotelDatepicker ./src/index.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
}
}
}

@@ -102,2 +102,13 @@ /* eslint-disable vars-on-top */

},
getPreviousMonth(date) {
let prevMonth
if (date.getMonth() === 0) {
prevMonth = new Date(date.getFullYear() - 1, 11, 1)
} else {
prevMonth = new Date(date.getFullYear(), date.getMonth() - 1, 1)
}
return prevMonth
},
handleTouchStart(evt) {

@@ -104,0 +115,0 @@ this.isTouchMove = false

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc