cordova-plugin-cronapp-decimal-keyboard 1.0.3 → 2.9.1

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/plugin.xml +7 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cordova-plugin-cronapp-decimal-keyboard",
3
- "version": "1.0.3",
3
+ "version": "2.9.1",
4
4
  "description": "Plugin to display decimal keyboard on Cordova and Phonegap applications",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "keywords": [
14
14
  "cordova",
15
- "decimal",
15
+ "decimal",
16
16
  "cronapp",
17
17
  "keypad"
18
18
  ],
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.3">
2
+ <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-cronapp-decimal-keyboard" version="2.9.1">
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=">=3.2.0" />
9
+ <engine name="cordova" version="&gt;=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>