igniteui-angular 14.0.0-rc.0 → 14.0.0
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/README.md +1 -5
- package/esm2020/lib/action-strip/grid-actions/grid-editing-actions.component.mjs +17 -5
- package/esm2020/lib/combo/combo.component.mjs +4 -1
- package/esm2020/lib/directives/drag-drop/drag-drop.directive.mjs +22 -4
- package/esm2020/lib/simple-combo/simple-combo.component.mjs +4 -1
- package/fesm2015/igniteui-angular.mjs +43 -7
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +43 -7
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/action-strip/grid-actions/grid-editing-actions.component.d.ts +11 -3
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +5 -0
- package/package.json +2 -2
|
@@ -13,6 +13,14 @@ export declare class IgxGridEditingActionsComponent extends IgxGridActionsBaseDi
|
|
|
13
13
|
*/
|
|
14
14
|
set addRow(value: boolean);
|
|
15
15
|
get addRow(): boolean;
|
|
16
|
+
/**
|
|
17
|
+
* An input to enable/disable action strip row editing button
|
|
18
|
+
*/
|
|
19
|
+
editRow: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* An input to enable/disable action strip row deleting button
|
|
22
|
+
*/
|
|
23
|
+
deleteRow: boolean;
|
|
16
24
|
/**
|
|
17
25
|
* Getter if the row is disabled
|
|
18
26
|
*
|
|
@@ -49,10 +57,10 @@ export declare class IgxGridEditingActionsComponent extends IgxGridActionsBaseDi
|
|
|
49
57
|
*
|
|
50
58
|
* @example
|
|
51
59
|
* ```typescript
|
|
52
|
-
* this.gridEditingActions.
|
|
60
|
+
* this.gridEditingActions.deleteRowHandler();
|
|
53
61
|
* ```
|
|
54
62
|
*/
|
|
55
|
-
|
|
63
|
+
deleteRowHandler(event?: any): void;
|
|
56
64
|
addRowHandler(event?: any, asChild?: boolean): void;
|
|
57
65
|
/**
|
|
58
66
|
* @hidden
|
|
@@ -60,5 +68,5 @@ export declare class IgxGridEditingActionsComponent extends IgxGridActionsBaseDi
|
|
|
60
68
|
*/
|
|
61
69
|
private registerIcons;
|
|
62
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridEditingActionsComponent, never>;
|
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridEditingActionsComponent, "igx-grid-editing-actions", never, { "addRow": "addRow"; "addChild": "addChild"; }, {}, never, never, false>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridEditingActionsComponent, "igx-grid-editing-actions", never, { "addRow": "addRow"; "editRow": "editRow"; "deleteRow": "deleteRow"; "addChild": "addChild"; }, {}, never, never, false>;
|
|
64
72
|
}
|
|
@@ -563,6 +563,11 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
|
|
|
563
563
|
* Dispatch custom igxDragEnter/igxDragLeave events based on current pointer position and if drop area is under.
|
|
564
564
|
*/
|
|
565
565
|
protected dispatchDragEvents(pageX: number, pageY: number, originalEvent: any): void;
|
|
566
|
+
/**
|
|
567
|
+
* @hidden
|
|
568
|
+
* Traverse shadow dom in depth.
|
|
569
|
+
*/
|
|
570
|
+
protected getFromShadowRoot(elem: any, pageX: any, pageY: any): any;
|
|
566
571
|
/**
|
|
567
572
|
* @hidden
|
|
568
573
|
* Dispatch custom igxDrop event based on current pointer position if there is last recorder drop area under the pointer.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "14.0.0
|
|
3
|
+
"version": "14.0.0",
|
|
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",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@angular/forms": "^14.0.0"
|
|
88
88
|
},
|
|
89
89
|
"igxDevDependencies": {
|
|
90
|
-
"@igniteui/angular-schematics": "~14.0.1000
|
|
90
|
+
"@igniteui/angular-schematics": "~14.0.1000"
|
|
91
91
|
},
|
|
92
92
|
"ng-update": {
|
|
93
93
|
"migrations": "./migrations/migration-collection.json"
|