@progress/kendo-angular-layout 16.1.1-develop.5 → 16.1.1-develop.7

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.
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-layout',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1716818327,
13
- version: '16.1.1-develop.5',
12
+ publishDate: 1716980117,
13
+ version: '16.1.1-develop.7',
14
14
  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'
15
15
  };
@@ -76,6 +76,7 @@ export class SplitterPaneComponent {
76
76
  }
77
77
  /**
78
78
  * Sets the initial size of the pane.
79
+ * Accepts units in pixel and percentage values.
79
80
  * Has to be between the `min` and `max` properties.
80
81
  */
81
82
  set size(newSize) {
@@ -33,8 +33,8 @@ const packageMetadata = {
33
33
  name: '@progress/kendo-angular-layout',
34
34
  productName: 'Kendo UI for Angular',
35
35
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
36
- publishDate: 1716818327,
37
- version: '16.1.1-develop.5',
36
+ publishDate: 1716980117,
37
+ version: '16.1.1-develop.7',
38
38
  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'
39
39
  };
40
40
 
@@ -1667,6 +1667,7 @@ class SplitterPaneComponent {
1667
1667
  }
1668
1668
  /**
1669
1669
  * Sets the initial size of the pane.
1670
+ * Accepts units in pixel and percentage values.
1670
1671
  * Has to be between the `min` and `max` properties.
1671
1672
  */
1672
1673
  set size(newSize) {
@@ -33,8 +33,8 @@ const packageMetadata = {
33
33
  name: '@progress/kendo-angular-layout',
34
34
  productName: 'Kendo UI for Angular',
35
35
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
36
- publishDate: 1716818327,
37
- version: '16.1.1-develop.5',
36
+ publishDate: 1716980117,
37
+ version: '16.1.1-develop.7',
38
38
  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'
39
39
  };
40
40
 
@@ -1661,6 +1661,7 @@ class SplitterPaneComponent {
1661
1661
  }
1662
1662
  /**
1663
1663
  * Sets the initial size of the pane.
1664
+ * Accepts units in pixel and percentage values.
1664
1665
  * Has to be between the `min` and `max` properties.
1665
1666
  */
1666
1667
  set size(newSize) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "16.1.1-develop.5",
3
+ "version": "16.1.1-develop.7",
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",
@@ -39,17 +39,17 @@
39
39
  "@angular/core": "15 - 18",
40
40
  "@angular/platform-browser": "15 - 18",
41
41
  "@progress/kendo-licensing": "^1.0.2",
42
- "@progress/kendo-angular-common": "16.1.1-develop.5",
43
- "@progress/kendo-angular-l10n": "16.1.1-develop.5",
44
- "@progress/kendo-angular-progressbar": "16.1.1-develop.5",
45
- "@progress/kendo-angular-icons": "16.1.1-develop.5",
46
- "@progress/kendo-angular-buttons": "16.1.1-develop.5",
47
- "@progress/kendo-angular-intl": "16.1.1-develop.5",
42
+ "@progress/kendo-angular-common": "16.1.1-develop.7",
43
+ "@progress/kendo-angular-l10n": "16.1.1-develop.7",
44
+ "@progress/kendo-angular-progressbar": "16.1.1-develop.7",
45
+ "@progress/kendo-angular-icons": "16.1.1-develop.7",
46
+ "@progress/kendo-angular-buttons": "16.1.1-develop.7",
47
+ "@progress/kendo-angular-intl": "16.1.1-develop.7",
48
48
  "rxjs": "^6.5.3 || ^7.0.0"
49
49
  },
50
50
  "dependencies": {
51
51
  "tslib": "^2.3.1",
52
- "@progress/kendo-angular-schematics": "16.1.1-develop.5",
52
+ "@progress/kendo-angular-schematics": "16.1.1-develop.7",
53
53
  "@progress/kendo-draggable": "^3.0.2"
54
54
  },
55
55
  "schematics": "./schematics/collection.json",
@@ -19,6 +19,7 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
19
19
  get order(): number;
20
20
  /**
21
21
  * Sets the initial size of the pane.
22
+ * Accepts units in pixel and percentage values.
22
23
  * Has to be between the `min` and `max` properties.
23
24
  */
24
25
  set size(newSize: string);
@@ -29,10 +30,12 @@ export declare class SplitterPaneComponent implements AfterViewChecked {
29
30
  separatorLabel: string;
30
31
  /**
31
32
  * Sets the minimum possible size of the pane.
33
+ * Accepts units in pixel and percentage values.
32
34
  */
33
35
  min: string;
34
36
  /**
35
37
  * Sets the maximum possible size of the pane.
38
+ * Accepts units in pixel and percentage values.
36
39
  */
37
40
  max: string;
38
41
  /**