@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.
- package/_virtual/index5.js +1 -1
- package/my_node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +11 -0
- package/my_node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +5 -0
- package/my_node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +9 -0
- package/my_node_modules/@babel/runtime/helpers/esm/classCallCheck.js +7 -0
- package/my_node_modules/@babel/runtime/helpers/esm/createClass.js +20 -0
- package/my_node_modules/@babel/runtime/helpers/esm/createSuper.js +22 -0
- package/my_node_modules/@babel/runtime/helpers/esm/defineProperty.js +16 -0
- package/my_node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +8 -0
- package/my_node_modules/@babel/runtime/helpers/esm/inherits.js +21 -0
- package/my_node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +14 -0
- package/my_node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +31 -0
- package/my_node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +5 -0
- package/my_node_modules/@babel/runtime/helpers/esm/objectSpread2.js +29 -0
- package/my_node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +14 -0
- package/my_node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +9 -0
- package/my_node_modules/@babel/runtime/helpers/esm/slicedToArray.js +10 -0
- package/my_node_modules/@babel/runtime/helpers/esm/typeof.js +11 -0
- package/my_node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +12 -0
- package/my_node_modules/@babel/runtime/helpers/interopRequireDefault.js +11 -0
- package/my_node_modules/call-bind/callBound.js +19 -0
- package/my_node_modules/call-bind/index.js +52 -0
- package/my_node_modules/classnames/index.js +61 -0
- package/my_node_modules/function-bind/implementation.js +52 -0
- package/my_node_modules/function-bind/index.js +7 -0
- package/my_node_modules/get-intrinsic/index.js +338 -0
- package/my_node_modules/has/src/index.js +7 -0
- package/my_node_modules/has-symbols/index.js +15 -0
- package/my_node_modules/has-symbols/shams.js +42 -0
- package/my_node_modules/lodash/_DataView.js +12 -0
- package/my_node_modules/lodash/_Hash.js +40 -0
- package/my_node_modules/lodash/_ListCache.js +40 -0
- package/my_node_modules/lodash/_Map.js +12 -0
- package/my_node_modules/lodash/_MapCache.js +40 -0
- package/my_node_modules/lodash/_Promise.js +12 -0
- package/my_node_modules/lodash/_Set.js +12 -0
- package/my_node_modules/lodash/_SetCache.js +33 -0
- package/my_node_modules/lodash/_Stack.js +36 -0
- package/my_node_modules/lodash/_Symbol.js +10 -0
- package/my_node_modules/lodash/_Uint8Array.js +10 -0
- package/my_node_modules/lodash/_WeakMap.js +12 -0
- package/my_node_modules/lodash/_arrayEach.js +25 -0
- package/my_node_modules/lodash/_arrayFilter.js +28 -0
- package/my_node_modules/lodash/_arrayLikeKeys.js +59 -0
- package/my_node_modules/lodash/_arrayMap.js +24 -0
- package/my_node_modules/lodash/_arrayPush.js +23 -0
- package/my_node_modules/lodash/_arraySome.js +26 -0
- package/my_node_modules/lodash/_assignValue.js +33 -0
- package/my_node_modules/lodash/_assocIndexOf.js +25 -0
- package/my_node_modules/lodash/_baseAssign.js +22 -0
- package/my_node_modules/lodash/_baseAssignIn.js +22 -0
- package/my_node_modules/lodash/_baseAssignValue.js +29 -0
- package/my_node_modules/lodash/_baseClone.js +193 -0
- package/my_node_modules/lodash/_baseCreate.js +34 -0
- package/my_node_modules/lodash/_baseFindIndex.js +27 -0
- package/my_node_modules/lodash/_baseFor.js +20 -0
- package/my_node_modules/lodash/_baseForOwn.js +21 -0
- package/my_node_modules/lodash/_baseGet.js +29 -0
- package/my_node_modules/lodash/_baseGetAllKeys.js +25 -0
- package/my_node_modules/lodash/_baseGetTag.js +34 -0
- package/my_node_modules/lodash/_baseHasIn.js +16 -0
- package/my_node_modules/lodash/_baseIsArguments.js +23 -0
- package/my_node_modules/lodash/_baseIsEqual.js +33 -0
- package/my_node_modules/lodash/_baseIsEqualDeep.js +95 -0
- package/my_node_modules/lodash/_baseIsMap.js +23 -0
- package/my_node_modules/lodash/_baseIsMatch.js +67 -0
- package/my_node_modules/lodash/_baseIsNative.js +54 -0
- package/my_node_modules/lodash/_baseIsSet.js +23 -0
- package/my_node_modules/lodash/_baseIsTypedArray.js +66 -0
- package/my_node_modules/lodash/_baseIteratee.js +39 -0
- package/my_node_modules/lodash/_baseKeys.js +35 -0
- package/my_node_modules/lodash/_baseKeysIn.js +39 -0
- package/my_node_modules/lodash/_baseMatches.js +28 -0
- package/my_node_modules/lodash/_baseMatchesProperty.js +43 -0
- package/my_node_modules/lodash/_baseProperty.js +17 -0
- package/my_node_modules/lodash/_basePropertyDeep.js +20 -0
- package/my_node_modules/lodash/_baseTimes.js +23 -0
- package/my_node_modules/lodash/_baseToNumber.js +28 -0
- package/my_node_modules/lodash/_baseToString.js +44 -0
- package/my_node_modules/lodash/_baseTrim.js +23 -0
- package/my_node_modules/lodash/_baseUnary.js +17 -0
- package/my_node_modules/lodash/_cacheHas.js +16 -0
- package/my_node_modules/lodash/_castPath.js +28 -0
- package/my_node_modules/lodash/_cloneArrayBuffer.js +20 -0
- package/my_node_modules/lodash/_cloneBuffer.js +40 -0
- package/my_node_modules/lodash/_cloneDataView.js +20 -0
- package/my_node_modules/lodash/_cloneRegExp.js +20 -0
- package/my_node_modules/lodash/_cloneSymbol.js +22 -0
- package/my_node_modules/lodash/_cloneTypedArray.js +20 -0
- package/my_node_modules/lodash/_copyArray.js +23 -0
- package/my_node_modules/lodash/_copyObject.js +45 -0
- package/my_node_modules/lodash/_copySymbols.js +21 -0
- package/my_node_modules/lodash/_copySymbolsIn.js +21 -0
- package/my_node_modules/lodash/_coreJsData.js +10 -0
- package/my_node_modules/lodash/_createBaseFor.js +28 -0
- package/my_node_modules/lodash/_createMathOperation.js +43 -0
- package/my_node_modules/lodash/_defineProperty.js +15 -0
- package/my_node_modules/lodash/_equalArrays.js +90 -0
- package/my_node_modules/lodash/_equalByTag.js +121 -0
- package/my_node_modules/lodash/_equalObjects.js +94 -0
- package/my_node_modules/lodash/_freeGlobal.js +9 -0
- package/my_node_modules/lodash/_getAllKeys.js +22 -0
- package/my_node_modules/lodash/_getAllKeysIn.js +23 -0
- package/my_node_modules/lodash/_getMapData.js +22 -0
- package/my_node_modules/lodash/_getMatchData.js +29 -0
- package/my_node_modules/lodash/_getNative.js +22 -0
- package/my_node_modules/lodash/_getPrototype.js +10 -0
- package/my_node_modules/lodash/_getRawTag.js +50 -0
- package/my_node_modules/lodash/_getSymbols.js +35 -0
- package/my_node_modules/lodash/_getSymbolsIn.js +32 -0
- package/my_node_modules/lodash/_getTag.js +68 -0
- package/my_node_modules/lodash/_getValue.js +16 -0
- package/my_node_modules/lodash/_hasPath.js +48 -0
- package/my_node_modules/lodash/_hashClear.js +19 -0
- package/my_node_modules/lodash/_hashDelete.js +20 -0
- package/my_node_modules/lodash/_hashGet.js +34 -0
- package/my_node_modules/lodash/_hashHas.js +27 -0
- package/my_node_modules/lodash/_hashSet.js +27 -0
- package/my_node_modules/lodash/_initCloneArray.js +29 -0
- package/my_node_modules/lodash/_initCloneByTag.js +85 -0
- package/my_node_modules/lodash/_initCloneObject.js +24 -0
- package/my_node_modules/lodash/_isIndex.js +28 -0
- package/my_node_modules/lodash/_isKey.js +34 -0
- package/my_node_modules/lodash/_isKeyable.js +18 -0
- package/my_node_modules/lodash/_isMasked.js +24 -0
- package/my_node_modules/lodash/_isPrototype.js +21 -0
- package/my_node_modules/lodash/_isStrictComparable.js +19 -0
- package/my_node_modules/lodash/_listCacheClear.js +16 -0
- package/my_node_modules/lodash/_listCacheDelete.js +39 -0
- package/my_node_modules/lodash/_listCacheGet.js +23 -0
- package/my_node_modules/lodash/_listCacheHas.js +20 -0
- package/my_node_modules/lodash/_listCacheSet.js +30 -0
- package/my_node_modules/lodash/_mapCacheClear.js +27 -0
- package/my_node_modules/lodash/_mapCacheDelete.js +22 -0
- package/my_node_modules/lodash/_mapCacheGet.js +20 -0
- package/my_node_modules/lodash/_mapCacheHas.js +20 -0
- package/my_node_modules/lodash/_mapCacheSet.js +26 -0
- package/my_node_modules/lodash/_mapToArray.js +21 -0
- package/my_node_modules/lodash/_matchesStrictComparable.js +23 -0
- package/my_node_modules/lodash/_memoizeCapped.js +30 -0
- package/my_node_modules/lodash/_nativeCreate.js +10 -0
- package/my_node_modules/lodash/_nativeKeys.js +10 -0
- package/my_node_modules/lodash/_nativeKeysIn.js +23 -0
- package/my_node_modules/lodash/_nodeUtil.js +35 -0
- package/my_node_modules/lodash/_objectToString.js +25 -0
- package/my_node_modules/lodash/_overArg.js +18 -0
- package/my_node_modules/lodash/_root.js +13 -0
- package/my_node_modules/lodash/_setCacheAdd.js +22 -0
- package/my_node_modules/lodash/_setCacheHas.js +17 -0
- package/my_node_modules/lodash/_setToArray.js +21 -0
- package/my_node_modules/lodash/_stackClear.js +19 -0
- package/my_node_modules/lodash/_stackDelete.js +21 -0
- package/my_node_modules/lodash/_stackGet.js +17 -0
- package/my_node_modules/lodash/_stackHas.js +17 -0
- package/my_node_modules/lodash/_stackSet.js +40 -0
- package/my_node_modules/lodash/_stringToPath.js +31 -0
- package/my_node_modules/lodash/_toKey.js +25 -0
- package/my_node_modules/lodash/_toSource.js +29 -0
- package/my_node_modules/lodash/_trimmedEndIndex.js +22 -0
- package/my_node_modules/lodash/cloneDeep.js +33 -0
- package/my_node_modules/lodash/divide.js +26 -0
- package/my_node_modules/lodash/eq.js +40 -0
- package/my_node_modules/lodash/findIndex.js +61 -0
- package/my_node_modules/lodash/get.js +37 -0
- package/my_node_modules/lodash/hasIn.js +39 -0
- package/my_node_modules/lodash/identity.js +24 -0
- package/my_node_modules/lodash/isArguments.js +41 -0
- package/my_node_modules/lodash/isArray.js +29 -0
- package/my_node_modules/lodash/isArrayLike.js +38 -0
- package/my_node_modules/lodash/isBuffer.js +44 -0
- package/my_node_modules/lodash/isEmpty.js +89 -0
- package/my_node_modules/lodash/isFunction.js +42 -0
- package/my_node_modules/lodash/isLength.js +38 -0
- package/my_node_modules/lodash/isMap.js +34 -0
- package/my_node_modules/lodash/isObject.js +34 -0
- package/my_node_modules/lodash/isObjectLike.js +32 -0
- package/my_node_modules/lodash/isSet.js +34 -0
- package/my_node_modules/lodash/isSymbol.js +34 -0
- package/my_node_modules/lodash/isTypedArray.js +34 -0
- package/my_node_modules/lodash/keys.js +43 -0
- package/my_node_modules/lodash/keysIn.js +38 -0
- package/my_node_modules/lodash/mapKeys.js +42 -0
- package/my_node_modules/lodash/memoize.js +77 -0
- package/my_node_modules/lodash/property.js +39 -0
- package/my_node_modules/lodash/stubArray.js +26 -0
- package/my_node_modules/lodash/stubFalse.js +21 -0
- package/my_node_modules/lodash/toFinite.js +46 -0
- package/my_node_modules/lodash/toInteger.js +40 -0
- package/my_node_modules/lodash/toNumber.js +70 -0
- package/my_node_modules/lodash/toString.js +32 -0
- package/my_node_modules/object-assign/index.js +99 -0
- package/my_node_modules/object-inspect/index.js +516 -0
- package/my_node_modules/prop-types/checkPropTypes.js +115 -0
- package/my_node_modules/prop-types/factoryWithThrowingShims.js +74 -0
- package/my_node_modules/prop-types/factoryWithTypeCheckers.js +625 -0
- package/my_node_modules/prop-types/index.js +27 -0
- package/my_node_modules/prop-types/lib/ReactPropTypesSecret.js +21 -0
- package/my_node_modules/prop-types/lib/has.js +11 -0
- package/my_node_modules/qs/lib/formats.js +23 -0
- package/my_node_modules/qs/lib/index.js +15 -0
- package/my_node_modules/qs/lib/parse.js +265 -0
- package/my_node_modules/qs/lib/stringify.js +330 -0
- package/my_node_modules/qs/lib/utils.js +254 -0
- package/my_node_modules/rc-motion/es/CSSMotion.js +149 -0
- package/my_node_modules/rc-motion/es/DomWrapper.js +28 -0
- package/my_node_modules/rc-motion/es/hooks/useDomMotionEvents.js +45 -0
- package/my_node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.js +6 -0
- package/my_node_modules/rc-motion/es/hooks/useNextFrame.js +36 -0
- package/my_node_modules/rc-motion/es/hooks/useStatus.js +232 -0
- package/my_node_modules/rc-motion/es/hooks/useStepQueue.js +69 -0
- package/my_node_modules/rc-motion/es/index.js +4 -0
- package/my_node_modules/rc-motion/es/interface.js +11 -0
- package/my_node_modules/rc-motion/es/util/motion.js +85 -0
- package/my_node_modules/rc-util/es/Dom/canUseDom.js +5 -0
- package/my_node_modules/rc-util/es/Dom/findDOMNode.js +15 -0
- package/my_node_modules/rc-util/es/hooks/useState.js +36 -0
- package/my_node_modules/rc-util/es/raf.js +57 -0
- package/my_node_modules/rc-util/es/ref.js +30 -0
- package/my_node_modules/rc-util/lib/Children/toArray.js +39 -0
- package/my_node_modules/react-is/cjs/react-is.development.js +190 -0
- package/my_node_modules/react-is/cjs/react-is.production.min.js +26 -0
- package/my_node_modules/react-is/index.js +21 -0
- package/my_node_modules/shallowequal/index.js +48 -0
- package/my_node_modules/side-channel/index.js +128 -0
- package/my_node_modules/slick-carousel/slick/slick-theme.css.js +4 -0
- package/my_node_modules/slick-carousel/slick/slick.css.js +4 -0
- package/my_node_modules/style-inject/dist/style-inject.es.js +28 -0
- package/my_node_modules/tslib/tslib.es6.js +110 -0
- package/my_node_modules/uuid/index.js +13 -0
- package/my_node_modules/uuid/lib/bytesToUuid.js +29 -0
- package/my_node_modules/uuid/lib/rng-browser.js +39 -0
- package/my_node_modules/uuid/v1.js +115 -0
- package/my_node_modules/uuid/v4.js +35 -0
- package/package.json +3 -1
- package/src/components/assets/less/cylon-antd.less.js +1 -1
- package/src/components/assets/less/index.less.js +1 -1
- package/src/components/common/AlignSelector/index.js +2 -2
- package/src/components/common/AlignSelector/index.less.js +1 -1
- package/src/components/common/Button/index.js +2 -2
- package/src/components/common/Button/index.less.js +1 -1
- package/src/components/common/ButtonIconLayout/index.js +2 -2
- package/src/components/common/ButtonIconLayout/index.less.js +1 -1
- package/src/components/common/Collapse/index.js +1 -1
- package/src/components/common/Collapse/index.less.js +1 -1
- package/src/components/common/ColorPicker/index.js +1 -1
- package/src/components/common/ColorPicker/index.less.js +1 -1
- package/src/components/common/ColorPickerInput/index.js +2 -2
- package/src/components/common/ColorPickerInput/index.less.js +1 -1
- package/src/components/common/CountDown/index.js +1 -1
- package/src/components/common/CountDown/index.less.js +1 -1
- package/src/components/common/Field/index.js +2 -2
- package/src/components/common/Field/index.less.js +1 -1
- package/src/components/common/FontStyles/index.js +2 -2
- package/src/components/common/FontStyles/index.less.js +1 -1
- package/src/components/common/GroupList/index.js +1 -1
- package/src/components/common/GroupList/index.less.js +1 -1
- package/src/components/common/IconPicker/index.js +2 -2
- package/src/components/common/IconPicker/index.less.js +1 -1
- package/src/components/common/Iconfont/index.js +2 -2
- package/src/components/common/Iconfont/index.less.js +1 -1
- package/src/components/common/ImageModal/CommonSelPicCard/index.less.js +1 -1
- package/src/components/common/ImageModal/index.js +3 -3
- package/src/components/common/ImageModal/index.less.js +1 -1
- package/src/components/common/ImagePicker/index.js +1 -1
- package/src/components/common/ImagePicker/index.less.js +1 -1
- package/src/components/common/InputNumber/index.js +1 -1
- package/src/components/common/InputNumber/index.less.js +1 -1
- package/src/components/common/LayoutSelector/index.js +2 -2
- package/src/components/common/LayoutSelector/index.less.js +1 -1
- package/src/components/common/LinkModal/CatgTable/index.js +1 -1
- package/src/components/common/LinkModal/CouponTable/index.js +1 -1
- package/src/components/common/LinkModal/CustomTable/index.js +1 -1
- package/src/components/common/LinkModal/FilteredProductModal/index.js +1 -1
- package/src/components/common/LinkModal/FilteredProductModal/index.less.js +1 -1
- package/src/components/common/LinkModal/FunctionTable/index.js +1 -1
- package/src/components/common/LinkModal/ProductDetailPage/index.js +1 -1
- package/src/components/common/LinkModal/ProductDetailPage/index.less.js +1 -1
- package/src/components/common/LinkModal/index.less.js +1 -1
- package/src/components/common/NewImg/index.js +3 -3
- package/src/components/common/ProductModal/index.js +1 -1
- package/src/components/common/ProductModal/index.less.js +1 -1
- package/src/components/common/ProductSource/index.js +1 -1
- package/src/components/common/ProductSource/index.less.js +1 -1
- package/src/components/common/RcCollapse/Collapse.js +4 -4
- package/src/components/common/RcCollapse/Panel.js +5 -5
- package/src/components/common/RcCollapse/PanelContent.js +1 -1
- package/src/components/common/RcCollapse/index.less.js +1 -1
- package/src/components/common/Slider/index.js +2 -2
- package/src/components/common/Slider/index.less.js +1 -1
- package/src/components/common/SwitchCollapse/index.js +1 -1
- package/src/components/common/SwitchCollapse/index.less.js +1 -1
- package/src/components/common/UrlPicker/index.js +1 -1
- package/src/components/common/UrlPicker/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/Banner/defaultJSON.js +1 -1
- package/src/components/composite-comp/bol/components/Banner/index.js +3 -3
- package/src/components/composite-comp/bol/components/Banner/mobile/index.js +2 -2
- package/src/components/composite-comp/bol/components/Banner/mobile/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/Banner/pc/index.js +4 -4
- package/src/components/composite-comp/bol/components/Banner/pc/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/Button/defaultJSON.js +2 -2
- package/src/components/composite-comp/bol/components/Button/index.js +2 -2
- package/src/components/composite-comp/bol/components/Button/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/Carousel/defaultJSON.js +3 -2
- package/src/components/composite-comp/bol/components/Carousel/index.js +1 -1
- package/src/components/composite-comp/bol/components/Carousel/mobile/index.js +4 -4
- package/src/components/composite-comp/bol/components/Carousel/mobile/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/Carousel/pc/index.js +4 -4
- package/src/components/composite-comp/bol/components/Carousel/pc/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/Divider/defaultJSON.js +1 -1
- package/src/components/composite-comp/bol/components/Divider/index.js +1 -1
- package/src/components/composite-comp/bol/components/ImageGallery/defaultJSON.js +1 -1
- package/src/components/composite-comp/bol/components/ImageGallery/index.js +1 -1
- package/src/components/composite-comp/bol/components/ImageGallery/mobile/index.js +1 -1
- package/src/components/composite-comp/bol/components/ImageGallery/mobile/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/ImageText/defaultJSON.js +7 -2
- package/src/components/composite-comp/bol/components/ImageText/index.js +1 -1
- package/src/components/composite-comp/bol/components/ImageText/mobile/index.js +5 -3
- package/src/components/composite-comp/bol/components/ImageText/mobile/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/ImageText/pc/index.js +21 -7
- package/src/components/composite-comp/bol/components/ImageText/pc/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/Newsletter/defaultJSON.js +2 -2
- package/src/components/composite-comp/bol/components/Newsletter/index.js +2 -2
- package/src/components/composite-comp/bol/components/Newsletter/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/Tag/defaultJSON.js +2 -2
- package/src/components/composite-comp/bol/components/Tag/index.js +2 -2
- package/src/components/composite-comp/bol/components/Tag/index.less.js +1 -1
- package/src/components/composite-comp/bol/components/Text/defaultJSON.js +2 -2
- package/src/components/composite-comp/bol/components/Text/index.js +2 -2
- package/src/components/composite-comp/bol/components/Text/index.less.js +1 -1
- package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.js +1 -1
- package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.less.js +1 -1
- package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.less.js +1 -1
- package/src/components/composite-comp/bol/config-panels/ButtonCompConfig/ButtonConfigContent/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigImageGroup/index.js +1 -1
- package/src/components/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/CarouselConfig/CarouselConfigSetting/index.less.js +1 -1
- package/src/components/composite-comp/bol/config-panels/DividerConfig/DividerContentSetting/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/DividerConfig/DividerSpacingSetting/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/ImageGalleryConfig/ImageGalleryConfigImageGroup/index.js +1 -1
- package/src/components/composite-comp/bol/config-panels/ImageTextConfig/ImageTextConfigGroup/index.js +1 -1
- package/src/components/composite-comp/bol/config-panels/ImageTextConfig/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/NewsletterConfig/InputField/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/NewsletterConfig/NewsletterContentSetting/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/TagCompConfig/TagConfigContent/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/TextCompConfig/TextConfigContent/index.js +3 -3
- package/src/components/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.js +1 -1
- package/src/components/composite-comp/bol/config-panels/TextCompConfig/TextConfigGroup/index.less.js +1 -1
- package/src/components/composite-comp/bol/second-config-panels/BannerSecondConfig/index.js +3 -3
- package/src/components/composite-comp/bol/second-config-panels/CarouselSecondConfig/index.js +1 -1
- package/src/components/composite-comp/bol/second-config-panels/ImageTextSecondConfig/index.js +6 -4
- package/src/components/composite-comp/bol/second-config-panels/TextSecondConfig/TextContentConfigContent/index.js +3 -3
- package/src/components/composite-comp/bol/second-config-panels/TextSecondConfig/index.js +3 -3
- package/src/components/composite-comp/common/components/ImageLabel/index.js +2 -2
- package/src/components/composite-comp/common/components/ImageLabel/index.less.js +1 -1
- package/src/components/composite-comp/common/components/ProductItem/index.js +1 -1
- package/src/components/composite-comp/common/components/ProductItem/index.less.js +1 -1
- package/src/components/composite-comp/common/config-panels/BackgroundConfig/index.js +3 -3
- package/src/components/composite-comp/common/config-panels/CustomizeConfig/index.js +3 -3
- package/src/components/composite-comp/common/config-panels/CustomizeConfig/index.less.js +1 -1
- package/src/components/composite-comp/common/config-panels/SpacingConfig/index.js +3 -3
- package/src/components/composite-comp/common/config-panels/SpacingConfig/index.less.js +1 -1
- package/src/components/composite-comp/dito/components/FlashDeal/defaultJSON.js +1 -1
- package/src/components/composite-comp/dito/components/FlashDeal/index.js +1 -1
- package/src/components/composite-comp/dito/components/FlashDeal/mobile/index.js +1 -1
- package/src/components/composite-comp/dito/components/FlashDeal/mobile/index.less.js +1 -1
- package/src/components/composite-comp/dito/components/Recommend/defaultJSON.js +1 -1
- package/src/components/composite-comp/dito/components/Recommend/index.js +1 -1
- package/src/components/composite-comp/dito/components/Recommend/mobile/index.js +1 -1
- package/src/components/composite-comp/dito/components/Recommend/mobile/index.less.js +1 -1
- package/src/components/composite-comp/dito/components/SearchBar/defaultJSON.js +1 -1
- package/src/components/composite-comp/dito/components/SearchBar/index.js +1 -1
- package/src/components/composite-comp/dito/components/SearchBar/mobile/index.js +3 -3
- package/src/components/composite-comp/dito/components/SearchBar/mobile/index.less.js +1 -1
- package/src/components/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigContent/index.js +3 -3
- package/src/components/composite-comp/dito/config-panels/FlashDealConfig/FlashDealConfigTitle/index.js +3 -3
- package/src/components/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigContent/index.js +3 -3
- package/src/components/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.js +1 -1
- package/src/components/composite-comp/dito/config-panels/RecommendConfig/RecommendConfigGroup/index.less.js +1 -1
- package/src/components/composite-comp/dito/config-panels/SearchBarConfig/index.js +3 -3
- package/src/components/composite-comp/dito/second-config-panels/RecommendSecondConfig/index.js +1 -1
- package/src/components/core/Designer/CompListPanel/CompCard/index.less.js +1 -1
- package/src/components/core/Designer/CompListPanel/index.js +2 -2
- package/src/components/core/Designer/CompListPanel/index.less.js +1 -1
- package/src/components/core/Designer/ConfigPanel/index.js +1 -1
- package/src/components/core/Designer/ConfigPanel/index.less.js +1 -1
- package/src/components/core/Designer/History/index.js +1 -1
- package/src/components/core/Designer/PageCompList/index.js +4 -4
- package/src/components/core/Designer/PageCompList/index.less.js +1 -1
- package/src/components/core/Designer/QuickMenuBar/index.js +2 -2
- package/src/components/core/Designer/QuickMenuBar/index.less.js +1 -1
- package/src/components/core/Designer/ViewArea/index.js +3 -3
- package/src/components/core/Designer/ViewArea/index.less.js +1 -1
- package/src/components/core/Designer/index.js +2 -2
- package/src/components/core/Designer/index.less.js +1 -1
- package/src/components/core/Renderer/index.js +1 -1
- package/src/components/decorator/compositeDecorator.js +1 -1
- package/src/components/decorator/metaDecorator.js +1 -1
- package/src/components/meta-comp/components/Button/index.js +2 -2
- package/src/components/meta-comp/components/Button/index.less.js +1 -1
- package/src/components/meta-comp/components/Image/index.js +16 -4
- package/src/components/meta-comp/components/Image/index.less.js +1 -1
- package/src/components/meta-comp/components/Text/index.js +2 -2
- package/src/components/meta-comp/components/Text/index.less.js +1 -1
- package/src/components/meta-comp/config-panels/BaseConfig.js +1 -1
- package/src/components/meta-comp/config-panels/ButtonConfig/index.js +3 -3
- package/src/components/meta-comp/config-panels/ButtonConfig/index.less.js +1 -1
- package/src/components/meta-comp/config-panels/ImageConfig/index.js +72 -27
- package/src/components/meta-comp/config-panels/ImageConfig/index.less.js +1 -1
- package/src/components/meta-comp/config-panels/TextConfig/index.js +3 -3
- package/src/components/meta-comp/config-panels/TextConfig/index.less.js +1 -1
- package/src/components/utils/commonUtil.js +19 -2
- package/src/components/utils/coreUtil.js +1 -1
- package/src/components/utils/currencyUtil.js +2 -2
- package/src/components/utils/dataTreeUtils.js +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../
|
|
1
|
+
import styleInject from '../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_m-url-picker__p9VJx .index_input-url__E-Mfy {\n width: 100%;\n height: 40px;\n background: #FFFFFF;\n border: 1px solid #D2D9E5;\n border-radius: 8px;\n padding: 9px 14px;\n display: flex;\n align-items: center;\n /* 使用webkit内核的浏览器 */\n /* Firefox版本4-18 */\n /* Firefox版本19+ */\n /* IE浏览器 */\n}\n.index_m-url-picker__p9VJx .index_input-url__E-Mfy input {\n border: none;\n outline: none;\n height: 24px;\n flex-grow: 1;\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 14px;\n color: #232F46;\n}\n.index_m-url-picker__p9VJx .index_input-url__E-Mfy input::-webkit-input-placeholder {\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 14px;\n color: #8493AF;\n}\n.index_m-url-picker__p9VJx .index_input-url__E-Mfy input:-moz-placeholder {\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 14px;\n color: #8493AF;\n}\n.index_m-url-picker__p9VJx .index_input-url__E-Mfy input::-moz-placeholder {\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 14px;\n color: #8493AF;\n}\n.index_m-url-picker__p9VJx .index_input-url__E-Mfy input:-ms-input-placeholder {\n font-family: 'Open Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 14px;\n color: #8493AF;\n}\n.index_m-url-picker__p9VJx .index_input-url__E-Mfy .index_icon-btns__kjcKv {\n display: flex;\n align-items: center;\n}\n.index_m-url-picker__p9VJx .index_input-url__E-Mfy .index_icon-btns__kjcKv > span {\n margin-left: 12px;\n cursor: pointer;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default, { Component } from 'react';
|
|
3
3
|
import BannerPc from './pc/index.js';
|
|
4
4
|
import BannerMobile from './mobile/index.js';
|
|
@@ -15,8 +15,8 @@ function (_super) {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
Banner.prototype.render = function () {
|
|
18
|
-
var nodeData = this.props.nodeData;
|
|
19
|
-
|
|
18
|
+
var nodeData = this.props.nodeData; // console.log('---banner', nodeData);
|
|
19
|
+
|
|
20
20
|
return /*#__PURE__*/React__default.createElement("div", null, window.magicDesign.device === 'pc' ? /*#__PURE__*/React__default.createElement(BannerPc, {
|
|
21
21
|
data: nodeData
|
|
22
22
|
}) : /*#__PURE__*/React__default.createElement(BannerMobile, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { __extends } from '../../../../../../../
|
|
1
|
+
import { __extends } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import classNames from '../../../../../../../
|
|
3
|
+
import classNames from '../../../../../../../my_my_node_modules/classnames/index.js';
|
|
4
4
|
import { Carousel } from 'antd';
|
|
5
5
|
import './index.less.js';
|
|
6
6
|
import { store } from '../../../../../mobx/index.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_m-banner-mobile__-pLQc {\n position: relative;\n}\n.index_m-banner-mobile__-pLQc .index_carouselItem__60C1U {\n height: 386px;\n position: relative;\n display: flex;\n}\n.index_m-banner-mobile__-pLQc .index_carouselItem__60C1U .index_carouseContent__QROKR {\n padding: 80px 28px 0;\n position: relative;\n z-index: 2;\n display: flex;\n flex-direction: column;\n margin-bottom: auto;\n}\n.index_m-banner-mobile__-pLQc .index_carouselItem__60C1U .index_title__9gBzo {\n margin-bottom: 8px;\n}\n.index_m-banner-mobile__-pLQc .index_carouselItem__60C1U .index_sub-title__IzStK {\n margin-bottom: 20px;\n}\n.index_m-banner-mobile__-pLQc .index_carouselItem__60C1U .index_btn-wrap__zgVTO {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n}\n.index_m-banner-mobile__-pLQc .index_carouselItem__60C1U .index_btn-wrap__zgVTO .index_btn__jkzPm {\n margin-right: 12px;\n}\n.index_m-banner-mobile__-pLQc .index_swiper-ban__cckJN {\n position: absolute;\n width: 100%;\n bottom: 10px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.index_m-banner-mobile__-pLQc .index_swiper-ban__cckJN .index_ban__3LkkJ {\n font-size: 16px;\n width: 1.5em;\n height: 0.3em;\n background: #FFF;\n cursor: inherit;\n margin-right: 0.3em;\n transition: all 0.5s;\n}\n.index_m-banner-mobile__-pLQc .index_swiper-ban__cckJN .index_ban__3LkkJ.index_active__Nn5EX {\n width: 1.5em;\n opacity: 1;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { __extends } from '../../../../../../../
|
|
1
|
+
import { __extends } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import classNames from '../../../../../../../
|
|
3
|
+
import classNames from '../../../../../../../my_my_node_modules/classnames/index.js';
|
|
4
4
|
import { Carousel } from 'antd';
|
|
5
5
|
import './index.less.js';
|
|
6
6
|
import Text from '../../../../../meta-comp/components/Text/index.js';
|
|
@@ -23,8 +23,8 @@ import '../../../../../common/Slider/index.js';
|
|
|
23
23
|
import '../../../../../common/FontStyles/index.js';
|
|
24
24
|
import '../../../../../common/ButtonIconLayout/index.js';
|
|
25
25
|
import 'axios';
|
|
26
|
-
import '../../../../../../../
|
|
27
|
-
import '../../../../../../../
|
|
26
|
+
import '../../../../../../../my_my_node_modules/qs/lib/stringify.js';
|
|
27
|
+
import '../../../../../../../my_my_node_modules/qs/lib/utils.js';
|
|
28
28
|
import '../../../../../common/ProductModal/index.js';
|
|
29
29
|
import '../../../../../common/ProductSource/index.less.js';
|
|
30
30
|
import { computeStyle } from '../../../../../utils/businessUtil.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_m-banner-pc__2B6sk {\n position: relative;\n}\n.index_m-banner-pc__2B6sk .index_swiper-ban__Qin-o {\n position: absolute;\n width: 100%;\n bottom: 20px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.index_m-banner-pc__2B6sk .index_swiper-ban__Qin-o .index_ban__QUyn5 {\n font-size: 16px;\n width: 1em;\n height: 0.3em;\n background: #FFF;\n cursor: inherit;\n margin-right: 0.3em;\n transition: all 0.5s;\n}\n.index_m-banner-pc__2B6sk .index_swiper-ban__Qin-o .index_ban__QUyn5.index_active__BQfgr {\n width: 1.5em;\n opacity: 1;\n}\n.index_m-banner-pc__2B6sk .index_turnPage__E56Ka {\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n z-index: 3;\n cursor: pointer;\n}\n.index_m-banner-pc__2B6sk .index_leftBtn__vz0jN {\n left: 20px;\n}\n.index_m-banner-pc__2B6sk .index_rightBtn__8I75P {\n right: 20px;\n}\n.index_m-banner-pc__2B6sk .index_carouselItem__6x9q3 {\n height: 360px;\n display: flex;\n position: relative;\n}\n.index_m-banner-pc__2B6sk .index_carouselItem__6x9q3 .index_carouseContent__UdT6C {\n padding: 100px 80px 0;\n position: relative;\n z-index: 2;\n display: flex;\n flex-direction: column;\n margin-bottom: auto;\n}\n.index_m-banner-pc__2B6sk .index_carouselItem__6x9q3 .index_title__effje {\n margin-bottom: 8px;\n}\n.index_m-banner-pc__2B6sk .index_carouselItem__6x9q3 .index_sub-title__nykUG {\n margin-bottom: 20px;\n}\n.index_m-banner-pc__2B6sk .index_carouselItem__6x9q3 .index_btn-wrap__Ya144 {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n}\n.index_m-banner-pc__2B6sk .index_carouselItem__6x9q3 .index_btn-wrap__Ya144 .index_btn__scvxl {\n margin-right: 12px;\n cursor: pointer;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { __assign } from '../../../../../../
|
|
2
|
-
import uuid_1 from '../../../../../../
|
|
1
|
+
import { __assign } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
|
+
import uuid_1 from '../../../../../../my_my_node_modules/uuid/index.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* 获取 text 元组件json
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default, { Component } from 'react';
|
|
3
|
-
import classNames from '../../../../../../
|
|
3
|
+
import classNames from '../../../../../../my_my_node_modules/classnames/index.js';
|
|
4
4
|
import { getDefaultJSON } from './defaultJSON.js';
|
|
5
5
|
import '../../../../meta-comp/components/Text/index.js';
|
|
6
6
|
import Button$1 from '../../../../meta-comp/components/Button/index.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_button-comp-wrap__xD8m3 {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.index_button-comp-wrap__xD8m3 .index_first-button__mKq1h {\n margin: 5px;\n}\n.index_button-comp-wrap__xD8m3 .index_secondary-button__4fb2s {\n margin: 5px;\n}\n.index_button-comp-wrap__xD8m3.index_layout1__G8bpJ {\n flex-direction: column;\n}\n.index_button-comp-wrap__xD8m3.index_layout1__G8bpJ.index_left__X0dHK {\n align-items: flex-start;\n}\n.index_button-comp-wrap__xD8m3.index_layout1__G8bpJ.index_center__Q7uzv {\n align-items: center;\n}\n.index_button-comp-wrap__xD8m3.index_layout1__G8bpJ.index_right__e6uHf {\n align-items: flex-end;\n}\n.index_button-comp-wrap__xD8m3.index_layout2__p4CKS {\n flex-direction: row;\n}\n.index_button-comp-wrap__xD8m3.index_layout2__p4CKS.index_left__X0dHK {\n justify-content: flex-start;\n}\n.index_button-comp-wrap__xD8m3.index_layout2__p4CKS.index_center__Q7uzv {\n justify-content: center;\n}\n.index_button-comp-wrap__xD8m3.index_layout2__p4CKS.index_right__e6uHf {\n justify-content: flex-end;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import uuid_1 from '../../../../../../
|
|
1
|
+
import uuid_1 from '../../../../../../my_my_node_modules/uuid/index.js';
|
|
2
2
|
import img from './imgs/defaultImg.png.js';
|
|
3
3
|
|
|
4
4
|
var imagesGroupSourceJSON = function (compId) {
|
|
@@ -16,7 +16,8 @@ var imagesGroupSourceJSON = function (compId) {
|
|
|
16
16
|
pcName: 'pcName',
|
|
17
17
|
h5ImgSrc: img,
|
|
18
18
|
pcImgSrc: img,
|
|
19
|
-
clickUrl: ''
|
|
19
|
+
clickUrl: '',
|
|
20
|
+
scale: 0.5
|
|
20
21
|
},
|
|
21
22
|
hover: {
|
|
22
23
|
open: false,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default, { Component } from 'react';
|
|
3
3
|
import CarouselMobile from './mobile/index.js';
|
|
4
4
|
import CarouselPc from './pc/index.js';
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { extends as _extends } from '../../../../../../../_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import { __extends, __assign, __decorate } from '../../../../../../../
|
|
2
|
+
import { __extends, __assign, __decorate } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
3
3
|
import React__default from 'react';
|
|
4
4
|
import './index.less.js';
|
|
5
5
|
import Slider from 'react-slick';
|
|
6
|
-
import classNames from '../../../../../../../
|
|
6
|
+
import classNames from '../../../../../../../my_my_node_modules/classnames/index.js';
|
|
7
7
|
import { inject } from 'mobx-react';
|
|
8
8
|
import Text from '../../../../../meta-comp/components/Text/index.js';
|
|
9
9
|
import Button from '../../../../../meta-comp/components/Button/index.js';
|
|
10
10
|
import Image from '../../../../../meta-comp/components/Image/index.js';
|
|
11
11
|
import { getColorRgba } from '../../../../../utils/commonUtil.js';
|
|
12
12
|
import Iconfont from '../../../../../common/Iconfont/index.js';
|
|
13
|
-
import '../../../../../../../
|
|
14
|
-
import '../../../../../../../
|
|
13
|
+
import '../../../../../../../my_my_node_modules/slick-carousel/slick/slick.css.js';
|
|
14
|
+
import '../../../../../../../my_my_node_modules/slick-carousel/slick/slick-theme.css.js';
|
|
15
15
|
import { store } from '../../../../../mobx/index.js';
|
|
16
16
|
|
|
17
17
|
var MOBILE_IMG_SIZE = [{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_m-carousel-mobile__d3Dnh {\n display: flex;\n position: relative;\n}\n.index_m-carousel-mobile__d3Dnh .index_carousel-icon-left__qpU0W {\n float: left;\n margin-left: 15px;\n}\n.index_m-carousel-mobile__d3Dnh .index_carousel-icon-right__4I-QK {\n float: right;\n margin-right: 15px;\n}\n.index_m-carousel-mobile__d3Dnh .index_slider-wrap__fH8D0 {\n width: calc(100% - 90px);\n padding: 30px 0;\n margin: 0 auto;\n}\n.index_m-carousel-mobile__d3Dnh .index_slider-wrap__fH8D0 .index_img-wrap__9wWbd .index_title__kdPhQ {\n display: flex;\n justify-content: center;\n margin-top: 12px;\n}\n.index_m-carousel-mobile__d3Dnh .index_slider-wrap__fH8D0 .index_img-wrap__9wWbd .index_text__UHjNP {\n display: flex;\n justify-content: center;\n margin-top: 2px;\n}\n.index_m-carousel-mobile__d3Dnh .index_slider-wrap__fH8D0 .index_img-wrap__9wWbd .index_tags__oxw4e {\n margin-top: 8px;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n.index_m-carousel-mobile__d3Dnh .index_slider-wrap__fH8D0 .index_img-wrap__9wWbd .index_tags__oxw4e > div {\n margin-right: 8px;\n}\n.index_m-carousel-mobile__d3Dnh .index_slider-wrap__fH8D0 .index_img-wrap__9wWbd .index_tags__oxw4e > div:last-child {\n margin-right: 0;\n}\n.index_m-carousel-mobile__d3Dnh .index_slider-wrap__fH8D0 .index_slick-track__2P7ly {\n display: flex;\n align-items: center;\n}\n.index_m-carousel-mobile__d3Dnh .index_swiper-ban__ftBXK {\n position: absolute;\n width: 100%;\n bottom: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.index_m-carousel-mobile__d3Dnh .index_swiper-ban__ftBXK .index_ban__TWY-O {\n font-size: 8px;\n width: 1em;\n height: 1em;\n border-radius: 50%;\n background: #FFF;\n cursor: inherit;\n margin-right: 1em;\n transition: all 0.5s;\n}\n.index_m-carousel-mobile__d3Dnh .index_swiper-ban__ftBXK .index_ban__TWY-O.index_active__ViL2e {\n width: 2em;\n border-radius: 100px;\n opacity: 1;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { extends as _extends } from '../../../../../../../_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import { __extends } from '../../../../../../../
|
|
2
|
+
import { __extends } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
3
3
|
import React__default from 'react';
|
|
4
4
|
import './index.less.js';
|
|
5
5
|
import Slider from 'react-slick';
|
|
6
|
-
import classNames from '../../../../../../../
|
|
6
|
+
import classNames from '../../../../../../../my_my_node_modules/classnames/index.js';
|
|
7
7
|
import Text from '../../../../../meta-comp/components/Text/index.js';
|
|
8
8
|
import Button from '../../../../../meta-comp/components/Button/index.js';
|
|
9
9
|
import Image from '../../../../../meta-comp/components/Image/index.js';
|
|
10
10
|
import { getColorRgba } from '../../../../../utils/commonUtil.js';
|
|
11
11
|
import Iconfont from '../../../../../common/Iconfont/index.js';
|
|
12
|
-
import '../../../../../../../
|
|
13
|
-
import '../../../../../../../
|
|
12
|
+
import '../../../../../../../my_my_node_modules/slick-carousel/slick/slick.css.js';
|
|
13
|
+
import '../../../../../../../my_my_node_modules/slick-carousel/slick/slick-theme.css.js';
|
|
14
14
|
|
|
15
15
|
var PC_IMG_SIZE = [{
|
|
16
16
|
w: 1072,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_m-carousel-pc__PHuCj {\n display: flex;\n position: relative;\n}\n.index_m-carousel-pc__PHuCj .index_carousel-icon-left__ZXiMS {\n float: left;\n margin-left: 50px;\n}\n.index_m-carousel-pc__PHuCj .index_carousel-icon-right__fnGGD {\n float: right;\n margin-right: 50px;\n}\n.index_m-carousel-pc__PHuCj .index_slider-wrap__XDJPE {\n width: calc(100% - 200px);\n padding: 30px 0;\n margin: 0 auto;\n}\n.index_m-carousel-pc__PHuCj .index_slider-wrap__XDJPE .index_img-wrap__p-3KN .index_title__8vegF {\n display: flex;\n justify-content: center;\n margin-top: 12px;\n}\n.index_m-carousel-pc__PHuCj .index_slider-wrap__XDJPE .index_img-wrap__p-3KN .index_text__dGdhG {\n display: flex;\n justify-content: center;\n margin-top: 2px;\n}\n.index_m-carousel-pc__PHuCj .index_slider-wrap__XDJPE .index_img-wrap__p-3KN .index_tags__s4RLJ {\n margin-top: 8px;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n}\n.index_m-carousel-pc__PHuCj .index_slider-wrap__XDJPE .index_img-wrap__p-3KN .index_tags__s4RLJ > div {\n margin-right: 8px;\n}\n.index_m-carousel-pc__PHuCj .index_slider-wrap__XDJPE .index_img-wrap__p-3KN .index_tags__s4RLJ > div:last-child {\n margin-right: 0;\n}\n.index_m-carousel-pc__PHuCj .index_slider-wrap__XDJPE .index_slick-track__E-1zD {\n display: flex;\n align-items: center;\n}\n.index_m-carousel-pc__PHuCj .index_swiper-ban__TkjvC {\n position: absolute;\n width: 100%;\n bottom: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.index_m-carousel-pc__PHuCj .index_swiper-ban__TkjvC .index_ban__W7CFY {\n font-size: 8px;\n width: 1.25em;\n height: 1.25em;\n border-radius: 50%;\n background: #FFF;\n cursor: inherit;\n margin-right: 1.25em;\n transition: all 0.5s;\n}\n.index_m-carousel-pc__PHuCj .index_swiper-ban__TkjvC .index_ban__W7CFY.index_active__hDX-- {\n width: 2.5em;\n border-radius: 100px;\n opacity: 1;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default, { Component } from 'react';
|
|
3
3
|
import { getDefaultJSON } from './defaultJSON.js';
|
|
4
4
|
import compositeDecorator from '../../../../decorator/compositeDecorator.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default, { Component } from 'react';
|
|
3
3
|
import ImageGalleryMobile from './mobile/index.js';
|
|
4
4
|
import { getDefaultJSON } from './defaultJSON.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends } from '../../../../../../../
|
|
1
|
+
import { __extends } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import './index.less.js';
|
|
4
4
|
import '../../../../../mobx/index.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_m-banner-mobile__mrph5 {\n position: relative;\n}\n.index_m-banner-mobile__mrph5 .index_carouselItem__QoGq6 {\n height: 386px;\n position: relative;\n display: flex;\n}\n.index_m-banner-mobile__mrph5 .index_carouselItem__QoGq6 .index_carouseContent__0UOf9 {\n padding: 80px 28px 0;\n position: relative;\n z-index: 2;\n display: flex;\n flex-direction: column;\n margin-bottom: auto;\n}\n.index_m-banner-mobile__mrph5 .index_carouselItem__QoGq6 .index_title__6VWeI {\n margin-bottom: 8px;\n}\n.index_m-banner-mobile__mrph5 .index_carouselItem__QoGq6 .index_sub-title__9k3E1 {\n margin-bottom: 20px;\n}\n.index_m-banner-mobile__mrph5 .index_carouselItem__QoGq6 .index_btn-wrap__Um0AK {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n}\n.index_m-banner-mobile__mrph5 .index_carouselItem__QoGq6 .index_btn-wrap__Um0AK .index_btn__l2NLu {\n margin-right: 12px;\n}\n.index_m-banner-mobile__mrph5 .index_swiper-ban__fDilV {\n position: absolute;\n width: 100%;\n bottom: 10px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.index_m-banner-mobile__mrph5 .index_swiper-ban__fDilV .index_ban__tyaDx {\n font-size: 16px;\n width: 1.5em;\n height: 0.3em;\n background: #FFF;\n cursor: inherit;\n margin-right: 0.3em;\n transition: all 0.5s;\n}\n.index_m-banner-mobile__mrph5 .index_swiper-ban__fDilV .index_ban__tyaDx.index_active__kMYzB {\n width: 1.5em;\n opacity: 1;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import uuid_1 from '../../../../../../
|
|
1
|
+
import uuid_1 from '../../../../../../my_my_node_modules/uuid/index.js';
|
|
2
2
|
|
|
3
3
|
var ImageTextGroupSourceJSON = function () {
|
|
4
4
|
var groupId = uuid_1.v4();
|
|
@@ -14,7 +14,12 @@ var ImageTextGroupSourceJSON = function () {
|
|
|
14
14
|
pcName: 'name2',
|
|
15
15
|
h5ImgSrc: '',
|
|
16
16
|
pcImgSrc: '',
|
|
17
|
-
clickUrl: ''
|
|
17
|
+
clickUrl: '',
|
|
18
|
+
pcImgWidth: 180,
|
|
19
|
+
pcImgHeight: 180,
|
|
20
|
+
h5ImgWidth: 90,
|
|
21
|
+
h5ImgHeight: 90,
|
|
22
|
+
scale: 0.5
|
|
18
23
|
},
|
|
19
24
|
hover: {
|
|
20
25
|
open: false,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default, { Component } from 'react';
|
|
3
3
|
import ImageTextPc from './pc/index.js';
|
|
4
4
|
import ImageTextMobile from './mobile/index.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { __extends } from '../../../../../../../
|
|
1
|
+
import { __extends } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
import classNames from '../../../../../../../
|
|
3
|
+
import classNames from '../../../../../../../my_my_node_modules/classnames/index.js';
|
|
4
4
|
import './index.less.js';
|
|
5
5
|
import { alignItemMap } from '../../../../../common/AlignSelector/index.js';
|
|
6
6
|
import Text from '../../../../../meta-comp/components/Text/index.js';
|
|
@@ -61,8 +61,8 @@ function (_super) {
|
|
|
61
61
|
var _this = this;
|
|
62
62
|
|
|
63
63
|
var data = this.props.data; // const { ready } = this.state;
|
|
64
|
+
// console.log('----imagetext mobile', data);
|
|
64
65
|
|
|
65
|
-
console.log('----imagetext mobile', data);
|
|
66
66
|
var wrapStyle = computeStyle(data, window.magicDesign.device);
|
|
67
67
|
wrapStyle.textAlign = data.customize.align; // if (data.background.bgType === 'color') {
|
|
68
68
|
// wrapStyle.backgroundColor = data.background.color;
|
|
@@ -97,6 +97,7 @@ function (_super) {
|
|
|
97
97
|
}, /*#__PURE__*/React__default.createElement(Image, {
|
|
98
98
|
className: "card-image",
|
|
99
99
|
data: source.image,
|
|
100
|
+
limitWidthHeight: true,
|
|
100
101
|
maxHeight: maxWidthAndHeight[data.customize.layout.h5Layout],
|
|
101
102
|
maxWidth: maxWidthAndHeight[data.customize.layout.h5Layout]
|
|
102
103
|
})), /*#__PURE__*/React__default.createElement("div", {
|
|
@@ -111,6 +112,7 @@ function (_super) {
|
|
|
111
112
|
}, /*#__PURE__*/React__default.createElement(Image, {
|
|
112
113
|
className: "card-image",
|
|
113
114
|
data: source.image,
|
|
115
|
+
limitWidthHeight: true,
|
|
114
116
|
maxHeight: 110
|
|
115
117
|
})), source.text.open && /*#__PURE__*/React__default.createElement(Text, {
|
|
116
118
|
className: "card-text",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_image-text-mobile__wcodl {\n padding: 17px 0;\n}\n.index_image-text-mobile__wcodl .index_headline__C24a8 {\n margin-bottom: 8px;\n}\n.index_image-text-mobile__wcodl .index_subtitle__rrdfn {\n margin-bottom: 36px;\n}\n.index_image-text-mobile__wcodl .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-btn-wrap__jdwtW .index_card-first-btn__LiSqH,\n.index_image-text-mobile__wcodl .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-btn-wrap__jdwtW .index_card-second-btn__XqmWw {\n width: fit-content;\n}\n.index_image-text-mobile__wcodl .index_btn-wrap__1Cgdm {\n display: flex;\n width: 100%;\n justify-content: center;\n}\n.index_image-text-mobile__wcodl .index_btn-wrap__1Cgdm .index_first-btn__ZCEBD {\n margin-top: 36px;\n}\n.index_image-text-mobile__wcodl .index_btn-wrap__1Cgdm .index_second-btn__jaGp6 {\n margin-top: 36px;\n margin-left: 12px;\n}\n.index_normal1__-DEkH .index_group-wrap__ByNFt {\n padding: 0 15px;\n width: 100%;\n}\n.index_normal1__-DEkH .index_group-wrap__ByNFt .index_one-card__mEbCD {\n display: flex;\n align-items: stretch;\n padding: 18px;\n margin-bottom: 8px;\n}\n.index_normal1__-DEkH .index_group-wrap__ByNFt .index_one-card__mEbCD:last-of-type {\n margin-bottom: 0;\n}\n.index_normal1__-DEkH .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-image-wrap__r9cJr {\n flex-shrink: 0;\n margin-right: 12px;\n}\n.index_normal1__-DEkH .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu {\n flex: 1;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n.index_normal1__-DEkH .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-title__ZPyCN {\n margin-bottom: 6px;\n}\n.index_normal1__-DEkH .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-text__2Ntaj {\n margin-bottom: 12px;\n}\n.index_normal1__-DEkH .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-btn-wrap__jdwtW {\n display: flex;\n}\n.index_normal1__-DEkH .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-btn-wrap__jdwtW .index_card-first-btn__LiSqH {\n margin-right: 12px;\n}\n.index_normal2__8GWwi .index_group-wrap__ByNFt {\n width: 100%;\n padding: 0 15px;\n}\n.index_normal2__8GWwi .index_group-wrap__ByNFt .index_one-card__mEbCD {\n width: 100%;\n padding: 20px 16px;\n margin-bottom: 36px;\n}\n.index_normal2__8GWwi .index_group-wrap__ByNFt .index_one-card__mEbCD:last-of-type {\n margin-bottom: 0;\n}\n.index_normal2__8GWwi .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-image-wrap__r9cJr .index_card-image__NBvlh {\n width: fit-content;\n margin: 0 auto;\n}\n.index_normal2__8GWwi .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-title__ZPyCN {\n margin-bottom: 8px;\n}\n.index_normal2__8GWwi .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-text__2Ntaj {\n margin-bottom: 16px;\n}\n.index_normal2__8GWwi .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-btn-wrap__jdwtW {\n display: flex;\n}\n.index_normal2__8GWwi .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-btn-wrap__jdwtW .index_card-first-btn__LiSqH {\n margin-right: 12px;\n}\n.index_normal3__oZf6b .index_group-wrap__ByNFt {\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n padding: 0 15px;\n}\n.index_normal3__oZf6b .index_group-wrap__ByNFt .index_one-card__mEbCD {\n display: flex;\n flex-direction: column;\n}\n.index_normal3__oZf6b .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-image-wrap__r9cJr {\n width: 100%;\n}\n.index_normal3__oZf6b .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-image-wrap__r9cJr .index_card-image__NBvlh {\n width: fit-content;\n margin: 0 auto 7px;\n}\n.index_normal3__oZf6b .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-title__ZPyCN {\n margin-bottom: 4px;\n}\n.index_normal3__oZf6b .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-text__2Ntaj {\n margin-bottom: 7px;\n}\n.index_normal3__oZf6b .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-btn-wrap__jdwtW {\n display: flex;\n flex-direction: column;\n}\n.index_normal3__oZf6b .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-second-btn__XqmWw {\n margin-top: 8px;\n}\n.index_normal3__oZf6b .index_group-wrap__ByNFt .index_card-margin-bottom__D6rgm {\n margin-bottom: 10px;\n}\n.index_outsideM__g6TyU .index_group-wrap__ByNFt {\n padding: 0 15px;\n width: 100%;\n}\n.index_outsideM__g6TyU .index_group-wrap__ByNFt .index_one-card__mEbCD {\n margin-top: 35px;\n position: relative;\n padding: 30px 10px 20px 36px;\n}\n.index_outsideM__g6TyU .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-image-wrap__r9cJr {\n position: absolute;\n left: 18px;\n top: 0;\n transform: translateY(-50%);\n}\n.index_outsideM__g6TyU .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-title__ZPyCN {\n margin-bottom: 4px;\n}\n.index_outsideM__g6TyU .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-text__2Ntaj {\n margin-bottom: 12px;\n}\n.index_outsideM__g6TyU .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-btn-wrap__jdwtW {\n display: flex;\n}\n.index_outsideM__g6TyU .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-btn-wrap__jdwtW .index_card-first-btn__LiSqH {\n margin-right: 12px;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt {\n position: relative;\n width: 100%;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt::before {\n content: '';\n position: absolute;\n width: 1px;\n height: 100%;\n border-right: 1px dashed #D2D9E5;\n left: 50%;\n transform: translateX(-50%);\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD {\n width: calc((100% - 1px)/2);\n position: relative;\n padding: 0 14px 16px;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD::before {\n content: '';\n position: absolute;\n border-radius: 50%;\n background: #2F54EB;\n width: 10px;\n height: 10px;\n z-index: 10;\n border: 2px solid #CCE3FF;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n-1) {\n left: 0;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n-1)::before {\n right: -5px;\n top: 5px;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n-1) .index_card-content-wrap__4JBAu {\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n-1) .index_card-content-wrap__4JBAu .index_card-title__ZPyCN,\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n-1) .index_card-content-wrap__4JBAu .index_card-text__2Ntaj {\n text-align: right !important;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n-1) .index_card-content-wrap__4JBAu .index_image-subtext-wrap__c0fgm {\n flex-direction: row-reverse;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n-1) .index_card-content-wrap__4JBAu .index_image-subtext-wrap__c0fgm .index_card-image-wrap__r9cJr {\n margin-left: 8px;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n-1) .index_card-content-wrap__4JBAu .index_card-btn-wrap__jdwtW {\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n) {\n left: 50%;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n)::before {\n left: -5px;\n top: 5px;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n) .index_card-content-wrap__4JBAu .index_card-title__ZPyCN,\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n) .index_card-content-wrap__4JBAu .index_card-text__2Ntaj {\n text-align: left !important;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD:nth-of-type(2n) .index_card-content-wrap__4JBAu .index_image-subtext-wrap__c0fgm .index_card-image-wrap__r9cJr {\n margin-right: 8px;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-title__ZPyCN {\n margin-bottom: 10px;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_image-subtext-wrap__c0fgm {\n display: flex;\n margin-bottom: 20px;\n align-items: center;\n}\n.index_centerM__M3UWG .index_group-wrap__ByNFt .index_one-card__mEbCD .index_card-content-wrap__4JBAu .index_card-btn-wrap__jdwtW .index_card-second-btn__XqmWw {\n margin-top: 12px;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { __extends, __assign } from '../../../../../../../
|
|
1
|
+
import { __extends, __assign } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import './index.less.js';
|
|
4
|
-
import classNames from '../../../../../../../
|
|
4
|
+
import classNames from '../../../../../../../my_my_node_modules/classnames/index.js';
|
|
5
5
|
import { alignItemMap } from '../../../../../common/AlignSelector/index.js';
|
|
6
6
|
import Text from '../../../../../meta-comp/components/Text/index.js';
|
|
7
7
|
import Button from '../../../../../meta-comp/components/Button/index.js';
|
|
@@ -20,10 +20,11 @@ function (_super) {
|
|
|
20
20
|
__extends(ImageTextPc, _super);
|
|
21
21
|
|
|
22
22
|
function ImageTextPc() {
|
|
23
|
-
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
24
|
+
|
|
25
|
+
_this.state = {
|
|
26
|
+
hoverState: false
|
|
27
|
+
}; // componentDidMount() {
|
|
27
28
|
// this.distroy = autorun(() => {
|
|
28
29
|
// this.setState({
|
|
29
30
|
// clickedGroup: store.clickedGroup,
|
|
@@ -34,7 +35,6 @@ function (_super) {
|
|
|
34
35
|
// this.distroy();
|
|
35
36
|
// }
|
|
36
37
|
|
|
37
|
-
|
|
38
38
|
_this.calcWidth = function (num) {
|
|
39
39
|
return "".concat((100 - (num - 1) * 2) / num, "%");
|
|
40
40
|
};
|
|
@@ -58,6 +58,7 @@ function (_super) {
|
|
|
58
58
|
var _this = this;
|
|
59
59
|
|
|
60
60
|
var data = this.props.data;
|
|
61
|
+
this.state.hoverState;
|
|
61
62
|
console.log('====================================');
|
|
62
63
|
console.log(data);
|
|
63
64
|
console.log('====================================');
|
|
@@ -72,6 +73,18 @@ function (_super) {
|
|
|
72
73
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
73
74
|
key: source.id,
|
|
74
75
|
className: data.groupSource.length > data.customize.pcRowNum ? 'one-card card-margin-bottom' : 'one-card',
|
|
76
|
+
onMouseEnter: function () {
|
|
77
|
+
if (source.hover.open) {
|
|
78
|
+
_this.setState({
|
|
79
|
+
hoverState: true
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
onMouseLeave: function () {
|
|
84
|
+
_this.setState({
|
|
85
|
+
hoverState: false
|
|
86
|
+
});
|
|
87
|
+
},
|
|
75
88
|
style: _this.getCardStyle(source, i)
|
|
76
89
|
}, source.title.open && data.customize.layout.pcLayout === 'center' && /*#__PURE__*/React__default.createElement(Text, {
|
|
77
90
|
className: "card-title",
|
|
@@ -81,6 +94,7 @@ function (_super) {
|
|
|
81
94
|
}, /*#__PURE__*/React__default.createElement(Image, {
|
|
82
95
|
className: "card-image",
|
|
83
96
|
data: source.image,
|
|
97
|
+
limitWidthHeight: true,
|
|
84
98
|
maxHeight: maxWidthAndHeight[data.customize.layout.pcLayout],
|
|
85
99
|
maxWidth: maxWidthAndHeight[data.customize.layout.pcLayout]
|
|
86
100
|
})), source.title.open && data.customize.layout.pcLayout !== 'center' && /*#__PURE__*/React__default.createElement(Text, {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_image-text-pc__U30U8 {\n display: flex;\n flex-direction: column;\n padding: 17px 70px;\n}\n.index_image-text-pc__U30U8 .index_headline__CyykA {\n margin-bottom: 8px;\n}\n.index_image-text-pc__U30U8 .index_subtitle__qXvkY {\n margin-bottom: 36px;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK {\n display: flex;\n flex-wrap: wrap;\n width: 100%;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols {\n display: flex;\n flex-direction: column;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-image-wrap__EE8VR {\n width: 100%;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-image-wrap__EE8VR .index_card-image__mLns4 {\n width: fit-content;\n margin: 0 auto 7px;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-title__GZL0K {\n margin-bottom: 4px;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-text__byGz2 {\n margin-bottom: 7px;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-btn-wrap__xfbbO {\n width: fit-content;\n display: flex;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-btn-wrap__xfbbO .index_card-first-btn__VJL1d {\n margin-right: 12px;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-btn-wrap__xfbbO .index_card-second-btn__kwtrw {\n margin-top: 0;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-first-btn__VJL1d {\n width: fit-content;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-second-btn__kwtrw {\n margin-top: 8px;\n width: fit-content;\n}\n.index_image-text-pc__U30U8 .index_group-wrap__Kb8tK .index_card-margin-bottom__Wt1F5 {\n margin-bottom: 10px;\n}\n.index_image-text-pc__U30U8 .index_btn-wrap__-p9e8 {\n width: 100%;\n display: flex;\n justify-content: center;\n}\n.index_image-text-pc__U30U8 .index_btn-wrap__-p9e8 > div {\n margin-right: 12px;\n}\n.index_image-text-pc__U30U8 .index_btn-wrap__-p9e8 > div:last-of-type {\n margin-right: 0;\n}\n.index_image-text-pc__U30U8 .index_btn-wrap__-p9e8 .index_first-btn__D9m7W {\n margin-top: 36px;\n}\n.index_image-text-pc__U30U8 .index_btn-wrap__-p9e8 .index_second-btn__w7JgY {\n margin-top: 36px;\n}\n.index_normal__xHk2t .index_group-wrap__Kb8tK .index_one-card__NWols {\n padding: 40px 24px;\n}\n.index_outside__-x9jW .index_group-wrap__Kb8tK .index_one-card__NWols {\n padding: 40px 24px 24px;\n position: relative;\n margin-top: 40px;\n}\n.index_outside__-x9jW .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-image-wrap__EE8VR .index_card-image__mLns4 {\n position: absolute;\n top: 0;\n transform: translateY(-50%);\n left: 24px;\n}\n.index_center__LBeZ- .index_group-wrap__Kb8tK .index_one-card__NWols {\n padding: 20px 20px;\n}\n.index_center__LBeZ- .index_group-wrap__Kb8tK .index_one-card__NWols .index_card-title__GZL0K {\n margin-bottom: 10px;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { __assign } from '../../../../../../
|
|
2
|
-
import uuid_1 from '../../../../../../
|
|
1
|
+
import { __assign } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
|
+
import uuid_1 from '../../../../../../my_my_node_modules/uuid/index.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* 获取 text 元组件json
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { __extends, __assign } from '../../../../../../
|
|
1
|
+
import { __extends, __assign } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default, { Component } from 'react';
|
|
3
|
-
import classNames from '../../../../../../
|
|
3
|
+
import classNames from '../../../../../../my_my_node_modules/classnames/index.js';
|
|
4
4
|
import { getDefaultJSON } from './defaultJSON.js';
|
|
5
5
|
import Text, { contentStyle } from '../../../../meta-comp/components/Text/index.js';
|
|
6
6
|
import Button from '../../../../meta-comp/components/Button/index.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_newsletter-wrap__f0Sjc {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n.index_newsletter-wrap__f0Sjc .index_top-wrap__-xnJZ {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n padding: 0 20px;\n}\n.index_newsletter-wrap__f0Sjc .index_top-wrap__-xnJZ .index_input-wrap__MZj-C input {\n border: 1px solid #D2D9E5;\n width: 600px;\n height: 56px;\n padding: 0 20px;\n border-radius: 8px;\n background-color: #fff;\n}\n.index_newsletter-wrap__f0Sjc .index_top-wrap__-xnJZ .index_btn-wrap__u-LM- {\n margin-left: 12px;\n}\n.index_newsletter-wrap__f0Sjc .index_confirmation-text__ZMmib {\n margin-top: 12px;\n}\n.index_newsletter-wrap__f0Sjc.index_layout1__c6SFz {\n flex-direction: column;\n}\n.index_newsletter-wrap__f0Sjc.index_layout1__c6SFz.index_left__VGwZJ {\n align-items: flex-start;\n}\n.index_newsletter-wrap__f0Sjc.index_layout1__c6SFz.index_left__VGwZJ .index_top-wrap__-xnJZ {\n justify-content: flex-start;\n}\n.index_newsletter-wrap__f0Sjc.index_layout1__c6SFz.index_center__FNodw {\n align-items: center;\n}\n.index_newsletter-wrap__f0Sjc.index_layout1__c6SFz.index_center__FNodw .index_top-wrap__-xnJZ {\n justify-content: center;\n}\n.index_newsletter-wrap__f0Sjc.index_layout1__c6SFz.index_right__S7rnh {\n align-items: flex-end;\n}\n.index_newsletter-wrap__f0Sjc.index_layout1__c6SFz.index_right__S7rnh .index_top-wrap__-xnJZ {\n justify-content: flex-end;\n}\n.index_newsletter-wrap__f0Sjc.index_mobile__TS-KA .index_input-wrap__MZj-C input {\n border: 1px solid #D2D9E5;\n width: 100%;\n height: 48px;\n border-radius: 8px;\n background-color: #fff;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { __assign } from '../../../../../../
|
|
2
|
-
import uuid_1 from '../../../../../../
|
|
1
|
+
import { __assign } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
|
+
import uuid_1 from '../../../../../../my_my_node_modules/uuid/index.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* 获取 text 元组件json
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default, { Component } from 'react';
|
|
3
|
-
import classNames from '../../../../../../
|
|
3
|
+
import classNames from '../../../../../../my_my_node_modules/classnames/index.js';
|
|
4
4
|
import { getDefaultJSON } from './defaultJSON.js';
|
|
5
5
|
import '../../../../meta-comp/components/Text/index.js';
|
|
6
6
|
import Button from '../../../../meta-comp/components/Button/index.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_tag-comp-wrap__UjbcC {\n display: flex;\n align-items: center;\n}\n.index_tag-comp-wrap__UjbcC .index_tag-image__5FKgB {\n width: 26px;\n height: 26px;\n}\n.index_tag-comp-wrap__UjbcC .index_first-button__SE0VE {\n margin: 5px;\n}\n.index_tag-comp-wrap__UjbcC .index_secondary-button__T8X9y {\n margin: 5px;\n}\n.index_tag-comp-wrap__UjbcC.index_layout1__NKtEQ {\n flex-direction: row;\n}\n.index_tag-comp-wrap__UjbcC.index_layout1__NKtEQ.index_left__ra7iR {\n justify-content: flex-start;\n}\n.index_tag-comp-wrap__UjbcC.index_layout1__NKtEQ.index_center__TNrNg {\n justify-content: center;\n}\n.index_tag-comp-wrap__UjbcC.index_layout1__NKtEQ.index_right__T9842 {\n justify-content: flex-end;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { __assign } from '../../../../../../
|
|
2
|
-
import uuid_1 from '../../../../../../
|
|
1
|
+
import { __assign } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
|
+
import uuid_1 from '../../../../../../my_my_node_modules/uuid/index.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* 获取 text 元组件json
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default, { Component } from 'react';
|
|
3
|
-
import classNames from '../../../../../../
|
|
3
|
+
import classNames from '../../../../../../my_my_node_modules/classnames/index.js';
|
|
4
4
|
import { getDefaultJSON } from './defaultJSON.js';
|
|
5
5
|
import Text$1 from '../../../../meta-comp/components/Text/index.js';
|
|
6
6
|
import '../../../../meta-comp/components/Button/index.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../
|
|
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__Eyu8p {\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n.index_m-text__Eyu8p .index_title-wrap__4KbfX {\n font-weight: 500;\n font-size: 20px;\n}\n.index_m-text__Eyu8p .index_sub-title__2WkcU {\n font-size: 15px;\n color: #b7b7b7;\n margin-top: 10px;\n}\n.index_m-text__Eyu8p .index_group-content-wrap__hVP2M {\n width: 100%;\n}\n.index_m-text__Eyu8p .index_group-content-wrap__hVP2M .index_group-wrap-container__mGnzp {\n padding: 20px;\n}\n.index_m-text__Eyu8p .index_group-content-wrap__hVP2M .index_group-wrap__Iyot- {\n display: flex;\n flex-direction: column;\n margin-top: 20px;\n width: 100%;\n}\n.index_m-text__Eyu8p .index_group-content-wrap__hVP2M .index_group-wrap__Iyot- .index_group-title__lmpDR {\n font-size: 14px;\n}\n.index_m-text__Eyu8p .index_group-content-wrap__hVP2M.index_col-1__ZZ9nC .index_group-wrap__Iyot- {\n width: 100%;\n}\n.index_m-text__Eyu8p .index_group-content-wrap__hVP2M.index_col-2__FaGmd {\n display: grid;\n grid-template-columns: 50% 50%;\n}\n.index_m-text__Eyu8p .index_group-content-wrap__hVP2M.index_col-3__alo2- {\n display: grid;\n grid-template-columns: 33.3% 33.3% 33.3%;\n}\n.index_m-text__Eyu8p .index_group-content-wrap__hVP2M.index_mobile__JOQKx {\n display: block;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import { inject, observer } from 'mobx-react';
|
|
4
4
|
import GroupList from '../../../../../common/GroupList/index.js';
|
package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigGroup/index.less.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_banner_group__l-1p- {\n margin-bottom: 20px;\n}\n.index_banner_group__l-1p- .index_node_list__qpqzh {\n margin-bottom: 12px;\n}\n.index_banner_group__l-1p- .index_node_list__qpqzh .index_notice__9HDjC {\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";
|
|
4
4
|
styleInject(css_248z);
|
package/src/components/composite-comp/bol/config-panels/BannerConfig/BannerConfigSetting/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends } from '../../../../../../../
|
|
1
|
+
import { __extends } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import '../../../../../common/LayoutSelector/index.js';
|
|
4
4
|
import Field from '../../../../../common/Field/index.js';
|
|
@@ -15,8 +15,8 @@ import SliderInput from '../../../../../common/Slider/index.js';
|
|
|
15
15
|
import '../../../../../common/FontStyles/index.js';
|
|
16
16
|
import '../../../../../common/ButtonIconLayout/index.js';
|
|
17
17
|
import 'axios';
|
|
18
|
-
import '../../../../../../../
|
|
19
|
-
import '../../../../../../../
|
|
18
|
+
import '../../../../../../../my_my_node_modules/qs/lib/stringify.js';
|
|
19
|
+
import '../../../../../../../my_my_node_modules/qs/lib/utils.js';
|
|
20
20
|
import '../../../../../common/ProductModal/index.js';
|
|
21
21
|
import '../../../../../common/ProductSource/index.less.js';
|
|
22
22
|
import './index.less.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import styleInject from '../../../../../../../
|
|
1
|
+
import styleInject from '../../../../../../../my_my_node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = ".index_banner_setting__fT3ak .index_collapse_wrap__uha-O .index_header_wrap__J-RLa {\n font-weight: 600 !important;\n}\n";
|
|
4
4
|
styleInject(css_248z);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends } from '../../../../../../../
|
|
1
|
+
import { __extends } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import ButtonConfig from '../../../../../meta-comp/config-panels/ButtonConfig/index.js';
|
|
4
4
|
import { renderPreview } from '../../../../../utils/coreUtil.js';
|
|
@@ -17,8 +17,8 @@ import '../../../../../common/Slider/index.js';
|
|
|
17
17
|
import '../../../../../common/FontStyles/index.js';
|
|
18
18
|
import '../../../../../common/ButtonIconLayout/index.js';
|
|
19
19
|
import 'axios';
|
|
20
|
-
import '../../../../../../../
|
|
21
|
-
import '../../../../../../../
|
|
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
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __extends, __decorate } from '../../../../../../../
|
|
1
|
+
import { __extends, __decorate } from '../../../../../../../my_my_node_modules/tslib/tslib.es6.js';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import { inject, observer } from 'mobx-react';
|
|
4
4
|
import { renderPreview, isPc } from '../../../../../utils/coreUtil.js';
|