@uxf/wysiwyg 11.35.0 → 11.37.0

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,46 +1,46 @@
1
1
  {
2
- "name": "@uxf/wysiwyg",
3
- "version": "11.35.0",
4
- "description": "UXF Wysiwyg editor",
5
- "author": "Robin Dvorak <dvorak@uxf.cz>",
6
- "homepage": "https://gitlab.com/uxf-npm/wysiwyg",
7
- "license": "MIT",
8
- "scripts": {
9
- "build": "tsc -P tsconfig.json",
10
- "typecheck": "tsc --noEmit --skipLibCheck"
11
- },
12
- "dependencies": {
13
- "@udecode/plate-basic-marks": "20.7.2",
14
- "@udecode/plate-block-quote": "20.7.2",
15
- "@udecode/plate-break": "20.7.2",
16
- "@udecode/plate-code-block": "20.7.2",
17
- "@udecode/plate-common": "20.7.2",
18
- "@udecode/plate-core": "20.7.2",
19
- "@udecode/plate-floating": "20.7.2",
20
- "@udecode/plate-link": "20.7.2",
21
- "@udecode/plate-list": "20.7.2",
22
- "@udecode/plate-media": "20.7.2",
23
- "@udecode/plate-node-id": "20.7.2",
24
- "@udecode/plate-paragraph": "20.7.2",
25
- "@udecode/plate-reset-node": "20.7.2",
26
- "@udecode/plate-select": "20.7.2",
27
- "@udecode/plate-trailing-block": "20.7.2",
28
- "@uxf/core": "11.35.0",
29
- "@uxf/core-react": "11.35.0",
30
- "@uxf/ui": "11.35.0",
31
- "slate": "0.90.0",
32
- "slate-history": "0.86.0",
33
- "slate-hyperscript": "0.77.0",
34
- "slate-react": "0.91.11"
35
- },
36
- "peerDependencies": {
37
- "react": ">=18.2.0",
38
- "react-dom": ">=18.2.0"
39
- },
40
- "devDependencies": {
41
- "@types/react": "18.3.5",
42
- "@types/react-dom": "18.3.0",
43
- "react": "18.3.1",
44
- "react-dom": "18.3.1"
45
- }
46
- }
2
+ "name": "@uxf/wysiwyg",
3
+ "version": "11.37.0",
4
+ "description": "UXF Wysiwyg editor",
5
+ "author": "Robin Dvorak <dvorak@uxf.cz>",
6
+ "homepage": "https://gitlab.com/uxf-npm/wysiwyg",
7
+ "license": "MIT",
8
+ "scripts": {
9
+ "build": "tsc -P tsconfig.json",
10
+ "typecheck": "tsc --noEmit --skipLibCheck"
11
+ },
12
+ "dependencies": {
13
+ "@udecode/plate-basic-marks": "20.7.2",
14
+ "@udecode/plate-block-quote": "20.7.2",
15
+ "@udecode/plate-break": "20.7.2",
16
+ "@udecode/plate-code-block": "20.7.2",
17
+ "@udecode/plate-common": "20.7.2",
18
+ "@udecode/plate-core": "20.7.2",
19
+ "@udecode/plate-floating": "20.7.2",
20
+ "@udecode/plate-link": "20.7.2",
21
+ "@udecode/plate-list": "20.7.2",
22
+ "@udecode/plate-media": "20.7.2",
23
+ "@udecode/plate-node-id": "20.7.2",
24
+ "@udecode/plate-paragraph": "20.7.2",
25
+ "@udecode/plate-reset-node": "20.7.2",
26
+ "@udecode/plate-select": "20.7.2",
27
+ "@udecode/plate-trailing-block": "20.7.2",
28
+ "@uxf/core": "11.35.0",
29
+ "@uxf/core-react": "11.36.0",
30
+ "@uxf/ui": "11.37.0",
31
+ "slate": "0.90.0",
32
+ "slate-history": "0.86.0",
33
+ "slate-hyperscript": "0.77.0",
34
+ "slate-react": "0.91.11"
35
+ },
36
+ "peerDependencies": {
37
+ "react": ">=18.2.0",
38
+ "react-dom": ">=18.2.0"
39
+ },
40
+ "devDependencies": {
41
+ "@types/react": "18.3.5",
42
+ "@types/react-dom": "18.3.0",
43
+ "react": "18.3.1",
44
+ "react-dom": "18.3.1"
45
+ }
46
+ }
@@ -1,2 +1,2 @@
1
1
  export declare const BLOCKQUOTE_PLUGIN_KEY = "blockquote";
2
- export declare const BLOCKQUOTE_PLUGIN_TYPE = "block-quote";
2
+ export declare const BLOCKQUOTE_PLUGIN_TYPE = "blockquote";
@@ -3,4 +3,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.BLOCKQUOTE_PLUGIN_TYPE = exports.BLOCKQUOTE_PLUGIN_KEY = void 0;
4
4
  const plate_block_quote_1 = require("@udecode/plate-block-quote");
5
5
  exports.BLOCKQUOTE_PLUGIN_KEY = plate_block_quote_1.ELEMENT_BLOCKQUOTE;
6
- exports.BLOCKQUOTE_PLUGIN_TYPE = "block-quote";
6
+ exports.BLOCKQUOTE_PLUGIN_TYPE = "blockquote";
package/types.d.ts CHANGED
@@ -28,7 +28,7 @@ export interface UxfParagraphElement extends UxfBlockElement {
28
28
  children: UxfInlineChildren;
29
29
  }
30
30
  export interface UxfBlockQuoteElement extends UxfBlockElement {
31
- type: "block-quote";
31
+ type: "blockquote";
32
32
  children: UxfInlineChildren;
33
33
  }
34
34
  export interface UxfImageElement extends UxfBlockElement {
@@ -78,7 +78,7 @@ exports.initialValue = [
78
78
  ],
79
79
  },
80
80
  {
81
- type: "block-quote",
81
+ type: "blockquote",
82
82
  id: "imx33",
83
83
  children: [{ text: "Toto je citace." }],
84
84
  },