@zimyo/manage 0.0.1
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/README.md +2 -0
- package/dist/.vite/manifest.json +12 -0
- package/dist/App.d.ts +3 -0
- package/dist/components/manage/Subscription/Consumption/Consumption.d.ts +1 -0
- package/dist/components/manage/Subscription/Invoices/Invoices.d.ts +1 -0
- package/dist/components/manage/Subscription/Overview/Overview.d.ts +1 -0
- package/dist/components/manage/Subscription/PaymentMethod/PaymentMethod.d.ts +1 -0
- package/dist/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +1 -0
- package/dist/components/manage/Subscription/PlansOverview/constant.d.ts +4 -0
- package/dist/components/manage/Subscription/SubscribedPlan/SubscribedPlan.d.ts +1 -0
- package/dist/components/manage/Subscription/Wallet/Wallet.d.ts +1 -0
- package/dist/components/manage/Subscription/Wallet/constant.d.ts +4 -0
- package/dist/components/ui/Alert/Alert.d.ts +6 -0
- package/dist/components/ui/DatePicker/DatePicker.d.ts +4 -0
- package/dist/components/ui/OrgDetailsCard/OrgDetailsCard.d.ts +4 -0
- package/dist/components/ui/OverviewCard/OverviewCard.d.ts +4 -0
- package/dist/components/ui/TextReducingTooltipComponent/TextReducingTooltipComponent.d.ts +10 -0
- package/dist/exports.cjs +3095 -0
- package/dist/exports.d.ts +9 -0
- package/dist/exports.js +82413 -0
- package/dist/main.d.ts +1 -0
- package/dist/shared/constants/constant.d.ts +30 -0
- package/dist/shared/constants/endpoints.d.ts +9 -0
- package/dist/shared/constants/form-types.d.ts +44 -0
- package/dist/shared/constants/time.d.ts +53 -0
- package/dist/shared/hooks/useConstants.d.ts +1 -0
- package/dist/shared/hooks/useFetch.d.ts +124 -0
- package/dist/shared/hooks/useLoading.d.ts +1 -0
- package/dist/shared/hooks/useMutation.d.ts +29 -0
- package/dist/shared/providers/app-provider.d.ts +12 -0
- package/dist/shared/providers/auth-provider.d.ts +9 -0
- package/dist/shared/services/http.d.ts +11 -0
- package/dist/shared/types/backend.types.d.ts +20 -0
- package/dist/shared/utils/utils.d.ts +19 -0
- package/dist/shared/zustand/alert.store.d.ts +20 -0
- package/dist/shared/zustand/session.store.d.ts +20 -0
- package/dist/style.css +1 -0
- package/dist/vite.svg +1 -0
- package/package.json +65 -0
package/README.md
ADDED
package/dist/App.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SubscriptionConsumption: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const CustomerInvoices: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SubscriptionOverview: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SubscriptionPaymentMethod: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const PlansOverview: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SubscriptionPlans: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SubscriptionWallet: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare function TextReducingTooltipComponent({ data, limit, doNotShowTooltip, arrow, endAdornment, startAdornment, styleOverrides }: {
|
|
2
|
+
data?: string | undefined;
|
|
3
|
+
limit?: number | undefined;
|
|
4
|
+
doNotShowTooltip?: boolean | undefined;
|
|
5
|
+
arrow?: boolean | undefined;
|
|
6
|
+
endAdornment?: string | undefined;
|
|
7
|
+
startAdornment?: string | undefined;
|
|
8
|
+
styleOverrides?: {} | undefined;
|
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default TextReducingTooltipComponent;
|