@radiantabyss/vue-components 1.5.0 → 1.5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@radiantabyss/vue-components",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "author": "radiantabyss.com",
5
5
  "license": "ISC",
6
6
  "eslintConfig": {
@@ -12,6 +12,11 @@ export default {
12
12
  required: false,
13
13
  default: false,
14
14
  },
15
+ readonly: {
16
+ type: Boolean,
17
+ required: false,
18
+ default: false,
19
+ },
15
20
  },
16
21
  emits: ['update:modelValue'],
17
22
  data() {
@@ -205,6 +210,7 @@ export default {
205
210
  <input class="datepicker__input input"
206
211
  :class="!is_valid ? 'datepicker__input--invalid' : ''"
207
212
  :value="text"
213
+ :readonly="readonly"
208
214
  @keyup="parse"
209
215
  @click="show = !show"
210
216
  ref="input"
@@ -20,7 +20,7 @@ a.windowpicker__value {
20
20
  .windowpicker__popup {
21
21
  display: flex;
22
22
  position: absolute;
23
- top: 32px;
23
+ top: 100%;
24
24
  left: 0;
25
25
  z-index: 20;
26
26
  overflow: hidden;