🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

nativescript-material-datetimepicker

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-material-datetimepicker - npm Package Compare versions

Comparing version
1.0.4
to
1.0.5
+24
-5
package.json
{
"name": "nativescript-material-datetimepicker",
"version": "1.0.4",
"version": "1.0.5",
"description": "NativeScript Plugin to use Material Design Date and Time Picker",

@@ -9,4 +9,10 @@ "main": "material-datetimepicker",

"platforms": {
"android": "3.0.0",
"ios": "3.0.0"
"android": "3.0.0"
},
"plugin": {
"nan": "true",
"pan": "true",
"vue": "true",
"core3": "true",
"category": "Interface"
}

@@ -34,7 +40,20 @@ },

"Android",
"iOS"
"iOS",
"material datepicker",
"material timepicker",
"nativescript datepicker",
"nativescript timepicker",
"ecosystem:nativescript",
"multishiv19",
"datetimepicker",
"datetime picker"
],
"repository": {
"type": "git",
"url": "https://github.com/shiv19/nativescript-material-datetimepicker.git"
},
"author": {
"name": "MultiShiv19",
"email": "contact@shivaprasad.me"
"email": "contact@shivaprasad.me",
"url": "https://github.com/shiv19"
},

@@ -41,0 +60,0 @@ "bugs": {

+5
-2

@@ -45,3 +45,3 @@ # nativescript-material-datetimepicker

.then((result) => {
console.log("time", "Time is: " + result.hour + ":" + result.minute);
console.log("Time is: " + result.hour + ":" + result.minute);
})

@@ -60,2 +60,3 @@ .catch((error) => {

Returns a promise that resolves to date object
```js
date: {

@@ -66,2 +67,3 @@ day: number,

}
```

@@ -71,2 +73,3 @@ `pickTime(is24HourView?): Promise<{}>;`

Returns a promise that resolves to time object
```js
time: {

@@ -76,3 +79,3 @@ hour: number,

}
```
Passing `true` to this API, shows a 24hr View timepicker.

@@ -79,0 +82,0 @@