@nativescript/core 8.7.3-next-05-07-2024-8977885291 → 8.7.3-next-05-23-2024-9210745709
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/data/observable/index.d.ts +34 -19
- package/data/observable/index.js +82 -78
- package/data/observable/index.js.map +1 -1
- package/data/observable-array/index.d.ts +10 -6
- package/data/virtual-array/index.d.ts +9 -5
- package/package.json +1 -1
- package/ui/action-bar/index.d.ts +10 -6
- package/ui/button/index.d.ts +9 -5
- package/ui/core/bindable/index.d.ts +13 -0
- package/ui/core/bindable/index.js +24 -4
- package/ui/core/bindable/index.js.map +1 -1
- package/ui/core/view/index.d.ts +18 -11
- package/ui/core/view/view-common.js +6 -6
- package/ui/core/view/view-common.js.map +1 -1
- package/ui/frame/index.d.ts +10 -6
- package/ui/gestures/gestures-common.d.ts +8 -5
- package/ui/gestures/gestures-common.js +24 -36
- package/ui/gestures/gestures-common.js.map +1 -1
- package/ui/gestures/index.android.js +60 -46
- package/ui/gestures/index.android.js.map +1 -1
- package/ui/gestures/index.d.ts +3 -1
- package/ui/gestures/index.ios.d.ts +20 -2
- package/ui/gestures/index.ios.js +88 -66
- package/ui/gestures/index.ios.js.map +1 -1
- package/ui/image-cache/index.d.ts +10 -6
- package/ui/list-view/index.d.ts +10 -6
- package/ui/page/index.d.ts +10 -6
- package/ui/placeholder/index.d.ts +9 -5
- package/ui/scroll-view/index.d.ts +9 -5
- package/ui/search-bar/index.d.ts +9 -5
- package/ui/segmented-bar/index.d.ts +9 -5
- package/ui/tab-view/index.d.ts +10 -6
- package/ui/web-view/index.d.ts +10 -6
package/ui/tab-view/index.d.ts
CHANGED
|
@@ -145,12 +145,16 @@ export class TabView extends View {
|
|
|
145
145
|
public static selectedIndexChangedEvent: string;
|
|
146
146
|
|
|
147
147
|
/**
|
|
148
|
-
*
|
|
149
|
-
*
|
|
150
|
-
* @param
|
|
151
|
-
* @param
|
|
152
|
-
|
|
153
|
-
|
|
148
|
+
* Adds a listener for the specified event name.
|
|
149
|
+
*
|
|
150
|
+
* @param eventName The name of the event.
|
|
151
|
+
* @param callback The event listener to add. Will be called when an event of
|
|
152
|
+
* the given name is raised.
|
|
153
|
+
* @param thisArg An optional parameter which, when set, will be bound as the
|
|
154
|
+
* `this` context when the callback is called. Falsy values will be not be
|
|
155
|
+
* bound.
|
|
156
|
+
*/
|
|
157
|
+
on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void;
|
|
154
158
|
|
|
155
159
|
/**
|
|
156
160
|
* Raised when the selected index changes.
|
package/ui/web-view/index.d.ts
CHANGED
|
@@ -87,12 +87,16 @@ export class WebView extends View {
|
|
|
87
87
|
reload();
|
|
88
88
|
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
* @param
|
|
93
|
-
* @param
|
|
94
|
-
|
|
95
|
-
|
|
90
|
+
* Adds a listener for the specified event name.
|
|
91
|
+
*
|
|
92
|
+
* @param eventName The name of the event.
|
|
93
|
+
* @param callback The event listener to add. Will be called when an event of
|
|
94
|
+
* the given name is raised.
|
|
95
|
+
* @param thisArg An optional parameter which, when set, will be bound as the
|
|
96
|
+
* `this` context when the callback is called. Falsy values will be not be
|
|
97
|
+
* bound.
|
|
98
|
+
*/
|
|
99
|
+
on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void;
|
|
96
100
|
|
|
97
101
|
/**
|
|
98
102
|
* Raised when a loadFinished event occurs.
|