@progressive-development/pd-forms 0.1.49 → 0.1.50
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.json +2 -2
- package/src/PdInput.js +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Webcomponent pd-forms following open-wc recommendations",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"author": "PD Progressive Development",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.50",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"module": "index.js",
|
|
9
9
|
"scripts": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@lit-labs/motion": "^1.0.5",
|
|
23
23
|
"@lit/localize": "^0.11.4",
|
|
24
|
-
"@progressive-development/pd-icon": "^0.1.
|
|
24
|
+
"@progressive-development/pd-icon": "^0.1.17",
|
|
25
25
|
"@progressive-development/pd-shared-styles": "0.1.1",
|
|
26
26
|
"lit": "^2.8.0"
|
|
27
27
|
},
|
package/src/PdInput.js
CHANGED
|
@@ -71,7 +71,7 @@ export class PdInput extends PdBaseInputElement {
|
|
|
71
71
|
secret: { type: Boolean }, // True for type password
|
|
72
72
|
minlength: { type: String },
|
|
73
73
|
maxlength: { type: String }, // max length for field,
|
|
74
|
-
onlyNumbers: { type: Boolean }, // if only numbers allowed
|
|
74
|
+
onlyNumbers: { type: Boolean }, // if only numbers allowed => Refactor => dafür war type number vorgesehen, dieses attribut wird entfernt und auf type=number umgestellt
|
|
75
75
|
};
|
|
76
76
|
}
|
|
77
77
|
|