@zimyo/manage 0.3.6 → 0.3.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.
- package/dist/components/manage/Subscription/SubscriptionPricing/CardView/CardView.d.ts +48 -1
- package/dist/components/manage/Subscription/SubscriptionPricing/SubscriptionPricing.d.ts +45 -0
- package/dist/main.cjs +1 -1
- package/dist/main.js +1 -1
- package/dist/src/components/manage/Subscription/SubscriptionPricing/CardView/CardView.d.ts +49 -2
- package/dist/src/components/manage/Subscription/SubscriptionPricing/SubscriptionPricing.d.ts +46 -1
- package/package.json +1 -1
|
@@ -1,3 +1,50 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
2
|
+
type OverviewData = {
|
|
3
|
+
employee_details: {
|
|
4
|
+
active_employee: number;
|
|
5
|
+
total_employee: number;
|
|
6
|
+
percentage: number;
|
|
7
|
+
};
|
|
8
|
+
wallet: {
|
|
9
|
+
balance: number;
|
|
10
|
+
openingBalance: number;
|
|
11
|
+
percentage: number | null;
|
|
12
|
+
};
|
|
13
|
+
orgInfo: {
|
|
14
|
+
org_code: string;
|
|
15
|
+
org_name: string;
|
|
16
|
+
org_address: string;
|
|
17
|
+
gstin: string;
|
|
18
|
+
email_id: string[];
|
|
19
|
+
mobile_number: string;
|
|
20
|
+
client_id: number;
|
|
21
|
+
country: string;
|
|
22
|
+
state: string;
|
|
23
|
+
city: string;
|
|
24
|
+
zip_code: string;
|
|
25
|
+
address_1: string | null;
|
|
26
|
+
address_2: string | null;
|
|
27
|
+
};
|
|
28
|
+
planDetails: {
|
|
29
|
+
current_plan: string;
|
|
30
|
+
billing_cycle: number;
|
|
31
|
+
plan_cost: number;
|
|
32
|
+
plan_expiring_date: string;
|
|
33
|
+
};
|
|
34
|
+
addOnProduct: AddOnProduct[];
|
|
35
|
+
plan_id: number;
|
|
36
|
+
add_on_id: string[];
|
|
37
|
+
usageCredit: any[];
|
|
38
|
+
};
|
|
39
|
+
type AddOnProduct = {
|
|
40
|
+
product_id: number;
|
|
41
|
+
product_name: string;
|
|
42
|
+
short_product_name: string;
|
|
43
|
+
modules_ids: number[];
|
|
44
|
+
subscription_id: number;
|
|
45
|
+
};
|
|
46
|
+
type CardViewProps = {
|
|
47
|
+
overviewData?: OverviewData;
|
|
48
|
+
};
|
|
49
|
+
declare const CardView: ({ overviewData }: CardViewProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
50
|
export default CardView;
|
|
@@ -1,6 +1,51 @@
|
|
|
1
1
|
|
|
2
2
|
type overviewPropTypes = {
|
|
3
3
|
onTabChange: (value: number) => void;
|
|
4
|
+
overviewData: OverviewData;
|
|
5
|
+
};
|
|
6
|
+
type OverviewData = {
|
|
7
|
+
employee_details: {
|
|
8
|
+
active_employee: number;
|
|
9
|
+
total_employee: number;
|
|
10
|
+
percentage: number;
|
|
11
|
+
};
|
|
12
|
+
wallet: {
|
|
13
|
+
balance: number;
|
|
14
|
+
openingBalance: number;
|
|
15
|
+
percentage: number | null;
|
|
16
|
+
};
|
|
17
|
+
orgInfo: {
|
|
18
|
+
org_code: string;
|
|
19
|
+
org_name: string;
|
|
20
|
+
org_address: string;
|
|
21
|
+
gstin: string;
|
|
22
|
+
email_id: string[];
|
|
23
|
+
mobile_number: string;
|
|
24
|
+
client_id: number;
|
|
25
|
+
country: string;
|
|
26
|
+
state: string;
|
|
27
|
+
city: string;
|
|
28
|
+
zip_code: string;
|
|
29
|
+
address_1: string | null;
|
|
30
|
+
address_2: string | null;
|
|
31
|
+
};
|
|
32
|
+
planDetails: {
|
|
33
|
+
current_plan: string;
|
|
34
|
+
billing_cycle: number;
|
|
35
|
+
plan_cost: number;
|
|
36
|
+
plan_expiring_date: string;
|
|
37
|
+
};
|
|
38
|
+
addOnProduct: AddOnProduct[];
|
|
39
|
+
plan_id: number;
|
|
40
|
+
add_on_id: string[];
|
|
41
|
+
usageCredit: any[];
|
|
42
|
+
};
|
|
43
|
+
type AddOnProduct = {
|
|
44
|
+
product_id: number;
|
|
45
|
+
product_name: string;
|
|
46
|
+
short_product_name: string;
|
|
47
|
+
modules_ids: number[];
|
|
48
|
+
subscription_id: number;
|
|
4
49
|
};
|
|
5
50
|
declare const SubscriptionPricing: (props: overviewPropTypes) => import("react/jsx-runtime").JSX.Element;
|
|
6
51
|
export default SubscriptionPricing;
|
package/dist/main.cjs
CHANGED
|
@@ -6474,4 +6474,4 @@ Excel and Word File Support for Onboarding Documents</font></font></font></b></f
|
|
|
6474
6474
|
|
|
6475
6475
|
</p>
|
|
6476
6476
|
</body>
|
|
6477
|
-
</html>`,product:"Advance HR"}],n=["Core HR","Advance HR","Finance","Engage","Timesheet","Workflow","Reports","Request","Payroll","Recruit","Perform","Learn"],[t,r]=Y.useState(n[0]),[o,i]=Y.useState(null),a=Y.useMemo(()=>e.filter(l=>l.product===t),[t]),s=l=>{i(u=>u===l?null:l)};return E.jsxs(Nr,{sx:{display:"flex",flexDirection:"column",height:"100vh",bgcolor:"#fafbfc"},children:[E.jsx(Nr,{sx:{display:"flex",alignItems:"center",justifyContent:"
|
|
6477
|
+
</html>`,product:"Advance HR"}],n=["Core HR","Advance HR","Finance","Engage","Timesheet","Workflow","Reports","Request","Payroll","Recruit","Perform","Learn"],[t,r]=Y.useState(n[0]),[o,i]=Y.useState(null),a=Y.useMemo(()=>e.filter(l=>l.product===t),[t]),s=l=>{i(u=>u===l?null:l)};return E.jsxs(Nr,{sx:{display:"flex",flexDirection:"column",height:"100vh",bgcolor:"#fafbfc"},children:[E.jsx(Nr,{sx:{display:"flex",alignItems:"center",justifyContent:"center",px:4,py:2.5,bgcolor:"white",borderBottom:"1px solid #e5e7eb",boxShadow:"0 1px 2px rgba(0,0,0,0.05)"},children:E.jsx(or,{variant:"h4",sx:{fontWeight:700,color:"#1976d2",letterSpacing:"-0.5px"},children:"What's New"})}),E.jsxs(Nr,{sx:{display:"flex",flex:1,overflow:"hidden"},children:[E.jsxs(Nr,{sx:{width:280,bgcolor:"white",borderRight:"1px solid #e5e7eb",overflowY:"auto"},children:[E.jsx(or,{variant:"overline",sx:{display:"block",px:3,pt:2,pb:1,color:"#6b7280",fontWeight:600,letterSpacing:"0.5px"},children:"Products"}),E.jsx(rD,{component:"nav",disablePadding:!0,children:n.map(l=>E.jsx(C3e,{selected:t===l,onClick:()=>r(l),sx:{py:1.5,px:3,borderRight:t===l?"3px solid #1976d2":"3px solid transparent",bgcolor:t===l?"rgba(25,118,210,0.08)":"transparent","&:hover":{bgcolor:t===l?"rgba(25,118,210,0.12)":"rgba(0,0,0,0.04)"}},children:E.jsx(aoe,{primary:l,primaryTypographyProps:{fontSize:"0.9rem",fontWeight:t===l?600:500,color:t===l?"#1976d2":"#374151"}})},l))})]}),E.jsx(Nr,{sx:{flex:1,p:4,overflowY:"auto"},children:E.jsx(Nr,{sx:{maxWidth:900,margin:"0 auto"},children:a.length===0?E.jsx(h9,{sx:{textAlign:"center",py:6,px:3,borderRadius:2,boxShadow:"0 1px 3px rgba(0,0,0,0.08)"},children:E.jsxs(g9,{children:[E.jsxs(or,{variant:"h6",sx:{color:"#6b7280",mb:1},children:['No updates found for "',t,'"']}),E.jsx(or,{variant:"body2",sx:{color:"#9ca3af"},children:"Check back later for new updates"})]})}):a.map(l=>E.jsx(h9,{sx:{mb:3,borderRadius:2,boxShadow:"0 1px 3px rgba(0,0,0,0.08)",transition:"all 0.3s","&:hover":{boxShadow:"0 4px 12px rgba(0,0,0,0.12)"}},children:E.jsxs(g9,{sx:{p:3},children:[E.jsx(Nr,{sx:{display:"flex",justifyContent:"space-between",alignItems:"center",mb:1.5},children:E.jsx(or,{variant:"h5",sx:{fontWeight:700,color:"#1976d2"},children:l.title})}),E.jsx(or,{variant:"body2",sx:{color:"#6b7280",lineHeight:1.6,mb:2},children:l.excerpt}),E.jsx(e3,{in:o===l.id,children:E.jsx(or,{variant:"body2",sx:{color:"#6b7280",lineHeight:1.8,mb:2},children:Ymn(l.description)})}),E.jsx(bl,{sx:{mb:2}}),E.jsxs(Nr,{sx:{display:"flex",justifyContent:"space-between",alignItems:"center"},children:[E.jsx(Nr,{sx:{display:"flex",gap:1.5,alignItems:"center"},children:E.jsxs(Nr,{children:[E.jsx(or,{variant:"body2",sx:{fontWeight:600,color:"#111827"},children:"Product Team"}),E.jsx(or,{variant:"caption",sx:{color:"#9ca3af"},children:l.date})]})}),E.jsx(Mh,{variant:"contained",onClick:()=>s(l.id),endIcon:o===l.id?E.jsx(hit,{}):E.jsx(git,{}),sx:{bgcolor:"#1976d2",fontWeight:600,textTransform:"none",borderRadius:2,"&:hover":{bgcolor:"#1565c0"}},children:o===l.id?"Show less":"Read more"})]})]})},l.id))})})]})]})};exports.BillingSubscription=Cqt;exports.CustomerInvoices=AXt;exports.Ledger=jgn;exports.Mail=Bqt;exports.ManageProvider=opt;exports.PlansOverview=rqt;exports.ProductUpdates=Umn;exports.ServiceDeskLogs=ZJt;exports.SubscriptionConsumption=aUt;exports.SubscriptionOverview=PZt;exports.SubscriptionPaymentMethod=ZZt;exports.SubscriptionPlans=cqt;exports.SubscriptionWallet=wqt;exports.TempPayment=Fgn;exports.UpcomingInvoices=Vqt;
|
package/dist/main.js
CHANGED
|
@@ -135356,7 +135356,7 @@ Excel and Word File Support for Onboarding Documents</font></font></font></b></f
|
|
|
135356
135356
|
sx: {
|
|
135357
135357
|
display: "flex",
|
|
135358
135358
|
alignItems: "center",
|
|
135359
|
-
justifyContent: "
|
|
135359
|
+
justifyContent: "center",
|
|
135360
135360
|
px: 4,
|
|
135361
135361
|
py: 2.5,
|
|
135362
135362
|
bgcolor: "white",
|
|
@@ -1,3 +1,50 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import "./CardView.css";
|
|
2
|
+
type OverviewData = {
|
|
3
|
+
employee_details: {
|
|
4
|
+
active_employee: number;
|
|
5
|
+
total_employee: number;
|
|
6
|
+
percentage: number;
|
|
7
|
+
};
|
|
8
|
+
wallet: {
|
|
9
|
+
balance: number;
|
|
10
|
+
openingBalance: number;
|
|
11
|
+
percentage: number | null;
|
|
12
|
+
};
|
|
13
|
+
orgInfo: {
|
|
14
|
+
org_code: string;
|
|
15
|
+
org_name: string;
|
|
16
|
+
org_address: string;
|
|
17
|
+
gstin: string;
|
|
18
|
+
email_id: string[];
|
|
19
|
+
mobile_number: string;
|
|
20
|
+
client_id: number;
|
|
21
|
+
country: string;
|
|
22
|
+
state: string;
|
|
23
|
+
city: string;
|
|
24
|
+
zip_code: string;
|
|
25
|
+
address_1: string | null;
|
|
26
|
+
address_2: string | null;
|
|
27
|
+
};
|
|
28
|
+
planDetails: {
|
|
29
|
+
current_plan: string;
|
|
30
|
+
billing_cycle: number;
|
|
31
|
+
plan_cost: number;
|
|
32
|
+
plan_expiring_date: string;
|
|
33
|
+
};
|
|
34
|
+
addOnProduct: AddOnProduct[];
|
|
35
|
+
plan_id: number;
|
|
36
|
+
add_on_id: string[];
|
|
37
|
+
usageCredit: any[];
|
|
38
|
+
};
|
|
39
|
+
type AddOnProduct = {
|
|
40
|
+
product_id: number;
|
|
41
|
+
product_name: string;
|
|
42
|
+
short_product_name: string;
|
|
43
|
+
modules_ids: number[];
|
|
44
|
+
subscription_id: number;
|
|
45
|
+
};
|
|
46
|
+
type CardViewProps = {
|
|
47
|
+
overviewData?: OverviewData;
|
|
48
|
+
};
|
|
49
|
+
declare const CardView: ({ overviewData }: CardViewProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
50
|
export default CardView;
|
package/dist/src/components/manage/Subscription/SubscriptionPricing/SubscriptionPricing.d.ts
CHANGED
|
@@ -1,6 +1,51 @@
|
|
|
1
|
-
import
|
|
1
|
+
import "./SubscriptionPricing.css";
|
|
2
2
|
type overviewPropTypes = {
|
|
3
3
|
onTabChange: (value: number) => void;
|
|
4
|
+
overviewData: OverviewData;
|
|
5
|
+
};
|
|
6
|
+
type OverviewData = {
|
|
7
|
+
employee_details: {
|
|
8
|
+
active_employee: number;
|
|
9
|
+
total_employee: number;
|
|
10
|
+
percentage: number;
|
|
11
|
+
};
|
|
12
|
+
wallet: {
|
|
13
|
+
balance: number;
|
|
14
|
+
openingBalance: number;
|
|
15
|
+
percentage: number | null;
|
|
16
|
+
};
|
|
17
|
+
orgInfo: {
|
|
18
|
+
org_code: string;
|
|
19
|
+
org_name: string;
|
|
20
|
+
org_address: string;
|
|
21
|
+
gstin: string;
|
|
22
|
+
email_id: string[];
|
|
23
|
+
mobile_number: string;
|
|
24
|
+
client_id: number;
|
|
25
|
+
country: string;
|
|
26
|
+
state: string;
|
|
27
|
+
city: string;
|
|
28
|
+
zip_code: string;
|
|
29
|
+
address_1: string | null;
|
|
30
|
+
address_2: string | null;
|
|
31
|
+
};
|
|
32
|
+
planDetails: {
|
|
33
|
+
current_plan: string;
|
|
34
|
+
billing_cycle: number;
|
|
35
|
+
plan_cost: number;
|
|
36
|
+
plan_expiring_date: string;
|
|
37
|
+
};
|
|
38
|
+
addOnProduct: AddOnProduct[];
|
|
39
|
+
plan_id: number;
|
|
40
|
+
add_on_id: string[];
|
|
41
|
+
usageCredit: any[];
|
|
42
|
+
};
|
|
43
|
+
type AddOnProduct = {
|
|
44
|
+
product_id: number;
|
|
45
|
+
product_name: string;
|
|
46
|
+
short_product_name: string;
|
|
47
|
+
modules_ids: number[];
|
|
48
|
+
subscription_id: number;
|
|
4
49
|
};
|
|
5
50
|
declare const SubscriptionPricing: (props: overviewPropTypes) => import("react/jsx-runtime").JSX.Element;
|
|
6
51
|
export default SubscriptionPricing;
|