quasar-ui-danx 0.3.28 → 0.3.29

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": "quasar-ui-danx",
3
- "version": "0.3.28",
3
+ "version": "0.3.29",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
@@ -12,6 +12,7 @@
12
12
  :input-class="inputClass"
13
13
  :class="parentClass"
14
14
  stack-label
15
+ :rows="rows"
15
16
  :type="type"
16
17
  :model-value="modelValue"
17
18
  :debounce="debounce"
@@ -42,41 +43,45 @@ import LabelValueBlock from "./LabelValueBlock";
42
43
 
43
44
  defineEmits(["update:model-value", "submit"]);
44
45
  defineProps({
45
- modelValue: {
46
- type: [String, Number],
47
- default: ""
48
- },
49
- field: {
50
- type: Object,
51
- default: null
52
- },
53
- type: {
54
- type: String,
55
- default: "text"
56
- },
57
- label: {
58
- type: String,
59
- default: null
60
- },
61
- labelClass: {
62
- type: String,
63
- default: "text-sm text-gray-700"
64
- },
65
- parentClass: {
66
- type: String,
67
- default: ""
68
- },
69
- inputClass: {
70
- type: String,
71
- default: ""
72
- },
73
- noLabel: Boolean,
74
- showName: Boolean,
75
- disabled: Boolean,
76
- readonly: Boolean,
77
- debounce: {
78
- type: [String, Number],
79
- default: 0
80
- }
46
+ modelValue: {
47
+ type: [String, Number],
48
+ default: ""
49
+ },
50
+ field: {
51
+ type: Object,
52
+ default: null
53
+ },
54
+ type: {
55
+ type: String,
56
+ default: "text"
57
+ },
58
+ label: {
59
+ type: String,
60
+ default: null
61
+ },
62
+ labelClass: {
63
+ type: String,
64
+ default: "text-sm text-gray-700"
65
+ },
66
+ parentClass: {
67
+ type: String,
68
+ default: ""
69
+ },
70
+ inputClass: {
71
+ type: String,
72
+ default: ""
73
+ },
74
+ rows: {
75
+ type: Number,
76
+ default: 3
77
+ },
78
+ noLabel: Boolean,
79
+ showName: Boolean,
80
+ disabled: Boolean,
81
+ readonly: Boolean,
82
+ debounce: {
83
+ type: [String, Number],
84
+ default: 0
85
+ }
81
86
  });
82
87
  </script>