@progress/kendo-angular-layout 21.4.0-develop.15 → 21.4.0-develop.16

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.
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1767862178,
14
- version: '21.4.0-develop.15',
13
+ publishDate: 1767878614,
14
+ version: '21.4.0-develop.16',
15
15
  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'
16
16
  };
@@ -70,11 +70,18 @@ export class PanelBarComponent {
70
70
  */
71
71
  height = '400px';
72
72
  /**
73
- * When set to `true`, the PanelBar renders the content of all items and they are persisted in the DOM
74
- * ([see example]({% slug templates_panelbar %}#toc-collections)).
75
- *
76
- * @default false
77
- */
73
+ * Controls how the PanelBar renders item content.
74
+ *
75
+ * The available options are:
76
+ *
77
+ * * `true`—Renders all items' content and persists them in the DOM.
78
+ * * `false`—Removes collapsed items' content from the DOM.
79
+ * * `"loadOnDemand"`—Loads items' content only when expanded for the first time. Collapsed items' content is not rendered until the item is expanded.
80
+ *
81
+ * For more information, refer to the [Rendering Modes](slug:rendering_panelbar) article.
82
+ *
83
+ * @default false
84
+ */
78
85
  get keepItemContent() {
79
86
  return this._keepItemContent;
80
87
  }
@@ -84,12 +84,18 @@ export class TabStripComponent {
84
84
  */
85
85
  tabPosition = 'top';
86
86
  /**
87
- * When set to `true`, all tabs' content is eagerly rendered and kept in the DOM ([see example](slug:rendering_tabstrip)).
88
- * When set to `false`, only the active tab's content is rendered. Inactive tabs' content is removed from the DOM.
89
- * When set to `'loadOnDemand'`, the active tab's content is rendered initially. Inactive tabs' content is rendered only when the tab is activated for the first time and kept in the DOM afterwards.
90
- *
91
- * @default false
92
- */
87
+ * Controls how the TabStrip renders tab content.
88
+ *
89
+ * The available options are:
90
+ *
91
+ * * `true`—Renders all tabs' content and persists them in the DOM.
92
+ * * `false`—Removes inactive tabs' content from the DOM.
93
+ * * `"loadOnDemand"`—Loads tabs' content only when activated for the first time. Inactive tabs' content is not rendered until the tab is activated.
94
+ *
95
+ * For more information, refer to the [Rendering Modes](slug:rendering_tabstrip) article.
96
+ *
97
+ * @default false
98
+ */
93
99
  keepTabContent = false;
94
100
  /**
95
101
  * When set to `true`, renders a close button inside each tab.
@@ -29,8 +29,8 @@ const packageMetadata = {
29
29
  productName: 'Kendo UI for Angular',
30
30
  productCode: 'KENDOUIANGULAR',
31
31
  productCodes: ['KENDOUIANGULAR'],
32
- publishDate: 1767862178,
33
- version: '21.4.0-develop.15',
32
+ publishDate: 1767878614,
33
+ version: '21.4.0-develop.16',
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
 
@@ -1171,11 +1171,18 @@ class PanelBarComponent {
1171
1171
  */
1172
1172
  height = '400px';
1173
1173
  /**
1174
- * When set to `true`, the PanelBar renders the content of all items and they are persisted in the DOM
1175
- * ([see example]({% slug templates_panelbar %}#toc-collections)).
1176
- *
1177
- * @default false
1178
- */
1174
+ * Controls how the PanelBar renders item content.
1175
+ *
1176
+ * The available options are:
1177
+ *
1178
+ * * `true`—Renders all items' content and persists them in the DOM.
1179
+ * * `false`—Removes collapsed items' content from the DOM.
1180
+ * * `"loadOnDemand"`—Loads items' content only when expanded for the first time. Collapsed items' content is not rendered until the item is expanded.
1181
+ *
1182
+ * For more information, refer to the [Rendering Modes](slug:rendering_panelbar) article.
1183
+ *
1184
+ * @default false
1185
+ */
1179
1186
  get keepItemContent() {
1180
1187
  return this._keepItemContent;
1181
1188
  }
@@ -4145,12 +4152,18 @@ class TabStripComponent {
4145
4152
  */
4146
4153
  tabPosition = 'top';
4147
4154
  /**
4148
- * When set to `true`, all tabs' content is eagerly rendered and kept in the DOM ([see example](slug:rendering_tabstrip)).
4149
- * When set to `false`, only the active tab's content is rendered. Inactive tabs' content is removed from the DOM.
4150
- * When set to `'loadOnDemand'`, the active tab's content is rendered initially. Inactive tabs' content is rendered only when the tab is activated for the first time and kept in the DOM afterwards.
4151
- *
4152
- * @default false
4153
- */
4155
+ * Controls how the TabStrip renders tab content.
4156
+ *
4157
+ * The available options are:
4158
+ *
4159
+ * * `true`—Renders all tabs' content and persists them in the DOM.
4160
+ * * `false`—Removes inactive tabs' content from the DOM.
4161
+ * * `"loadOnDemand"`—Loads tabs' content only when activated for the first time. Inactive tabs' content is not rendered until the tab is activated.
4162
+ *
4163
+ * For more information, refer to the [Rendering Modes](slug:rendering_tabstrip) article.
4164
+ *
4165
+ * @default false
4166
+ */
4154
4167
  keepTabContent = false;
4155
4168
  /**
4156
4169
  * When set to `true`, renders a close button inside each tab.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "21.4.0-develop.15",
3
+ "version": "21.4.0-develop.16",
4
4
  "description": "Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -50,7 +50,7 @@
50
50
  "package": {
51
51
  "productName": "Kendo UI for Angular",
52
52
  "productCode": "KENDOUIANGULAR",
53
- "publishDate": 1767862178,
53
+ "publishDate": 1767878614,
54
54
  "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"
55
55
  }
56
56
  },
@@ -60,17 +60,17 @@
60
60
  "@angular/core": "18 - 21",
61
61
  "@angular/platform-browser": "18 - 21",
62
62
  "@progress/kendo-licensing": "^1.7.0",
63
- "@progress/kendo-angular-common": "21.4.0-develop.15",
64
- "@progress/kendo-angular-l10n": "21.4.0-develop.15",
65
- "@progress/kendo-angular-progressbar": "21.4.0-develop.15",
66
- "@progress/kendo-angular-icons": "21.4.0-develop.15",
67
- "@progress/kendo-angular-buttons": "21.4.0-develop.15",
68
- "@progress/kendo-angular-intl": "21.4.0-develop.15",
63
+ "@progress/kendo-angular-common": "21.4.0-develop.16",
64
+ "@progress/kendo-angular-l10n": "21.4.0-develop.16",
65
+ "@progress/kendo-angular-progressbar": "21.4.0-develop.16",
66
+ "@progress/kendo-angular-icons": "21.4.0-develop.16",
67
+ "@progress/kendo-angular-buttons": "21.4.0-develop.16",
68
+ "@progress/kendo-angular-intl": "21.4.0-develop.16",
69
69
  "rxjs": "^6.5.3 || ^7.0.0"
70
70
  },
71
71
  "dependencies": {
72
72
  "tslib": "^2.3.1",
73
- "@progress/kendo-angular-schematics": "21.4.0-develop.15",
73
+ "@progress/kendo-angular-schematics": "21.4.0-develop.16",
74
74
  "@progress/kendo-draggable": "^3.0.2"
75
75
  },
76
76
  "schematics": "./schematics/collection.json",
@@ -62,11 +62,18 @@ export declare class PanelBarComponent implements AfterViewChecked, OnChanges, O
62
62
  */
63
63
  height: any;
64
64
  /**
65
- * When set to `true`, the PanelBar renders the content of all items and they are persisted in the DOM
66
- * ([see example]({% slug templates_panelbar %}#toc-collections)).
67
- *
68
- * @default false
69
- */
65
+ * Controls how the PanelBar renders item content.
66
+ *
67
+ * The available options are:
68
+ *
69
+ * * `true`—Renders all items' content and persists them in the DOM.
70
+ * * `false`—Removes collapsed items' content from the DOM.
71
+ * * `"loadOnDemand"`—Loads items' content only when expanded for the first time. Collapsed items' content is not rendered until the item is expanded.
72
+ *
73
+ * For more information, refer to the [Rendering Modes](slug:rendering_panelbar) article.
74
+ *
75
+ * @default false
76
+ */
70
77
  get keepItemContent(): boolean | 'loadOnDemand';
71
78
  set keepItemContent(keepItemContent: boolean | 'loadOnDemand');
72
79
  /**
@@ -71,12 +71,18 @@ export declare class TabStripComponent implements AfterViewInit, OnDestroy {
71
71
  */
72
72
  tabPosition: TabPosition;
73
73
  /**
74
- * When set to `true`, all tabs' content is eagerly rendered and kept in the DOM ([see example](slug:rendering_tabstrip)).
75
- * When set to `false`, only the active tab's content is rendered. Inactive tabs' content is removed from the DOM.
76
- * When set to `'loadOnDemand'`, the active tab's content is rendered initially. Inactive tabs' content is rendered only when the tab is activated for the first time and kept in the DOM afterwards.
77
- *
78
- * @default false
79
- */
74
+ * Controls how the TabStrip renders tab content.
75
+ *
76
+ * The available options are:
77
+ *
78
+ * * `true`—Renders all tabs' content and persists them in the DOM.
79
+ * * `false`—Removes inactive tabs' content from the DOM.
80
+ * * `"loadOnDemand"`—Loads tabs' content only when activated for the first time. Inactive tabs' content is not rendered until the tab is activated.
81
+ *
82
+ * For more information, refer to the [Rendering Modes](slug:rendering_tabstrip) article.
83
+ *
84
+ * @default false
85
+ */
80
86
  keepTabContent: boolean | 'loadOnDemand';
81
87
  /**
82
88
  * When set to `true`, renders a close button inside each tab.