warqadui 0.0.130 → 0.0.134
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/index.d.mts +21 -3
- package/dist/index.d.ts +21 -3
- package/dist/index.js +79751 -23240
- package/dist/index.mjs +83388 -24161
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -385,7 +385,7 @@ declare const Enums: {
|
|
|
385
385
|
journalTypes: readonly ["journal"];
|
|
386
386
|
viaTypes: readonly ["direct", "via account"];
|
|
387
387
|
actionTypes: readonly ["credit", "debit"];
|
|
388
|
-
transactionTypes: readonly ["journal", "payment", "money transfer", "expense", "adjustment", "forex transfer", "stock", "forex dubai to china", "forex"];
|
|
388
|
+
transactionTypes: readonly ["journal", "payment", "money transfer", "expense", "adjustment", "forex transfer", "stock", "forex dubai to china", "forex", "forex expense"];
|
|
389
389
|
stockTypes: readonly ["pack", "product"];
|
|
390
390
|
saleStockTypes: readonly ["pack", "product"];
|
|
391
391
|
sale: readonly ["cash", "credit"];
|
|
@@ -1049,7 +1049,7 @@ declare const CategoryCard: React__default.FC<{
|
|
|
1049
1049
|
declare const Views: {
|
|
1050
1050
|
Transaction: ({ id, type, close, reverseable, }: {
|
|
1051
1051
|
id: string;
|
|
1052
|
-
type: "" | "journal" | "payment" | "money transfer" | "expense" | "adjustment" | "forex transfer" | "stock" | "forex dubai to china" | "forex" | undefined;
|
|
1052
|
+
type: "" | "journal" | "payment" | "money transfer" | "expense" | "adjustment" | "forex transfer" | "stock" | "forex dubai to china" | "forex" | "forex expense" | undefined;
|
|
1053
1053
|
close: () => void;
|
|
1054
1054
|
reverseable?: {
|
|
1055
1055
|
reload: () => void;
|
|
@@ -1091,6 +1091,7 @@ type AuthData = {
|
|
|
1091
1091
|
isPhoneVerified: boolean;
|
|
1092
1092
|
permissions?: Record<string, boolean>;
|
|
1093
1093
|
homePath?: string;
|
|
1094
|
+
name?: string;
|
|
1094
1095
|
};
|
|
1095
1096
|
type AccountData = {
|
|
1096
1097
|
_id: string;
|
|
@@ -1152,6 +1153,7 @@ declare const useAuth: () => {
|
|
|
1152
1153
|
isPhoneVerified: boolean;
|
|
1153
1154
|
permissions?: Record<string, boolean>;
|
|
1154
1155
|
homePath?: string;
|
|
1156
|
+
name?: string;
|
|
1155
1157
|
} | null;
|
|
1156
1158
|
user: {
|
|
1157
1159
|
_id: string;
|
|
@@ -1163,6 +1165,7 @@ declare const useAuth: () => {
|
|
|
1163
1165
|
isPhoneVerified: boolean;
|
|
1164
1166
|
permissions?: Record<string, boolean>;
|
|
1165
1167
|
homePath?: string;
|
|
1168
|
+
name?: string;
|
|
1166
1169
|
} | null;
|
|
1167
1170
|
account: {
|
|
1168
1171
|
_id: string;
|
|
@@ -1220,6 +1223,7 @@ declare const useAuth: () => {
|
|
|
1220
1223
|
isPhoneVerified: boolean;
|
|
1221
1224
|
permissions?: Record<string, boolean>;
|
|
1222
1225
|
homePath?: string;
|
|
1226
|
+
name?: string;
|
|
1223
1227
|
}, account: {
|
|
1224
1228
|
_id: string;
|
|
1225
1229
|
name: string;
|
|
@@ -1239,6 +1243,7 @@ declare const useAuth: () => {
|
|
|
1239
1243
|
isPhoneVerified: boolean;
|
|
1240
1244
|
permissions?: Record<string, boolean>;
|
|
1241
1245
|
homePath?: string;
|
|
1246
|
+
name?: string;
|
|
1242
1247
|
}>) => void;
|
|
1243
1248
|
updateUser: (data: Partial<{
|
|
1244
1249
|
_id: string;
|
|
@@ -1250,6 +1255,7 @@ declare const useAuth: () => {
|
|
|
1250
1255
|
isPhoneVerified: boolean;
|
|
1251
1256
|
permissions?: Record<string, boolean>;
|
|
1252
1257
|
homePath?: string;
|
|
1258
|
+
name?: string;
|
|
1253
1259
|
}>) => void;
|
|
1254
1260
|
updateAccount: (data: Partial<{
|
|
1255
1261
|
_id: string;
|
|
@@ -1922,6 +1928,18 @@ declare const expenseSchema: z$1.ZodObject<{
|
|
|
1922
1928
|
}>;
|
|
1923
1929
|
type ExpenseSchemaType = z$1.infer<typeof expenseSchema>;
|
|
1924
1930
|
|
|
1931
|
+
declare function ForexExpenses({ url }: {
|
|
1932
|
+
url?: string;
|
|
1933
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1934
|
+
|
|
1935
|
+
declare function ForexExpenseForm({ id, close, reload, }: {
|
|
1936
|
+
id?: string;
|
|
1937
|
+
close: () => void;
|
|
1938
|
+
reload: () => void;
|
|
1939
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1940
|
+
|
|
1941
|
+
declare const ForexExpensesReport: () => react_jsx_runtime.JSX.Element;
|
|
1942
|
+
|
|
1925
1943
|
declare function Breadcrumbs(): react_jsx_runtime.JSX.Element;
|
|
1926
1944
|
|
|
1927
1945
|
interface ErrorPageProps {
|
|
@@ -2117,4 +2135,4 @@ declare const StockLevel: ({ value }: {
|
|
|
2117
2135
|
|
|
2118
2136
|
declare const ProfitAndLossReport: () => react_jsx_runtime.JSX.Element;
|
|
2119
2137
|
|
|
2120
|
-
export { AccountFields, AccountForm, AccountReport, AccountStatements, type AccountType, Accounts, AdminProtectedRoute, Badge, type BadgeProps, type BranchesContext, BrandField, BrandForm, Branding, type BrandingProps, Brands, Breadcrumbs, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Categories, CategoryCard, CategoryField, CategoryForm, type CategoryItem, ClassicSpin, ClothendStockAdjustment, ClothendStockTransfer, CodeBlock, ConfirmModal, type ConfirmModalProps, type CreateAccountSchemaType, type CreateBrandSchemaType, type CreateCategorySchemaType, type CreatePackSchemaType, type CreateProductSchemaType, type CreateWalletSchemaType, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, type EnumsConfig, ErrorPage, type ErrorPageProps, ExpenseForm, type ExpenseSchemaType, Expenses, type FetchFunction, type FetchProps, Fields, ForexAccountReport, ForexAccountStatements, ForexAccounts, ForexDubaiToChina, ForexDubaiToChinaForm, type ForexDubaiToChinaSchemaType, ForexTransferForm, type ForexTransferSchemaType, ForexTransfers, Guard, InfoGrid, Input, type InputProps, JournalForm, type JournalSchemaType, Journals, LinkUser, LoadingBox, LoadingSpin, type LoginSchema, type LoginTheme, Modal, type ModalProps, MoneyTransferForm, type MoneyTransferSchemaType, MoneyTransfers, type NavItem, type NavItems, type Option, OverlaySpin, _default as PackField, PackForm, type PackProductItemSchemaType, Packs, PageA4, PageHeader, PaymentForm, type PaymentSchemaType, Payments, type PdfOptions, PhoneInput, type PhoneInputProps, type PostFunction, PostTable, type PostTableActions, type PostTableChangeParams, ProductField, ProductForm, Products, ProfileCard, type ProfileCardProps, ProfileDropdown, type ProfileDropdownItem, type ProfileDropdownProps, ProfilePage, ProfileView, type ProfileViewInfoItem, type ProfileViewProps, ProfitAndLossReport, ProtectedRoute, type PutFunction, ResetPasswordPage, type Role, SaleStockAdjustment, SaleStockForm, SearchApi, SearchApiContent, SearchApiInput, SearchApiItem, type SearchApiProps, SearchApiTrigger, Select, SelectContent, SelectItem, type SelectProps, SelectTrigger, SimpleTable, type SimpleTableColumn, PosStockAdjustment as StockAdjustmentForm, StockLevel, PosStockTransfer as StockTransferForm, type StorageManager, type StoreConfig, type SummaryColumn, SummaryTable, type SummaryTableProps, Textarea, type TextareaProps, type ThemeConfig, ThemeProvider, ThemeToggle, ThemedLogin, UnProtectedRoute, type UseModalReturn, UserForm, UserProfile, UserUpdate, Users, Views, WalletAdjustmentForm, type WalletAdjustmentSchemaType, WalletAdjustments, WalletField, WalletForm, WalletReport, WalletStatements, Wallets, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, type apiConfig, createAccountSchema, createBrandSchema, createCategorySchema, createPackSchema, createProductSchema, createUserSchema, type createUserSchemaType, createWalletSchema, expenseSchema, forexDubaiToChinaSchema, forexTransferSchema, generatePdf, journalSchema, linkUserSchema, type linkUserSchemaType, moneyTransferSchema, packProductItemSchema, packTypes, paymentSchema, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, updateUserSchema, type updateUserSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType, walletAdjustmentSchema };
|
|
2138
|
+
export { AccountFields, AccountForm, AccountReport, AccountStatements, type AccountType, Accounts, AdminProtectedRoute, Badge, type BadgeProps, type BranchesContext, BrandField, BrandForm, Branding, type BrandingProps, Brands, Breadcrumbs, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Categories, CategoryCard, CategoryField, CategoryForm, type CategoryItem, ClassicSpin, ClothendStockAdjustment, ClothendStockTransfer, CodeBlock, ConfirmModal, type ConfirmModalProps, type CreateAccountSchemaType, type CreateBrandSchemaType, type CreateCategorySchemaType, type CreatePackSchemaType, type CreateProductSchemaType, type CreateWalletSchemaType, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, type EnumsConfig, ErrorPage, type ErrorPageProps, ExpenseForm, type ExpenseSchemaType, Expenses, type FetchFunction, type FetchProps, Fields, ForexAccountReport, ForexAccountStatements, ForexAccounts, ForexDubaiToChina, ForexDubaiToChinaForm, type ForexDubaiToChinaSchemaType, ForexExpenseForm, ForexExpenses, ForexExpensesReport, ForexTransferForm, type ForexTransferSchemaType, ForexTransfers, Guard, InfoGrid, Input, type InputProps, JournalForm, type JournalSchemaType, Journals, LinkUser, LoadingBox, LoadingSpin, type LoginSchema, type LoginTheme, Modal, type ModalProps, MoneyTransferForm, type MoneyTransferSchemaType, MoneyTransfers, type NavItem, type NavItems, type Option, OverlaySpin, _default as PackField, PackForm, type PackProductItemSchemaType, Packs, PageA4, PageHeader, PaymentForm, type PaymentSchemaType, Payments, type PdfOptions, PhoneInput, type PhoneInputProps, type PostFunction, PostTable, type PostTableActions, type PostTableChangeParams, ProductField, ProductForm, Products, ProfileCard, type ProfileCardProps, ProfileDropdown, type ProfileDropdownItem, type ProfileDropdownProps, ProfilePage, ProfileView, type ProfileViewInfoItem, type ProfileViewProps, ProfitAndLossReport, ProtectedRoute, type PutFunction, ResetPasswordPage, type Role, SaleStockAdjustment, SaleStockForm, SearchApi, SearchApiContent, SearchApiInput, SearchApiItem, type SearchApiProps, SearchApiTrigger, Select, SelectContent, SelectItem, type SelectProps, SelectTrigger, SimpleTable, type SimpleTableColumn, PosStockAdjustment as StockAdjustmentForm, StockLevel, PosStockTransfer as StockTransferForm, type StorageManager, type StoreConfig, type SummaryColumn, SummaryTable, type SummaryTableProps, Textarea, type TextareaProps, type ThemeConfig, ThemeProvider, ThemeToggle, ThemedLogin, UnProtectedRoute, type UseModalReturn, UserForm, UserProfile, UserUpdate, Users, Views, WalletAdjustmentForm, type WalletAdjustmentSchemaType, WalletAdjustments, WalletField, WalletForm, WalletReport, WalletStatements, Wallets, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, type apiConfig, createAccountSchema, createBrandSchema, createCategorySchema, createPackSchema, createProductSchema, createUserSchema, type createUserSchemaType, createWalletSchema, expenseSchema, forexDubaiToChinaSchema, forexTransferSchema, generatePdf, journalSchema, linkUserSchema, type linkUserSchemaType, moneyTransferSchema, packProductItemSchema, packTypes, paymentSchema, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, updateUserSchema, type updateUserSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType, walletAdjustmentSchema };
|
package/dist/index.d.ts
CHANGED
|
@@ -385,7 +385,7 @@ declare const Enums: {
|
|
|
385
385
|
journalTypes: readonly ["journal"];
|
|
386
386
|
viaTypes: readonly ["direct", "via account"];
|
|
387
387
|
actionTypes: readonly ["credit", "debit"];
|
|
388
|
-
transactionTypes: readonly ["journal", "payment", "money transfer", "expense", "adjustment", "forex transfer", "stock", "forex dubai to china", "forex"];
|
|
388
|
+
transactionTypes: readonly ["journal", "payment", "money transfer", "expense", "adjustment", "forex transfer", "stock", "forex dubai to china", "forex", "forex expense"];
|
|
389
389
|
stockTypes: readonly ["pack", "product"];
|
|
390
390
|
saleStockTypes: readonly ["pack", "product"];
|
|
391
391
|
sale: readonly ["cash", "credit"];
|
|
@@ -1049,7 +1049,7 @@ declare const CategoryCard: React__default.FC<{
|
|
|
1049
1049
|
declare const Views: {
|
|
1050
1050
|
Transaction: ({ id, type, close, reverseable, }: {
|
|
1051
1051
|
id: string;
|
|
1052
|
-
type: "" | "journal" | "payment" | "money transfer" | "expense" | "adjustment" | "forex transfer" | "stock" | "forex dubai to china" | "forex" | undefined;
|
|
1052
|
+
type: "" | "journal" | "payment" | "money transfer" | "expense" | "adjustment" | "forex transfer" | "stock" | "forex dubai to china" | "forex" | "forex expense" | undefined;
|
|
1053
1053
|
close: () => void;
|
|
1054
1054
|
reverseable?: {
|
|
1055
1055
|
reload: () => void;
|
|
@@ -1091,6 +1091,7 @@ type AuthData = {
|
|
|
1091
1091
|
isPhoneVerified: boolean;
|
|
1092
1092
|
permissions?: Record<string, boolean>;
|
|
1093
1093
|
homePath?: string;
|
|
1094
|
+
name?: string;
|
|
1094
1095
|
};
|
|
1095
1096
|
type AccountData = {
|
|
1096
1097
|
_id: string;
|
|
@@ -1152,6 +1153,7 @@ declare const useAuth: () => {
|
|
|
1152
1153
|
isPhoneVerified: boolean;
|
|
1153
1154
|
permissions?: Record<string, boolean>;
|
|
1154
1155
|
homePath?: string;
|
|
1156
|
+
name?: string;
|
|
1155
1157
|
} | null;
|
|
1156
1158
|
user: {
|
|
1157
1159
|
_id: string;
|
|
@@ -1163,6 +1165,7 @@ declare const useAuth: () => {
|
|
|
1163
1165
|
isPhoneVerified: boolean;
|
|
1164
1166
|
permissions?: Record<string, boolean>;
|
|
1165
1167
|
homePath?: string;
|
|
1168
|
+
name?: string;
|
|
1166
1169
|
} | null;
|
|
1167
1170
|
account: {
|
|
1168
1171
|
_id: string;
|
|
@@ -1220,6 +1223,7 @@ declare const useAuth: () => {
|
|
|
1220
1223
|
isPhoneVerified: boolean;
|
|
1221
1224
|
permissions?: Record<string, boolean>;
|
|
1222
1225
|
homePath?: string;
|
|
1226
|
+
name?: string;
|
|
1223
1227
|
}, account: {
|
|
1224
1228
|
_id: string;
|
|
1225
1229
|
name: string;
|
|
@@ -1239,6 +1243,7 @@ declare const useAuth: () => {
|
|
|
1239
1243
|
isPhoneVerified: boolean;
|
|
1240
1244
|
permissions?: Record<string, boolean>;
|
|
1241
1245
|
homePath?: string;
|
|
1246
|
+
name?: string;
|
|
1242
1247
|
}>) => void;
|
|
1243
1248
|
updateUser: (data: Partial<{
|
|
1244
1249
|
_id: string;
|
|
@@ -1250,6 +1255,7 @@ declare const useAuth: () => {
|
|
|
1250
1255
|
isPhoneVerified: boolean;
|
|
1251
1256
|
permissions?: Record<string, boolean>;
|
|
1252
1257
|
homePath?: string;
|
|
1258
|
+
name?: string;
|
|
1253
1259
|
}>) => void;
|
|
1254
1260
|
updateAccount: (data: Partial<{
|
|
1255
1261
|
_id: string;
|
|
@@ -1922,6 +1928,18 @@ declare const expenseSchema: z$1.ZodObject<{
|
|
|
1922
1928
|
}>;
|
|
1923
1929
|
type ExpenseSchemaType = z$1.infer<typeof expenseSchema>;
|
|
1924
1930
|
|
|
1931
|
+
declare function ForexExpenses({ url }: {
|
|
1932
|
+
url?: string;
|
|
1933
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1934
|
+
|
|
1935
|
+
declare function ForexExpenseForm({ id, close, reload, }: {
|
|
1936
|
+
id?: string;
|
|
1937
|
+
close: () => void;
|
|
1938
|
+
reload: () => void;
|
|
1939
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1940
|
+
|
|
1941
|
+
declare const ForexExpensesReport: () => react_jsx_runtime.JSX.Element;
|
|
1942
|
+
|
|
1925
1943
|
declare function Breadcrumbs(): react_jsx_runtime.JSX.Element;
|
|
1926
1944
|
|
|
1927
1945
|
interface ErrorPageProps {
|
|
@@ -2117,4 +2135,4 @@ declare const StockLevel: ({ value }: {
|
|
|
2117
2135
|
|
|
2118
2136
|
declare const ProfitAndLossReport: () => react_jsx_runtime.JSX.Element;
|
|
2119
2137
|
|
|
2120
|
-
export { AccountFields, AccountForm, AccountReport, AccountStatements, type AccountType, Accounts, AdminProtectedRoute, Badge, type BadgeProps, type BranchesContext, BrandField, BrandForm, Branding, type BrandingProps, Brands, Breadcrumbs, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Categories, CategoryCard, CategoryField, CategoryForm, type CategoryItem, ClassicSpin, ClothendStockAdjustment, ClothendStockTransfer, CodeBlock, ConfirmModal, type ConfirmModalProps, type CreateAccountSchemaType, type CreateBrandSchemaType, type CreateCategorySchemaType, type CreatePackSchemaType, type CreateProductSchemaType, type CreateWalletSchemaType, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, type EnumsConfig, ErrorPage, type ErrorPageProps, ExpenseForm, type ExpenseSchemaType, Expenses, type FetchFunction, type FetchProps, Fields, ForexAccountReport, ForexAccountStatements, ForexAccounts, ForexDubaiToChina, ForexDubaiToChinaForm, type ForexDubaiToChinaSchemaType, ForexTransferForm, type ForexTransferSchemaType, ForexTransfers, Guard, InfoGrid, Input, type InputProps, JournalForm, type JournalSchemaType, Journals, LinkUser, LoadingBox, LoadingSpin, type LoginSchema, type LoginTheme, Modal, type ModalProps, MoneyTransferForm, type MoneyTransferSchemaType, MoneyTransfers, type NavItem, type NavItems, type Option, OverlaySpin, _default as PackField, PackForm, type PackProductItemSchemaType, Packs, PageA4, PageHeader, PaymentForm, type PaymentSchemaType, Payments, type PdfOptions, PhoneInput, type PhoneInputProps, type PostFunction, PostTable, type PostTableActions, type PostTableChangeParams, ProductField, ProductForm, Products, ProfileCard, type ProfileCardProps, ProfileDropdown, type ProfileDropdownItem, type ProfileDropdownProps, ProfilePage, ProfileView, type ProfileViewInfoItem, type ProfileViewProps, ProfitAndLossReport, ProtectedRoute, type PutFunction, ResetPasswordPage, type Role, SaleStockAdjustment, SaleStockForm, SearchApi, SearchApiContent, SearchApiInput, SearchApiItem, type SearchApiProps, SearchApiTrigger, Select, SelectContent, SelectItem, type SelectProps, SelectTrigger, SimpleTable, type SimpleTableColumn, PosStockAdjustment as StockAdjustmentForm, StockLevel, PosStockTransfer as StockTransferForm, type StorageManager, type StoreConfig, type SummaryColumn, SummaryTable, type SummaryTableProps, Textarea, type TextareaProps, type ThemeConfig, ThemeProvider, ThemeToggle, ThemedLogin, UnProtectedRoute, type UseModalReturn, UserForm, UserProfile, UserUpdate, Users, Views, WalletAdjustmentForm, type WalletAdjustmentSchemaType, WalletAdjustments, WalletField, WalletForm, WalletReport, WalletStatements, Wallets, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, type apiConfig, createAccountSchema, createBrandSchema, createCategorySchema, createPackSchema, createProductSchema, createUserSchema, type createUserSchemaType, createWalletSchema, expenseSchema, forexDubaiToChinaSchema, forexTransferSchema, generatePdf, journalSchema, linkUserSchema, type linkUserSchemaType, moneyTransferSchema, packProductItemSchema, packTypes, paymentSchema, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, updateUserSchema, type updateUserSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType, walletAdjustmentSchema };
|
|
2138
|
+
export { AccountFields, AccountForm, AccountReport, AccountStatements, type AccountType, Accounts, AdminProtectedRoute, Badge, type BadgeProps, type BranchesContext, BrandField, BrandForm, Branding, type BrandingProps, Brands, Breadcrumbs, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Categories, CategoryCard, CategoryField, CategoryForm, type CategoryItem, ClassicSpin, ClothendStockAdjustment, ClothendStockTransfer, CodeBlock, ConfirmModal, type ConfirmModalProps, type CreateAccountSchemaType, type CreateBrandSchemaType, type CreateCategorySchemaType, type CreatePackSchemaType, type CreateProductSchemaType, type CreateWalletSchemaType, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, type EnumsConfig, ErrorPage, type ErrorPageProps, ExpenseForm, type ExpenseSchemaType, Expenses, type FetchFunction, type FetchProps, Fields, ForexAccountReport, ForexAccountStatements, ForexAccounts, ForexDubaiToChina, ForexDubaiToChinaForm, type ForexDubaiToChinaSchemaType, ForexExpenseForm, ForexExpenses, ForexExpensesReport, ForexTransferForm, type ForexTransferSchemaType, ForexTransfers, Guard, InfoGrid, Input, type InputProps, JournalForm, type JournalSchemaType, Journals, LinkUser, LoadingBox, LoadingSpin, type LoginSchema, type LoginTheme, Modal, type ModalProps, MoneyTransferForm, type MoneyTransferSchemaType, MoneyTransfers, type NavItem, type NavItems, type Option, OverlaySpin, _default as PackField, PackForm, type PackProductItemSchemaType, Packs, PageA4, PageHeader, PaymentForm, type PaymentSchemaType, Payments, type PdfOptions, PhoneInput, type PhoneInputProps, type PostFunction, PostTable, type PostTableActions, type PostTableChangeParams, ProductField, ProductForm, Products, ProfileCard, type ProfileCardProps, ProfileDropdown, type ProfileDropdownItem, type ProfileDropdownProps, ProfilePage, ProfileView, type ProfileViewInfoItem, type ProfileViewProps, ProfitAndLossReport, ProtectedRoute, type PutFunction, ResetPasswordPage, type Role, SaleStockAdjustment, SaleStockForm, SearchApi, SearchApiContent, SearchApiInput, SearchApiItem, type SearchApiProps, SearchApiTrigger, Select, SelectContent, SelectItem, type SelectProps, SelectTrigger, SimpleTable, type SimpleTableColumn, PosStockAdjustment as StockAdjustmentForm, StockLevel, PosStockTransfer as StockTransferForm, type StorageManager, type StoreConfig, type SummaryColumn, SummaryTable, type SummaryTableProps, Textarea, type TextareaProps, type ThemeConfig, ThemeProvider, ThemeToggle, ThemedLogin, UnProtectedRoute, type UseModalReturn, UserForm, UserProfile, UserUpdate, Users, Views, WalletAdjustmentForm, type WalletAdjustmentSchemaType, WalletAdjustments, WalletField, WalletForm, WalletReport, WalletStatements, Wallets, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, type apiConfig, createAccountSchema, createBrandSchema, createCategorySchema, createPackSchema, createProductSchema, createUserSchema, type createUserSchemaType, createWalletSchema, expenseSchema, forexDubaiToChinaSchema, forexTransferSchema, generatePdf, journalSchema, linkUserSchema, type linkUserSchemaType, moneyTransferSchema, packProductItemSchema, packTypes, paymentSchema, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, updateUserSchema, type updateUserSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType, walletAdjustmentSchema };
|