@roadtrip/components 2.30.0 → 2.30.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.
@@ -69,7 +69,7 @@ let PlateNumber = class {
69
69
  this.onInput = (ev) => {
70
70
  const input = ev.target;
71
71
  if (input) {
72
- this.value = input.value.toUpperCase() || '';
72
+ this.value = input.value.toUpperCase() || "";
73
73
  }
74
74
  this.roadinput.emit(ev);
75
75
  this.roadInput.emit(ev);
@@ -53,7 +53,7 @@ export class PlateNumber {
53
53
  this.onInput = (ev) => {
54
54
  const input = ev.target;
55
55
  if (input) {
56
- this.value = input.value.toUpperCase() || '';
56
+ this.value = input.value.toUpperCase() || "";
57
57
  }
58
58
  this.roadinput.emit(ev);
59
59
  this.roadInput.emit(ev);
@@ -65,7 +65,7 @@ let PlateNumber = class {
65
65
  this.onInput = (ev) => {
66
66
  const input = ev.target;
67
67
  if (input) {
68
- this.value = input.value.toUpperCase() || '';
68
+ this.value = input.value.toUpperCase() || "";
69
69
  }
70
70
  this.roadinput.emit(ev);
71
71
  this.roadInput.emit(ev);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roadtrip/components",
3
- "version": "2.30.0",
3
+ "version": "2.30.1",
4
4
  "description": "Web Component library for Roadtrip Design System",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://gitlab.com/mobivia-design/roadtrip/components",