pb-sxp-ui 1.2.7 → 1.2.9
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/index.cjs +76 -77
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +76 -77
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +3 -3
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +3 -3
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +76 -77
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +3 -3
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/components/SxpPageRender/FormatImage.d.ts +1 -0
- package/es/core/components/SxpPageRender/FormatImage.js +17 -3
- package/es/core/components/SxpPageRender/VideoWidget/index.js +2 -2
- package/es/core/components/SxpPageRender/index.js +11 -3
- package/es/core/context/SxpDataSourceProvider.js +2 -2
- package/es/materials/sxp/cta/AniLink/index.js +1 -1
- package/es/materials/sxp/cta/AniLink/interactionRender.d.ts +0 -3
- package/es/materials/sxp/cta/AniLink/interactionRender.js +1 -2
- package/es/materials/sxp/cta/AniLink/material.js +9 -1
- package/es/materials/sxp/cta/AniLinkPopup/index.js +2 -2
- package/es/materials/sxp/cta/AniLinkPopup/interactionRender.d.ts +0 -10
- package/es/materials/sxp/cta/AniLinkPopup/interactionRender.js +1 -7
- package/es/materials/sxp/cta/AniLinkPopup/material.js +19 -11
- package/lib/core/components/SxpPageRender/FormatImage.d.ts +1 -0
- package/lib/core/components/SxpPageRender/FormatImage.js +17 -3
- package/lib/core/components/SxpPageRender/VideoWidget/index.js +2 -2
- package/lib/core/components/SxpPageRender/index.js +11 -3
- package/lib/core/context/SxpDataSourceProvider.js +2 -2
- package/lib/materials/sxp/cta/AniLink/index.js +1 -1
- package/lib/materials/sxp/cta/AniLink/interactionRender.d.ts +0 -3
- package/lib/materials/sxp/cta/AniLink/interactionRender.js +1 -2
- package/lib/materials/sxp/cta/AniLink/material.js +9 -1
- package/lib/materials/sxp/cta/AniLinkPopup/index.js +2 -2
- package/lib/materials/sxp/cta/AniLinkPopup/interactionRender.d.ts +0 -10
- package/lib/materials/sxp/cta/AniLinkPopup/interactionRender.js +1 -7
- package/lib/materials/sxp/cta/AniLinkPopup/material.js +19 -11
- package/package.json +1 -1
@@ -21,32 +21,40 @@ const AniLinkPopup = (0, create_1.createMaterial)(_1.default, {
|
|
21
21
|
ctaTempStyles: {
|
22
22
|
img: {
|
23
23
|
borderRadius: 3,
|
24
|
-
width:
|
25
|
-
height:
|
26
|
-
marginBottom:
|
24
|
+
width: 108,
|
25
|
+
height: 108,
|
26
|
+
marginBottom: 0
|
27
27
|
},
|
28
28
|
title: {
|
29
|
-
fontSize:
|
29
|
+
fontSize: 14,
|
30
30
|
color: '#000',
|
31
|
-
textAlign: 'left'
|
31
|
+
textAlign: 'left',
|
32
|
+
lineHeight: 2.6
|
32
33
|
},
|
33
34
|
ctaTitle: {
|
34
|
-
|
35
|
+
width: 108,
|
36
|
+
height: 22,
|
37
|
+
fontSize: 12,
|
35
38
|
color: '#fff',
|
36
39
|
textAlign: 'center',
|
37
|
-
width: 76,
|
38
|
-
height: 20,
|
39
40
|
backgroundColor: 'rgba(0,0,0,1)'
|
40
41
|
}
|
42
|
+
},
|
43
|
+
event: {
|
44
|
+
animation: {
|
45
|
+
name: 1,
|
46
|
+
delay: 1000,
|
47
|
+
duration: 2000
|
48
|
+
}
|
41
49
|
}
|
42
50
|
},
|
43
51
|
style: {
|
44
|
-
width:
|
45
|
-
height:
|
52
|
+
width: 120,
|
53
|
+
height: 185,
|
46
54
|
borderRadius: 3,
|
47
55
|
backgroundColor: 'rgba(255,255,255,1)',
|
48
56
|
padding: 7,
|
49
|
-
margin:
|
57
|
+
margin: 15
|
50
58
|
}
|
51
59
|
},
|
52
60
|
w: 100,
|