@fonixtree/magic-design 1.0.109 → 1.0.112
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/es/assets/fonts/Montserrat-Bold.ttf +0 -0
- package/es/assets/fonts/Montserrat-Medium.ttf +0 -0
- package/es/assets/fonts/Montserrat-Regular.ttf +0 -0
- package/es/assets/fonts/Montserrat-SemiBold.ttf +0 -0
- package/es/assets/fonts/magic-box-iconfont.css +59 -7
- package/es/assets/fonts/magic-box-iconfont.js +1 -1
- package/es/assets/fonts/magic-box-iconfont.ttf +0 -0
- package/es/assets/fonts/magic-box-iconfont.woff +0 -0
- package/es/assets/fonts/magic-box-iconfont.woff2 +0 -0
- package/es/common/ErrorBoundary/index.js +90 -0
- package/es/common/index.js +8 -0
- package/es/composite-comp/common/components/ImageLabel/index.js +2 -2
- package/es/composite-comp/common/components/ImageLabel/index.less +16 -7
- package/es/composite-comp/common/components/ProductItem/index.js +18 -18
- package/es/composite-comp/common/components/ProductItem/index.less +9 -2
- package/es/composite-comp/common/config-panels/BackgroundConfig/index.js +65 -3
- package/es/composite-comp/dito/components/AffiliateRecommend/mobile/index.js +1 -1
- package/es/composite-comp/dito/components/AffiliateRecommend/mobile/index.less +15 -15
- package/es/composite-comp/dito/components/FlashDeal/mobile/index.less +9 -1
- package/es/composite-comp/dito/components/GroupBuy/mobile/index.js +8 -5
- package/es/composite-comp/dito/components/PersonalInformation/mobile/images/avatar.png +0 -0
- package/es/composite-comp/dito/components/PersonalInformation/mobile/index.js +5 -7
- package/es/composite-comp/dito/components/Recommend/defaultJSON.js +34 -1
- package/es/composite-comp/dito/components/Recommend/mobile/index.js +17 -1
- package/es/composite-comp/dito/components/Recommend/mobile/index.less +13 -1
- package/es/composite-comp/dito/components/SearchBanner/defaultJSON.js +158 -0
- package/es/composite-comp/dito/components/SearchBanner/imgs/defaultImg.png +0 -0
- package/es/composite-comp/dito/components/SearchBanner/imgs/pcDefImg1.png +0 -0
- package/es/composite-comp/dito/components/SearchBanner/index.js +108 -0
- package/es/composite-comp/dito/components/SearchBanner/mobile/index.js +294 -0
- package/es/composite-comp/dito/components/SearchBanner/mobile/index.less +108 -0
- package/es/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigContent/index.js +14 -1
- package/es/composite-comp/dito/config-panels/RecommendConfig/index.js +1 -0
- package/es/composite-comp/dito/config-panels/SearchBannerConfig/ConfigContent/index.js +192 -0
- package/es/composite-comp/dito/config-panels/SearchBannerConfig/ConfigContent/index.less +7 -0
- package/es/composite-comp/dito/config-panels/SearchBannerConfig/ConfigImageGroup/index.js +148 -0
- package/es/composite-comp/dito/config-panels/SearchBannerConfig/ConfigImageGroup/index.less +0 -0
- package/es/composite-comp/dito/config-panels/SearchBannerConfig/ConfigSetting/index.js +226 -0
- package/es/composite-comp/dito/config-panels/SearchBannerConfig/ConfigSetting/index.less +9 -0
- package/es/composite-comp/dito/config-panels/SearchBannerConfig/imgs/defaultImg.png +0 -0
- package/es/composite-comp/dito/config-panels/SearchBannerConfig/index.js +65 -0
- package/es/composite-comp/dito/second-config-panels/SearchBannerSecondConfig/index.js +98 -0
- package/es/constants/component-types.js +9 -3
- package/es/constants/index.js +4 -0
- package/es/core/Designer/ConfigPanel/index.js +1 -0
- package/es/core/Designer/index.js +2 -2
- package/es/decorator/compositeDecorator.js +27 -2
- package/es/locale/en/en.json +4 -0
- package/es/locale/es/es.json +4 -0
- package/es/locale/id/id.json +4 -0
- package/lib/assets/fonts/Montserrat-Bold.ttf +0 -0
- package/lib/assets/fonts/Montserrat-Medium.ttf +0 -0
- package/lib/assets/fonts/Montserrat-Regular.ttf +0 -0
- package/lib/assets/fonts/Montserrat-SemiBold.ttf +0 -0
- package/lib/assets/fonts/magic-box-iconfont.css +59 -7
- package/lib/assets/fonts/magic-box-iconfont.js +1 -1
- package/lib/assets/fonts/magic-box-iconfont.ttf +0 -0
- package/lib/assets/fonts/magic-box-iconfont.woff +0 -0
- package/lib/assets/fonts/magic-box-iconfont.woff2 +0 -0
- package/lib/common/ErrorBoundary/index.js +90 -0
- package/lib/common/index.js +8 -0
- package/lib/composite-comp/common/components/ImageLabel/index.js +2 -2
- package/lib/composite-comp/common/components/ImageLabel/index.less +16 -7
- package/lib/composite-comp/common/components/ProductItem/index.js +18 -18
- package/lib/composite-comp/common/components/ProductItem/index.less +9 -2
- package/lib/composite-comp/common/config-panels/BackgroundConfig/index.js +65 -3
- package/lib/composite-comp/dito/components/AffiliateRecommend/mobile/index.js +1 -1
- package/lib/composite-comp/dito/components/AffiliateRecommend/mobile/index.less +15 -15
- package/lib/composite-comp/dito/components/FlashDeal/mobile/index.less +9 -1
- package/lib/composite-comp/dito/components/GroupBuy/mobile/index.js +8 -5
- package/lib/composite-comp/dito/components/PersonalInformation/mobile/images/avatar.png +0 -0
- package/lib/composite-comp/dito/components/PersonalInformation/mobile/index.js +5 -7
- package/lib/composite-comp/dito/components/Recommend/defaultJSON.js +34 -1
- package/lib/composite-comp/dito/components/Recommend/mobile/index.js +17 -1
- package/lib/composite-comp/dito/components/Recommend/mobile/index.less +13 -1
- package/lib/composite-comp/dito/components/SearchBanner/defaultJSON.js +158 -0
- package/lib/composite-comp/dito/components/SearchBanner/imgs/defaultImg.png +0 -0
- package/lib/composite-comp/dito/components/SearchBanner/imgs/pcDefImg1.png +0 -0
- package/lib/composite-comp/dito/components/SearchBanner/index.js +108 -0
- package/lib/composite-comp/dito/components/SearchBanner/mobile/index.js +294 -0
- package/lib/composite-comp/dito/components/SearchBanner/mobile/index.less +108 -0
- package/lib/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigContent/index.js +14 -1
- package/lib/composite-comp/dito/config-panels/RecommendConfig/index.js +1 -0
- package/lib/composite-comp/dito/config-panels/SearchBannerConfig/ConfigContent/index.js +192 -0
- package/lib/composite-comp/dito/config-panels/SearchBannerConfig/ConfigContent/index.less +7 -0
- package/lib/composite-comp/dito/config-panels/SearchBannerConfig/ConfigImageGroup/index.js +148 -0
- package/lib/composite-comp/dito/config-panels/SearchBannerConfig/ConfigImageGroup/index.less +0 -0
- package/lib/composite-comp/dito/config-panels/SearchBannerConfig/ConfigSetting/index.js +226 -0
- package/lib/composite-comp/dito/config-panels/SearchBannerConfig/ConfigSetting/index.less +9 -0
- package/lib/composite-comp/dito/config-panels/SearchBannerConfig/imgs/defaultImg.png +0 -0
- package/lib/composite-comp/dito/config-panels/SearchBannerConfig/index.js +65 -0
- package/lib/composite-comp/dito/second-config-panels/SearchBannerSecondConfig/index.js +98 -0
- package/lib/constants/component-types.js +9 -3
- package/lib/constants/index.js +4 -0
- package/lib/core/Designer/ConfigPanel/index.js +1 -0
- package/lib/core/Designer/index.js +2 -2
- package/lib/decorator/compositeDecorator.js +27 -2
- package/lib/locale/en/en.json +4 -0
- package/lib/locale/es/es.json +4 -0
- package/lib/locale/id/id.json +4 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "magic-box-iconfont";
|
|
3
3
|
/* Project id 3317752 */
|
|
4
|
-
src: url('magic-box-iconfont.woff2?t=
|
|
5
|
-
url('magic-box-iconfont.woff?t=
|
|
6
|
-
url('magic-box-iconfont.ttf?t=
|
|
4
|
+
src: url('magic-box-iconfont.woff2?t=1732721916699') format('woff2'),
|
|
5
|
+
url('magic-box-iconfont.woff?t=1732721916699') format('woff'),
|
|
6
|
+
url('magic-box-iconfont.ttf?t=1732721916699') format('truetype');
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.magic-box-iconfont {
|
|
@@ -14,6 +14,62 @@
|
|
|
14
14
|
-moz-osx-font-smoothing: grayscale;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
+
.magic-box-icon-chatbot:before {
|
|
18
|
+
content: "\e657";
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.magic-box-icon-letter:before {
|
|
22
|
+
content: "\e656";
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.magic-box-icon-a-EssentionalUI:before {
|
|
26
|
+
content: "\ea9a";
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.magic-box-icon-chevron-right:before {
|
|
30
|
+
content: "\e654";
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.magic-box-icon-star-circle:before {
|
|
34
|
+
content: "\e653";
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.magic-box-icon-search-short:before {
|
|
38
|
+
content: "\e64d";
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.magic-box-icon-basket-logo:before {
|
|
42
|
+
content: "\ea91";
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.magic-box-icon-corner:before {
|
|
46
|
+
content: "\e651";
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.magic-box-icon-border-radius:before {
|
|
50
|
+
content: "\e652";
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.magic-box-icon-bike:before {
|
|
54
|
+
content: "\e650";
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.magic-box-icon-time:before {
|
|
58
|
+
content: "\e64f";
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.magic-box-icon-map-marker-star:before {
|
|
62
|
+
content: "\e64e";
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.magic-box-icon-star-check:before {
|
|
66
|
+
content: "\e64a";
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.magic-box-icon-share-points:before {
|
|
70
|
+
content: "\e64b";
|
|
71
|
+
}
|
|
72
|
+
|
|
17
73
|
.magic-box-icon-bargain:before {
|
|
18
74
|
content: "\e649";
|
|
19
75
|
}
|
|
@@ -150,10 +206,6 @@
|
|
|
150
206
|
content: "\e671";
|
|
151
207
|
}
|
|
152
208
|
|
|
153
|
-
.magic-box-icon-select2:before {
|
|
154
|
-
content: "\e67a";
|
|
155
|
-
}
|
|
156
|
-
|
|
157
209
|
.magic-box-icon-b-play-02:before {
|
|
158
210
|
content: "\e672";
|
|
159
211
|
}
|