ps-toolkit-ui 1.7.82 → 1.7.85

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.
@@ -7652,30 +7652,10 @@
7652
7652
  function FormCkeditorComponent() {
7653
7653
  this.changeIndex = new core.EventEmitter();
7654
7654
  this.config = {
7655
- toolbar: {
7656
- items: [
7657
- 'code',
7658
- 'alignment',
7659
- '|',
7660
- 'link',
7661
- 'bulletedList',
7662
- 'numberedList',
7663
- '|',
7664
- 'outdent',
7665
- 'indent',
7666
- '|',
7667
- 'insertTable',
7668
- 'mediaEmbed',
7669
- 'undo',
7670
- 'redo',
7671
- 'imageInsert',
7672
- 'imageUpload'
7673
- ]
7674
- },
7675
- alignment: {
7676
- options: ['left', 'right', 'center', 'justify']
7677
- },
7678
- mediaEmbed: {}
7655
+ toolbar: [{ name: 'document', items: ['Source', '-', 'NewPage', 'Preview', '-', 'Templates'] },
7656
+ { name: 'clipboard', items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo'] },
7657
+ '/',
7658
+ { name: 'basicstyles', items: ['Bold', 'Italic'] }]
7679
7659
  };
7680
7660
  }
7681
7661
  FormCkeditorComponent.prototype.ngOnInit = function () {
@@ -7724,8 +7704,8 @@
7724
7704
  };
7725
7705
  };
7726
7706
  FormCkeditorComponent.prototype.onFocusIn = function () {
7727
- console.log(this.inputBase);
7728
- this.inputBase.nativeElement.focus();
7707
+ // @ts-ignore
7708
+ this.inputBase.instance.focus();
7729
7709
  };
7730
7710
  FormCkeditorComponent.prototype.onKeyDown = function (e) {
7731
7711
  this.inp.error = null;