warqadui 0.0.94 → 0.0.97

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 CHANGED
@@ -374,12 +374,15 @@ declare const Textarea: <T extends FieldValues>(props: TextareaProps<T> & {
374
374
  declare const Enums: {
375
375
  roles: readonly ["admin", "staff"];
376
376
  sex: readonly ["male", "female"];
377
- accountTypes: readonly ["employee", "supplier", "customer", "amaanah"];
377
+ accountTypes: readonly ["employee", "supplier", "customer", "amaanah", "account"];
378
378
  verificationTypes: readonly ["email_verification", "password_reset"];
379
379
  auditActions: readonly ["create", "update", "delete", "login", "logout"];
380
380
  walletTypes: readonly ["bank", "cash", "mobile"];
381
381
  currencies: readonly ["USD", "TZS", "KES", "CNY"];
382
382
  packTypes: readonly ["pressure", "bag", "boxes"];
383
+ journalTypes: readonly ["journal"];
384
+ viaTypes: readonly ["direct", "via account"];
385
+ actionTypes: readonly ["credit", "debit"];
383
386
  };
384
387
 
385
388
  interface ThemeConfig {
@@ -1205,8 +1208,9 @@ type AccountProps<T extends FieldValues> = {
1205
1208
  v?: number;
1206
1209
  required?: boolean;
1207
1210
  disabled?: boolean;
1211
+ obj?: string;
1208
1212
  };
1209
- declare function Account<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, showBalance, required, disabled, }: AccountProps<T>): react_jsx_runtime.JSX.Element;
1213
+ declare function Account<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, showBalance, required, disabled, obj, }: AccountProps<T>): react_jsx_runtime.JSX.Element;
1210
1214
 
1211
1215
  type Props$2<T extends FieldValues> = {
1212
1216
  name?: Path<T>;
@@ -1219,8 +1223,9 @@ type Props$2<T extends FieldValues> = {
1219
1223
  v?: number;
1220
1224
  required?: boolean;
1221
1225
  disabled?: boolean;
1226
+ obj?: Path<T>;
1222
1227
  };
1223
- declare function Customer<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, disabled, v, }: Props$2<T>): react_jsx_runtime.JSX.Element;
1228
+ declare function Customer<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, disabled, v, obj, }: Props$2<T>): react_jsx_runtime.JSX.Element;
1224
1229
 
1225
1230
  type Props$1<T extends FieldValues> = {
1226
1231
  name?: Path<T>;
@@ -1233,8 +1238,9 @@ type Props$1<T extends FieldValues> = {
1233
1238
  v?: number;
1234
1239
  required?: boolean;
1235
1240
  disabled?: boolean;
1241
+ obj: Path<T>;
1236
1242
  };
1237
- declare function Employee<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, disabled, v, }: Props$1<T>): react_jsx_runtime.JSX.Element;
1243
+ declare function Employee<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, disabled, obj, v, }: Props$1<T>): react_jsx_runtime.JSX.Element;
1238
1244
 
1239
1245
  type Props<T extends FieldValues> = {
1240
1246
  name?: Path<T>;
@@ -1263,18 +1269,21 @@ declare const createAccountSchema: z$1.ZodObject<{
1263
1269
  phoneNumber: z$1.ZodOptional<z$1.ZodString>;
1264
1270
  sex: z$1.ZodEnum<["male", "female"]>;
1265
1271
  branch: z$1.ZodOptional<z$1.ZodString>;
1272
+ currency: z$1.ZodOptional<z$1.ZodString>;
1266
1273
  }, "strip", z$1.ZodTypeAny, {
1267
1274
  name: string;
1268
1275
  sex: "male" | "female";
1269
1276
  email?: string | undefined;
1270
1277
  phoneNumber?: string | undefined;
1271
1278
  branch?: string | undefined;
1279
+ currency?: string | undefined;
1272
1280
  }, {
1273
1281
  name: string;
1274
1282
  sex: "male" | "female";
1275
1283
  email?: string | undefined;
1276
1284
  phoneNumber?: string | undefined;
1277
1285
  branch?: string | undefined;
1286
+ currency?: string | undefined;
1278
1287
  }>;
1279
1288
  type CreateAccountSchemaType = z$1.infer<typeof createAccountSchema>;
1280
1289
 
@@ -1630,6 +1639,59 @@ declare const createPackSchema: z$1.ZodObject<{
1630
1639
  type CreatePackSchemaType = z$1.infer<typeof createPackSchema>;
1631
1640
  type PackProductItemSchemaType = z$1.infer<typeof packProductItemSchema>;
1632
1641
 
1642
+ declare function Journals({ url, journalType, }: {
1643
+ url?: string;
1644
+ journalType?: string;
1645
+ }): react_jsx_runtime.JSX.Element;
1646
+
1647
+ type accountType = (typeof Enums.accountTypes)[number] | "all";
1648
+ declare function JournalForm({ isFee, accountType, }: {
1649
+ isFee?: boolean;
1650
+ accountType?: accountType;
1651
+ }): react_jsx_runtime.JSX.Element;
1652
+
1653
+ declare const journalSchema: z$1.ZodObject<{
1654
+ date: z$1.ZodEffects<z$1.ZodString, string, string>;
1655
+ amount: z$1.ZodNumber;
1656
+ account: z$1.ZodString;
1657
+ description: z$1.ZodString;
1658
+ journalVia: z$1.ZodEnum<["direct", "via account"]>;
1659
+ action: z$1.ZodOptional<z$1.ZodEnum<["credit", "debit"]>>;
1660
+ viaAccount: z$1.ZodOptional<z$1.ZodString>;
1661
+ viaAccountObject: z$1.ZodOptional<z$1.ZodAny>;
1662
+ accountObject: z$1.ZodOptional<z$1.ZodAny>;
1663
+ rate: z$1.ZodOptional<z$1.ZodNumber>;
1664
+ exchangedAmount: z$1.ZodOptional<z$1.ZodNumber>;
1665
+ fee: z$1.ZodNumber;
1666
+ }, "strip", z$1.ZodTypeAny, {
1667
+ account: string;
1668
+ date: string;
1669
+ description: string;
1670
+ amount: number;
1671
+ journalVia: "direct" | "via account";
1672
+ fee: number;
1673
+ action?: "credit" | "debit" | undefined;
1674
+ viaAccount?: string | undefined;
1675
+ viaAccountObject?: any;
1676
+ accountObject?: any;
1677
+ rate?: number | undefined;
1678
+ exchangedAmount?: number | undefined;
1679
+ }, {
1680
+ account: string;
1681
+ date: string;
1682
+ description: string;
1683
+ amount: number;
1684
+ journalVia: "direct" | "via account";
1685
+ fee: number;
1686
+ action?: "credit" | "debit" | undefined;
1687
+ viaAccount?: string | undefined;
1688
+ viaAccountObject?: any;
1689
+ accountObject?: any;
1690
+ rate?: number | undefined;
1691
+ exchangedAmount?: number | undefined;
1692
+ }>;
1693
+ type JournalSchemaType = z$1.infer<typeof journalSchema>;
1694
+
1633
1695
  declare function Breadcrumbs(): react_jsx_runtime.JSX.Element;
1634
1696
 
1635
1697
  interface ErrorPageProps {
@@ -1650,4 +1712,4 @@ declare const ErrorPage: (({ title, message, statusCode, action, className, }: E
1650
1712
  400: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
1651
1713
  };
1652
1714
 
1653
- export { AccountFields, AccountForm, 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, 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, type FetchFunction, type FetchProps, Fields, Guard, InfoGrid, Input, type InputProps, LinkUser, LoadingBox, LoadingSpin, type LoginSchema, type LoginTheme, Modal, type ModalProps, type NavItem, type NavItems, type Option, OverlaySpin, _default as PackField, PackForm, type PackProductItemSchemaType, Packs, PageA4, PageHeader, 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, ProtectedRoute, type PutFunction, ResetPasswordPage, type Role, SearchApi, SearchApiContent, SearchApiInput, SearchApiItem, type SearchApiProps, SearchApiTrigger, Select, SelectContent, SelectItem, type SelectProps, SelectTrigger, SimpleTable, type SimpleTableColumn, type StorageManager, type StoreConfig, Textarea, type TextareaProps, type ThemeConfig, ThemeProvider, ThemeToggle, ThemedLogin, UnProtectedRoute, type UseModalReturn, UserForm, UserProfile, Users, Views, WalletField, WalletForm, Wallets, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, createAccountSchema, createBrandSchema, createCategorySchema, createPackSchema, createProductSchema, createUserSchema, type createUserSchemaType, createWalletSchema, generatePdf, linkUserSchema, type linkUserSchemaType, packProductItemSchema, packTypes, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType };
1715
+ export { AccountFields, AccountForm, 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, 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, type FetchFunction, type FetchProps, Fields, Guard, InfoGrid, Input, type InputProps, JournalForm, type JournalSchemaType, Journals, LinkUser, LoadingBox, LoadingSpin, type LoginSchema, type LoginTheme, Modal, type ModalProps, type NavItem, type NavItems, type Option, OverlaySpin, _default as PackField, PackForm, type PackProductItemSchemaType, Packs, PageA4, PageHeader, 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, ProtectedRoute, type PutFunction, ResetPasswordPage, type Role, SearchApi, SearchApiContent, SearchApiInput, SearchApiItem, type SearchApiProps, SearchApiTrigger, Select, SelectContent, SelectItem, type SelectProps, SelectTrigger, SimpleTable, type SimpleTableColumn, type StorageManager, type StoreConfig, Textarea, type TextareaProps, type ThemeConfig, ThemeProvider, ThemeToggle, ThemedLogin, UnProtectedRoute, type UseModalReturn, UserForm, UserProfile, Users, Views, WalletField, WalletForm, Wallets, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, createAccountSchema, createBrandSchema, createCategorySchema, createPackSchema, createProductSchema, createUserSchema, type createUserSchemaType, createWalletSchema, generatePdf, journalSchema, linkUserSchema, type linkUserSchemaType, packProductItemSchema, packTypes, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType };
package/dist/index.d.ts CHANGED
@@ -374,12 +374,15 @@ declare const Textarea: <T extends FieldValues>(props: TextareaProps<T> & {
374
374
  declare const Enums: {
375
375
  roles: readonly ["admin", "staff"];
376
376
  sex: readonly ["male", "female"];
377
- accountTypes: readonly ["employee", "supplier", "customer", "amaanah"];
377
+ accountTypes: readonly ["employee", "supplier", "customer", "amaanah", "account"];
378
378
  verificationTypes: readonly ["email_verification", "password_reset"];
379
379
  auditActions: readonly ["create", "update", "delete", "login", "logout"];
380
380
  walletTypes: readonly ["bank", "cash", "mobile"];
381
381
  currencies: readonly ["USD", "TZS", "KES", "CNY"];
382
382
  packTypes: readonly ["pressure", "bag", "boxes"];
383
+ journalTypes: readonly ["journal"];
384
+ viaTypes: readonly ["direct", "via account"];
385
+ actionTypes: readonly ["credit", "debit"];
383
386
  };
384
387
 
385
388
  interface ThemeConfig {
@@ -1205,8 +1208,9 @@ type AccountProps<T extends FieldValues> = {
1205
1208
  v?: number;
1206
1209
  required?: boolean;
1207
1210
  disabled?: boolean;
1211
+ obj?: string;
1208
1212
  };
1209
- declare function Account<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, showBalance, required, disabled, }: AccountProps<T>): react_jsx_runtime.JSX.Element;
1213
+ declare function Account<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, showBalance, required, disabled, obj, }: AccountProps<T>): react_jsx_runtime.JSX.Element;
1210
1214
 
1211
1215
  type Props$2<T extends FieldValues> = {
1212
1216
  name?: Path<T>;
@@ -1219,8 +1223,9 @@ type Props$2<T extends FieldValues> = {
1219
1223
  v?: number;
1220
1224
  required?: boolean;
1221
1225
  disabled?: boolean;
1226
+ obj?: Path<T>;
1222
1227
  };
1223
- declare function Customer<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, disabled, v, }: Props$2<T>): react_jsx_runtime.JSX.Element;
1228
+ declare function Customer<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, disabled, v, obj, }: Props$2<T>): react_jsx_runtime.JSX.Element;
1224
1229
 
1225
1230
  type Props$1<T extends FieldValues> = {
1226
1231
  name?: Path<T>;
@@ -1233,8 +1238,9 @@ type Props$1<T extends FieldValues> = {
1233
1238
  v?: number;
1234
1239
  required?: boolean;
1235
1240
  disabled?: boolean;
1241
+ obj: Path<T>;
1236
1242
  };
1237
- declare function Employee<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, disabled, v, }: Props$1<T>): react_jsx_runtime.JSX.Element;
1243
+ declare function Employee<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, disabled, obj, v, }: Props$1<T>): react_jsx_runtime.JSX.Element;
1238
1244
 
1239
1245
  type Props<T extends FieldValues> = {
1240
1246
  name?: Path<T>;
@@ -1263,18 +1269,21 @@ declare const createAccountSchema: z$1.ZodObject<{
1263
1269
  phoneNumber: z$1.ZodOptional<z$1.ZodString>;
1264
1270
  sex: z$1.ZodEnum<["male", "female"]>;
1265
1271
  branch: z$1.ZodOptional<z$1.ZodString>;
1272
+ currency: z$1.ZodOptional<z$1.ZodString>;
1266
1273
  }, "strip", z$1.ZodTypeAny, {
1267
1274
  name: string;
1268
1275
  sex: "male" | "female";
1269
1276
  email?: string | undefined;
1270
1277
  phoneNumber?: string | undefined;
1271
1278
  branch?: string | undefined;
1279
+ currency?: string | undefined;
1272
1280
  }, {
1273
1281
  name: string;
1274
1282
  sex: "male" | "female";
1275
1283
  email?: string | undefined;
1276
1284
  phoneNumber?: string | undefined;
1277
1285
  branch?: string | undefined;
1286
+ currency?: string | undefined;
1278
1287
  }>;
1279
1288
  type CreateAccountSchemaType = z$1.infer<typeof createAccountSchema>;
1280
1289
 
@@ -1630,6 +1639,59 @@ declare const createPackSchema: z$1.ZodObject<{
1630
1639
  type CreatePackSchemaType = z$1.infer<typeof createPackSchema>;
1631
1640
  type PackProductItemSchemaType = z$1.infer<typeof packProductItemSchema>;
1632
1641
 
1642
+ declare function Journals({ url, journalType, }: {
1643
+ url?: string;
1644
+ journalType?: string;
1645
+ }): react_jsx_runtime.JSX.Element;
1646
+
1647
+ type accountType = (typeof Enums.accountTypes)[number] | "all";
1648
+ declare function JournalForm({ isFee, accountType, }: {
1649
+ isFee?: boolean;
1650
+ accountType?: accountType;
1651
+ }): react_jsx_runtime.JSX.Element;
1652
+
1653
+ declare const journalSchema: z$1.ZodObject<{
1654
+ date: z$1.ZodEffects<z$1.ZodString, string, string>;
1655
+ amount: z$1.ZodNumber;
1656
+ account: z$1.ZodString;
1657
+ description: z$1.ZodString;
1658
+ journalVia: z$1.ZodEnum<["direct", "via account"]>;
1659
+ action: z$1.ZodOptional<z$1.ZodEnum<["credit", "debit"]>>;
1660
+ viaAccount: z$1.ZodOptional<z$1.ZodString>;
1661
+ viaAccountObject: z$1.ZodOptional<z$1.ZodAny>;
1662
+ accountObject: z$1.ZodOptional<z$1.ZodAny>;
1663
+ rate: z$1.ZodOptional<z$1.ZodNumber>;
1664
+ exchangedAmount: z$1.ZodOptional<z$1.ZodNumber>;
1665
+ fee: z$1.ZodNumber;
1666
+ }, "strip", z$1.ZodTypeAny, {
1667
+ account: string;
1668
+ date: string;
1669
+ description: string;
1670
+ amount: number;
1671
+ journalVia: "direct" | "via account";
1672
+ fee: number;
1673
+ action?: "credit" | "debit" | undefined;
1674
+ viaAccount?: string | undefined;
1675
+ viaAccountObject?: any;
1676
+ accountObject?: any;
1677
+ rate?: number | undefined;
1678
+ exchangedAmount?: number | undefined;
1679
+ }, {
1680
+ account: string;
1681
+ date: string;
1682
+ description: string;
1683
+ amount: number;
1684
+ journalVia: "direct" | "via account";
1685
+ fee: number;
1686
+ action?: "credit" | "debit" | undefined;
1687
+ viaAccount?: string | undefined;
1688
+ viaAccountObject?: any;
1689
+ accountObject?: any;
1690
+ rate?: number | undefined;
1691
+ exchangedAmount?: number | undefined;
1692
+ }>;
1693
+ type JournalSchemaType = z$1.infer<typeof journalSchema>;
1694
+
1633
1695
  declare function Breadcrumbs(): react_jsx_runtime.JSX.Element;
1634
1696
 
1635
1697
  interface ErrorPageProps {
@@ -1650,4 +1712,4 @@ declare const ErrorPage: (({ title, message, statusCode, action, className, }: E
1650
1712
  400: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
1651
1713
  };
1652
1714
 
1653
- export { AccountFields, AccountForm, 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, 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, type FetchFunction, type FetchProps, Fields, Guard, InfoGrid, Input, type InputProps, LinkUser, LoadingBox, LoadingSpin, type LoginSchema, type LoginTheme, Modal, type ModalProps, type NavItem, type NavItems, type Option, OverlaySpin, _default as PackField, PackForm, type PackProductItemSchemaType, Packs, PageA4, PageHeader, 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, ProtectedRoute, type PutFunction, ResetPasswordPage, type Role, SearchApi, SearchApiContent, SearchApiInput, SearchApiItem, type SearchApiProps, SearchApiTrigger, Select, SelectContent, SelectItem, type SelectProps, SelectTrigger, SimpleTable, type SimpleTableColumn, type StorageManager, type StoreConfig, Textarea, type TextareaProps, type ThemeConfig, ThemeProvider, ThemeToggle, ThemedLogin, UnProtectedRoute, type UseModalReturn, UserForm, UserProfile, Users, Views, WalletField, WalletForm, Wallets, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, createAccountSchema, createBrandSchema, createCategorySchema, createPackSchema, createProductSchema, createUserSchema, type createUserSchemaType, createWalletSchema, generatePdf, linkUserSchema, type linkUserSchemaType, packProductItemSchema, packTypes, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType };
1715
+ export { AccountFields, AccountForm, 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, 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, type FetchFunction, type FetchProps, Fields, Guard, InfoGrid, Input, type InputProps, JournalForm, type JournalSchemaType, Journals, LinkUser, LoadingBox, LoadingSpin, type LoginSchema, type LoginTheme, Modal, type ModalProps, type NavItem, type NavItems, type Option, OverlaySpin, _default as PackField, PackForm, type PackProductItemSchemaType, Packs, PageA4, PageHeader, 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, ProtectedRoute, type PutFunction, ResetPasswordPage, type Role, SearchApi, SearchApiContent, SearchApiInput, SearchApiItem, type SearchApiProps, SearchApiTrigger, Select, SelectContent, SelectItem, type SelectProps, SelectTrigger, SimpleTable, type SimpleTableColumn, type StorageManager, type StoreConfig, Textarea, type TextareaProps, type ThemeConfig, ThemeProvider, ThemeToggle, ThemedLogin, UnProtectedRoute, type UseModalReturn, UserForm, UserProfile, Users, Views, WalletField, WalletForm, Wallets, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, createAccountSchema, createBrandSchema, createCategorySchema, createPackSchema, createProductSchema, createUserSchema, type createUserSchemaType, createWalletSchema, generatePdf, journalSchema, linkUserSchema, type linkUserSchemaType, packProductItemSchema, packTypes, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType };