@ebl-vue/editor-full 2.31.13 → 2.31.15

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": "@ebl-vue/editor-full",
3
- "version": "2.31.13",
3
+ "version": "2.31.15",
4
4
  "type": "module",
5
5
  "author": "lrj525@sina.com",
6
6
  "description": "结构化编辑器",
@@ -117,8 +117,9 @@
117
117
  }
118
118
 
119
119
  .cdx-image-tool-tune--resize .cdx-block .resizable .resizers .resizer {
120
- width: 8px;
121
- height: 8px;
120
+ box-sizing: border-box;
121
+ width: 14px;
122
+ height: 14px;
122
123
  border-radius: 50%;
123
124
  background: var(--primary-content);
124
125
  border: 3px solid var(--primary);
@@ -85,7 +85,7 @@ export default class Uploader {
85
85
  noSelectedFile();
86
86
  return
87
87
  }
88
- return;
88
+
89
89
  const file = files[0];
90
90
  const fileTypes = this.config.types.split(",");
91
91
  let suffixIndex = file.name.lastIndexOf(".");