@zimyo/manage 0.3.1 → 0.3.3

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.
Files changed (90) hide show
  1. package/dist/App.d.ts +2 -2
  2. package/dist/components/customComponents/CustomCard/index.d.ts +2 -1
  3. package/dist/components/customComponents/CustomFilter/index.d.ts +2 -1
  4. package/dist/components/customComponents/CustomSearch/index.d.ts +2 -1
  5. package/dist/components/customComponents/PageHeading/index.d.ts +3 -2
  6. package/dist/components/manage/Subscription/PaymentRecords/PaymentRecords.d.ts +1 -1
  7. package/dist/components/manage/Subscription/ProductUpdates/ProductUpdates.d.ts +1 -0
  8. package/dist/components/manage/Subscription/SubscriptionPricing/CardView/CardView.d.ts +1 -1
  9. package/dist/components/manage/Subscription/SubscriptionPricing/ComparePlans/ComparePlans.d.ts +1 -1
  10. package/dist/components/manage/Subscription/SubscriptionPricing/SubscriptionPricing.d.ts +1 -1
  11. package/dist/components/ui/Alert/Alert.d.ts +2 -1
  12. package/dist/components/ui/DatePicker/DatePicker.d.ts +1 -0
  13. package/dist/components/ui/Loader/Loader.d.ts +1 -1
  14. package/dist/components/ui/TextReducingTooltipComponent/TextReducingTooltipComponent.d.ts +7 -7
  15. package/dist/index.d.ts +1 -1
  16. package/dist/main.cjs +3089 -501
  17. package/dist/main.d.ts +16 -15
  18. package/dist/main.js +93700 -100378
  19. package/dist/node_modules/html-dom-parser/esm/types.d.ts +3 -0
  20. package/dist/shared/hooks/useFetch.d.ts +9 -8
  21. package/dist/shared/providers/AppProvider.d.ts +3 -2
  22. package/dist/shared/providers/AuthProvider.d.ts +2 -1
  23. package/dist/shared/services/http.d.ts +4 -4
  24. package/dist/shared/types/backend.types.d.ts +2 -1
  25. package/dist/shared/utils/utils.d.ts +1 -1
  26. package/dist/shared/zustand/alert.store.d.ts +2 -1
  27. package/dist/shared/zustand/session.store.d.ts +1 -1
  28. package/dist/src/App.d.ts +4 -0
  29. package/dist/src/components/customComponents/CustomCard/index.d.ts +13 -0
  30. package/dist/src/components/customComponents/CustomFilter/index.d.ts +24 -0
  31. package/dist/src/components/customComponents/CustomSearch/index.d.ts +10 -0
  32. package/dist/src/components/customComponents/CustomTooltip/index.d.ts +10 -0
  33. package/dist/src/components/customComponents/PageHeading/index.d.ts +23 -0
  34. package/dist/src/components/manage/Subscription/BillingSubscription/BillingSubscription.d.ts +1 -0
  35. package/dist/src/components/manage/Subscription/Consumption/Consumption.d.ts +1 -0
  36. package/dist/src/components/manage/Subscription/Invoices/Invoices.d.ts +1 -0
  37. package/dist/src/components/manage/Subscription/Invoices/constant.d.ts +4 -0
  38. package/dist/src/components/manage/Subscription/Ledger/Ledger.d.ts +1 -0
  39. package/dist/src/components/manage/Subscription/Mail/Mail.d.ts +1 -0
  40. package/dist/src/components/manage/Subscription/NewOverview/NewOverview.d.ts +5 -0
  41. package/dist/src/components/manage/Subscription/Overview/Overview.d.ts +5 -0
  42. package/dist/src/components/manage/Subscription/PaymentMethod/PaymentMethod.d.ts +1 -0
  43. package/dist/src/components/manage/Subscription/PaymentRecords/PaymentRecords.d.ts +6 -0
  44. package/dist/src/components/manage/Subscription/PaymentRecords/TableView/Table.d.ts +1 -0
  45. package/dist/src/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +50 -0
  46. package/dist/src/components/manage/Subscription/PlansOverview/constant.d.ts +4 -0
  47. package/dist/src/components/manage/Subscription/ProductUpdates/ProductUpdates.d.ts +1 -0
  48. package/dist/src/components/manage/Subscription/ServiceDeskLogs/ServiceDeskLogs.d.ts +1 -0
  49. package/dist/src/components/manage/Subscription/SubscribedPlan/SubscribedPlan.d.ts +5 -0
  50. package/dist/src/components/manage/Subscription/SubscriptionPricing/CardView/CardView.d.ts +3 -0
  51. package/dist/src/components/manage/Subscription/SubscriptionPricing/ComparePlans/ComparePlans.d.ts +3 -0
  52. package/dist/src/components/manage/Subscription/SubscriptionPricing/SubscriptionPricing.d.ts +6 -0
  53. package/dist/src/components/manage/Subscription/TempPayment/TempPayment.d.ts +1 -0
  54. package/dist/src/components/manage/Subscription/TempPayment/constant.d.ts +5 -0
  55. package/dist/src/components/manage/Subscription/UpcomingSubscription/UpcomingSubscription.d.ts +1 -0
  56. package/dist/src/components/manage/Subscription/UpcomingSubscription/constant.d.ts +4 -0
  57. package/dist/src/components/manage/Subscription/Wallet/Wallet.d.ts +1 -0
  58. package/dist/src/components/manage/Subscription/Wallet/constant.d.ts +8 -0
  59. package/dist/src/components/ui/Alert/Alert.d.ts +6 -0
  60. package/dist/src/components/ui/DatePicker/DatePicker.d.ts +4 -0
  61. package/dist/src/components/ui/Loader/Loader.d.ts +7 -0
  62. package/dist/src/components/ui/NoDataFound/NoDataFound.d.ts +5 -0
  63. package/dist/src/components/ui/OrgDetailsCard/OrgDetailsCard.d.ts +20 -0
  64. package/dist/src/components/ui/OverviewCard/OverviewCard.d.ts +4 -0
  65. package/dist/src/components/ui/TextReducingTooltipComponent/TextReducingTooltipComponent.d.ts +10 -0
  66. package/dist/src/components/ui/TopUpWalletModal/TopUpWalletModal.d.ts +6 -0
  67. package/dist/src/index.d.ts +1 -0
  68. package/dist/src/main.d.ts +16 -0
  69. package/dist/src/shared/constants/constant.d.ts +41 -0
  70. package/dist/src/shared/constants/endpoints.d.ts +24 -0
  71. package/dist/src/shared/constants/form-types.d.ts +44 -0
  72. package/dist/src/shared/constants/status.d.ts +4 -0
  73. package/dist/src/shared/constants/time.d.ts +53 -0
  74. package/dist/src/shared/hooks/useConstants.d.ts +1 -0
  75. package/dist/src/shared/hooks/useDownloadBufferFile.d.ts +7 -0
  76. package/dist/src/shared/hooks/useErrorAlert.d.ts +1 -0
  77. package/dist/src/shared/hooks/useFetch.d.ts +124 -0
  78. package/dist/src/shared/hooks/useFilterParsedValue.d.ts +6 -0
  79. package/dist/src/shared/hooks/useLoading.d.ts +1 -0
  80. package/dist/src/shared/hooks/useMutation.d.ts +18 -0
  81. package/dist/src/shared/hooks/useSuccessAlert.d.ts +1 -0
  82. package/dist/src/shared/providers/AppProvider.d.ts +14 -0
  83. package/dist/src/shared/providers/AuthProvider.d.ts +11 -0
  84. package/dist/src/shared/services/cashfree-payments.d.ts +1 -0
  85. package/dist/src/shared/services/http.d.ts +11 -0
  86. package/dist/src/shared/types/backend.types.d.ts +20 -0
  87. package/dist/src/shared/utils/utils.d.ts +25 -0
  88. package/dist/src/shared/zustand/alert.store.d.ts +20 -0
  89. package/dist/src/shared/zustand/session.store.d.ts +22 -0
  90. package/package.json +2 -1
package/dist/App.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import "./App.css";
2
- export declare const theme: import("@mui/material").Theme;
1
+
2
+ export declare const theme: import('@mui/material').Theme;
3
3
  declare function App(): import("react/jsx-runtime").JSX.Element;
4
4
  export default App;
@@ -1,4 +1,5 @@
1
- import React, { ReactElement, ReactNode } from "react";
1
+ import { default as React, ReactElement, ReactNode } from 'react';
2
+
2
3
  export declare const CardLabel: ({ label, icon }: {
3
4
  label: string | ReactElement;
4
5
  icon?: ReactElement;
@@ -1,4 +1,5 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
+
2
3
  export interface SelectOption {
3
4
  id: string | number;
4
5
  name: string;
@@ -1,4 +1,5 @@
1
- import React from "react";
1
+ import { default as React } from 'react';
2
+
2
3
  interface Props {
3
4
  getSearchValue: (search: string) => void;
4
5
  className?: string;
@@ -1,5 +1,6 @@
1
- import React, { ReactElement } from "react";
2
- import { ButtonProps } from "@zimyo/ui";
1
+ import { default as React, ReactElement } from 'react';
2
+ import { ButtonProps } from '@zimyo/ui';
3
+
3
4
  type PageHeadingButtonConfig = {
4
5
  variant?: ButtonProps["variant"];
5
6
  color?: ButtonProps["color"];
@@ -1,4 +1,4 @@
1
- import "./PaymentRecords.css";
1
+
2
2
  type overviewPropTypes = {
3
3
  onTabChange: (value: number) => void;
4
4
  };
@@ -0,0 +1 @@
1
+ export declare const ProductUpdates: () => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,3 @@
1
- import './CardView.css';
1
+
2
2
  declare const CardView: () => import("react/jsx-runtime").JSX.Element;
3
3
  export default CardView;
@@ -1,3 +1,3 @@
1
- import './ComparePlans.css';
1
+
2
2
  declare const ComparePlans: () => import("react/jsx-runtime").JSX.Element;
3
3
  export default ComparePlans;
@@ -1,4 +1,4 @@
1
- import './SubscriptionPricing.css';
1
+
2
2
  type overviewPropTypes = {
3
3
  onTabChange: (value: number) => void;
4
4
  };
@@ -1,4 +1,5 @@
1
- import { AlertColor } from "@mui/material";
1
+ import { AlertColor } from '@mui/material';
2
+
2
3
  declare const AlertComponent: (props: {
3
4
  type: AlertColor | undefined | string;
4
5
  message?: string;
@@ -1,4 +1,5 @@
1
1
  import { DatePickerProps } from '@mui/x-date-pickers/DatePicker';
2
2
  import { Dayjs } from 'dayjs';
3
+
3
4
  declare const XDatePicker: (props: DatePickerProps<Dayjs>) => import("react/jsx-runtime").JSX.Element;
4
5
  export default XDatePicker;
@@ -1,4 +1,4 @@
1
- import "./Loader.css";
1
+
2
2
  type props = {
3
3
  visible: boolean;
4
4
  type?: "component" | "table" | "skeleton";
@@ -1,10 +1,10 @@
1
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;
2
+ data?: string;
3
+ limit?: number;
4
+ doNotShowTooltip?: boolean;
5
+ arrow?: boolean;
6
+ endAdornment?: string;
7
+ startAdornment?: string;
8
+ styleOverrides?: {};
9
9
  }): import("react/jsx-runtime").JSX.Element;
10
10
  export default TextReducingTooltipComponent;
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- import './index.css';
1
+