67 lines
1.6 KiB
Svelte
67 lines
1.6 KiB
Svelte
<script lang="typescript">
|
|
import ButtonGroup from "./ButtonGroup.svelte";
|
|
|
|
import LabelButton from "./LabelButton.svelte";
|
|
import IconButton from "./IconButton.svelte";
|
|
|
|
import bracketsIcon from "./code-brackets.svg";
|
|
|
|
import paperclipIcon from "./paperclip.svg";
|
|
import micIcon from "./mic.svg";
|
|
import threeDotsIcon from "./three-dots.svg";
|
|
|
|
import {
|
|
boldButton,
|
|
italicButton,
|
|
underlineButton,
|
|
superscriptButton,
|
|
subscriptButton,
|
|
eraserButton,
|
|
} from "./format";
|
|
import { forecolorButton, colorpickerButton } from "./color";
|
|
|
|
export let buttons = [
|
|
[
|
|
{ component: LabelButton, label: "Fields..." },
|
|
{ component: LabelButton, label: "Cards..." },
|
|
],
|
|
[
|
|
boldButton,
|
|
italicButton,
|
|
underlineButton,
|
|
superscriptButton,
|
|
subscriptButton,
|
|
eraserButton,
|
|
],
|
|
[forecolorButton, colorpickerButton],
|
|
[
|
|
{ component: IconButton, icon: bracketsIcon },
|
|
{ component: IconButton, icon: paperclipIcon },
|
|
{ component: IconButton, icon: micIcon },
|
|
{ component: IconButton, icon: threeDotsIcon },
|
|
],
|
|
];
|
|
export let nightMode: boolean;
|
|
|
|
console.log(nightMode);
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
div {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 5;
|
|
padding: 2px;
|
|
|
|
background: var(--bg-color);
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<ButtonGroup {buttons} />
|
|
</div>
|