frontello-ui-datepicker
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -677,3 +677,3 @@ "use strict"; | ||
this.monthAndYearLabel = document.createElement('a'); | ||
this.monthAndYearLabel.classList.add('action'); | ||
this.monthAndYearLabel.classList.add('date-action'); | ||
this.monthAndYearLabel.classList.add('month-and-year-label'); | ||
@@ -686,3 +686,3 @@ this.mainNav.append(this.monthAndYearLabel); | ||
this.actionToday = document.createElement('a'); | ||
this.actionToday.classList.add('action'); | ||
this.actionToday.classList.add('date-action'); | ||
this.actionToday.classList.add('today'); | ||
@@ -696,3 +696,3 @@ this.actionToday.innerHTML = this.config.iconNow; | ||
this.actionToday = document.createElement('a'); | ||
this.actionToday.classList.add('action'); | ||
this.actionToday.classList.add('date-action'); | ||
this.actionToday.classList.add('prev-month'); | ||
@@ -706,3 +706,3 @@ this.actionToday.innerHTML = this.config.iconLeft; | ||
this.actionToday = document.createElement('a'); | ||
this.actionToday.classList.add('action'); | ||
this.actionToday.classList.add('date-action'); | ||
this.actionToday.classList.add('next-month'); | ||
@@ -801,3 +801,3 @@ this.actionToday.innerHTML = this.config.iconRight; | ||
let hourNext = document.createElement('a'); | ||
hourNext.classList.add('action'); | ||
hourNext.classList.add('date-action'); | ||
hourNext.classList.add('next'); | ||
@@ -811,3 +811,3 @@ hourNext.innerHTML = this.config.iconTop | ||
let hourPrev = document.createElement('a'); | ||
hourPrev.classList.add('action'); | ||
hourPrev.classList.add('date-action'); | ||
hourPrev.classList.add('prev'); | ||
@@ -824,3 +824,3 @@ hourPrev.innerHTML = this.config.iconBottom; | ||
let minuteNext = document.createElement('a'); | ||
minuteNext.classList.add('action'); | ||
minuteNext.classList.add('date-action'); | ||
minuteNext.classList.add('next'); | ||
@@ -834,3 +834,3 @@ minuteNext.innerHTML = this.config.iconTop; | ||
let minutePrev = document.createElement('a'); | ||
minutePrev.classList.add('action'); | ||
minutePrev.classList.add('date-action'); | ||
minutePrev.classList.add('prev'); | ||
@@ -854,3 +854,3 @@ minutePrev.innerHTML = this.config.iconBottom; | ||
let yearPrev = document.createElement('a'); | ||
yearPrev.classList.add('action'); | ||
yearPrev.classList.add('date-action'); | ||
yearPrev.classList.add('prev'); | ||
@@ -874,3 +874,3 @@ yearPrev.innerHTML = this.config.iconTop; | ||
let yearNext = document.createElement('a'); | ||
yearNext.classList.add('action'); | ||
yearNext.classList.add('date-action'); | ||
yearNext.classList.add('next'); | ||
@@ -952,3 +952,3 @@ yearNext.innerHTML = this.config.iconBottom; | ||
this.actionClear = document.createElement('a'); | ||
this.actionClear.classList.add('action'); | ||
this.actionClear.classList.add('date-action'); | ||
this.actionClear.classList.add('clear'); | ||
@@ -969,3 +969,3 @@ this.actionClear.innerHTML = this.config.iconTimes; | ||
this.actionValidate = document.createElement('a'); | ||
this.actionValidate.classList.add('action'); | ||
this.actionValidate.classList.add('date-action'); | ||
this.actionValidate.classList.add('close'); | ||
@@ -972,0 +972,0 @@ this.actionValidate.innerHTML = this.config.iconCheck; |
{ | ||
"name": "frontello-ui-datepicker", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "Efficient vanilla datepicker", | ||
@@ -5,0 +5,0 @@ "main": "datepicker.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32382
1011