@progress/kendo-angular-layout 22.1.0-develop.9 → 23.0.0-develop.1

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 +11 -11
  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 +165 -183
  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 +5 -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.1',
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,8 @@ 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).
4198
+ * @default undefined
4196
4199
  */
4197
4200
  set size(value) {
4198
4201
  switch (value) {
@@ -4211,10 +4214,6 @@ class TabStripComponent {
4211
4214
  this.renderer.removeClass(this.wrapper.nativeElement, 'k-tabstrip-sm');
4212
4215
  this.renderer.addClass(this.wrapper.nativeElement, 'k-tabstrip-lg');
4213
4216
  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
4217
  }
4219
4218
  this._size = value;
4220
4219
  this.ngZone.onStable.pipe(take(1)).subscribe(() => this.onResize());
@@ -4233,7 +4232,7 @@ class TabStripComponent {
4233
4232
  closeIconClass;
4234
4233
  /**
4235
4234
  * 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.
4235
+ * 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
4236
  */
4238
4237
  set closeSVGIcon(icon) {
4239
4238
  if (isDevMode() && icon && this.closeIcon && this.closeIcon !== 'x') {
@@ -4327,7 +4326,7 @@ class TabStripComponent {
4327
4326
  tabStripId = guid();
4328
4327
  tabsChangesSub;
4329
4328
  activeStateChangeSub;
4330
- _size = 'medium';
4329
+ _size;
4331
4330
  constructor(localization, renderer, wrapper, tabstripService, scrollService, ngZone) {
4332
4331
  this.localization = localization;
4333
4332
  this.renderer = renderer;
@@ -4582,7 +4581,7 @@ class TabStripComponent {
4582
4581
  }
4583
4582
  }
4584
4583
  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: [
4584
+ 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
4585
  TabStripService,
4587
4586
  ScrollService,
4588
4587
  LocalizationService,
@@ -4627,10 +4626,10 @@ class TabStripComponent {
4627
4626
  [prev]="true"
4628
4627
  [title]="localization.get('previousTabButton')"
4629
4628
  (tabScroll)="tabScroll.emit($event)"
4630
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4629
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4631
4630
  [ngClass]="{
4632
4631
  'k-button-sm': size === 'small',
4633
- 'k-button-md': size === 'medium' || !size,
4632
+ 'k-button-md': size === 'medium',
4634
4633
  'k-button-lg': size === 'large'
4635
4634
  }"
4636
4635
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4645,10 +4644,10 @@ class TabStripComponent {
4645
4644
  [prev]="false"
4646
4645
  [title]="localization.get('nextTabButton')"
4647
4646
  (tabScroll)="tabScroll.emit($event)"
4648
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4647
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4649
4648
  [ngClass]="{
4650
4649
  'k-button-sm': size === 'small',
4651
- 'k-button-md': size === 'medium' || !size,
4650
+ 'k-button-md': size === 'medium',
4652
4651
  'k-button-lg': size === 'large'
4653
4652
  }"
4654
4653
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4696,10 +4695,10 @@ class TabStripComponent {
4696
4695
  [prev]="true"
4697
4696
  [title]="localization.get('previousTabButton')"
4698
4697
  (tabScroll)="tabScroll.emit($event)"
4699
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4698
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4700
4699
  [ngClass]="{
4701
4700
  'k-button-sm': size === 'small',
4702
- 'k-button-md': size === 'medium' || !size,
4701
+ 'k-button-md': size === 'medium',
4703
4702
  'k-button-lg': size === 'large'
4704
4703
  }"
4705
4704
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4714,10 +4713,10 @@ class TabStripComponent {
4714
4713
  [prev]="false"
4715
4714
  [title]="localization.get('nextTabButton')"
4716
4715
  (tabScroll)="tabScroll.emit($event)"
4717
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4716
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4718
4717
  [ngClass]="{
4719
4718
  'k-button-sm': size === 'small',
4720
- 'k-button-md': size === 'medium' || !size,
4719
+ 'k-button-md': size === 'medium',
4721
4720
  'k-button-lg': size === 'large'
4722
4721
  }"
4723
4722
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4820,10 +4819,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4820
4819
  [prev]="true"
4821
4820
  [title]="localization.get('previousTabButton')"
4822
4821
  (tabScroll)="tabScroll.emit($event)"
4823
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4822
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4824
4823
  [ngClass]="{
4825
4824
  'k-button-sm': size === 'small',
4826
- 'k-button-md': size === 'medium' || !size,
4825
+ 'k-button-md': size === 'medium',
4827
4826
  'k-button-lg': size === 'large'
4828
4827
  }"
4829
4828
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4838,10 +4837,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4838
4837
  [prev]="false"
4839
4838
  [title]="localization.get('nextTabButton')"
4840
4839
  (tabScroll)="tabScroll.emit($event)"
4841
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4840
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4842
4841
  [ngClass]="{
4843
4842
  'k-button-sm': size === 'small',
4844
- 'k-button-md': size === 'medium' || !size,
4843
+ 'k-button-md': size === 'medium',
4845
4844
  'k-button-lg': size === 'large'
4846
4845
  }"
4847
4846
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4889,10 +4888,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4889
4888
  [prev]="true"
4890
4889
  [title]="localization.get('previousTabButton')"
4891
4890
  (tabScroll)="tabScroll.emit($event)"
4892
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4891
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4893
4892
  [ngClass]="{
4894
4893
  'k-button-sm': size === 'small',
4895
- 'k-button-md': size === 'medium' || !size,
4894
+ 'k-button-md': size === 'medium',
4896
4895
  'k-button-lg': size === 'large'
4897
4896
  }"
4898
4897
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4907,10 +4906,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4907
4906
  [prev]="false"
4908
4907
  [title]="localization.get('nextTabButton')"
4909
4908
  (tabScroll)="tabScroll.emit($event)"
4910
- class="k-icon-button k-button k-button-flat k-button-flat-base"
4909
+ class="k-icon-button k-button k-button-flat k-rounded-none"
4911
4910
  [ngClass]="{
4912
4911
  'k-button-sm': size === 'small',
4913
- 'k-button-md': size === 'medium' || !size,
4912
+ 'k-button-md': size === 'medium',
4914
4913
  'k-button-lg': size === 'large'
4915
4914
  }"
4916
4915
  (onClick)="onScrollButtonClick($event)"></span>
@@ -4980,9 +4979,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
4980
4979
  }], hostClasses: [{
4981
4980
  type: HostBinding,
4982
4981
  args: ['class.k-tabstrip']
4983
- }, {
4984
- type: HostBinding,
4985
- args: ['class.k-tabstrip-md']
4986
4982
  }], tabsAtTop: [{
4987
4983
  type: HostBinding,
4988
4984
  args: ['class.k-tabstrip-top']
@@ -5023,7 +5019,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5023
5019
 
5024
5020
  /**
5025
5021
  * 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 %})).
5022
+ * 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
5023
  *
5028
5024
  * ```html
5029
5025
  * <kendo-tabstrip>
@@ -5841,7 +5837,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5841
5837
  /* eslint-disable @typescript-eslint/no-explicit-any */
5842
5838
  const DEFAULT_ANIMATION = { type: 'slide', duration: 200 };
5843
5839
  /**
5844
- * Represents the [Kendo UI Drawer component for Angular]({% slug overview_drawer %}).
5840
+ * Represents the [Kendo UI Drawer component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/drawer).
5845
5841
  * Provides a dismissible or permanently visible panel for navigation in responsive web applications.
5846
5842
  *
5847
5843
  * @example
@@ -5908,14 +5904,14 @@ class DrawerComponent {
5908
5904
  mode = 'overlay';
5909
5905
  /**
5910
5906
  * Specifies the position of the Drawer
5911
- * ([see example]({% slug positioning_drawer %})).
5907
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/positioning)).
5912
5908
  *
5913
5909
  * @default 'start'
5914
5910
  */
5915
5911
  position = 'start';
5916
5912
  /**
5917
5913
  * Enables the mini (compact) view of the Drawer which displays when the component is collapsed
5918
- * ([see example]({% slug expandmodespositions_drawer %}#toc-mini-view)).
5914
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/display-modes#mini-view)).
5919
5915
  *
5920
5916
  * @default false
5921
5917
  */
@@ -5969,7 +5965,7 @@ class DrawerComponent {
5969
5965
  direction;
5970
5966
  /**
5971
5967
  * Specifies the animation settings of the Drawer
5972
- * ([see example]({% slug interaction_drawer %}#toc-toggling-between-states)).
5968
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/interaction-modes#toggling-between-states)).
5973
5969
  *
5974
5970
  * @default { type: 'slide', duration: 200 }
5975
5971
  */
@@ -6290,7 +6286,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
6290
6286
  }] } });
6291
6287
 
6292
6288
  /**
6293
- * Serves as a container for the [Drawer component]({% slug overview_drawer %}) and its content.
6289
+ * Serves as a container for the [Drawer component](https://www.telerik.com/kendo-angular-ui/components/layout/drawer) and its content.
6294
6290
  *
6295
6291
  * @example
6296
6292
  * ```html
@@ -7368,7 +7364,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
7368
7364
 
7369
7365
  const DEFAULT_ANIMATION_DURATION = 400;
7370
7366
  /**
7371
- * Represents the [Kendo UI Stepper component for Angular]({% slug overview_stepper %}).
7367
+ * Represents the [Kendo UI Stepper component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/stepper).
7372
7368
  *
7373
7369
  * @example
7374
7370
  * ```ts
@@ -7414,7 +7410,7 @@ class StepperComponent {
7414
7410
  linear = true;
7415
7411
  /**
7416
7412
  * Specifies the orientation of the Stepper
7417
- * ([see example]({% slug orientation_stepper %})).
7413
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stepper/orientation)).
7418
7414
  *
7419
7415
  * @default 'horizontal'
7420
7416
  */
@@ -7430,7 +7426,7 @@ class StepperComponent {
7430
7426
  }
7431
7427
  /**
7432
7428
  * Specifies the collection of steps that will be rendered in the Stepper
7433
- * ([see example]({% slug step_appearance_stepper %})).
7429
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stepper/step-appearance)).
7434
7430
  */
7435
7431
  set steps(steps) {
7436
7432
  if (isPresent(steps) && steps.length > 0) {
@@ -7442,7 +7438,7 @@ class StepperComponent {
7442
7438
  }
7443
7439
  /**
7444
7440
  * 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.
7441
+ * 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
7442
  */
7447
7443
  set svgIcon(icon) {
7448
7444
  this._svgIcon = icon;
@@ -7452,22 +7448,22 @@ class StepperComponent {
7452
7448
  }
7453
7449
  /**
7454
7450
  * 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.
7451
+ * 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
7452
  */
7457
7453
  successSVGIcon;
7458
7454
  /**
7459
7455
  * 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.
7456
+ * 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
7457
  */
7462
7458
  errorSVGIcon;
7463
7459
  /**
7464
7460
  * 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.
7461
+ * 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
7462
  */
7467
7463
  successIcon;
7468
7464
  /**
7469
7465
  * 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.
7466
+ * 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
7467
  */
7472
7468
  errorIcon;
7473
7469
  /**
@@ -7530,9 +7526,9 @@ class StepperComponent {
7530
7526
  }
7531
7527
  }
7532
7528
  /**
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)).
7529
+ * 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
7530
  *
7535
- * Steps that have their [validate]({% slug api_layout_stepperstep %}#toc-validate) property set to `false`, will not be validated.
7531
+ * 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
7532
  */
7537
7533
  validateSteps() {
7538
7534
  this.stepperService.validateSteps();
@@ -7648,7 +7644,7 @@ class StepperComponent {
7648
7644
  (listKeydown)="onListKeydown($event)"
7649
7645
  (listClick)="onListClick($event)">
7650
7646
  </ol>
7651
-
7647
+
7652
7648
  @if (steps.length > 0) {
7653
7649
  <kendo-progressbar
7654
7650
  [attr.aria-hidden]='true'
@@ -7703,7 +7699,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
7703
7699
  (listKeydown)="onListKeydown($event)"
7704
7700
  (listClick)="onListClick($event)">
7705
7701
  </ol>
7706
-
7702
+
7707
7703
  @if (steps.length > 0) {
7708
7704
  <kendo-progressbar
7709
7705
  [attr.aria-hidden]='true'
@@ -7803,7 +7799,7 @@ class StepperActivateEvent extends PreventableEvent$1 {
7803
7799
 
7804
7800
  /**
7805
7801
  * Provides custom component messages that override default component messages
7806
- * ([see example]({% slug rtl_layout %})).
7802
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/globalization)).
7807
7803
  *
7808
7804
  * ```html
7809
7805
  * <kendo-stepper>
@@ -7898,10 +7894,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
7898
7894
  }]
7899
7895
  }], ctorParameters: () => [{ type: i1.LocalizationService }] });
7900
7896
 
7901
- const DEFAULT_ROUNDED = 'full';
7902
- const DEFAULT_SIZE = 'medium';
7903
- const DEFAULT_THEME_COLOR = 'primary';
7904
- const DEFAULT_FILL_MODE = 'solid';
7905
7897
  /**
7906
7898
  * Represents the Kendo UI Avatar component for Angular. Displays images, icons, or initials representing people or other entities.
7907
7899
  *
@@ -7950,15 +7942,14 @@ class AvatarComponent {
7950
7942
  }
7951
7943
  /**
7952
7944
  * Specifies the size of the Avatar
7953
- * ([see example]({% slug appearance_avatar %}#toc-size)).
7945
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#size)).
7954
7946
  *
7955
- * @default 'medium'
7947
+ * @default undefined
7956
7948
  */
7957
7949
  set size(size) {
7958
7950
  if (size !== this._size) {
7959
- const newSize = size ? size : DEFAULT_SIZE;
7960
- this.handleClasses('size', newSize);
7961
- this._size = newSize;
7951
+ this.handleClasses('size', size);
7952
+ this._size = size;
7962
7953
  }
7963
7954
  }
7964
7955
  get size() {
@@ -7966,15 +7957,14 @@ class AvatarComponent {
7966
7957
  }
7967
7958
  /**
7968
7959
  * Specifies the rounded styling of the Avatar
7969
- * ([see example](slug:appearance_avatar#toc-roundness)).
7960
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#roundness)).
7970
7961
  *
7971
- * @default 'full'
7962
+ * @default undefined
7972
7963
  */
7973
7964
  set rounded(rounded) {
7974
- if (rounded !== this._rounded) {
7975
- const newRounded = rounded ? rounded : DEFAULT_ROUNDED;
7976
- this.handleClasses('rounded', newRounded);
7977
- this._rounded = newRounded;
7965
+ if (rounded !== this.rounded) {
7966
+ this.handleClasses('rounded', rounded);
7967
+ this._rounded = rounded;
7978
7968
  }
7979
7969
  }
7980
7970
  get rounded() {
@@ -7984,12 +7974,11 @@ class AvatarComponent {
7984
7974
  * Specifies the theme color of the Avatar.
7985
7975
  * The theme color applies as background and border color while adjusting the text color accordingly.
7986
7976
  *
7987
- * @default 'primary'
7977
+ * @default undefined
7988
7978
  */
7989
7979
  set themeColor(themeColor) {
7990
7980
  if (themeColor !== this._themeColor) {
7991
- const newThemeColor = themeColor ? themeColor : DEFAULT_THEME_COLOR;
7992
- this._themeColor = newThemeColor;
7981
+ this._themeColor = themeColor;
7993
7982
  this.handleFillModeAndThemeColorClasses(this.fillMode, this.themeColor);
7994
7983
  }
7995
7984
  }
@@ -7999,12 +7988,11 @@ class AvatarComponent {
7999
7988
  /**
8000
7989
  * Specifies the fill style of the Avatar.
8001
7990
  *
8002
- * @default 'solid'
7991
+ * @default undefined
8003
7992
  */
8004
7993
  set fillMode(fillMode) {
8005
7994
  if (fillMode !== this.fillMode) {
8006
- const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE;
8007
- this._fillMode = newFillMode;
7995
+ this._fillMode = fillMode;
8008
7996
  this.handleFillModeAndThemeColorClasses(this.fillMode, this.themeColor);
8009
7997
  }
8010
7998
  }
@@ -8062,7 +8050,7 @@ class AvatarComponent {
8062
8050
  initials;
8063
8051
  /**
8064
8052
  * Sets the icon for the Avatar.
8065
- * All [Kendo UI Icons](slug:icons#icons-list) are supported.
8053
+ * All [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list) are supported.
8066
8054
  */
8067
8055
  icon;
8068
8056
  /**
@@ -8071,7 +8059,7 @@ class AvatarComponent {
8071
8059
  imageSrc;
8072
8060
  /**
8073
8061
  * Defines an SVG icon to render.
8074
- * You can use either an [existing Kendo SVG icon](slug:svgicon_list) or a custom one.
8062
+ * 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
8063
  */
8076
8064
  set svgIcon(icon) {
8077
8065
  if (isDevMode() && icon && this.icon && this.iconClass) {
@@ -8082,11 +8070,12 @@ class AvatarComponent {
8082
8070
  get svgIcon() {
8083
8071
  return this._svgIcon;
8084
8072
  }
8085
- _themeColor = DEFAULT_THEME_COLOR;
8086
- _size = DEFAULT_SIZE;
8087
- _fillMode = DEFAULT_FILL_MODE;
8088
- _rounded = DEFAULT_ROUNDED;
8073
+ _themeColor = undefined;
8074
+ _size = undefined;
8075
+ _fillMode = undefined;
8076
+ _rounded = undefined;
8089
8077
  _svgIcon;
8078
+ _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
8079
  constructor(localization, renderer, element) {
8091
8080
  this.localization = localization;
8092
8081
  this.renderer = renderer;
@@ -8096,13 +8085,6 @@ class AvatarComponent {
8096
8085
  ngOnInit() {
8097
8086
  this.verifyProperties();
8098
8087
  }
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
8088
  /**
8107
8089
  * @hidden
8108
8090
  */
@@ -8138,16 +8120,16 @@ class AvatarComponent {
8138
8120
  // remove existing fill and theme color classes
8139
8121
  const currentClasses = Array.from(wrapperElement.classList);
8140
8122
  const classesToRemove = currentClasses.filter(cl => {
8141
- return cl.startsWith('k-avatar-solid') || cl.startsWith('k-avatar-outline');
8123
+ return this._themeColorClasses.includes(cl) || cl.startsWith('k-avatar-solid') || cl.startsWith('k-avatar-outline');
8142
8124
  });
8143
8125
  classesToRemove.forEach((cl => this.renderer.removeClass(wrapperElement, cl)));
8144
8126
  // add fill if needed
8145
- if (fill !== 'none') {
8127
+ if (fill && (fill === 'solid' || fill === 'outline')) {
8146
8128
  this.renderer.addClass(wrapperElement, `k-avatar-${fill}`);
8147
8129
  }
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}`);
8130
+ // add theme color class if needed
8131
+ if (themeColor && this._themeColorClasses.includes(`k-avatar-${themeColor}`)) {
8132
+ this.renderer.addClass(wrapperElement, `k-avatar-${themeColor}`);
8151
8133
  }
8152
8134
  }
8153
8135
  /**
@@ -8169,21 +8151,21 @@ class AvatarComponent {
8169
8151
  avatarAlt="Avatar"
8170
8152
  >
8171
8153
  </ng-container>
8172
-
8154
+
8173
8155
  @if (customAvatar) {
8174
8156
  <ng-content></ng-content>
8175
8157
  }
8176
-
8158
+
8177
8159
  @if (imageSrc) {
8178
8160
  <span class="k-avatar-image">
8179
8161
  <img src="{{ imageSrc }}" [alt]="textFor('avatarAlt')" [ngStyle]="cssStyle" />
8180
8162
  </span>
8181
8163
  }
8182
-
8164
+
8183
8165
  @if (initials) {
8184
8166
  <span class="k-avatar-text" [ngStyle]="cssStyle">{{ initials.substring(0, 2) }}</span>
8185
8167
  }
8186
-
8168
+
8187
8169
  @if (icon || iconClass || svgIcon) {
8188
8170
  <span class="k-avatar-icon">
8189
8171
  <kendo-icon-wrapper
@@ -8214,21 +8196,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8214
8196
  avatarAlt="Avatar"
8215
8197
  >
8216
8198
  </ng-container>
8217
-
8199
+
8218
8200
  @if (customAvatar) {
8219
8201
  <ng-content></ng-content>
8220
8202
  }
8221
-
8203
+
8222
8204
  @if (imageSrc) {
8223
8205
  <span class="k-avatar-image">
8224
8206
  <img src="{{ imageSrc }}" [alt]="textFor('avatarAlt')" [ngStyle]="cssStyle" />
8225
8207
  </span>
8226
8208
  }
8227
-
8209
+
8228
8210
  @if (initials) {
8229
8211
  <span class="k-avatar-text" [ngStyle]="cssStyle">{{ initials.substring(0, 2) }}</span>
8230
8212
  }
8231
-
8213
+
8232
8214
  @if (icon || iconClass || svgIcon) {
8233
8215
  <span class="k-avatar-icon">
8234
8216
  <kendo-icon-wrapper
@@ -8294,7 +8276,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8294
8276
  // eslint-disable no-forward-ref
8295
8277
  /**
8296
8278
  * Provides custom component messages that override default component messages
8297
- * ([see example]({% slug rtl_layout %})).
8279
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/globalization)).
8298
8280
  *
8299
8281
  * ```html
8300
8282
  * <kendo-avatar>
@@ -8338,7 +8320,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8338
8320
 
8339
8321
  /**
8340
8322
  * 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 %})).
8323
+ * Displays content in a structured container with customizable layout and styling ([Card overview](https://www.telerik.com/kendo-angular-ui/components/layout/card)).
8342
8324
  *
8343
8325
  * @example
8344
8326
  * ```html
@@ -8543,7 +8525,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8543
8525
  }] } });
8544
8526
 
8545
8527
  /**
8546
- * Defines the action buttons of the Card ([see example]({% slug actions_card %})).
8528
+ * Defines the action buttons of the Card ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/card/action_buttons)).
8547
8529
  * The Card actions can be used to perform operations related to the Card's content, such as saving, editing, or deleting.
8548
8530
  *
8549
8531
  * @example
@@ -8626,7 +8608,7 @@ class CardActionsComponent {
8626
8608
  @for (action of actionsArray; track action) {
8627
8609
  <button
8628
8610
  type="button"
8629
- class="k-button k-button-md k-rounded-md"
8611
+ class="k-button"
8630
8612
  [class.k-button-solid]="!action.flat"
8631
8613
  [class.k-button-flat]="action.flat"
8632
8614
  [class.k-button-solid-base]="!action.primary && !action.flat"
@@ -8658,7 +8640,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
8658
8640
  @for (action of actionsArray; track action) {
8659
8641
  <button
8660
8642
  type="button"
8661
- class="k-button k-button-md k-rounded-md"
8643
+ class="k-button"
8662
8644
  [class.k-button-solid]="!action.flat"
8663
8645
  [class.k-button-flat]="action.flat"
8664
8646
  [class.k-button-solid-base]="!action.primary && !action.flat"
@@ -8870,7 +8852,7 @@ class CardAction {
8870
8852
  /**
8871
8853
  * Defines a template that specifies the content of the ExpansionPanel title.
8872
8854
  * 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)).
8855
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#title-template)).
8874
8856
  *
8875
8857
  * @example
8876
8858
  * ```html
@@ -8940,7 +8922,7 @@ const DEFAULT_DURATION = 200;
8940
8922
  const CONTENT_HIDDEN_CLASS = 'k-hidden';
8941
8923
  let incrementingId = 0;
8942
8924
  /**
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 %})).
8925
+ * 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
8926
  *
8945
8927
  * @example
8946
8928
  * ```html
@@ -8960,24 +8942,24 @@ class ExpansionPanelComponent {
8960
8942
  builder;
8961
8943
  /**
8962
8944
  * Specifies the primary text in the header of the ExpansionPanel
8963
- * ([see example](slug:title_expansionpanel#toc-titles-and-subtitles)).
8945
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#titles-and-subtitles)).
8964
8946
  */
8965
8947
  title = '';
8966
8948
  /**
8967
8949
  * 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)).
8950
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#titles-and-subtitles)).
8969
8951
  */
8970
8952
  subtitle = '';
8971
8953
  /**
8972
8954
  * Specifies whether the ExpansionPanel is disabled. If disabled, the ExpansionPanel can be neither expanded nor collapsed
8973
- * ([see example]({% slug disabled_expansionpanel %})).
8955
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/disabled-state)).
8974
8956
  *
8975
8957
  * @default false
8976
8958
  */
8977
8959
  disabled = false;
8978
8960
  /**
8979
8961
  * Specifies whether the ExpansionPanel is expanded. The property supports two-way binding
8980
- * ([see example]({% slug interaction_expansionpanel %}#toc-setting-the-initial-state)).
8962
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/interaction#setting-the-initial-state)).
8981
8963
  *
8982
8964
  * @default false
8983
8965
  */
@@ -8998,7 +8980,7 @@ class ExpansionPanelComponent {
8998
8980
  }
8999
8981
  /**
9000
8982
  * 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.
8983
+ * 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
8984
  */
9003
8985
  set svgExpandIcon(icon) {
9004
8986
  if (isDevMode() && icon && this.expandIcon) {
@@ -9011,7 +8993,7 @@ class ExpansionPanelComponent {
9011
8993
  }
9012
8994
  /**
9013
8995
  * 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.
8996
+ * 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
8997
  */
9016
8998
  set svgCollapseIcon(icon) {
9017
8999
  if (isDevMode() && icon && this.collapseIcon) {
@@ -9024,17 +9006,17 @@ class ExpansionPanelComponent {
9024
9006
  }
9025
9007
  /**
9026
9008
  * Sets a custom icon via CSS class(es) for the collapsed state of the component
9027
- * ([see example]({% slug icons_expansionpanel %}#toc-icons)).
9009
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/icons#icons)).
9028
9010
  */
9029
9011
  expandIcon;
9030
9012
  /**
9031
9013
  * Sets a custom icon via CSS class(es) for the expanded state of the component
9032
- * ([see example]({% slug icons_expansionpanel %}#toc-icons)).
9014
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/icons#icons)).
9033
9015
  */
9034
9016
  collapseIcon;
9035
9017
  /**
9036
9018
  * Specifies the animation settings of the ExpansionPanel
9037
- * ([see example]({% slug animations_expansionpanel %})).
9019
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/animations)).
9038
9020
  *
9039
9021
  * @default true
9040
9022
  */
@@ -9042,22 +9024,22 @@ class ExpansionPanelComponent {
9042
9024
  /**
9043
9025
  * Fires when the `expanded` property of the component is updated.
9044
9026
  * Used to provide a two-way binding for the `expanded` property
9045
- * ([see example](slug:events_expansionpanel)).
9027
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
9046
9028
  */
9047
9029
  expandedChange = new EventEmitter();
9048
9030
  /**
9049
9031
  * Fires when the expanded state of the ExpansionPanel is about to change. This event is preventable
9050
- * ([see example](slug:events_expansionpanel)).
9032
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
9051
9033
  */
9052
9034
  action = new EventEmitter();
9053
9035
  /**
9054
9036
  * Fires when the ExpansionPanel is expanded. If there is animation it fires when the animation is complete
9055
- * ([see example](slug:events_expansionpanel)).
9037
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
9056
9038
  */
9057
9039
  expand = new EventEmitter();
9058
9040
  /**
9059
9041
  * Fires when the ExpansionPanel is collapsed. If there is animation it fires when the animation is complete
9060
- * ([see example](slug:events_expansionpanel)).
9042
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/events)).
9061
9043
  */
9062
9044
  collapse = new EventEmitter();
9063
9045
  /**
@@ -9201,7 +9183,7 @@ class ExpansionPanelComponent {
9201
9183
  }
9202
9184
  /**
9203
9185
  * Toggles the visibility of the ExpansionPanel
9204
- * ([see example](slug:interaction_expansionpanel#toggling-between-states)).
9186
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/interaction#toggling-between-states)).
9205
9187
  *
9206
9188
  * @param expanded Specifies whether the ExpansionPanel will be expanded or collapsed.
9207
9189
  */
@@ -10400,16 +10382,16 @@ class TileLayoutItemComponent {
10400
10382
  draggingService;
10401
10383
  keyboardNavigationService;
10402
10384
  /**
10403
- * Sets the title text that appears in the item header ([see example]({% slug tiles_tilelayout %}#toc-tiles-configuration)).
10385
+ * 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
10386
  */
10405
10387
  title;
10406
10388
  /**
10407
- * Sets how many rows the tile item spans ([see example](slug:resizing_tilelayout#programmatic-resizing)).
10389
+ * Sets how many rows the tile item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing#programmatic-resizing)).
10408
10390
  * @default 1
10409
10391
  */
10410
10392
  rowSpan = 1;
10411
10393
  /**
10412
- * Sets how many columns the tile item spans ([see example](slug:resizing_tilelayout#programmatic-resizing)).
10394
+ * Sets how many columns the tile item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing#programmatic-resizing)).
10413
10395
  * @default 1
10414
10396
  */
10415
10397
  colSpan = 1;
@@ -10425,11 +10407,11 @@ class TileLayoutItemComponent {
10425
10407
  return this._order;
10426
10408
  }
10427
10409
  /**
10428
- * Sets the starting column position of the item ([see example](slug:tiles_tilelayout#size-and-position)).
10410
+ * 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
10411
  */
10430
10412
  col;
10431
10413
  /**
10432
- * Sets the starting row position of the item ([see example](slug:tiles_tilelayout#size-and-position)).
10414
+ * 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
10415
  */
10434
10416
  row;
10435
10417
  /**
@@ -10690,7 +10672,7 @@ const autoFlowClasses = {
10690
10672
  'row-dense': 'k-grid-flow-row-dense'
10691
10673
  };
10692
10674
  /**
10693
- * Represents the [Kendo UI TileLayout component for Angular]({% slug overview_tilelayout %})
10675
+ * Represents the [Kendo UI TileLayout component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout)
10694
10676
  *
10695
10677
  * @example
10696
10678
  * ```html
@@ -10710,13 +10692,13 @@ class TileLayoutComponent {
10710
10692
  draggingService;
10711
10693
  navigationService;
10712
10694
  /**
10713
- * Specifies the number of columns ([see example](slug:tiles_tilelayout#size-and-position)).
10695
+ * Specifies the number of columns ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
10714
10696
  * @default 1
10715
10697
  */
10716
10698
  columns = 1;
10717
10699
  /**
10718
10700
  * 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)).
10701
+ * 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
10702
  * @default '1fr'
10721
10703
  */
10722
10704
  columnWidth = '1fr';
@@ -10734,41 +10716,41 @@ class TileLayoutComponent {
10734
10716
  return this._gap;
10735
10717
  }
10736
10718
  /**
10737
- * Enables or disables item reordering ([see example]({% slug reordering_tilelayout %})).
10719
+ * Enables or disables item reordering ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/reordering)).
10738
10720
  * @default false
10739
10721
  */
10740
10722
  reorderable = false;
10741
10723
  /**
10742
- * Enables or disables item resizing ([see example]({% slug resizing_tilelayout %})).
10724
+ * Enables or disables item resizing ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing)).
10743
10725
  * @default false
10744
10726
  */
10745
10727
  resizable = false;
10746
10728
  /**
10747
10729
  * 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)).
10730
+ * 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
10731
  * @default '1fr'
10750
10732
  */
10751
10733
  rowHeight = '1fr';
10752
10734
  /**
10753
10735
  *
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 %})).
10736
+ * 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
10737
  *
10756
10738
  * For further reference, check the [grid-auto-flow CSS article](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow).
10757
10739
  * @default 'column'
10758
10740
  */
10759
10741
  autoFlow = 'column';
10760
10742
  /**
10761
- * Enables or disables [keyboard navigation](slug:keyboard_navigation_tilelayout).
10743
+ * Enables or disables [keyboard navigation](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/keyboard-navigation).
10762
10744
  * @default true
10763
10745
  */
10764
10746
  navigable = true;
10765
10747
  /**
10766
- * Fires when item reordering is completed ([see example]({% slug reordering_tilelayout %})).
10748
+ * Fires when item reordering is completed ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/reordering)).
10767
10749
  * You can prevent this event to cancel the reorder operation.
10768
10750
  */
10769
10751
  reorder = new EventEmitter();
10770
10752
  /**
10771
- * Fires when item resizing is completed ([see example]({% slug resizing_tilelayout %})).
10753
+ * Fires when item resizing is completed ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing)).
10772
10754
  * You can prevent this event to cancel the resize operation.
10773
10755
  */
10774
10756
  resize = new EventEmitter();
@@ -11193,7 +11175,7 @@ const validateGridLayoutRowsCols = (arr) => {
11193
11175
 
11194
11176
  /**
11195
11177
  * 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 %})).
11178
+ * 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
11179
  *
11198
11180
  * @example
11199
11181
  * ```html
@@ -11220,7 +11202,7 @@ class GridLayoutComponent {
11220
11202
  }
11221
11203
  /**
11222
11204
  * Specifies the number of rows and their height
11223
- * ([More details](slug:layout_gridlayout#toc-rows-and-columns)).
11205
+ * ([More details](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#rows-and-columns)).
11224
11206
  *
11225
11207
  * 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
11208
  * For example, you can use CSS units like `px`, `%`, `fr`, or `auto` to define the row sizes.
@@ -11228,21 +11210,21 @@ class GridLayoutComponent {
11228
11210
  rows;
11229
11211
  /**
11230
11212
  * Specifies the number of columns and their widths
11231
- * ([More details](slug:layout_gridlayout#toc-rows-and-columns)).
11213
+ * ([More details](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#rows-and-columns)).
11232
11214
  *
11233
11215
  * 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
11216
  * For example, you can use CSS units like `px`, `%`, `fr`, or `auto` to define the column sizes.
11235
11217
  */
11236
11218
  cols;
11237
11219
  /**
11238
- * Specifies the gaps between the elements ([see example](slug:layout_gridlayout#toc-gap)).
11220
+ * Specifies the gaps between the elements ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#gap)).
11239
11221
  *
11240
11222
  * @default 0
11241
11223
  */
11242
11224
  gap = 0;
11243
11225
  /**
11244
11226
  * Specifies the horizontal and vertical alignment of the inner GridLayout elements
11245
- * ([see example]({% slug layout_gridlayout %}#toc-alignment)).
11227
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#alignment)).
11246
11228
  */
11247
11229
  set align(align) {
11248
11230
  this._align = Object.assign({}, this._align, align);
@@ -11373,22 +11355,22 @@ class GridLayoutItemComponent {
11373
11355
  element;
11374
11356
  /**
11375
11357
  * Sets the row of the item in the GridLayout
11376
- * ([see example]({% slug items_gridlayout %}#toc-size-and-position)).
11358
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
11377
11359
  */
11378
11360
  row;
11379
11361
  /**
11380
11362
  * Sets the column of the item in the GridLayout
11381
- * ([see example]({% slug items_gridlayout %}#toc-size-and-position)).
11363
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
11382
11364
  */
11383
11365
  col;
11384
11366
  /**
11385
- * Specifies how many rows the item spans ([see example]({% slug items_gridlayout %}#toc-size-and-position)).
11367
+ * Specifies how many rows the item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
11386
11368
  *
11387
11369
  * @default 1
11388
11370
  */
11389
11371
  rowSpan;
11390
11372
  /**
11391
- * Specifies how many columns the item spans ([see example]({% slug items_gridlayout %}#toc-size-and-position)).
11373
+ * Specifies how many columns the item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
11392
11374
  *
11393
11375
  * @default 1
11394
11376
  */
@@ -11437,7 +11419,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
11437
11419
 
11438
11420
  /**
11439
11421
  * 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 %})).
11422
+ * 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
11423
  *
11442
11424
  * @example
11443
11425
  * ```html
@@ -11464,7 +11446,7 @@ class StackLayoutComponent {
11464
11446
  }
11465
11447
  /**
11466
11448
  * Specifies the horizontal and vertical alignment of the inner StackLayout elements
11467
- * ([see example]({% slug layout_stacklayout %}#toc-alignment)).
11449
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stacklayout/layout#alignment)).
11468
11450
  */
11469
11451
  set align(align) {
11470
11452
  this._align = Object.assign({}, this._align, align);
@@ -11474,14 +11456,14 @@ class StackLayoutComponent {
11474
11456
  return this._align;
11475
11457
  }
11476
11458
  /**
11477
- * Specifies the gap between the inner StackLayout elements ([see example](slug:layout_stacklayout#toc-gap)).
11459
+ * Specifies the gap between the inner StackLayout elements ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stacklayout/layout#gap)).
11478
11460
  *
11479
11461
  * @default 0
11480
11462
  */
11481
11463
  gap = 0;
11482
11464
  /**
11483
11465
  * Specifies the orientation of the StackLayout
11484
- * ([see example]({% slug layout_stacklayout %}#toc-orientation)).
11466
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stacklayout/layout#orientation)).
11485
11467
  *
11486
11468
  * @default 'horizontal'
11487
11469
  */
@@ -13232,7 +13214,7 @@ const DEFAULT_EVENT_WIDTH = 400;
13232
13214
  const DEFAULT_EVENT_HEIGHT = 600;
13233
13215
  const DEFAULT_DATE_FORMAT = 'MMMM dd, yyyy';
13234
13216
  /**
13235
- * Represents the [Kendo UI Timeline component for Angular]({% slug overview_timeline %}).
13217
+ * Represents the [Kendo UI Timeline component for Angular](https://www.telerik.com/kendo-angular-ui/components/layout/timeline).
13236
13218
  *
13237
13219
  * @remarks
13238
13220
  * Supported children components are: {@link TimelineCustomMessagesComponent}.