@social-mail/social-mail-client 1.8.376 → 1.8.378

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@social-mail/social-mail-client",
3
- "version": "1.8.376",
3
+ "version": "1.8.378",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -35,7 +35,7 @@ export default class UserListPage extends MasterDetailPage {
35
35
  <AddIconTextButton data-click-event="add-user" text="Add User"/>
36
36
  </div>;
37
37
  this.titleRenderer = () => <div data-layout="row">
38
- <input placeholder="Search Users" value={Bind.twoWaysImmediate(() => this.search)}/>
38
+ <input type="search" placeholder="Search Users" value={Bind.twoWaysImmediate(() => this.search)}/>
39
39
  <Checkbox checked={Bind.twoWaysImmediate(() => this.external)} text="External"/>
40
40
  </div>;
41
41
  this.search = "";
@@ -29,6 +29,13 @@ export function InstallDragDropHelper(editor: HtmlPageEditor) {
29
29
  // if(/absolute|relative/i.test(s.position)) {
30
30
  // return;
31
31
  // }
32
+
33
+ const style = target.getAttribute("styler-position");
34
+ if (style === "absolute") {
35
+ e.preventDefault();
36
+ return;
37
+ }
38
+
32
39
  setTimeout(() => document.body.contentEditable = "false", 0);
33
40
  dragged = target;
34
41
  e.dataTransfer.dropEffect = "move";