@dcloudio/uni-app-x 0.7.92 → 0.7.94
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 +1 -1
- package/types/dom2-internal/UniCSSProperty.d.ts +1 -0
- package/types/dom2-internal/UniNativeBaseView.d.ts +7 -0
- package/types/dom2-internal/sharedData.d.ts +3 -2
- package/types/uni/uts-plugin-api/lib/uni-chooseMedia/utssdk/interface.d.ts +6 -1
- package/types/uni/uts-plugin-api/lib/uni-createInnerAudioContext/utssdk/interface.d.ts +3 -3
- package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-component/lib/uni-loading-global/utssdk/global.d.ts +9 -0
- package/types/uni/uts-plugin-component/lib/uni-loading-global/utssdk/index.d.ts +5 -0
- package/types/uni/uts-plugin-component/lib/uni-loading-global/utssdk/interface.d.ts +5 -0
- package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/interface.d.ts +1 -1
package/package.json
CHANGED
|
@@ -206,6 +206,13 @@ export interface UniNativeBaseView {
|
|
|
206
206
|
*/
|
|
207
207
|
transformOrigin(value: UniNativeTransformOrigin): UniNativeBaseView
|
|
208
208
|
|
|
209
|
+
/**
|
|
210
|
+
* CSS: -uni-transform-internal
|
|
211
|
+
* 设置与transform叠加的变换
|
|
212
|
+
* 用于内部实现 list,区分框架设置的transform和开发者设置的transform,仅支持translate效果
|
|
213
|
+
*/
|
|
214
|
+
transformInternal(value?: UniNativeTransform|null): UniNativeBaseView
|
|
215
|
+
|
|
209
216
|
|
|
210
217
|
/**
|
|
211
218
|
* CSS: transition
|
|
@@ -109,7 +109,8 @@ declare global {
|
|
|
109
109
|
|
|
110
110
|
enum UniSharedDataComponentStyleIsolation {
|
|
111
111
|
Isolated,
|
|
112
|
-
|
|
112
|
+
App,
|
|
113
|
+
AppAndPage
|
|
113
114
|
}
|
|
114
115
|
|
|
115
116
|
enum UniSharedDataComponentRenderer {
|
|
@@ -291,7 +292,7 @@ declare global {
|
|
|
291
292
|
|
|
292
293
|
function useSharedData<T extends string>(scope: UniSharedDataPage): InferSharedData<T>
|
|
293
294
|
|
|
294
|
-
function useSharedDataPage<T extends string>(
|
|
295
|
+
function useSharedDataPage<T extends string>(pageIdOrScope: number | UniSharedDataPage, options: UniSharedDataComponentOptions): InferSharedData<T, UniSharedDataPage>
|
|
295
296
|
|
|
296
297
|
function useSharedDataComponent<T extends string>(
|
|
297
298
|
scope: UniSharedDataPage,
|
|
@@ -325,7 +325,7 @@ export type SetInnerAudioOptionOptions = {
|
|
|
325
325
|
"osVer": "12.0",
|
|
326
326
|
"uniVer": "x",
|
|
327
327
|
"uniUtsPlugin": "x",
|
|
328
|
-
"unixVer": "
|
|
328
|
+
"unixVer": "5.0",
|
|
329
329
|
"unixUtsPlugin": "5.0"
|
|
330
330
|
},
|
|
331
331
|
"harmony": {
|
|
@@ -1208,8 +1208,8 @@ export interface InnerAudioContext {
|
|
|
1208
1208
|
"osVer": "12.0",
|
|
1209
1209
|
"uniVer": "√",
|
|
1210
1210
|
"uniUtsPlugin": "x",
|
|
1211
|
-
"unixVer": "
|
|
1212
|
-
"unixUtsPlugin": "
|
|
1211
|
+
"unixVer": "5.0",
|
|
1212
|
+
"unixUtsPlugin": "5.0"
|
|
1213
1213
|
},
|
|
1214
1214
|
"harmony": {
|
|
1215
1215
|
"osVer": "5.0.0",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export class UniButtonElement extends
|
|
1
|
+
export class UniButtonElement extends UniVueElement {
|
|
2
2
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export class UniMatchMediaElement extends
|
|
1
|
+
export class UniMatchMediaElement extends UniVueElement {
|
|
2
2
|
}
|