-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
126 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableAddColAfter } from "@tiptiz/editor-icons" | ||
|
||
export default function TableAddColAfter() { | ||
return <IconBar path={ediTableAddColAfter} tooltip="Insert Column After" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableAddColBefore } from "@tiptiz/editor-icons" | ||
|
||
export default function TableAddColBefore() { | ||
return <IconBar path={ediTableAddColBefore} tooltip="Insert Column Before" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableAddRowAfter } from "@tiptiz/editor-icons" | ||
|
||
export default function TableAddRowAfter() { | ||
return <IconBar path={ediTableAddRowAfter} tooltip="Insert Row After" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableAddRowBefore } from "@tiptiz/editor-icons" | ||
|
||
export default function TableAddRowBefore() { | ||
return <IconBar path={ediTableAddRowBefore} tooltip="Insert Row Before" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableColumnRemove } from "@tiptiz/editor-icons" | ||
|
||
export default function TableColRemove() { | ||
return <IconBar path={ediTableColumnRemove} tooltip="Remove Column" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableMergeCells } from "@tiptiz/editor-icons" | ||
|
||
export default function TableMergeCells() { | ||
return <IconBar path={ediTableMergeCells} tooltip="Merge Cells" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableNew } from "@tiptiz/editor-icons" | ||
|
||
export default function TableNew() { | ||
return <IconBar path={ediTableNew} tooltip="Insert Table" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableRefresh } from "@tiptiz/editor-icons" | ||
|
||
export default function TableRefresh() { | ||
return <IconBar path={ediTableRefresh} tooltip="Refresh Table" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableRemove } from "@tiptiz/editor-icons" | ||
|
||
export default function TableRemoveAll() { | ||
return <IconBar path={ediTableRemove} tooltip="Remove Table" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableRowRemove } from "@tiptiz/editor-icons" | ||
|
||
export default function TableRowRemove() { | ||
return <IconBar path={ediTableRowRemove} tooltip="Remove Row" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediTableSplitCell } from "@tiptiz/editor-icons" | ||
|
||
export default function TableSplitCell() { | ||
return <IconBar path={ediTableSplitCell} tooltip="Split Cell" /> | ||
} |
6 changes: 6 additions & 0 deletions
6
docs/src/components/editor-toolbars/TableToggleHeaderCell.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediToggleTableHeaderCell } from "@tiptiz/editor-icons" | ||
|
||
export default function TableToggleHeaderCell() { | ||
return <IconBar path={ediToggleTableHeaderCell} tooltip="Toggle Header Cell" /> | ||
} |
6 changes: 6 additions & 0 deletions
6
docs/src/components/editor-toolbars/TableToggleHeaderLeft.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediToggleTableHeaderLeft } from "@tiptiz/editor-icons" | ||
|
||
export default function TableToggleHeaderLeft() { | ||
return <IconBar path={ediToggleTableHeaderLeft} tooltip="Toggle Table Header Left" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import IconBar from "@/components/IconBar" | ||
import { ediToggleTableHeaderTop } from "@tiptiz/editor-icons" | ||
|
||
export default function TableToggleHeaderTop() { | ||
return <IconBar path={ediToggleTableHeaderTop} tooltip="Toggle Header Top" /> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters