
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
angular-document-editor
Advanced tools
[](https://www.npmjs.com/package/angular-doc-editor) [](https://www.npmjs.com/package/angular-doc-editor) [
Using the component in your templates Use the editor in your templates like this:
<jodit-editor [config]="{buttons: 'bold'}"></jodit-editor>
In config you can set all Jodit's options
Note about toolbar buttons override:
Jodit editor apply a different toolbar buttons layout based on width available for the editor itself. So a different width size for editor will show a different buttons layout. The "buttons" config setting in the example above will override only the default toolbar buttons for large widths. If you want to override buttons displayed on all editor sizes use something like this:
<jodit-editor
[config]="{
buttons: 'bold,strikethrough,underline,italic'
buttonsMD: 'bold,strikethrough,underline,italic'
buttonsSM: 'bold,strikethrough,underline,italic'
buttonsXS: 'bold,strikethrough,underline,italic'
};"
></jodit-editor>
You can also bind editor events via a shorthand prop on the editor, for example:
<jodit-editor (onChange)="handleEvent($event)"></jodit-editor>
Where the handler gets called with an object containing the properties event, which is the event object, and editor, which is a reference to the editor.
This package is available under MIT License.
FAQs
[](https://www.npmjs.com/package/angular-doc-editor) [](https://www.npmjs.com/package/angular-doc-editor) [
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.