Skip to content

Commit

Permalink
docs: run codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Nov 8, 2024
1 parent 0fc9ab2 commit 84f8669
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/content/meta/CollapsibleContent.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,11 @@
'required': false
}
]" />

<EmitsTable :data="[
{
'name': 'contentFound',
'description': '',
'type': '[(void)?]'
}
]" />
8 changes: 8 additions & 0 deletions docs/content/meta/SelectValue.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,11 @@
'default': '\'\''
}
]" />

<SlotsTable :data="[
{
'name': 'selectedLabel',
'description': '',
'type': 'string[]'
}
]" />
14 changes: 12 additions & 2 deletions docs/content/meta/TagsInputRoot.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
},
{
'name': 'delimiter',
'description': '<p>The character to trigger the addition of a new tag. Also used to split tags for <code>@paste</code> event</p>\n',
'type': 'string',
'description': '<p>The character or regular expression to trigger the addition of a new tag. Also used to split tags for <code>@paste</code> event</p>\n',
'type': 'string | RegExp',
'required': false,
'default': '\',\''
},
Expand Down Expand Up @@ -111,11 +111,21 @@
]" />

<EmitsTable :data="[
{
'name': 'addTag',
'description': '<p>Event handler called when tag is added</p>\n',
'type': '[payload: AcceptableInputValue]'
},
{
'name': 'invalid',
'description': '<p>Event handler called when the value is invalid</p>\n',
'type': '[payload: AcceptableInputValue]'
},
{
'name': 'removeTag',
'description': '<p>Event handler called when tag is removed</p>\n',
'type': '[payload: AcceptableInputValue]'
},
{
'name': 'update:modelValue',
'description': '<p>Event handler called when the value changes</p>\n',
Expand Down

0 comments on commit 84f8669

Please # to comment.