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

cignium-hypermedia-client

Package Overview
Dependencies
Maintainers
1
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cignium-hypermedia-client - npm Package Compare versions

Comparing version 1.18.1 to 1.19.0

__tests__/datetime-picker-tests.js

2

package.json

@@ -61,3 +61,3 @@ {

},
"version": "1.18.1"
"version": "1.19.0"
}

@@ -0,1 +1,19 @@

export function allMinutes() {
const minutes = []
for (let i = 0; i < 60; i++) {
minutes.push(i)
}
return minutes
}
export function allHours() {
const hours = []
for (let i = 0; i < 24; i++) {
hours.push(i)
}
return hours
}
export function lastDayInMonth(year, month) {

@@ -2,0 +20,0 @@ return new Date(Date.UTC(year, month + 1, 0)).getUTCDate()

import BooleanList from './boolean-list'
import Checkbox from './checkbox'
import DatePicker from './date/date-picker'
import DateTimePicker from './date/datetime-picker'
import DropdownList from './dropdown-list'

@@ -13,2 +14,3 @@ import MultilineTextInput from './multiline-text-input'

case 'date': return DatePicker
case 'datetime': return DateTimePicker
case 'number': return NumberInput

@@ -15,0 +17,0 @@ case 'string':

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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