menu
EditIntent
import { EditIntent } from "destack:input/binding";
Edit intent kind aligned with web beforeinput input types.
1export enum EditIntent {2 InsertText = 1,3 InsertReplacementText = 2,4 InsertLineBreak = 3,5 InsertParagraph = 4,6 InsertOrderedList = 5,7 InsertUnorderedList = 6,8 InsertHorizontalRule = 7,9 InsertLink = 8,10 InsertFromYank = 9,11 InsertFromDrop = 10,12 InsertFromPaste = 11,13 InsertFromPasteAsQuotation = 12,14 InsertTranspose = 13,15 InsertCompositionText = 14,16 DeleteWordBackward = 15,17 DeleteWordForward = 16,18 DeleteSoftLineBackward = 17,19 DeleteSoftLineForward = 18,20 DeleteEntireSoftLine = 19,21 DeleteHardLineBackward = 20,22 DeleteHardLineForward = 21,23 DeleteByDrag = 22,24 DeleteByCut = 23,25 DeleteContent = 24,26 DeleteContentBackward = 25,27 DeleteContentForward = 26,28 HistoryUndo = 27,29 HistoryRedo = 28,30 FormatBold = 29,31 FormatItalic = 30,32 FormatUnderline = 31,33 FormatStrikeThrough = 32,34 FormatSuperscript = 33,35 FormatSubscript = 34,36 FormatJustifyCenter = 35,37 FormatJustifyFull = 36,38 FormatJustifyLeft = 37,39 FormatJustifyRight = 38,40 FormatIndent = 39,41 FormatOutdent = 40,42 FormatRemove = 41,43 FormatSetBlockTextDirection = 42,44 FormatSetInlineTextDirection = 43,45 FormatBackColor = 44,46 FormatFontColor = 45,47 FormatFontName = 46,48}Variants
InsertText = 1insertText.InsertReplacementText = 2insertReplacementText.InsertLineBreak = 3insertLineBreak.InsertParagraph = 4insertParagraph.InsertOrderedList = 5insertOrderedList.InsertUnorderedList = 6insertUnorderedList.InsertHorizontalRule = 7insertHorizontalRule.InsertLink = 8insertLink.InsertFromYank = 9insertFromYank.InsertFromDrop = 10insertFromDrop.InsertFromPaste = 11insertFromPaste.InsertFromPasteAsQuotation = 12insertFromPasteAsQuotation.InsertTranspose = 13insertTranspose.InsertCompositionText = 14insertCompositionText.DeleteWordBackward = 15deleteWordBackward.DeleteWordForward = 16deleteWordForward.DeleteSoftLineBackward = 17deleteSoftLineBackward.DeleteSoftLineForward = 18deleteSoftLineForward.DeleteEntireSoftLine = 19deleteEntireSoftLine.DeleteHardLineBackward = 20deleteHardLineBackward.DeleteHardLineForward = 21deleteHardLineForward.DeleteByDrag = 22deleteByDrag.DeleteByCut = 23deleteByCut.DeleteContent = 24deleteContent.DeleteContentBackward = 25deleteContentBackward.DeleteContentForward = 26deleteContentForward.HistoryUndo = 27historyUndo.HistoryRedo = 28historyRedo.FormatBold = 29formatBold.FormatItalic = 30formatItalic.FormatUnderline = 31formatUnderline.FormatStrikeThrough = 32formatStrikeThrough.FormatSuperscript = 33formatSuperscript.FormatSubscript = 34formatSubscript.FormatJustifyCenter = 35formatJustifyCenter.FormatJustifyFull = 36formatJustifyFull.FormatJustifyLeft = 37formatJustifyLeft.FormatJustifyRight = 38formatJustifyRight.FormatIndent = 39formatIndent.FormatOutdent = 40formatOutdent.FormatRemove = 41formatRemove.FormatSetBlockTextDirection = 42formatSetBlockTextDirection.FormatSetInlineTextDirection = 43formatSetInlineTextDirection.FormatBackColor = 44formatBackColor.FormatFontColor = 45formatFontColor.FormatFontName = 46formatFontName.