s-material-react 1.3.35 → 1.3.37

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 (39) hide show
  1. package/css/common/icon.scss +0 -1
  2. package/css/common/index.scss +1 -0
  3. package/css/common/promotionItem.scss +87 -0
  4. package/css/pages/backTop.scss +43 -0
  5. package/css/pages/goodsList.scss +36 -8
  6. package/css/pages/index.scss +2 -1
  7. package/css/pages/marketingGroup/getCouponOne.scss +122 -0
  8. package/css/pages/marketingGroup/index.scss +1 -0
  9. package/dist/components/BackTop/index.d.ts +6 -0
  10. package/dist/components/basic/ClassifyNavGroup/ClassifyNav/index.d.ts +15 -0
  11. package/dist/components/basic/ClassifyNavGroup/ClassifyNavOne/index.d.ts +29 -0
  12. package/dist/components/basic/ClassifyNavGroup/ClassifyNavThree/index.d.ts +18 -0
  13. package/dist/components/basic/ClassifyNavGroup/ClassifyNavTwo/index.d.ts +16 -0
  14. package/dist/components/basic/ClassifyNavGroup/index.d.ts +4 -0
  15. package/dist/components/basic/Cube/index.d.ts +20 -0
  16. package/dist/components/basic/GoodsGroup/Goods/index.d.ts +30 -0
  17. package/dist/components/basic/GoodsGroup/GoodsSlider/index.d.ts +19 -0
  18. package/dist/components/basic/GoodsGroup/GoodsSlideshow/index.d.ts +17 -0
  19. package/dist/components/basic/GoodsGroup/index.d.ts +3 -0
  20. package/dist/components/basic/LineGroup/Line/index.d.ts +12 -0
  21. package/dist/components/basic/LineGroup/TextLine/index.d.ts +16 -0
  22. package/dist/components/basic/LineGroup/index.d.ts +2 -0
  23. package/dist/components/basic/Notice/index.d.ts +10 -0
  24. package/dist/components/basic/Search/Search/index.d.ts +16 -0
  25. package/dist/components/basic/Search/SearchStyleTwo/index.d.ts +16 -0
  26. package/dist/components/basic/Search/index.d.ts +2 -0
  27. package/dist/components/basic/Slider/index.d.ts +36 -0
  28. package/dist/components/basic/Slider/item.d.ts +6 -0
  29. package/dist/components/basic/Slider/slider.d.ts +33 -0
  30. package/dist/components/basic/Title/index.d.ts +18 -0
  31. package/dist/components/basic/Video/index.d.ts +13 -0
  32. package/dist/components/index.d.ts +2 -0
  33. package/dist/components/marketingGroup/GetCouponOne/components/oneLineOneBlc/index.d.ts +14 -0
  34. package/dist/components/marketingGroup/GetCouponOne/components/oneLineTwoBlc/index.d.ts +15 -0
  35. package/dist/components/marketingGroup/GetCouponOne/index.d.ts +10 -0
  36. package/dist/components/marketingGroup/PromotionList/index.d.ts +2 -0
  37. package/dist/components/marketingGroup/index.d.ts +2 -0
  38. package/dist/index.js +1 -1
  39. package/package.json +2 -2
@@ -0,0 +1,33 @@
1
+ import React from 'react';
2
+ export interface itemType {
3
+ imgUrl: string;
4
+ link: string;
5
+ title?: string;
6
+ }
7
+ interface SwiperType {
8
+ defaultValue?: Array<itemType>;
9
+ type?: number;
10
+ autoplay?: boolean;
11
+ autoplayInterval?: number;
12
+ direction?: 'horizontal' | 'vertical';
13
+ loop?: boolean;
14
+ paddingTop?: number;
15
+ paddingBottom?: number;
16
+ paddingLeft?: number;
17
+ paddingRight?: number;
18
+ selectImg?: Array<itemType>;
19
+ imgHeight?: {
20
+ height: number;
21
+ width: number;
22
+ };
23
+ vertical?: boolean;
24
+ className?: string;
25
+ className1?: string;
26
+ Position?: string;
27
+ fontsize?: number;
28
+ textAlign?: string;
29
+ fontColor?: string;
30
+ backGroundColor?: string;
31
+ }
32
+ export declare const SliderInner: React.NamedExoticComponent<SwiperType>;
33
+ export {};
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+ interface TitleType {
3
+ value: string;
4
+ fontSize: number;
5
+ textAlign: any;
6
+ color: string;
7
+ textIndent: string;
8
+ backgroundColor: string;
9
+ fontWeight: string;
10
+ textDecoration: string;
11
+ fontStyle: string;
12
+ paddingTop: number;
13
+ paddingLeft: number;
14
+ paddingRight: number;
15
+ paddingBottom: number;
16
+ }
17
+ export declare const Title: React.NamedExoticComponent<TitleType>;
18
+ export {};
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ interface VideoType {
3
+ url: string;
4
+ poster: string;
5
+ autoplay: boolean;
6
+ loop: boolean;
7
+ paddingTop: number;
8
+ paddingBottom: number;
9
+ paddingLeft: number;
10
+ paddingRight: number;
11
+ }
12
+ export declare const Video: React.NamedExoticComponent<VideoType>;
13
+ export {};
@@ -26,7 +26,9 @@ export * from './CollectionList';
26
26
  export * from './NoticeDetail';
27
27
  export * from './ArticleDetail';
28
28
  export * from './PlaceOrderGroup';
29
+ export * from './BackTop';
29
30
  export * from './LineGroup';
30
31
  export * from './ClassifyNavGroup';
31
32
  export * from './GoodsGroup';
32
33
  export * from './GoodsDetailGroup';
34
+ export * from './MarketingGroup';
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ export declare const OneLineOneBlc: React.NamedExoticComponent<{
3
+ defaultValue: never[];
4
+ coupons: never[];
5
+ bg: string;
6
+ borderColor: string;
7
+ btnColor: string;
8
+ typeColor: string;
9
+ ruleColor: string;
10
+ titleColor: string;
11
+ timeColor: string;
12
+ paddingTop: number;
13
+ paddingBottom: number;
14
+ }>;
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ export declare const OneLineTwoBlc: React.NamedExoticComponent<{
3
+ defaultValue: never[];
4
+ coupons: never[];
5
+ bg: string;
6
+ borderColor: string;
7
+ btnColor: string;
8
+ typeColor: string;
9
+ ruleColor: string;
10
+ titleColor: string;
11
+ timeColor: string;
12
+ gap: number;
13
+ paddingTop: number;
14
+ paddingBottom: number;
15
+ }>;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ interface defaultType {
3
+ [v: string]: any;
4
+ }
5
+ interface initialGetCoupon extends defaultType {
6
+ type: number;
7
+ coupons: Array<any>;
8
+ }
9
+ export declare const GetCouponOne: React.NamedExoticComponent<initialGetCoupon>;
10
+ export {};
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const PromotionList: React.NamedExoticComponent<{}>;
@@ -0,0 +1,2 @@
1
+ export * from './GetCouponOne';
2
+ export * from './PromotionList';