@fonixtree/magic-design 0.1.34 → 0.1.36

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.
Files changed (49) hide show
  1. package/es/assets/fonts/.DS_Store +0 -0
  2. package/es/common/ImageModal/index.js +6 -4
  3. package/es/common/LinkModal/index.js +1 -1
  4. package/es/composite-comp/bol/components/Banner/mobile/index.less +78 -52
  5. package/es/composite-comp/bol/components/Carousel/mobile/index.less +100 -81
  6. package/es/composite-comp/bol/components/ImageGallery/mobile/index.less +22 -15
  7. package/es/composite-comp/bol/components/ImageText/mobile/index.less +292 -233
  8. package/es/composite-comp/bol/components/Video/mobile/Layout1/index.less +27 -23
  9. package/es/composite-comp/bol/components/Video/mobile/Layout2/index.less +45 -38
  10. package/es/composite-comp/bol/components/Video/mobile/Layout3/index.less +50 -41
  11. package/es/composite-comp/bol/components/Video/mobile/index.less +3 -2
  12. package/es/composite-comp/bol/components/Wallet/mobile/index.less +40 -27
  13. package/es/composite-comp/dito/components/FlashDeal/mobile/index.less +97 -83
  14. package/es/composite-comp/dito/components/MobileNavigation/mobile/index.less +35 -18
  15. package/es/composite-comp/dito/components/Recommend/mobile/index.less +86 -73
  16. package/es/composite-comp/dito/components/SearchBar/mobile/index.less +52 -45
  17. package/es/composite-comp/dito/components/SignBoard/mobile/index.js +2 -2
  18. package/es/composite-comp/dito/components/SignBoard/mobile/index.less +74 -70
  19. package/es/composite-comp/dito/components/SignBoard/pc/index.js +2 -2
  20. package/es/core/Designer/CompListPanel/index.js +17 -1
  21. package/es/core/Renderer/index.js +3 -7
  22. package/es/meta-comp/components/Image/index.js +3 -4
  23. package/es/utils/commonUtil.js +5 -8
  24. package/es/utils/coreUtil.js +3 -7
  25. package/lib/assets/fonts/.DS_Store +0 -0
  26. package/lib/common/ImageModal/index.js +6 -4
  27. package/lib/common/LinkModal/index.js +1 -1
  28. package/lib/composite-comp/bol/components/Banner/mobile/index.less +78 -52
  29. package/lib/composite-comp/bol/components/Carousel/mobile/index.less +100 -81
  30. package/lib/composite-comp/bol/components/ImageGallery/mobile/index.less +22 -15
  31. package/lib/composite-comp/bol/components/ImageText/mobile/index.less +292 -233
  32. package/lib/composite-comp/bol/components/Video/mobile/Layout1/index.less +27 -23
  33. package/lib/composite-comp/bol/components/Video/mobile/Layout2/index.less +45 -38
  34. package/lib/composite-comp/bol/components/Video/mobile/Layout3/index.less +50 -41
  35. package/lib/composite-comp/bol/components/Video/mobile/index.less +3 -2
  36. package/lib/composite-comp/bol/components/Wallet/mobile/index.less +40 -27
  37. package/lib/composite-comp/dito/components/FlashDeal/mobile/index.less +97 -83
  38. package/lib/composite-comp/dito/components/MobileNavigation/mobile/index.less +35 -18
  39. package/lib/composite-comp/dito/components/Recommend/mobile/index.less +86 -73
  40. package/lib/composite-comp/dito/components/SearchBar/mobile/index.less +52 -45
  41. package/lib/composite-comp/dito/components/SignBoard/mobile/index.js +2 -2
  42. package/lib/composite-comp/dito/components/SignBoard/mobile/index.less +74 -70
  43. package/lib/composite-comp/dito/components/SignBoard/pc/index.js +2 -2
  44. package/lib/core/Designer/CompListPanel/index.js +17 -1
  45. package/lib/core/Renderer/index.js +3 -7
  46. package/lib/meta-comp/components/Image/index.js +3 -4
  47. package/lib/utils/commonUtil.js +5 -8
  48. package/lib/utils/coreUtil.js +3 -7
  49. package/package.json +1 -1
Binary file
@@ -219,7 +219,7 @@ var __spreadArrays = void 0 && (void 0).__spreadArrays || function () {
219
219
  var TreeNode = _antd.Tree.TreeNode;
220
220
  var modalSize = _const.size;
221
221
  var Search = _antd.Input.Search;
222
- var picAccept = '.gif,.jpg,.png';
222
+ var picAccept = '.gif,.jpg,.png,.svg';
223
223
  var videoAccept = '.AVI,.mov,.rmvb,.rm,.FLV,.mp4,.3GP';
224
224
 
225
225
  function ImageModal(_a) {
@@ -299,9 +299,11 @@ function ImageModal(_a) {
299
299
  // }
300
300
 
301
301
 
302
- var headers = {};
303
- headers['X-CSRF-TOKEN'] = localStorage.getItem('X-CSRF-TOKEN') || '';
304
- headers.accessToken = localStorage.getItem('X-CSRF-TOKEN') || ''; // 查询图片库类目下的图片列表
302
+ var headers = {
303
+ credentials: localStorage.getItem('credentials')
304
+ }; // headers['X-CSRF-TOKEN'] = localStorage.getItem('X-CSRF-TOKEN') || '';
305
+ // headers.accessToken = localStorage.getItem('X-CSRF-TOKEN') || '';
306
+ // 查询图片库类目下的图片列表
305
307
 
306
308
  var qryImageContents = function qryImageContents(data) {
307
309
  return __awaiter(_this, void 0, void 0, function () {
@@ -257,7 +257,7 @@ var LinkModal = function LinkModal(props) {
257
257
  }, [visible]);
258
258
 
259
259
  var onModalSave = function onModalSave() {
260
- if (onConfirm) {
260
+ if (onConfirm && linkUrl) {
261
261
  onConfirm(__assign(__assign({}, linkUrl), {
262
262
  type: selected
263
263
  }));
@@ -1,54 +1,80 @@
1
1
  .m-banner-mobile {
2
2
  position: relative;
3
- }
4
- .m-banner-mobile .cylon-carousel .slick-track {
5
- display: flex;
6
- align-items: center;
7
- }
8
- .m-banner-mobile .carouselItem {
9
- position: relative;
10
- display: flex;
11
- }
12
- .m-banner-mobile .carouselItem .carouseContent {
13
- padding: 1.6rem 0.56rem 0;
14
- position: absolute;
15
- z-index: 2;
16
- display: flex;
17
- flex-direction: column;
18
- margin-bottom: auto;
19
- }
20
- .m-banner-mobile .carouselItem .title {
21
- margin-bottom: 0.16rem;
22
- }
23
- .m-banner-mobile .carouselItem .sub-title {
24
- margin-bottom: 0.4rem;
25
- }
26
- .m-banner-mobile .carouselItem .btn-wrap {
27
- display: flex;
28
- align-items: center;
29
- justify-content: flex-start;
30
- }
31
- .m-banner-mobile .carouselItem .btn-wrap .btn {
32
- margin-right: 0.24rem;
33
- }
34
- .m-banner-mobile .swiper-ban {
35
- position: absolute;
36
- width: 100%;
37
- bottom: 0.2rem;
38
- display: flex;
39
- align-items: center;
40
- justify-content: center;
41
- }
42
- .m-banner-mobile .swiper-ban .ban {
43
- font-size: 0.32rem;
44
- width: 1.5em;
45
- height: 0.3em;
46
- background: #FFF;
47
- cursor: inherit;
48
- margin-right: 0.3em;
49
- transition: all 0.5s;
50
- }
51
- .m-banner-mobile .swiper-ban .ban.active {
52
- width: 1.5em;
53
- opacity: 1;
54
- }
3
+ // .turnPage {
4
+ // position: absolute;
5
+ // top: 50%;
6
+ // transform: translateY(-50%);
7
+ // z-index: 3;
8
+ // cursor: pointer;
9
+ // }
10
+ // .leftBtn {
11
+ // left: 20px;
12
+ // }
13
+ // .rightBtn {
14
+ // right: 20px;
15
+ // }
16
+
17
+ .cylon-carousel {
18
+ .slick-track {
19
+ display: flex;
20
+ align-items: center;
21
+ }
22
+ }
23
+
24
+ .carouselItem {
25
+ // height: 386px;
26
+ position: relative;
27
+ display: flex;
28
+
29
+ .carouseContent {
30
+ padding: 80px 28px 0;
31
+ position: absolute;
32
+ z-index: 2;
33
+ display: flex;
34
+ flex-direction: column;
35
+ margin-bottom: auto;
36
+ }
37
+
38
+ .title {
39
+ margin-bottom: 8px;
40
+ }
41
+
42
+ .sub-title {
43
+ margin-bottom: 20px;
44
+ }
45
+
46
+ .btn-wrap {
47
+ display: flex;
48
+ align-items: center;
49
+ justify-content: flex-start;
50
+
51
+ .btn {
52
+ margin-right: 12px;
53
+ }
54
+ }
55
+ }
56
+
57
+ .swiper-ban {
58
+ position: absolute;
59
+ width: 100%;
60
+ bottom: 10px;
61
+ display: flex;
62
+ align-items: center;
63
+ justify-content: center;
64
+
65
+ .ban {
66
+ font-size: 16px;
67
+ width: 1.5em;
68
+ height: 0.3em;
69
+ background: #FFF;
70
+ cursor: inherit;
71
+ margin-right: 0.3em;
72
+ transition: all .5s;
73
+
74
+ &.active {
75
+ width: 1.5em;
76
+ opacity: 1;
77
+ }
78
+ }
79
+ }
80
+ }
@@ -1,84 +1,103 @@
1
1
  .m-carousel-mobile {
2
2
  position: relative;
3
3
  width: 100%;
4
- }
5
- .m-carousel-mobile .content {
6
- display: flex;
7
- margin: 0 auto;
8
- }
9
- .m-carousel-mobile .slider-wrap {
10
- width: 100%;
11
- margin: 0 auto;
12
- line-height: 1;
13
- }
14
- .m-carousel-mobile .slider-wrap .slick-list {
15
- padding: 0;
16
- }
17
- .m-carousel-mobile .slider-wrap .slick-list:hover {
18
- padding-top: 2rem;
19
- margin-top: -2rem;
20
- padding-bottom: 2rem;
21
- margin-bottom: -2rem;
22
- }
23
- .m-carousel-mobile .slider-wrap .slick-list .slick-track {
24
- display: flex;
25
- align-items: center;
26
- gap: 0.24rem;
27
- }
28
- .m-carousel-mobile .slider-wrap .img-wrap .img {
29
- width: fit-content;
30
- height: fit-content;
31
- display: block;
32
- margin: 0 auto;
33
- }
34
- .m-carousel-mobile .slider-wrap .img-wrap .title {
35
- display: flex;
36
- justify-content: center;
37
- margin-top: 0.24rem;
38
- }
39
- .m-carousel-mobile .slider-wrap .img-wrap .text {
40
- display: flex;
41
- justify-content: center;
42
- margin-top: 0.12rem;
43
- }
44
- .m-carousel-mobile .slider-wrap .img-wrap .tags {
45
- margin-top: 0.16rem;
46
- margin-bottom: 0.24rem;
47
- display: flex;
48
- flex-direction: row;
49
- align-items: center;
50
- justify-content: center;
51
- }
52
- .m-carousel-mobile .slider-wrap .img-wrap .tags > div {
53
- margin-right: 0.16rem;
54
- }
55
- .m-carousel-mobile .slider-wrap .img-wrap .tags > div:last-child {
56
- margin-right: 0;
57
- }
58
- .m-carousel-mobile .swiper-ban {
59
- position: absolute;
60
- width: 100%;
61
- bottom: 0.12rem;
62
- display: flex;
63
- align-items: center;
64
- justify-content: center;
65
- }
66
- .m-carousel-mobile .swiper-ban .ban {
67
- font-size: 0.16rem;
68
- width: 1em;
69
- height: 1em;
70
- border-radius: 50%;
71
- background: #FFF;
72
- cursor: inherit;
73
- margin-right: 0.2rem;
74
- transition: all 0.5s;
75
- }
76
- .m-carousel-mobile .swiper-ban .ban:last-child {
77
- margin-right: 0;
78
- }
79
- .m-carousel-mobile .swiper-ban .ban.active {
80
- width: 2em;
81
- height: 1em;
82
- border-radius: 2rem;
83
- opacity: 1;
84
- }
4
+
5
+ .content {
6
+ display: flex;
7
+ margin: 0 auto;
8
+ }
9
+
10
+ .slider-wrap {
11
+ width: 100%;
12
+ margin: 0 auto;
13
+ line-height: 1;
14
+
15
+ .slick-list {
16
+ // margin-left: -11px;
17
+ // margin-right: -11px;
18
+ padding: 0;
19
+
20
+ &:hover {
21
+ padding-top: 100px;
22
+ margin-top: -100px;
23
+ padding-bottom: 100px;
24
+ margin-bottom: -100px;
25
+ }
26
+
27
+ .slick-track {
28
+ display: flex;
29
+ align-items: center;
30
+ gap: 12px;
31
+ }
32
+ }
33
+
34
+ .img-wrap {
35
+ .img {
36
+ width: fit-content;
37
+ height: fit-content;
38
+ display: block;
39
+ margin: 0 auto;
40
+ }
41
+
42
+ .title {
43
+ display: flex;
44
+ justify-content: center;
45
+ margin-top: 12px;
46
+ }
47
+
48
+ .text {
49
+ display: flex;
50
+ justify-content: center;
51
+ margin-top: 6px;
52
+ }
53
+
54
+ .tags {
55
+ margin-top: 8px;
56
+ margin-bottom: 12px;
57
+ display: flex;
58
+ flex-direction: row;
59
+ align-items: center;
60
+ justify-content: center;
61
+
62
+ >div {
63
+ margin-right: 8px;
64
+
65
+ &:last-child {
66
+ margin-right: 0;
67
+ }
68
+ }
69
+ }
70
+ }
71
+ }
72
+
73
+ .swiper-ban {
74
+ position: absolute;
75
+ width: 100%;
76
+ bottom: 6px;
77
+ display: flex;
78
+ align-items: center;
79
+ justify-content: center;
80
+
81
+ .ban {
82
+ font-size: 8px;
83
+ width: 1em;
84
+ height: 1em;
85
+ border-radius: 50%;
86
+ background: #FFF;
87
+ cursor: inherit;
88
+ margin-right: 10px;
89
+ transition: all .5s;
90
+
91
+ &:last-child {
92
+ margin-right: 0;
93
+ }
94
+
95
+ &.active {
96
+ width: 2em;
97
+ height: 1em;
98
+ border-radius: 100px;
99
+ opacity: 1;
100
+ }
101
+ }
102
+ }
103
+ }
@@ -1,15 +1,22 @@
1
- .m-image-gallery-mobile .content .line {
2
- margin-bottom: 0.24rem;
3
- }
4
- .m-image-gallery-mobile .content .line.isHorizontal {
5
- display: flex;
6
- justify-content: flex-start;
7
- }
8
- .m-image-gallery-mobile .content .line:last-child {
9
- margin-bottom: 0;
10
- }
11
- .m-image-gallery-mobile .content .line .img-wrap {
12
- display: flex;
13
- align-items: center;
14
- justify-content: center;
15
- }
1
+ .m-image-gallery-mobile {
2
+ .content {
3
+ .line {
4
+ margin-bottom: 12px;
5
+
6
+ &.isHorizontal {
7
+ display: flex;
8
+ justify-content: flex-start;
9
+ }
10
+
11
+ &:last-child {
12
+ margin-bottom: 0;
13
+ }
14
+
15
+ .img-wrap {
16
+ display: flex;
17
+ align-items: center;
18
+ justify-content: center;
19
+ }
20
+ }
21
+ }
22
+ }