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

@vaadin/time-picker

Package Overview
Dependencies
Maintainers
14
Versions
414
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/time-picker - npm Package Compare versions

Comparing version 23.1.0-beta1 to 23.1.0-beta2

18

package.json
{
"name": "@vaadin/time-picker",
"version": "23.1.0-beta1",
"version": "23.1.0-beta2",
"publishConfig": {

@@ -37,9 +37,9 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/combo-box": "23.1.0-beta1",
"@vaadin/component-base": "23.1.0-beta1",
"@vaadin/field-base": "23.1.0-beta1",
"@vaadin/input-container": "23.1.0-beta1",
"@vaadin/vaadin-lumo-styles": "23.1.0-beta1",
"@vaadin/vaadin-material-styles": "23.1.0-beta1",
"@vaadin/vaadin-themable-mixin": "23.1.0-beta1"
"@vaadin/combo-box": "23.1.0-beta2",
"@vaadin/component-base": "23.1.0-beta2",
"@vaadin/field-base": "23.1.0-beta2",
"@vaadin/input-container": "23.1.0-beta2",
"@vaadin/vaadin-lumo-styles": "23.1.0-beta2",
"@vaadin/vaadin-material-styles": "23.1.0-beta2",
"@vaadin/vaadin-themable-mixin": "23.1.0-beta2"
},

@@ -51,3 +51,3 @@ "devDependencies": {

},
"gitHead": "8be43cf83102a6b9ccf309687446e590ce0164e8"
"gitHead": "f11f9245a0b5e6bf912725a501c27c24b74e7c8d"
}

@@ -19,4 +19,4 @@ /**

export interface TimePickerI18n {
parseTime: (time: string) => TimePickerTime | undefined;
formatTime: (time: TimePickerTime | undefined) => string;
parseTime(time: string): TimePickerTime | undefined;
formatTime(time: TimePickerTime | undefined): string;
clear: string;

@@ -23,0 +23,0 @@ selector: string;

@@ -373,3 +373,3 @@ /**

__validDayDivisor(step) {
// valid if undefined, or exact divides a day, or has millisecond resolution
// Valid if undefined, or exact divides a day, or has millisecond resolution
return !step || (24 * 3600) % step === 0 || (step < 1 && ((step % 1) * 1000) % 1 === 0);

@@ -459,7 +459,7 @@ }

var hh = Math.floor(msec / 1000 / 60 / 60);
const hh = Math.floor(msec / 1000 / 60 / 60);
msec -= hh * 1000 * 60 * 60;
var mm = Math.floor(msec / 1000 / 60);
const mm = Math.floor(msec / 1000 / 60);
msec -= mm * 1000 * 60;
var ss = Math.floor(msec / 1000);
const ss = Math.floor(msec / 1000);
msec -= ss * 1000;

@@ -466,0 +466,0 @@

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