@progress/kendo-angular-editor 22.1.0-develop.9 → 23.0.0-develop.10

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.
Files changed (53) hide show
  1. package/common/apply-to-word-options.d.ts +1 -1
  2. package/common/css-settings.interface.d.ts +1 -1
  3. package/common/paste-cleanup-settings.d.ts +1 -1
  4. package/common/plugins-function.d.ts +1 -1
  5. package/common/resizable-options.interface.d.ts +1 -1
  6. package/editor.component.d.ts +13 -13
  7. package/fesm2022/progress-kendo-angular-editor.mjs +63 -63
  8. package/localization/custom-messages.component.d.ts +1 -1
  9. package/package-metadata.mjs +2 -2
  10. package/package.json +16 -16
  11. package/preventable-events/paste-event.d.ts +2 -2
  12. package/schematics/ngAdd/index.js +4 -4
  13. package/tools/alignment/editor-align-center-button.directive.d.ts +1 -1
  14. package/tools/alignment/editor-align-justify-button.directive.d.ts +1 -1
  15. package/tools/alignment/editor-align-left-button.directive.d.ts +1 -1
  16. package/tools/alignment/editor-align-right-button.directive.d.ts +1 -1
  17. package/tools/blockquote/editor-blockquote-button.directive.d.ts +1 -1
  18. package/tools/colorpicker/editor-back-color.directive.d.ts +1 -1
  19. package/tools/colorpicker/editor-colorpicker.component.d.ts +1 -1
  20. package/tools/colorpicker/editor-fore-color.directive.d.ts +1 -1
  21. package/tools/editor-clean-formatting-button.directive.d.ts +1 -1
  22. package/tools/fontfamily/editor-fontfamily.component.d.ts +2 -2
  23. package/tools/fontsize/editor-fontsize.component.d.ts +2 -2
  24. package/tools/format/editor-format.component.d.ts +2 -2
  25. package/tools/history/editor-redo-button.directive.d.ts +1 -1
  26. package/tools/history/editor-undo-button.directive.d.ts +1 -1
  27. package/tools/image/editor-insert-image-button.directive.d.ts +1 -1
  28. package/tools/indentation/editor-indent-button.directive.d.ts +1 -1
  29. package/tools/indentation/editor-outdent-button.directive.d.ts +1 -1
  30. package/tools/link/editor-create-link-button.directive.d.ts +1 -1
  31. package/tools/link/editor-insert-file-button.directive.d.ts +1 -1
  32. package/tools/link/editor-unlink-button.directive.d.ts +1 -1
  33. package/tools/list/editor-insert-ordered-list-button.directive.d.ts +1 -1
  34. package/tools/list/editor-insert-unordered-list-button.directive.d.ts +1 -1
  35. package/tools/print/editor-print-button.directive.d.ts +2 -2
  36. package/tools/select-all/select-all-button.directive.d.ts +1 -1
  37. package/tools/source/editor-view-source-button.directive.d.ts +1 -1
  38. package/tools/tables/editor-add-column-after-button.directive.d.ts +1 -1
  39. package/tools/tables/editor-add-column-before-button.directive.d.ts +1 -1
  40. package/tools/tables/editor-add-row-after-button.directive.d.ts +1 -1
  41. package/tools/tables/editor-add-row-before-button.directive.d.ts +1 -1
  42. package/tools/tables/editor-delete-column-button.directive.d.ts +1 -1
  43. package/tools/tables/editor-delete-row-button.directive.d.ts +1 -1
  44. package/tools/tables/editor-delete-table-button.directive.d.ts +1 -1
  45. package/tools/tables/editor-merge-cells-button.directive.d.ts +1 -1
  46. package/tools/tables/editor-split-cell-button.directive.d.ts +1 -1
  47. package/tools/typographical-emphasis/editor-bold-button.directive.d.ts +1 -1
  48. package/tools/typographical-emphasis/editor-italic-button.directive.d.ts +1 -1
  49. package/tools/typographical-emphasis/editor-strikethrough-button.directive.d.ts +1 -1
  50. package/tools/typographical-emphasis/editor-subscript-button.directive.d.ts +1 -1
  51. package/tools/typographical-emphasis/editor-superscript-button.directive.d.ts +1 -1
  52. package/tools/typographical-emphasis/editor-underline-button.directive.d.ts +1 -1
  53. package/util.d.ts +1 -1
@@ -37,7 +37,7 @@ const packageMetadata = {
37
37
  productCode: 'KENDOUIANGULAR',
38
38
  productCodes: ['KENDOUIANGULAR'],
39
39
  publishDate: 0,
40
- version: '22.1.0-develop.9',
40
+ version: '23.0.0-develop.10',
41
41
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
42
42
  };
43
43
 
@@ -610,7 +610,7 @@ const getUniqueStyleValues = (style, cssStyle) => {
610
610
  const conditionallyExecute = (fn) => (condition) => (param) => (condition ? fn(param) : param);
611
611
  // This re-declaration is necessary for proper API generation
612
612
  /**
613
- * Extracts the text from the current editor state's selection ([see example]({% slug plugins_editor %}#toc-popup-tools)).
613
+ * Extracts the text from the current editor state's selection ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/plugins#popup-tools)).
614
614
  *
615
615
  * @example
616
616
  * ```ts
@@ -1521,7 +1521,7 @@ const EditorErrorMessages = {
1521
1521
  pluginsCallbackType: (arg) => `plugins must be a function, but received ${JSON.stringify(arg)}.`,
1522
1522
  pastedContentCallbackType: (arg) => `pastedContent must be a function, but received ${JSON.stringify(arg)}.`,
1523
1523
  setPluginsOnce: 'The plugins cannot be changed dynamically. See https://www.telerik.com/kendo-angular-ui/components/editor/plugins/',
1524
- setPlaceHolderOnce: 'The placeholder cannot be changed dynamically. See https://www.telerik.com/kendo-angular-ui/components/editor/plugins/#toc-custom-plugins/',
1524
+ setPlaceHolderOnce: 'The placeholder cannot be changed dynamically. See https://www.telerik.com/kendo-angular-ui/components/editor/plugins/#custom-plugins/',
1525
1525
  printTool: 'The Print tool and functionality are supported only in iframe mode. See https://www.telerik.com/kendo-angular-ui/components/editor/api/EditorPrintDirective/'
1526
1526
  };
1527
1527
 
@@ -1576,11 +1576,11 @@ class PreventableEvent {
1576
1576
  }
1577
1577
 
1578
1578
  /**
1579
- * Fires when the Editor [`paste`]({% slug api_editor_editorcomponent %}#toc-paste) event occurs.
1579
+ * Fires when the Editor [`paste`](https://www.telerik.com/kendo-angular-ui/components/editor/api/editorcomponent#paste) event occurs.
1580
1580
  */
1581
1581
  class EditorPasteEvent extends PreventableEvent {
1582
1582
  /**
1583
- * Contains the HTML content cleaned according to the [`PasteCleanupSettings`]({% slug paste_cleanup %}).
1583
+ * Contains the HTML content cleaned according to the [`PasteCleanupSettings`](https://www.telerik.com/kendo-angular-ui/components/editor/paste-cleanup).
1584
1584
  */
1585
1585
  cleanedHtml;
1586
1586
  /**
@@ -1786,7 +1786,7 @@ class EditorCommandDialog extends EditorCommandBaseDirective {
1786
1786
 
1787
1787
  /**
1788
1788
  * Configures a `ToolBarButtonComponent` as an Editor **InsertImage** tool
1789
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
1789
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
1790
1790
  * Sets the SVG icon and `click` event handlers of the button.
1791
1791
  *
1792
1792
  * @example
@@ -1844,7 +1844,7 @@ class EditorCommandButton extends EditorCommandBaseDirective {
1844
1844
  }
1845
1845
 
1846
1846
  /**
1847
- * Configures a ToolBarButtonComponent as an Editor **Unlink** tool ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
1847
+ * Configures a ToolBarButtonComponent as an Editor **Unlink** tool ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
1848
1848
  * The directive sets the SVG icon and `click` event handlers for the button.
1849
1849
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
1850
1850
  *
@@ -1871,7 +1871,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
1871
1871
  }], ctorParameters: () => [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }] });
1872
1872
 
1873
1873
  /**
1874
- * Configures a ToolBarButtonComponent as an Editor **CreateLink** tool ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
1874
+ * Configures a ToolBarButtonComponent as an Editor **CreateLink** tool ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
1875
1875
  * The directive sets the SVG icon and `click` event handlers for the button.
1876
1876
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
1877
1877
  *
@@ -1898,7 +1898,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
1898
1898
  }], ctorParameters: () => [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }] });
1899
1899
 
1900
1900
  /**
1901
- * Configures a ToolBarButtonComponent as an Editor **Outdent** tool ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
1901
+ * Configures a ToolBarButtonComponent as an Editor **Outdent** tool ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
1902
1902
  * The directive sets the SVG icon and `click` event handlers for the button.
1903
1903
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
1904
1904
  *
@@ -1925,7 +1925,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
1925
1925
  }], ctorParameters: () => [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }] });
1926
1926
 
1927
1927
  /**
1928
- * Configures a ToolBarButtonComponent as an Editor **Indent** tool ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
1928
+ * Configures a ToolBarButtonComponent as an Editor **Indent** tool ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
1929
1929
  * The directive sets the SVG icon and `click` event handlers for the button.
1930
1930
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
1931
1931
  *
@@ -1952,7 +1952,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
1952
1952
  }], ctorParameters: () => [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }] });
1953
1953
 
1954
1954
  /**
1955
- * Configures a ToolBarButtonComponent as an Editor **InsertOrderedList** tool ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
1955
+ * Configures a ToolBarButtonComponent as an Editor **InsertOrderedList** tool ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
1956
1956
  * The directive sets the SVG icon and `click` event handlers for the button.
1957
1957
  * The directive also updates the `selected` state of the button based on the cursor position in the editing area.
1958
1958
  *
@@ -1980,7 +1980,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
1980
1980
 
1981
1981
  /**
1982
1982
  * Configures a ToolBarButtonComponent as an Editor **InsertUnorderedList** tool
1983
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
1983
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
1984
1984
  * This directive sets the SVG icon and `click` event handlers for the button.
1985
1985
  * It also updates the `selected` state of the button based on the cursor position in the editing area.
1986
1986
  *
@@ -2008,7 +2008,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2008
2008
 
2009
2009
  /**
2010
2010
  * Use this directive to turn a ToolBarButtonComponent into an Editor **AlignJustify** tool
2011
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
2011
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
2012
2012
  * The directive sets the SVG icon and `click` event handlers for the button.
2013
2013
  * It also updates the `selected` state of the button based on the cursor position in the editing area.
2014
2014
  *
@@ -2036,7 +2036,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2036
2036
 
2037
2037
  /**
2038
2038
  * Use this directive to turn a ToolBarButtonComponent into an Editor **AlignRight** tool
2039
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
2039
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
2040
2040
  * The directive sets the SVG icon and `click` event handlers for the button.
2041
2041
  * It also updates the `selected` state of the button based on the cursor position in the editing area.
2042
2042
  *
@@ -2064,7 +2064,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2064
2064
 
2065
2065
  /**
2066
2066
  * Use this directive to turn a ToolBarButtonComponent into an Editor **AlignCenter** tool
2067
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
2067
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
2068
2068
  * The directive sets the SVG icon and `click` event handlers for the button.
2069
2069
  * It also updates the `selected` state of the button based on the cursor position in the editing area.
2070
2070
  *
@@ -2092,7 +2092,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2092
2092
 
2093
2093
  /**
2094
2094
  * Use this directive to turn a ToolBarButtonComponent into an Editor **AlignLeft** tool
2095
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
2095
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
2096
2096
  * The directive sets the SVG icon and `click` event handlers for the button.
2097
2097
  * It also updates the `selected` state of the button based on the cursor position in the editing area.
2098
2098
  *
@@ -2433,9 +2433,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2433
2433
 
2434
2434
  /**
2435
2435
  * Configures a DropDownListComponent as an Editor tool
2436
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
2436
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
2437
2437
  * Associates a `kendo-dropdownlist` with an Editor command that changes the format of a content block.
2438
- * Automatically sets the options and values of the DropDownList ([see example]({% slug toolbartools_editor %}#toc-dropdownlists)).
2438
+ * Automatically sets the options and values of the DropDownList ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#dropdownlists)).
2439
2439
  *
2440
2440
  * @example
2441
2441
  * ```html
@@ -2697,7 +2697,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2697
2697
 
2698
2698
  /**
2699
2699
  * Configures a ToolBarButtonComponent as an Editor **Underline** tool
2700
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
2700
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
2701
2701
  * This directive sets the SVG icon and `click` event handlers for the button.
2702
2702
  * The directive also updates the `selected` state of the button based on the cursor position in the editing area.
2703
2703
  *
@@ -2725,7 +2725,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2725
2725
 
2726
2726
  /**
2727
2727
  * Configures a ToolBarButtonComponent as an Editor **Italic** tool
2728
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
2728
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
2729
2729
  * This directive sets the SVG icon and `click` event handlers for the button.
2730
2730
  * The directive also updates the `selected` state of the button based on the cursor position in the editing area.
2731
2731
  *
@@ -2753,7 +2753,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2753
2753
 
2754
2754
  /**
2755
2755
  * Configures a ToolBarButtonComponent as an Editor **Bold** tool
2756
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
2756
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
2757
2757
  * This directive sets the SVG icon and `click` event handlers for the button.
2758
2758
  * The directive also updates the `selected` state of the button based on the cursor position in the editing area.
2759
2759
  *
@@ -3187,7 +3187,7 @@ const getPasteCleanupAttributes = (config) => {
3187
3187
  return config.removeAttributes.reduce((acc, curr) => ({ ...acc, [curr]: removeAttribute }), initial);
3188
3188
  };
3189
3189
  /**
3190
- * Represents the [Kendo UI Editor component for Angular]({% slug overview_editor %}).
3190
+ * Represents the [Kendo UI Editor component for Angular](https://www.telerik.com/kendo-angular-ui/components/editor).
3191
3191
  *
3192
3192
  * Use the Editor to create and edit rich text content in your Angular applications.
3193
3193
  *
@@ -3208,7 +3208,7 @@ class EditorComponent {
3208
3208
  toolsService;
3209
3209
  renderer;
3210
3210
  /**
3211
- * Sets the value of the Editor ([see example](slug:overview_editor)).
3211
+ * Sets the value of the Editor ([see example](https://www.telerik.com/kendo-angular-ui/components/editor)).
3212
3212
  * Use this property to update the Editor content programmatically.
3213
3213
  */
3214
3214
  set value(value) {
@@ -3227,7 +3227,7 @@ class EditorComponent {
3227
3227
  }
3228
3228
  }
3229
3229
  /**
3230
- * Sets the disabled state of the component. To disable the Editor in reactive forms, see [Forms Support](slug:formssupport_editor#toc-managing-the-editor-disabled-state-in-reactive-forms).
3230
+ * Sets the disabled state of the component. To disable the Editor in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/editor/forms#managing-the-editor-disabled-state-in-reactive-forms).
3231
3231
  */
3232
3232
  set disabled(value) {
3233
3233
  this._disabled = value || false;
@@ -3311,7 +3311,7 @@ class EditorComponent {
3311
3311
  */
3312
3312
  applyToWord = false;
3313
3313
  /**
3314
- * Provides a custom schema for the Editor ([see example]({% slug schema_editor %})).
3314
+ * Provides a custom schema for the Editor ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/prosemirror-schema)).
3315
3315
  */
3316
3316
  set schema(value) {
3317
3317
  if (isDevMode) {
@@ -3329,7 +3329,7 @@ class EditorComponent {
3329
3329
  }
3330
3330
  /**
3331
3331
  * Defines a function to customize the plugins used by the Editor.
3332
- * The function receives the default plugins and returns the plugins to use ([see example]({% slug plugins_editor %})).
3332
+ * The function receives the default plugins and returns the plugins to use ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/prosemirror-plugins)).
3333
3333
  */
3334
3334
  set plugins(fn) {
3335
3335
  if (isDevMode) {
@@ -3366,12 +3366,12 @@ class EditorComponent {
3366
3366
  */
3367
3367
  preserveWhitespace = false;
3368
3368
  /**
3369
- * Configures how pasted content is cleaned before it is added to the Editor ([see example]({% slug paste_cleanup %})).
3369
+ * Configures how pasted content is cleaned before it is added to the Editor ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/paste-cleanup)).
3370
3370
  * Use this property to remove unwanted HTML, styles, or attributes from pasted content.
3371
3371
  */
3372
3372
  pasteCleanupSettings;
3373
3373
  /**
3374
- * Determines whether the Editor can be resized ([see example](slug:resizing_editor#toc-resizing-the-editor)).
3374
+ * Determines whether the Editor can be resized ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/resizing#resizing-the-editor)).
3375
3375
  * Set to `true` or provide an object with resizing options.
3376
3376
  * @default false
3377
3377
  */
@@ -3379,20 +3379,20 @@ class EditorComponent {
3379
3379
  /**
3380
3380
  * Fires when the Editor value changes due to user interaction.
3381
3381
  * This event does not fire when the value changes programmatically through `ngModel` or form bindings
3382
- * ([see example](slug:events_editor)).
3382
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/events)).
3383
3383
  */
3384
3384
  valueChange = new EventEmitter();
3385
3385
  /**
3386
- * Fires when the Editor content area receives focus ([see example](slug:events_editor)).
3386
+ * Fires when the Editor content area receives focus ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/events)).
3387
3387
  */
3388
3388
  onFocus = new EventEmitter();
3389
3389
  /**
3390
- * Fires when the user paste content into the Editor ([see example](slug:events_editor)).
3390
+ * Fires when the user paste content into the Editor ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/events)).
3391
3391
  * This event is preventable. If you cancel it, the Editor content does not change.
3392
3392
  */
3393
3393
  paste = new EventEmitter();
3394
3394
  /**
3395
- * Fires when the Editor content area is blurred ([see example](slug:events_editor)).
3395
+ * Fires when the Editor content area is blurred ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/events)).
3396
3396
  */
3397
3397
  onBlur = new EventEmitter();
3398
3398
  hostClass = true;
@@ -3453,7 +3453,7 @@ class EditorComponent {
3453
3453
  return this._view;
3454
3454
  }
3455
3455
  /**
3456
- * Returns the text currently selected in the Editor ([see example]({% slug selection_editor %}#toc-retrieve-the-selected-text)).
3456
+ * Returns the text currently selected in the Editor ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/selection#retrieve-the-selected-text)).
3457
3457
  */
3458
3458
  get selectionText() {
3459
3459
  return this._view && this._view.state ? getSelectionText$1(this._view.state) : '';
@@ -3565,7 +3565,7 @@ class EditorComponent {
3565
3565
  }
3566
3566
  /**
3567
3567
  * Executes a command on the currently selected text
3568
- * ([more information and example]({% slug toolbartools_editor %}#toc-associating-toolbar-tools-with-editor-commands)).
3568
+ * ([more information and example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#associating-toolbar-tools-with-editor-commands)).
3569
3569
  *
3570
3570
  * @param {EditorCommand} commandName - The command that will be executed.
3571
3571
  * @param {any} attr - Optional parameters for the command.
@@ -4630,10 +4630,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4630
4630
  }] } });
4631
4631
 
4632
4632
  /**
4633
- * Configures a DropDownListComponent as an Editor tool ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
4633
+ * Configures a DropDownListComponent as an Editor tool ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
4634
4634
  * Use this component to associate a `kendo-dropdownlist` with an Editor command that changes the font size of a content block.
4635
4635
  * The component automatically sets the options and values of the drop-down list.
4636
- * ([see example]({% slug toolbartools_editor %}#toc-dropdownlists))
4636
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#dropdownlists))
4637
4637
  *
4638
4638
  * @example
4639
4639
  * ```html
@@ -5120,9 +5120,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5120
5120
  }] } });
5121
5121
 
5122
5122
  /**
5123
- * Configures a DropDownListComponent as an Editor tool ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
5123
+ * Configures a DropDownListComponent as an Editor tool ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
5124
5124
  * Use this component to associate a kendo-toolbar-dropdownlist with an Editor command that changes the font family of a content block.
5125
- * The component automatically sets the options and values of the drop-down list ([see example]({% slug toolbartools_editor %}#toc-dropdownlists)).
5125
+ * The component automatically sets the options and values of the drop-down list ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#dropdownlists)).
5126
5126
  *
5127
5127
  * @example
5128
5128
  * ```html
@@ -5528,7 +5528,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5528
5528
  /**
5529
5529
  * Configures a ColorPickerComponent as a ToolBar tool.
5530
5530
  * Use this component to associate a `kendo-toolbar-colorpicker` with an Editor command that changes the foreground or background color of the text.
5531
- * Use the `kendoEditorForeColor` or `kendoEditorBackColor` directive ([more information]({% slug toolbartools_editor %}#toc-colorpickers)).
5531
+ * Use the `kendoEditorForeColor` or `kendoEditorBackColor` directive ([more information](https://www.telerik.com/kendo-angular-ui/components/editor/tools#colorpickers)).
5532
5532
  *
5533
5533
  * @example
5534
5534
  * ```html
@@ -6345,7 +6345,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6345
6345
  }] } });
6346
6346
 
6347
6347
  /**
6348
- * Configures a ToolBarButtonComponent as an Editor **Blockquote** tool ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6348
+ * Configures a ToolBarButtonComponent as an Editor **Blockquote** tool ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6349
6349
  * The directive predefines the SVG icon and `click` event handlers of the button.
6350
6350
  *
6351
6351
  * @example
@@ -6372,7 +6372,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6372
6372
 
6373
6373
  /**
6374
6374
  * Configures a ToolBarButtonComponent as an Editor **Redo** tool
6375
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6375
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6376
6376
  * Sets the SVG icon and `click` event handlers of the button.
6377
6377
  * Updates the `disabled` state of the button based on the cursor position in the editing area.
6378
6378
  *
@@ -6400,7 +6400,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6400
6400
 
6401
6401
  /**
6402
6402
  * Configures a ToolBarButtonComponent as an Editor **Undo** tool
6403
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6403
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6404
6404
  * Sets the SVG icon and `click` event handlers of the button.
6405
6405
  * Updates the `disabled` state of the button based on the cursor position in the editing area.
6406
6406
  *
@@ -6428,7 +6428,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6428
6428
 
6429
6429
  /**
6430
6430
  * Configures a ToolBarButtonComponent as an Editor **ViewSource** tool
6431
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6431
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6432
6432
  * The directive sets the SVG icon and `click` event handlers for the button.
6433
6433
  *
6434
6434
  * @example
@@ -6455,7 +6455,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6455
6455
 
6456
6456
  /**
6457
6457
  * Configures a ToolBarButtonComponent as an Editor **Strikethrough** tool
6458
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6458
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6459
6459
  * This directive sets the SVG icon and `click` event handlers for the button.
6460
6460
  * The directive also updates the `selected` state of the button based on the cursor position in the editing area.
6461
6461
  *
@@ -6483,7 +6483,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6483
6483
 
6484
6484
  /**
6485
6485
  * Configures a ToolBarButtonComponent as an Editor **Subscript** tool
6486
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6486
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6487
6487
  * This directive sets the SVG icon and `click` event handlers for the button.
6488
6488
  * The directive also updates the `selected` state of the button based on the cursor position in the editing area.
6489
6489
  *
@@ -6511,7 +6511,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6511
6511
 
6512
6512
  /**
6513
6513
  * Configures a ToolBarButtonComponent as an Editor **Superscript** tool
6514
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6514
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6515
6515
  * This directive sets the SVG icon and `click` event handlers for the button.
6516
6516
  * The directive also updates the `selected` state of the button based on the cursor position in the editing area.
6517
6517
  *
@@ -6538,7 +6538,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6538
6538
  }], ctorParameters: () => [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }] });
6539
6539
 
6540
6540
  /**
6541
- * Configures a ToolBarButtonComponent as an Editor **Insert File** tool ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6541
+ * Configures a ToolBarButtonComponent as an Editor **Insert File** tool ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6542
6542
  * The directive sets the SVG icon and `click` event handlers for the button.
6543
6543
  *
6544
6544
  * @example
@@ -6564,7 +6564,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6564
6564
  }], ctorParameters: () => [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }] });
6565
6565
 
6566
6566
  /**
6567
- * Configures an EditorColorPickerComponent for manipulating the foreground color of the text ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6567
+ * Configures an EditorColorPickerComponent for manipulating the foreground color of the text ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6568
6568
  *
6569
6569
  * @example
6570
6570
  * ```html
@@ -6593,7 +6593,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6593
6593
  }], ctorParameters: () => [{ type: EditorColorPickerComponent }] });
6594
6594
 
6595
6595
  /**
6596
- * Configures an EditorColorPickerComponent for manipulating the background color of the text ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6596
+ * Configures an EditorColorPickerComponent for manipulating the background color of the text ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6597
6597
  *
6598
6598
  * @example
6599
6599
  * ```html
@@ -6628,7 +6628,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6628
6628
  /**
6629
6629
  * A directive that configures a ToolBarButtonComponent as an Editor **Clean Formatting** tool.
6630
6630
  * The directive sets the SVG icon and `click` event handlers for the button.
6631
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools))
6631
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools))
6632
6632
  *
6633
6633
  * @example
6634
6634
  * ```html
@@ -6654,7 +6654,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6654
6654
 
6655
6655
  /**
6656
6656
  * Configures a ToolBarButtonComponent as an Editor **AddColumnBefore** tool
6657
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6657
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6658
6658
  * The directive sets the SVG icon and `click` event handlers for the button.
6659
6659
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
6660
6660
  *
@@ -6682,7 +6682,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6682
6682
 
6683
6683
  /**
6684
6684
  * Configures a ToolBarButtonComponent as an Editor **AddColumnAfter** tool
6685
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6685
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6686
6686
  * The directive sets the SVG icon and `click` event handlers for the button.
6687
6687
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
6688
6688
  *
@@ -6710,7 +6710,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6710
6710
 
6711
6711
  /**
6712
6712
  * Configures a ToolBarButtonComponent as an Editor **AddRowBefore** tool
6713
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6713
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6714
6714
  * The directive sets the SVG icon and `click` event handlers for the button.
6715
6715
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
6716
6716
  *
@@ -6738,7 +6738,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6738
6738
 
6739
6739
  /**
6740
6740
  * Configures a ToolBarButtonComponent as an Editor **AddRowAfter** tool
6741
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6741
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6742
6742
  * The directive sets the SVG icon and `click` event handlers for the button.
6743
6743
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
6744
6744
  *
@@ -6766,7 +6766,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6766
6766
 
6767
6767
  /**
6768
6768
  * Configures a ToolBarButtonComponent as an Editor **DeleteColumn** tool
6769
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6769
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6770
6770
  * The directive sets the SVG icon and `click` event handlers for the button.
6771
6771
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
6772
6772
  *
@@ -6794,7 +6794,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6794
6794
 
6795
6795
  /**
6796
6796
  * Configures a ToolBarButtonComponent as an Editor **DeleteRow** tool
6797
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6797
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6798
6798
  * The directive sets the SVG icon and `click` event handlers for the button.
6799
6799
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
6800
6800
  *
@@ -6822,7 +6822,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6822
6822
 
6823
6823
  /**
6824
6824
  * Configures a ToolBarButtonComponent as an Editor **DeleteTable** tool
6825
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6825
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6826
6826
  * The directive sets the SVG icon and `click` event handlers for the button.
6827
6827
  * The directive also updates the `disabled` state of the button based on the cursor position in the editing area.
6828
6828
  *
@@ -6850,7 +6850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6850
6850
 
6851
6851
  /**
6852
6852
  * Use this component to override the default component messages
6853
- * ([see example]({% slug globalization_editor %}#toc-custom-messages)).
6853
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/globalization#custom-messages)).
6854
6854
  * @example
6855
6855
  * ```html
6856
6856
  * <kendo-editor>
@@ -6895,10 +6895,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6895
6895
 
6896
6896
  /**
6897
6897
  * Configures a ToolBarButtonComponent as an Editor **Print** tool
6898
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6898
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6899
6899
  * This directive sets the SVG icon and `click` event handlers for the button.
6900
6900
  *
6901
- * The Editor Print tool works only in the default [`iframe`](slug:api_editor_editorcomponent#iframe) mode.
6901
+ * The Editor Print tool works only in the default [`iframe`](https://www.telerik.com/kendo-angular-ui/components/editor/api/editorcomponent#iframe) mode.
6902
6902
  *
6903
6903
  * @example
6904
6904
  * ```html
@@ -6942,7 +6942,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6942
6942
 
6943
6943
  /**
6944
6944
  * Configures a ToolBarButtonComponent as an Editor **SelectAll** tool
6945
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6945
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6946
6946
  * This directive sets the SVG icon and `click` event handlers for the button.
6947
6947
  *
6948
6948
  * @example
@@ -6975,7 +6975,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6975
6975
  * @hidden
6976
6976
  *
6977
6977
  * Configures an existing ToolBarButtonComponent as an Editor SplitCell tool
6978
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
6978
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
6979
6979
  * The directive predefines the `icon` and `click` event handlers of the button.
6980
6980
  * It also updates the `disabled` state of the button based on the cursor position in the editing area.
6981
6981
  *
@@ -7005,7 +7005,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
7005
7005
  * @hidden
7006
7006
  *
7007
7007
  * Configures an existing ToolBarButtonComponent as an Editor **MergeCells** tool
7008
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
7008
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
7009
7009
  * The directive predefines the `icon` and `click` event handlers of the button.
7010
7010
  * It also updates the `disabled` state of the button based on the cursor position in the editing area.
7011
7011
  *
@@ -7,7 +7,7 @@ import { MessagesDirective } from './messages';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Use this component to override the default component messages
10
- * ([see example]({% slug globalization_editor %}#toc-custom-messages)).
10
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/globalization#custom-messages)).
11
11
  * @example
12
12
  * ```html
13
13
  * <kendo-editor>
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1769600187,
11
- "version": "22.1.0-develop.9",
10
+ "publishDate": 1770666868,
11
+ "version": "23.0.0-develop.10",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-editor",
3
- "version": "22.1.0-develop.9",
3
+ "version": "23.0.0-develop.10",
4
4
  "description": "Kendo UI Editor for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -17,7 +17,7 @@
17
17
  "package": {
18
18
  "productName": "Kendo UI for Angular",
19
19
  "productCode": "KENDOUIANGULAR",
20
- "publishDate": 1769600187,
20
+ "publishDate": 1770666868,
21
21
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
22
22
  }
23
23
  },
@@ -27,25 +27,25 @@
27
27
  "@angular/core": "19 - 21",
28
28
  "@angular/forms": "19 - 21",
29
29
  "@angular/platform-browser": "19 - 21",
30
- "@progress/kendo-drawing": "^1.23.1",
30
+ "@progress/kendo-drawing": "^1.24.0",
31
31
  "@progress/kendo-licensing": "^1.10.0",
32
- "@progress/kendo-angular-buttons": "22.1.0-develop.9",
33
- "@progress/kendo-angular-common": "22.1.0-develop.9",
34
- "@progress/kendo-angular-dialog": "22.1.0-develop.9",
35
- "@progress/kendo-angular-dropdowns": "22.1.0-develop.9",
36
- "@progress/kendo-angular-inputs": "22.1.0-develop.9",
37
- "@progress/kendo-angular-intl": "22.1.0-develop.9",
38
- "@progress/kendo-angular-l10n": "22.1.0-develop.9",
39
- "@progress/kendo-angular-label": "22.1.0-develop.9",
40
- "@progress/kendo-angular-layout": "22.1.0-develop.9",
41
- "@progress/kendo-angular-icons": "22.1.0-develop.9",
42
- "@progress/kendo-angular-popup": "22.1.0-develop.9",
43
- "@progress/kendo-angular-toolbar": "22.1.0-develop.9",
32
+ "@progress/kendo-angular-buttons": "23.0.0-develop.10",
33
+ "@progress/kendo-angular-common": "23.0.0-develop.10",
34
+ "@progress/kendo-angular-dialog": "23.0.0-develop.10",
35
+ "@progress/kendo-angular-dropdowns": "23.0.0-develop.10",
36
+ "@progress/kendo-angular-inputs": "23.0.0-develop.10",
37
+ "@progress/kendo-angular-intl": "23.0.0-develop.10",
38
+ "@progress/kendo-angular-l10n": "23.0.0-develop.10",
39
+ "@progress/kendo-angular-label": "23.0.0-develop.10",
40
+ "@progress/kendo-angular-layout": "23.0.0-develop.10",
41
+ "@progress/kendo-angular-icons": "23.0.0-develop.10",
42
+ "@progress/kendo-angular-popup": "23.0.0-develop.10",
43
+ "@progress/kendo-angular-toolbar": "23.0.0-develop.10",
44
44
  "rxjs": "^6.5.3 || ^7.0.0"
45
45
  },
46
46
  "dependencies": {
47
47
  "tslib": "^2.3.1",
48
- "@progress/kendo-angular-schematics": "22.1.0-develop.9",
48
+ "@progress/kendo-angular-schematics": "23.0.0-develop.10",
49
49
  "@progress/kendo-editor-common": "1.12.5"
50
50
  },
51
51
  "schematics": "./schematics/collection.json",
@@ -4,11 +4,11 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { PreventableEvent } from "./preventable-event";
6
6
  /**
7
- * Fires when the Editor [`paste`]({% slug api_editor_editorcomponent %}#toc-paste) event occurs.
7
+ * Fires when the Editor [`paste`](https://www.telerik.com/kendo-angular-ui/components/editor/api/editorcomponent#paste) event occurs.
8
8
  */
9
9
  export declare class EditorPasteEvent extends PreventableEvent {
10
10
  /**
11
- * Contains the HTML content cleaned according to the [`PasteCleanupSettings`]({% slug paste_cleanup %}).
11
+ * Contains the HTML content cleaned according to the [`PasteCleanupSettings`](https://www.telerik.com/kendo-angular-ui/components/editor/paste-cleanup).
12
12
  */
13
13
  cleanedHtml: string;
14
14
  /**
@@ -9,12 +9,12 @@ const schematics_1 = require("@angular-devkit/schematics");
9
9
  function default_1(options) {
10
10
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'EditorModule', package: 'editor', peerDependencies: {
11
11
  // peer dependencies of kendo-angular-dropdowns
12
- '@progress/kendo-angular-navigation': '22.1.0-develop.9',
13
- '@progress/kendo-angular-treeview': '22.1.0-develop.9',
12
+ '@progress/kendo-angular-navigation': '23.0.0-develop.10',
13
+ '@progress/kendo-angular-treeview': '23.0.0-develop.10',
14
14
  // peer dependency of kendo-angular-layout
15
- '@progress/kendo-angular-progressbar': '22.1.0-develop.9',
15
+ '@progress/kendo-angular-progressbar': '23.0.0-develop.10',
16
16
  // peer dependency of kendo-angular-inputs
17
- '@progress/kendo-angular-dialog': '22.1.0-develop.9',
17
+ '@progress/kendo-angular-dialog': '23.0.0-develop.10',
18
18
  // Peer dependency of icons
19
19
  '@progress/kendo-svg-icons': '^4.0.0'
20
20
  } });
@@ -10,7 +10,7 @@ import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
12
  * Use this directive to turn a ToolBarButtonComponent into an Editor **AlignCenter** tool
13
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
13
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/editor/tools#built-in-tools)).
14
14
  * The directive sets the SVG icon and `click` event handlers for the button.
15
15
  * It also updates the `selected` state of the button based on the cursor position in the editing area.
16
16
  *