Socket
Socket
Sign inDemoInstall

react-calendar

Package Overview
Dependencies
5
Maintainers
3
Versions
87
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.11.0 to 2.11.1

10

dist/shared/locales.js

@@ -21,6 +21,8 @@ 'use strict';

if (window.navigator.languages) {
languageList.push.apply(languageList, _toConsumableArray(window.navigator.languages));
} else if (window.navigator.userLanguage) {
languageList.push(window.navigator.userLanguage);
if (typeof window !== 'undefined') {
if (window.navigator.languages) {
languageList.push.apply(languageList, _toConsumableArray(window.navigator.languages));
} else if (window.navigator.userLanguage) {
languageList.push(window.navigator.userLanguage);
}
}

@@ -27,0 +29,0 @@

16

package.json
{
"name": "react-calendar",
"version": "2.11.0",
"version": "2.11.1",
"description": "A component for picking dates or date periods for your React application.",

@@ -60,3 +60,3 @@ "main": "dist/entry.js",

"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",

@@ -68,12 +68,12 @@ "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",

"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.13.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.0.4",
"jest-cli": "^22.0.4",
"jest": "^22.0.6",
"jest-cli": "^22.0.6",
"less": "^2.7.3",

@@ -80,0 +80,0 @@ "react-test-renderer": "^16.2.0"

@@ -8,6 +8,8 @@ import once from 'lodash.once';

if (window.navigator.languages) {
languageList.push(...window.navigator.languages);
} else if (window.navigator.userLanguage) {
languageList.push(window.navigator.userLanguage);
if (typeof window !== 'undefined') {
if (window.navigator.languages) {
languageList.push(...window.navigator.languages);
} else if (window.navigator.userLanguage) {
languageList.push(window.navigator.userLanguage);
}
}

@@ -14,0 +16,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc