roosterjs-editor-types
Advanced tools
Comparing version 6.2.0 to 6.3.0
@@ -12,4 +12,6 @@ declare const enum PluginEventType { | ||
Copy = 9, | ||
ExtractContent = 10, | ||
Focus = 10, | ||
Blur = 11, | ||
ExtractContent = 12, | ||
} | ||
export default PluginEventType; |
@@ -26,8 +26,12 @@ "use strict"; | ||
PluginEventType[PluginEventType["Copy"] = 9] = "Copy"; | ||
// HTML Focus event | ||
PluginEventType[PluginEventType["Focus"] = 10] = "Focus"; | ||
// HTML blur event | ||
PluginEventType[PluginEventType["Blur"] = 11] = "Blur"; | ||
// Extract Content event | ||
// This event is triggered when getContent() is called with triggerExtractContentEvent = true | ||
// Plugin can handle this event to remove the UI only markups to return clean HTML | ||
PluginEventType[PluginEventType["ExtractContent"] = 10] = "ExtractContent"; | ||
PluginEventType[PluginEventType["ExtractContent"] = 12] = "ExtractContent"; | ||
})(PluginEventType || (PluginEventType = {})); | ||
exports.default = PluginEventType; | ||
//# sourceMappingURL=PluginEventType.js.map |
@@ -5,4 +5,3 @@ declare const enum ListState { | ||
Numbering = 2, | ||
BlockQuote = 3, | ||
} | ||
export default ListState; |
@@ -12,6 +12,4 @@ "use strict"; | ||
ListState[ListState["Numbering"] = 2] = "Numbering"; | ||
// In blockquote mode | ||
ListState[ListState["BlockQuote"] = 3] = "BlockQuote"; | ||
})(ListState || (ListState = {})); | ||
exports.default = ListState; | ||
//# sourceMappingURL=ListState.js.map |
@@ -6,3 +6,3 @@ { | ||
"main": "./lib/index.js", | ||
"version": "6.2.0", | ||
"version": "6.3.0", | ||
"typings": "./lib/index.d.ts", | ||
@@ -9,0 +9,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
27959
467