Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: add eslint rules #604

Merged
merged 4 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
message="chore(release): %s :tada:"
registry='https://registry.npmjs.org'
80 changes: 40 additions & 40 deletions packages/docs-next/components/Autocomplete.md

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions packages/docs-next/components/Button.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@ title: Button

### Props

| Prop name | Description | Type | Values | Default |
| ---------- | --------------------------------------------------- | ------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| disabled | Button will be disabled | boolean | - | |
| expanded | Button will be expanded (full-width) | boolean | - | |
| iconBoth | | boolean | - | |
| iconLeft | Icon name to show on the left | string | - | |
| iconPack | Icon pack to use | string | `mdi`, `fa`, `fas and any other custom icon pack` | |
| iconRight | Icon name to show on the right | string | - | |
| inverted | | boolean | - | |
| label | Button label, unnecessary when default slot is used | string | - | undefined |
| loading | Loading style | boolean | - | |
| nativeType | Button type, like native | string | - | 'button' |
| outlined | Outlined style | boolean | - | |
| override | | boolean | - | |
| rounded | Rounded style | boolean | - | <div><small>From <b>config</b>:</small></div><code style='white-space: nowrap; padding: 0;'> button: {<br>&nbsp;&nbsp;rounded: false<br>}</code> |
| size | Size of button, optional | string | `small`, `medium`, `large` | |
| tag | Button tag name | string \| Component | `button`, `a`, `input`, `router-link`, `nuxt-link (or other nuxt alias)` | 'button' |
| variant | Color of the control, optional | string | `primary`, `info`, `success`, `warning`, `danger`, `and any other custom color` | |
| Prop name | Description | Type | Values | Default |
| ---------- | --------------------------------------------------- | ------------------- | ------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| disabled | Button will be disabled | boolean | - | |
| expanded | Button will be expanded (full-width) | boolean | - | |
| iconBoth | | boolean | - | |
| iconLeft | Icon name to show on the left | string | - | |
| iconPack | Icon pack to use | string | `mdi`, `fa`, `fas and any other custom icon pack` | |
| iconRight | Icon name to show on the right | string | - | |
| inverted | | boolean | - | |
| label | Button label, unnecessary when default slot is used | string | - | undefined |
| loading | Loading style | boolean | - | |
| nativeType | Button type, like native | string | - | "button" |
| outlined | Outlined style | boolean | - | |
| override | | boolean | - | |
| rounded | Rounded style | boolean | - | <div><small>From <b>config</b>:</small></div><code style='white-space: nowrap; padding: 0;'>button: {<br>&nbsp;&nbsp;rounded: false<br>}</code> |
| size | Size of button, optional | string | `small`, `medium`, `large` | |
| tag | Button tag name | string \| Component | `button`, `a`, `input`, `router-link`, `nuxt-link (or other nuxt alias)` | "button" |
| variant | Color of the control, optional | string | `primary`, `info`, `success`, `warning`, `danger`, `and any other custom color` | |

### Slots

Expand Down
Loading
Loading