@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
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import "./index.css";
|
|
2
|
+
export { default as ManageProvider } from "@/shared/providers/app-provider";
|
|
3
|
+
export { SubscriptionConsumption } from "@/components/manage/Subscription/Consumption/Consumption";
|
|
4
|
+
export { CustomerInvoices } from "@/components/manage/Subscription/Invoices/Invoices";
|
|
5
|
+
export { SubscriptionOverview } from "@/components/manage/Subscription/Overview/Overview";
|
|
6
|
+
export { SubscriptionPaymentMethod } from "@/components/manage/Subscription/PaymentMethod/PaymentMethod";
|
|
7
|
+
export { PlansOverview } from "@/components/manage/Subscription/PlansOverview/PlansOverview";
|
|
8
|
+
export { SubscriptionPlans } from "@/components/manage/Subscription/SubscribedPlan/SubscribedPlan";
|
|
9
|
+
export { SubscriptionWallet } from "@/components/manage/Subscription/Wallet/Wallet";
|