@zimyo/manage 0.3.20 → 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.
- package/dist/components/manage/Subscription/PaymentRecords/TableView/Table.d.ts +1 -16
- package/dist/components/manage/Subscription/PlansOverview/ComaprePlans.d.ts +5 -0
- package/dist/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +2 -50
- package/dist/main.cjs +251 -254
- package/dist/main.js +32269 -32024
- package/dist/shared/constants/endpoints.d.ts +1 -0
- package/dist/src/components/manage/Subscription/PaymentRecords/TableView/Table.d.ts +1 -16
- package/dist/src/components/manage/Subscription/PlansOverview/ComaprePlans.d.ts +5 -0
- package/dist/src/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +2 -50
- package/dist/src/shared/constants/endpoints.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/manage/Subscription/NewLedger/NewLedger.d.ts +0 -1
- package/dist/components/manage/Subscription/PaymentRecords/CardView/Card.d.ts +0 -18
- package/dist/components/utils/index.d.ts +0 -27
- package/dist/src/components/manage/Subscription/NewLedger/NewLedger.d.ts +0 -1
- package/dist/src/components/manage/Subscription/PaymentRecords/CardView/Card.d.ts +0 -17
- package/dist/src/components/utils/index.d.ts +0 -26
|
@@ -22,3 +22,4 @@ export declare const SD_STATUS_WISE_COUNT = "email/status-wise-count";
|
|
|
22
22
|
export declare const SD_EMAIL_TICKET_LIST = "email/list";
|
|
23
23
|
export declare const TRANSACTION_HISTORY_LEDGER = "subscription/ledger";
|
|
24
24
|
export declare const TRANSACTION_HISTORY_PAYMENT_HISTORY = "subscription/payment-history";
|
|
25
|
+
export declare const SEND_MAIL_TO_SPOC = "subscription/sendmailtospoc";
|
|
@@ -1,16 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import "./Table.css";
|
|
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 {};
|
|
@@ -1,50 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
|
+
import "./style.css";
|
|
2
|
+
export declare function PlansOverview(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -22,3 +22,4 @@ export declare const SD_STATUS_WISE_COUNT = "email/status-wise-count";
|
|
|
22
22
|
export declare const SD_EMAIL_TICKET_LIST = "email/list";
|
|
23
23
|
export declare const TRANSACTION_HISTORY_LEDGER = "subscription/ledger";
|
|
24
24
|
export declare const TRANSACTION_HISTORY_PAYMENT_HISTORY = "subscription/payment-history";
|
|
25
|
+
export declare const SEND_MAIL_TO_SPOC = "subscription/sendmailtospoc";
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#fafbfc}*,body,button,ul,li{letter-spacing:.3px}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}*{letter-spacing:.3px!important}.wh-100{height:100%!important;width:100%!important}.app-container{height:100vh;background-color:#f3f3f3}.mt-10{margin-top:10px!important}.g-20{gap:20px}.g-10{gap:10px}.flex-column{flex-direction:column}.g-5{gap:5px}.mb-20{margin-bottom:20px!important}.mb-10{margin-bottom:10px!important}.mr-10{margin-right:10px!important}.w-100{width:100%!important}.mt-20{margin-top:2.454vh!important}.flex-start-center{display:flex;justify-content:flex-start;align-items:center}.flex-start-column{display:flex;justify-content:flex-start;flex-direction:column}.flex-end-column{display:flex;justify-content:flex-end;flex-direction:column}.flex-between-column{display:flex;justify-content:space-between;flex-direction:column;align-items:center}.flex-end-center{display:flex;justify-content:flex-end;align-items:center}.flex-between-center{display:flex;justify-content:space-between;align-items:center}.flex-between{display:flex;justify-content:space-between}.cursor-pointer{cursor:pointer}::-webkit-scrollbar-track{border-radius:10px;background-color:transparent}::-webkit-scrollbar{width:.5vh;height:.5vh;background-color:transparent}::-webkit-scrollbar-thumb{border-radius:10px;background-color:#e9e7e7}._card_container_mtohj_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._card_count_mtohj_13{font-size:18px;font-weight:600}._card_subtitles_mtohj_18{font-size:1rem;font-weight:600}._icons_background_mtohj_23{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:50%;margin:auto}._listing_icons_mtohj_32{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:1rem;height:1rem;margin:auto}._sub_icons_background_mtohj_43{display:flex;align-items:center;justify-content:center;padding:4px;border-radius:50%;margin:auto}.overlay{position:fixed;display:flex;width:100%;height:100%;inset:0;cursor:pointer;align-items:center;justify-content:center;background-color:#fff;z-index:999}.overlay-component{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);transform:-webkit-translate(-50%,-50%);transform:-moz-translate(-50%,-50%);transform:-ms-translate(-50%,-50%);background-color:#fff0;z-index:999}._card_container_dxhto_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;min-height:160px}._card_count_dxhto_14{font-size:18px;font-weight:600}._card_container_95l02_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;gap:10px;min-height:114px;height:100%}._card_count_95l02_13{font-size:18px;font-weight:600}._card_subtitles_95l02_18{font-size:1rem;font-weight:600}._card_container_c1yb9_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._card_count_c1yb9_13{font-size:18px;font-weight:600}._card_subtitles_c1yb9_18{font-size:1rem;font-weight:600}._icons_background_c1yb9_23{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:50%;margin:auto}._sub_icons_background_c1yb9_32{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;margin:auto}._card_container_1iza3_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._plan_card_1iza3_13{padding:1rem 1.5rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;min-height:145px;overflow-x:scroll}._discount_card_1iza3_27{position:absolute;top:0;right:0}._discount_card_1iza3_27 span{border-radius:0 0 0 8px;padding:4px 8px;background:#027a481a;color:#027a48;font-weight:600}._plan_total_count_1iza3_40{font-size:20px;font-weight:600}._card_count_1iza3_45{font-size:1.5rem;font-weight:700}._card_subtitles_1iza3_50{font-size:1rem;font-weight:600}._icons_background_1iza3_55{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:3rem;height:3rem;margin:auto}._card_container_1tgxf_1{padding:1rem;border:1px solid #c8c8c8;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between}._plans_1tgxf_11{height:665px}._add_ons_1tgxf_14{height:320px}._card_titles_1tgxf_18{font-size:1.5rem;font-weight:700}._add_ons_title_1tgxf_23{font-size:1.125rem;font-weight:700}._card_subtitles_1tgxf_28{font-size:1rem;font-weight:600}._icons_background_1tgxf_33{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:2rem;height:2rem;margin:auto}._subicons_background_1tgxf_44{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:1rem;height:1rem;margin:auto}._plan_headers_1tgxf_55{display:flex;flex-direction:column;gap:5px;align-items:center;justify-content:flex-start}._card_content_1tgxf_63{display:flex;flex-direction:column;justify-content:flex-start;gap:10px;height:430px;overflow:scroll}._card_container_vce56_1{padding:1rem;border:1px solid #c8c8c8;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._card_titles_vce56_13{font-size:24px;font-weight:700}._card_subtitles_vce56_18{font-size:1rem;font-weight:600}._card_subtotal_vce56_23{font-size:1rem;font-weight:600;color:#615e69}._icons_background_vce56_29{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:3rem;height:3rem;margin:auto}._card_headers_vce56_40{display:flex;justify-content:center;align-items:center;padding:1rem;height:100px}._card_content_vce56_48{display:flex;justify-content:center;gap:5px;flex-direction:column;align-items:center;padding:1rem;height:190px;overflow:scroll}._card_container_1ts8v_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._card_count_1ts8v_13{font-size:18px;font-weight:600}._card_subtitles_1ts8v_18{font-size:1rem;font-weight:600}._icons_background_1ts8v_23{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:3rem;height:3rem;margin:auto}._credit_card_1ts8v_34{width:272px;height:161px;border-radius:1rem;background:linear-gradient(45deg,#00359e,#155eef)}._circle_1ts8v_41{position:absolute;width:1rem;height:1rem;border-radius:50%;opacity:.8;mix-blend-mode:multiply}._circle1_1ts8v_50{background-color:red;left:6%;transform:translate(-50%,-50%)}._circle2_1ts8v_56{background-color:#f9a000;left:9%;transform:translate(-50%,-50%)}._circle_container_1ts8v_62{display:flex;justify-content:center;align-items:center;position:relative;top:30px;color:#fff;z-index:120}._credit_card_holder_name_1ts8v_72{display:flex;justify-content:center;align-items:center;position:relative;top:140px;color:#fff;z-index:120;font-size:10px}._credit_card_holder_name_absolute_1ts8v_83{position:absolute;width:220px;opacity:.8;left:4%;mix-blend-mode:multiply}*{margin:0;padding:0;box-sizing:border-box}body{margin:0;padding:0;height:100%;width:100%;font-family:Inter,sans-serif}._main_container_1peyy_17{min-height:100vh;width:100%}._first_row_1peyy_24{display:flex;flex-direction:row;gap:16px;width:100%}._card_container_1peyy_34{display:flex;flex-direction:column;padding:8px 24px;gap:20px;flex:1;height:100%;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._billing_container_1peyy_48{display:flex;flex-direction:column;align-items:flex-start;padding:8px 24px;gap:16px;height:100%;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._companyinfo_container_1peyy_62{display:flex;flex-direction:column;align-items:flex-start;padding:8px 24px;gap:24px;height:100%;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._second_row_1peyy_76{display:flex;flex-direction:row;gap:16px;width:100%}._leftside_container_1peyy_86{display:flex;flex-direction:column;align-items:flex-start;gap:16px;flex:1}._last_invoice_1peyy_96{display:flex;flex-direction:column;align-items:flex-start;padding:8px 24px;gap:8px;width:100%;height:100%;min-height:157px;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._planDetails_container_1peyy_111{display:flex;flex-direction:column;align-items:flex-start;padding:8px 24px;gap:20px;width:100%;height:100%;min-height:158px;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._moduleUsage_container_1peyy_126{display:flex;flex-direction:column;padding:8px 24px;gap:20px;height:100%;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._flex_col_1peyy_139{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;gap:8px}._addons_box_1peyy_147{box-sizing:border-box;display:flex;flex-direction:column;align-items:flex-start;padding:8px;isolation:isolate;width:60%;height:100%;background:#fff;border-radius:4px;flex:none;order:1;align-self:stretch;flex-grow:0}._innerIcon_container_1peyy_169{display:flex;flex-direction:column;align-items:center;padding:0;width:100%;height:100%;flex:none;order:0;align-self:stretch;flex-grow:0;z-index:0}._icon_box_1peyy_191{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:0;width:56px;height:56px;background:#eff6ff;border-radius:8px;flex:none;order:0;flex-grow:0}._addons_wrapper_1peyy_214{display:flex;flex-direction:row;justify-content:center;align-items:flex-start;padding:0;gap:16px;width:100%;height:100%;flex:none;order:1;align-self:stretch;flex-grow:0}@media (max-width: 1400px){._first_row_1peyy_24{flex-wrap:wrap}._card_container_1peyy_34,._billing_container_1peyy_48,._companyinfo_container_1peyy_62{max-width:100%;width:100%}._second_row_1peyy_76{flex-direction:column}._moduleUsage_container_1peyy_126{width:100%}}body,*{font-family:Segoe UI Web,Segoe UI,Roboto,Arial,sans-serif!important}.header-section{margin-bottom:24px;position:relative;display:flex;flex-direction:column;align-items:center;width:100%}.header-top{display:flex;align-items:center;justify-content:space-between;width:100%;position:relative}.header-info{display:flex;flex-direction:column;justify-content:center}.header-info h1{font-size:30px;font-weight:700;color:#111827;margin-bottom:4px}.header-info p{font-size:14px;color:#6b7280}.header-info span{font-weight:600;color:#111827}.upgrade-button{background-color:#ff8c00!important;color:#fff!important;border:none!important;padding:10px 24px!important;border-radius:4px!important;font-size:14px!important;font-weight:600!important;cursor:pointer;transition:background-color .2s;text-transform:none!important}.upgrade-button:hover{background-color:#e67e00!important}.view-options{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:12px;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.view-card{background-color:#fff;padding:8px 16px;border:1px solid #E5E7EB;border-radius:4px;display:inline-flex;align-items:center;justify-content:center;gap:8px;cursor:pointer}.view-card.active{background-color:#e7edf4}.view-card.active .view-link{color:#1d4ed8!important}.view-link{font-size:14px!important;font-weight:500!important;text-decoration:none}.addons-section{margin-bottom:24px}.addons-title{font-size:20px!important;font-weight:700!important;color:#111827!important;margin-bottom:2px!important}.addons-subtitle{font-size:14px!important;color:#6b7280!important;margin-bottom:24px!important}.addons-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.addon-card{background-color:#fff!important;border:1px solid #E5E7EB!important;border-radius:4px!important;padding:24px!important;position:relative;height:100%}.addon-badge{position:absolute!important;top:16px!important;right:16px!important;background-color:#d1fae5!important;color:#065f46!important;padding:4px 12px!important;border-radius:4px!important;font-size:12px!important;font-weight:600!important;height:auto!important}.addon-icon-container{width:56px;height:56px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}.addon-name{font-size:16px!important;font-weight:600!important;color:#111827!important;margin-bottom:4px!important}.addon-description{font-size:14px!important;color:#6b7280!important;margin-bottom:16px!important}.addon-footer{display:flex;justify-content:space-between;align-items:center}.addon-price{display:flex;align-items:baseline}.addon-price-amount{font-size:24px!important;font-weight:700!important;color:#111827!important}.addon-price-unit{font-size:14px!important;color:#6b7280!important;margin-left:4px!important}.addon-button{background-color:#f4f9f7!important;padding:6px 12px!important;border-radius:4px!important;font-size:14px!important;font-weight:600!important;cursor:pointer;transition:all .2s;text-transform:none!important}.addon-button:hover{background-color:#d1fae5!important}.help-section{background-color:#fff!important;border:1px solid #E5E7EB!important;border-radius:4px!important;padding:24px!important;display:flex;justify-content:space-between;align-items:center}.help-title{font-size:18px!important;font-weight:600!important;color:#111827!important}.help-text{font-size:14px!important;color:#6b7280!important}.contact-button{background-color:#3b82f6!important;color:#fff!important;border:none!important;padding:8px 24px!important;border-radius:4px!important;font-size:14px!important;font-weight:600!important;cursor:pointer;transition:background-color .2s;text-transform:none!important}.contact-button:hover{background-color:#1e53c6!important}@media (max-width: 960px){.addons-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width: 768px){.header-top{flex-direction:column;gap:16px}.help-section{flex-direction:column;gap:16px;text-align:center}.addons-grid{grid-template-columns:1fr}}@media (max-width: 600px){.plans-grid{gap:12px}.plan-card{min-width:280px}}.plans-wrapper{width:100%}.plans-scroll-container{overflow-x:auto;overflow-y:hidden;padding-bottom:8px;margin-bottom:16px}.plans-scroll-container::-webkit-scrollbar{height:6px}.plans-scroll-container::-webkit-scrollbar-track{background:#f1f1f1;border-radius:10px}.plans-scroll-container::-webkit-scrollbar-thumb{background:#888;border-radius:10px}.plans-scroll-container::-webkit-scrollbar-thumb:hover{background:#555}.plans-grid{display:flex;gap:16px}.plan-card{background-color:#fff!important;border-radius:4px!important;padding:24px!important;position:relative;display:flex;flex-direction:column;min-width:320px;flex:1}.plan-card.current{border:2px solid #3B82F6!important}.plan-card:not(.current){border:1px solid #E5E7EB!important}.plan-badge{position:absolute!important;top:16px!important;right:16px!important;padding:4px 12px!important;border-radius:4px!important;font-size:12px!important;font-weight:600!important;height:auto!important}.popular{background-color:#fef3c7!important;color:#92400e!important}.plan-badge.current-badge{background-color:#3b82f6!important;color:#fff!important}.plan-header{display:flex;align-items:center;gap:4px}.plan-title{font-size:20px!important;font-weight:700!important;color:#111827!important;margin-bottom:4px!important}.plan-price{display:flex;align-items:baseline;margin-bottom:8px}.price-amount{font-size:36px!important;font-weight:700!important;color:#111827!important}.price-unit{font-size:14px!important;color:#6b7280!important;margin-left:4px!important}.plan-description{font-size:12px!important;color:#6b7280!important;margin-bottom:16px!important;display:block!important}.plan-button{width:100%;padding:12px 16px!important;border-radius:4px!important;font-size:14px!important;font-weight:600!important;margin-bottom:16px!important;cursor:pointer;transition:all .2s;text-transform:none!important}.plan-button.filled{background-color:#3b82f6!important;color:#fff!important;border:none!important}.plan-button.filled:hover{background-color:#2563eb!important}.plan-button.outlined{background-color:#edecec!important;color:#535557!important;border:1px solid #E5E7EB!important}.plan-button.outlined:hover{background-color:#f9fafb!important}.plan-link{font-size:12px!important;color:#3b82f6!important;margin-bottom:16px!important;display:block!important;cursor:pointer}.plan-features{flex:1;overflow-y:auto;max-height:340px}.plan-features::-webkit-scrollbar{width:6px}.plan-features::-webkit-scrollbar-track{background:#f1f1f1;border-radius:10px}.plan-features::-webkit-scrollbar-thumb{background:#3b82f6;border-radius:10px}.plan-features::-webkit-scrollbar-thumb:hover{background:#2563eb}.feature-category{margin-bottom:16px}.category-title{font-size:14px!important;font-weight:600!important;color:#111827!important;margin-bottom:12px!important}.feature-list{display:flex;flex-direction:column;gap:8px}.feature-item{display:flex;align-items:center;gap:8px}.check-icon{width:16px;height:16px;color:#10b981;flex-shrink:0}.feature-text{font-size:14px!important;color:#374151!important}.compare-plans-container{display:flex;justify-content:center;margin-bottom:24px}.pricing-table{width:100%;background:#fff;border-radius:4px;border:1px solid #e5e7eb;overflow:hidden}.table-header{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;border-bottom:1px solid #e5e7eb;background:#fff}.header-cell{padding:16px 32px;display:flex;flex-direction:column;align-items:flex-start}.header-cell:last-child{border-right:none}.feature-column,.plan-column{align-items:flex-start}.header-text{font-size:16px;font-weight:600;color:#1f2937}.plan-name{font-size:16px;font-weight:600;color:#1f2937;margin-bottom:4px}.plan-price{font-size:14px;font-weight:400;color:#9ca3af}.table-row{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;border-bottom:1px solid #f3f4f6}.table-row:nth-child(2n){background:#f9fafb}.table-row:nth-child(odd){background:#fff}.table-row:last-child{border-bottom:none}.feature-cell{padding:14px 32px;display:flex;align-items:center}.feature-name{font-size:15px;color:#4b5563;font-weight:400}.plan-cell{padding:14px 32px;display:flex;align-items:center;justify-content:flex-start}.plan-cell:last-child{border-right:none}.check-icon{color:#10b981;font-size:22px}.dash-icon{color:#d1d5db;font-size:22px}@media (max-width: 768px){.table-header,.table-row{grid-template-columns:1.5fr 1fr 1fr 1fr}.header-cell,.feature-cell,.plan-cell{padding:16px}.header-text,.plan-name{font-size:14px}.plan-price,.feature-name{font-size:13px}}
|
|
1
|
+
@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#fafbfc}*,body,button,ul,li{letter-spacing:.3px}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}*{letter-spacing:.3px!important}.wh-100{height:100%!important;width:100%!important}.app-container{height:100vh;background-color:#f3f3f3}.mt-10{margin-top:10px!important}.g-20{gap:20px}.g-10{gap:10px}.flex-column{flex-direction:column}.g-5{gap:5px}.mb-20{margin-bottom:20px!important}.mb-10{margin-bottom:10px!important}.mr-10{margin-right:10px!important}.w-100{width:100%!important}.mt-20{margin-top:2.454vh!important}.flex-start-center{display:flex;justify-content:flex-start;align-items:center}.flex-start-column{display:flex;justify-content:flex-start;flex-direction:column}.flex-end-column{display:flex;justify-content:flex-end;flex-direction:column}.flex-between-column{display:flex;justify-content:space-between;flex-direction:column;align-items:center}.flex-end-center{display:flex;justify-content:flex-end;align-items:center}.flex-between-center{display:flex;justify-content:space-between;align-items:center}.flex-between{display:flex;justify-content:space-between}.cursor-pointer{cursor:pointer}::-webkit-scrollbar-track{border-radius:10px;background-color:transparent}::-webkit-scrollbar{width:.5vh;height:.5vh;background-color:transparent}::-webkit-scrollbar-thumb{border-radius:10px;background-color:#e9e7e7}._card_container_mtohj_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._card_count_mtohj_13{font-size:18px;font-weight:600}._card_subtitles_mtohj_18{font-size:1rem;font-weight:600}._icons_background_mtohj_23{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:50%;margin:auto}._listing_icons_mtohj_32{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:1rem;height:1rem;margin:auto}._sub_icons_background_mtohj_43{display:flex;align-items:center;justify-content:center;padding:4px;border-radius:50%;margin:auto}.overlay{position:fixed;display:flex;width:100%;height:100%;inset:0;cursor:pointer;align-items:center;justify-content:center;background-color:#fff;z-index:999}.overlay-component{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);transform:-webkit-translate(-50%,-50%);transform:-moz-translate(-50%,-50%);transform:-ms-translate(-50%,-50%);background-color:#fff0;z-index:999}._card_container_dxhto_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;min-height:160px}._card_count_dxhto_14{font-size:18px;font-weight:600}._card_container_95l02_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;gap:10px;min-height:114px;height:100%}._card_count_95l02_13{font-size:18px;font-weight:600}._card_subtitles_95l02_18{font-size:1rem;font-weight:600}._card_container_c1yb9_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._card_count_c1yb9_13{font-size:18px;font-weight:600}._card_subtitles_c1yb9_18{font-size:1rem;font-weight:600}._icons_background_c1yb9_23{display:flex;align-items:center;justify-content:center;padding:8px;border-radius:50%;margin:auto}._sub_icons_background_c1yb9_32{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;margin:auto}._card_container_1iza3_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._plan_card_1iza3_13{padding:1rem 1.5rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;min-height:145px;overflow-x:scroll}._discount_card_1iza3_27{position:absolute;top:0;right:0}._discount_card_1iza3_27 span{border-radius:0 0 0 8px;padding:4px 8px;background:#027a481a;color:#027a48;font-weight:600}._plan_total_count_1iza3_40{font-size:20px;font-weight:600}._card_count_1iza3_45{font-size:1.5rem;font-weight:700}._card_subtitles_1iza3_50{font-size:1rem;font-weight:600}._icons_background_1iza3_55{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:3rem;height:3rem;margin:auto}.plans-container{display:flex;gap:24px;justify-content:center;flex-wrap:wrap}.plan-card{position:relative;width:300px;border:4px solid #e5e7eb;border-radius:16px;background:#fff;display:flex;flex-direction:column;box-shadow:0 4px 12px #0000000d;transition:.2s ease}.subscription-plan-header{padding:20px;background:#f9fafb}.plan-title{margin:0 0 8px;font-size:22px;font-weight:700}.plan-includes-text{font-size:13px;color:#3b82f6}.price-wrapper{display:flex;align-items:flex-end;gap:4px;margin-bottom:8px}.price-currency{font-size:22px;font-weight:700;color:#111827}.price-amount{font-size:36px;font-weight:800;color:#111827;line-height:1}.price-duration{font-size:14px;color:#6b7280;padding-bottom:6px}.minimum-billing{font-size:13px;color:#6b7280;margin-top:4px}.plan-body{padding:16px 20px;max-height:360px;overflow-y:auto}.plan-section{margin-bottom:20px}.section-title{margin-bottom:8px;font-size:15px;font-weight:600}.features-list{list-style:none;padding:0;margin:0}.feature-item{display:flex;gap:6px;margin-bottom:6px;font-size:14px}.tick{color:#10b981;font-weight:700}.plan-footer{padding:16px 20px;border-top:4px solid #f3f4f6}.btn-demo{width:100%;padding:12px;background:#e5e7eb;border:none;border-radius:8px;font-size:14px;cursor:pointer;transition:.2s}.btn-demo:hover{background:#d1d5db}.sub-addon-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(330px,1fr));gap:20px}.sub-addon-card{position:relative;display:flex;gap:16px;align-items:flex-start;padding:18px 20px;background:#fff;border:1px solid #e5e7eb;border-radius:4px;box-shadow:0 2px 5px #0000000a}.sub-addon-card.current{border:2px solid #3B82F6!important}.sub-addon-chip{position:absolute;top:12px;right:12px;border:1px solid #a7f3d0}.sub-addon-icon{width:52px;height:52px;background:#f2f6ff;border-radius:14px;display:flex;align-items:center;justify-content:center}.sub-addon-icon-svg{font-size:28px;color:#2563eb}.sub-addon-details{flex:1;padding-top:4px}.sub-addon-title{margin:0;font-size:17px;font-weight:600}.sub-addon-subtitle{margin:4px 0 8px;font-size:13px;color:#6b7280}.sub-addon-price{display:flex;align-items:baseline;gap:4px}.sub-addon-price-curr{font-size:18px;font-weight:700;color:#111827}.sub-addon-price-amount{font-size:22px;font-weight:700;color:#111827}.sub-addon-price-duration{font-size:13px;color:#6b7280}.sub-summaryTableContainer{border:1px solid #e5e7eb;border-radius:12px;background:#fff;overflow:hidden;min-height:180px;box-shadow:0 1px 3px #00000014}.sub-summaryTable{width:100%}.sub-summaryTableHeadRow{background:#f7f7f7}.sub-summaryTableHeaderCell{font-weight:600;font-size:14px;color:#444;padding:12px}.sub-summaryTableRow{border-bottom:1px solid #e5e7eb;transition:background .2s ease}.sub-summaryTableRow:hover{background:#fafafa}.sub-summaryTableCell{padding:12px;font-size:14px;color:#333}.sub-summaryTableInput{width:70px;padding:6px 8px;border:1px solid #ccc;border-radius:6px;font-size:14px}.checkout-summary{padding:20px;border:1px solid #dcdcdc;border-radius:4px;background:#fff;font-family:Arial,sans-serif}.summary-title{margin:0 0 15px;font-size:18px;font-weight:600;color:#333;text-align:center}.summary-row{display:flex;justify-content:space-between;margin:8px 0;font-size:15px;color:#444}.summary-row.total{font-weight:700;font-size:16px;color:#000}.summary-divider{height:1px;background:#e0e0e0;margin:15px 0}.cmp-container{border-radius:16px;overflow:hidden;border:1px solid #e3e6ea;box-shadow:0 4px 20px #0000000d;background:#fff}.cmp-container{border-radius:16px;overflow:hidden;border:1px solid #e3e6ea;box-shadow:0 4px 20px #0000000f;background:#fff}.cmp-table{width:100%;border-collapse:separate;border-spacing:0}.cmp-header-row{background:transparent}.cmp-plan-header{padding:16px 10px;border-left:1px solid #e3e3e3}.cmp-plan-title{font-size:16px;font-weight:700;color:#1f2937}.cmp-plan-price{font-size:13px;color:#6b7280;margin-top:3px}.cmp-module-col{font-weight:600;color:#1f2937;padding:14px 18px}.cmp-row{transition:background .2s ease}.cmp-row-alt{background:#fafafa}.cmp-row:hover{background:#f2f6ff}.cmp-tick-badge{display:inline-flex;align-items:center;justify-content:center;background:#e8f5e9;border-radius:50%;width:26px;height:26px}.cmp-tick-icon{color:#0b8a42;font-size:18px}.cmp-dash-badge{font-size:18px;color:#9ca3af;font-weight:700;display:flex;align-items:center;justify-content:center}.dlg-container .MuiDialog-paper{padding:0!important;margin:0!important;border-radius:14px}.dlg-content{padding:32px 28px 20px!important;text-align:center}.dlg-title{margin:0;font-weight:600;font-size:22px;color:#1f2937}.dlg-message{margin-top:8px;color:#6b7280;font-size:15px;line-height:1.5}.dlg-actions{display:flex!important;justify-content:center!important}.contact-plan-footer{padding:28px 22px;border-radius:4px;border:1px solid #e5e7eb;background:#fff;box-shadow:0 4px 20px #0000000d;display:flex;align-items:center;justify-content:space-between}.contact-plan-footer-text{display:flex;flex-direction:column}.contact-plan-footer-title{margin:0;font-size:20px;font-weight:600;color:#1f2937}.contact-plan-footer-subtitle{margin:4px 0 0;font-size:15px;color:#6b7280}._card_container_vce56_1{padding:1rem;border:1px solid #c8c8c8;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._card_titles_vce56_13{font-size:24px;font-weight:700}._card_subtitles_vce56_18{font-size:1rem;font-weight:600}._card_subtotal_vce56_23{font-size:1rem;font-weight:600;color:#615e69}._icons_background_vce56_29{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:3rem;height:3rem;margin:auto}._card_headers_vce56_40{display:flex;justify-content:center;align-items:center;padding:1rem;height:100px}._card_content_vce56_48{display:flex;justify-content:center;gap:5px;flex-direction:column;align-items:center;padding:1rem;height:190px;overflow:scroll}._card_container_1ts8v_1{padding:1rem;border:1px solid #ececec;border-radius:8px;background:#fff;display:flex;flex-direction:column;justify-content:space-between;min-height:145px;overflow-x:scroll}._card_count_1ts8v_13{font-size:18px;font-weight:600}._card_subtitles_1ts8v_18{font-size:1rem;font-weight:600}._icons_background_1ts8v_23{display:flex;align-items:center;justify-content:center;padding:5px;border-radius:50%;width:3rem;height:3rem;margin:auto}._credit_card_1ts8v_34{width:272px;height:161px;border-radius:1rem;background:linear-gradient(45deg,#00359e,#155eef)}._circle_1ts8v_41{position:absolute;width:1rem;height:1rem;border-radius:50%;opacity:.8;mix-blend-mode:multiply}._circle1_1ts8v_50{background-color:red;left:6%;transform:translate(-50%,-50%)}._circle2_1ts8v_56{background-color:#f9a000;left:9%;transform:translate(-50%,-50%)}._circle_container_1ts8v_62{display:flex;justify-content:center;align-items:center;position:relative;top:30px;color:#fff;z-index:120}._credit_card_holder_name_1ts8v_72{display:flex;justify-content:center;align-items:center;position:relative;top:140px;color:#fff;z-index:120;font-size:10px}._credit_card_holder_name_absolute_1ts8v_83{position:absolute;width:220px;opacity:.8;left:4%;mix-blend-mode:multiply}*{margin:0;padding:0;box-sizing:border-box}body{margin:0;padding:0;height:100%;width:100%;font-family:Inter,sans-serif}._main_container_1peyy_17{min-height:100vh;width:100%}._first_row_1peyy_24{display:flex;flex-direction:row;gap:16px;width:100%}._card_container_1peyy_34{display:flex;flex-direction:column;padding:8px 24px;gap:20px;flex:1;height:100%;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._billing_container_1peyy_48{display:flex;flex-direction:column;align-items:flex-start;padding:8px 24px;gap:16px;height:100%;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._companyinfo_container_1peyy_62{display:flex;flex-direction:column;align-items:flex-start;padding:8px 24px;gap:24px;height:100%;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._second_row_1peyy_76{display:flex;flex-direction:row;gap:16px;width:100%}._leftside_container_1peyy_86{display:flex;flex-direction:column;align-items:flex-start;gap:16px;flex:1}._last_invoice_1peyy_96{display:flex;flex-direction:column;align-items:flex-start;padding:8px 24px;gap:8px;width:100%;height:100%;min-height:157px;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._planDetails_container_1peyy_111{display:flex;flex-direction:column;align-items:flex-start;padding:8px 24px;gap:20px;width:100%;height:100%;min-height:158px;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._moduleUsage_container_1peyy_126{display:flex;flex-direction:column;padding:8px 24px;gap:20px;height:100%;background:#fff;box-shadow:0 1px 3px #0000001a;border-radius:2px}._flex_col_1peyy_139{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;gap:8px}._addons_box_1peyy_147{box-sizing:border-box;display:flex;flex-direction:column;align-items:flex-start;padding:8px;isolation:isolate;width:60%;height:100%;background:#fff;border-radius:4px;flex:none;order:1;align-self:stretch;flex-grow:0}._innerIcon_container_1peyy_169{display:flex;flex-direction:column;align-items:center;padding:0;width:100%;height:100%;flex:none;order:0;align-self:stretch;flex-grow:0;z-index:0}._icon_box_1peyy_191{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:0;width:56px;height:56px;background:#eff6ff;border-radius:8px;flex:none;order:0;flex-grow:0}._addons_wrapper_1peyy_214{display:flex;flex-direction:row;justify-content:center;align-items:flex-start;padding:0;gap:16px;width:100%;height:100%;flex:none;order:1;align-self:stretch;flex-grow:0}@media (max-width: 1400px){._first_row_1peyy_24{flex-wrap:wrap}._card_container_1peyy_34,._billing_container_1peyy_48,._companyinfo_container_1peyy_62{max-width:100%;width:100%}._second_row_1peyy_76{flex-direction:column}._moduleUsage_container_1peyy_126{width:100%}}body,*{font-family:Segoe UI Web,Segoe UI,Roboto,Arial,sans-serif!important}.header-section{margin-bottom:24px;position:relative;display:flex;flex-direction:column;align-items:center;width:100%}.header-top{display:flex;align-items:center;justify-content:space-between;width:100%;position:relative}.header-info{display:flex;flex-direction:column;justify-content:center}.header-info h1{font-size:30px;font-weight:700;color:#111827;margin-bottom:4px}.header-info p{font-size:14px;color:#6b7280}.header-info span{font-weight:600;color:#111827}.upgrade-button{background-color:#ff8c00!important;color:#fff!important;border:none!important;padding:10px 24px!important;border-radius:4px!important;font-size:14px!important;font-weight:600!important;cursor:pointer;transition:background-color .2s;text-transform:none!important}.upgrade-button:hover{background-color:#e67e00!important}.view-options{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:12px;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.view-card{background-color:#fff;padding:8px 16px;border:1px solid #E5E7EB;border-radius:4px;display:inline-flex;align-items:center;justify-content:center;gap:8px;cursor:pointer}.view-card.active{background-color:#e7edf4}.view-card.active .view-link{color:#1d4ed8!important}.view-link{font-size:14px!important;font-weight:500!important;text-decoration:none}.addons-section{margin-bottom:24px}.addons-title{font-size:20px!important;font-weight:700!important;color:#111827!important;margin-bottom:2px!important}.addons-subtitle{font-size:14px!important;color:#6b7280!important;margin-bottom:24px!important}.addons-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.addon-card{background-color:#fff!important;border:1px solid #E5E7EB!important;border-radius:4px!important;padding:24px!important;position:relative;height:100%}.addon-badge{position:absolute!important;top:16px!important;right:16px!important;background-color:#d1fae5!important;color:#065f46!important;padding:4px 12px!important;border-radius:4px!important;font-size:12px!important;font-weight:600!important;height:auto!important}.addon-icon-container{width:56px;height:56px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}.addon-name{font-size:16px!important;font-weight:600!important;color:#111827!important;margin-bottom:4px!important}.addon-description{font-size:14px!important;color:#6b7280!important;margin-bottom:16px!important}.addon-footer{display:flex;justify-content:space-between;align-items:center}.addon-price{display:flex;align-items:baseline}.addon-price-amount{font-size:24px!important;font-weight:700!important;color:#111827!important}.addon-price-unit{font-size:14px!important;color:#6b7280!important;margin-left:4px!important}.addon-button{background-color:#f4f9f7!important;padding:6px 12px!important;border-radius:4px!important;font-size:14px!important;font-weight:600!important;cursor:pointer;transition:all .2s;text-transform:none!important}.addon-button:hover{background-color:#d1fae5!important}.help-section{background-color:#fff!important;border:1px solid #E5E7EB!important;border-radius:4px!important;padding:24px!important;display:flex;justify-content:space-between;align-items:center}.help-title{font-size:18px!important;font-weight:600!important;color:#111827!important}.help-text{font-size:14px!important;color:#6b7280!important}.contact-button{background-color:#3b82f6!important;color:#fff!important;border:none!important;padding:8px 24px!important;border-radius:4px!important;font-size:14px!important;font-weight:600!important;cursor:pointer;transition:background-color .2s;text-transform:none!important}.contact-button:hover{background-color:#1e53c6!important}@media (max-width: 960px){.addons-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width: 768px){.header-top{flex-direction:column;gap:16px}.help-section{flex-direction:column;gap:16px;text-align:center}.addons-grid{grid-template-columns:1fr}}@media (max-width: 600px){.plans-grid{gap:12px}.plan-card{min-width:280px}}.plans-wrapper{width:100%}.plans-scroll-container{overflow-x:auto;overflow-y:hidden;padding-bottom:8px;margin-bottom:16px}.plans-scroll-container::-webkit-scrollbar{height:6px}.plans-scroll-container::-webkit-scrollbar-track{background:#f1f1f1;border-radius:10px}.plans-scroll-container::-webkit-scrollbar-thumb{background:#888;border-radius:10px}.plans-scroll-container::-webkit-scrollbar-thumb:hover{background:#555}.plans-grid{display:flex;gap:16px}.plan-card{background-color:#fff!important;border-radius:4px!important;padding:24px!important;position:relative;display:flex;flex-direction:column;min-width:320px;flex:1}.plan-card.current{border:2px solid #3B82F6!important}.plan-card:not(.current){border:1px solid #E5E7EB!important}.plan-badge{position:absolute!important;top:16px!important;right:16px!important;padding:4px 12px!important;border-radius:4px!important;font-size:12px!important;font-weight:600!important;height:auto!important}.popular{background-color:#fef3c7!important;color:#92400e!important}.plan-badge.current-badge{background-color:#3b82f6!important;color:#fff!important}.plan-header{display:flex;align-items:center;gap:4px}.plan-title{font-size:20px!important;font-weight:700!important;color:#111827!important;margin-bottom:4px!important}.plan-price{display:flex;align-items:baseline;margin-bottom:8px}.price-amount{font-size:36px!important;font-weight:700!important;color:#111827!important}.price-unit{font-size:14px!important;color:#6b7280!important;margin-left:4px!important}.plan-description{font-size:12px!important;color:#6b7280!important;margin-bottom:16px!important;display:block!important}.plan-button{width:100%;padding:12px 16px!important;border-radius:4px!important;font-size:14px!important;font-weight:600!important;margin-bottom:16px!important;cursor:pointer;transition:all .2s;text-transform:none!important}.plan-button.filled{background-color:#3b82f6!important;color:#fff!important;border:none!important}.plan-button.filled:hover{background-color:#2563eb!important}.plan-button.outlined{background-color:#edecec!important;color:#535557!important;border:1px solid #E5E7EB!important}.plan-button.outlined:hover{background-color:#f9fafb!important}.plan-link{font-size:12px!important;color:#3b82f6!important;margin-bottom:16px!important;display:block!important;cursor:pointer}.plan-features{flex:1;overflow-y:auto;max-height:340px}.plan-features::-webkit-scrollbar{width:6px}.plan-features::-webkit-scrollbar-track{background:#f1f1f1;border-radius:10px}.plan-features::-webkit-scrollbar-thumb{background:#3b82f6;border-radius:10px}.plan-features::-webkit-scrollbar-thumb:hover{background:#2563eb}.feature-category{margin-bottom:16px}.category-title{font-size:14px!important;font-weight:600!important;color:#111827!important;margin-bottom:12px!important}.feature-list{display:flex;flex-direction:column;gap:8px}.feature-item{display:flex;align-items:center;gap:8px}.check-icon{width:16px;height:16px;color:#10b981;flex-shrink:0}.feature-text{font-size:14px!important;color:#374151!important}.compare-plans-container{display:flex;justify-content:center;margin-bottom:24px}.pricing-table{width:100%;background:#fff;border-radius:4px;border:1px solid #e5e7eb;overflow:hidden}.table-header{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;border-bottom:1px solid #e5e7eb;background:#fff}.header-cell{padding:16px 32px;display:flex;flex-direction:column;align-items:flex-start}.header-cell:last-child{border-right:none}.feature-column,.plan-column{align-items:flex-start}.header-text{font-size:16px;font-weight:600;color:#1f2937}.plan-name{font-size:16px;font-weight:600;color:#1f2937;margin-bottom:4px}.plan-price{font-size:14px;font-weight:400;color:#9ca3af}.table-row{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;border-bottom:1px solid #f3f4f6}.table-row:nth-child(2n){background:#f9fafb}.table-row:nth-child(odd){background:#fff}.table-row:last-child{border-bottom:none}.feature-cell{padding:14px 32px;display:flex;align-items:center}.feature-name{font-size:15px;color:#4b5563;font-weight:400}.plan-cell{padding:14px 32px;display:flex;align-items:center;justify-content:flex-start}.plan-cell:last-child{border-right:none}.check-icon{color:#10b981;font-size:22px}.dash-icon{color:#d1d5db;font-size:22px}@media (max-width: 768px){.table-header,.table-row{grid-template-columns:1.5fr 1fr 1fr 1fr}.header-cell,.feature-cell,.plan-cell{padding:16px}.header-text,.plan-name{font-size:14px}.plan-price,.feature-name{font-size:13px}}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function NewLedger(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,18 +0,0 @@
|
|
|
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
|
-
type?: 'Payment' | 'Refund' | 'Subscription';
|
|
12
|
-
amountLabel?: 'Charged' | 'Refunded';
|
|
13
|
-
}
|
|
14
|
-
interface TransactionCardsProps {
|
|
15
|
-
transactions: Transaction[];
|
|
16
|
-
}
|
|
17
|
-
declare const CardView: React.FC<TransactionCardsProps>;
|
|
18
|
-
export default CardView;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { ClassValue } from 'clsx';
|
|
2
|
-
|
|
3
|
-
declare function cn(...inputs: ClassValue[]): string;
|
|
4
|
-
declare const getS3FileNameAndPathPerf: (org_id: string | number, system_name_file?: string, uploadLocation?: string) => {
|
|
5
|
-
fileName: string;
|
|
6
|
-
filePath: string;
|
|
7
|
-
};
|
|
8
|
-
declare function appendAwsBaseUrl(relativeUrl: string, params?: {}): string;
|
|
9
|
-
declare const getFileExtension: (file: string) => string;
|
|
10
|
-
declare function getFileIcon(extension: string): string;
|
|
11
|
-
declare const downloadFile: (setLoading: (state: {
|
|
12
|
-
isLoading: boolean;
|
|
13
|
-
}) => void, file: any, FileWithAWSBaseUrl: string, file_name: string, dispatchError: (message: string) => void) => Promise<void>;
|
|
14
|
-
type GetIds = {
|
|
15
|
-
object: {
|
|
16
|
-
[key: string]: string | number | boolean;
|
|
17
|
-
};
|
|
18
|
-
id: string | number | boolean;
|
|
19
|
-
};
|
|
20
|
-
declare const getIdsObject: ({ object, id, }: GetIds) => (string | number | boolean)[];
|
|
21
|
-
declare const getFilterParsedValues: (values: Record<string, any>) => {
|
|
22
|
-
[key: string]: any;
|
|
23
|
-
};
|
|
24
|
-
declare const roundCurrencyValue: (currencyString: string, decimals?: number) => string;
|
|
25
|
-
declare const getAssetPath: (path: string) => string;
|
|
26
|
-
declare function isValidDate(dateString: string): boolean;
|
|
27
|
-
export { appendAwsBaseUrl, cn, downloadFile, getAssetPath, getFileExtension, getFileIcon, getFilterParsedValues, getIdsObject, getS3FileNameAndPathPerf, isValidDate, roundCurrencyValue };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function NewLedger(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
interface Transaction {
|
|
3
|
-
id: string;
|
|
4
|
-
date: string;
|
|
5
|
-
description: string;
|
|
6
|
-
method: string;
|
|
7
|
-
amount: string;
|
|
8
|
-
status: 'Completed' | 'Pending';
|
|
9
|
-
invoice: string | null;
|
|
10
|
-
type?: 'Payment' | 'Refund' | 'Subscription';
|
|
11
|
-
amountLabel?: 'Charged' | 'Refunded';
|
|
12
|
-
}
|
|
13
|
-
interface TransactionCardsProps {
|
|
14
|
-
transactions: Transaction[];
|
|
15
|
-
}
|
|
16
|
-
declare const CardView: React.FC<TransactionCardsProps>;
|
|
17
|
-
export default CardView;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { type ClassValue } from 'clsx';
|
|
2
|
-
declare function cn(...inputs: ClassValue[]): string;
|
|
3
|
-
declare const getS3FileNameAndPathPerf: (org_id: string | number, system_name_file?: string, uploadLocation?: string) => {
|
|
4
|
-
fileName: string;
|
|
5
|
-
filePath: string;
|
|
6
|
-
};
|
|
7
|
-
declare function appendAwsBaseUrl(relativeUrl: string, params?: {}): string;
|
|
8
|
-
declare const getFileExtension: (file: string) => string;
|
|
9
|
-
declare function getFileIcon(extension: string): string;
|
|
10
|
-
declare const downloadFile: (setLoading: (state: {
|
|
11
|
-
isLoading: boolean;
|
|
12
|
-
}) => void, file: any, FileWithAWSBaseUrl: string, file_name: string, dispatchError: (message: string) => void) => Promise<void>;
|
|
13
|
-
type GetIds = {
|
|
14
|
-
object: {
|
|
15
|
-
[key: string]: string | number | boolean;
|
|
16
|
-
};
|
|
17
|
-
id: string | number | boolean;
|
|
18
|
-
};
|
|
19
|
-
declare const getIdsObject: ({ object, id, }: GetIds) => (string | number | boolean)[];
|
|
20
|
-
declare const getFilterParsedValues: (values: Record<string, any>) => {
|
|
21
|
-
[key: string]: any;
|
|
22
|
-
};
|
|
23
|
-
declare const roundCurrencyValue: (currencyString: string, decimals?: number) => string;
|
|
24
|
-
declare const getAssetPath: (path: string) => string;
|
|
25
|
-
declare function isValidDate(dateString: string): boolean;
|
|
26
|
-
export { appendAwsBaseUrl, cn, downloadFile, getAssetPath, getFileExtension, getFileIcon, getFilterParsedValues, getIdsObject, getS3FileNameAndPathPerf, isValidDate, roundCurrencyValue };
|