@dcloudio/uni-app-x 0.7.87 → 0.7.88
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
|
@@ -119,6 +119,7 @@ declare global {
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
interface UniSharedDataComponentOptions {
|
|
122
|
+
vueId: number
|
|
122
123
|
styleIsolation: UniSharedDataComponentStyleIsolation
|
|
123
124
|
renderer: UniSharedDataComponentRenderer
|
|
124
125
|
flatten: UniSharedDataComponentFlatten
|
|
@@ -134,6 +135,11 @@ declare global {
|
|
|
134
135
|
* @internal
|
|
135
136
|
*/
|
|
136
137
|
static _styleSheet: Map<string, Map<string, Map<number, any>>>
|
|
138
|
+
/**
|
|
139
|
+
* vue实例ID
|
|
140
|
+
* @internal
|
|
141
|
+
*/
|
|
142
|
+
_vueId: number
|
|
137
143
|
/**
|
|
138
144
|
* 当前页面或组件关联的 UniPage 对象
|
|
139
145
|
* @internal
|
|
@@ -162,15 +168,6 @@ declare global {
|
|
|
162
168
|
*/
|
|
163
169
|
inheritAttrs: UniSharedDataJSONObject
|
|
164
170
|
constructor(scope: UniSharedDataPage, options: UniSharedDataComponentOptions)
|
|
165
|
-
/**
|
|
166
|
-
* 设置 vue id (主要用于自动化测试,js层设置)
|
|
167
|
-
* @internal
|
|
168
|
-
*/
|
|
169
|
-
_setVueId(id: number): void
|
|
170
|
-
/**
|
|
171
|
-
* 获取 vue id (主要用于自动化测试,c层读取)
|
|
172
|
-
*/
|
|
173
|
-
getVueId(): number
|
|
174
171
|
/**
|
|
175
172
|
* 监听组件根节点样式变更
|
|
176
173
|
* @internal
|