135de7f9ed
* setup mask editor in note editor - add image on mask button click (only one time) - show hide add button for io on notetype change - hide field in io notetype - icon for toggle and replace image * add update io notes * Tidy up i/o notetype check and fix error - Make it a method on editor - Use .get(), because the setting doesn't exist on older notetypes - Pass the bool value into the ts code, instead of the enum * reset io page after adding * remove adjust function & add target for mask editor * handle browse mode & merged sidetoolbar and toptoolbar to toolbar * fix: shape, button click in browse, dropdown menu * add arrow to add button * store for handling visiblity of maskeditor - remove update button in edit mode, implement autoupdate * update var name * simplify store
30 lines
2.0 KiB
TypeScript
30 lines
2.0 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
/// <reference types="../../lib/image-import" />
|
|
|
|
export { default as cogIcon } from "@mdi/svg/svg/cog.svg";
|
|
export { default as colorHelperIcon } from "@mdi/svg/svg/color-helper.svg";
|
|
export { default as highlightColorIcon } from "@mdi/svg/svg/format-color-highlight.svg";
|
|
export { default as textColorIcon } from "@mdi/svg/svg/format-color-text.svg";
|
|
export { default as subscriptIcon } from "@mdi/svg/svg/format-subscript.svg";
|
|
export { default as superscriptIcon } from "@mdi/svg/svg/format-superscript.svg";
|
|
export { default as functionIcon } from "@mdi/svg/svg/function-variant.svg";
|
|
export { default as paperclipIcon } from "@mdi/svg/svg/paperclip.svg";
|
|
export { default as mdiRefresh } from "@mdi/svg/svg/refresh.svg";
|
|
export { default as mdiViewDashboard } from "@mdi/svg/svg/view-dashboard.svg";
|
|
export { default as eraserIcon } from "bootstrap-icons/icons/eraser.svg";
|
|
export { default as justifyFullIcon } from "bootstrap-icons/icons/justify.svg";
|
|
export { default as olIcon } from "bootstrap-icons/icons/list-ol.svg";
|
|
export { default as ulIcon } from "bootstrap-icons/icons/list-ul.svg";
|
|
export { default as micIcon } from "bootstrap-icons/icons/mic.svg";
|
|
export { default as justifyCenterIcon } from "bootstrap-icons/icons/text-center.svg";
|
|
export { default as indentIcon } from "bootstrap-icons/icons/text-indent-left.svg";
|
|
export { default as outdentIcon } from "bootstrap-icons/icons/text-indent-right.svg";
|
|
export { default as justifyLeftIcon } from "bootstrap-icons/icons/text-left.svg";
|
|
export { default as listOptionsIcon } from "bootstrap-icons/icons/text-paragraph.svg";
|
|
export { default as justifyRightIcon } from "bootstrap-icons/icons/text-right.svg";
|
|
export { default as boldIcon } from "bootstrap-icons/icons/type-bold.svg";
|
|
export { default as italicIcon } from "bootstrap-icons/icons/type-italic.svg";
|
|
export { default as underlineIcon } from "bootstrap-icons/icons/type-underline.svg";
|