@apexcura/ui-components 0.0.15-Beta85 → 0.0.15-Beta86
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/dist/index.js +6 -1
- package/dist/index.mjs +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -385,7 +385,12 @@ var Editor2 = (props) => {
|
|
|
385
385
|
import_ckeditor5_react.CKEditor,
|
|
386
386
|
{
|
|
387
387
|
editor: import_ckeditor5_build_classic.default,
|
|
388
|
-
config: {
|
|
388
|
+
config: {
|
|
389
|
+
placeholder: `Enter Text`,
|
|
390
|
+
toolbar: {
|
|
391
|
+
items: ["undo", "redo", "|", "bold", "italic"]
|
|
392
|
+
}
|
|
393
|
+
},
|
|
389
394
|
data: props.value || "",
|
|
390
395
|
onReady: (editor) => {
|
|
391
396
|
try {
|
package/dist/index.mjs
CHANGED
|
@@ -315,7 +315,12 @@ var Editor2 = (props) => {
|
|
|
315
315
|
CKEditor,
|
|
316
316
|
{
|
|
317
317
|
editor: ClassicEditor,
|
|
318
|
-
config: {
|
|
318
|
+
config: {
|
|
319
|
+
placeholder: `Enter Text`,
|
|
320
|
+
toolbar: {
|
|
321
|
+
items: ["undo", "redo", "|", "bold", "italic"]
|
|
322
|
+
}
|
|
323
|
+
},
|
|
319
324
|
data: props.value || "",
|
|
320
325
|
onReady: (editor) => {
|
|
321
326
|
try {
|