41.3.1 • Published 2 days ago

@ckeditor/ckeditor5-build-balloon-block v41.3.1

Weekly downloads
3,902
License
GPL-2.0-or-later
Repository
github
Last release
2 days ago

CKEditor 5 balloon block editor build

npm version Coverage Status Build Status Dependency Status

The build of CKEditor 5 featuring the balloon and block toolbars. Read more about the balloon block editor build and see the demo.

CKEditor 5 balloon block editor build screenshot

Documentation

See:

Quick start

First, install the build from npm:

npm install --save @ckeditor/ckeditor5-build-balloon-block

And use it in your website:

<div id="editor">
	<p>This is the editor content.</p>
</div>
<script src="./node_modules/@ckeditor/ckeditor5-build-balloon-block/build/ckeditor.js"></script>
<script>
	BalloonEditor
		.create( document.querySelector( '#editor' ) )
		.then( editor => {
			window.editor = editor;
		} )
		.catch( error => {
			console.error( 'There was a problem initializing the editor.', error );
		} );
</script>

Or in your JavaScript application:

import BalloonEditor from '@ckeditor/ckeditor5-build-balloon-block';

// Or using the CommonJS version:
// const BalloonEditor = require( '@ckeditor/ckeditor5-build-balloon-block' );

BalloonEditor
	.create( document.querySelector( '#editor' ) )
	.then( editor => {
		window.editor = editor;
	} )
	.catch( error => {
		console.error( 'There was a problem initializing the editor.', error );
	} );

Note: If you are planning to integrate CKEditor 5 deep into your application, it is actually more convenient and recommended to install and import the source modules directly (like it happens in ckeditor.js). Read more in the Advanced setup guide.

Note: You can configure the block toolbar items using the config.blockToolbar option.

License

Licensed under the terms of GNU General Public License Version 2 or later. For full details about the license, please check the LICENSE.md file or https://ckeditor.com/legal/ckeditor-oss-license.

41.4.0-alpha.0

9 days ago

41.3.1

11 days ago

41.3.0

17 days ago

41.3.0-alpha.2

25 days ago

41.3.0-alpha.3

25 days ago

41.3.0-alpha.4

25 days ago

41.2.1

1 month ago

41.3.0-alpha.1

2 months ago

41.3.0-alpha.0

2 months ago

41.2.0

2 months ago

41.1.0

3 months ago

41.0.0

3 months ago

40.2.0

5 months ago

40.0.0

7 months ago

38.2.0-alpha.1

9 months ago

38.2.0-alpha.0

10 months ago

38.1.1

10 months ago

40.1.0

5 months ago

39.0.2

8 months ago

39.0.1

9 months ago

39.0.0

9 months ago

38.1.0

10 months ago

38.0.1

11 months ago

38.0.0

11 months ago

38.0.0-rc.0

12 months ago

38.0.0-rc.1

12 months ago

37.1.0

1 year ago

37.0.0

1 year ago

37.0.1

1 year ago

37.0.0-rc.0

1 year ago

37.0.0-alpha.3

1 year ago

37.0.0-alpha.1

1 year ago

37.0.0-alpha.2

1 year ago

37.0.0-alpha.0

1 year ago

36.0.1

1 year ago

36.0.0

1 year ago

35.3.0

1 year ago

35.4.0

1 year ago

35.3.1

1 year ago

35.3.2

1 year ago

35.2.1

2 years ago

35.2.0

2 years ago

35.1.0

2 years ago

35.0.0

2 years ago

35.0.1

2 years ago

34.1.0

2 years ago

34.2.0

2 years ago

34.0.0

2 years ago

33.0.0

2 years ago

32.0.0

2 years ago

31.1.0

2 years ago

31.0.0

3 years ago

30.0.0

3 years ago

29.2.0

3 years ago

29.1.0

3 years ago

29.0.0

3 years ago

28.0.0

3 years ago

27.1.0

3 years ago

27.0.0

3 years ago

26.0.0

3 years ago

25.0.0

3 years ago

24.0.0

3 years ago

23.1.0

3 years ago

23.0.0

4 years ago

22.0.0

4 years ago

21.0.0

4 years ago

20.0.0

4 years ago

19.0.2

4 years ago

19.0.1

4 years ago

19.0.0

4 years ago

18.0.0

4 years ago

17.0.0

4 years ago

16.0.0

4 years ago

15.0.0

5 years ago

12.4.0

5 years ago

12.3.1

5 years ago

12.3.0

5 years ago

12.2.0

5 years ago

12.1.0

5 years ago

12.0.0

5 years ago

0.0.1

5 years ago