igniteui-angular 12.3.28 → 12.3.31
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 +148 -22
- 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/simple-combo/simple-combo.component.js +2 -2
- package/esm2015/lib/splitter/splitter-pane/splitter-pane.component.js +58 -6
- package/esm2015/lib/splitter/splitter.component.js +22 -3
- package/esm2015/lib/tree/tree.component.js +30 -1
- package/fesm2015/igniteui-angular.js +141 -23
- 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/lib/tree/tree.component.d.ts +29 -0
- 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;
|
|
@@ -18,6 +18,35 @@ export declare class IgxTreeSelectMarkerDirective {
|
|
|
18
18
|
*/
|
|
19
19
|
export declare class IgxTreeExpandIndicatorDirective {
|
|
20
20
|
}
|
|
21
|
+
/**
|
|
22
|
+
* IgxTreeComponent allows a developer to show a set of nodes in a hierarchical fashion.
|
|
23
|
+
*
|
|
24
|
+
* @igxModule IgxTreeModule
|
|
25
|
+
* @igxKeywords tree
|
|
26
|
+
* @igxTheme igx-tree-theme
|
|
27
|
+
* @igxGroup Grids & Lists
|
|
28
|
+
*
|
|
29
|
+
* @remark
|
|
30
|
+
* The Angular Tree Component allows users to represent hierarchical data in a tree-view structure,
|
|
31
|
+
* maintaining parent-child relationships, as well as to define static tree-view structure without a corresponding data model.
|
|
32
|
+
* Its primary purpose is to allow end-users to visualize and navigate within hierarchical data structures.
|
|
33
|
+
* The Ignite UI for Angular Tree Component also provides load on demand capabilities, item activation,
|
|
34
|
+
* bi-state and cascading selection of items through built-in checkboxes, built-in keyboard navigation and more.
|
|
35
|
+
*
|
|
36
|
+
* @example
|
|
37
|
+
* ```html
|
|
38
|
+
* <igx-tree>
|
|
39
|
+
* <igx-tree-node>
|
|
40
|
+
* I am a parent node 1
|
|
41
|
+
* <igx-tree-node>
|
|
42
|
+
* I am a child node 1
|
|
43
|
+
* </igx-tree-node>
|
|
44
|
+
* ...
|
|
45
|
+
* </igx-tree-node>
|
|
46
|
+
* ...
|
|
47
|
+
* </igx-tree>
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
21
50
|
export declare class IgxTreeComponent extends DisplayDensityBase implements IgxTree, OnInit, AfterViewInit, OnDestroy {
|
|
22
51
|
private navService;
|
|
23
52
|
private selectionService;
|
package/package.json
CHANGED