@team-monolith/cds 0.29.31 → 0.29.33

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.
@@ -18,4 +18,5 @@ export declare class Image extends EditorJSImage {
18
18
  isActive: any;
19
19
  onActivate: () => void;
20
20
  }[];
21
+ uploadUrl(url: string): void;
21
22
  }
@@ -51,4 +51,8 @@ export class Image extends EditorJSImage {
51
51
  },
52
52
  }));
53
53
  }
54
+ // 아직 업로드를 할 수 있는 시스템이 없으므로 오류를 피하기 위해 uploadUrl 함수를 임시로 override 합니다.
55
+ uploadUrl(url) {
56
+ this.ui.showPreloader();
57
+ }
54
58
  }
@@ -165,7 +165,7 @@ export class Quote {
165
165
  }
166
166
  static get pasteConfig() {
167
167
  return {
168
- tags: ["blockquote"],
168
+ tags: ["BLOCKQUOTE"],
169
169
  };
170
170
  }
171
171
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-monolith/cds",
3
- "version": "0.29.31",
3
+ "version": "0.29.33",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,