Skip to content

Commit 782ad27

Browse files
authored
Adding tab-box and tab-border changes to upgrade guide, fixing tab-box header on tabs documentation. (saadeghi#3774)
* Fixing header for tabs-box * Adding tabs-border and tabs-box change to upgrade guide
1 parent 409841f commit 782ad27

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

packages/docs/src/routes/(routes)/components/tab/+page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ classnames:
9595
```
9696

9797

98-
### ~Tab box
98+
### ~tabs-box
9999
<div role="tablist" class="tabs tabs-box">
100100
<button role="tab" class="tab">Tab 1</button>
101101
<button role="tab" class="tab tab-active">Tab 2</button>

packages/docs/src/routes/(routes)/docs/upgrade/+page.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,13 +309,27 @@ Example:
309309

310310
### Tab
311311

312+
- Renamed `tabs-bordered` to `tabs-border`.
313+
314+
```diff:page.html
315+
- <div class="tabs tabs-bordered">
316+
+ <div class="tabs tabs-border">
317+
```
318+
312319
- Renamed `tabs-lifted` to `tabs-lift`.
313320

314321
```diff:page.html
315322
- <div class="tabs tabs-lifted">
316323
+ <div class="tabs tabs-lift">
317324
```
318325

326+
- Renamed `tabs-boxed` to `tabs-box`.
327+
328+
```diff:page.html
329+
- <div class="tabs tabs-boxed">
330+
+ <div class="tabs tabs-box">
331+
```
332+
319333
### Table
320334

321335
- Removed `hover` class. Use `hover:bg-base-300` (or any other color) instead.

0 commit comments

Comments
 (0)