@fonixtree/magic-design 0.0.16 → 0.0.17

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 (754) hide show
  1. package/README.md +311 -0
  2. package/dist/_virtual/__node-resolve_empty.js +6 -0
  3. package/dist/_virtual/_cloneBuffer.js +3 -0
  4. package/dist/_virtual/_commonjsHelpers.js +24 -0
  5. package/dist/_virtual/_node-resolve_empty.js +3 -0
  6. package/dist/_virtual/_nodeUtil.js +3 -0
  7. package/dist/_virtual/_rollupPluginBabelHelpers.js +18 -0
  8. package/dist/_virtual/index.js +3 -0
  9. package/dist/_virtual/index2.js +3 -0
  10. package/dist/_virtual/index3.js +3 -0
  11. package/dist/_virtual/index4.js +3 -0
  12. package/dist/_virtual/index5.js +5 -0
  13. package/dist/_virtual/interopRequireDefault.js +3 -0
  14. package/dist/_virtual/isBuffer.js +3 -0
  15. package/dist/_virtual/react-is.development.js +3 -0
  16. package/dist/_virtual/react-is.production.min.js +3 -0
  17. package/dist/_virtual/rng-browser.js +3 -0
  18. package/dist/_virtual/toArray.js +3 -0
  19. package/dist/my_node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +11 -0
  20. package/dist/my_node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +5 -0
  21. package/dist/my_node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +9 -0
  22. package/dist/my_node_modules/@babel/runtime/helpers/esm/classCallCheck.js +7 -0
  23. package/dist/my_node_modules/@babel/runtime/helpers/esm/createClass.js +20 -0
  24. package/dist/my_node_modules/@babel/runtime/helpers/esm/createSuper.js +22 -0
  25. package/dist/my_node_modules/@babel/runtime/helpers/esm/defineProperty.js +16 -0
  26. package/dist/my_node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +8 -0
  27. package/dist/my_node_modules/@babel/runtime/helpers/esm/inherits.js +21 -0
  28. package/dist/my_node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +14 -0
  29. package/dist/my_node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +31 -0
  30. package/dist/my_node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +5 -0
  31. package/dist/my_node_modules/@babel/runtime/helpers/esm/objectSpread2.js +29 -0
  32. package/dist/my_node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +14 -0
  33. package/dist/my_node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +9 -0
  34. package/dist/my_node_modules/@babel/runtime/helpers/esm/slicedToArray.js +10 -0
  35. package/dist/my_node_modules/@babel/runtime/helpers/esm/typeof.js +11 -0
  36. package/dist/my_node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +12 -0
  37. package/dist/my_node_modules/@babel/runtime/helpers/interopRequireDefault.js +11 -0
  38. package/dist/my_node_modules/call-bind/callBound.js +19 -0
  39. package/dist/my_node_modules/call-bind/index.js +52 -0
  40. package/dist/my_node_modules/classnames/index.js +61 -0
  41. package/dist/my_node_modules/function-bind/implementation.js +52 -0
  42. package/dist/my_node_modules/function-bind/index.js +7 -0
  43. package/dist/my_node_modules/get-intrinsic/index.js +338 -0
  44. package/dist/my_node_modules/has/src/index.js +7 -0
  45. package/dist/my_node_modules/has-symbols/index.js +15 -0
  46. package/dist/my_node_modules/has-symbols/shams.js +42 -0
  47. package/dist/my_node_modules/lodash/_DataView.js +12 -0
  48. package/dist/my_node_modules/lodash/_Hash.js +40 -0
  49. package/dist/my_node_modules/lodash/_ListCache.js +40 -0
  50. package/dist/my_node_modules/lodash/_Map.js +12 -0
  51. package/dist/my_node_modules/lodash/_MapCache.js +40 -0
  52. package/dist/my_node_modules/lodash/_Promise.js +12 -0
  53. package/dist/my_node_modules/lodash/_Set.js +12 -0
  54. package/dist/my_node_modules/lodash/_SetCache.js +33 -0
  55. package/dist/my_node_modules/lodash/_Stack.js +36 -0
  56. package/dist/my_node_modules/lodash/_Symbol.js +10 -0
  57. package/dist/my_node_modules/lodash/_Uint8Array.js +10 -0
  58. package/dist/my_node_modules/lodash/_WeakMap.js +12 -0
  59. package/dist/my_node_modules/lodash/_arrayEach.js +25 -0
  60. package/dist/my_node_modules/lodash/_arrayFilter.js +28 -0
  61. package/dist/my_node_modules/lodash/_arrayLikeKeys.js +59 -0
  62. package/dist/my_node_modules/lodash/_arrayMap.js +24 -0
  63. package/dist/my_node_modules/lodash/_arrayPush.js +23 -0
  64. package/dist/my_node_modules/lodash/_arraySome.js +26 -0
  65. package/dist/my_node_modules/lodash/_assignValue.js +33 -0
  66. package/dist/my_node_modules/lodash/_assocIndexOf.js +25 -0
  67. package/dist/my_node_modules/lodash/_baseAssign.js +22 -0
  68. package/dist/my_node_modules/lodash/_baseAssignIn.js +22 -0
  69. package/dist/my_node_modules/lodash/_baseAssignValue.js +29 -0
  70. package/dist/my_node_modules/lodash/_baseClone.js +193 -0
  71. package/dist/my_node_modules/lodash/_baseCreate.js +34 -0
  72. package/dist/my_node_modules/lodash/_baseFindIndex.js +27 -0
  73. package/dist/my_node_modules/lodash/_baseFor.js +20 -0
  74. package/dist/my_node_modules/lodash/_baseForOwn.js +21 -0
  75. package/dist/my_node_modules/lodash/_baseGet.js +29 -0
  76. package/dist/my_node_modules/lodash/_baseGetAllKeys.js +25 -0
  77. package/dist/my_node_modules/lodash/_baseGetTag.js +34 -0
  78. package/dist/my_node_modules/lodash/_baseHasIn.js +16 -0
  79. package/dist/my_node_modules/lodash/_baseIsArguments.js +23 -0
  80. package/dist/my_node_modules/lodash/_baseIsEqual.js +33 -0
  81. package/dist/my_node_modules/lodash/_baseIsEqualDeep.js +95 -0
  82. package/dist/my_node_modules/lodash/_baseIsMap.js +23 -0
  83. package/dist/my_node_modules/lodash/_baseIsMatch.js +67 -0
  84. package/dist/my_node_modules/lodash/_baseIsNative.js +54 -0
  85. package/dist/my_node_modules/lodash/_baseIsSet.js +23 -0
  86. package/dist/my_node_modules/lodash/_baseIsTypedArray.js +66 -0
  87. package/dist/my_node_modules/lodash/_baseIteratee.js +39 -0
  88. package/dist/my_node_modules/lodash/_baseKeys.js +35 -0
  89. package/dist/my_node_modules/lodash/_baseKeysIn.js +39 -0
  90. package/dist/my_node_modules/lodash/_baseMatches.js +28 -0
  91. package/dist/my_node_modules/lodash/_baseMatchesProperty.js +43 -0
  92. package/dist/my_node_modules/lodash/_baseProperty.js +17 -0
  93. package/dist/my_node_modules/lodash/_basePropertyDeep.js +20 -0
  94. package/dist/my_node_modules/lodash/_baseTimes.js +23 -0
  95. package/dist/my_node_modules/lodash/_baseToNumber.js +28 -0
  96. package/dist/my_node_modules/lodash/_baseToString.js +44 -0
  97. package/dist/my_node_modules/lodash/_baseTrim.js +23 -0
  98. package/dist/my_node_modules/lodash/_baseUnary.js +17 -0
  99. package/dist/my_node_modules/lodash/_cacheHas.js +16 -0
  100. package/dist/my_node_modules/lodash/_castPath.js +28 -0
  101. package/dist/my_node_modules/lodash/_cloneArrayBuffer.js +20 -0
  102. package/dist/my_node_modules/lodash/_cloneBuffer.js +40 -0
  103. package/dist/my_node_modules/lodash/_cloneDataView.js +20 -0
  104. package/dist/my_node_modules/lodash/_cloneRegExp.js +20 -0
  105. package/dist/my_node_modules/lodash/_cloneSymbol.js +22 -0
  106. package/dist/my_node_modules/lodash/_cloneTypedArray.js +20 -0
  107. package/dist/my_node_modules/lodash/_copyArray.js +23 -0
  108. package/dist/my_node_modules/lodash/_copyObject.js +45 -0
  109. package/dist/my_node_modules/lodash/_copySymbols.js +21 -0
  110. package/dist/my_node_modules/lodash/_copySymbolsIn.js +21 -0
  111. package/dist/my_node_modules/lodash/_coreJsData.js +10 -0
  112. package/dist/my_node_modules/lodash/_createBaseFor.js +28 -0
  113. package/dist/my_node_modules/lodash/_createMathOperation.js +43 -0
  114. package/dist/my_node_modules/lodash/_defineProperty.js +15 -0
  115. package/dist/my_node_modules/lodash/_equalArrays.js +90 -0
  116. package/dist/my_node_modules/lodash/_equalByTag.js +121 -0
  117. package/dist/my_node_modules/lodash/_equalObjects.js +94 -0
  118. package/dist/my_node_modules/lodash/_freeGlobal.js +9 -0
  119. package/dist/my_node_modules/lodash/_getAllKeys.js +22 -0
  120. package/dist/my_node_modules/lodash/_getAllKeysIn.js +23 -0
  121. package/dist/my_node_modules/lodash/_getMapData.js +22 -0
  122. package/dist/my_node_modules/lodash/_getMatchData.js +29 -0
  123. package/dist/my_node_modules/lodash/_getNative.js +22 -0
  124. package/dist/my_node_modules/lodash/_getPrototype.js +10 -0
  125. package/dist/my_node_modules/lodash/_getRawTag.js +50 -0
  126. package/dist/my_node_modules/lodash/_getSymbols.js +35 -0
  127. package/dist/my_node_modules/lodash/_getSymbolsIn.js +32 -0
  128. package/dist/my_node_modules/lodash/_getTag.js +68 -0
  129. package/dist/my_node_modules/lodash/_getValue.js +16 -0
  130. package/dist/my_node_modules/lodash/_hasPath.js +48 -0
  131. package/dist/my_node_modules/lodash/_hashClear.js +19 -0
  132. package/dist/my_node_modules/lodash/_hashDelete.js +20 -0
  133. package/dist/my_node_modules/lodash/_hashGet.js +34 -0
  134. package/dist/my_node_modules/lodash/_hashHas.js +27 -0
  135. package/dist/my_node_modules/lodash/_hashSet.js +27 -0
  136. package/dist/my_node_modules/lodash/_initCloneArray.js +29 -0
  137. package/dist/my_node_modules/lodash/_initCloneByTag.js +85 -0
  138. package/dist/my_node_modules/lodash/_initCloneObject.js +24 -0
  139. package/dist/my_node_modules/lodash/_isIndex.js +28 -0
  140. package/dist/my_node_modules/lodash/_isKey.js +34 -0
  141. package/dist/my_node_modules/lodash/_isKeyable.js +18 -0
  142. package/dist/my_node_modules/lodash/_isMasked.js +24 -0
  143. package/dist/my_node_modules/lodash/_isPrototype.js +21 -0
  144. package/dist/my_node_modules/lodash/_isStrictComparable.js +19 -0
  145. package/dist/my_node_modules/lodash/_listCacheClear.js +16 -0
  146. package/dist/my_node_modules/lodash/_listCacheDelete.js +39 -0
  147. package/dist/my_node_modules/lodash/_listCacheGet.js +23 -0
  148. package/dist/my_node_modules/lodash/_listCacheHas.js +20 -0
  149. package/dist/my_node_modules/lodash/_listCacheSet.js +30 -0
  150. package/dist/my_node_modules/lodash/_mapCacheClear.js +27 -0
  151. package/dist/my_node_modules/lodash/_mapCacheDelete.js +22 -0
  152. package/dist/my_node_modules/lodash/_mapCacheGet.js +20 -0
  153. package/dist/my_node_modules/lodash/_mapCacheHas.js +20 -0
  154. package/dist/my_node_modules/lodash/_mapCacheSet.js +26 -0
  155. package/dist/my_node_modules/lodash/_mapToArray.js +21 -0
  156. package/dist/my_node_modules/lodash/_matchesStrictComparable.js +23 -0
  157. package/dist/my_node_modules/lodash/_memoizeCapped.js +30 -0
  158. package/dist/my_node_modules/lodash/_nativeCreate.js +10 -0
  159. package/dist/my_node_modules/lodash/_nativeKeys.js +10 -0
  160. package/dist/my_node_modules/lodash/_nativeKeysIn.js +23 -0
  161. package/dist/my_node_modules/lodash/_nodeUtil.js +35 -0
  162. package/dist/my_node_modules/lodash/_objectToString.js +25 -0
  163. package/dist/my_node_modules/lodash/_overArg.js +18 -0
  164. package/dist/my_node_modules/lodash/_root.js +13 -0
  165. package/dist/my_node_modules/lodash/_setCacheAdd.js +22 -0
  166. package/dist/my_node_modules/lodash/_setCacheHas.js +17 -0
  167. package/dist/my_node_modules/lodash/_setToArray.js +21 -0
  168. package/dist/my_node_modules/lodash/_stackClear.js +19 -0
  169. package/dist/my_node_modules/lodash/_stackDelete.js +21 -0
  170. package/dist/my_node_modules/lodash/_stackGet.js +17 -0
  171. package/dist/my_node_modules/lodash/_stackHas.js +17 -0
  172. package/dist/my_node_modules/lodash/_stackSet.js +40 -0
  173. package/dist/my_node_modules/lodash/_stringToPath.js +31 -0
  174. package/dist/my_node_modules/lodash/_toKey.js +25 -0
  175. package/dist/my_node_modules/lodash/_toSource.js +29 -0
  176. package/dist/my_node_modules/lodash/_trimmedEndIndex.js +22 -0
  177. package/dist/my_node_modules/lodash/cloneDeep.js +33 -0
  178. package/dist/my_node_modules/lodash/divide.js +26 -0
  179. package/dist/my_node_modules/lodash/eq.js +40 -0
  180. package/dist/my_node_modules/lodash/findIndex.js +61 -0
  181. package/dist/my_node_modules/lodash/get.js +37 -0
  182. package/dist/my_node_modules/lodash/hasIn.js +39 -0
  183. package/dist/my_node_modules/lodash/identity.js +24 -0
  184. package/dist/my_node_modules/lodash/isArguments.js +41 -0
  185. package/dist/my_node_modules/lodash/isArray.js +29 -0
  186. package/dist/my_node_modules/lodash/isArrayLike.js +38 -0
  187. package/dist/my_node_modules/lodash/isBuffer.js +44 -0
  188. package/dist/my_node_modules/lodash/isEmpty.js +89 -0
  189. package/dist/my_node_modules/lodash/isFunction.js +42 -0
  190. package/dist/my_node_modules/lodash/isLength.js +38 -0
  191. package/dist/my_node_modules/lodash/isMap.js +34 -0
  192. package/dist/my_node_modules/lodash/isObject.js +34 -0
  193. package/dist/my_node_modules/lodash/isObjectLike.js +32 -0
  194. package/dist/my_node_modules/lodash/isSet.js +34 -0
  195. package/dist/my_node_modules/lodash/isSymbol.js +34 -0
  196. package/dist/my_node_modules/lodash/isTypedArray.js +34 -0
  197. package/dist/my_node_modules/lodash/keys.js +43 -0
  198. package/dist/my_node_modules/lodash/keysIn.js +38 -0
  199. package/dist/my_node_modules/lodash/mapKeys.js +42 -0
  200. package/dist/my_node_modules/lodash/memoize.js +77 -0
  201. package/dist/my_node_modules/lodash/property.js +39 -0
  202. package/dist/my_node_modules/lodash/stubArray.js +26 -0
  203. package/dist/my_node_modules/lodash/stubFalse.js +21 -0
  204. package/dist/my_node_modules/lodash/toFinite.js +46 -0
  205. package/dist/my_node_modules/lodash/toInteger.js +40 -0
  206. package/dist/my_node_modules/lodash/toNumber.js +70 -0
  207. package/dist/my_node_modules/lodash/toString.js +32 -0
  208. package/dist/my_node_modules/object-assign/index.js +99 -0
  209. package/dist/my_node_modules/object-inspect/index.js +516 -0
  210. package/dist/my_node_modules/prop-types/checkPropTypes.js +115 -0
  211. package/dist/my_node_modules/prop-types/factoryWithThrowingShims.js +74 -0
  212. package/dist/my_node_modules/prop-types/factoryWithTypeCheckers.js +625 -0
  213. package/dist/my_node_modules/prop-types/index.js +27 -0
  214. package/dist/my_node_modules/prop-types/lib/ReactPropTypesSecret.js +21 -0
  215. package/dist/my_node_modules/prop-types/lib/has.js +11 -0
  216. package/dist/my_node_modules/qs/lib/formats.js +23 -0
  217. package/dist/my_node_modules/qs/lib/index.js +15 -0
  218. package/dist/my_node_modules/qs/lib/parse.js +265 -0
  219. package/dist/my_node_modules/qs/lib/stringify.js +330 -0
  220. package/dist/my_node_modules/qs/lib/utils.js +254 -0
  221. package/dist/my_node_modules/rc-motion/es/CSSMotion.js +149 -0
  222. package/dist/my_node_modules/rc-motion/es/DomWrapper.js +28 -0
  223. package/dist/my_node_modules/rc-motion/es/hooks/useDomMotionEvents.js +45 -0
  224. package/dist/my_node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.js +6 -0
  225. package/dist/my_node_modules/rc-motion/es/hooks/useNextFrame.js +36 -0
  226. package/dist/my_node_modules/rc-motion/es/hooks/useStatus.js +232 -0
  227. package/dist/my_node_modules/rc-motion/es/hooks/useStepQueue.js +69 -0
  228. package/dist/my_node_modules/rc-motion/es/index.js +4 -0
  229. package/dist/my_node_modules/rc-motion/es/interface.js +11 -0
  230. package/dist/my_node_modules/rc-motion/es/util/motion.js +85 -0
  231. package/dist/my_node_modules/rc-util/es/Dom/canUseDom.js +5 -0
  232. package/dist/my_node_modules/rc-util/es/Dom/findDOMNode.js +15 -0
  233. package/dist/my_node_modules/rc-util/es/hooks/useState.js +36 -0
  234. package/dist/my_node_modules/rc-util/es/raf.js +57 -0
  235. package/dist/my_node_modules/rc-util/es/ref.js +30 -0
  236. package/dist/my_node_modules/rc-util/lib/Children/toArray.js +39 -0
  237. package/dist/my_node_modules/react-is/cjs/react-is.development.js +190 -0
  238. package/dist/my_node_modules/react-is/cjs/react-is.production.min.js +26 -0
  239. package/dist/my_node_modules/react-is/index.js +21 -0
  240. package/dist/my_node_modules/shallowequal/index.js +48 -0
  241. package/dist/my_node_modules/side-channel/index.js +128 -0
  242. package/dist/my_node_modules/slick-carousel/slick/slick-theme.css.js +4 -0
  243. package/dist/my_node_modules/slick-carousel/slick/slick.css.js +4 -0
  244. package/dist/my_node_modules/style-inject/dist/style-inject.es.js +28 -0
  245. package/dist/my_node_modules/tslib/tslib.es6.js +110 -0
  246. package/dist/my_node_modules/uuid/index.js +13 -0
  247. package/dist/my_node_modules/uuid/lib/bytesToUuid.js +29 -0
  248. package/dist/my_node_modules/uuid/lib/rng-browser.js +39 -0
  249. package/dist/my_node_modules/uuid/v1.js +115 -0
  250. package/dist/my_node_modules/uuid/v4.js +35 -0
  251. package/dist/package.json +31 -0
  252. package/dist/src/components/assets/images/layout-icon/carouselLayout1.png.js +3 -0
  253. package/dist/src/components/assets/images/layout-icon/carouselLayout2.png.js +3 -0
  254. package/dist/src/components/assets/images/layout-icon/dividerLayout.svg.js +3 -0
  255. package/dist/src/components/assets/images/layout-icon/imageGalleryLayout1.png.js +3 -0
  256. package/dist/src/components/assets/images/layout-icon/imageGalleryLayout2.png.js +3 -0
  257. package/dist/src/components/assets/images/layout-icon/imageGalleryLayout3.png.js +3 -0
  258. package/dist/src/components/assets/images/layout-icon/layout-imagetext-m1-1.png.js +3 -0
  259. package/dist/src/components/assets/images/layout-icon/layout-imagetext-m1-2.png.js +3 -0
  260. package/dist/src/components/assets/images/layout-icon/layout-imagetext-m1-3.png.js +3 -0
  261. package/dist/src/components/assets/images/layout-icon/layout-imagetext-m2.png.js +3 -0
  262. package/dist/src/components/assets/images/layout-icon/layout-imagetext-m3.png.js +3 -0
  263. package/dist/src/components/assets/images/layout-icon/layout-imagetext-p1.png.js +3 -0
  264. package/dist/src/components/assets/images/layout-icon/layout-imagetext-p2.png.js +3 -0
  265. package/dist/src/components/assets/images/layout-icon/layout-imagetext-p4.png.js +3 -0
  266. package/dist/src/components/assets/images/layout-icon/layout-search.png.js +3 -0
  267. package/dist/src/components/assets/images/layout-icon/newsletter.svg.js +3 -0
  268. package/dist/src/components/assets/less/cylon-antd.less.js +3 -0
  269. package/dist/src/components/assets/less/index.less.js +4 -0
  270. package/dist/src/components/common/AlignSelector/index.js +65 -0
  271. package/dist/src/components/common/AlignSelector/index.less.js +4 -0
  272. package/dist/src/components/common/Button/index.js +75 -0
  273. package/dist/src/components/common/Button/index.less.js +4 -0
  274. package/dist/src/components/common/ButtonIconLayout/index.js +66 -0
  275. package/dist/src/components/common/ButtonIconLayout/index.less.js +4 -0
  276. package/dist/src/components/common/Collapse/index.js +323 -0
  277. package/dist/src/components/common/Collapse/index.less.js +4 -0
  278. package/dist/src/components/common/ColorPicker/index.js +94 -0
  279. package/dist/src/components/common/ColorPicker/index.less.js +4 -0
  280. package/dist/src/components/common/ColorPickerInput/index.js +76 -0
  281. package/dist/src/components/common/ColorPickerInput/index.less.js +4 -0
  282. package/dist/src/components/common/CountDown/index.js +110 -0
  283. package/dist/src/components/common/CountDown/index.less.js +4 -0
  284. package/dist/src/components/common/Field/index.js +43 -0
  285. package/dist/src/components/common/Field/index.less.js +4 -0
  286. package/dist/src/components/common/FontStyles/index.js +124 -0
  287. package/dist/src/components/common/FontStyles/index.less.js +4 -0
  288. package/dist/src/components/common/GroupList/defaultImg.png.js +3 -0
  289. package/dist/src/components/common/GroupList/index.js +170 -0
  290. package/dist/src/components/common/GroupList/index.less.js +4 -0
  291. package/dist/src/components/common/IconPicker/index.js +93 -0
  292. package/dist/src/components/common/IconPicker/index.less.js +4 -0
  293. package/dist/src/components/common/Iconfont/index.js +74 -0
  294. package/dist/src/components/common/Iconfont/index.less.js +4 -0
  295. package/dist/src/components/common/ImageModal/CommonModal/const.js +16 -0
  296. package/dist/src/components/common/ImageModal/CommonModal/index.js +33 -0
  297. package/dist/src/components/common/ImageModal/CommonSelPicCard/index.js +66 -0
  298. package/dist/src/components/common/ImageModal/CommonSelPicCard/index.less.js +4 -0
  299. package/dist/src/components/common/ImageModal/const.js +18 -0
  300. package/dist/src/components/common/ImageModal/index.js +547 -0
  301. package/dist/src/components/common/ImageModal/index.less.js +4 -0
  302. package/dist/src/components/common/ImagePicker/index.js +124 -0
  303. package/dist/src/components/common/ImagePicker/index.less.js +4 -0
  304. package/dist/src/components/common/InputNumber/index.js +54 -0
  305. package/dist/src/components/common/InputNumber/index.less.js +4 -0
  306. package/dist/src/components/common/LayoutSelector/imgs/center.png.js +3 -0
  307. package/dist/src/components/common/LayoutSelector/imgs/left.png.js +3 -0
  308. package/dist/src/components/common/LayoutSelector/imgs/right.png.js +3 -0
  309. package/dist/src/components/common/LayoutSelector/index.js +70 -0
  310. package/dist/src/components/common/LayoutSelector/index.less.js +4 -0
  311. package/dist/src/components/common/LinkModal/CatgTable/index.js +78 -0
  312. package/dist/src/components/common/LinkModal/CouponTable/index.js +111 -0
  313. package/dist/src/components/common/LinkModal/CustomTable/index.js +72 -0
  314. package/dist/src/components/common/LinkModal/FilteredProductModal/index.js +463 -0
  315. package/dist/src/components/common/LinkModal/FilteredProductModal/index.less.js +4 -0
  316. package/dist/src/components/common/LinkModal/FunctionTable/index.js +66 -0
  317. package/dist/src/components/common/LinkModal/ProductDetailPage/index.js +241 -0
  318. package/dist/src/components/common/LinkModal/ProductDetailPage/index.less.js +4 -0
  319. package/dist/src/components/common/LinkModal/index.js +112 -0
  320. package/dist/src/components/common/LinkModal/index.less.js +4 -0
  321. package/dist/src/components/common/NewImg/index.js +91 -0
  322. package/dist/src/components/common/ProductModal/index.js +556 -0
  323. package/dist/src/components/common/ProductModal/index.less.js +4 -0
  324. package/dist/src/components/common/ProductSource/index.js +91 -0
  325. package/dist/src/components/common/ProductSource/index.less.js +4 -0
  326. package/dist/src/components/common/RcCollapse/Collapse.js +176 -0
  327. package/dist/src/components/common/RcCollapse/Panel.js +146 -0
  328. package/dist/src/components/common/RcCollapse/PanelContent.js +41 -0
  329. package/dist/src/components/common/RcCollapse/index.js +6 -0
  330. package/dist/src/components/common/RcCollapse/index.less.js +4 -0
  331. package/dist/src/components/common/RcCollapse/motionUtil.js +37 -0
  332. package/dist/src/components/common/Slider/index.js +95 -0
  333. package/dist/src/components/common/Slider/index.less.js +4 -0
  334. package/dist/src/components/common/SwitchCollapse/index.js +162 -0
  335. package/dist/src/components/common/SwitchCollapse/index.less.js +4 -0
  336. package/dist/src/components/common/UrlPicker/index.js +81 -0
  337. package/dist/src/components/common/UrlPicker/index.less.js +4 -0
  338. package/dist/src/components/composite-comp/bol/components/Banner/defaultJSON.js +258 -0
  339. package/dist/src/components/composite-comp/bol/components/Banner/imgs/banner.png.js +3 -0
  340. package/dist/src/components/composite-comp/bol/components/Banner/index.js +34 -0
  341. package/dist/src/components/composite-comp/bol/components/Banner/mobile/index.js +176 -0
  342. package/dist/src/components/composite-comp/bol/components/Banner/mobile/index.less.js +4 -0
  343. package/dist/src/components/composite-comp/bol/components/Banner/pc/index.js +254 -0
  344. package/dist/src/components/composite-comp/bol/components/Banner/pc/index.less.js +4 -0
  345. package/dist/src/components/composite-comp/bol/components/Button/defaultJSON.js +93 -0
  346. package/dist/src/components/composite-comp/bol/components/Button/index.js +48 -0
  347. package/dist/src/components/composite-comp/bol/components/Button/index.less.js +4 -0
  348. package/dist/src/components/composite-comp/bol/components/Carousel/defaultJSON.js +287 -0
  349. package/dist/src/components/composite-comp/bol/components/Carousel/imgs/defaultImg.png.js +3 -0
  350. package/dist/src/components/composite-comp/bol/components/Carousel/index.js +37 -0
  351. package/dist/src/components/composite-comp/bol/components/Carousel/mobile/index.js +217 -0
  352. package/dist/src/components/composite-comp/bol/components/Carousel/mobile/index.less.js +4 -0
  353. package/dist/src/components/composite-comp/bol/components/Carousel/pc/index.js +208 -0
  354. package/dist/src/components/composite-comp/bol/components/Carousel/pc/index.less.js +4 -0
  355. package/dist/src/components/composite-comp/bol/components/Divider/defaultJSON.js +40 -0
  356. package/dist/src/components/composite-comp/bol/components/Divider/index.js +48 -0
  357. package/dist/src/components/composite-comp/bol/components/ImageGallery/defaultJSON.js +64 -0
  358. package/dist/src/components/composite-comp/bol/components/ImageGallery/index.js +30 -0
  359. package/dist/src/components/composite-comp/bol/components/ImageGallery/mobile/index.js +47 -0
  360. package/dist/src/components/composite-comp/bol/components/ImageGallery/mobile/index.less.js +4 -0
  361. package/dist/src/components/composite-comp/bol/components/ImageText/defaultJSON.js +540 -0
  362. package/dist/src/components/composite-comp/bol/components/ImageText/index.js +33 -0
  363. package/dist/src/components/composite-comp/bol/components/ImageText/mobile/index.js +145 -0
  364. package/dist/src/components/composite-comp/bol/components/ImageText/mobile/index.less.js +4 -0
  365. package/dist/src/components/composite-comp/bol/components/ImageText/pc/index.js +126 -0
  366. package/dist/src/components/composite-comp/bol/components/ImageText/pc/index.less.js +4 -0
  367. package/dist/src/components/composite-comp/bol/components/Newsletter/defaultJSON.js +114 -0
  368. package/dist/src/components/composite-comp/bol/components/Newsletter/index.js +65 -0
  369. package/dist/src/components/composite-comp/bol/components/Newsletter/index.less.js +4 -0
  370. package/dist/src/components/composite-comp/bol/components/Tag/defaultJSON.js +91 -0
  371. package/dist/src/components/composite-comp/bol/components/Tag/index.js +52 -0
  372. package/dist/src/components/composite-comp/bol/components/Tag/index.less.js +4 -0
  373. package/dist/src/components/composite-comp/bol/components/Text/defaultJSON.js +125 -0
  374. package/dist/src/components/composite-comp/bol/components/Text/index.js +68 -0
  375. package/dist/src/components/composite-comp/bol/components/Text/index.less.js +4 -0
  376. package/dist/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.js +73 -0
  377. package/dist/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.less.js +4 -0
  378. package/dist/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.js +200 -0
  379. package/dist/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.less.js +4 -0
  380. package/dist/src/components/composite-comp/bol/config-panels/BannerConfig/index.js +35 -0
  381. package/dist/src/components/composite-comp/bol/config-panels/ButtonCompConfig/ButtonConfigContent/index.js +79 -0
  382. package/dist/src/components/composite-comp/bol/config-panels/ButtonCompConfig/imgs/layout1.png.js +3 -0
  383. package/dist/src/components/composite-comp/bol/config-panels/ButtonCompConfig/imgs/layout2.png.js +3 -0
  384. package/dist/src/components/composite-comp/bol/config-panels/ButtonCompConfig/index.js +53 -0
  385. package/dist/src/components/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigImageGroup/index.js +91 -0
  386. package/dist/src/components/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.js +175 -0
  387. package/dist/src/components/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.less.js +4 -0
  388. package/dist/src/components/composite-comp/bol/config-panels/CarouselConfig/imgs/defaultImg.png.js +3 -0
  389. package/dist/src/components/composite-comp/bol/config-panels/CarouselConfig/index.js +54 -0
  390. package/dist/src/components/composite-comp/bol/config-panels/DividerConfig/DividerContentSetting/index.js +153 -0
  391. package/dist/src/components/composite-comp/bol/config-panels/DividerConfig/DividerSpacingSetting/index.js +66 -0
  392. package/dist/src/components/composite-comp/bol/config-panels/DividerConfig/index.js +44 -0
  393. package/dist/src/components/composite-comp/bol/config-panels/ImageGalleryConfig/ImageGalleryConfigImageGroup/index.js +91 -0
  394. package/dist/src/components/composite-comp/bol/config-panels/ImageGalleryConfig/imgs/defaultImg.png.js +3 -0
  395. package/dist/src/components/composite-comp/bol/config-panels/ImageGalleryConfig/index.js +44 -0
  396. package/dist/src/components/composite-comp/bol/config-panels/ImageTextConfig/ImageTextConfigGroup/index.js +74 -0
  397. package/dist/src/components/composite-comp/bol/config-panels/ImageTextConfig/index.js +170 -0
  398. package/dist/src/components/composite-comp/bol/config-panels/NewsletterConfig/InputField/index.js +143 -0
  399. package/dist/src/components/composite-comp/bol/config-panels/NewsletterConfig/NewsletterContentSetting/index.js +89 -0
  400. package/dist/src/components/composite-comp/bol/config-panels/NewsletterConfig/index.js +44 -0
  401. package/dist/src/components/composite-comp/bol/config-panels/TagCompConfig/TagConfigContent/index.js +88 -0
  402. package/dist/src/components/composite-comp/bol/config-panels/TagCompConfig/imgs/layout1.png.js +3 -0
  403. package/dist/src/components/composite-comp/bol/config-panels/TagCompConfig/index.js +48 -0
  404. package/dist/src/components/composite-comp/bol/config-panels/TextCompConfig/TextConfigContent/index.js +79 -0
  405. package/dist/src/components/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.js +85 -0
  406. package/dist/src/components/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.less.js +4 -0
  407. package/dist/src/components/composite-comp/bol/config-panels/TextCompConfig/imgs/layout1.png.js +3 -0
  408. package/dist/src/components/composite-comp/bol/config-panels/TextCompConfig/index.js +55 -0
  409. package/dist/src/components/composite-comp/bol/second-config-panels/BannerSecondConfig/index.js +109 -0
  410. package/dist/src/components/composite-comp/bol/second-config-panels/CarouselSecondConfig/index.js +107 -0
  411. package/dist/src/components/composite-comp/bol/second-config-panels/ImageTextSecondConfig/index.js +118 -0
  412. package/dist/src/components/composite-comp/bol/second-config-panels/TextSecondConfig/TextContentConfigContent/index.js +79 -0
  413. package/dist/src/components/composite-comp/bol/second-config-panels/TextSecondConfig/index.js +70 -0
  414. package/dist/src/components/composite-comp/common/components/ImageLabel/index.js +47 -0
  415. package/dist/src/components/composite-comp/common/components/ImageLabel/index.less.js +4 -0
  416. package/dist/src/components/composite-comp/common/components/ProductItem/index.js +121 -0
  417. package/dist/src/components/composite-comp/common/components/ProductItem/index.less.js +4 -0
  418. package/dist/src/components/composite-comp/common/config-panels/BackgroundConfig/index.js +89 -0
  419. package/dist/src/components/composite-comp/common/config-panels/CustomizeConfig/index.js +182 -0
  420. package/dist/src/components/composite-comp/common/config-panels/CustomizeConfig/index.less.js +4 -0
  421. package/dist/src/components/composite-comp/common/config-panels/SpacingConfig/index.js +133 -0
  422. package/dist/src/components/composite-comp/common/config-panels/SpacingConfig/index.less.js +4 -0
  423. package/dist/src/components/composite-comp/dito/components/FlashDeal/defaultJSON.js +176 -0
  424. package/dist/src/components/composite-comp/dito/components/FlashDeal/index.js +31 -0
  425. package/dist/src/components/composite-comp/dito/components/FlashDeal/mobile/imgs/defImg1.png.js +3 -0
  426. package/dist/src/components/composite-comp/dito/components/FlashDeal/mobile/imgs/defImg2.png.js +3 -0
  427. package/dist/src/components/composite-comp/dito/components/FlashDeal/mobile/imgs/defImg3.png.js +3 -0
  428. package/dist/src/components/composite-comp/dito/components/FlashDeal/mobile/index.js +233 -0
  429. package/dist/src/components/composite-comp/dito/components/FlashDeal/mobile/index.less.js +4 -0
  430. package/dist/src/components/composite-comp/dito/components/Recommend/defaultJSON.js +210 -0
  431. package/dist/src/components/composite-comp/dito/components/Recommend/index.js +31 -0
  432. package/dist/src/components/composite-comp/dito/components/Recommend/mobile/index.js +317 -0
  433. package/dist/src/components/composite-comp/dito/components/Recommend/mobile/index.less.js +4 -0
  434. package/dist/src/components/composite-comp/dito/components/SearchBar/defaultJSON.js +44 -0
  435. package/dist/src/components/composite-comp/dito/components/SearchBar/imgs/dito-logo.svg.js +3 -0
  436. package/dist/src/components/composite-comp/dito/components/SearchBar/index.js +31 -0
  437. package/dist/src/components/composite-comp/dito/components/SearchBar/mobile/index.js +89 -0
  438. package/dist/src/components/composite-comp/dito/components/SearchBar/mobile/index.less.js +4 -0
  439. package/dist/src/components/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigContent/index.js +121 -0
  440. package/dist/src/components/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigTitle/index.js +102 -0
  441. package/dist/src/components/composite-comp/dito/config-panels/FlashDealConfig/imgs/layout1.png.js +3 -0
  442. package/dist/src/components/composite-comp/dito/config-panels/FlashDealConfig/index.js +49 -0
  443. package/dist/src/components/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigContent/index.js +97 -0
  444. package/dist/src/components/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.js +89 -0
  445. package/dist/src/components/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.less.js +4 -0
  446. package/dist/src/components/composite-comp/dito/config-panels/RecommendConfig/imgs/defaultImg.png.js +3 -0
  447. package/dist/src/components/composite-comp/dito/config-panels/RecommendConfig/imgs/layout1.png.js +3 -0
  448. package/dist/src/components/composite-comp/dito/config-panels/RecommendConfig/index.js +49 -0
  449. package/dist/src/components/composite-comp/dito/config-panels/SearchBarConfig/index.js +115 -0
  450. package/dist/src/components/composite-comp/dito/second-config-panels/RecommendSecondConfig/index.js +156 -0
  451. package/dist/src/components/constants/component-types.js +48 -0
  452. package/dist/src/components/constants/index.js +74 -0
  453. package/dist/src/components/constants/layout.js +90 -0
  454. package/dist/src/components/core/Designer/CompListPanel/CompCard/index.js +33 -0
  455. package/dist/src/components/core/Designer/CompListPanel/CompCard/index.less.js +4 -0
  456. package/dist/src/components/core/Designer/CompListPanel/index.js +109 -0
  457. package/dist/src/components/core/Designer/CompListPanel/index.less.js +4 -0
  458. package/dist/src/components/core/Designer/ConfigPanel/index.js +246 -0
  459. package/dist/src/components/core/Designer/ConfigPanel/index.less.js +4 -0
  460. package/dist/src/components/core/Designer/History/index.js +82 -0
  461. package/dist/src/components/core/Designer/PageCompList/index.js +248 -0
  462. package/dist/src/components/core/Designer/PageCompList/index.less.js +4 -0
  463. package/dist/src/components/core/Designer/QuickMenuBar/index.js +130 -0
  464. package/dist/src/components/core/Designer/QuickMenuBar/index.less.js +4 -0
  465. package/dist/src/components/core/Designer/ViewArea/index.js +86 -0
  466. package/dist/src/components/core/Designer/ViewArea/index.less.js +4 -0
  467. package/dist/src/components/core/Designer/index.js +364 -0
  468. package/dist/src/components/core/Designer/index.less.js +4 -0
  469. package/dist/src/components/core/Renderer/index.js +55 -0
  470. package/dist/src/components/decorator/compositeDecorator.js +94 -0
  471. package/dist/src/components/decorator/metaDecorator.js +150 -0
  472. package/dist/src/components/index.js +4 -0
  473. package/dist/src/components/meta-comp/components/Button/index.js +113 -0
  474. package/dist/src/components/meta-comp/components/Button/index.less.js +4 -0
  475. package/dist/src/components/meta-comp/components/Image/index.js +133 -0
  476. package/dist/src/components/meta-comp/components/Image/index.less.js +4 -0
  477. package/dist/src/components/meta-comp/components/Text/index.js +385 -0
  478. package/dist/src/components/meta-comp/components/Text/index.less.js +4 -0
  479. package/dist/src/components/meta-comp/config-panels/BaseConfig.js +47 -0
  480. package/dist/src/components/meta-comp/config-panels/ButtonConfig/index.js +308 -0
  481. package/dist/src/components/meta-comp/config-panels/ButtonConfig/index.less.js +4 -0
  482. package/dist/src/components/meta-comp/config-panels/ImageConfig/index.js +224 -0
  483. package/dist/src/components/meta-comp/config-panels/ImageConfig/index.less.js +4 -0
  484. package/dist/src/components/meta-comp/config-panels/TextConfig/index.js +310 -0
  485. package/dist/src/components/meta-comp/config-panels/TextConfig/index.less.js +4 -0
  486. package/dist/src/components/mobx/Store.js +88 -0
  487. package/dist/src/components/mobx/index.js +12 -0
  488. package/dist/src/components/utils/androidUtil.js +22 -0
  489. package/dist/src/components/utils/businessUtil.js +214 -0
  490. package/dist/src/components/utils/commonUtil.js +240 -0
  491. package/dist/src/components/utils/coreUtil.js +108 -0
  492. package/dist/src/components/utils/currencyUtil.js +110 -0
  493. package/dist/src/components/utils/dataTreeUtils.js +93 -0
  494. package/dist/src/components/utils/dateUtil.js +30 -0
  495. package/dist/src/components/utils/storeUtil.js +113 -0
  496. package/es/composite-comp/bol/components/Banner/imgs/banner.png +0 -0
  497. package/es/composite-comp/bol/components/Banner/mobile/index.js +216 -0
  498. package/es/composite-comp/bol/components/Banner/mobile/index.less +73 -0
  499. package/es/composite-comp/bol/components/Banner/pc/index.js +278 -0
  500. package/es/composite-comp/bol/components/Banner/pc/index.less +78 -0
  501. package/es/composite-comp/bol/components/Button/index.js +103 -0
  502. package/es/composite-comp/bol/components/Button/index.less +47 -0
  503. package/es/composite-comp/bol/components/Carousel/imgs/defaultImg.png +0 -0
  504. package/es/composite-comp/bol/components/Carousel/index.js +93 -0
  505. package/es/composite-comp/bol/components/Carousel/mobile/index.js +289 -0
  506. package/es/composite-comp/bol/components/Carousel/mobile/index.less +81 -0
  507. package/es/composite-comp/bol/components/Carousel/pc/index.js +250 -0
  508. package/es/composite-comp/bol/components/Carousel/pc/index.less +81 -0
  509. package/es/composite-comp/bol/components/Divider/index.js +101 -0
  510. package/es/composite-comp/bol/components/ImageGallery/imgs/banner.png +0 -0
  511. package/es/composite-comp/bol/components/ImageGallery/index.js +84 -0
  512. package/es/composite-comp/bol/components/ImageGallery/mobile/index.js +83 -0
  513. package/es/composite-comp/bol/components/ImageGallery/mobile/index.less +73 -0
  514. package/es/composite-comp/bol/components/ImageText/index.js +88 -0
  515. package/es/composite-comp/bol/components/ImageText/mobile/index.js +183 -0
  516. package/es/composite-comp/bol/components/ImageText/mobile/index.less +288 -0
  517. package/es/composite-comp/bol/components/ImageText/pc/index.js +180 -0
  518. package/es/composite-comp/bol/components/ImageText/pc/index.less +110 -0
  519. package/es/composite-comp/bol/components/Newsletter/index.js +127 -0
  520. package/es/composite-comp/bol/components/Newsletter/index.less +75 -0
  521. package/es/composite-comp/bol/components/Tag/index.js +107 -0
  522. package/es/composite-comp/bol/components/Tag/index.less +34 -0
  523. package/es/composite-comp/bol/components/Text/index.js +123 -0
  524. package/es/composite-comp/bol/components/Text/index.less +61 -0
  525. package/es/composite-comp/bol/components/Text/slice.svg +1 -0
  526. package/es/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.js +126 -0
  527. package/es/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.less +16 -0
  528. package/es/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.js +225 -0
  529. package/es/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.less +9 -0
  530. package/es/composite-comp/bol/config-panels/BannerConfig/index.js +46 -0
  531. package/es/composite-comp/bol/config-panels/ButtonCompConfig/ButtonConfigContent/index.js +99 -0
  532. package/es/composite-comp/bol/config-panels/ButtonCompConfig/imgs/defaultImg.png +0 -0
  533. package/es/composite-comp/bol/config-panels/ButtonCompConfig/imgs/layout1.png +0 -0
  534. package/es/composite-comp/bol/config-panels/ButtonCompConfig/imgs/layout2.png +0 -0
  535. package/es/composite-comp/bol/config-panels/ButtonCompConfig/index.js +67 -0
  536. package/es/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigImageGroup/index.js +144 -0
  537. package/es/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigImageGroup/index.less +0 -0
  538. package/es/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.js +199 -0
  539. package/es/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.less +9 -0
  540. package/es/composite-comp/bol/config-panels/CarouselConfig/imgs/defaultImg.png +0 -0
  541. package/es/composite-comp/bol/config-panels/CarouselConfig/index.js +68 -0
  542. package/es/composite-comp/bol/config-panels/DividerConfig/DividerConfigSetting/index.js +98 -0
  543. package/es/composite-comp/bol/config-panels/DividerConfig/DividerConfigSetting/index.less +9 -0
  544. package/es/composite-comp/bol/config-panels/DividerConfig/DividerContentSetting/index.js +177 -0
  545. package/es/composite-comp/bol/config-panels/DividerConfig/DividerSpacingSetting/index.js +89 -0
  546. package/es/composite-comp/bol/config-panels/DividerConfig/index.js +57 -0
  547. package/es/composite-comp/bol/config-panels/ImageGalleryConfig/ImageGalleryConfigImageGroup/index.js +144 -0
  548. package/es/composite-comp/bol/config-panels/ImageGalleryConfig/ImageGalleryConfigImageGroup/index.less +0 -0
  549. package/es/composite-comp/bol/config-panels/ImageGalleryConfig/imgs/defaultImg.png +0 -0
  550. package/es/composite-comp/bol/config-panels/ImageGalleryConfig/index.js +57 -0
  551. package/es/composite-comp/bol/config-panels/ImageTextConfig/ImageTextConfigGroup/index.js +126 -0
  552. package/es/composite-comp/bol/config-panels/ImageTextConfig/index.js +196 -0
  553. package/es/composite-comp/bol/config-panels/NewsletterConfig/InputField/index.js +185 -0
  554. package/es/composite-comp/bol/config-panels/NewsletterConfig/NewsletterContentSetting/index.js +111 -0
  555. package/es/composite-comp/bol/config-panels/NewsletterConfig/index.js +57 -0
  556. package/es/composite-comp/bol/config-panels/TagCompConfig/TagConfigContent/index.js +109 -0
  557. package/es/composite-comp/bol/config-panels/TagCompConfig/imgs/defaultImg.png +0 -0
  558. package/es/composite-comp/bol/config-panels/TagCompConfig/imgs/layout1.png +0 -0
  559. package/es/composite-comp/bol/config-panels/TagCompConfig/imgs/layout2.png +0 -0
  560. package/es/composite-comp/bol/config-panels/TagCompConfig/index.js +61 -0
  561. package/es/composite-comp/bol/config-panels/TextCompConfig/TextConfigContent/index.js +99 -0
  562. package/es/composite-comp/bol/config-panels/TextCompConfig/TextConfigContent/index.less +0 -0
  563. package/es/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.js +138 -0
  564. package/es/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.less +16 -0
  565. package/es/composite-comp/bol/config-panels/TextCompConfig/imgs/defaultImg.png +0 -0
  566. package/es/composite-comp/bol/config-panels/TextCompConfig/imgs/layout1.png +0 -0
  567. package/es/composite-comp/bol/config-panels/TextCompConfig/index.js +69 -0
  568. package/es/composite-comp/bol/second-config-panels/BannerSecondConfig/index.js +151 -0
  569. package/es/composite-comp/bol/second-config-panels/BannerSecondConfig/index.less +3 -0
  570. package/es/composite-comp/bol/second-config-panels/CarouselSecondConfig/index.js +162 -0
  571. package/es/composite-comp/bol/second-config-panels/ImageGallerySecondConfig/index.js +82 -0
  572. package/es/composite-comp/bol/second-config-panels/ImageTextSecondConfig/index.js +143 -0
  573. package/es/composite-comp/bol/second-config-panels/TextSecondConfig/TextContentConfigContent/index.js +99 -0
  574. package/es/composite-comp/bol/second-config-panels/TextSecondConfig/TextContentConfigContent/index.less +0 -0
  575. package/es/composite-comp/bol/second-config-panels/TextSecondConfig/index.js +90 -0
  576. package/es/composite-comp/bol/second-config-panels/TextSecondConfig/index.less +3 -0
  577. package/es/composite-comp/common/components/ImageLabel/index.js +90 -0
  578. package/es/composite-comp/common/components/ImageLabel/index.less +35 -0
  579. package/es/composite-comp/common/components/ProductItem/index.js +191 -0
  580. package/es/composite-comp/common/components/ProductItem/index.less +121 -0
  581. package/es/composite-comp/common/config-panels/BackgroundConfig/index.js +109 -0
  582. package/es/composite-comp/common/config-panels/CustomizeConfig/index.js +234 -0
  583. package/es/composite-comp/common/config-panels/CustomizeConfig/index.less +21 -0
  584. package/es/composite-comp/common/config-panels/SpacingConfig/index.js +154 -0
  585. package/es/composite-comp/common/config-panels/SpacingConfig/index.less +17 -0
  586. package/es/composite-comp/dito/components/FlashDeal/index.js +86 -0
  587. package/es/composite-comp/dito/components/FlashDeal/mobile/imgs/defImg1.png +0 -0
  588. package/es/composite-comp/dito/components/FlashDeal/mobile/imgs/defImg2.png +0 -0
  589. package/es/composite-comp/dito/components/FlashDeal/mobile/imgs/defImg3.png +0 -0
  590. package/es/composite-comp/dito/components/FlashDeal/mobile/index.js +436 -0
  591. package/es/composite-comp/dito/components/FlashDeal/mobile/index.less +94 -0
  592. package/es/composite-comp/dito/components/Recommend/index.js +86 -0
  593. package/es/composite-comp/dito/components/Recommend/mobile/imgs/defImg1.png +0 -0
  594. package/es/composite-comp/dito/components/Recommend/mobile/imgs/defImg2.png +0 -0
  595. package/es/composite-comp/dito/components/Recommend/mobile/imgs/defImg3.png +0 -0
  596. package/es/composite-comp/dito/components/Recommend/mobile/index.js +530 -0
  597. package/es/composite-comp/dito/components/Recommend/mobile/index.less +79 -0
  598. package/es/composite-comp/dito/components/SearchBar/imgs/dito-logo.svg +6 -0
  599. package/es/composite-comp/dito/components/SearchBar/index.js +86 -0
  600. package/es/composite-comp/dito/components/SearchBar/mobile/index.js +108 -0
  601. package/es/composite-comp/dito/components/SearchBar/mobile/index.less +38 -0
  602. package/es/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigContent/index.js +143 -0
  603. package/es/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigContent/index.less +0 -0
  604. package/es/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigTitle/index.js +125 -0
  605. package/es/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigTitle/index.less +0 -0
  606. package/es/composite-comp/dito/config-panels/FlashDealConfig/imgs/layout1.png +0 -0
  607. package/es/composite-comp/dito/config-panels/FlashDealConfig/index.js +62 -0
  608. package/es/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigContent/index.js +118 -0
  609. package/es/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigContent/index.less +0 -0
  610. package/es/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.js +143 -0
  611. package/es/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.less +16 -0
  612. package/es/composite-comp/dito/config-panels/RecommendConfig/imgs/defaultImg.png +0 -0
  613. package/es/composite-comp/dito/config-panels/RecommendConfig/imgs/layout1.png +0 -0
  614. package/es/composite-comp/dito/config-panels/RecommendConfig/index.js +62 -0
  615. package/es/composite-comp/dito/config-panels/SearchBarConfig/index.js +138 -0
  616. package/es/composite-comp/dito/second-config-panels/RecommendSecondConfig/index.js +185 -0
  617. package/es/composite-comp/dito/second-config-panels/RecommendSecondConfig/index.less +3 -0
  618. package/es/core/Designer/CompListPanel/CompCard/index.js +42 -0
  619. package/es/core/Designer/CompListPanel/CompCard/index.less +69 -0
  620. package/es/meta-comp/components/Image/index.less +18 -0
  621. package/es/meta-comp/components/Text/index.less +38 -0
  622. package/es/meta-comp/config-panels/ButtonConfig/index.less +4 -0
  623. package/es/meta-comp/config-panels/ImageConfig/index.less +16 -0
  624. package/es/meta-comp/config-panels/TextConfig/index.less +24 -0
  625. package/lib/composite-comp/bol/components/Banner/imgs/banner.png +0 -0
  626. package/lib/composite-comp/bol/components/Banner/mobile/index.js +216 -0
  627. package/lib/composite-comp/bol/components/Banner/mobile/index.less +73 -0
  628. package/lib/composite-comp/bol/components/Banner/pc/index.js +278 -0
  629. package/lib/composite-comp/bol/components/Banner/pc/index.less +78 -0
  630. package/lib/composite-comp/bol/components/Button/index.less +47 -0
  631. package/lib/composite-comp/bol/components/Carousel/imgs/defaultImg.png +0 -0
  632. package/lib/composite-comp/bol/components/Carousel/index.js +93 -0
  633. package/lib/composite-comp/bol/components/Carousel/mobile/index.js +289 -0
  634. package/lib/composite-comp/bol/components/Carousel/mobile/index.less +81 -0
  635. package/lib/composite-comp/bol/components/Carousel/pc/index.js +250 -0
  636. package/lib/composite-comp/bol/components/Carousel/pc/index.less +81 -0
  637. package/lib/composite-comp/bol/components/Divider/index.js +101 -0
  638. package/lib/composite-comp/bol/components/ImageGallery/imgs/banner.png +0 -0
  639. package/lib/composite-comp/bol/components/ImageGallery/index.js +84 -0
  640. package/lib/composite-comp/bol/components/ImageGallery/mobile/index.js +83 -0
  641. package/lib/composite-comp/bol/components/ImageGallery/mobile/index.less +73 -0
  642. package/lib/composite-comp/bol/components/ImageText/index.js +88 -0
  643. package/lib/composite-comp/bol/components/ImageText/mobile/index.js +183 -0
  644. package/lib/composite-comp/bol/components/ImageText/mobile/index.less +288 -0
  645. package/lib/composite-comp/bol/components/ImageText/pc/index.js +180 -0
  646. package/lib/composite-comp/bol/components/ImageText/pc/index.less +110 -0
  647. package/lib/composite-comp/bol/components/Newsletter/index.js +127 -0
  648. package/lib/composite-comp/bol/components/Newsletter/index.less +75 -0
  649. package/lib/composite-comp/bol/components/Tag/index.js +107 -0
  650. package/lib/composite-comp/bol/components/Tag/index.less +34 -0
  651. package/lib/composite-comp/bol/components/Text/index.js +123 -0
  652. package/lib/composite-comp/bol/components/Text/index.less +61 -0
  653. package/lib/composite-comp/bol/components/Text/slice.svg +1 -0
  654. package/lib/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.js +126 -0
  655. package/lib/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.less +16 -0
  656. package/lib/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.js +225 -0
  657. package/lib/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.less +9 -0
  658. package/lib/composite-comp/bol/config-panels/BannerConfig/index.js +46 -0
  659. package/lib/composite-comp/bol/config-panels/ButtonCompConfig/ButtonConfigContent/index.js +99 -0
  660. package/lib/composite-comp/bol/config-panels/ButtonCompConfig/imgs/defaultImg.png +0 -0
  661. package/lib/composite-comp/bol/config-panels/ButtonCompConfig/imgs/layout1.png +0 -0
  662. package/lib/composite-comp/bol/config-panels/ButtonCompConfig/imgs/layout2.png +0 -0
  663. package/lib/composite-comp/bol/config-panels/ButtonCompConfig/index.js +67 -0
  664. package/lib/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigImageGroup/index.js +144 -0
  665. package/lib/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigImageGroup/index.less +0 -0
  666. package/lib/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.js +199 -0
  667. package/lib/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.less +9 -0
  668. package/lib/composite-comp/bol/config-panels/CarouselConfig/imgs/defaultImg.png +0 -0
  669. package/lib/composite-comp/bol/config-panels/CarouselConfig/index.js +68 -0
  670. package/lib/composite-comp/bol/config-panels/DividerConfig/DividerConfigSetting/index.js +98 -0
  671. package/lib/composite-comp/bol/config-panels/DividerConfig/DividerConfigSetting/index.less +9 -0
  672. package/lib/composite-comp/bol/config-panels/DividerConfig/DividerContentSetting/index.js +177 -0
  673. package/lib/composite-comp/bol/config-panels/DividerConfig/DividerSpacingSetting/index.js +89 -0
  674. package/lib/composite-comp/bol/config-panels/DividerConfig/index.js +57 -0
  675. package/lib/composite-comp/bol/config-panels/ImageGalleryConfig/ImageGalleryConfigImageGroup/index.js +144 -0
  676. package/lib/composite-comp/bol/config-panels/ImageGalleryConfig/ImageGalleryConfigImageGroup/index.less +0 -0
  677. package/lib/composite-comp/bol/config-panels/ImageGalleryConfig/imgs/defaultImg.png +0 -0
  678. package/lib/composite-comp/bol/config-panels/ImageGalleryConfig/index.js +57 -0
  679. package/lib/composite-comp/bol/config-panels/ImageTextConfig/ImageTextConfigGroup/index.js +126 -0
  680. package/lib/composite-comp/bol/config-panels/ImageTextConfig/index.js +196 -0
  681. package/lib/composite-comp/bol/config-panels/NewsletterConfig/InputField/index.js +185 -0
  682. package/lib/composite-comp/bol/config-panels/NewsletterConfig/NewsletterContentSetting/index.js +111 -0
  683. package/lib/composite-comp/bol/config-panels/NewsletterConfig/index.js +57 -0
  684. package/lib/composite-comp/bol/config-panels/TagCompConfig/TagConfigContent/index.js +109 -0
  685. package/lib/composite-comp/bol/config-panels/TagCompConfig/imgs/defaultImg.png +0 -0
  686. package/lib/composite-comp/bol/config-panels/TagCompConfig/imgs/layout1.png +0 -0
  687. package/lib/composite-comp/bol/config-panels/TagCompConfig/imgs/layout2.png +0 -0
  688. package/lib/composite-comp/bol/config-panels/TagCompConfig/index.js +61 -0
  689. package/lib/composite-comp/bol/config-panels/TextCompConfig/TextConfigContent/index.js +99 -0
  690. package/lib/composite-comp/bol/config-panels/TextCompConfig/TextConfigContent/index.less +0 -0
  691. package/lib/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.js +138 -0
  692. package/lib/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.less +16 -0
  693. package/lib/composite-comp/bol/config-panels/TextCompConfig/imgs/defaultImg.png +0 -0
  694. package/lib/composite-comp/bol/config-panels/TextCompConfig/imgs/layout1.png +0 -0
  695. package/lib/composite-comp/bol/config-panels/TextCompConfig/index.js +69 -0
  696. package/lib/composite-comp/bol/second-config-panels/BannerSecondConfig/index.js +151 -0
  697. package/lib/composite-comp/bol/second-config-panels/BannerSecondConfig/index.less +3 -0
  698. package/lib/composite-comp/bol/second-config-panels/CarouselSecondConfig/index.js +162 -0
  699. package/lib/composite-comp/bol/second-config-panels/ImageGallerySecondConfig/index.js +82 -0
  700. package/lib/composite-comp/bol/second-config-panels/ImageTextSecondConfig/index.js +143 -0
  701. package/lib/composite-comp/bol/second-config-panels/TextSecondConfig/TextContentConfigContent/index.js +99 -0
  702. package/lib/composite-comp/bol/second-config-panels/TextSecondConfig/TextContentConfigContent/index.less +0 -0
  703. package/lib/composite-comp/bol/second-config-panels/TextSecondConfig/index.js +90 -0
  704. package/lib/composite-comp/bol/second-config-panels/TextSecondConfig/index.less +3 -0
  705. package/lib/composite-comp/common/components/ImageLabel/index.js +90 -0
  706. package/lib/composite-comp/common/components/ImageLabel/index.less +35 -0
  707. package/lib/composite-comp/common/components/ProductItem/index.js +191 -0
  708. package/lib/composite-comp/common/components/ProductItem/index.less +121 -0
  709. package/lib/composite-comp/common/config-panels/BackgroundConfig/index.js +109 -0
  710. package/lib/composite-comp/common/config-panels/CustomizeConfig/index.js +234 -0
  711. package/lib/composite-comp/common/config-panels/CustomizeConfig/index.less +21 -0
  712. package/lib/composite-comp/common/config-panels/SpacingConfig/index.js +154 -0
  713. package/lib/composite-comp/common/config-panels/SpacingConfig/index.less +17 -0
  714. package/lib/composite-comp/dito/components/FlashDeal/index.js +86 -0
  715. package/lib/composite-comp/dito/components/FlashDeal/mobile/imgs/defImg1.png +0 -0
  716. package/lib/composite-comp/dito/components/FlashDeal/mobile/imgs/defImg2.png +0 -0
  717. package/lib/composite-comp/dito/components/FlashDeal/mobile/imgs/defImg3.png +0 -0
  718. package/lib/composite-comp/dito/components/FlashDeal/mobile/index.js +436 -0
  719. package/lib/composite-comp/dito/components/FlashDeal/mobile/index.less +94 -0
  720. package/lib/composite-comp/dito/components/Recommend/index.js +86 -0
  721. package/lib/composite-comp/dito/components/Recommend/mobile/imgs/defImg1.png +0 -0
  722. package/lib/composite-comp/dito/components/Recommend/mobile/imgs/defImg2.png +0 -0
  723. package/lib/composite-comp/dito/components/Recommend/mobile/imgs/defImg3.png +0 -0
  724. package/lib/composite-comp/dito/components/Recommend/mobile/index.js +530 -0
  725. package/lib/composite-comp/dito/components/Recommend/mobile/index.less +79 -0
  726. package/lib/composite-comp/dito/components/SearchBar/imgs/dito-logo.svg +6 -0
  727. package/lib/composite-comp/dito/components/SearchBar/index.js +86 -0
  728. package/lib/composite-comp/dito/components/SearchBar/mobile/index.js +108 -0
  729. package/lib/composite-comp/dito/components/SearchBar/mobile/index.less +38 -0
  730. package/lib/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigContent/index.js +143 -0
  731. package/lib/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigContent/index.less +0 -0
  732. package/lib/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigTitle/index.js +125 -0
  733. package/lib/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigTitle/index.less +0 -0
  734. package/lib/composite-comp/dito/config-panels/FlashDealConfig/imgs/layout1.png +0 -0
  735. package/lib/composite-comp/dito/config-panels/FlashDealConfig/index.js +62 -0
  736. package/lib/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigContent/index.js +118 -0
  737. package/lib/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigContent/index.less +0 -0
  738. package/lib/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.js +143 -0
  739. package/lib/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.less +16 -0
  740. package/lib/composite-comp/dito/config-panels/RecommendConfig/imgs/defaultImg.png +0 -0
  741. package/lib/composite-comp/dito/config-panels/RecommendConfig/imgs/layout1.png +0 -0
  742. package/lib/composite-comp/dito/config-panels/RecommendConfig/index.js +62 -0
  743. package/lib/composite-comp/dito/config-panels/SearchBarConfig/index.js +138 -0
  744. package/lib/composite-comp/dito/second-config-panels/RecommendSecondConfig/index.js +185 -0
  745. package/lib/composite-comp/dito/second-config-panels/RecommendSecondConfig/index.less +3 -0
  746. package/lib/core/Designer/CompListPanel/CompCard/index.js +42 -0
  747. package/lib/core/Designer/CompListPanel/CompCard/index.less +69 -0
  748. package/lib/meta-comp/components/Button/index.less +19 -0
  749. package/lib/meta-comp/components/Image/index.less +18 -0
  750. package/lib/meta-comp/components/Text/index.less +38 -0
  751. package/lib/meta-comp/config-panels/ButtonConfig/index.less +4 -0
  752. package/lib/meta-comp/config-panels/ImageConfig/index.less +16 -0
  753. package/lib/meta-comp/config-panels/TextConfig/index.less +24 -0
  754. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ import _Symbol from './_Symbol.js';
2
+
3
+ var Symbol = _Symbol;
4
+
5
+ /** Used to convert symbols to primitives and strings. */
6
+ var symbolProto = Symbol ? Symbol.prototype : undefined,
7
+ symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;
8
+
9
+ /**
10
+ * Creates a clone of the `symbol` object.
11
+ *
12
+ * @private
13
+ * @param {Object} symbol The symbol object to clone.
14
+ * @returns {Object} Returns the cloned symbol object.
15
+ */
16
+ function cloneSymbol(symbol) {
17
+ return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};
18
+ }
19
+
20
+ var _cloneSymbol = cloneSymbol;
21
+
22
+ export { _cloneSymbol as default };
@@ -0,0 +1,20 @@
1
+ import _cloneArrayBuffer from './_cloneArrayBuffer.js';
2
+
3
+ var cloneArrayBuffer = _cloneArrayBuffer;
4
+
5
+ /**
6
+ * Creates a clone of `typedArray`.
7
+ *
8
+ * @private
9
+ * @param {Object} typedArray The typed array to clone.
10
+ * @param {boolean} [isDeep] Specify a deep clone.
11
+ * @returns {Object} Returns the cloned typed array.
12
+ */
13
+ function cloneTypedArray(typedArray, isDeep) {
14
+ var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;
15
+ return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
16
+ }
17
+
18
+ var _cloneTypedArray = cloneTypedArray;
19
+
20
+ export { _cloneTypedArray as default };
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Copies the values of `source` to `array`.
3
+ *
4
+ * @private
5
+ * @param {Array} source The array to copy values from.
6
+ * @param {Array} [array=[]] The array to copy values to.
7
+ * @returns {Array} Returns `array`.
8
+ */
9
+
10
+ function copyArray(source, array) {
11
+ var index = -1,
12
+ length = source.length;
13
+
14
+ array || (array = Array(length));
15
+ while (++index < length) {
16
+ array[index] = source[index];
17
+ }
18
+ return array;
19
+ }
20
+
21
+ var _copyArray = copyArray;
22
+
23
+ export { _copyArray as default };
@@ -0,0 +1,45 @@
1
+ import _assignValue from './_assignValue.js';
2
+ import _baseAssignValue from './_baseAssignValue.js';
3
+
4
+ var assignValue = _assignValue,
5
+ baseAssignValue = _baseAssignValue;
6
+
7
+ /**
8
+ * Copies properties of `source` to `object`.
9
+ *
10
+ * @private
11
+ * @param {Object} source The object to copy properties from.
12
+ * @param {Array} props The property identifiers to copy.
13
+ * @param {Object} [object={}] The object to copy properties to.
14
+ * @param {Function} [customizer] The function to customize copied values.
15
+ * @returns {Object} Returns `object`.
16
+ */
17
+ function copyObject(source, props, object, customizer) {
18
+ var isNew = !object;
19
+ object || (object = {});
20
+
21
+ var index = -1,
22
+ length = props.length;
23
+
24
+ while (++index < length) {
25
+ var key = props[index];
26
+
27
+ var newValue = customizer
28
+ ? customizer(object[key], source[key], key, object, source)
29
+ : undefined;
30
+
31
+ if (newValue === undefined) {
32
+ newValue = source[key];
33
+ }
34
+ if (isNew) {
35
+ baseAssignValue(object, key, newValue);
36
+ } else {
37
+ assignValue(object, key, newValue);
38
+ }
39
+ }
40
+ return object;
41
+ }
42
+
43
+ var _copyObject = copyObject;
44
+
45
+ export { _copyObject as default };
@@ -0,0 +1,21 @@
1
+ import _copyObject from './_copyObject.js';
2
+ import _getSymbols from './_getSymbols.js';
3
+
4
+ var copyObject = _copyObject,
5
+ getSymbols = _getSymbols;
6
+
7
+ /**
8
+ * Copies own symbols of `source` to `object`.
9
+ *
10
+ * @private
11
+ * @param {Object} source The object to copy symbols from.
12
+ * @param {Object} [object={}] The object to copy symbols to.
13
+ * @returns {Object} Returns `object`.
14
+ */
15
+ function copySymbols(source, object) {
16
+ return copyObject(source, getSymbols(source), object);
17
+ }
18
+
19
+ var _copySymbols = copySymbols;
20
+
21
+ export { _copySymbols as default };
@@ -0,0 +1,21 @@
1
+ import _copyObject from './_copyObject.js';
2
+ import _getSymbolsIn from './_getSymbolsIn.js';
3
+
4
+ var copyObject = _copyObject,
5
+ getSymbolsIn = _getSymbolsIn;
6
+
7
+ /**
8
+ * Copies own and inherited symbols of `source` to `object`.
9
+ *
10
+ * @private
11
+ * @param {Object} source The object to copy symbols from.
12
+ * @param {Object} [object={}] The object to copy symbols to.
13
+ * @returns {Object} Returns `object`.
14
+ */
15
+ function copySymbolsIn(source, object) {
16
+ return copyObject(source, getSymbolsIn(source), object);
17
+ }
18
+
19
+ var _copySymbolsIn = copySymbolsIn;
20
+
21
+ export { _copySymbolsIn as default };
@@ -0,0 +1,10 @@
1
+ import _root from './_root.js';
2
+
3
+ var root = _root;
4
+
5
+ /** Used to detect overreaching core-js shims. */
6
+ var coreJsData = root['__core-js_shared__'];
7
+
8
+ var _coreJsData = coreJsData;
9
+
10
+ export { _coreJsData as default };
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Creates a base function for methods like `_.forIn` and `_.forOwn`.
3
+ *
4
+ * @private
5
+ * @param {boolean} [fromRight] Specify iterating from right to left.
6
+ * @returns {Function} Returns the new base function.
7
+ */
8
+
9
+ function createBaseFor(fromRight) {
10
+ return function(object, iteratee, keysFunc) {
11
+ var index = -1,
12
+ iterable = Object(object),
13
+ props = keysFunc(object),
14
+ length = props.length;
15
+
16
+ while (length--) {
17
+ var key = props[fromRight ? length : ++index];
18
+ if (iteratee(iterable[key], key, iterable) === false) {
19
+ break;
20
+ }
21
+ }
22
+ return object;
23
+ };
24
+ }
25
+
26
+ var _createBaseFor = createBaseFor;
27
+
28
+ export { _createBaseFor as default };
@@ -0,0 +1,43 @@
1
+ import _baseToNumber from './_baseToNumber.js';
2
+ import _baseToString from './_baseToString.js';
3
+
4
+ var baseToNumber = _baseToNumber,
5
+ baseToString = _baseToString;
6
+
7
+ /**
8
+ * Creates a function that performs a mathematical operation on two values.
9
+ *
10
+ * @private
11
+ * @param {Function} operator The function to perform the operation.
12
+ * @param {number} [defaultValue] The value used for `undefined` arguments.
13
+ * @returns {Function} Returns the new mathematical operation function.
14
+ */
15
+ function createMathOperation(operator, defaultValue) {
16
+ return function(value, other) {
17
+ var result;
18
+ if (value === undefined && other === undefined) {
19
+ return defaultValue;
20
+ }
21
+ if (value !== undefined) {
22
+ result = value;
23
+ }
24
+ if (other !== undefined) {
25
+ if (result === undefined) {
26
+ return other;
27
+ }
28
+ if (typeof value == 'string' || typeof other == 'string') {
29
+ value = baseToString(value);
30
+ other = baseToString(other);
31
+ } else {
32
+ value = baseToNumber(value);
33
+ other = baseToNumber(other);
34
+ }
35
+ result = operator(value, other);
36
+ }
37
+ return result;
38
+ };
39
+ }
40
+
41
+ var _createMathOperation = createMathOperation;
42
+
43
+ export { _createMathOperation as default };
@@ -0,0 +1,15 @@
1
+ import _getNative from './_getNative.js';
2
+
3
+ var getNative = _getNative;
4
+
5
+ var defineProperty = (function() {
6
+ try {
7
+ var func = getNative(Object, 'defineProperty');
8
+ func({}, '', {});
9
+ return func;
10
+ } catch (e) {}
11
+ }());
12
+
13
+ var _defineProperty = defineProperty;
14
+
15
+ export { _defineProperty as default };
@@ -0,0 +1,90 @@
1
+ import _SetCache from './_SetCache.js';
2
+ import _arraySome from './_arraySome.js';
3
+ import _cacheHas from './_cacheHas.js';
4
+
5
+ var SetCache = _SetCache,
6
+ arraySome = _arraySome,
7
+ cacheHas = _cacheHas;
8
+
9
+ /** Used to compose bitmasks for value comparisons. */
10
+ var COMPARE_PARTIAL_FLAG = 1,
11
+ COMPARE_UNORDERED_FLAG = 2;
12
+
13
+ /**
14
+ * A specialized version of `baseIsEqualDeep` for arrays with support for
15
+ * partial deep comparisons.
16
+ *
17
+ * @private
18
+ * @param {Array} array The array to compare.
19
+ * @param {Array} other The other array to compare.
20
+ * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
21
+ * @param {Function} customizer The function to customize comparisons.
22
+ * @param {Function} equalFunc The function to determine equivalents of values.
23
+ * @param {Object} stack Tracks traversed `array` and `other` objects.
24
+ * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.
25
+ */
26
+ function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
27
+ var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
28
+ arrLength = array.length,
29
+ othLength = other.length;
30
+
31
+ if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
32
+ return false;
33
+ }
34
+ // Check that cyclic values are equal.
35
+ var arrStacked = stack.get(array);
36
+ var othStacked = stack.get(other);
37
+ if (arrStacked && othStacked) {
38
+ return arrStacked == other && othStacked == array;
39
+ }
40
+ var index = -1,
41
+ result = true,
42
+ seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined;
43
+
44
+ stack.set(array, other);
45
+ stack.set(other, array);
46
+
47
+ // Ignore non-index properties.
48
+ while (++index < arrLength) {
49
+ var arrValue = array[index],
50
+ othValue = other[index];
51
+
52
+ if (customizer) {
53
+ var compared = isPartial
54
+ ? customizer(othValue, arrValue, index, other, array, stack)
55
+ : customizer(arrValue, othValue, index, array, other, stack);
56
+ }
57
+ if (compared !== undefined) {
58
+ if (compared) {
59
+ continue;
60
+ }
61
+ result = false;
62
+ break;
63
+ }
64
+ // Recursively compare arrays (susceptible to call stack limits).
65
+ if (seen) {
66
+ if (!arraySome(other, function(othValue, othIndex) {
67
+ if (!cacheHas(seen, othIndex) &&
68
+ (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {
69
+ return seen.push(othIndex);
70
+ }
71
+ })) {
72
+ result = false;
73
+ break;
74
+ }
75
+ } else if (!(
76
+ arrValue === othValue ||
77
+ equalFunc(arrValue, othValue, bitmask, customizer, stack)
78
+ )) {
79
+ result = false;
80
+ break;
81
+ }
82
+ }
83
+ stack['delete'](array);
84
+ stack['delete'](other);
85
+ return result;
86
+ }
87
+
88
+ var _equalArrays = equalArrays;
89
+
90
+ export { _equalArrays as default };
@@ -0,0 +1,121 @@
1
+ import _Symbol from './_Symbol.js';
2
+ import _Uint8Array from './_Uint8Array.js';
3
+ import eq_1 from './eq.js';
4
+ import _equalArrays from './_equalArrays.js';
5
+ import _mapToArray from './_mapToArray.js';
6
+ import _setToArray from './_setToArray.js';
7
+
8
+ var Symbol = _Symbol,
9
+ Uint8Array = _Uint8Array,
10
+ eq = eq_1,
11
+ equalArrays = _equalArrays,
12
+ mapToArray = _mapToArray,
13
+ setToArray = _setToArray;
14
+
15
+ /** Used to compose bitmasks for value comparisons. */
16
+ var COMPARE_PARTIAL_FLAG = 1,
17
+ COMPARE_UNORDERED_FLAG = 2;
18
+
19
+ /** `Object#toString` result references. */
20
+ var boolTag = '[object Boolean]',
21
+ dateTag = '[object Date]',
22
+ errorTag = '[object Error]',
23
+ mapTag = '[object Map]',
24
+ numberTag = '[object Number]',
25
+ regexpTag = '[object RegExp]',
26
+ setTag = '[object Set]',
27
+ stringTag = '[object String]',
28
+ symbolTag = '[object Symbol]';
29
+
30
+ var arrayBufferTag = '[object ArrayBuffer]',
31
+ dataViewTag = '[object DataView]';
32
+
33
+ /** Used to convert symbols to primitives and strings. */
34
+ var symbolProto = Symbol ? Symbol.prototype : undefined,
35
+ symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;
36
+
37
+ /**
38
+ * A specialized version of `baseIsEqualDeep` for comparing objects of
39
+ * the same `toStringTag`.
40
+ *
41
+ * **Note:** This function only supports comparing values with tags of
42
+ * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.
43
+ *
44
+ * @private
45
+ * @param {Object} object The object to compare.
46
+ * @param {Object} other The other object to compare.
47
+ * @param {string} tag The `toStringTag` of the objects to compare.
48
+ * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
49
+ * @param {Function} customizer The function to customize comparisons.
50
+ * @param {Function} equalFunc The function to determine equivalents of values.
51
+ * @param {Object} stack Tracks traversed `object` and `other` objects.
52
+ * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
53
+ */
54
+ function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {
55
+ switch (tag) {
56
+ case dataViewTag:
57
+ if ((object.byteLength != other.byteLength) ||
58
+ (object.byteOffset != other.byteOffset)) {
59
+ return false;
60
+ }
61
+ object = object.buffer;
62
+ other = other.buffer;
63
+
64
+ case arrayBufferTag:
65
+ if ((object.byteLength != other.byteLength) ||
66
+ !equalFunc(new Uint8Array(object), new Uint8Array(other))) {
67
+ return false;
68
+ }
69
+ return true;
70
+
71
+ case boolTag:
72
+ case dateTag:
73
+ case numberTag:
74
+ // Coerce booleans to `1` or `0` and dates to milliseconds.
75
+ // Invalid dates are coerced to `NaN`.
76
+ return eq(+object, +other);
77
+
78
+ case errorTag:
79
+ return object.name == other.name && object.message == other.message;
80
+
81
+ case regexpTag:
82
+ case stringTag:
83
+ // Coerce regexes to strings and treat strings, primitives and objects,
84
+ // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring
85
+ // for more details.
86
+ return object == (other + '');
87
+
88
+ case mapTag:
89
+ var convert = mapToArray;
90
+
91
+ case setTag:
92
+ var isPartial = bitmask & COMPARE_PARTIAL_FLAG;
93
+ convert || (convert = setToArray);
94
+
95
+ if (object.size != other.size && !isPartial) {
96
+ return false;
97
+ }
98
+ // Assume cyclic values are equal.
99
+ var stacked = stack.get(object);
100
+ if (stacked) {
101
+ return stacked == other;
102
+ }
103
+ bitmask |= COMPARE_UNORDERED_FLAG;
104
+
105
+ // Recursively compare objects (susceptible to call stack limits).
106
+ stack.set(object, other);
107
+ var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);
108
+ stack['delete'](object);
109
+ return result;
110
+
111
+ case symbolTag:
112
+ if (symbolValueOf) {
113
+ return symbolValueOf.call(object) == symbolValueOf.call(other);
114
+ }
115
+ }
116
+ return false;
117
+ }
118
+
119
+ var _equalByTag = equalByTag;
120
+
121
+ export { _equalByTag as default };
@@ -0,0 +1,94 @@
1
+ import _getAllKeys from './_getAllKeys.js';
2
+
3
+ var getAllKeys = _getAllKeys;
4
+
5
+ /** Used to compose bitmasks for value comparisons. */
6
+ var COMPARE_PARTIAL_FLAG = 1;
7
+
8
+ /** Used for built-in method references. */
9
+ var objectProto = Object.prototype;
10
+
11
+ /** Used to check objects for own properties. */
12
+ var hasOwnProperty = objectProto.hasOwnProperty;
13
+
14
+ /**
15
+ * A specialized version of `baseIsEqualDeep` for objects with support for
16
+ * partial deep comparisons.
17
+ *
18
+ * @private
19
+ * @param {Object} object The object to compare.
20
+ * @param {Object} other The other object to compare.
21
+ * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.
22
+ * @param {Function} customizer The function to customize comparisons.
23
+ * @param {Function} equalFunc The function to determine equivalents of values.
24
+ * @param {Object} stack Tracks traversed `object` and `other` objects.
25
+ * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
26
+ */
27
+ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
28
+ var isPartial = bitmask & COMPARE_PARTIAL_FLAG,
29
+ objProps = getAllKeys(object),
30
+ objLength = objProps.length,
31
+ othProps = getAllKeys(other),
32
+ othLength = othProps.length;
33
+
34
+ if (objLength != othLength && !isPartial) {
35
+ return false;
36
+ }
37
+ var index = objLength;
38
+ while (index--) {
39
+ var key = objProps[index];
40
+ if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {
41
+ return false;
42
+ }
43
+ }
44
+ // Check that cyclic values are equal.
45
+ var objStacked = stack.get(object);
46
+ var othStacked = stack.get(other);
47
+ if (objStacked && othStacked) {
48
+ return objStacked == other && othStacked == object;
49
+ }
50
+ var result = true;
51
+ stack.set(object, other);
52
+ stack.set(other, object);
53
+
54
+ var skipCtor = isPartial;
55
+ while (++index < objLength) {
56
+ key = objProps[index];
57
+ var objValue = object[key],
58
+ othValue = other[key];
59
+
60
+ if (customizer) {
61
+ var compared = isPartial
62
+ ? customizer(othValue, objValue, key, other, object, stack)
63
+ : customizer(objValue, othValue, key, object, other, stack);
64
+ }
65
+ // Recursively compare objects (susceptible to call stack limits).
66
+ if (!(compared === undefined
67
+ ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack))
68
+ : compared
69
+ )) {
70
+ result = false;
71
+ break;
72
+ }
73
+ skipCtor || (skipCtor = key == 'constructor');
74
+ }
75
+ if (result && !skipCtor) {
76
+ var objCtor = object.constructor,
77
+ othCtor = other.constructor;
78
+
79
+ // Non `Object` object instances with different constructors are not equal.
80
+ if (objCtor != othCtor &&
81
+ ('constructor' in object && 'constructor' in other) &&
82
+ !(typeof objCtor == 'function' && objCtor instanceof objCtor &&
83
+ typeof othCtor == 'function' && othCtor instanceof othCtor)) {
84
+ result = false;
85
+ }
86
+ }
87
+ stack['delete'](object);
88
+ stack['delete'](other);
89
+ return result;
90
+ }
91
+
92
+ var _equalObjects = equalObjects;
93
+
94
+ export { _equalObjects as default };
@@ -0,0 +1,9 @@
1
+ import { commonjsGlobal } from '../../_virtual/_commonjsHelpers.js';
2
+
3
+ /** Detect free variable `global` from Node.js. */
4
+
5
+ var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
6
+
7
+ var _freeGlobal = freeGlobal;
8
+
9
+ export { _freeGlobal as default };
@@ -0,0 +1,22 @@
1
+ import _baseGetAllKeys from './_baseGetAllKeys.js';
2
+ import _getSymbols from './_getSymbols.js';
3
+ import keys_1 from './keys.js';
4
+
5
+ var baseGetAllKeys = _baseGetAllKeys,
6
+ getSymbols = _getSymbols,
7
+ keys = keys_1;
8
+
9
+ /**
10
+ * Creates an array of own enumerable property names and symbols of `object`.
11
+ *
12
+ * @private
13
+ * @param {Object} object The object to query.
14
+ * @returns {Array} Returns the array of property names and symbols.
15
+ */
16
+ function getAllKeys(object) {
17
+ return baseGetAllKeys(object, keys, getSymbols);
18
+ }
19
+
20
+ var _getAllKeys = getAllKeys;
21
+
22
+ export { _getAllKeys as default };
@@ -0,0 +1,23 @@
1
+ import _baseGetAllKeys from './_baseGetAllKeys.js';
2
+ import _getSymbolsIn from './_getSymbolsIn.js';
3
+ import keysIn_1 from './keysIn.js';
4
+
5
+ var baseGetAllKeys = _baseGetAllKeys,
6
+ getSymbolsIn = _getSymbolsIn,
7
+ keysIn = keysIn_1;
8
+
9
+ /**
10
+ * Creates an array of own and inherited enumerable property names and
11
+ * symbols of `object`.
12
+ *
13
+ * @private
14
+ * @param {Object} object The object to query.
15
+ * @returns {Array} Returns the array of property names and symbols.
16
+ */
17
+ function getAllKeysIn(object) {
18
+ return baseGetAllKeys(object, keysIn, getSymbolsIn);
19
+ }
20
+
21
+ var _getAllKeysIn = getAllKeysIn;
22
+
23
+ export { _getAllKeysIn as default };
@@ -0,0 +1,22 @@
1
+ import _isKeyable from './_isKeyable.js';
2
+
3
+ var isKeyable = _isKeyable;
4
+
5
+ /**
6
+ * Gets the data for `map`.
7
+ *
8
+ * @private
9
+ * @param {Object} map The map to query.
10
+ * @param {string} key The reference key.
11
+ * @returns {*} Returns the map data.
12
+ */
13
+ function getMapData(map, key) {
14
+ var data = map.__data__;
15
+ return isKeyable(key)
16
+ ? data[typeof key == 'string' ? 'string' : 'hash']
17
+ : data.map;
18
+ }
19
+
20
+ var _getMapData = getMapData;
21
+
22
+ export { _getMapData as default };
@@ -0,0 +1,29 @@
1
+ import _isStrictComparable from './_isStrictComparable.js';
2
+ import keys_1 from './keys.js';
3
+
4
+ var isStrictComparable = _isStrictComparable,
5
+ keys = keys_1;
6
+
7
+ /**
8
+ * Gets the property names, values, and compare flags of `object`.
9
+ *
10
+ * @private
11
+ * @param {Object} object The object to query.
12
+ * @returns {Array} Returns the match data of `object`.
13
+ */
14
+ function getMatchData(object) {
15
+ var result = keys(object),
16
+ length = result.length;
17
+
18
+ while (length--) {
19
+ var key = result[length],
20
+ value = object[key];
21
+
22
+ result[length] = [key, value, isStrictComparable(value)];
23
+ }
24
+ return result;
25
+ }
26
+
27
+ var _getMatchData = getMatchData;
28
+
29
+ export { _getMatchData as default };