s-material-react 1.4.25 → 1.4.27
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/css/common/card.scss +7 -3
- package/css/common/icon.scss +19 -3
- package/css/common/index.scss +2 -0
- package/css/common/uploading.scss +62 -0
- package/css/common/uploadingImg.scss +19 -0
- package/css/pages/afterSalesApplyGroup/afterSalesApply.scss +199 -0
- package/css/pages/afterSalesApplyGroup/index.scss +1 -0
- package/css/pages/afterSalesDetailGroup/afterSalesDetail.scss +201 -0
- package/css/pages/afterSalesDetailGroup/index.scss +1 -0
- package/css/pages/afterSalesListGroup/afterSalesList.scss +97 -0
- package/css/pages/afterSalesListGroup/index.scss +1 -0
- package/css/pages/index.scss +4 -0
- package/css/pages/mySettingGroup/index.scss +1 -0
- package/css/pages/mySettingGroup/mySetting.scss +23 -0
- package/css/pages/refundOnlyGroup/refundOnly.scss +4 -0
- package/dist/common/card/index.d.ts +2 -3
- package/dist/common/uploading/index.d.ts +1 -0
- package/dist/common/uploadingImg/index.d.ts +1 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/fillIn.d.ts +2 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/fillInPopup.d.ts +6 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/index.d.ts +3 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/subFillIn.d.ts +2 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/tip.d.ts +1 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/context.d.ts +2 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/index.d.ts +9 -0
- package/dist/components/AfterSalesApplyGroup/index.d.ts +1 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/components/expressPopup.d.ts +2 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/components/index.d.ts +1 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/components/senderWrite.d.ts +1 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/context.d.ts +2 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/index.d.ts +4 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/state.d.ts +1 -0
- package/dist/components/AfterSalesDetailGroup/index.d.ts +1 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/iconConfig.d.ts +9 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/index.d.ts +2 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/item.d.ts +2 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/noData.d.ts +1 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/stateConfig.d.ts +7 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/tabContent.d.ts +1 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/index.d.ts +1 -0
- package/dist/components/AfterSalesListGroup/index.d.ts +1 -0
- package/dist/components/AfterSalesTypeGroup/AfterSalesType/components/type.d.ts +2 -0
- package/dist/components/AfterSalesTypeGroup/AfterSalesType/context.d.ts +2 -0
- package/dist/components/AfterSalesTypeGroup/AfterSalesType/index.d.ts +2 -1
- package/dist/components/AfterSalesTypeGroup/AfterSalesType/typeConfig.d.ts +1 -0
- package/dist/components/MySettingGroup/MySetting/index.d.ts +3 -0
- package/dist/components/MySettingGroup/index.d.ts +1 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/hooks/useCountDown.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,6 @@ export interface CardItemType {
|
|
|
6
6
|
pricesetNprice?: number;
|
|
7
7
|
skuName?: string;
|
|
8
8
|
skuCode?: string;
|
|
9
|
-
|
|
10
|
-
dataState?: number;
|
|
9
|
+
children?: React.ReactNode;
|
|
11
10
|
}
|
|
12
|
-
export declare const CardJsx: ({ dataPic, goodsName, goodsCamount, pricesetNprice, skuName,
|
|
11
|
+
export declare const CardJsx: ({ dataPic, goodsName, goodsCamount, pricesetNprice, skuName, children }: CardItemType) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const UploadImg: import("react").MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const UploadingImg: import("react").MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Tip: import("react").MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './AfterSalesApply';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './senderWrite';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SenderWrite: import("react").MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getState: (refundType: string, orderState: number, refundUcode: any) => any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './AfterSalesDetail';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const NoData: import("react").MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const TabContent: import("react").MemoExoticComponent<({ item, refreshNum }: any) => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const AfterSalesList: import("react").MemoExoticComponent<({ refreshNum }: any) => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './AfterSalesList';
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const AfterSalesType: React.FC;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './MySetting';
|
|
@@ -35,3 +35,8 @@ export * from './AddressListGroup';
|
|
|
35
35
|
export * from './PaymentModeGroup';
|
|
36
36
|
export * from './RefundGroup';
|
|
37
37
|
export * from './RefundOnlyGroup';
|
|
38
|
+
export * from './MySettingGroup';
|
|
39
|
+
export * from './AfterSalesTypeGroup';
|
|
40
|
+
export * from './AfterSalesApplyGroup';
|
|
41
|
+
export * from './AfterSalesDetailGroup';
|
|
42
|
+
export * from './AfterSalesListGroup';
|