New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vue-multi-picker

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-multi-picker - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

18

dist/index.common.js

@@ -169,3 +169,3 @@ 'use strict';

return {
period: Object.freeze(moment({ d: 1 })),
period: moment({ d: 1 }),
nextStart: null,

@@ -197,6 +197,6 @@ nextEnd: null

prev: function prev() {
this.period = Object.freeze(this.period.clone().subtract(1, 'M'));
this.period = this.period.clone().subtract(1, 'M');
},
next: function next() {
this.period = Object.freeze(this.period.clone().add(1, 'M'));
this.period = this.period.clone().add(1, 'M');
}

@@ -226,3 +226,3 @@ },

return {
period: Object.freeze(moment({ d: 1 }))
period: moment({ d: 1 })
};

@@ -273,6 +273,6 @@ },

prev: function prev() {
this.period = Object.freeze(this.period.clone().subtract(1, 'M'));
this.period = this.period.clone().subtract(1, 'M');
},
next: function next() {
this.period = Object.freeze(this.period.clone().add(1, 'M'));
this.period = this.period.clone().add(1, 'M');
}

@@ -300,3 +300,3 @@ }

return {
period: Object.freeze(moment({ M: 0, d: 1 }))
period: moment({ M: 0, d: 1 })
};

@@ -334,6 +334,6 @@ },

prev: function prev() {
this.period = Object.freeze(this.period.clone().subtract(1, 'y'));
this.period = this.period.clone().subtract(1, 'y');
},
next: function next() {
this.period = Object.freeze(this.period.clone().add(1, 'y'));
this.period = this.period.clone().add(1, 'y');
}

@@ -340,0 +340,0 @@ }

{
"name": "vue-multi-picker",
"version": "0.0.5",
"version": "0.0.6",
"description": "A multi function date picker",

@@ -5,0 +5,0 @@ "keywords": "datepicker weekpicker monthpicker",

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc