-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Editor Custom Toolbar Documentation #8905
Comments
I think the editor might actually be broken here. It still supports the deprecated <div class="p-editor-toolbar" *ngIf="toolbar || toolbarTemplate">
<ng-content select="p-header"></ng-content>
<ng-container *ngTemplateOutlet="headerTemplate"></ng-container>
</div> |
@yigitfindikli Please review my comment above and respond with what type of change you would accept. Considering the showcase is currently broken, I'm pretty sure it's not working the way you think it should. For clarity, the current situation is this:
My change would have continued to support Maybe something like this: <div class="p-editor-toolbar" *ngIf="toolbar || headerTemplate || toolbarTemplate">
<ng-content select="p-header"></ng-content>
<ng-container *ngTemplateOutlet="headerTemplate || toolbarTemplate"></ng-container>
</div> |
Sorry for the late reply, for a good developer experience, its better to drop support for |
@abhaykeerthy12 Looks like the documentation was just recently updated to use The rejected PR does exactly that, drops support for |
Thanks for reminding that |
I've run into this same issue. Noticed that using somewhat works but is deprecated. I've tried messing around with the quill modules but didn't make much headway. @yigitfindikli this should be labeled as a bug, not an enhancement. There does not seem to be a supported way to customize the Quill Editor toolbar. |
Fixed #8905 - Update Editor Custom Toolbar Documentation
Current behavior
Current editor / quilljs example in documentation for custom toolbar not working. the classes are old. but primereact has updated quill documentaion
Expected behavior
Documentation should provide new editor custom toolbar example
What is the motivation / use case for changing the behavior?
Documentation is old for editor
Angular version:
9.1.9
PrimeNG version:
9.1.0
The text was updated successfully, but these errors were encountered: