@bigbinary/neeto-editor 0.7.2 → 0.8.1
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/CHANGELOG.md +42 -23
- package/README.md +9 -0
- package/build/index.js +43 -0
- package/package.json +13 -14
package/CHANGELOG.md
CHANGED
|
@@ -22,77 +22,96 @@ Prefix the change with one of these keywords:
|
|
|
22
22
|
- *Fixed*: for any bug fixes.
|
|
23
23
|
- *Security*: in case of vulnerabilities.
|
|
24
24
|
|
|
25
|
+
## 0.8.1 - 2022-09-07
|
|
26
|
+
|
|
27
|
+
- Removed: highlight.js package from peer dependencies.
|
|
28
|
+
|
|
29
|
+
## 0.8.0 - 2022-09-01
|
|
30
|
+
|
|
31
|
+
- Added: **BREAKING** support for pre-signed URLs for uploading images.
|
|
32
|
+
|
|
33
|
+
## 0.7.3 - 2022-09-01
|
|
34
|
+
|
|
35
|
+
- Fixed: removed Tiptap warnings in the console.
|
|
36
|
+
|
|
25
37
|
## 0.7.2 - 2022-09-01
|
|
26
38
|
|
|
27
39
|
- Added: type support to all the exported components.
|
|
28
40
|
|
|
29
41
|
## 0.7.1 - 2022-08-29
|
|
30
42
|
|
|
31
|
-
- Changed: CodeBlock theme to light.
|
|
43
|
+
- Changed: Updated CodeBlock theme from dark to light.
|
|
32
44
|
|
|
33
45
|
## 0.7.0 - 2022-08-25
|
|
34
46
|
|
|
35
|
-
- Changed: **BREAKING** the CDN for editor content styles from
|
|
47
|
+
- Changed: **BREAKING** the CDN for editor content styles from
|
|
48
|
+
- https://cdn.jsdelivr.net/gh/bigbinary/neeto-editor-tiptap@master/dist/editor-content.min.css
|
|
49
|
+
- to
|
|
50
|
+
- https://cdn.jsdelivr.net/gh/bigbinary/neeto-editor@master/dist/editor-content.min.css.
|
|
36
51
|
|
|
37
52
|
## 0.6.8 - 2022-08-24
|
|
38
53
|
|
|
39
|
-
- Fixed issue where variables added get appended to starting of the existing
|
|
54
|
+
- Fixed: issue where variables added get appended to starting of the existing
|
|
55
|
+
- content rather than at the end.
|
|
40
56
|
|
|
41
57
|
## 0.6.7 - 2022-08-23
|
|
42
58
|
|
|
43
|
-
- Changed the custom `HashtagFilled` icon in the *Variables* component with the
|
|
59
|
+
- Changed: the custom `HashtagFilled` icon in the *Variables* component with the
|
|
60
|
+
- `Braces` icon from neetoicons.
|
|
44
61
|
|
|
45
62
|
## 0.6.6 - 2022-08-23
|
|
46
63
|
|
|
47
|
-
- Added a predetermined set of default emojis.
|
|
64
|
+
- Added: a predetermined set of default emojis.
|
|
48
65
|
|
|
49
66
|
## 0.6.5 - 2022-08-19
|
|
50
67
|
|
|
51
|
-
- Added the logic to upload all pasted images.
|
|
68
|
+
- Added: the logic to upload all pasted images.
|
|
52
69
|
|
|
53
70
|
## 0.6.4 - 2022-08-16
|
|
54
71
|
|
|
55
|
-
- Added fallback error message for failed image uploads.
|
|
72
|
+
- Added: fallback error message for failed image uploads.
|
|
56
73
|
|
|
57
74
|
## 0.6.3 - 2022-08-10
|
|
58
75
|
|
|
59
|
-
- Fixed the dnd image upload size to take up the full available size.
|
|
76
|
+
- Fixed: the dnd image upload size to take up the full available size.
|
|
60
77
|
|
|
61
78
|
## 0.6.2 - 2022-07-27
|
|
62
79
|
|
|
63
|
-
- Fixed word wrap issue in *EditorContent* component.
|
|
64
|
-
- Fixed build issue with `emoji-mart` package.
|
|
65
|
-
- Fixed the image upload modal to reset to state on closing.
|
|
66
|
-
- Added autofocus to input components.
|
|
67
|
-
- Fixed image resize bug with portrait images.
|
|
68
|
-
- Fixed the issue where `figcaption` was rendered as a separate node.
|
|
69
|
-
- Added backward compatibility to render images from existing editor content.
|
|
80
|
+
- Fixed: word wrap issue in *EditorContent* component.
|
|
81
|
+
- Fixed: build issue with `emoji-mart` package.
|
|
82
|
+
- Fixed: the image upload modal to reset to state on closing.
|
|
83
|
+
- Added: autofocus to input components.
|
|
84
|
+
- Fixed: image resize bug with portrait images.
|
|
85
|
+
- Fixed: the issue where `figcaption` was rendered as a separate node.
|
|
86
|
+
- Added: backward compatibility to render images from existing editor content.
|
|
70
87
|
|
|
71
88
|
## 0.6.1 - 2022-07-27
|
|
72
89
|
|
|
73
|
-
- Added the ability to open images in *EditorContent* in a new tab using a
|
|
90
|
+
- Added: the ability to open images in *EditorContent* in a new tab using a
|
|
91
|
+
- single click.
|
|
74
92
|
|
|
75
93
|
## 0.6.0 - 2022-07-26
|
|
76
94
|
|
|
77
|
-
- Added the ability to resize images.
|
|
78
|
-
- Removed banner mode for images.
|
|
95
|
+
- Added: the ability to resize images.
|
|
96
|
+
- Removed: banner mode for images.
|
|
79
97
|
|
|
80
98
|
## 0.5.4 - 2022-07-25
|
|
81
99
|
|
|
82
|
-
- Added an option to delete the selected image.
|
|
100
|
+
- Added: an option to delete the selected image.
|
|
83
101
|
|
|
84
102
|
## 0.5.3 - 2022-07-25
|
|
85
103
|
|
|
86
|
-
- Fixed UI for showing the image upload progress.
|
|
104
|
+
- Fixed: UI for showing the image upload progress.
|
|
87
105
|
|
|
88
106
|
## 0.5.2 - 2022-07-22
|
|
89
107
|
|
|
90
|
-
- Added `paste-unformatted` addon in the slash commands. It removes all the
|
|
108
|
+
- Added: `paste-unformatted` addon in the slash commands. It removes all the
|
|
109
|
+
- HTML formatting while pasting.
|
|
91
110
|
|
|
92
111
|
## 0.5.1 - 2022-07-22
|
|
93
112
|
|
|
94
|
-
- Removed `margin-bottom` from the last p tag.
|
|
113
|
+
- Removed: `margin-bottom` from the last p tag.
|
|
95
114
|
|
|
96
115
|
## 0.5.0 - 2022-07-21
|
|
97
116
|
|
|
98
|
-
- Fixed:
|
|
117
|
+
- Fixed: the overlap of placeholder with images.
|
package/README.md
CHANGED
|
@@ -8,6 +8,15 @@ The **neetoEditor** library drives the rich text experience in the
|
|
|
8
8
|
yarn add @bigbinary/neeto-editor
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
Install all the peer dependencies.
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
yarn add @rails/activestorage
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
For setting up image upload refer
|
|
18
|
+
https://neeto-editor.onrender.com/?path=/docs/examples-customize-options-addons--addons.
|
|
19
|
+
|
|
11
20
|
## Development
|
|
12
21
|
|
|
13
22
|
Install all the dependencies by executing following command.
|