quasar-ui-danx 0.3.27 → 0.3.29
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -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
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
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>
|