@fonixtree/magic-design 0.0.10 → 0.0.13

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 (415) hide show
  1. package/_virtual/index5.js +1 -1
  2. package/my_node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +11 -0
  3. package/my_node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +5 -0
  4. package/my_node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +9 -0
  5. package/my_node_modules/@babel/runtime/helpers/esm/classCallCheck.js +7 -0
  6. package/my_node_modules/@babel/runtime/helpers/esm/createClass.js +20 -0
  7. package/my_node_modules/@babel/runtime/helpers/esm/createSuper.js +22 -0
  8. package/my_node_modules/@babel/runtime/helpers/esm/defineProperty.js +16 -0
  9. package/my_node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +8 -0
  10. package/my_node_modules/@babel/runtime/helpers/esm/inherits.js +21 -0
  11. package/my_node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +14 -0
  12. package/my_node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +31 -0
  13. package/my_node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +5 -0
  14. package/my_node_modules/@babel/runtime/helpers/esm/objectSpread2.js +29 -0
  15. package/my_node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +14 -0
  16. package/my_node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +9 -0
  17. package/my_node_modules/@babel/runtime/helpers/esm/slicedToArray.js +10 -0
  18. package/my_node_modules/@babel/runtime/helpers/esm/typeof.js +11 -0
  19. package/my_node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +12 -0
  20. package/my_node_modules/@babel/runtime/helpers/interopRequireDefault.js +11 -0
  21. package/my_node_modules/call-bind/callBound.js +19 -0
  22. package/my_node_modules/call-bind/index.js +52 -0
  23. package/my_node_modules/classnames/index.js +61 -0
  24. package/my_node_modules/function-bind/implementation.js +52 -0
  25. package/my_node_modules/function-bind/index.js +7 -0
  26. package/my_node_modules/get-intrinsic/index.js +338 -0
  27. package/my_node_modules/has/src/index.js +7 -0
  28. package/my_node_modules/has-symbols/index.js +15 -0
  29. package/my_node_modules/has-symbols/shams.js +42 -0
  30. package/my_node_modules/lodash/_DataView.js +12 -0
  31. package/my_node_modules/lodash/_Hash.js +40 -0
  32. package/my_node_modules/lodash/_ListCache.js +40 -0
  33. package/my_node_modules/lodash/_Map.js +12 -0
  34. package/my_node_modules/lodash/_MapCache.js +40 -0
  35. package/my_node_modules/lodash/_Promise.js +12 -0
  36. package/my_node_modules/lodash/_Set.js +12 -0
  37. package/my_node_modules/lodash/_SetCache.js +33 -0
  38. package/my_node_modules/lodash/_Stack.js +36 -0
  39. package/my_node_modules/lodash/_Symbol.js +10 -0
  40. package/my_node_modules/lodash/_Uint8Array.js +10 -0
  41. package/my_node_modules/lodash/_WeakMap.js +12 -0
  42. package/my_node_modules/lodash/_arrayEach.js +25 -0
  43. package/my_node_modules/lodash/_arrayFilter.js +28 -0
  44. package/my_node_modules/lodash/_arrayLikeKeys.js +59 -0
  45. package/my_node_modules/lodash/_arrayMap.js +24 -0
  46. package/my_node_modules/lodash/_arrayPush.js +23 -0
  47. package/my_node_modules/lodash/_arraySome.js +26 -0
  48. package/my_node_modules/lodash/_assignValue.js +33 -0
  49. package/my_node_modules/lodash/_assocIndexOf.js +25 -0
  50. package/my_node_modules/lodash/_baseAssign.js +22 -0
  51. package/my_node_modules/lodash/_baseAssignIn.js +22 -0
  52. package/my_node_modules/lodash/_baseAssignValue.js +29 -0
  53. package/my_node_modules/lodash/_baseClone.js +193 -0
  54. package/my_node_modules/lodash/_baseCreate.js +34 -0
  55. package/my_node_modules/lodash/_baseFindIndex.js +27 -0
  56. package/my_node_modules/lodash/_baseFor.js +20 -0
  57. package/my_node_modules/lodash/_baseForOwn.js +21 -0
  58. package/my_node_modules/lodash/_baseGet.js +29 -0
  59. package/my_node_modules/lodash/_baseGetAllKeys.js +25 -0
  60. package/my_node_modules/lodash/_baseGetTag.js +34 -0
  61. package/my_node_modules/lodash/_baseHasIn.js +16 -0
  62. package/my_node_modules/lodash/_baseIsArguments.js +23 -0
  63. package/my_node_modules/lodash/_baseIsEqual.js +33 -0
  64. package/my_node_modules/lodash/_baseIsEqualDeep.js +95 -0
  65. package/my_node_modules/lodash/_baseIsMap.js +23 -0
  66. package/my_node_modules/lodash/_baseIsMatch.js +67 -0
  67. package/my_node_modules/lodash/_baseIsNative.js +54 -0
  68. package/my_node_modules/lodash/_baseIsSet.js +23 -0
  69. package/my_node_modules/lodash/_baseIsTypedArray.js +66 -0
  70. package/my_node_modules/lodash/_baseIteratee.js +39 -0
  71. package/my_node_modules/lodash/_baseKeys.js +35 -0
  72. package/my_node_modules/lodash/_baseKeysIn.js +39 -0
  73. package/my_node_modules/lodash/_baseMatches.js +28 -0
  74. package/my_node_modules/lodash/_baseMatchesProperty.js +43 -0
  75. package/my_node_modules/lodash/_baseProperty.js +17 -0
  76. package/my_node_modules/lodash/_basePropertyDeep.js +20 -0
  77. package/my_node_modules/lodash/_baseTimes.js +23 -0
  78. package/my_node_modules/lodash/_baseToNumber.js +28 -0
  79. package/my_node_modules/lodash/_baseToString.js +44 -0
  80. package/my_node_modules/lodash/_baseTrim.js +23 -0
  81. package/my_node_modules/lodash/_baseUnary.js +17 -0
  82. package/my_node_modules/lodash/_cacheHas.js +16 -0
  83. package/my_node_modules/lodash/_castPath.js +28 -0
  84. package/my_node_modules/lodash/_cloneArrayBuffer.js +20 -0
  85. package/my_node_modules/lodash/_cloneBuffer.js +40 -0
  86. package/my_node_modules/lodash/_cloneDataView.js +20 -0
  87. package/my_node_modules/lodash/_cloneRegExp.js +20 -0
  88. package/my_node_modules/lodash/_cloneSymbol.js +22 -0
  89. package/my_node_modules/lodash/_cloneTypedArray.js +20 -0
  90. package/my_node_modules/lodash/_copyArray.js +23 -0
  91. package/my_node_modules/lodash/_copyObject.js +45 -0
  92. package/my_node_modules/lodash/_copySymbols.js +21 -0
  93. package/my_node_modules/lodash/_copySymbolsIn.js +21 -0
  94. package/my_node_modules/lodash/_coreJsData.js +10 -0
  95. package/my_node_modules/lodash/_createBaseFor.js +28 -0
  96. package/my_node_modules/lodash/_createMathOperation.js +43 -0
  97. package/my_node_modules/lodash/_defineProperty.js +15 -0
  98. package/my_node_modules/lodash/_equalArrays.js +90 -0
  99. package/my_node_modules/lodash/_equalByTag.js +121 -0
  100. package/my_node_modules/lodash/_equalObjects.js +94 -0
  101. package/my_node_modules/lodash/_freeGlobal.js +9 -0
  102. package/my_node_modules/lodash/_getAllKeys.js +22 -0
  103. package/my_node_modules/lodash/_getAllKeysIn.js +23 -0
  104. package/my_node_modules/lodash/_getMapData.js +22 -0
  105. package/my_node_modules/lodash/_getMatchData.js +29 -0
  106. package/my_node_modules/lodash/_getNative.js +22 -0
  107. package/my_node_modules/lodash/_getPrototype.js +10 -0
  108. package/my_node_modules/lodash/_getRawTag.js +50 -0
  109. package/my_node_modules/lodash/_getSymbols.js +35 -0
  110. package/my_node_modules/lodash/_getSymbolsIn.js +32 -0
  111. package/my_node_modules/lodash/_getTag.js +68 -0
  112. package/my_node_modules/lodash/_getValue.js +16 -0
  113. package/my_node_modules/lodash/_hasPath.js +48 -0
  114. package/my_node_modules/lodash/_hashClear.js +19 -0
  115. package/my_node_modules/lodash/_hashDelete.js +20 -0
  116. package/my_node_modules/lodash/_hashGet.js +34 -0
  117. package/my_node_modules/lodash/_hashHas.js +27 -0
  118. package/my_node_modules/lodash/_hashSet.js +27 -0
  119. package/my_node_modules/lodash/_initCloneArray.js +29 -0
  120. package/my_node_modules/lodash/_initCloneByTag.js +85 -0
  121. package/my_node_modules/lodash/_initCloneObject.js +24 -0
  122. package/my_node_modules/lodash/_isIndex.js +28 -0
  123. package/my_node_modules/lodash/_isKey.js +34 -0
  124. package/my_node_modules/lodash/_isKeyable.js +18 -0
  125. package/my_node_modules/lodash/_isMasked.js +24 -0
  126. package/my_node_modules/lodash/_isPrototype.js +21 -0
  127. package/my_node_modules/lodash/_isStrictComparable.js +19 -0
  128. package/my_node_modules/lodash/_listCacheClear.js +16 -0
  129. package/my_node_modules/lodash/_listCacheDelete.js +39 -0
  130. package/my_node_modules/lodash/_listCacheGet.js +23 -0
  131. package/my_node_modules/lodash/_listCacheHas.js +20 -0
  132. package/my_node_modules/lodash/_listCacheSet.js +30 -0
  133. package/my_node_modules/lodash/_mapCacheClear.js +27 -0
  134. package/my_node_modules/lodash/_mapCacheDelete.js +22 -0
  135. package/my_node_modules/lodash/_mapCacheGet.js +20 -0
  136. package/my_node_modules/lodash/_mapCacheHas.js +20 -0
  137. package/my_node_modules/lodash/_mapCacheSet.js +26 -0
  138. package/my_node_modules/lodash/_mapToArray.js +21 -0
  139. package/my_node_modules/lodash/_matchesStrictComparable.js +23 -0
  140. package/my_node_modules/lodash/_memoizeCapped.js +30 -0
  141. package/my_node_modules/lodash/_nativeCreate.js +10 -0
  142. package/my_node_modules/lodash/_nativeKeys.js +10 -0
  143. package/my_node_modules/lodash/_nativeKeysIn.js +23 -0
  144. package/my_node_modules/lodash/_nodeUtil.js +35 -0
  145. package/my_node_modules/lodash/_objectToString.js +25 -0
  146. package/my_node_modules/lodash/_overArg.js +18 -0
  147. package/my_node_modules/lodash/_root.js +13 -0
  148. package/my_node_modules/lodash/_setCacheAdd.js +22 -0
  149. package/my_node_modules/lodash/_setCacheHas.js +17 -0
  150. package/my_node_modules/lodash/_setToArray.js +21 -0
  151. package/my_node_modules/lodash/_stackClear.js +19 -0
  152. package/my_node_modules/lodash/_stackDelete.js +21 -0
  153. package/my_node_modules/lodash/_stackGet.js +17 -0
  154. package/my_node_modules/lodash/_stackHas.js +17 -0
  155. package/my_node_modules/lodash/_stackSet.js +40 -0
  156. package/my_node_modules/lodash/_stringToPath.js +31 -0
  157. package/my_node_modules/lodash/_toKey.js +25 -0
  158. package/my_node_modules/lodash/_toSource.js +29 -0
  159. package/my_node_modules/lodash/_trimmedEndIndex.js +22 -0
  160. package/my_node_modules/lodash/cloneDeep.js +33 -0
  161. package/my_node_modules/lodash/divide.js +26 -0
  162. package/my_node_modules/lodash/eq.js +40 -0
  163. package/my_node_modules/lodash/findIndex.js +61 -0
  164. package/my_node_modules/lodash/get.js +37 -0
  165. package/my_node_modules/lodash/hasIn.js +39 -0
  166. package/my_node_modules/lodash/identity.js +24 -0
  167. package/my_node_modules/lodash/isArguments.js +41 -0
  168. package/my_node_modules/lodash/isArray.js +29 -0
  169. package/my_node_modules/lodash/isArrayLike.js +38 -0
  170. package/my_node_modules/lodash/isBuffer.js +44 -0
  171. package/my_node_modules/lodash/isEmpty.js +89 -0
  172. package/my_node_modules/lodash/isFunction.js +42 -0
  173. package/my_node_modules/lodash/isLength.js +38 -0
  174. package/my_node_modules/lodash/isMap.js +34 -0
  175. package/my_node_modules/lodash/isObject.js +34 -0
  176. package/my_node_modules/lodash/isObjectLike.js +32 -0
  177. package/my_node_modules/lodash/isSet.js +34 -0
  178. package/my_node_modules/lodash/isSymbol.js +34 -0
  179. package/my_node_modules/lodash/isTypedArray.js +34 -0
  180. package/my_node_modules/lodash/keys.js +43 -0
  181. package/my_node_modules/lodash/keysIn.js +38 -0
  182. package/my_node_modules/lodash/mapKeys.js +42 -0
  183. package/my_node_modules/lodash/memoize.js +77 -0
  184. package/my_node_modules/lodash/property.js +39 -0
  185. package/my_node_modules/lodash/stubArray.js +26 -0
  186. package/my_node_modules/lodash/stubFalse.js +21 -0
  187. package/my_node_modules/lodash/toFinite.js +46 -0
  188. package/my_node_modules/lodash/toInteger.js +40 -0
  189. package/my_node_modules/lodash/toNumber.js +70 -0
  190. package/my_node_modules/lodash/toString.js +32 -0
  191. package/my_node_modules/object-assign/index.js +99 -0
  192. package/my_node_modules/object-inspect/index.js +516 -0
  193. package/my_node_modules/prop-types/checkPropTypes.js +115 -0
  194. package/my_node_modules/prop-types/factoryWithThrowingShims.js +74 -0
  195. package/my_node_modules/prop-types/factoryWithTypeCheckers.js +625 -0
  196. package/my_node_modules/prop-types/index.js +27 -0
  197. package/my_node_modules/prop-types/lib/ReactPropTypesSecret.js +21 -0
  198. package/my_node_modules/prop-types/lib/has.js +11 -0
  199. package/my_node_modules/qs/lib/formats.js +23 -0
  200. package/my_node_modules/qs/lib/index.js +15 -0
  201. package/my_node_modules/qs/lib/parse.js +265 -0
  202. package/my_node_modules/qs/lib/stringify.js +330 -0
  203. package/my_node_modules/qs/lib/utils.js +254 -0
  204. package/my_node_modules/rc-motion/es/CSSMotion.js +149 -0
  205. package/my_node_modules/rc-motion/es/DomWrapper.js +28 -0
  206. package/my_node_modules/rc-motion/es/hooks/useDomMotionEvents.js +45 -0
  207. package/my_node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.js +6 -0
  208. package/my_node_modules/rc-motion/es/hooks/useNextFrame.js +36 -0
  209. package/my_node_modules/rc-motion/es/hooks/useStatus.js +232 -0
  210. package/my_node_modules/rc-motion/es/hooks/useStepQueue.js +69 -0
  211. package/my_node_modules/rc-motion/es/index.js +4 -0
  212. package/my_node_modules/rc-motion/es/interface.js +11 -0
  213. package/my_node_modules/rc-motion/es/util/motion.js +85 -0
  214. package/my_node_modules/rc-util/es/Dom/canUseDom.js +5 -0
  215. package/my_node_modules/rc-util/es/Dom/findDOMNode.js +15 -0
  216. package/my_node_modules/rc-util/es/hooks/useState.js +36 -0
  217. package/my_node_modules/rc-util/es/raf.js +57 -0
  218. package/my_node_modules/rc-util/es/ref.js +30 -0
  219. package/my_node_modules/rc-util/lib/Children/toArray.js +39 -0
  220. package/my_node_modules/react-is/cjs/react-is.development.js +190 -0
  221. package/my_node_modules/react-is/cjs/react-is.production.min.js +26 -0
  222. package/my_node_modules/react-is/index.js +21 -0
  223. package/my_node_modules/shallowequal/index.js +48 -0
  224. package/my_node_modules/side-channel/index.js +128 -0
  225. package/my_node_modules/slick-carousel/slick/slick-theme.css.js +4 -0
  226. package/my_node_modules/slick-carousel/slick/slick.css.js +4 -0
  227. package/my_node_modules/style-inject/dist/style-inject.es.js +28 -0
  228. package/my_node_modules/tslib/tslib.es6.js +110 -0
  229. package/my_node_modules/uuid/index.js +13 -0
  230. package/my_node_modules/uuid/lib/bytesToUuid.js +29 -0
  231. package/my_node_modules/uuid/lib/rng-browser.js +39 -0
  232. package/my_node_modules/uuid/v1.js +115 -0
  233. package/my_node_modules/uuid/v4.js +35 -0
  234. package/package.json +3 -1
  235. package/src/components/assets/less/cylon-antd.less.js +1 -1
  236. package/src/components/assets/less/index.less.js +1 -1
  237. package/src/components/common/AlignSelector/index.js +2 -2
  238. package/src/components/common/AlignSelector/index.less.js +1 -1
  239. package/src/components/common/Button/index.js +2 -2
  240. package/src/components/common/Button/index.less.js +1 -1
  241. package/src/components/common/ButtonIconLayout/index.js +2 -2
  242. package/src/components/common/ButtonIconLayout/index.less.js +1 -1
  243. package/src/components/common/Collapse/index.js +1 -1
  244. package/src/components/common/Collapse/index.less.js +1 -1
  245. package/src/components/common/ColorPicker/index.js +1 -1
  246. package/src/components/common/ColorPicker/index.less.js +1 -1
  247. package/src/components/common/ColorPickerInput/index.js +2 -2
  248. package/src/components/common/ColorPickerInput/index.less.js +1 -1
  249. package/src/components/common/CountDown/index.js +1 -1
  250. package/src/components/common/CountDown/index.less.js +1 -1
  251. package/src/components/common/Field/index.js +2 -2
  252. package/src/components/common/Field/index.less.js +1 -1
  253. package/src/components/common/FontStyles/index.js +2 -2
  254. package/src/components/common/FontStyles/index.less.js +1 -1
  255. package/src/components/common/GroupList/index.js +1 -1
  256. package/src/components/common/GroupList/index.less.js +1 -1
  257. package/src/components/common/IconPicker/index.js +2 -2
  258. package/src/components/common/IconPicker/index.less.js +1 -1
  259. package/src/components/common/Iconfont/index.js +2 -2
  260. package/src/components/common/Iconfont/index.less.js +1 -1
  261. package/src/components/common/ImageModal/CommonSelPicCard/index.less.js +1 -1
  262. package/src/components/common/ImageModal/index.js +3 -3
  263. package/src/components/common/ImageModal/index.less.js +1 -1
  264. package/src/components/common/ImagePicker/index.js +1 -1
  265. package/src/components/common/ImagePicker/index.less.js +1 -1
  266. package/src/components/common/InputNumber/index.js +1 -1
  267. package/src/components/common/InputNumber/index.less.js +1 -1
  268. package/src/components/common/LayoutSelector/index.js +2 -2
  269. package/src/components/common/LayoutSelector/index.less.js +1 -1
  270. package/src/components/common/LinkModal/CatgTable/index.js +1 -1
  271. package/src/components/common/LinkModal/CouponTable/index.js +1 -1
  272. package/src/components/common/LinkModal/CustomTable/index.js +1 -1
  273. package/src/components/common/LinkModal/FilteredProductModal/index.js +1 -1
  274. package/src/components/common/LinkModal/FilteredProductModal/index.less.js +1 -1
  275. package/src/components/common/LinkModal/FunctionTable/index.js +1 -1
  276. package/src/components/common/LinkModal/ProductDetailPage/index.js +1 -1
  277. package/src/components/common/LinkModal/ProductDetailPage/index.less.js +1 -1
  278. package/src/components/common/LinkModal/index.less.js +1 -1
  279. package/src/components/common/NewImg/index.js +3 -3
  280. package/src/components/common/ProductModal/index.js +1 -1
  281. package/src/components/common/ProductModal/index.less.js +1 -1
  282. package/src/components/common/ProductSource/index.js +1 -1
  283. package/src/components/common/ProductSource/index.less.js +1 -1
  284. package/src/components/common/RcCollapse/Collapse.js +4 -4
  285. package/src/components/common/RcCollapse/Panel.js +5 -5
  286. package/src/components/common/RcCollapse/PanelContent.js +1 -1
  287. package/src/components/common/RcCollapse/index.less.js +1 -1
  288. package/src/components/common/Slider/index.js +2 -2
  289. package/src/components/common/Slider/index.less.js +1 -1
  290. package/src/components/common/SwitchCollapse/index.js +1 -1
  291. package/src/components/common/SwitchCollapse/index.less.js +1 -1
  292. package/src/components/common/UrlPicker/index.js +1 -1
  293. package/src/components/common/UrlPicker/index.less.js +1 -1
  294. package/src/components/composite-comp/bol/components/Banner/defaultJSON.js +1 -1
  295. package/src/components/composite-comp/bol/components/Banner/index.js +3 -3
  296. package/src/components/composite-comp/bol/components/Banner/mobile/index.js +2 -2
  297. package/src/components/composite-comp/bol/components/Banner/mobile/index.less.js +1 -1
  298. package/src/components/composite-comp/bol/components/Banner/pc/index.js +4 -4
  299. package/src/components/composite-comp/bol/components/Banner/pc/index.less.js +1 -1
  300. package/src/components/composite-comp/bol/components/Button/defaultJSON.js +2 -2
  301. package/src/components/composite-comp/bol/components/Button/index.js +2 -2
  302. package/src/components/composite-comp/bol/components/Button/index.less.js +1 -1
  303. package/src/components/composite-comp/bol/components/Carousel/defaultJSON.js +3 -2
  304. package/src/components/composite-comp/bol/components/Carousel/index.js +1 -1
  305. package/src/components/composite-comp/bol/components/Carousel/mobile/index.js +4 -4
  306. package/src/components/composite-comp/bol/components/Carousel/mobile/index.less.js +1 -1
  307. package/src/components/composite-comp/bol/components/Carousel/pc/index.js +4 -4
  308. package/src/components/composite-comp/bol/components/Carousel/pc/index.less.js +1 -1
  309. package/src/components/composite-comp/bol/components/Divider/defaultJSON.js +1 -1
  310. package/src/components/composite-comp/bol/components/Divider/index.js +1 -1
  311. package/src/components/composite-comp/bol/components/ImageGallery/defaultJSON.js +1 -1
  312. package/src/components/composite-comp/bol/components/ImageGallery/index.js +1 -1
  313. package/src/components/composite-comp/bol/components/ImageGallery/mobile/index.js +1 -1
  314. package/src/components/composite-comp/bol/components/ImageGallery/mobile/index.less.js +1 -1
  315. package/src/components/composite-comp/bol/components/ImageText/defaultJSON.js +7 -2
  316. package/src/components/composite-comp/bol/components/ImageText/index.js +1 -1
  317. package/src/components/composite-comp/bol/components/ImageText/mobile/index.js +5 -3
  318. package/src/components/composite-comp/bol/components/ImageText/mobile/index.less.js +1 -1
  319. package/src/components/composite-comp/bol/components/ImageText/pc/index.js +21 -7
  320. package/src/components/composite-comp/bol/components/ImageText/pc/index.less.js +1 -1
  321. package/src/components/composite-comp/bol/components/Newsletter/defaultJSON.js +2 -2
  322. package/src/components/composite-comp/bol/components/Newsletter/index.js +2 -2
  323. package/src/components/composite-comp/bol/components/Newsletter/index.less.js +1 -1
  324. package/src/components/composite-comp/bol/components/Tag/defaultJSON.js +2 -2
  325. package/src/components/composite-comp/bol/components/Tag/index.js +2 -2
  326. package/src/components/composite-comp/bol/components/Tag/index.less.js +1 -1
  327. package/src/components/composite-comp/bol/components/Text/defaultJSON.js +2 -2
  328. package/src/components/composite-comp/bol/components/Text/index.js +2 -2
  329. package/src/components/composite-comp/bol/components/Text/index.less.js +1 -1
  330. package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.js +1 -1
  331. package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.less.js +1 -1
  332. package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.js +3 -3
  333. package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.less.js +1 -1
  334. package/src/components/composite-comp/bol/config-panels/ButtonCompConfig/ButtonConfigContent/index.js +3 -3
  335. package/src/components/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigImageGroup/index.js +1 -1
  336. package/src/components/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.js +3 -3
  337. package/src/components/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.less.js +1 -1
  338. package/src/components/composite-comp/bol/config-panels/DividerConfig/DividerContentSetting/index.js +3 -3
  339. package/src/components/composite-comp/bol/config-panels/DividerConfig/DividerSpacingSetting/index.js +3 -3
  340. package/src/components/composite-comp/bol/config-panels/ImageGalleryConfig/ImageGalleryConfigImageGroup/index.js +1 -1
  341. package/src/components/composite-comp/bol/config-panels/ImageTextConfig/ImageTextConfigGroup/index.js +1 -1
  342. package/src/components/composite-comp/bol/config-panels/ImageTextConfig/index.js +3 -3
  343. package/src/components/composite-comp/bol/config-panels/NewsletterConfig/InputField/index.js +3 -3
  344. package/src/components/composite-comp/bol/config-panels/NewsletterConfig/NewsletterContentSetting/index.js +3 -3
  345. package/src/components/composite-comp/bol/config-panels/TagCompConfig/TagConfigContent/index.js +3 -3
  346. package/src/components/composite-comp/bol/config-panels/TextCompConfig/TextConfigContent/index.js +3 -3
  347. package/src/components/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.js +1 -1
  348. package/src/components/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.less.js +1 -1
  349. package/src/components/composite-comp/bol/second-config-panels/BannerSecondConfig/index.js +3 -3
  350. package/src/components/composite-comp/bol/second-config-panels/CarouselSecondConfig/index.js +1 -1
  351. package/src/components/composite-comp/bol/second-config-panels/ImageTextSecondConfig/index.js +6 -4
  352. package/src/components/composite-comp/bol/second-config-panels/TextSecondConfig/TextContentConfigContent/index.js +3 -3
  353. package/src/components/composite-comp/bol/second-config-panels/TextSecondConfig/index.js +3 -3
  354. package/src/components/composite-comp/common/components/ImageLabel/index.js +2 -2
  355. package/src/components/composite-comp/common/components/ImageLabel/index.less.js +1 -1
  356. package/src/components/composite-comp/common/components/ProductItem/index.js +1 -1
  357. package/src/components/composite-comp/common/components/ProductItem/index.less.js +1 -1
  358. package/src/components/composite-comp/common/config-panels/BackgroundConfig/index.js +3 -3
  359. package/src/components/composite-comp/common/config-panels/CustomizeConfig/index.js +3 -3
  360. package/src/components/composite-comp/common/config-panels/CustomizeConfig/index.less.js +1 -1
  361. package/src/components/composite-comp/common/config-panels/SpacingConfig/index.js +3 -3
  362. package/src/components/composite-comp/common/config-panels/SpacingConfig/index.less.js +1 -1
  363. package/src/components/composite-comp/dito/components/FlashDeal/defaultJSON.js +1 -1
  364. package/src/components/composite-comp/dito/components/FlashDeal/index.js +1 -1
  365. package/src/components/composite-comp/dito/components/FlashDeal/mobile/index.js +1 -1
  366. package/src/components/composite-comp/dito/components/FlashDeal/mobile/index.less.js +1 -1
  367. package/src/components/composite-comp/dito/components/Recommend/defaultJSON.js +1 -1
  368. package/src/components/composite-comp/dito/components/Recommend/index.js +1 -1
  369. package/src/components/composite-comp/dito/components/Recommend/mobile/index.js +1 -1
  370. package/src/components/composite-comp/dito/components/Recommend/mobile/index.less.js +1 -1
  371. package/src/components/composite-comp/dito/components/SearchBar/defaultJSON.js +1 -1
  372. package/src/components/composite-comp/dito/components/SearchBar/index.js +1 -1
  373. package/src/components/composite-comp/dito/components/SearchBar/mobile/index.js +3 -3
  374. package/src/components/composite-comp/dito/components/SearchBar/mobile/index.less.js +1 -1
  375. package/src/components/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigContent/index.js +3 -3
  376. package/src/components/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigTitle/index.js +3 -3
  377. package/src/components/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigContent/index.js +3 -3
  378. package/src/components/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.js +1 -1
  379. package/src/components/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.less.js +1 -1
  380. package/src/components/composite-comp/dito/config-panels/SearchBarConfig/index.js +3 -3
  381. package/src/components/composite-comp/dito/second-config-panels/RecommendSecondConfig/index.js +1 -1
  382. package/src/components/core/Designer/CompListPanel/CompCard/index.less.js +1 -1
  383. package/src/components/core/Designer/CompListPanel/index.js +2 -2
  384. package/src/components/core/Designer/CompListPanel/index.less.js +1 -1
  385. package/src/components/core/Designer/ConfigPanel/index.js +1 -1
  386. package/src/components/core/Designer/ConfigPanel/index.less.js +1 -1
  387. package/src/components/core/Designer/History/index.js +1 -1
  388. package/src/components/core/Designer/PageCompList/index.js +4 -4
  389. package/src/components/core/Designer/PageCompList/index.less.js +1 -1
  390. package/src/components/core/Designer/QuickMenuBar/index.js +2 -2
  391. package/src/components/core/Designer/QuickMenuBar/index.less.js +1 -1
  392. package/src/components/core/Designer/ViewArea/index.js +3 -3
  393. package/src/components/core/Designer/ViewArea/index.less.js +1 -1
  394. package/src/components/core/Designer/index.js +2 -2
  395. package/src/components/core/Designer/index.less.js +1 -1
  396. package/src/components/core/Renderer/index.js +1 -1
  397. package/src/components/decorator/compositeDecorator.js +1 -1
  398. package/src/components/decorator/metaDecorator.js +1 -1
  399. package/src/components/meta-comp/components/Button/index.js +2 -2
  400. package/src/components/meta-comp/components/Button/index.less.js +1 -1
  401. package/src/components/meta-comp/components/Image/index.js +16 -4
  402. package/src/components/meta-comp/components/Image/index.less.js +1 -1
  403. package/src/components/meta-comp/components/Text/index.js +2 -2
  404. package/src/components/meta-comp/components/Text/index.less.js +1 -1
  405. package/src/components/meta-comp/config-panels/BaseConfig.js +1 -1
  406. package/src/components/meta-comp/config-panels/ButtonConfig/index.js +3 -3
  407. package/src/components/meta-comp/config-panels/ButtonConfig/index.less.js +1 -1
  408. package/src/components/meta-comp/config-panels/ImageConfig/index.js +72 -27
  409. package/src/components/meta-comp/config-panels/ImageConfig/index.less.js +1 -1
  410. package/src/components/meta-comp/config-panels/TextConfig/index.js +3 -3
  411. package/src/components/meta-comp/config-panels/TextConfig/index.less.js +1 -1
  412. package/src/components/utils/commonUtil.js +19 -2
  413. package/src/components/utils/coreUtil.js +1 -1
  414. package/src/components/utils/currencyUtil.js +2 -2
  415. package/src/components/utils/dataTreeUtils.js +4 -4
@@ -1,4 +1,4 @@
1
- import { __extends } from '../../../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default from 'react';
3
3
  import { Select } from 'antd';
4
4
  import '../../../../common/LayoutSelector/index.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_compCard__2SdI2 {\n position: relative;\n padding: 24px;\n background: #F5F6F7;\n border-radius: 8px;\n margin-bottom: 10px;\n}\n.index_compCard__2SdI2:hover {\n background: #E9F0FF;\n}\n.index_compCard__2SdI2:hover .index_comp-info__47BtN .index_hover-icon__RQLYA {\n display: block;\n}\n.index_compCard__2SdI2.index_cardActive__yD-E3 {\n background: #E9F0FF;\n}\n.index_compCard__2SdI2 .index_comp-info__47BtN {\n height: 16px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.index_compCard__2SdI2 .index_comp-info__47BtN .index_comp-name__KOk5M {\n margin-left: 16px;\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 16px;\n line-height: 24px;\n color: #232F46;\n}\n.index_compCard__2SdI2 .index_comp-info__47BtN .index_hover-icon__RQLYA {\n display: none;\n cursor: pointer;\n}\n.index_compCard__2SdI2 .index_comp-layout-panel__QGzIO {\n max-height: 0;\n transition: all 0.4s ease;\n opacity: 0;\n}\n.index_compCard__2SdI2 .index_comp-layout-panel__QGzIO .index_layout_wrap__M6WrZ {\n display: flex;\n}\n.index_compCard__2SdI2 .index_comp-layout-panel__QGzIO .index_layout_wrap__M6WrZ .index_icon_wrap__fnJ3z {\n background: #FFFFFF;\n border: 2px solid #FFFFFF;\n box-sizing: border-box;\n border-radius: 6px;\n height: 57px;\n width: 78px;\n}\n.index_compCard__2SdI2 .index_comp-layout-panel__QGzIO .index_layout_wrap__M6WrZ .index_icon_wrap__fnJ3z:nth-child(3n +2) {\n margin-left: 12px;\n margin-right: 12px;\n}\n.index_compCard__2SdI2 .index_comp-layout-panel__QGzIO .index_layout_wrap__M6WrZ .index_layout_actice__Eidhf {\n border-color: #597EF7;\n}\n.index_compCard__2SdI2 .index_comp-layout-panel__QGzIO .index_btn_wrap__7lJ-e {\n display: flex;\n}\n.index_compCard__2SdI2 .index_panel-visible__0rb3o {\n max-height: 200px;\n opacity: 1;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,6 +1,6 @@
1
1
  import { extends as _extends } from '../../../../../_virtual/_rollupPluginBabelHelpers.js';
2
- import { __extends } from '../../../../../node_modules/tslib/tslib.es6.js';
3
- import classNames from '../../../../../node_modules/classnames/index.js';
2
+ import { __extends } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
3
+ import classNames from '../../../../../my_my_node_modules/classnames/index.js';
4
4
  import React__default, { Component } from 'react';
5
5
  import CompCard from './CompCard/index.js';
6
6
  import Button from '../../../common/Button/index.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_list_panel__Ik0VD {\n position: fixed;\n left: -354px;\n top: 0;\n bottom: 0;\n width: 354px;\n background: #FFFFFF;\n box-shadow: inset -1px 0px 0px #EDF0F4;\n transition: all 0.3s ease;\n z-index: 200;\n}\n.index_list_panel__Ik0VD .index_header__cvSCP {\n height: 80px;\n display: flex;\n padding: 16px 24px;\n}\n.index_list_panel__Ik0VD .index_title__bRU59 {\n padding: 12px 24px;\n font-family: 'OpenSans-Bold';\n font-size: 26px;\n line-height: 32px;\n color: #232F46;\n}\n.index_list_panel__Ik0VD .index_component-list__08Lqm {\n height: calc(100vh - 136px);\n overflow-y: auto;\n padding: 0 24px;\n}\n.index_list_panel__Ik0VD .index_component-list__08Lqm::-webkit-scrollbar {\n width: 8px;\n}\n.index_list_panel__Ik0VD .index_component-list__08Lqm::-webkit-scrollbar-thumb {\n background-color: #C1C9D7;\n background-clip: padding-box;\n border-radius: 100px;\n}\n.index_list_panel__Ik0VD .index_component-list__08Lqm .index_cat-list__C15zF {\n padding-bottom: 24px;\n}\n.index_list_panel__Ik0VD .index_component-list__08Lqm .index_cat-list__C15zF .index_cat-name__iMsCL {\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 16px;\n line-height: 24px;\n color: #8493AF;\n}\n@keyframes index_onListOpen__saD1n {\n from {\n left: -354px;\n }\n to {\n left: 0px;\n }\n}\n@keyframes index_onListClose__MhlFI {\n from {\n left: 0px;\n }\n to {\n left: -354px;\n }\n}\n";
4
4
  styleInject(css_248z);
@@ -1,4 +1,4 @@
1
- import { __extends } from '../../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default, { Component } from 'react';
3
3
  import { isPc } from '../../../utils/coreUtil.js';
4
4
  import { ensure } from '../../../utils/commonUtil.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_config_wrap__ZFRcU {\n width: 354px;\n background: #ffffff;\n height: 100vh;\n overflow: scroll;\n transition-property: transform;\n transition-duration: 0.3s;\n transition-timing-function: ease;\n left: -354px;\n z-index: 200;\n position: absolute;\n flex-shrink: 0;\n}\n.index_config_wrap__ZFRcU.index_show_config__vn9GX {\n position: fixed;\n transform: translateX(354px);\n}\n.index_config_wrap__ZFRcU .index_first_config_wrap__bNQvD {\n height: 100%;\n padding: 24px;\n}\n.index_config_wrap__ZFRcU .index_first_config_wrap__bNQvD .index_config_header__t6JNr {\n font-size: 26px;\n line-height: 36px;\n display: flex;\n justify-content: space-between;\n margin-bottom: 10px;\n}\n.index_config_wrap__ZFRcU .index_first_config_wrap__bNQvD .index_config_header__t6JNr .index_title__kHwtD {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 700;\n font-size: 26px;\n line-height: 32px;\n color: #232F46;\n}\n.index_config_wrap__ZFRcU .index_sec_config_wrap__Jb4MT {\n position: absolute;\n width: 354px;\n left: -354px;\n bottom: 0;\n top: 0;\n background-color: #FFF;\n padding: 24px;\n}\n.index_config_wrap__ZFRcU .index_sec_config_wrap__Jb4MT .index_config_header__t6JNr .index_button_wrap__6Lv2T {\n display: flex;\n}\n.index_config_wrap__ZFRcU .index_sec_config_wrap__Jb4MT .index_config_header__t6JNr .index_title__kHwtD {\n margin-top: 20px;\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 700;\n font-size: 26px;\n line-height: 32px;\n color: #232F46;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n@keyframes index_openPcConfig__7z4O4 {\n from {\n left: -354px;\n }\n to {\n left: 0px;\n }\n}\n@keyframes index_closePcConfig__-h55I {\n from {\n left: 0px;\n }\n to {\n left: -354px;\n }\n}\n@keyframes index_openMobileConfig__amVYY {\n from {\n left: 0px;\n z-index: 50;\n }\n to {\n left: 355px;\n z-index: 50;\n }\n}\n@keyframes index_closeMobileConfig__FMac7 {\n from {\n left: 355px;\n z-index: 50;\n }\n to {\n left: 0px;\n z-index: 50;\n }\n}\n@keyframes index_openSecConfig__vl7hj {\n from {\n left: -354px;\n }\n to {\n left: 0px;\n }\n}\n@keyframes index_closeSecConfig__W2NxA {\n from {\n left: 0px;\n }\n to {\n left: -354px;\n }\n}\n";
4
4
  styleInject(css_248z);
@@ -1,4 +1,4 @@
1
- import cloneDeep_1 from '../../../../../node_modules/lodash/cloneDeep.js';
1
+ import cloneDeep_1 from '../../../../../my_my_node_modules/lodash/cloneDeep.js';
2
2
 
3
3
  /**
4
4
  * 历史队列,使用数组存放
@@ -1,6 +1,6 @@
1
- import { __spreadArray } from '../../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __spreadArray } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import { Menu, Dropdown } from 'antd';
3
- import classNames from '../../../../../node_modules/classnames/index.js';
3
+ import classNames from '../../../../../my_my_node_modules/classnames/index.js';
4
4
  import update from 'immutability-helper';
5
5
  import React__default, { useState, useRef, useEffect, useCallback } from 'react';
6
6
  import '../../../common/LayoutSelector/index.js';
@@ -18,8 +18,8 @@ import '../../../common/Slider/index.js';
18
18
  import '../../../common/FontStyles/index.js';
19
19
  import '../../../common/ButtonIconLayout/index.js';
20
20
  import 'axios';
21
- import '../../../../../node_modules/qs/lib/stringify.js';
22
- import '../../../../../node_modules/qs/lib/utils.js';
21
+ import '../../../../../my_my_node_modules/qs/lib/stringify.js';
22
+ import '../../../../../my_my_node_modules/qs/lib/utils.js';
23
23
  import '../../../common/ProductModal/index.js';
24
24
  import '../../../common/ProductSource/index.less.js';
25
25
  import { copyNode } from '../../../utils/coreUtil.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_page-comp-wrap__hAT7M {\n z-index: 100;\n background-color: #FFF;\n width: 354px;\n flex-shrink: 0;\n}\n.index_page-comp-wrap__hAT7M .index_page-comp-head__rt3Bk {\n height: 81px;\n box-shadow: inset 0px -1px 0px #EDF0F4;\n}\n.index_page-comp-wrap__hAT7M .index_page-comp-list__msp13 {\n padding: 24px;\n}\n.index_page-comp-wrap__hAT7M .index_page-comp-list__msp13 .index_title__1DebN {\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 700;\n font-size: 26px;\n line-height: 36px;\n color: #232F46;\n}\n.index_page-comp-wrap__hAT7M .index_page-comp-list__msp13 .index_list__hxWna .index_inner-list__G1GvV {\n margin-right: -21px;\n overflow-y: auto;\n width: 100%;\n padding: 8px 0px 8px 0;\n height: calc(100vh - 260px);\n background: #F5F6F7;\n border-radius: 8px;\n}\n.index_page-comp-wrap__hAT7M .index_page-comp-list__msp13 .index_list__hxWna .index_inner-list__G1GvV::-webkit-scrollbar {\n width: 8px;\n}\n.index_page-comp-wrap__hAT7M .index_page-comp-list__msp13 .index_list__hxWna .index_inner-list__G1GvV::-webkit-scrollbar-track-piece {\n background-color: #fff;\n}\n.index_page-comp-wrap__hAT7M .index_page-comp-list__msp13 .index_list__hxWna .index_inner-list__G1GvV::-webkit-scrollbar-thumb {\n background-color: #C1C9D7;\n background-clip: padding-box;\n border-radius: 100px;\n}\n.index_card-wrap__l74jT {\n display: flex;\n justify-content: space-between;\n cursor: move;\n height: 64px;\n line-height: 64px;\n padding: 0 20px;\n color: #232F46;\n}\n.index_card-wrap__l74jT .index_left__pBraq {\n width: 100%;\n display: flex;\n align-items: center;\n}\n.index_card-wrap__l74jT .index_left__pBraq .index_comp-icon__YbnCQ {\n display: block;\n}\n.index_card-wrap__l74jT .index_left__pBraq .index_drag-icon__8anEd {\n display: none;\n}\n.index_card-wrap__l74jT .index_left__pBraq .index_card-title__A3MdO {\n line-height: 24px;\n font-family: 'Open Sans';\n font-weight: 400;\n font-size: 16px;\n font-style: normal;\n}\n.index_card-wrap__l74jT .index_more-btn__lWkrz {\n display: none;\n cursor: pointer;\n}\n.index_card-wrap__l74jT:hover {\n background: #E9F0FF;\n color: #2F54EB;\n}\n.index_card-wrap__l74jT:hover .index_left__pBraq {\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 600;\n font-size: 16px;\n line-height: 24px;\n}\n.index_card-wrap__l74jT:hover .index_left__pBraq .index_comp-icon__YbnCQ {\n display: none;\n}\n.index_card-wrap__l74jT:hover .index_left__pBraq .index_drag-icon__8anEd {\n display: block;\n}\n.index_card-wrap__l74jT:hover .index_left__pBraq .index_card-title__A3MdO {\n font-weight: 600;\n}\n.index_card-wrap__l74jT:hover .index_more-btn__lWkrz {\n display: block;\n}\n.index_active__dMPSq {\n background: #E9F0FF;\n color: #2F54EB;\n}\n.index_active__dMPSq .index_left__pBraq .index_card-title__A3MdO {\n font-weight: 600;\n}\n.index_active__dMPSq .index_more-btn__lWkrz {\n display: block;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,5 +1,5 @@
1
- import { __extends } from '../../../../../node_modules/tslib/tslib.es6.js';
2
- import classNames from '../../../../../node_modules/classnames/index.js';
1
+ import { __extends } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
+ import classNames from '../../../../../my_my_node_modules/classnames/index.js';
3
3
  import React__default, { Component } from 'react';
4
4
  import Button from '../../../common/Button/index.js';
5
5
  import Iconfont from '../../../common/Iconfont/index.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_quick_menu_wrap__5xVae {\n flex-shrink: 0;\n height: 80px;\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding-left: 24px;\n padding-right: 28px;\n background-color: #FFF;\n}\n.index_quick_menu_wrap__5xVae .index_menu_left__5Vc5c .index_language__08ChO {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 48px;\n border-radius: 8px;\n padding: 12px;\n font-size: 16px;\n}\n.index_quick_menu_wrap__5xVae .index_menu_center__9F4gn {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.index_quick_menu_wrap__5xVae .index_menu_center__9F4gn .index_device_group__3Kk79 {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.index_quick_menu_wrap__5xVae .index_menu_center__9F4gn .index_device_group__3Kk79 .index_device_pc__GZM-C {\n cursor: pointer;\n height: 48px;\n width: 60px;\n padding: 14px;\n border: 1px solid #EDF0F4;\n border-right: none;\n border-top-left-radius: 8px;\n border-bottom-left-radius: 8px;\n text-align: center;\n}\n.index_quick_menu_wrap__5xVae .index_menu_center__9F4gn .index_device_group__3Kk79 .index_device_phone__odPFU {\n cursor: pointer;\n height: 48px;\n width: 60px;\n padding: 14px;\n border: 1px solid #EDF0F4;\n border-left: none;\n border-top-right-radius: 8px;\n border-bottom-right-radius: 8px;\n text-align: center;\n}\n.index_quick_menu_wrap__5xVae .index_menu_center__9F4gn .index_device_group__3Kk79 .index_active__cu0sW {\n background: #E9F0FF;\n}\n.index_quick_menu_wrap__5xVae .index_menu_center__9F4gn .index_redo_undo__PGEpQ {\n display: flex;\n align-items: center;\n justify-content: center;\n margin-left: 24px;\n}\n.index_quick_menu_wrap__5xVae .index_menu_right__yqg0- {\n display: flex;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,7 +1,7 @@
1
- import { __extends, __assign } from '../../../../../node_modules/tslib/tslib.es6.js';
2
- import classNames from '../../../../../node_modules/classnames/index.js';
1
+ import { __extends, __assign } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
+ import classNames from '../../../../../my_my_node_modules/classnames/index.js';
3
3
  import React__default, { Component } from 'react';
4
- import isEmpty_1 from '../../../../../node_modules/lodash/isEmpty.js';
4
+ import isEmpty_1 from '../../../../../my_my_node_modules/lodash/isEmpty.js';
5
5
  import { deviceTypeMap } from '../../../constants/index.js';
6
6
  import { componentMap } from '../../../constants/component-types.js';
7
7
  import './index.less.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_design-area-wrap__1UMY8 {\n width: calc(100vw - 354px);\n flex: auto;\n background: #F5F6F7;\n display: flex;\n flex-direction: column;\n padding-left: 1px;\n transition-property: all;\n transition-duration: 0.3s;\n transition-timing-function: ease;\n}\n.index_design-area-wrap__1UMY8.index_phone-edit__-2SG9 {\n margin-left: 355px;\n}\n.index_design-area-wrap__1UMY8 .index_phone_view_area__Jv0A0 {\n flex-grow: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 24px 0;\n}\n.index_design-area-wrap__1UMY8 .index_phone_view_area__Jv0A0 .index_device_border__I7Vyh {\n width: 375px;\n max-height: 691px;\n height: calc(100vh - 150px);\n overflow: scroll;\n overflow-x: hidden;\n border: 10px solid #FFF;\n background-color: #F2F2F2;\n border-radius: 12px;\n box-sizing: content-box;\n}\n.index_design-area-wrap__1UMY8 .index_pc_view_area__3s0Hi {\n flex-grow: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 24px;\n}\n.index_design-area-wrap__1UMY8 .index_pc_view_area__3s0Hi .index_device_border__I7Vyh {\n padding: 1px;\n max-width: 1240px;\n width: 100%;\n min-height: 70vh;\n border: 16px solid #FFF;\n border-radius: 12px;\n max-height: calc(100vh - 180px);\n height: 100%;\n overflow: scroll;\n box-sizing: content-box;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,6 +1,6 @@
1
- import { __extends, __assign, __spreadArray } from '../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends, __assign, __spreadArray } from '../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default, { Component } from 'react';
3
- import uuid_1 from '../../../../node_modules/uuid/index.js';
3
+ import uuid_1 from '../../../../my_my_node_modules/uuid/index.js';
4
4
  import { Provider } from 'mobx-react';
5
5
  import { ConfigProvider } from 'antd';
6
6
  import CompListPanel from './CompListPanel/index.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_designer-wrap__u7r1K {\n display: flex;\n width: 100%;\n height: 100vh;\n background-color: #F5F6F7;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,4 +1,4 @@
1
- import { __assign } from '../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __assign } from '../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default from 'react';
3
3
  import { componentMap } from '../../constants/component-types.js';
4
4
 
@@ -1,4 +1,4 @@
1
- import { __extends } from '../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends } from '../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default, { Component } from 'react';
3
3
  import { store } from '../mobx/index.js';
4
4
  import { autorun } from 'mobx';
@@ -1,4 +1,4 @@
1
- import { __extends, __rest } from '../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends, __rest } from '../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default, { Component } from 'react';
3
3
  import { store } from '../mobx/index.js';
4
4
  import { autorun } from 'mobx';
@@ -1,6 +1,6 @@
1
- import { __extends, __assign, __decorate } from '../../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends, __assign, __decorate } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default, { Component } from 'react';
3
- import classNames from '../../../../../node_modules/classnames/index.js';
3
+ import classNames from '../../../../../my_my_node_modules/classnames/index.js';
4
4
  import './index.less.js';
5
5
  import { computeStyle } from '../../../utils/businessUtil.js';
6
6
  import { isDesignMode, clickUrl } from '../../../utils/coreUtil.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_m-meta-button__xC3hx {\n transition: all 0.25s;\n}\n.index_m-meta-button__xC3hx .index_btnContent__EeMhF {\n cursor: pointer;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n flex-direction: column;\n}\n.index_m-meta-button__xC3hx .index_btnContent__EeMhF.index_horizontal__BTkyD {\n flex-direction: row;\n}\n.index_m-meta-button__xC3hx .index_btnContent__EeMhF img {\n height: 20px;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,6 +1,6 @@
1
- import { __extends, __decorate } from '../../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends, __decorate } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default from 'react';
3
- import classNames from '../../../../../node_modules/classnames/index.js';
3
+ import classNames from '../../../../../my_my_node_modules/classnames/index.js';
4
4
  import './index.less.js';
5
5
  import { isPc, clickUrl } from '../../../utils/coreUtil.js';
6
6
  import '../../../mobx/index.js';
@@ -24,7 +24,8 @@ function (_super) {
24
24
  data = _a.data,
25
25
  hoverState = _a.hoverState,
26
26
  maxHeight = _a.maxHeight,
27
- maxWidth = _a.maxWidth;
27
+ maxWidth = _a.maxWidth,
28
+ limitWidthHeight = _a.limitWidthHeight;
28
29
  var hoverImgSrc = _this.state.hoverImgSrc;
29
30
  var obj = {};
30
31
 
@@ -41,6 +42,16 @@ function (_super) {
41
42
  obj.maxWidth = maxWidth;
42
43
  }
43
44
 
45
+ if (limitWidthHeight) {
46
+ if (isPc()) {
47
+ obj.width = data.content.pcImgWidth;
48
+ obj.height = data.content.pcImgHeight;
49
+ } else {
50
+ obj.width = data.content.h5ImgWidth;
51
+ obj.height = data.content.h5ImgHeight;
52
+ }
53
+ }
54
+
44
55
  return obj;
45
56
  };
46
57
 
@@ -112,7 +123,8 @@ function (_super) {
112
123
  hover: {}
113
124
  },
114
125
  isBackground: false,
115
- hoverState: false
126
+ hoverState: false,
127
+ limitWidthHeight: false
116
128
  };
117
129
  Image = __decorate([metaDecorator], Image);
118
130
  return Image;
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_m-meta-image__6oFhF {\n width: 100%;\n height: 100%;\n}\n.index_m-meta-image__6oFhF > img {\n width: 100%;\n height: 100%;\n object-fit: contain;\n transition: all 0.2s linear;\n vertical-align: initial;\n}\n.index_m-meta-image__6oFhF.index_backgroundImg__-X-kA > img {\n object-fit: cover;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,6 +1,6 @@
1
- import { __extends, __assign, __decorate, __spreadArray } from '../../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends, __assign, __decorate, __spreadArray } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default from 'react';
3
- import classNames from '../../../../../node_modules/classnames/index.js';
3
+ import classNames from '../../../../../my_my_node_modules/classnames/index.js';
4
4
  import { debounce, isEmpty } from 'lodash';
5
5
  import './index.less.js';
6
6
  import { convertIconClass } from '../../../common/Iconfont/index.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_m-meta-text__4g6d0 {\n display: block;\n}\n.index_m-meta-text__4g6d0 .index_select-container__tUvJE {\n position: relative;\n}\n.index_m-meta-text__4g6d0 .index_select-container__tUvJE .index_close-wrap__IItPw {\n user-select: none;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n border: 1px dashed #cccccc;\n}\n.index_m-meta-text__4g6d0 .index_select-container__tUvJE .index_close-wrap__IItPw .index_magic-box-iconfont__8UEh8 {\n position: absolute;\n top: 0;\n right: 0;\n font-size: 21px;\n transform: translate(50%, -50%);\n color: #ffffff;\n text-shadow: 1px 1px 4px #000;\n}\n.index_m-meta-text__4g6d0 .index_select-container__tUvJE .index_close-wrap__IItPw .index_magic-box-iconfont__8UEh8:hover {\n color: #f46868;\n cursor: pointer;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,4 +1,4 @@
1
- import { __extends } from '../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends } from '../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default, { Component } from 'react';
3
3
  import { renderPreview } from '../../utils/coreUtil.js';
4
4
 
@@ -1,4 +1,4 @@
1
- import { __extends, __assign } from '../../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends, __assign } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default from 'react';
3
3
  import { Select } from 'antd';
4
4
  import './index.less.js';
@@ -18,8 +18,8 @@ import SliderInput from '../../../common/Slider/index.js';
18
18
  import FontStyles from '../../../common/FontStyles/index.js';
19
19
  import ButtonIconLayout from '../../../common/ButtonIconLayout/index.js';
20
20
  import 'axios';
21
- import '../../../../../node_modules/qs/lib/stringify.js';
22
- import '../../../../../node_modules/qs/lib/utils.js';
21
+ import '../../../../../my_my_node_modules/qs/lib/stringify.js';
22
+ import '../../../../../my_my_node_modules/qs/lib/utils.js';
23
23
  import '../../../common/ProductModal/index.js';
24
24
  import '../../../common/ProductSource/index.less.js';
25
25
  import { sizeTypeList } from '../TextConfig/index.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_m-button-config__YA6fc {\n padding: 0 12px;\n background-color: #F5F6F7;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,7 +1,8 @@
1
- import { __extends } from '../../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends, __awaiter, __generator } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default from 'react';
3
3
  import { Select } from 'antd';
4
4
  import './index.less.js';
5
+ import { asyncDataURLtoImage } from '../../../utils/commonUtil.js';
5
6
  import { isPc } from '../../../utils/coreUtil.js';
6
7
  import '../../../common/LayoutSelector/index.js';
7
8
  import Field from '../../../common/Field/index.js';
@@ -17,9 +18,6 @@ import '../../../common/SwitchCollapse/index.js';
17
18
  import SliderInput from '../../../common/Slider/index.js';
18
19
  import '../../../common/FontStyles/index.js';
19
20
  import '../../../common/ButtonIconLayout/index.js';
20
- import 'axios';
21
- import '../../../../../node_modules/qs/lib/stringify.js';
22
- import '../../../../../node_modules/qs/lib/utils.js';
23
21
  import '../../../common/ProductModal/index.js';
24
22
  import '../../../common/ProductSource/index.less.js';
25
23
  import BaseConfig from '../BaseConfig.js';
@@ -37,27 +35,74 @@ function (_super) {
37
35
  };
38
36
 
39
37
  _this.getImg = function (v) {
40
- var data = _this.props.data;
41
-
42
- if (isPc()) {
43
- data.content.pcImgSrc = v.url;
44
- data.content.pcName = v.contentTitle;
45
-
46
- if (!data.content.h5ImgSrc) {
47
- data.content.h5ImgSrc = v.url;
48
- data.content.h5Name = v.contentTitle;
49
- }
50
- } else {
51
- data.content.h5ImgSrc = v.url;
52
- data.content.h5Name = v.contentTitle;
53
-
54
- if (!data.content.pcImgSrc) {
55
- data.content.pcImgSrc = v.url;
56
- data.content.pcName = v.contentTitle;
57
- }
58
- }
59
-
60
- _this.selfRender();
38
+ return __awaiter(_this, void 0, void 0, function () {
39
+ var data, _scale, pcImg, h5Img;
40
+
41
+ return __generator(this, function (_a) {
42
+ switch (_a.label) {
43
+ case 0:
44
+ data = this.props.data;
45
+ _scale = data.content.scale || 1;
46
+ if (!isPc()) return [3
47
+ /*break*/
48
+ , 3];
49
+ data.content.pcImgSrc = v.url;
50
+ data.content.pcName = v.contentTitle;
51
+ if (!data.content.pcImgSrc) return [3
52
+ /*break*/
53
+ , 2];
54
+ return [4
55
+ /*yield*/
56
+ , asyncDataURLtoImage(data.content.pcImgSrc)];
57
+
58
+ case 1:
59
+ pcImg = _a.sent();
60
+ data.content.pcImgWidth = pcImg.width * _scale;
61
+ data.content.pcImgHeight = pcImg.height * _scale;
62
+ _a.label = 2;
63
+
64
+ case 2:
65
+ if (!data.content.h5ImgSrc) {
66
+ data.content.h5ImgSrc = v.url;
67
+ data.content.h5Name = v.contentTitle;
68
+ }
69
+
70
+ return [3
71
+ /*break*/
72
+ , 6];
73
+
74
+ case 3:
75
+ data.content.h5ImgSrc = v.url;
76
+ data.content.h5Name = v.contentTitle;
77
+ if (!data.content.h5ImgSrc) return [3
78
+ /*break*/
79
+ , 5];
80
+ return [4
81
+ /*yield*/
82
+ , asyncDataURLtoImage(data.content.h5ImgSrc)];
83
+
84
+ case 4:
85
+ h5Img = _a.sent();
86
+ data.content.h5ImgWidth = h5Img.width * _scale;
87
+ data.content.h5ImgHeight = h5Img.height * _scale;
88
+ _a.label = 5;
89
+
90
+ case 5:
91
+ if (!data.content.pcImgSrc) {
92
+ data.content.pcImgSrc = v.url;
93
+ data.content.pcName = v.contentTitle;
94
+ }
95
+
96
+ _a.label = 6;
97
+
98
+ case 6:
99
+ this.selfRender();
100
+ return [2
101
+ /*return*/
102
+ ];
103
+ }
104
+ });
105
+ });
61
106
  };
62
107
 
63
108
  _this.getImgHoverUrl = function (v) {
@@ -82,8 +127,8 @@ function (_super) {
82
127
  ImageConfig.prototype.render = function () {
83
128
  var _this = this;
84
129
 
85
- var data = this.props.data;
86
- console.log('---image', this.props);
130
+ var data = this.props.data; // console.log('---image', this.props);
131
+
87
132
  var ContentSetting = /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(ImagePicker, {
88
133
  onChange: function (v) {
89
134
  _this.getImg(v);
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_m-image-config__HxUjo {\n padding: 0 12px 1px;\n background-color: #F5F6F7;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,4 +1,4 @@
1
- import { __extends, __assign } from '../../../../../node_modules/tslib/tslib.es6.js';
1
+ import { __extends, __assign } from '../../../../../my_my_node_modules/tslib/tslib.es6.js';
2
2
  import React__default, { Fragment } from 'react';
3
3
  import { Select } from 'antd';
4
4
  import './index.less.js';
@@ -17,8 +17,8 @@ import SliderInput from '../../../common/Slider/index.js';
17
17
  import FontStyles from '../../../common/FontStyles/index.js';
18
18
  import '../../../common/ButtonIconLayout/index.js';
19
19
  import 'axios';
20
- import '../../../../../node_modules/qs/lib/stringify.js';
21
- import '../../../../../node_modules/qs/lib/utils.js';
20
+ import '../../../../../my_my_node_modules/qs/lib/stringify.js';
21
+ import '../../../../../my_my_node_modules/qs/lib/utils.js';
22
22
  import '../../../common/ProductModal/index.js';
23
23
  import '../../../common/ProductSource/index.less.js';
24
24
  import SpacingConfig from '../../../composite-comp/common/config-panels/SpacingConfig/index.js';
@@ -1,4 +1,4 @@
1
- import styleInject from '../../../../../node_modules/style-inject/dist/style-inject.es.js';
1
+ import styleInject from '../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
2
2
 
3
3
  var css_248z = ".index_m-text-config__G10fc {\n display: flex;\n flex-direction: column;\n padding: 0 12px;\n background-color: #F5F6F7;\n}\n.index_m-text-config__G10fc .index_line-config__E1EJs {\n text-decoration-line: line-through;\n text-decoration-color: #000;\n font-size: 14px;\n font-weight: 600;\n}\n.index_m-text-config__G10fc .index_line-solid__fpZMp {\n text-decoration-style: solid;\n}\n.index_m-text-config__G10fc .index_dashed-line__up9Nm {\n text-decoration-style: dashed;\n}\n.index_m-text-config__G10fc .index_double-line__WGcsB {\n text-decoration-style: double;\n}\n.index_m-text-config__G10fc .index_wavy-line__WUvJg {\n text-decoration-style: wavy;\n}\n";
4
4
  styleInject(css_248z);
@@ -1,5 +1,5 @@
1
1
  import axios from 'axios';
2
- import lib from '../../../node_modules/qs/lib/index.js';
2
+ import lib from '../../../my_my_node_modules/qs/lib/index.js';
3
3
 
4
4
  /**
5
5
  * 安全获取数据
@@ -219,5 +219,22 @@ var getColorRgba = function (sHex, alpha) {
219
219
  return sColor;
220
220
  }
221
221
  };
222
+ /** url to image */
222
223
 
223
- export { addZero, calcLastTime, checkFileName, commonFetch, convertImageUrl, dragSource, ensure, getColorRgba, navigateTo, styleStringify };
224
+ function asyncDataURLtoImage(dataUrl) {
225
+ return new Promise(function (resolve, reject) {
226
+ var img = new Image();
227
+
228
+ img.onload = function () {
229
+ resolve(img);
230
+ };
231
+
232
+ img.onerror = function () {
233
+ reject(new Error('img error'));
234
+ };
235
+
236
+ img.src = dataUrl;
237
+ });
238
+ }
239
+
240
+ export { addZero, asyncDataURLtoImage, calcLastTime, checkFileName, commonFetch, convertImageUrl, dragSource, ensure, getColorRgba, navigateTo, styleStringify };
@@ -1,4 +1,4 @@
1
- import uuid_1 from '../../../node_modules/uuid/index.js';
1
+ import uuid_1 from '../../../my_my_node_modules/uuid/index.js';
2
2
  import { parseUrl } from './businessUtil.js';
3
3
  import { navigateTo } from './commonUtil.js';
4
4
  import { browserVersion } from './androidUtil.js';
@@ -1,5 +1,5 @@
1
- import divide_1 from '../../../node_modules/lodash/divide.js';
2
- import isEmpty_1 from '../../../node_modules/lodash/isEmpty.js';
1
+ import divide_1 from '../../../my_my_node_modules/lodash/divide.js';
2
+ import isEmpty_1 from '../../../my_my_node_modules/lodash/isEmpty.js';
3
3
  import { ensure } from './commonUtil.js';
4
4
 
5
5
  /* eslint-disable */
@@ -1,7 +1,7 @@
1
- import isEmpty_1 from '../../../node_modules/lodash/isEmpty.js';
2
- import isObject_1 from '../../../node_modules/lodash/isObject.js';
3
- import mapKeys_1 from '../../../node_modules/lodash/mapKeys.js';
4
- import cloneDeep_1 from '../../../node_modules/lodash/cloneDeep.js';
1
+ import isEmpty_1 from '../../../my_my_node_modules/lodash/isEmpty.js';
2
+ import isObject_1 from '../../../my_my_node_modules/lodash/isObject.js';
3
+ import mapKeys_1 from '../../../my_my_node_modules/lodash/mapKeys.js';
4
+ import cloneDeep_1 from '../../../my_my_node_modules/lodash/cloneDeep.js';
5
5
 
6
6
  /**
7
7
  * 处理树相关的工具