File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
api-generator/src/locale/en
vuetify/src/components/VField Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1111 "flat" : " Removes box shadow when using a variant with elevation." ,
1212 "iconColor" : " Sets the color of the prepend/append icons." ,
1313 "id" : " Sets the DOM id on the component." ,
14+ "details" : " Controls whether the field generates an `aria-describedby` attribute for accessibility." ,
1415 "persistentClear" : " Always show the clearable icon when the input is dirty (By default it only shows on hover)." ,
1516 "prependInnerIcon" : " Creates a [v-icon](/api/v-icon/) component in the **prepend-inner** slot." ,
1617 "reverse" : " Reverses the orientation." ,
Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ export const makeVFieldProps = propsFactory({
6666 } ,
6767 color : String ,
6868 baseColor : String ,
69- details : Boolean ,
7069 dirty : Boolean ,
7170 disabled : {
7271 type : Boolean ,
@@ -119,6 +118,7 @@ export const VField = genericComponent<new <T>(
119118
120119 props : {
121120 id : String ,
121+ details : Boolean ,
122122
123123 ...makeFocusProps ( ) ,
124124 ...makeVFieldProps ( ) ,
You can’t perform that action at this time.
0 commit comments