cordova-plugin-cronapp-decimal-keyboard 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package-lock.json +5 -0
- package/package.json +4 -3
- package/plugin.xml +7 -8
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cordova-plugin-cronapp-decimal-keyboard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Plugin to display decimal keyboard on Cordova and Phonegap applications",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
+
"build": "exit 0",
|
|
7
8
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
9
|
},
|
|
9
10
|
"repository": {
|
|
@@ -12,7 +13,7 @@
|
|
|
12
13
|
},
|
|
13
14
|
"keywords": [
|
|
14
15
|
"cordova",
|
|
15
|
-
"decimal",
|
|
16
|
+
"decimal",
|
|
16
17
|
"cronapp",
|
|
17
18
|
"keypad"
|
|
18
19
|
],
|
|
@@ -22,4 +23,4 @@
|
|
|
22
23
|
"url": "https://github.com/CronApp/cordova-plugin-cronapp-decimal-keyboard/issues"
|
|
23
24
|
},
|
|
24
25
|
"homepage": "https://github.com/CronApp/cordova-plugin-cronapp-decimal-keyboard/blob/master/README.md"
|
|
25
|
-
}
|
|
26
|
+
}
|
package/plugin.xml
CHANGED
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
|
|
3
|
-
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-cronapp-decimal-keyboard" version="1.0.1">
|
|
2
|
+
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-cronapp-decimal-keyboard" version="1.0.4">
|
|
4
3
|
<name>Decimal Keyboard</name>
|
|
5
4
|
<description>Cordova Decimal Keyboard Plugin</description>
|
|
6
5
|
<license>Apache 2.0</license>
|
|
7
6
|
<keywords>cordova,keyboard, decimal keyboard</keywords>
|
|
8
7
|
|
|
9
8
|
<engines>
|
|
10
|
-
<engine name="cordova" version="
|
|
9
|
+
<engine name="cordova" version=">=3.2.0"/>
|
|
11
10
|
</engines>
|
|
12
11
|
|
|
13
12
|
<js-module src="www/decimal-keyboard.js" name="decimalKeyboard">
|
|
14
|
-
<clobbers target="window.DecimalKeyboard"
|
|
13
|
+
<clobbers target="window.DecimalKeyboard"/>
|
|
15
14
|
</js-module>
|
|
16
15
|
|
|
17
16
|
<!-- ios -->
|
|
18
17
|
<platform name="ios">
|
|
19
18
|
<config-file target="config.xml" parent="/*">
|
|
20
19
|
<feature name="DecimalKeyboard">
|
|
21
|
-
<param name="ios-package" value="CDVDecimalKeyboard" onload="true"
|
|
20
|
+
<param name="ios-package" value="CDVDecimalKeyboard" onload="true"/>
|
|
22
21
|
</feature>
|
|
23
22
|
</config-file>
|
|
24
23
|
|
|
25
|
-
<header-file src="src/ios/CDVDecimalKeyboard.h"
|
|
26
|
-
<source-file src="src/ios/CDVDecimalKeyboard.m"
|
|
24
|
+
<header-file src="src/ios/CDVDecimalKeyboard.h"/>
|
|
25
|
+
<source-file src="src/ios/CDVDecimalKeyboard.m"/>
|
|
27
26
|
</platform>
|
|
28
|
-
</plugin>
|
|
27
|
+
</plugin>
|