Skip to content

Commit a548e28

Browse files
authored
docs(VField): keep details prop scoped to VField (#22268)
1 parent 3d373c2 commit a548e28

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/api-generator/src/locale/en/VField.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
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.",

packages/vuetify/src/components/VField/VField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(),

0 commit comments

Comments
 (0)