toggle-components-library 1.21.0 → 1.22.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toggle-components-library",
3
- "version": "1.21.0",
3
+ "version": "1.22.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -18,6 +18,7 @@
18
18
  v-model="inputVal"
19
19
  :maxlength="maxLength"
20
20
  :disabled="disabled"
21
+ :readonly="readonly"
21
22
  />
22
23
  <label
23
24
  class="toggle-input-label-error"
@@ -88,6 +89,11 @@ export default {
88
89
  type: Boolean,
89
90
  required: false,
90
91
  default: false
92
+ },
93
+ readonly: {
94
+ type: Boolean,
95
+ required: false,
96
+ default: false
91
97
  }
92
98
  },
93
99