Skip to content

Commit 853d19e

Browse files
committed
[add] BootStrap Icon v1 & Week Calendar components
[optimize] upgrade Upstream packages
1 parent 20a7e17 commit 853d19e

File tree

15 files changed

+520
-413
lines changed

15 files changed

+520
-413
lines changed

document/source/components/Carousel.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: A slideshow component for cycling through elements—images or slid
55
group: Components
66
---
77

8-
import { CarouselView } from 'boot-cell/source/Content/Carousel';
8+
import { CarouselView } from 'boot-cell/source/Media/Carousel';
99

1010
import { Example } from '../../../source/component/Example';
1111

@@ -43,7 +43,7 @@ Here’s a carousel with slides only.
4343

4444
```TSX
4545
import { render, createCell } from 'web-cell';
46-
import { CarouselView } from 'boot-cell/source/Content/Carousel';
46+
import { CarouselView } from 'boot-cell/source/Media/Carousel';
4747

4848
render(
4949
<CarouselView
@@ -73,7 +73,7 @@ Adding in the previous and next controls:
7373

7474
```TSX
7575
import { render, createCell } from 'web-cell';
76-
import { CarouselView } from 'boot-cell/source/Content/Carousel';
76+
import { CarouselView } from 'boot-cell/source/Media/Carousel';
7777

7878
render(
7979
<CarouselView
@@ -105,7 +105,7 @@ You can also add the indicators to the carousel, alongside the controls, too.
105105

106106
```TSX
107107
import { render, createCell } from 'web-cell';
108-
import { CarouselView } from 'boot-cell/source/Content/Carousel';
108+
import { CarouselView } from 'boot-cell/source/Media/Carousel';
109109

110110
render(
111111
<CarouselView
@@ -152,7 +152,7 @@ We hide them initially with `.d-none` and bring them back on medium-sized device
152152

153153
```TSX
154154
import { render, createCell } from 'web-cell';
155-
import { CarouselView } from 'boot-cell/source/Content/Carousel';
155+
import { CarouselView } from 'boot-cell/source/Media/Carousel';
156156

157157
render(
158158
<CarouselView
@@ -197,7 +197,7 @@ Add `mode="fade"` to your carousel to animate slides with a fade transition inst
197197

198198
```TSX
199199
import { render, createCell } from 'web-cell';
200-
import { CarouselView } from 'boot-cell/source/Content/Carousel';
200+
import { CarouselView } from 'boot-cell/source/Media/Carousel';
201201

202202
render(
203203
<CarouselView

document/source/components/CountDown.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description:
55
group: Components
66
---
77

8-
import { CountDown } from 'boot-cell/source/Extra/CountDown';
8+
import { CountDown } from 'boot-cell/source/Calendar/CountDown';
99

1010
import { Example } from '../../../source/component/Example';
1111

@@ -15,7 +15,7 @@ import { Example } from '../../../source/component/Example';
1515

1616
```TSX
1717
import { render, createCell } from 'web-cell';
18-
import { CountDown } from 'boot-cell/source/Extra/CountDown';
18+
import { CountDown } from 'boot-cell/source/Calendar/CountDown';
1919

2020
render(
2121
<CountDown endTime={new Date(new Date().getFullYear() + 1, 5, 4)} />

document/source/components/Embed.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Create responsive video or slideshow embeds based on the width of t
55
group: Components
66
---
77

8-
import { Embed } from 'boot-cell/source/Content/Embed';
8+
import { Embed } from 'boot-cell/source/Media/Embed';
99

1010
import { Example } from '../../../source/component/Example';
1111

@@ -27,7 +27,7 @@ Rules are directly applied to `<iframe>`, `<embed>`, `<video>`, and `<audio>` el
2727

2828
```TSX
2929
import { render, createCell } from 'web-cell';
30-
import { Embed } from 'boot-cell/source/Content/Embed';
30+
import { Embed } from 'boot-cell/source/Media/Embed';
3131

3232
render(
3333
<Embed

0 commit comments

Comments
 (0)