@social-mail/social-mail-client 1.8.349 → 1.8.350
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/site-editor/editor/ui/SelectionUI.d.ts.map +1 -1
- package/dist/site-editor/editor/ui/SelectionUI.js +3 -0
- package/dist/site-editor/editor/ui/SelectionUI.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +3 -0
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/site-editor/editor/ui/SelectionUI.tsx +3 -0
package/package.json
CHANGED
|
@@ -294,6 +294,9 @@ const keyboardEditingSymbol = Symbol("keyboardEditing");
|
|
|
294
294
|
|
|
295
295
|
const eventKeyDown = (editor: HtmlPageEditor, e: KeyboardEvent) => {
|
|
296
296
|
const element = e.target as HTMLElement;
|
|
297
|
+
if (element.hasAttribute("data-property-value-editor")) {
|
|
298
|
+
return;
|
|
299
|
+
}
|
|
297
300
|
const currentElement = e.currentTarget as HTMLElement;
|
|
298
301
|
if (!currentElement.hasAttribute("data-edit")) {
|
|
299
302
|
return;
|