@zimyo/manage 0.0.6 → 0.0.7

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.
@@ -1 +1,5 @@
1
- export declare const SubscriptionOverview: () => import("react/jsx-runtime").JSX.Element;
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
- export declare const PlansOverview: () => import("react/jsx-runtime").JSX.Element;
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
- export declare const SubscriptionPlans: () => import("react/jsx-runtime").JSX.Element;
1
+ type subscribedPlanPropTypes = {
2
+ onTabChange: (value: number) => void;
3
+ };
4
+ export declare const SubscriptionPlans: (props: subscribedPlanPropTypes) => import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,5 @@
1
+ declare const NoDataComponent: ({ message, imgStyles, }: {
2
+ message: string;
3
+ imgStyles?: any;
4
+ }) => import("react/jsx-runtime").JSX.Element;
5
+ export default NoDataComponent;