Socket
Socket
Sign inDemoInstall

bulma-calendar

Package Overview
Dependencies
1
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.0 to 4.0.1

9

CHANGELOG.md

@@ -1,2 +0,2 @@

# [4.0.0](https://github.com/Wikiki/bulma-calendar/compare/v3.0.0...v4.0.0) (2018-06-22)
## [4.0.1](https://github.com/Wikiki/bulma-calendar/compare/v4.0.0...v4.0.1) (2018-06-22)

@@ -6,9 +6,4 @@

* **Fix date bugs & moment.js inclusion:** Switch from custom date functions to moment.js ([fe27357](https://github.com/Wikiki/bulma-calendar/commit/fe27357)), closes [#80](https://github.com/Wikiki/bulma-calendar/issues/80)
* **naming:** Fix open variable to _open ([0c182f6](https://github.com/Wikiki/bulma-calendar/commit/0c182f6))
### BREAKING CHANGES
* **Fix date bugs & moment.js inclusion:** rename startDate option to selectedDate
<a name="1.2.0"></a>

@@ -15,0 +10,0 @@ # [1.2.0](https://github.com/Wikiki/bulma-calendar/compare/1.1.10...1.2.0) (2018-04-13)

@@ -6,3 +6,3 @@ {

"style": "./dist/css/bulma-calendar.min.css",
"version": "4.0.0",
"version": "4.0.1",
"scripts": {

@@ -9,0 +9,0 @@ "commit": "git-cz",

@@ -143,3 +143,3 @@ import * as utils from './utils/type';

this.dateFormat = this.options.dateFormat = this.options.dateFormat || this.element.dataset.dataFormat || moment.localeData().longDateFormat('L');
this.open = false;
this._open = false;

@@ -273,3 +273,3 @@ this._build();

if (this.open) {
if (this._open) {
this.hide();

@@ -546,3 +546,3 @@ } else {

}
this.open = true;
this._open = true;
}

@@ -556,3 +556,3 @@

hide() {
this.open = false;
this._open = false;
this.emit('datepicker:hide', this);

@@ -559,0 +559,0 @@ this.elementContainer.classList.remove('is-active');

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