chore: fix broken docs links

This commit is contained in:
Joren Broekema 2020-06-03 12:44:19 +02:00
parent 87740606bc
commit 7b4a581a88
3 changed files with 8 additions and 11 deletions

View file

@ -31,11 +31,11 @@ export const main = () => html`
`; `;
``` ```
> Make sure that the checkbox-group also has a name attribute, this is necessary for the [lion-form](?path=/docs/forms-form-overview--page)'s serialization result. > Make sure that the checkbox-group also has a name attribute, this is necessary for the [lion-form](?path=/docs/forms-form-overview--main)'s serialization result.
## Features ## Features
Since it extends from [lion-fieldset](?path=/docs/forms-fieldset-overview--page), Since it extends from [lion-fieldset](?path=/docs/forms-fieldset-overview--main),
it has all the features a fieldset has. it has all the features a fieldset has.
## How to use ## How to use

View file

@ -18,9 +18,9 @@ export default {
We have three specific fieldset implementations: We have three specific fieldset implementations:
- [lion-form](?path=/docs/forms-form-overview--page) - [lion-form](?path=/docs/forms-form-overview--main)
- [lion-checkbox-group](?path=/docs/forms-checkbox-group--default-story) - [lion-checkbox-group](?path=/docs/forms-checkbox-group--main)
- [lion-radio-group](?path=/docs/forms-radio-group--default-story) - [lion-radio-group](?path=/docs/forms-radio-group--main)
```js story ```js story
export const main = () => html` export const main = () => html`
@ -39,7 +39,7 @@ Our fieldset instead has a label attribute or you can add a label with a div- or
- Easy retrieval of form data based on field names - Easy retrieval of form data based on field names
- Advanced user interaction scenarios via [interaction states](?path=/docs/forms-system-interaction-states--interaction-states) - Advanced user interaction scenarios via [interaction states](?path=/docs/forms-system-interaction-states--interaction-states)
- Can have [validate](?path=/docs/forms-validation-overview--page) on fieldset level and shows the validation feedback below the fieldset - Can have [validate](?path=/docs/forms-validation-examples) on fieldset level and shows the validation feedback below the fieldset
- Can disable input fields on fieldset level - Can disable input fields on fieldset level
- Accessible out of the box - Accessible out of the box
@ -65,4 +65,4 @@ import '@lion/fieldset/lion-fieldset.js';
</lion-fieldset> </lion-fieldset>
``` ```
For more examples please look at [Fieldset Examples](?path=/docs/forms-fieldset-examples--default-story). For more examples please look at [Fieldset Examples](?path=/docs/forms-fieldset-examples).

View file

@ -33,8 +33,7 @@ export const main = () => html`
- Registration mechanism for [form controls](?path=/docs/forms-system-overview--page) - Registration mechanism for [form controls](?path=/docs/forms-system-overview--page)
- Accessible out of the box - Accessible out of the box
For more information about fields that are designed for lion-form, please read For more information about fields that are designed for lion-form, please read [forms](?path=/docs/forms-system-overview--page).
[Forms](?path=/docs/forms-system-overview--page).
## How to use ## How to use
@ -59,5 +58,3 @@ import '@lion/form/lion-form.js';
</form> </form>
</lion-form> </lion-form>
``` ```
For more examples please look at [Form Examples](?path=/docs/forms-form-examples--default-story).