Skip to content

Commit 49ad0d8

Browse files
Updating docs
1 parent 78d1f99 commit 49ad0d8

File tree

2 files changed

+29
-11
lines changed

2 files changed

+29
-11
lines changed

src/stores/menu.ts

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,37 +10,43 @@ export const useMenuStore = defineStore('menu', () => {
1010
{
1111
href: '#components-v-inline-checkbox',
1212
icon: 'mdi:mdi-checkbox-outline',
13-
key: 'v-checkbox',
13+
key: 'v-inline-checkbox',
1414
link: `${links.vuetify}en/api/v-checkbox/`,
15-
title: 'VCheckbox',
15+
title: 'VInlineCheckbox',
16+
topTitle: 'VCheckbox',
17+
1618
},
1719
{
1820
href: '#components-v-inline-select',
1921
icon: 'mdi:mdi-format-list-bulleted',
20-
key: 'v-select',
22+
key: 'v-inline-select',
2123
link: `${links.vuetify}en/api/v-select/`,
22-
title: 'VSelect',
24+
title: 'VInlineSelect',
25+
topTitle: 'VSelect',
2326
},
2427
{
2528
href: '#components-v-inline-switch',
2629
icon: 'mdi:mdi-toggle-switch-off-outline',
27-
key: 'v-switch',
30+
key: 'v-inline-switch',
2831
link: `${links.vuetify}en/api/v-switch/`,
29-
title: 'VSwitch',
32+
title: 'VInlineSwitch',
33+
topTitle: 'VSwitch',
3034
},
3135
{
3236
href: '#components-v-inline-textarea',
3337
icon: 'mdi:mdi-text-long',
34-
key: 'v-textarea',
38+
key: 'v-inline-textarea',
3539
link: `${links.vuetify}en/api/v-textarea/`,
36-
title: 'VTextarea',
40+
title: 'VInlineTextarea',
41+
topTitle: 'VTextarea',
3742
},
3843
{
3944
href: '#components-v-inline-text-field',
4045
icon: 'mdi:mdi-minus',
41-
key: 'v-text-field',
46+
key: 'v-inline-text-field',
4247
link: `${links.vuetify}en/api/v-text-field/`,
43-
title: 'VTextField',
48+
title: 'VInlineTextField',
49+
topTitle: 'VTextField',
4450
},
4551
];
4652

src/stores/props.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,16 @@ const sharedProps = [
159159
},
160160
{
161161
default: 'undefined',
162-
desc: "Sets the component's name attribute.",
162+
desc: "Sets the component's name attribute",
163163
name: 'name',
164164
type: 'string',
165165
},
166+
{
167+
default: true,
168+
desc: 'Adjusts padding to help the field to be vertically centered in the table cell',
169+
name: 'tableField',
170+
type: 'boolean',
171+
},
166172
{
167173
default: 'primary',
168174
desc: `${colorDesc} display value underline`,
@@ -463,6 +469,12 @@ const vInlineTextareaProps = [
463469
name: 'density',
464470
type: "VTextarea['$props']['density']",
465471
},
472+
{
473+
default: 1,
474+
desc: 'Default row count',
475+
name: 'rows',
476+
type: "VTextarea['$props']['rows']",
477+
},
466478
{
467479
default: 'underlined',
468480
desc: `${variantDesc} component`,

0 commit comments

Comments
 (0)