@dcloudio/uni-app-x 0.7.92 → 0.7.93
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 +1 -1
- package/types/uni/uts-plugin-api/lib/uni-chooseMedia/utssdk/interface.d.ts +6 -1
- 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
|
|
@@ -291,7 +291,7 @@ declare global {
|
|
|
291
291
|
|
|
292
292
|
function useSharedData<T extends string>(scope: UniSharedDataPage): InferSharedData<T>
|
|
293
293
|
|
|
294
|
-
function useSharedDataPage<T extends string>(
|
|
294
|
+
function useSharedDataPage<T extends string>(pageIdOrScope: number | UniSharedDataPage, options: UniSharedDataComponentOptions): InferSharedData<T, UniSharedDataPage>
|
|
295
295
|
|
|
296
296
|
function useSharedDataComponent<T extends string>(
|
|
297
297
|
scope: UniSharedDataPage,
|
|
@@ -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
|
}
|