Skip to content

Commit ba93930

Browse files
committed
docs: fix broken relative links
1 parent 6c34cda commit ba93930

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ font-weight: 400;
8888
color: rgb(var(--contrast-1500));
8989
```
9090

91-
💡 About the `color` specified above, read more on [our color system](/#/DesignGuidelines/color-system.md/).
91+
💡 About the `color` specified above, read more on [our color system](#/DesignGuidelines/color-system.md/).
9292

9393
Feel free to customize the font-family and related styles to suit your project's needs. For example, you might prefer a different typeface like below:
9494

src/components/button/examples/button-reduce-presence.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { Component, h, State } from '@stencil/core';
99
* button remains visible while the loading animation is ongoing. When the
1010
* animation is done and the checkmark has been shown, the button will hide.
1111
*
12-
* Read more in the [Design Guidelines](#/DesignGuidelines/decluttering.md/)
12+
* Read more in the [Design Guidelines](#/DesignGuidelines/declutter.md/)
1313
*/
1414
@Component({
1515
tag: 'limel-example-button-reduce-presence',

src/components/checkbox/checkbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { Label } from '../dynamic-label/label.types';
3131
* :::important
3232
* Checkboxes are sometimes used interchangeably with switches in user interfaces.
3333
* But there is an important difference between the two! Please read our guidelines about
34-
* [Switch vs. Checkbox](/#/DesignGuidelines/switch-vs-checkbox.md/).
34+
* [Switch vs. Checkbox](#/DesignGuidelines/switch-vs-checkbox.md/).
3535
*
3636
* @exampleComponent limel-example-checkbox
3737
* @exampleComponent limel-example-checkbox-helper-text

src/components/checkbox/examples/checkbox-readonly.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import { Component, h, State } from '@stencil/core';
1111
* :::important
1212
* Before reading the documentations below, make sure to read
1313
* 1. our guides about the difference between
14-
* [Disabled vs. Readonly](/#/DesignGuidelines/disabled-vs-readonly.md/) in our components.
15-
* 2. our guidelines about [Labeling boolean fields](/#/DesignGuidelines/labeling-boolean-fields.md/).
14+
* [Disabled vs. Readonly](#/DesignGuidelines/disabled-vs-readonly.md/) in our components.
15+
* 2. our guidelines about [Labeling boolean fields](#/DesignGuidelines/labeling-boolean-fields.md/).
1616
* :::
1717
*
1818
* Using the `readonlyLabels` optional prop, you can override the `label` and

src/components/color-picker/color-picker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import type { CustomColorSwatch } from './color-picker.types';
1818
* The color picker can also show you a preview of any valid color name or color value.
1919
*
2020
* :::note
21-
* Make sure to read our [guidelines about usage of colors](/#/DesignGuidelines/color-system.md/) from our palette.
21+
* Make sure to read our [guidelines about usage of colors](#/DesignGuidelines/color-system.md/) from our palette.
2222
* :::
2323
*
2424
* @exampleComponent limel-example-color-picker-basic

src/components/dynamic-label/examples/dynamic-label-readonly-boolean.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { Component, State, h } from '@stencil/core';
2222
* This example shows how to setup the `limel-dynamic-label` component to
2323
* create a more descriptive and dynamic labels for boolean fields.
2424
* But please make sure to read our guidelines about
25-
* [Labeling boolean fields](/#/DesignGuidelines/labeling-boolean-fields.md/)
25+
* [Labeling boolean fields](#/DesignGuidelines/labeling-boolean-fields.md/)
2626
* to understand the importance of this, and get help in choosing the right labels
2727
* for boolean fields.
2828
* :::

src/components/menu/examples/menu-notification.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { Component, h } from '@stencil/core';
2828
*
2929
* By default, the badge is red and its text is white.
3030
* This is to attract users' attention. However, this is possible to override using
31-
* [provided style variables](/#/component/limel-menu/styles/).
31+
* [provided style variables](#/component/limel-menu/styles/).
3232
*
3333
* :::warning
3434
* - Do not negatively exploit this possibility and spam users' attention.

src/components/select/examples/select-separators.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Component, h, State } from '@stencil/core';
88
* by providing valuable visual cues that aid users in perceiving
99
* and navigating through lists. Read more about advantages of using
1010
* separators in the
11-
* [List component's documentations](/#/component/limel-list/).
11+
* [List component's documentations](#/component/limel-list/).
1212
*/
1313
@Component({
1414
shadow: true,

src/components/snackbar/snackbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ const hideAnimationDuration = 300;
3535
* :::note
3636
* If the information you want to display has a higher importance or priority,
3737
* and you need to make sure that the user takes an action to dismiss it,
38-
* consider using the [Banner](/#/component/limel-banner/) component instead.
38+
* consider using the [Banner](#/component/limel-banner/) component instead.
3939
* For more complex interactions and for delivering more detailed information,
40-
* [Dialog](/#/component/limel-dialog/) is a better choice.
40+
* [Dialog](#/component/limel-dialog/) is a better choice.
4141
* :::
4242
*
4343
* @exampleComponent limel-example-snackbar

src/components/switch/examples/switch-readonly.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import { Component, h, State } from '@stencil/core';
1212
* :::important
1313
* Before reading the documentations below, make sure to read
1414
* 1. our guides about the difference between
15-
* [Disabled vs. Readonly](/#/DesignGuidelines/disabled-vs-readonly.md/) in our components.
16-
* 2. our guidelines about [Labeling boolean fields](/#/DesignGuidelines/labeling-boolean-fields.md/).
15+
* [Disabled vs. Readonly](#/DesignGuidelines/disabled-vs-readonly.md/) in our components.
16+
* 2. our guidelines about [Labeling boolean fields](#/DesignGuidelines/labeling-boolean-fields.md/).
1717
* :::
1818
*
1919
* Using the `readonlyLabels` optional prop, you can override the `label` and

0 commit comments

Comments
 (0)