@everymatrix/cashier-method-details 1.34.2 → 1.34.3

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/cashier-method-details",
3
- "version": "1.34.2",
3
+ "version": "1.34.3",
4
4
  "main": "index.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "99004a0501ea8fb9219aac803a986e470f556838"
38
+ "gitHead": "4e28e0c3c1affa9d973865e59eaf5af69fcddede"
39
39
  }
@@ -52,8 +52,8 @@
52
52
  this.description = element.Description || null;
53
53
  this.type = fieldTypeMap.get(element.Type) || null;
54
54
  this.defaultValue = this.calcDefaultValue(element);
55
- this.format = this.setPlaceHolderOrFormat(element, FieldParams.Format);
56
- this.placeholder = this.setPlaceHolderOrFormat(element, FieldParams.Placeholder);
55
+ this.format = this.setPlaceholderOrFormat(element, FieldParams.Format);
56
+ this.placeholder = this.setPlaceholderOrFormat(element, FieldParams.Placeholder);
57
57
  this.isReadonly = element.IsReadonly || false;
58
58
  this.isRequired = element.IsRequired || false;
59
59
  this.maxValue = this.setValue(element, FieldParams.MaxValue);