@nativescript/angular 21.0.1-alpha.7 → 21.0.1-alpha.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript/angular",
3
- "version": "21.0.1-alpha.7",
3
+ "version": "21.0.1-alpha.9",
4
4
  "homepage": "https://nativescript.org/",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,6 +22,7 @@ interface ViewExtensions {
22
22
  meta: ViewClassMeta;
23
23
  nodeType: number;
24
24
  nodeName: string;
25
+ tagName: string;
25
26
  parentNode: NgView;
26
27
  nextSibling: NgView;
27
28
  previousSibling: NgView;
@@ -47,6 +48,7 @@ declare abstract class InvisibleNode extends View implements NgView {
47
48
  };
48
49
  nodeType: number;
49
50
  nodeName: string;
51
+ tagName: string;
50
52
  parentNode: NgView;
51
53
  nextSibling: NgView;
52
54
  previousSibling: NgView;
@@ -2055,7 +2057,7 @@ declare class NativeScriptRenderer implements Renderer2 {
2055
2057
  appendChild(parent: View, newChild: View): void;
2056
2058
  insertBefore(parent: any, newChild: any, refChild: any): void;
2057
2059
  removeChild(parent: any, oldChild: any, isHostElement?: boolean): void;
2058
- selectRootElement(selectorOrNode: any, preserveContent?: boolean): View;
2060
+ selectRootElement(selectorOrNode: any, preserveContent?: boolean): any;
2059
2061
  parentNode(node: NgView): _nativescript_core.ViewBase & View & _nativescript_angular.ViewExtensions;
2060
2062
  nextSibling(node: NgView): NgView;
2061
2063
  setAttribute(el: any, name: string, value: string, namespace?: string): void;