ps-toolkit-ui 1.7.72 → 1.7.75
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/bundles/ps-toolkit-ui.umd.js +26 -0
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/form/ckeditor/form.ckeditor.component.js +27 -1
- package/fesm2015/ps-toolkit-ui.js +26 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/components/form/ckeditor/form.ckeditor.component.d.ts +9 -0
- package/package.json +1 -1
|
@@ -7653,6 +7653,32 @@
|
|
|
7653
7653
|
function FormCkeditorComponent() {
|
|
7654
7654
|
this.changeIndex = new core.EventEmitter();
|
|
7655
7655
|
this.Editor = Editor__namespace;
|
|
7656
|
+
this.config = {
|
|
7657
|
+
toolbar: {
|
|
7658
|
+
items: [
|
|
7659
|
+
'code',
|
|
7660
|
+
'alignment',
|
|
7661
|
+
'|',
|
|
7662
|
+
'link',
|
|
7663
|
+
'bulletedList',
|
|
7664
|
+
'numberedList',
|
|
7665
|
+
'|',
|
|
7666
|
+
'outdent',
|
|
7667
|
+
'indent',
|
|
7668
|
+
'|',
|
|
7669
|
+
'insertTable',
|
|
7670
|
+
'mediaEmbed',
|
|
7671
|
+
'undo',
|
|
7672
|
+
'redo',
|
|
7673
|
+
'imageInsert',
|
|
7674
|
+
'imageUpload'
|
|
7675
|
+
]
|
|
7676
|
+
},
|
|
7677
|
+
alignment: {
|
|
7678
|
+
options: ['left', 'right', 'center', 'justify']
|
|
7679
|
+
},
|
|
7680
|
+
mediaEmbed: {}
|
|
7681
|
+
};
|
|
7656
7682
|
}
|
|
7657
7683
|
FormCkeditorComponent.prototype.ngOnInit = function () {
|
|
7658
7684
|
var _this = this;
|