@dcloudio/uni-app-x 0.6.5 → 0.6.6
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
|
@@ -122,7 +122,7 @@ export interface Element {
|
|
|
122
122
|
* 只读属性 元素的布局宽度,宽度包含border、padding的数据值 单位px
|
|
123
123
|
*/
|
|
124
124
|
offsetWidth: number
|
|
125
|
-
|
|
125
|
+
|
|
126
126
|
/**
|
|
127
127
|
* 只读属性 元素的布局高度,高度包含border、padding的数据值 单位px
|
|
128
128
|
*/
|
|
@@ -283,6 +283,11 @@ export interface Element {
|
|
|
283
283
|
* 使元素丢失焦点 仅input、Textarea组件支持
|
|
284
284
|
*/
|
|
285
285
|
blur(): void
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* 页面排版完毕回调callback
|
|
289
|
+
*/
|
|
290
|
+
waitNativeRender(callback: () => void): void
|
|
286
291
|
}
|
|
287
292
|
|
|
288
293
|
export type INode = Element
|