Skip to content

Commit

Permalink
docs: gen input page
Browse files Browse the repository at this point in the history
  • Loading branch information
jtommy committed Feb 21, 2022
1 parent 0ecb8b1 commit 13231ea
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 24 deletions.
2 changes: 2 additions & 0 deletions packages/docs/components/Autocomplete.md
Original file line number Diff line number Diff line change
Expand Up @@ -484,11 +484,13 @@ export default {
| iconPack | Icon pack to use | string | `mdi`, `fa`, `fas and any other custom icon pack` | |
| iconRight | Icon name to be added on the right side | string | - | |
| iconRightClickable | Clickable icon right if exists | boolean | - | |
| itemTag | Menu item tag name | string | - | <div>From <b>config</b></div><br><code style='white-space: nowrap; padding: 0;'> autocomplete: {<br>&nbsp;&nbsp;itemTag: 'div'<br>}</code> |
| keepFirst | The first option will always be pre-selected (easier to just hit enter or tab) | boolean | - | |
| keepOpen | Keep open dropdown list after select | boolean | - | |
| maxHeight | Max height of dropdown content | string\|number | - | |
| maxlength | Same as native maxlength, plus character counter | number\|string | - | |
| menuPosition | Position of dropdown | string | `auto`, `top`, `bottom` | 'auto' |
| menuTag | Menu tag name | string | - | <div>From <b>config</b></div><br><code style='white-space: nowrap; padding: 0;'> autocomplete: {<br>&nbsp;&nbsp;menuTag: 'div'<br>}</code> |
| openOnFocus | Open dropdown list on focus | boolean | - | |
| override | Override classes | boolean | - | false |
| rounded | Makes the element rounded | boolean | - | |
Expand Down
8 changes: 8 additions & 0 deletions packages/docs/components/Datepicker.md
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,14 @@ export default {
this.openDatePicker();
}
},
{
class: "selectListClasses",
description: "Classes to apply on select list (month and year).",
componentRef: "Select",
action: () => {
this.openDatePicker();
}
},
],
};
}
Expand Down
1 change: 1 addition & 0 deletions packages/docs/components/Dropdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ export default {
| expanded | Dropdown will be expanded (full-width) | boolean | - | |
| inline | Dropdown content (items) are shown inline, trigger is removed | boolean | - | |
| maxHeight | Max height of dropdown content | string\|number | - | <div>From <b>config</b></div><br><code style='white-space: nowrap; padding: 0;'> dropdown: {<br>&nbsp;&nbsp;maxHeight: 200<br>}</code> |
| menuTag | Dropdown menu tag name | string | - | <div>From <b>config</b></div><br><code style='white-space: nowrap; padding: 0;'> dropdown: {<br>&nbsp;&nbsp;menuTag: 'div'<br>}</code> |
| mobileBreakpoint | Mobile breakpoint as max-width value | string | - | |
| mobileModal | Dropdown content (items) are shown into a modal on mobile | boolean | - | <div>From <b>config</b></div><br><code style='white-space: nowrap; padding: 0;'> dropdown: {<br>&nbsp;&nbsp;mobileModal: true<br>}</code> |
| multiple | Allows multiple selections | boolean | - | |
Expand Down
Loading

0 comments on commit 13231ea

Please sign in to comment.