@progress/kendo-angular-layout 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 (44) hide show
  1. package/avatar/avatar.component.d.ts +9 -17
  2. package/avatar/l10n/custom-messages.component.d.ts +1 -1
  3. package/avatar/models/fill.d.ts +2 -2
  4. package/avatar/models/rounded.d.ts +1 -1
  5. package/avatar/models/size.d.ts +2 -2
  6. package/avatar/models/theme-color.d.ts +2 -2
  7. package/card/card-actions.component.d.ts +1 -1
  8. package/card/card.component.d.ts +1 -1
  9. package/drawer/drawer-container.component.d.ts +1 -1
  10. package/drawer/drawer.component.d.ts +4 -4
  11. package/drawer/models/drawer-animation.interface.d.ts +1 -1
  12. package/drawer/models/drawer-item-expand.interface.d.ts +1 -1
  13. package/drawer/models/drawer-item.interface.d.ts +1 -1
  14. package/drawer/models/position.d.ts +1 -1
  15. package/expansionpanel/expansionpanel-title.directive.d.ts +1 -1
  16. package/expansionpanel/expansionpanel.component.d.ts +15 -15
  17. package/fesm2022/progress-kendo-angular-layout.mjs +164 -199
  18. package/layouts/grid-layout.component.d.ts +5 -5
  19. package/layouts/gridlayout-item.component.d.ts +4 -4
  20. package/layouts/stack-layout.component.d.ts +4 -4
  21. package/package-metadata.mjs +2 -2
  22. package/package.json +9 -9
  23. package/panelbar/panelbar-item-model.d.ts +1 -1
  24. package/panelbar/panelbar-item-title.directive.d.ts +2 -2
  25. package/panelbar/panelbar-item.component.d.ts +9 -9
  26. package/panelbar/panelbar.component.d.ts +10 -10
  27. package/splitter/splitter.component.d.ts +1 -1
  28. package/stepper/localization/custom-messages.component.d.ts +1 -1
  29. package/stepper/models/orientation.d.ts +1 -1
  30. package/stepper/models/step-predicate.d.ts +1 -1
  31. package/stepper/models/step-type.d.ts +1 -1
  32. package/stepper/models/stepper-step.interface.d.ts +3 -3
  33. package/stepper/stepper.component.d.ts +10 -10
  34. package/tabstrip/directives/tab-title.directive.d.ts +1 -1
  35. package/tabstrip/localization/custom-messages.component.d.ts +1 -1
  36. package/tabstrip/models/scrollable-settings.d.ts +3 -3
  37. package/tabstrip/models/size.d.ts +2 -2
  38. package/tabstrip/models/tab-alignment.d.ts +1 -1
  39. package/tabstrip/models/tab-position.d.ts +1 -1
  40. package/tabstrip/models/tabstrip-tab.component.d.ts +4 -4
  41. package/tabstrip/tabstrip.component.d.ts +4 -5
  42. package/tilelayout/tilelayout-item.component.d.ts +5 -5
  43. package/tilelayout/tilelayout.component.d.ts +10 -10
  44. package/timeline/timeline.component.d.ts +1 -1
@@ -30,7 +30,7 @@ const packageMetadata = {
30
30
  productCode: 'KENDOUIANGULAR',
31
31
  productCodes: ['KENDOUIANGULAR'],
32
32
  publishDate: 1645546576,
33
- version: '22.1.0-develop.9',
33
+ version: '23.0.0-develop.10',
34
34
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
35
35
  };
36
36
 
@@ -140,11 +140,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
140
140
 
141
141
  /**
142
142
  * Defines the template directive of the PanelBar which helps to customize the item title
143
- * ([more information and example]({% slug templates_panelbar %}#toc-customizing-the-appearance-of-the-title)).
143
+ * ([more information and example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/templates#customizing-the-appearance-of-the-title)).
144
144
  * To define the template, nest an `<ng-template>` tag
145
145
  * with the `kendoPanelBarItemTitle` directive inside the `<kendo-panelbar-item>` tag.
146
146
  *
147
- * The `kendoPanelBarItemTitle` directive overrides the PanelBarItem [title]({% slug api_layout_panelbaritemcomponent %}#toc-title) option.
147
+ * The `kendoPanelBarItemTitle` directive overrides the PanelBarItem [title](https://www.telerik.com/kendo-angular-ui/components/layout/api/panelbaritemcomponent#title) option.
148
148
  *
149
149
  * @example
150
150
  * ```html
@@ -185,7 +185,8 @@ const ROUNDNESS = {
185
185
  small: 'sm',
186
186
  medium: 'md',
187
187
  large: 'lg',
188
- full: 'full'
188
+ full: 'full',
189
+ none: 'none',
189
190
  };
190
191
  const SHAPE_TO_ROUNDED = {
191
192
  rounded: 'large',
@@ -233,16 +234,18 @@ const isNavigationKey = keyCode => keyCode === Keys.PageUp || keyCode === Keys.P
233
234
  */
234
235
  const getStylingClasses = (componentType, stylingOption, previousValue, newValue) => {
235
236
  switch (stylingOption) {
236
- case 'size':
237
+ case 'size': {
237
238
  return {
238
- toRemove: `k-${componentType}-${SIZES[previousValue]}`,
239
- toAdd: newValue !== 'none' ? `k-${componentType}-${SIZES[newValue]}` : ''
239
+ toRemove: previousValue && SIZES[previousValue] ? `k-${componentType}-${SIZES[previousValue]}` : null,
240
+ toAdd: newValue && SIZES[newValue] ? `k-${componentType}-${SIZES[newValue]}` : null
240
241
  };
241
- case 'rounded':
242
+ }
243
+ case 'rounded': {
242
244
  return {
243
- toRemove: `k-rounded-${ROUNDNESS[previousValue]}`,
244
- toAdd: newValue !== 'none' ? `k-rounded-${ROUNDNESS[newValue]}` : ''
245
+ toRemove: previousValue && ROUNDNESS[previousValue] ? `k-rounded-${ROUNDNESS[previousValue]}` : null,
246
+ toAdd: newValue && ROUNDNESS[newValue] ? `k-rounded-${ROUNDNESS[newValue]}` : null
245
247
  };
248
+ }
246
249
  default:
247
250
  break;
248
251
  }
@@ -250,7 +253,7 @@ const getStylingClasses = (componentType, stylingOption, previousValue, newValue
250
253
  /**
251
254
  * @hidden
252
255
  */
253
- const mapShapeToRounded = (shape) => SHAPE_TO_ROUNDED[shape] || 'none';
256
+ const mapShapeToRounded = (shape) => SHAPE_TO_ROUNDED[shape] || undefined;
254
257
  /**
255
258
  * @hidden
256
259
  */
@@ -320,7 +323,7 @@ class PanelBarItemComponent {
320
323
  element;
321
324
  renderer;
322
325
  /**
323
- * Sets the title of the PanelBar item ([see example]({% slug items_panelbar %}#toc-titles)).
326
+ * Sets the title of the PanelBar item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#titles)).
324
327
  */
325
328
  title;
326
329
  /**
@@ -329,21 +332,21 @@ class PanelBarItemComponent {
329
332
  */
330
333
  id = `default-${nextId++}`;
331
334
  /**
332
- * Defines the icon that renders next to the title ([see example]({% slug items_panelbar %}#toc-title-icons)).
335
+ * Defines the icon that renders next to the title ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#title-icons)).
333
336
  *
334
337
  * @default ''
335
338
  */
336
339
  icon = '';
337
340
  /**
338
341
  * Defines the icon that renders next to the title by using a custom CSS class
339
- * ([see example]({% slug items_panelbar %}#toc-title-icons)).
342
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#title-icons)).
340
343
  *
341
344
  * @default ''
342
345
  */
343
346
  iconClass = '';
344
347
  /**
345
348
  * Defines an SVG icon to render.
346
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
349
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
347
350
  */
348
351
  set svgIcon(icon) {
349
352
  if (isDevMode() && icon && this.icon && this.iconClass) {
@@ -356,19 +359,19 @@ class PanelBarItemComponent {
356
359
  }
357
360
  /**
358
361
  * Defines the location of the image that displays next to the title
359
- * ([see example]({% slug items_panelbar %}#toc-title-images)).
362
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#title-images)).
360
363
  *
361
364
  * @default ''
362
365
  */
363
366
  imageUrl = '';
364
367
  /**
365
- * When set to `true`, disables a PanelBar item ([see example]({% slug items_panelbar %}#toc-disabled-state)).
368
+ * When set to `true`, disables a PanelBar item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#disabled-state)).
366
369
  *
367
370
  * @default false
368
371
  */
369
372
  disabled = false;
370
373
  /**
371
- * When set to `true`, expands the PanelBar item ([see example]({% slug items_panelbar %}#toc-expanded-state)).
374
+ * When set to `true`, expands the PanelBar item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#expanded-state)).
372
375
  */
373
376
  set expanded(value) {
374
377
  const activeState = this.animate ? "active" : "activeWithoutAnimation";
@@ -382,14 +385,14 @@ class PanelBarItemComponent {
382
385
  return this._expanded;
383
386
  }
384
387
  /**
385
- * Sets the selected state of a PanelBar item ([see example]({% slug items_panelbar %}#toc-selected-state)).
388
+ * Sets the selected state of a PanelBar item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#selected-state)).
386
389
  *
387
390
  * @default false
388
391
  */
389
392
  selected = false;
390
393
  /**
391
394
  * Sets the content of the PanelBar item.
392
- * It is used when the [`items`]({% slug api_layout_panelbarcomponent %}#toc-items) property of the PanelBar is set.
395
+ * It is used when the [`items`](https://www.telerik.com/kendo-angular-ui/components/layout/api/panelbarcomponent#items) property of the PanelBar is set.
393
396
  */
394
397
  content;
395
398
  /**
@@ -1121,7 +1124,7 @@ class PanelBarItemClickEvent {
1121
1124
 
1122
1125
  /**
1123
1126
  * Represents the Kendo UI PanelBar component for Angular.
1124
- * Displays hierarchical data as an expandable and collapsible accordion-style interface ([see overview]({% slug overview_panelbar %})).
1127
+ * Displays hierarchical data as an expandable and collapsible accordion-style interface ([see overview](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar)).
1125
1128
  *
1126
1129
  * @example
1127
1130
  * ```typescript
@@ -1146,7 +1149,7 @@ class PanelBarItemClickEvent {
1146
1149
  class PanelBarComponent {
1147
1150
  localization;
1148
1151
  /**
1149
- * Sets the expand mode of the PanelBar through the `PanelBarExpandMode` enum ([see example]({% slug expandmodes_panelbar %})).
1152
+ * Sets the expand mode of the PanelBar through the `PanelBarExpandMode` enum ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/expand-modes)).
1150
1153
  *
1151
1154
  * @default 'multiple
1152
1155
  */
@@ -1158,7 +1161,7 @@ class PanelBarComponent {
1158
1161
  */
1159
1162
  selectable = true;
1160
1163
  /**
1161
- * Sets the animate state of the PanelBar ([see example]({% slug animations_panelbar %})).
1164
+ * Sets the animate state of the PanelBar ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/animations)).
1162
1165
  *
1163
1166
  * @default true
1164
1167
  */
@@ -1179,7 +1182,7 @@ class PanelBarComponent {
1179
1182
  * * `false`&mdash;Removes collapsed items' content from the DOM.
1180
1183
  * * `"loadOnDemand"`&mdash;Loads items' content only when expanded for the first time. Collapsed items' content is not rendered until the item is expanded.
1181
1184
  *
1182
- * For more information, refer to the [Rendering Modes](slug:rendering_panelbar) article.
1185
+ * For more information, refer to the [Rendering Modes](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/rendering-modes) article.
1183
1186
  *
1184
1187
  * @default false
1185
1188
  */
@@ -1192,7 +1195,7 @@ class PanelBarComponent {
1192
1195
  }
1193
1196
  /**
1194
1197
  * Sets the items of the PanelBar as an array of `PanelBarItemModel` instances
1195
- * ([see example]({% slug items_panelbar %})).
1198
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items)).
1196
1199
  */
1197
1200
  set items(data) {
1198
1201
  if (data) {
@@ -1205,30 +1208,30 @@ class PanelBarComponent {
1205
1208
  /**
1206
1209
  * Fires when the state of the PanelBar changes.
1207
1210
  * This event is triggered when an item is selected, expanded, or collapsed.
1208
- * ([see example](slug:routing_panelbar#using-router-service)).
1211
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/routing#using-router-service)).
1209
1212
  * The event data contains a collection of all items that are modified.
1210
1213
  */
1211
1214
  stateChange = new EventEmitter();
1212
1215
  /**
1213
1216
  * Fires when an item is about to be selected.
1214
1217
  * This event is preventable. If you cancel it, the item will not be selected
1215
- * ([see example]({% slug events_panelbar %})).
1218
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/events)).
1216
1219
  */
1217
1220
  select = new EventEmitter();
1218
1221
  /**
1219
1222
  * Fires when an item is about to be expanded.
1220
1223
  * This event is preventable. If you cancel it, the item will remain collapsed
1221
- * ([see example]({% slug events_panelbar %})).
1224
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/events)).
1222
1225
  */
1223
1226
  expand = new EventEmitter();
1224
1227
  /**
1225
1228
  * Fires when an item is about to be collapsed.
1226
1229
  * This event is preventable. If you cancel it, the item will remain expanded
1227
- * ([see example]({% slug events_panelbar %})).
1230
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/events)).
1228
1231
  */
1229
1232
  collapse = new EventEmitter();
1230
1233
  /**
1231
- * Fires when an item is clicked ([see example]({% slug events_panelbar %})).
1234
+ * Fires when an item is clicked ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/events)).
1232
1235
  */
1233
1236
  itemClick = new EventEmitter();
1234
1237
  hostClasses = true;
@@ -2671,9 +2674,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2671
2674
  type: Input
2672
2675
  }] } });
2673
2676
 
2674
- const SIZING_DOC_LINK = 'https://www.telerik.com/kendo-angular-ui/components/layout/splitter/panes/#specifying-the-dimensions';
2677
+ const SIZING_DOC_LINK = 'https://www.telerik.com/kendo-angular-ui/components/layout/splitter/panes#specifying-the-dimensions';
2675
2678
  /**
2676
- * Represents the [Kendo UI Splitter component for Angular]({% slug overview_splitter %}).
2679
+ * Represents the [Kendo UI Splitter component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/splitter).
2677
2680
  *
2678
2681
  * @example
2679
2682
  * ```html
@@ -2991,7 +2994,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
2991
2994
  /**
2992
2995
  * Represents the title template of the Kendo UI TabStrip.
2993
2996
  * To define the template, nest an `<ng-template>` tag with the `kendoTabTitle` directive inside the component tag.
2994
- * The `kendoTabTitle` directive overrides the TabStripTab [`title`]({% slug api_layout_tabstriptabcomponent %}#toc-title) option.
2997
+ * The `kendoTabTitle` directive overrides the TabStripTab [`title`](https://www.telerik.com/kendo-angular-ui/components/layout/api/tabstriptabcomponent#title) option.
2995
2998
  *
2996
2999
  * @example
2997
3000
  * ```html
@@ -3056,11 +3059,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
3056
3059
  */
3057
3060
  class TabStripTabComponent {
3058
3061
  /**
3059
- * Sets the title text for the tab ([see example](slug:tabs_tabstrip#toc-tab-titles)).
3062
+ * Sets the title text for the tab ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip/tabs#tab-titles)).
3060
3063
  */
3061
3064
  title;
3062
3065
  /**
3063
- * Disables the tab and prevents user interaction ([see example]({% slug tabs_tabstrip %}#toc-disabled-tabs)).
3066
+ * Disables the tab and prevents user interaction ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip/tabs#disabled-tabs)).
3064
3067
  *
3065
3068
  * @default false
3066
3069
  */
@@ -3077,7 +3080,7 @@ class TabStripTabComponent {
3077
3080
  cssStyle;
3078
3081
  /**
3079
3082
  * Selects the tab when the TabStrip loads
3080
- * ([see example](slug:tabs_tabstrip#toc-selected-tab)).
3083
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip/tabs#selected-tab)).
3081
3084
  */
3082
3085
  selected;
3083
3086
  /**
@@ -3098,7 +3101,7 @@ class TabStripTabComponent {
3098
3101
  closeIconClass;
3099
3102
  /**
3100
3103
  * Sets an SVG icon for the close button.
3101
- * You can use an [existing Kendo SVG icon](slug:svgicon_list) or provide a custom one.
3104
+ * You can use an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or provide a custom one.
3102
3105
  */
3103
3106
  closeSVGIcon;
3104
3107
  get tabContent() {
@@ -4095,7 +4098,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4095
4098
  }], ctorParameters: () => [{ type: i1.LocalizationService }] });
4096
4099
 
4097
4100
  /**
4098
- * Represents the [Kendo UI TabStrip component for Angular]({% slug overview_tabstrip %}).
4101
+ * Represents the [Kendo UI TabStrip component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip).
4099
4102
  *
4100
4103
  * @example
4101
4104
  * ```html
@@ -4160,7 +4163,7 @@ class TabStripComponent {
4160
4163
  * * `false`&mdash;Removes inactive tabs' content from the DOM.
4161
4164
  * * `"loadOnDemand"`&mdash;Loads tabs' content only when activated for the first time. Inactive tabs' content is not rendered until the tab is activated.
4162
4165
  *
4163
- * For more information, refer to the [Rendering Modes](slug:rendering_tabstrip) article.
4166
+ * For more information, refer to the [Rendering Modes](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip/rendering-modes) article.
4164
4167
  *
4165
4168
  * @default false
4166
4169
  */
@@ -4191,8 +4194,7 @@ class TabStripComponent {
4191
4194
  }
4192
4195
  /**
4193
4196
  * Sets the size of the TabStrip.
4194
- * [See example](slug:api_layout_tabstripcomponent#toc-size).
4195
- * @default 'medium'
4197
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/layout/api/tabstripcomponent#size). The default value is set by the Kendo theme.
4196
4198
  */
4197
4199
  set size(value) {
4198
4200
  switch (value) {
@@ -4211,10 +4213,6 @@ class TabStripComponent {
4211
4213
  this.renderer.removeClass(this.wrapper.nativeElement, 'k-tabstrip-sm');
4212
4214
  this.renderer.addClass(this.wrapper.nativeElement, 'k-tabstrip-lg');
4213
4215
  break;
4214
- case 'none':
4215
- this.renderer.removeClass(this.wrapper.nativeElement, 'k-tabstrip-md');
4216
- this.renderer.removeClass(this.wrapper.nativeElement, 'k-tabstrip-lg');
4217
- this.renderer.removeClass(this.wrapper.nativeElement, 'k-tabstrip-sm');
4218
4216
  }
4219
4217
  this._size = value;
4220
4218
  this.ngZone.onStable.pipe(take(1)).subscribe(() => this.onResize());
@@ -4233,7 +4231,7 @@ class TabStripComponent {
4233
4231
  closeIconClass;
4234
4232
  /**
4235
4233
  * Defines an SVGIcon to render for the close icon.
4236
- * The input accepts either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
4234
+ * The input accepts either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
4237
4235
  */
4238
4236
  set closeSVGIcon(icon) {
4239
4237
  if (isDevMode() && icon && this.closeIcon && this.closeIcon !== 'x') {
@@ -4327,7 +4325,7 @@ class TabStripComponent {
4327
4325
  tabStripId = guid();
4328
4326
  tabsChangesSub;
4329
4327
  activeStateChangeSub;
4330
- _size = 'medium';
4328
+ _size;
4331
4329
  constructor(localization, renderer, wrapper, tabstripService, scrollService, ngZone) {
4332
4330
  this.localization = localization;
4333
4331
  this.renderer = renderer;
@@ -4582,7 +4580,7 @@ class TabStripComponent {
4582
4580
  }
4583
4581
  }
4584
4582
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: TabStripComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: TabStripService }, { token: ScrollService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
4585
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.18", type: TabStripComponent, isStandalone: true, selector: "kendo-tabstrip", inputs: { height: "height", animate: "animate", tabAlignment: "tabAlignment", tabPosition: "tabPosition", keepTabContent: "keepTabContent", closable: "closable", scrollable: "scrollable", size: "size", closeIcon: "closeIcon", closeIconClass: "closeIconClass", closeSVGIcon: "closeSVGIcon", showContentArea: "showContentArea" }, outputs: { tabSelect: "tabSelect", tabClose: "tabClose", tabScroll: "tabScroll" }, host: { properties: { "class.k-tabstrip": "this.hostClasses", "class.k-tabstrip-md": "this.hostClasses", "class.k-tabstrip-top": "this.tabsAtTop", "class.k-tabstrip-right": "this.tabsAtRight", "class.k-tabstrip-bottom": "this.tabsAtBottom", "class.k-tabstrip-left": "this.tabsAtLeft", "attr.dir": "this.dir", "class.k-tabstrip-scrollable": "this.tabStripScrollable", "class.k-tabstrip-scrollable-overlay": "this.tabStripScrollableOverlay" } }, providers: [
4583
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.18", type: TabStripComponent, isStandalone: true, selector: "kendo-tabstrip", inputs: { height: "height", animate: "animate", tabAlignment: "tabAlignment", tabPosition: "tabPosition", keepTabContent: "keepTabContent", closable: "closable", scrollable: "scrollable", size: "size", closeIcon: "closeIcon", closeIconClass: "closeIconClass", closeSVGIcon: "closeSVGIcon", showContentArea: "showContentArea" }, outputs: { tabSelect: "tabSelect", tabClose: "tabClose", tabScroll: "tabScroll" }, host: { properties: { "class.k-tabstrip": "this.hostClasses", "class.k-tabstrip-top": "this.tabsAtTop", "class.k-tabstrip-right": "this.tabsAtRight", "class.k-tabstrip-bottom": "this.tabsAtBottom", "class.k-tabstrip-left": "this.tabsAtLeft", "attr.dir": "this.dir", "class.k-tabstrip-scrollable": "this.tabStripScrollable", "class.k-tabstrip-scrollable-overlay": "this.tabStripScrollableOverlay" } }, providers: [
4586
4584
  TabStripService,
4587
4585
  ScrollService,
4588
4586
  LocalizationService,
@@ -4627,10 +4625,10 @@ class TabStripComponent {
4627
4625
  [prev]="true"
4628
4626
  [title]="localization.get('previousTabButton')"
4629
4627
  (tabScroll)="tabScroll.emit($event)"
4630
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4628
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4631
4629
  [ngClass]="{
4632
4630
  'k-button-sm': size === 'small',
4633
- 'k-button-md': size === 'medium' || !size,
4631
+ 'k-button-md': size === 'medium',
4634
4632
  'k-button-lg': size === 'large'
4635
4633
  }"
4636
4634
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4645,10 +4643,10 @@ class TabStripComponent {
4645
4643
  [prev]="false"
4646
4644
  [title]="localization.get('nextTabButton')"
4647
4645
  (tabScroll)="tabScroll.emit($event)"
4648
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4646
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4649
4647
  [ngClass]="{
4650
4648
  'k-button-sm': size === 'small',
4651
- 'k-button-md': size === 'medium' || !size,
4649
+ 'k-button-md': size === 'medium',
4652
4650
  'k-button-lg': size === 'large'
4653
4651
  }"
4654
4652
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4696,10 +4694,10 @@ class TabStripComponent {
4696
4694
  [prev]="true"
4697
4695
  [title]="localization.get('previousTabButton')"
4698
4696
  (tabScroll)="tabScroll.emit($event)"
4699
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4697
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4700
4698
  [ngClass]="{
4701
4699
  'k-button-sm': size === 'small',
4702
- 'k-button-md': size === 'medium' || !size,
4700
+ 'k-button-md': size === 'medium',
4703
4701
  'k-button-lg': size === 'large'
4704
4702
  }"
4705
4703
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4714,10 +4712,10 @@ class TabStripComponent {
4714
4712
  [prev]="false"
4715
4713
  [title]="localization.get('nextTabButton')"
4716
4714
  (tabScroll)="tabScroll.emit($event)"
4717
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4715
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4718
4716
  [ngClass]="{
4719
4717
  'k-button-sm': size === 'small',
4720
- 'k-button-md': size === 'medium' || !size,
4718
+ 'k-button-md': size === 'medium',
4721
4719
  'k-button-lg': size === 'large'
4722
4720
  }"
4723
4721
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4820,10 +4818,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4820
4818
  [prev]="true"
4821
4819
  [title]="localization.get('previousTabButton')"
4822
4820
  (tabScroll)="tabScroll.emit($event)"
4823
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4821
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4824
4822
  [ngClass]="{
4825
4823
  'k-button-sm': size === 'small',
4826
- 'k-button-md': size === 'medium' || !size,
4824
+ 'k-button-md': size === 'medium',
4827
4825
  'k-button-lg': size === 'large'
4828
4826
  }"
4829
4827
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4838,10 +4836,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4838
4836
  [prev]="false"
4839
4837
  [title]="localization.get('nextTabButton')"
4840
4838
  (tabScroll)="tabScroll.emit($event)"
4841
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4839
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4842
4840
  [ngClass]="{
4843
4841
  'k-button-sm': size === 'small',
4844
- 'k-button-md': size === 'medium' || !size,
4842
+ 'k-button-md': size === 'medium',
4845
4843
  'k-button-lg': size === 'large'
4846
4844
  }"
4847
4845
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4889,10 +4887,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4889
4887
  [prev]="true"
4890
4888
  [title]="localization.get('previousTabButton')"
4891
4889
  (tabScroll)="tabScroll.emit($event)"
4892
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4890
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4893
4891
  [ngClass]="{
4894
4892
  'k-button-sm': size === 'small',
4895
- 'k-button-md': size === 'medium' || !size,
4893
+ 'k-button-md': size === 'medium',
4896
4894
  'k-button-lg': size === 'large'
4897
4895
  }"
4898
4896
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4907,10 +4905,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4907
4905
  [prev]="false"
4908
4906
  [title]="localization.get('nextTabButton')"
4909
4907
  (tabScroll)="tabScroll.emit($event)"
4910
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4908
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4911
4909
  [ngClass]="{
4912
4910
  'k-button-sm': size === 'small',
4913
- 'k-button-md': size === 'medium' || !size,
4911
+ 'k-button-md': size === 'medium',
4914
4912
  'k-button-lg': size === 'large'
4915
4913
  }"
4916
4914
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4980,9 +4978,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4980
4978
  }], hostClasses: [{
4981
4979
  type: HostBinding,
4982
4980
  args: ['class.k-tabstrip']
4983
- }, {
4984
- type: HostBinding,
4985
- args: ['class.k-tabstrip-md']
4986
4981
  }], tabsAtTop: [{
4987
4982
  type: HostBinding,
4988
4983
  args: ['class.k-tabstrip-top']
@@ -5023,7 +5018,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5023
5018
 
5024
5019
  /**
5025
5020
  * Represents the custom messages component for the TabStrip.
5026
- * It allows you to override the default messages used in the TabStrip component ([see example]({% slug rtl_layout %})).
5021
+ * It allows you to override the default messages used in the TabStrip component ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/globalization)).
5027
5022
  *
5028
5023
  * ```html
5029
5024
  * <kendo-tabstrip>
@@ -5841,7 +5836,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5841
5836
  /* eslint-disable @typescript-eslint/no-explicit-any */
5842
5837
  const DEFAULT_ANIMATION = { type: 'slide', duration: 200 };
5843
5838
  /**
5844
- * Represents the [Kendo UI Drawer component for Angular]({% slug overview_drawer %}).
5839
+ * Represents the [Kendo UI Drawer component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/drawer).
5845
5840
  * Provides a dismissible or permanently visible panel for navigation in responsive web applications.
5846
5841
  *
5847
5842
  * @example
@@ -5908,14 +5903,14 @@ class DrawerComponent {
5908
5903
  mode = 'overlay';
5909
5904
  /**
5910
5905
  * Specifies the position of the Drawer
5911
- * ([see example]({% slug positioning_drawer %})).
5906
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/positioning)).
5912
5907
  *
5913
5908
  * @default 'start'
5914
5909
  */
5915
5910
  position = 'start';
5916
5911
  /**
5917
5912
  * Enables the mini (compact) view of the Drawer which displays when the component is collapsed
5918
- * ([see example]({% slug expandmodespositions_drawer %}#toc-mini-view)).
5913
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/display-modes#mini-view)).
5919
5914
  *
5920
5915
  * @default false
5921
5916
  */
@@ -5969,7 +5964,7 @@ class DrawerComponent {
5969
5964
  direction;
5970
5965
  /**
5971
5966
  * Specifies the animation settings of the Drawer
5972
- * ([see example]({% slug interaction_drawer %}#toc-toggling-between-states)).
5967
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/interaction-modes#toggling-between-states)).
5973
5968
  *
5974
5969
  * @default { type: 'slide', duration: 200 }
5975
5970
  */
@@ -6290,7 +6285,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6290
6285
  }] } });
6291
6286
 
6292
6287
  /**
6293
- * Serves as a container for the [Drawer component]({% slug overview_drawer %}) and its content.
6288
+ * Serves as a container for the [Drawer component](https://www.telerik.com/kendo-angular-ui/components/layout/drawer) and its content.
6294
6289
  *
6295
6290
  * @example
6296
6291
  * ```html
@@ -7368,7 +7363,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
7368
7363
 
7369
7364
  const DEFAULT_ANIMATION_DURATION = 400;
7370
7365
  /**
7371
- * Represents the [Kendo UI Stepper component for Angular]({% slug overview_stepper %}).
7366
+ * Represents the [Kendo UI Stepper component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/stepper).
7372
7367
  *
7373
7368
  * @example
7374
7369
  * ```ts
@@ -7414,7 +7409,7 @@ class StepperComponent {
7414
7409
  linear = true;
7415
7410
  /**
7416
7411
  * Specifies the orientation of the Stepper
7417
- * ([see example]({% slug orientation_stepper %})).
7412
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stepper/orientation)).
7418
7413
  *
7419
7414
  * @default 'horizontal'
7420
7415
  */
@@ -7430,7 +7425,7 @@ class StepperComponent {
7430
7425
  }
7431
7426
  /**
7432
7427
  * Specifies the collection of steps that will be rendered in the Stepper
7433
- * ([see example]({% slug step_appearance_stepper %})).
7428
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stepper/step-appearance)).
7434
7429
  */
7435
7430
  set steps(steps) {
7436
7431
  if (isPresent(steps) && steps.length > 0) {
@@ -7442,7 +7437,7 @@ class StepperComponent {
7442
7437
  }
7443
7438
  /**
7444
7439
  * Specifies an SVG icon to be rendered inside the step indicator instead of the default numeric or text content.
7445
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
7440
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
7446
7441
  */
7447
7442
  set svgIcon(icon) {
7448
7443
  this._svgIcon = icon;
@@ -7452,22 +7447,22 @@ class StepperComponent {
7452
7447
  }
7453
7448
  /**
7454
7449
  * Specifies an SVG icon to be rendered for the success icon.
7455
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
7450
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
7456
7451
  */
7457
7452
  successSVGIcon;
7458
7453
  /**
7459
7454
  * Specifies an SVG icon to be rendered for the error icon.
7460
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
7455
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
7461
7456
  */
7462
7457
  errorSVGIcon;
7463
7458
  /**
7464
7459
  * Specifies an SVG icon that will be rendered inside the step for valid previous steps.
7465
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
7460
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
7466
7461
  */
7467
7462
  successIcon;
7468
7463
  /**
7469
7464
  * Specifies an SVG icon that will be rendered inside the step for invalid previous steps.
7470
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
7465
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
7471
7466
  */
7472
7467
  errorIcon;
7473
7468
  /**
@@ -7530,9 +7525,9 @@ class StepperComponent {
7530
7525
  }
7531
7526
  }
7532
7527
  /**
7533
- * Manually triggers the validity check configured by the [isValid]({% slug api_layout_stepperstep %}#toc-isvalid) property of the steps ([see example]({% slug step_validation_stepper %}#toc-triggering-the-validation)).
7528
+ * Manually triggers the validity check configured by the [isValid](https://www.telerik.com/kendo-angular-ui/components/layout/api/stepperstep#isvalid) property of the steps ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stepper/step-validation#triggering-the-validation)).
7534
7529
  *
7535
- * Steps that have their [validate]({% slug api_layout_stepperstep %}#toc-validate) property set to `false`, will not be validated.
7530
+ * Steps that have their [validate](https://www.telerik.com/kendo-angular-ui/components/layout/api/stepperstep#validate) property set to `false`, will not be validated.
7536
7531
  */
7537
7532
  validateSteps() {
7538
7533
  this.stepperService.validateSteps();
@@ -7648,7 +7643,7 @@ class StepperComponent {
7648
7643
  (listKeydown)="onListKeydown($event)"
7649
7644
  (listClick)="onListClick($event)">
7650
7645
  </ol>
7651
-
7646
+
7652
7647
  @if (steps.length > 0) {
7653
7648
  <kendo-progressbar
7654
7649
  [attr.aria-hidden]='true'
@@ -7703,7 +7698,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
7703
7698
  (listKeydown)="onListKeydown($event)"
7704
7699
  (listClick)="onListClick($event)">
7705
7700
  </ol>
7706
-
7701
+
7707
7702
  @if (steps.length > 0) {
7708
7703
  <kendo-progressbar
7709
7704
  [attr.aria-hidden]='true'
@@ -7803,7 +7798,7 @@ class StepperActivateEvent extends PreventableEvent$1 {
7803
7798
 
7804
7799
  /**
7805
7800
  * Provides custom component messages that override default component messages
7806
- * ([see example]({% slug rtl_layout %})).
7801
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/globalization)).
7807
7802
  *
7808
7803
  * ```html
7809
7804
  * <kendo-stepper>
@@ -7898,10 +7893,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
7898
7893
  }]
7899
7894
  }], ctorParameters: () => [{ type: i1.LocalizationService }] });
7900
7895
 
7901
- const DEFAULT_ROUNDED = 'full';
7902
- const DEFAULT_SIZE = 'medium';
7903
- const DEFAULT_THEME_COLOR = 'primary';
7904
- const DEFAULT_FILL_MODE = 'solid';
7905
7896
  /**
7906
7897
  * Represents the Kendo UI Avatar component for Angular. Displays images, icons, or initials representing people or other entities.
7907
7898
  *
@@ -7950,15 +7941,12 @@ class AvatarComponent {
7950
7941
  }
7951
7942
  /**
7952
7943
  * Specifies the size of the Avatar
7953
- * ([see example]({% slug appearance_avatar %}#toc-size)).
7954
- *
7955
- * @default 'medium'
7944
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#size)). The default value is set by the Kendo theme.
7956
7945
  */
7957
7946
  set size(size) {
7958
7947
  if (size !== this._size) {
7959
- const newSize = size ? size : DEFAULT_SIZE;
7960
- this.handleClasses('size', newSize);
7961
- this._size = newSize;
7948
+ this.handleClasses('size', size);
7949
+ this._size = size;
7962
7950
  }
7963
7951
  }
7964
7952
  get size() {
@@ -7966,15 +7954,12 @@ class AvatarComponent {
7966
7954
  }
7967
7955
  /**
7968
7956
  * Specifies the rounded styling of the Avatar
7969
- * ([see example](slug:appearance_avatar#toc-roundness)).
7970
- *
7971
- * @default 'full'
7957
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#roundness)). The default value is set by the Kendo theme.
7972
7958
  */
7973
7959
  set rounded(rounded) {
7974
- if (rounded !== this._rounded) {
7975
- const newRounded = rounded ? rounded : DEFAULT_ROUNDED;
7976
- this.handleClasses('rounded', newRounded);
7977
- this._rounded = newRounded;
7960
+ if (rounded !== this.rounded) {
7961
+ this.handleClasses('rounded', rounded);
7962
+ this._rounded = rounded;
7978
7963
  }
7979
7964
  }
7980
7965
  get rounded() {
@@ -7982,14 +7967,11 @@ class AvatarComponent {
7982
7967
  }
7983
7968
  /**
7984
7969
  * Specifies the theme color of the Avatar.
7985
- * The theme color applies as background and border color while adjusting the text color accordingly.
7986
- *
7987
- * @default 'primary'
7970
+ * The theme color applies as background and border color while adjusting the text color accordingly. The default value is set by the Kendo theme.
7988
7971
  */
7989
7972
  set themeColor(themeColor) {
7990
7973
  if (themeColor !== this._themeColor) {
7991
- const newThemeColor = themeColor ? themeColor : DEFAULT_THEME_COLOR;
7992
- this._themeColor = newThemeColor;
7974
+ this._themeColor = themeColor;
7993
7975
  this.handleFillModeAndThemeColorClasses(this.fillMode, this.themeColor);
7994
7976
  }
7995
7977
  }
@@ -7997,14 +7979,11 @@ class AvatarComponent {
7997
7979
  return this._themeColor;
7998
7980
  }
7999
7981
  /**
8000
- * Specifies the fill style of the Avatar.
8001
- *
8002
- * @default 'solid'
7982
+ * Specifies the fill style of the Avatar. The default value is set by the Kendo theme.
8003
7983
  */
8004
7984
  set fillMode(fillMode) {
8005
7985
  if (fillMode !== this.fillMode) {
8006
- const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE;
8007
- this._fillMode = newFillMode;
7986
+ this._fillMode = fillMode;
8008
7987
  this.handleFillModeAndThemeColorClasses(this.fillMode, this.themeColor);
8009
7988
  }
8010
7989
  }
@@ -8062,7 +8041,7 @@ class AvatarComponent {
8062
8041
  initials;
8063
8042
  /**
8064
8043
  * Sets the icon for the Avatar.
8065
- * All [Kendo UI Icons](slug:icons#icons-list) are supported.
8044
+ * All [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list) are supported.
8066
8045
  */
8067
8046
  icon;
8068
8047
  /**
@@ -8071,7 +8050,7 @@ class AvatarComponent {
8071
8050
  imageSrc;
8072
8051
  /**
8073
8052
  * Defines an SVG icon to render.
8074
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
8053
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
8075
8054
  */
8076
8055
  set svgIcon(icon) {
8077
8056
  if (isDevMode() && icon && this.icon && this.iconClass) {
@@ -8082,11 +8061,12 @@ class AvatarComponent {
8082
8061
  get svgIcon() {
8083
8062
  return this._svgIcon;
8084
8063
  }
8085
- _themeColor = DEFAULT_THEME_COLOR;
8086
- _size = DEFAULT_SIZE;
8087
- _fillMode = DEFAULT_FILL_MODE;
8088
- _rounded = DEFAULT_ROUNDED;
8064
+ _themeColor = undefined;
8065
+ _size = undefined;
8066
+ _fillMode = undefined;
8067
+ _rounded = undefined;
8089
8068
  _svgIcon;
8069
+ _themeColorClasses = ['k-avatar-primary', 'k-avatar-secondary', 'k-avatar-tertiary', 'k-avatar-base', 'k-avatar-info', 'k-avatar-success', 'k-avatar-warning', 'k-avatar-error', 'k-avatar-dark', 'k-avatar-light', 'k-avatar-inverse'];
8090
8070
  constructor(localization, renderer, element) {
8091
8071
  this.localization = localization;
8092
8072
  this.renderer = renderer;
@@ -8096,13 +8076,6 @@ class AvatarComponent {
8096
8076
  ngOnInit() {
8097
8077
  this.verifyProperties();
8098
8078
  }
8099
- ngAfterViewInit() {
8100
- const stylingInputs = ['size', 'rounded'];
8101
- stylingInputs.forEach(input => {
8102
- this.handleClasses(input, this[input]);
8103
- });
8104
- this.handleFillModeAndThemeColorClasses(this.fillMode, this.themeColor);
8105
- }
8106
8079
  /**
8107
8080
  * @hidden
8108
8081
  */
@@ -8138,16 +8111,16 @@ class AvatarComponent {
8138
8111
  // remove existing fill and theme color classes
8139
8112
  const currentClasses = Array.from(wrapperElement.classList);
8140
8113
  const classesToRemove = currentClasses.filter(cl => {
8141
- return cl.startsWith('k-avatar-solid') || cl.startsWith('k-avatar-outline');
8114
+ return this._themeColorClasses.includes(cl) || cl.startsWith('k-avatar-solid') || cl.startsWith('k-avatar-outline');
8142
8115
  });
8143
8116
  classesToRemove.forEach((cl => this.renderer.removeClass(wrapperElement, cl)));
8144
8117
  // add fill if needed
8145
- if (fill !== 'none') {
8118
+ if (fill && (fill === 'solid' || fill === 'outline')) {
8146
8119
  this.renderer.addClass(wrapperElement, `k-avatar-${fill}`);
8147
8120
  }
8148
- // add theme color class if fill and theme color
8149
- if (fill !== 'none' && themeColor !== 'none') {
8150
- this.renderer.addClass(wrapperElement, `k-avatar-${fill}-${themeColor}`);
8121
+ // add theme color class if needed
8122
+ if (themeColor && this._themeColorClasses.includes(`k-avatar-${themeColor}`)) {
8123
+ this.renderer.addClass(wrapperElement, `k-avatar-${themeColor}`);
8151
8124
  }
8152
8125
  }
8153
8126
  /**
@@ -8169,21 +8142,21 @@ class AvatarComponent {
8169
8142
  avatarAlt="Avatar"
8170
8143
  >
8171
8144
  </ng-container>
8172
-
8145
+
8173
8146
  @if (customAvatar) {
8174
8147
  <ng-content></ng-content>
8175
8148
  }
8176
-
8149
+
8177
8150
  @if (imageSrc) {
8178
8151
  <span class="k-avatar-image">
8179
8152
  <img src="{{ imageSrc }}" [alt]="textFor('avatarAlt')" [ngStyle]="cssStyle" />
8180
8153
  </span>
8181
8154
  }
8182
-
8155
+
8183
8156
  @if (initials) {
8184
8157
  <span class="k-avatar-text" [ngStyle]="cssStyle">{{ initials.substring(0, 2) }}</span>
8185
8158
  }
8186
-
8159
+
8187
8160
  @if (icon || iconClass || svgIcon) {
8188
8161
  <span class="k-avatar-icon">
8189
8162
  <kendo-icon-wrapper
@@ -8214,21 +8187,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8214
8187
  avatarAlt="Avatar"
8215
8188
  >
8216
8189
  </ng-container>
8217
-
8190
+
8218
8191
  @if (customAvatar) {
8219
8192
  <ng-content></ng-content>
8220
8193
  }
8221
-
8194
+
8222
8195
  @if (imageSrc) {
8223
8196
  <span class="k-avatar-image">
8224
8197
  <img src="{{ imageSrc }}" [alt]="textFor('avatarAlt')" [ngStyle]="cssStyle" />
8225
8198
  </span>
8226
8199
  }
8227
-
8200
+
8228
8201
  @if (initials) {
8229
8202
  <span class="k-avatar-text" [ngStyle]="cssStyle">{{ initials.substring(0, 2) }}</span>
8230
8203
  }
8231
-
8204
+
8232
8205
  @if (icon || iconClass || svgIcon) {
8233
8206
  <span class="k-avatar-icon">
8234
8207
  <kendo-icon-wrapper
@@ -8294,7 +8267,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8294
8267
  // eslint-disable no-forward-ref
8295
8268
  /**
8296
8269
  * Provides custom component messages that override default component messages
8297
- * ([see example]({% slug rtl_layout %})).
8270
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/globalization)).
8298
8271
  *
8299
8272
  * ```html
8300
8273
  * <kendo-avatar>
@@ -8338,7 +8311,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8338
8311
 
8339
8312
  /**
8340
8313
  * Represents the Kendo UI Card component for Angular.
8341
- * Displays content in a structured container with customizable layout and styling ([Card overview]({% slug overview_card %})).
8314
+ * Displays content in a structured container with customizable layout and styling ([Card overview](https://www.telerik.com/kendo-angular-ui/components/layout/card)).
8342
8315
  *
8343
8316
  * @example
8344
8317
  * ```html
@@ -8543,7 +8516,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8543
8516
  }] } });
8544
8517
 
8545
8518
  /**
8546
- * Defines the action buttons of the Card ([see example]({% slug actions_card %})).
8519
+ * Defines the action buttons of the Card ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/card/action_buttons)).
8547
8520
  * The Card actions can be used to perform operations related to the Card's content, such as saving, editing, or deleting.
8548
8521
  *
8549
8522
  * @example
@@ -8626,13 +8599,9 @@ class CardActionsComponent {
8626
8599
  @for (action of actionsArray; track action) {
8627
8600
  <button
8628
8601
  type="button"
8629
- class="k-button k-button-md k-rounded-md"
8630
- [class.k-button-solid]="!action.flat"
8602
+ class="k-button"
8631
8603
  [class.k-button-flat]="action.flat"
8632
- [class.k-button-solid-base]="!action.primary && !action.flat"
8633
- [class.k-button-solid-primary]="action.primary && !action.flat"
8634
- [class.k-button-flat-base]="!action.primary && action.flat"
8635
- [class.k-button-flat-primary]="action.primary && action.flat"
8604
+ [class.k-button-primary]="action.primary"
8636
8605
  (click)="onClick(action)"
8637
8606
  >
8638
8607
  <span class="k-button-text">{{ action.text }}</span>
@@ -8658,13 +8627,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8658
8627
  @for (action of actionsArray; track action) {
8659
8628
  <button
8660
8629
  type="button"
8661
- class="k-button k-button-md k-rounded-md"
8662
- [class.k-button-solid]="!action.flat"
8630
+ class="k-button"
8663
8631
  [class.k-button-flat]="action.flat"
8664
- [class.k-button-solid-base]="!action.primary && !action.flat"
8665
- [class.k-button-solid-primary]="action.primary && !action.flat"
8666
- [class.k-button-flat-base]="!action.primary && action.flat"
8667
- [class.k-button-flat-primary]="action.primary && action.flat"
8632
+ [class.k-button-primary]="action.primary"
8668
8633
  (click)="onClick(action)"
8669
8634
  >
8670
8635
  <span class="k-button-text">{{ action.text }}</span>
@@ -8870,7 +8835,7 @@ class CardAction {
8870
8835
  /**
8871
8836
  * Defines a template that specifies the content of the ExpansionPanel title.
8872
8837
  * To define the template, nest an `<ng-template>` tag with the `kendoExpansionPanelTitleDirective` directive inside the `<kendo-expansionpanel>` tag
8873
- * ([see example]({% slug title_expansionpanel %}#toc-title-template)).
8838
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#title-template)).
8874
8839
  *
8875
8840
  * @example
8876
8841
  * ```html
@@ -8940,7 +8905,7 @@ const DEFAULT_DURATION = 200;
8940
8905
  const CONTENT_HIDDEN_CLASS = 'k-hidden';
8941
8906
  let incrementingId = 0;
8942
8907
  /**
8943
- * Represents the Kendo UI ExpansionPanel component for Angular. Provides an expandable and collapsible content container with customizable header and animation ([see overview]({% slug overview_expansionpanel %})).
8908
+ * Represents the Kendo UI ExpansionPanel component for Angular. Provides an expandable and collapsible content container with customizable header and animation ([see overview](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel)).
8944
8909
  *
8945
8910
  * @example
8946
8911
  * ```html
@@ -8960,24 +8925,24 @@ class ExpansionPanelComponent {
8960
8925
  builder;
8961
8926
  /**
8962
8927
  * Specifies the primary text in the header of the ExpansionPanel
8963
- * ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
8928
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#titles-and-subtitles)).
8964
8929
  */
8965
8930
  title = '';
8966
8931
  /**
8967
8932
  * Specifies the secondary text in the header of the ExpansionPanel, which renders next to the collapse/expand icon
8968
- * ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
8933
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#titles-and-subtitles)).
8969
8934
  */
8970
8935
  subtitle = '';
8971
8936
  /**
8972
8937
  * Specifies whether the ExpansionPanel is disabled. If disabled, the ExpansionPanel can be neither expanded nor collapsed
8973
- * ([see example]({% slug disabled_expansionpanel %})).
8938
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/disabled-state)).
8974
8939
  *
8975
8940
  * @default false
8976
8941
  */
8977
8942
  disabled = false;
8978
8943
  /**
8979
8944
  * Specifies whether the ExpansionPanel is expanded. The property supports two-way binding
8980
- * ([see example]({% slug interaction_expansionpanel %}#toc-setting-the-initial-state)).
8945
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/interaction#setting-the-initial-state)).
8981
8946
  *
8982
8947
  * @default false
8983
8948
  */
@@ -8998,7 +8963,7 @@ class ExpansionPanelComponent {
8998
8963
  }
8999
8964
  /**
9000
8965
  * Defines an SVG icon for the expanded state of the component.
9001
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
8966
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
9002
8967
  */
9003
8968
  set svgExpandIcon(icon) {
9004
8969
  if (isDevMode() && icon && this.expandIcon) {
@@ -9011,7 +8976,7 @@ class ExpansionPanelComponent {
9011
8976
  }
9012
8977
  /**
9013
8978
  * Defines an SVG icon for the collapsed state of the component.
9014
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
8979
+ * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
9015
8980
  */
9016
8981
  set svgCollapseIcon(icon) {
9017
8982
  if (isDevMode() && icon && this.collapseIcon) {
@@ -9024,17 +8989,17 @@ class ExpansionPanelComponent {
9024
8989
  }
9025
8990
  /**
9026
8991
  * Sets a custom icon via CSS class(es) for the collapsed state of the component
9027
- * ([see example]({% slug icons_expansionpanel %}#toc-icons)).
8992
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/icons#icons)).
9028
8993
  */
9029
8994
  expandIcon;
9030
8995
  /**
9031
8996
  * Sets a custom icon via CSS class(es) for the expanded state of the component
9032
- * ([see example]({% slug icons_expansionpanel %}#toc-icons)).
8997
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/icons#icons)).
9033
8998
  */
9034
8999
  collapseIcon;
9035
9000
  /**
9036
9001
  * Specifies the animation settings of the ExpansionPanel
9037
- * ([see example]({% slug animations_expansionpanel %})).
9002
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/animations)).
9038
9003
  *
9039
9004
  * @default true
9040
9005
  */
@@ -9042,22 +9007,22 @@ class ExpansionPanelComponent {
9042
9007
  /**
9043
9008
  * Fires when the `expanded` property of the component is updated.
9044
9009
  * Used to provide a two-way binding for the `expanded` property
9045
- * ([see example](slug:events_expansionpanel)).
9010
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
9046
9011
  */
9047
9012
  expandedChange = new EventEmitter();
9048
9013
  /**
9049
9014
  * Fires when the expanded state of the ExpansionPanel is about to change. This event is preventable
9050
- * ([see example](slug:events_expansionpanel)).
9015
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
9051
9016
  */
9052
9017
  action = new EventEmitter();
9053
9018
  /**
9054
9019
  * Fires when the ExpansionPanel is expanded. If there is animation it fires when the animation is complete
9055
- * ([see example](slug:events_expansionpanel)).
9020
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
9056
9021
  */
9057
9022
  expand = new EventEmitter();
9058
9023
  /**
9059
9024
  * Fires when the ExpansionPanel is collapsed. If there is animation it fires when the animation is complete
9060
- * ([see example](slug:events_expansionpanel)).
9025
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
9061
9026
  */
9062
9027
  collapse = new EventEmitter();
9063
9028
  /**
@@ -9201,7 +9166,7 @@ class ExpansionPanelComponent {
9201
9166
  }
9202
9167
  /**
9203
9168
  * Toggles the visibility of the ExpansionPanel
9204
- * ([see example](slug:interaction_expansionpanel#toggling-between-states)).
9169
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/interaction#toggling-between-states)).
9205
9170
  *
9206
9171
  * @param expanded Specifies whether the ExpansionPanel will be expanded or collapsed.
9207
9172
  */
@@ -10400,16 +10365,16 @@ class TileLayoutItemComponent {
10400
10365
  draggingService;
10401
10366
  keyboardNavigationService;
10402
10367
  /**
10403
- * Sets the title text that appears in the item header ([see example]({% slug tiles_tilelayout %}#toc-tiles-configuration)).
10368
+ * Sets the title text that appears in the item header ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#tiles-configuration)).
10404
10369
  */
10405
10370
  title;
10406
10371
  /**
10407
- * Sets how many rows the tile item spans ([see example](slug:resizing_tilelayout#programmatic-resizing)).
10372
+ * Sets how many rows the tile item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing#programmatic-resizing)).
10408
10373
  * @default 1
10409
10374
  */
10410
10375
  rowSpan = 1;
10411
10376
  /**
10412
- * Sets how many columns the tile item spans ([see example](slug:resizing_tilelayout#programmatic-resizing)).
10377
+ * Sets how many columns the tile item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing#programmatic-resizing)).
10413
10378
  * @default 1
10414
10379
  */
10415
10380
  colSpan = 1;
@@ -10425,11 +10390,11 @@ class TileLayoutItemComponent {
10425
10390
  return this._order;
10426
10391
  }
10427
10392
  /**
10428
- * Sets the starting column position of the item ([see example](slug:tiles_tilelayout#size-and-position)).
10393
+ * Sets the starting column position of the item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
10429
10394
  */
10430
10395
  col;
10431
10396
  /**
10432
- * Sets the starting row position of the item ([see example](slug:tiles_tilelayout#size-and-position)).
10397
+ * Sets the starting row position of the item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
10433
10398
  */
10434
10399
  row;
10435
10400
  /**
@@ -10690,7 +10655,7 @@ const autoFlowClasses = {
10690
10655
  'row-dense': 'k-grid-flow-row-dense'
10691
10656
  };
10692
10657
  /**
10693
- * Represents the [Kendo UI TileLayout component for Angular]({% slug overview_tilelayout %})
10658
+ * Represents the [Kendo UI TileLayout component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout)
10694
10659
  *
10695
10660
  * @example
10696
10661
  * ```html
@@ -10710,13 +10675,13 @@ class TileLayoutComponent {
10710
10675
  draggingService;
10711
10676
  navigationService;
10712
10677
  /**
10713
- * Specifies the number of columns ([see example](slug:tiles_tilelayout#size-and-position)).
10678
+ * Specifies the number of columns ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
10714
10679
  * @default 1
10715
10680
  */
10716
10681
  columns = 1;
10717
10682
  /**
10718
10683
  * Sets the width of the columns.
10719
- * Use numeric values for pixels or string values for other CSS units ([see example](slug:tiles_tilelayout#size-and-position)).
10684
+ * Use numeric values for pixels or string values for other CSS units ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
10720
10685
  * @default '1fr'
10721
10686
  */
10722
10687
  columnWidth = '1fr';
@@ -10734,41 +10699,41 @@ class TileLayoutComponent {
10734
10699
  return this._gap;
10735
10700
  }
10736
10701
  /**
10737
- * Enables or disables item reordering ([see example]({% slug reordering_tilelayout %})).
10702
+ * Enables or disables item reordering ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/reordering)).
10738
10703
  * @default false
10739
10704
  */
10740
10705
  reorderable = false;
10741
10706
  /**
10742
- * Enables or disables item resizing ([see example]({% slug resizing_tilelayout %})).
10707
+ * Enables or disables item resizing ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing)).
10743
10708
  * @default false
10744
10709
  */
10745
10710
  resizable = false;
10746
10711
  /**
10747
10712
  * Sets the height of the rows.
10748
- * Use numeric values for pixels or string values for other CSS units ([see example](slug:tiles_tilelayout#size-and-position)).
10713
+ * Use numeric values for pixels or string values for other CSS units ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
10749
10714
  * @default '1fr'
10750
10715
  */
10751
10716
  rowHeight = '1fr';
10752
10717
  /**
10753
10718
  *
10754
- * Controls how the auto-placement algorithm works, specifying exactly how auto-placed items are flowed in the TileLayout ([see example]({% slug tiles_autoflow_tilelayout %})).
10719
+ * Controls how the auto-placement algorithm works, specifying exactly how auto-placed items are flowed in the TileLayout ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/auto-flow)).
10755
10720
  *
10756
10721
  * For further reference, check the [grid-auto-flow CSS article](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow).
10757
10722
  * @default 'column'
10758
10723
  */
10759
10724
  autoFlow = 'column';
10760
10725
  /**
10761
- * Enables or disables [keyboard navigation](slug:keyboard_navigation_tilelayout).
10726
+ * Enables or disables [keyboard navigation](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/keyboard-navigation).
10762
10727
  * @default true
10763
10728
  */
10764
10729
  navigable = true;
10765
10730
  /**
10766
- * Fires when item reordering is completed ([see example]({% slug reordering_tilelayout %})).
10731
+ * Fires when item reordering is completed ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/reordering)).
10767
10732
  * You can prevent this event to cancel the reorder operation.
10768
10733
  */
10769
10734
  reorder = new EventEmitter();
10770
10735
  /**
10771
- * Fires when item resizing is completed ([see example]({% slug resizing_tilelayout %})).
10736
+ * Fires when item resizing is completed ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing)).
10772
10737
  * You can prevent this event to cancel the resize operation.
10773
10738
  */
10774
10739
  resize = new EventEmitter();
@@ -11193,7 +11158,7 @@ const validateGridLayoutRowsCols = (arr) => {
11193
11158
 
11194
11159
  /**
11195
11160
  * Represents the Kendo UI GridLayout component for Angular.
11196
- * Arranges child components in a two-dimensional grid layout with customizable rows, columns, and gaps ([see overview]({% slug overview_gridlayout %})).
11161
+ * Arranges child components in a two-dimensional grid layout with customizable rows, columns, and gaps ([see overview](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout)).
11197
11162
  *
11198
11163
  * @example
11199
11164
  * ```html
@@ -11220,7 +11185,7 @@ class GridLayoutComponent {
11220
11185
  }
11221
11186
  /**
11222
11187
  * Specifies the number of rows and their height
11223
- * ([More details](slug:layout_gridlayout#toc-rows-and-columns)).
11188
+ * ([More details](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#rows-and-columns)).
11224
11189
  *
11225
11190
  * You can define rows by passing an array where the number of elements determines the number of rows or each element defines the size of the corresponding row.
11226
11191
  * For example, you can use CSS units like `px`, `%`, `fr`, or `auto` to define the row sizes.
@@ -11228,21 +11193,21 @@ class GridLayoutComponent {
11228
11193
  rows;
11229
11194
  /**
11230
11195
  * Specifies the number of columns and their widths
11231
- * ([More details](slug:layout_gridlayout#toc-rows-and-columns)).
11196
+ * ([More details](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#rows-and-columns)).
11232
11197
  *
11233
11198
  * You can define columns by passing an array where the number of elements determines the number of columns or each element defines the size of the corresponding column.
11234
11199
  * For example, you can use CSS units like `px`, `%`, `fr`, or `auto` to define the column sizes.
11235
11200
  */
11236
11201
  cols;
11237
11202
  /**
11238
- * Specifies the gaps between the elements ([see example](slug:layout_gridlayout#toc-gap)).
11203
+ * Specifies the gaps between the elements ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#gap)).
11239
11204
  *
11240
11205
  * @default 0
11241
11206
  */
11242
11207
  gap = 0;
11243
11208
  /**
11244
11209
  * Specifies the horizontal and vertical alignment of the inner GridLayout elements
11245
- * ([see example]({% slug layout_gridlayout %}#toc-alignment)).
11210
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#alignment)).
11246
11211
  */
11247
11212
  set align(align) {
11248
11213
  this._align = Object.assign({}, this._align, align);
@@ -11373,22 +11338,22 @@ class GridLayoutItemComponent {
11373
11338
  element;
11374
11339
  /**
11375
11340
  * Sets the row of the item in the GridLayout
11376
- * ([see example]({% slug items_gridlayout %}#toc-size-and-position)).
11341
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
11377
11342
  */
11378
11343
  row;
11379
11344
  /**
11380
11345
  * Sets the column of the item in the GridLayout
11381
- * ([see example]({% slug items_gridlayout %}#toc-size-and-position)).
11346
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
11382
11347
  */
11383
11348
  col;
11384
11349
  /**
11385
- * Specifies how many rows the item spans ([see example]({% slug items_gridlayout %}#toc-size-and-position)).
11350
+ * Specifies how many rows the item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
11386
11351
  *
11387
11352
  * @default 1
11388
11353
  */
11389
11354
  rowSpan;
11390
11355
  /**
11391
- * Specifies how many columns the item spans ([see example]({% slug items_gridlayout %}#toc-size-and-position)).
11356
+ * Specifies how many columns the item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
11392
11357
  *
11393
11358
  * @default 1
11394
11359
  */
@@ -11437,7 +11402,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
11437
11402
 
11438
11403
  /**
11439
11404
  * Represents the Kendo UI StackLayout component for Angular.
11440
- * Arranges child components in a single row or column with customizable alignment and spacing ([see overview]({% slug overview_stacklayout %})).
11405
+ * Arranges child components in a single row or column with customizable alignment and spacing ([see overview](https://www.telerik.com/kendo-angular-ui/components/layout/stacklayout)).
11441
11406
  *
11442
11407
  * @example
11443
11408
  * ```html
@@ -11464,7 +11429,7 @@ class StackLayoutComponent {
11464
11429
  }
11465
11430
  /**
11466
11431
  * Specifies the horizontal and vertical alignment of the inner StackLayout elements
11467
- * ([see example]({% slug layout_stacklayout %}#toc-alignment)).
11432
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stacklayout/layout#alignment)).
11468
11433
  */
11469
11434
  set align(align) {
11470
11435
  this._align = Object.assign({}, this._align, align);
@@ -11474,14 +11439,14 @@ class StackLayoutComponent {
11474
11439
  return this._align;
11475
11440
  }
11476
11441
  /**
11477
- * Specifies the gap between the inner StackLayout elements ([see example](slug:layout_stacklayout#toc-gap)).
11442
+ * Specifies the gap between the inner StackLayout elements ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stacklayout/layout#gap)).
11478
11443
  *
11479
11444
  * @default 0
11480
11445
  */
11481
11446
  gap = 0;
11482
11447
  /**
11483
11448
  * Specifies the orientation of the StackLayout
11484
- * ([see example]({% slug layout_stacklayout %}#toc-orientation)).
11449
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stacklayout/layout#orientation)).
11485
11450
  *
11486
11451
  * @default 'horizontal'
11487
11452
  */
@@ -13232,7 +13197,7 @@ const DEFAULT_EVENT_WIDTH = 400;
13232
13197
  const DEFAULT_EVENT_HEIGHT = 600;
13233
13198
  const DEFAULT_DATE_FORMAT = 'MMMM dd, yyyy';
13234
13199
  /**
13235
- * Represents the [Kendo UI Timeline component for Angular]({% slug overview_timeline %}).
13200
+ * Represents the [Kendo UI Timeline component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/timeline).
13236
13201
  *
13237
13202
  * @remarks
13238
13203
  * Supported children components are: {@link TimelineCustomMessagesComponent}.