cignium-hypermedia-client
Advanced tools
Comparing version 1.18.1 to 1.19.0
@@ -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
413783
71
3036