@zimyo/manage 0.3.19 → 0.3.21

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,16 +1 @@
1
- import { default as React } from 'react';
2
-
3
- interface Transaction {
4
- id: string;
5
- date: string;
6
- description: string;
7
- method: string;
8
- amount: string;
9
- status: 'Completed' | 'Pending';
10
- invoice: string | null;
11
- }
12
- interface TransactionTableProps {
13
- transactions: Transaction[];
14
- }
15
- declare const TableView: React.FC<TransactionTableProps>;
16
- export default TableView;
1
+ export {};
@@ -0,0 +1,5 @@
1
+ interface Props {
2
+ planAmount?: Record<string, number>;
3
+ }
4
+ declare const PlanComparisonTable: ({ planAmount }: Props) => import("react/jsx-runtime").JSX.Element;
5
+ export default PlanComparisonTable;
@@ -1,50 +1,2 @@
1
- type plansOverviewPropTypes = {
2
- onTabChange: (value: number) => void;
3
- overviewData: OverviewData;
4
- };
5
- type OverviewData = {
6
- employee_details: {
7
- active_employee: number;
8
- total_employee: number;
9
- percentage: number;
10
- };
11
- wallet: {
12
- balance: number;
13
- openingBalance: number;
14
- percentage: number | null;
15
- };
16
- orgInfo: {
17
- org_code: string;
18
- org_name: string;
19
- org_address: string;
20
- gstin: string;
21
- email_id: string[];
22
- mobile_number: string;
23
- client_id: number;
24
- country: string;
25
- state: string;
26
- city: string;
27
- zip_code: string;
28
- address_1: string | null;
29
- address_2: string | null;
30
- };
31
- planDetails: {
32
- current_plan: string;
33
- billing_cycle: number;
34
- plan_cost: number;
35
- plan_expiring_date: string;
36
- };
37
- addOnProduct: AddOnProduct[];
38
- plan_id: number;
39
- add_on_id: string[];
40
- usageCredit: any[];
41
- };
42
- type AddOnProduct = {
43
- product_id: number;
44
- product_name: string;
45
- short_product_name: string;
46
- modules_ids: number[];
47
- subscription_id: number;
48
- };
49
- export declare const PlansOverview: (props: plansOverviewPropTypes) => import("react/jsx-runtime").JSX.Element;
50
- export {};
1
+
2
+ export declare function PlansOverview(): import("react/jsx-runtime").JSX.Element;