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

@forter/calendar

Package Overview
Dependencies
Maintainers
3
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forter/calendar - npm Package Compare versions

Comparing version 1.3.6 to 1.3.7

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [1.3.7](https://github.com/forter/web-components/compare/@forter/calendar@1.3.6...@forter/calendar@1.3.7) (2024-02-06)
### Bug Fixes
* **calendar:** change the year picker limits ([da32a66](https://github.com/forter/web-components/commit/da32a66))
## [1.3.6](https://github.com/forter/web-components/compare/@forter/calendar@1.3.5...@forter/calendar@1.3.6) (2022-04-14)

@@ -8,0 +19,0 @@

6

FcCalendar.js

@@ -9,2 +9,4 @@ import { decorate as _decorate } from './_virtual/_rollupPluginBabelHelpers.js';

const getCurrentYear = () => new Date().getFullYear();
const DEFAULT_OPTIONS = {

@@ -27,4 +29,4 @@ element: {},

dropdowns: {
minYear: 2015,
maxYear: new Date().getFullYear() + 5,
minYear: getCurrentYear() - 3,
maxYear: getCurrentYear(),
months: true,

@@ -31,0 +33,0 @@ years: true

{
"name": "@forter/calendar",
"version": "1.3.6",
"version": "1.3.7",
"description": "calendar from Forter Components",

@@ -54,3 +54,3 @@ "author": "Forter Developers",

},
"gitHead": "cd686673981d26249295fd5e04b3c947abdf8e8c"
"gitHead": "377736e1224902471555b4169c79507d8c49a8e0"
}

@@ -8,2 +8,4 @@ import { LitElement, html, property } from 'lit-element';

const getCurrentYear = () => (new Date()).getFullYear();
const DEFAULT_OPTIONS = {

@@ -26,4 +28,4 @@ element: {},

dropdowns: {
minYear: 2015,
maxYear: (new Date().getFullYear()) + 5,
minYear: getCurrentYear() - 3,
maxYear: getCurrentYear(),
months: true,

@@ -30,0 +32,0 @@ years: true,

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