shared-ritm 1.0.90 → 1.0.91

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": "shared-ritm",
3
- "version": "1.0.90",
3
+ "version": "1.0.91",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -8,6 +8,8 @@
8
8
  :type="inputType"
9
9
  autocomplete="h87h58g7h8hd"
10
10
  :readonly="readonly || field"
11
+ :disable="disabled"
12
+ :placeholder="placeholder"
11
13
  >
12
14
  </q-input>
13
15
  </template>
@@ -72,6 +74,7 @@ interface AppQInputProps {
72
74
  | 'date'
73
75
  | undefined
74
76
  debounce?: string | number | undefined
77
+ disabled?: boolean | undefined
75
78
  maxlength?: string | number | undefined
76
79
  autogrow?: boolean | undefined
77
80
  inputClass?: any | undefined
@@ -81,6 +84,7 @@ interface AppQInputProps {
81
84
  onFocus?: (evt: Event) => void
82
85
  onBlur?: (evt: Event) => void
83
86
  onClick?: (evt: Event) => void
87
+ placeholder?: string | undefined
84
88
  }
85
89
 
86
90
  interface AppInputProps extends AppQInputProps {