You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Set the button variant to an outlined button or a ghost button.
45
-
*/
46
-
variant: {
47
-
type: String,
48
-
default: undefined,
49
-
required: false,
50
-
validator: (value: string)=>{
51
-
return['outline','ghost'].includes(value)
52
-
},
53
-
},
54
-
}),
16
+
button: {
17
+
type: Object,
18
+
},
55
19
/**
56
-
* The id global attribute defines an identifier (ID) that must be unique in the whole document.
20
+
* Provide valuable, actionable feedback.
21
+
*
22
+
* @since 4.3.0
57
23
*/
58
-
id: {
24
+
feedback: {
59
25
type: String,
60
-
default: undefined,
61
-
required: false,
62
26
},
63
27
/**
64
-
* Input Checkbox indeterminate Property
65
-
*/
66
-
indeterminate: Boolean,
67
-
/**
68
-
* Group checkboxes or radios on the same horizontal row by adding.
28
+
* Provide valuable, actionable feedback.
29
+
*
30
+
* @since 4.3.0
69
31
*/
70
-
inline: {
71
-
type: Boolean,
72
-
required: false,
32
+
feedbackInvalid: {
33
+
type: String,
73
34
},
74
35
/**
75
-
* Set component validation state to invalid.
36
+
* Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
37
+
*
38
+
* @since 4.3.0
76
39
*/
77
-
invalid: {
78
-
type: Boolean,
79
-
required: false,
40
+
feedbackValid: {
41
+
type: String,
80
42
},
81
43
/**
82
44
* Sets hit area to the full area of the component.
83
45
*/
84
46
hitArea: {
85
47
type: String,
86
-
required: false,
87
48
validator: (value: string): boolean=>{
88
49
// The value must match one of these strings
89
50
return['full'].includes(value)
90
51
},
91
52
},
53
+
/**
54
+
* The id global attribute defines an identifier (ID) that must be unique in the whole document.
55
+
*/
56
+
id: {
57
+
type: String,
58
+
},
59
+
/**
60
+
* Input Checkbox indeterminate Property
61
+
*/
62
+
indeterminate: Boolean,
63
+
/**
64
+
* Group checkboxes or radios on the same horizontal row by adding.
65
+
*/
66
+
inline: {
67
+
type: Boolean,
68
+
},
69
+
/**
70
+
* Set component validation state to invalid.
71
+
*/
72
+
invalid: Boolean,
92
73
/**
93
74
* The element represents a caption for a component.
94
75
*/
95
76
label: {
96
77
type: String,
97
-
default: undefined,
98
-
required: false,
99
78
},
100
79
/**
101
80
* The default name for a value passed using v-model.
102
81
*/
103
82
modelValue: {
104
83
type: [Boolean,String],
105
84
value: undefined,
106
-
required: false,
107
85
},
86
+
/**
87
+
* Display validation feedback in a styled tooltip.
* Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
0 commit comments