Skip to content

Commit

Permalink
Fix: #1613
Browse files Browse the repository at this point in the history
* jsk-code-snippet

* jsk-code-snippet
  • Loading branch information
adiitiii committed Feb 21, 2023
1 parent 9c5a490 commit 24393be
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions src/docs/src/routes/components/table.svelte.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ data="{[
<pre slot="react" use:replace={{ to: $prefix }}>{
`<div className="overflow-x-auto">
<table className="$$table w-full">
<!-- head -->
{/* head */}
<thead>
<tr>
<th></th>
Expand All @@ -106,21 +106,21 @@ data="{[
</tr>
</thead>
<tbody>
<!-- row 1 -->
{/* row 1 */}
<tr>
<th>1</th>
<td>Cy Ganderton</td>
<td>Quality Control Specialist</td>
<td>Blue</td>
</tr>
<!-- row 2 -->
{/* row 2 */}
<tr>
<th>2</th>
<td>Hart Hagerty</td>
<td>Desktop Support Technician</td>
<td>Purple</td>
</tr>
<!-- row 3 -->
{/* row 3 */}
<tr>
<th>3</th>
<td>Brice Swyre</td>
Expand Down Expand Up @@ -207,7 +207,7 @@ data="{[
<pre slot="react" use:replace={{ to: $prefix }}>{
`<div className="overflow-x-auto">
<table className="$$table w-full">
<!-- head -->
{/* head*/}
<thead>
<tr>
<th></th>
Expand All @@ -217,21 +217,21 @@ data="{[
</tr>
</thead>
<tbody>
<!-- row 1 -->
{/* row 1 */}
<tr>
<th>1</th>
<td>Cy Ganderton</td>
<td>Quality Control Specialist</td>
<td>Blue</td>
</tr>
<!-- row 2 -->
{/* row 2 */}
<tr className="$$active">
<th>2</th>
<td>Hart Hagerty</td>
<td>Desktop Support Technician</td>
<td>Purple</td>
</tr>
<!-- row 3 -->
{/* row 3 */}
<tr>
<th>3</th>
<td>Brice Swyre</td>
Expand Down Expand Up @@ -318,7 +318,7 @@ data="{[
<pre slot="react" use:replace={{ to: $prefix }}>{
`<div className="overflow-x-auto">
<table className="$$table w-full">
<!-- head -->
{/* head */}
<thead>
<tr>
<th></th>
Expand All @@ -328,21 +328,21 @@ data="{[
</tr>
</thead>
<tbody>
<!-- row 1 -->
{/* row 1 */}
<tr>
<th>1</th>
<td>Cy Ganderton</td>
<td>Quality Control Specialist</td>
<td>Blue</td>
</tr>
<!-- row 2 -->
{/* row 2 */}
<tr className="$$hover">
<th>2</th>
<td>Hart Hagerty</td>
<td>Desktop Support Technician</td>
<td>Purple</td>
</tr>
<!-- row 3 -->
{/* row 3 */}
<tr>
<th>3</th>
<td>Brice Swyre</td>
Expand Down Expand Up @@ -429,7 +429,7 @@ data="{[
<pre slot="react" use:replace={{ to: $prefix }}>{
`<div className="overflow-x-auto">
<table className="$$table $$table-zebra w-full">
<!-- head -->
{/* head */}
<thead>
<tr>
<th></th>
Expand All @@ -439,21 +439,21 @@ data="{[
</tr>
</thead>
<tbody>
<!-- row 1 -->
{/* row 1 */}
<tr>
<th>1</th>
<td>Cy Ganderton</td>
<td>Quality Control Specialist</td>
<td>Blue</td>
</tr>
<!-- row 2 -->
{/* row 2 */}
<tr>
<th>2</th>
<td>Hart Hagerty</td>
<td>Desktop Support Technician</td>
<td>Purple</td>
</tr>
<!-- row 3 -->
{/* row 3 */}
<tr>
<th>3</th>
<td>Brice Swyre</td>
Expand Down Expand Up @@ -767,7 +767,7 @@ data="{[
<pre slot="react" use:replace={{ to: $prefix }}>{
`<div className="overflow-x-auto w-full">
<table className="$$table w-full">
<!-- head -->
{/* head */}
<thead>
<tr>
<th>
Expand All @@ -782,7 +782,7 @@ data="{[
</tr>
</thead>
<tbody>
<!-- row 1 -->
{/* row 1 */}
<tr>
<th>
<label>
Expand Down Expand Up @@ -812,7 +812,7 @@ data="{[
<button className="$$btn $$btn-ghost $$btn-xs">details</button>
</th>
</tr>
<!-- row 2 -->
{/* row 2 */}
<tr>
<th>
<label>
Expand Down Expand Up @@ -842,7 +842,7 @@ data="{[
<button className="$$btn $$btn-ghost $$btn-xs">details</button>
</th>
</tr>
<!-- row 3 -->
{/* row 3 */}
<tr>
<th>
<label>
Expand Down Expand Up @@ -872,7 +872,7 @@ data="{[
<button className="$$btn $$btn-ghost $$btn-xs">details</button>
</th>
</tr>
<!-- row 4 -->
{/* row 4 */}
<tr>
<th>
<label>
Expand Down Expand Up @@ -903,7 +903,7 @@ data="{[
</th>
</tr>
</tbody>
<!-- foot -->
{/* foot */}
<tfoot>
<tr>
<th></th>
Expand Down

0 comments on commit 24393be

Please sign in to comment.