igniteui-angular 12.3.28 → 12.3.29
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.
- package/bundles/igniteui-angular.umd.js +118 -21
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/grids/api.service.js +2 -3
- package/esm2015/lib/grids/common/crud.service.js +3 -3
- package/esm2015/lib/grids/common/events.js +1 -1
- package/esm2015/lib/grids/grid-base.directive.js +12 -10
- package/esm2015/lib/grids/hierarchical-grid/hierarchical-grid.component.js +3 -1
- package/esm2015/lib/grids/tree-grid/tree-grid.component.js +19 -3
- package/esm2015/lib/splitter/splitter-pane/splitter-pane.component.js +58 -6
- package/esm2015/lib/splitter/splitter.component.js +22 -3
- package/fesm2015/igniteui-angular.js +111 -22
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/grids/common/events.d.ts +1 -0
- package/lib/splitter/splitter-pane/splitter-pane.component.d.ts +19 -5
- package/package.json +1 -1
|
@@ -65,6 +65,7 @@ export interface IPinColumnCancellableEventArgs extends IPinColumnEventArgs, Can
|
|
|
65
65
|
}
|
|
66
66
|
export interface IRowDataEventArgs extends IBaseEventArgs {
|
|
67
67
|
data: any;
|
|
68
|
+
owner: GridType;
|
|
68
69
|
}
|
|
69
70
|
export interface IColumnResizeEventArgs extends IBaseEventArgs {
|
|
70
71
|
column: IgxColumnComponent;
|
|
@@ -30,7 +30,8 @@ export declare class IgxSplitterPaneComponent {
|
|
|
30
30
|
* </igx-splitter>
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
|
-
minSize: string;
|
|
33
|
+
get minSize(): string;
|
|
34
|
+
set minSize(value: string);
|
|
34
35
|
/**
|
|
35
36
|
* Gets/Set the maximum allowed size of the current pane.
|
|
36
37
|
*
|
|
@@ -41,7 +42,8 @@ export declare class IgxSplitterPaneComponent {
|
|
|
41
42
|
* </igx-splitter>
|
|
42
43
|
* ```
|
|
43
44
|
*/
|
|
44
|
-
maxSize: string;
|
|
45
|
+
get maxSize(): string;
|
|
46
|
+
set maxSize(value: string);
|
|
45
47
|
/**
|
|
46
48
|
* Gets/Sets whether pane is resizable.
|
|
47
49
|
*
|
|
@@ -75,12 +77,22 @@ export declare class IgxSplitterPaneComponent {
|
|
|
75
77
|
overflow: string;
|
|
76
78
|
/**
|
|
77
79
|
* @hidden @internal
|
|
78
|
-
*
|
|
80
|
+
* Get/Sets the `minWidth` properties of the current pane.
|
|
79
81
|
*/
|
|
80
|
-
|
|
82
|
+
minWidth: string;
|
|
81
83
|
/**
|
|
82
84
|
* @hidden @internal
|
|
83
|
-
*
|
|
85
|
+
* Get/Sets the `maxWidth` properties of the current pane.
|
|
86
|
+
*/
|
|
87
|
+
maxWidth: string;
|
|
88
|
+
/**
|
|
89
|
+
* @hidden @internal
|
|
90
|
+
* Gets/Sets the `minHeight` properties of the current pane.
|
|
91
|
+
*/
|
|
92
|
+
minHeight: string;
|
|
93
|
+
/**
|
|
94
|
+
* @hidden @internal
|
|
95
|
+
* Gets/Sets the `maxHeight` properties of the current `IgxSplitterPaneComponent`.
|
|
84
96
|
*/
|
|
85
97
|
maxHeight: string;
|
|
86
98
|
/** @hidden @internal */
|
|
@@ -122,6 +134,8 @@ export declare class IgxSplitterPaneComponent {
|
|
|
122
134
|
*/
|
|
123
135
|
set collapsed(value: boolean);
|
|
124
136
|
get collapsed(): boolean;
|
|
137
|
+
private _minSize;
|
|
138
|
+
private _maxSize;
|
|
125
139
|
private _size;
|
|
126
140
|
private _dragSize;
|
|
127
141
|
private _collapsed;
|
package/package.json
CHANGED