@zimyo/manage 0.0.6 → 0.0.8
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/dist/components/manage/Subscription/Overview/Overview.d.ts +5 -1
- package/dist/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +5 -1
- package/dist/components/manage/Subscription/SubscribedPlan/SubscribedPlan.d.ts +5 -1
- package/dist/components/ui/Alert/Alert.d.ts +1 -1
- package/dist/components/ui/NoDataFound/NoDataFound.d.ts +5 -0
- package/dist/main.cjs +276 -249
- package/dist/main.js +22308 -21888
- package/dist/shared/constants/endpoints.d.ts +3 -1
- package/dist/shared/constants/status.d.ts +4 -0
- package/dist/shared/hooks/useMutation.d.ts +1 -1
- package/dist/shared/services/cashfree-payments.d.ts +1 -0
- package/dist/shared/zustand/alert.store.d.ts +2 -2
- package/package.json +2 -1
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
type overviewPropTypes = {
|
|
2
|
+
onTabChange: (value: number) => void;
|
|
3
|
+
};
|
|
4
|
+
export declare const SubscriptionOverview: (props: overviewPropTypes) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
type plansOverviewPropTypes = {
|
|
2
|
+
onTabChange: (value: number) => void;
|
|
3
|
+
};
|
|
4
|
+
export declare const PlansOverview: (props: plansOverviewPropTypes) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
type subscribedPlanPropTypes = {
|
|
2
|
+
onTabChange: (value: number) => void;
|
|
3
|
+
};
|
|
4
|
+
export declare const SubscriptionPlans: (props: subscribedPlanPropTypes) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|