Skip to content

Commit 3724479

Browse files
committed
[optimize] Document path
1 parent 6c7289f commit 3724479

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+96
-77
lines changed

document/source/components/CountDown.mdx renamed to document/source/components/Calendar/CountDown.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ group: Components
77

88
import { CountDown } from 'boot-cell/source/Calendar/CountDown';
99

10-
import { Example } from '../../../source/component/Example';
10+
import { Example } from '../../../../source/component/Example';
1111

1212
<Example>
1313
<CountDown endTime={new Date(new Date().getFullYear() + 1, 5, 4)} />

document/source/components/MonthCalender.mdx renamed to document/source/components/Calendar/MonthCalender.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ group: Components
88
import { MonthCalendar } from 'boot-cell/source/Calendar/MonthCalendar';
99
import { formatDate } from 'web-utility/source/date';
1010

11-
import { Example } from '../../../source/component/Example';
11+
import { Example } from '../../../../source/component/Example';
1212

1313
## Default calendar
1414

document/source/components/WeekCalender.mdx renamed to document/source/components/Calendar/WeekCalender.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ group: Components
88
import { WeekCalendar } from 'boot-cell/source/Calendar/WeekCalendar';
99
import { formatDate } from 'web-utility/source/date';
1010

11-
import { Example } from '../../../source/component/Example';
11+
import { Example } from '../../../../source/component/Example';
1212

1313
## Default calendar
1414

document/source/components/Card.mdx renamed to document/source/components/Content/Card.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { Card, CardHeader, CardFooter } from 'boot-cell/source/Content/Card';
99
import { Button } from 'boot-cell/source/Form/Button';
1010
import { NavLink } from 'boot-cell/source/Navigator/Nav';
1111

12-
import { Example } from '../../../source/component/Example';
12+
import { Example } from '../../../../source/component/Example';
1313

1414
## About
1515

@@ -388,4 +388,4 @@ render(
388388
);
389389
```
390390

391-
[1]: components/nav
391+
[1]: components/navigator/nav

document/source/components/Collapse.mdx renamed to document/source/components/Content/Collapse.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Fragment } from 'web-cell';
1010
import { Accordion, AccordionPanel } from 'boot-cell/source/Content/Accordion';
1111
import { Button } from 'boot-cell/source/Form/Button';
1212

13-
import { Example } from '../../../source/component/Example';
13+
import { Example } from '../../../../source/component/Example';
1414

1515
## How it works
1616

document/source/components/Jumbotron.mdx renamed to document/source/components/Content/Jumbotron.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ group: Components
88
import { Jumbotron } from 'boot-cell/source/Content/Jumbotron';
99
import { Button } from 'boot-cell/source/Form/Button';
1010

11-
import { Example } from '../../../source/component/Example';
11+
import { Example } from '../../../../source/component/Example';
1212

1313
A lightweight, flexible component that can optionally extend the entire viewport to showcase key marketing messages on your site.
1414

document/source/components/ListGroup.mdx renamed to document/source/components/Content/ListGroup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ group: Components
88
import { ListGroup, ListItem } from 'boot-cell/source/Content/ListGroup';
99
import { Badge } from 'boot-cell/source/Reminder/Badge';
1010

11-
import { Example } from '../../../source/component/Example';
11+
import { Example } from '../../../../source/component/Example';
1212

1313
## Example
1414

document/source/components/MediaObject.mdx renamed to document/source/components/Content/MediaObject.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ group: Components
88
import { MediaObject } from 'boot-cell/source/Content/MediaObject';
99
import { Button } from 'boot-cell/source/Form/Button';
1010

11-
import { Example } from '../../../source/component/Example';
11+
import { Example } from '../../../../source/component/Example';
1212

1313
## Example
1414

document/source/components/SplitView.mdx renamed to document/source/components/Content/SplitView.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ group: Components
88
import { SplitView } from 'boot-cell/source/Content/SplitView';
99
import { Embed } from 'boot-cell/source/Media/Embed';
1010

11-
import { Example } from '../../../source/component/Example';
11+
import { Example } from '../../../../source/component/Example';
1212

1313
This component is built on the top of [Iterator Observer][1], the dependency below should be installed:
1414

document/source/components/TabView.mdx renamed to document/source/components/Content/TabView.mdx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ import { FormField } from 'boot-cell/source/Form/FormField';
1414
import { Button } from 'boot-cell/source/Form/Button';
1515
import { Icon } from 'boot-cell/source/Reminder/Icon';
1616

17-
import { Example } from '../../../source/component/Example';
17+
import { Example } from '../../../../source/component/Example';
1818

1919
Tab view is built on CSS of Bootstrap & [bs-stepper][1].
2020

2121
## Tabs mode
2222

23-
`mode="tabs"` is built based on [Nav](components/nav).
23+
`mode="tabs"` is built based on [Nav][2].
2424

2525
Dynamic tabbed interfaces, as described in the
2626
[<abbr title="Web Accessibility Initiative">WAI</abbr> <abbr title="Accessible Rich Internet Applications">ARIA</abbr> Authoring Practices][2],
@@ -78,7 +78,7 @@ render(
7878

7979
## Pills mode
8080

81-
`mode="pills"` is built based on [Nav](components/nav).
81+
`mode="pills"` is built based on [Nav][2].
8282

8383
<Example>
8484
<TabView mode="pills">
@@ -166,7 +166,7 @@ render(
166166

167167
## Masthead mode
168168

169-
`mode="masthead"` is built based on [Nav](components/nav).
169+
`mode="masthead"` is built based on [Nav][2].
170170

171171
<Example>
172172
<TabView mode="masthead">
@@ -212,7 +212,7 @@ render(
212212

213213
## List mode
214214

215-
`mode="list"` is built based on [List group](components/listgroup).
215+
`mode="list"` is built based on [List group](components/content/listgroup).
216216

217217
<Example>
218218
<TabView mode="list" direction="column">
@@ -536,4 +536,5 @@ render(
536536
```
537537

538538
[1]: https://johann-s.github.io/bs-stepper/
539-
[2]: https://www.w3.org/TR/wai-aria-practices/#tabpanel
539+
[2]: components/navigator/nav
540+
[3]: https://www.w3.org/TR/wai-aria-practices/#tabpanel

0 commit comments

Comments
 (0)