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.
@@ -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
- * Gets/Sets the `minHeight` and `minWidth` properties of the current pane.
80
+ * Get/Sets the `minWidth` properties of the current pane.
79
81
  */
80
- minHeight: number;
82
+ minWidth: string;
81
83
  /**
82
84
  * @hidden @internal
83
- * Gets/Sets the `maxHeight` and `maxWidth` properties of the current `IgxSplitterPaneComponent`.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "12.3.28",
3
+ "version": "12.3.29",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",