@conecli/cone-render 0.9.1-shop2.9 → 0.10.1-beta.1
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/dist/assets/icon_blue_info.svg +1 -0
- package/dist/common/const.ts +1 -1
- package/dist/common/index.h5.ts +1 -1
- package/dist/common/index.jd.ts +1 -1
- package/dist/common/index.ts +1 -1
- package/dist/common/index.weapp.ts +1 -1
- package/dist/common/jdplayerSdk.ts +1 -0
- package/dist/common/sgmCustomCode.ts +1 -1
- package/dist/components/base/CustomVideo/index.tsx +1 -1
- package/dist/components/base/InOrOutViewObserver/index.tsx +1 -1
- package/dist/components/base/LazyLayoutLoad/index.tsx +1 -1
- package/dist/components/base/LazyLoadImage/index.h5.tsx +1 -1
- package/dist/components/base/NetworkDataError/index.tsx +1 -1
- package/dist/components/debug/DebugLayout/index.module.scss +67 -0
- package/dist/components/debug/DebugLayout/index.tsx +1 -0
- package/dist/components/debug/DebugLayout/utils.ts +1 -0
- package/dist/components/decorate/EmptyFloorModule/index.tsx +1 -1
- package/dist/components/isv/Floor/index.tsx +1 -1
- package/dist/interface/component.ts +1 -1
- package/dist/jumpEventReport/web.tjm.ts +1 -1
- package/dist/open/api/index.ts +1 -1
- package/dist/sass/app.h5.scss +5 -0
- package/dist/utils/connectNativeJsBridge.ts +1 -1
- package/dist/utils/h5Utils.ts +1 -1
- package/dist/utils/index.h5.ts +1 -1
- package/dist/utils/index.ts +1 -1
- package/dist/utils/index.weapp.ts +1 -1
- package/dist/utils/utils.ts +1 -1
- package/package.json +42 -39
- package/dist/customHooks/useDocumentVisibilitychange.ts +0 -1
package/dist/open/api/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import * as device from './device'
|
|
2
1
|
device,
|
|
3
2
|
environment,
|
|
4
3
|
jump,
|
|
5
4
|
storage,
|
|
6
5
|
util,
|
|
7
6
|
moduleUtil,
|
|
8
7
|
track,
|
|
9
8
|
trackPromise,
|
|
10
9
|
global,
|
|
11
10
|
http,
|
|
12
11
|
fetchGateway,
|
|
13
12
|
fetchJsonp,
|
|
14
13
|
shopMember,
|
|
15
14
|
userToken,
|
|
16
15
|
TokenPlatform,
|
|
17
16
|
requestServer,
|
|
18
17
|
isvStorage,
|
|
18
|
+
import * as device from './device'
|
|
19
19
|
device,
|
|
20
20
|
environment,
|
|
21
21
|
jump,
|
|
22
22
|
storage,
|
|
23
23
|
util,
|
|
24
24
|
moduleUtil,
|
|
25
25
|
track,
|
|
26
26
|
trackPromise,
|
|
27
27
|
global,
|
|
28
28
|
http,
|
|
29
29
|
fetchGateway,
|
|
30
30
|
fetchJsonp,
|
|
31
31
|
shopMember,
|
|
32
32
|
userToken,
|
|
33
33
|
TokenPlatform,
|
|
34
34
|
requestServer,
|
|
35
35
|
isvStorage,
|
package/dist/sass/app.h5.scss
CHANGED
|
@@ -228,6 +228,11 @@ video {
|
|
|
228
228
|
}
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
+
// tarojs会在运行时动态给页面写入这个样式,但是动态写入可能导致在写入之前,有些依赖于 taro-view-core 块行为的逻辑出现异常,比如获取一个view的宽度,block情况下应该是有宽度的,但可能会出现获取到的宽度值是0。所以改成样式表里就直接定义好
|
|
232
|
+
taro-view-core {
|
|
233
|
+
display: block;
|
|
234
|
+
}
|
|
235
|
+
|
|
231
236
|
taro-view-core,
|
|
232
237
|
taro-image-core,
|
|
233
238
|
taro-text-core,
|