warqadui 0.0.94 → 0.0.96
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 +66 -5
- package/dist/index.d.ts +66 -5
- package/dist/index.js +689 -90
- package/dist/index.mjs +698 -102
- package/dist/styles.js +3 -9
- package/dist/styles.mjs +3 -9
- package/package.json +1 -1
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,58 @@ 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 }: {
|
|
1643
|
+
url?: string;
|
|
1644
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1645
|
+
|
|
1646
|
+
type accountType = (typeof Enums.accountTypes)[number] | "all";
|
|
1647
|
+
declare function JournalForm({ isFee, accountType, }: {
|
|
1648
|
+
isFee?: boolean;
|
|
1649
|
+
accountType?: accountType;
|
|
1650
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1651
|
+
|
|
1652
|
+
declare const journalSchema: z$1.ZodObject<{
|
|
1653
|
+
date: z$1.ZodEffects<z$1.ZodString, string, string>;
|
|
1654
|
+
amount: z$1.ZodNumber;
|
|
1655
|
+
account: z$1.ZodString;
|
|
1656
|
+
description: z$1.ZodString;
|
|
1657
|
+
journalVia: z$1.ZodEnum<["direct", "via account"]>;
|
|
1658
|
+
action: z$1.ZodOptional<z$1.ZodEnum<["credit", "debit"]>>;
|
|
1659
|
+
viaAccount: z$1.ZodOptional<z$1.ZodString>;
|
|
1660
|
+
viaAccountObject: z$1.ZodOptional<z$1.ZodAny>;
|
|
1661
|
+
accountObject: z$1.ZodOptional<z$1.ZodAny>;
|
|
1662
|
+
rate: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1663
|
+
exchangedAmount: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1664
|
+
fee: z$1.ZodNumber;
|
|
1665
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
1666
|
+
account: string;
|
|
1667
|
+
date: string;
|
|
1668
|
+
description: string;
|
|
1669
|
+
amount: number;
|
|
1670
|
+
journalVia: "direct" | "via account";
|
|
1671
|
+
fee: number;
|
|
1672
|
+
action?: "credit" | "debit" | undefined;
|
|
1673
|
+
viaAccount?: string | undefined;
|
|
1674
|
+
viaAccountObject?: any;
|
|
1675
|
+
accountObject?: any;
|
|
1676
|
+
rate?: number | undefined;
|
|
1677
|
+
exchangedAmount?: number | undefined;
|
|
1678
|
+
}, {
|
|
1679
|
+
account: string;
|
|
1680
|
+
date: string;
|
|
1681
|
+
description: string;
|
|
1682
|
+
amount: number;
|
|
1683
|
+
journalVia: "direct" | "via account";
|
|
1684
|
+
fee: number;
|
|
1685
|
+
action?: "credit" | "debit" | undefined;
|
|
1686
|
+
viaAccount?: string | undefined;
|
|
1687
|
+
viaAccountObject?: any;
|
|
1688
|
+
accountObject?: any;
|
|
1689
|
+
rate?: number | undefined;
|
|
1690
|
+
exchangedAmount?: number | undefined;
|
|
1691
|
+
}>;
|
|
1692
|
+
type JournalSchemaType = z$1.infer<typeof journalSchema>;
|
|
1693
|
+
|
|
1633
1694
|
declare function Breadcrumbs(): react_jsx_runtime.JSX.Element;
|
|
1634
1695
|
|
|
1635
1696
|
interface ErrorPageProps {
|
|
@@ -1650,4 +1711,4 @@ declare const ErrorPage: (({ title, message, statusCode, action, className, }: E
|
|
|
1650
1711
|
400: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1651
1712
|
};
|
|
1652
1713
|
|
|
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 };
|
|
1714
|
+
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,58 @@ 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 }: {
|
|
1643
|
+
url?: string;
|
|
1644
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1645
|
+
|
|
1646
|
+
type accountType = (typeof Enums.accountTypes)[number] | "all";
|
|
1647
|
+
declare function JournalForm({ isFee, accountType, }: {
|
|
1648
|
+
isFee?: boolean;
|
|
1649
|
+
accountType?: accountType;
|
|
1650
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1651
|
+
|
|
1652
|
+
declare const journalSchema: z$1.ZodObject<{
|
|
1653
|
+
date: z$1.ZodEffects<z$1.ZodString, string, string>;
|
|
1654
|
+
amount: z$1.ZodNumber;
|
|
1655
|
+
account: z$1.ZodString;
|
|
1656
|
+
description: z$1.ZodString;
|
|
1657
|
+
journalVia: z$1.ZodEnum<["direct", "via account"]>;
|
|
1658
|
+
action: z$1.ZodOptional<z$1.ZodEnum<["credit", "debit"]>>;
|
|
1659
|
+
viaAccount: z$1.ZodOptional<z$1.ZodString>;
|
|
1660
|
+
viaAccountObject: z$1.ZodOptional<z$1.ZodAny>;
|
|
1661
|
+
accountObject: z$1.ZodOptional<z$1.ZodAny>;
|
|
1662
|
+
rate: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1663
|
+
exchangedAmount: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1664
|
+
fee: z$1.ZodNumber;
|
|
1665
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
1666
|
+
account: string;
|
|
1667
|
+
date: string;
|
|
1668
|
+
description: string;
|
|
1669
|
+
amount: number;
|
|
1670
|
+
journalVia: "direct" | "via account";
|
|
1671
|
+
fee: number;
|
|
1672
|
+
action?: "credit" | "debit" | undefined;
|
|
1673
|
+
viaAccount?: string | undefined;
|
|
1674
|
+
viaAccountObject?: any;
|
|
1675
|
+
accountObject?: any;
|
|
1676
|
+
rate?: number | undefined;
|
|
1677
|
+
exchangedAmount?: number | undefined;
|
|
1678
|
+
}, {
|
|
1679
|
+
account: string;
|
|
1680
|
+
date: string;
|
|
1681
|
+
description: string;
|
|
1682
|
+
amount: number;
|
|
1683
|
+
journalVia: "direct" | "via account";
|
|
1684
|
+
fee: number;
|
|
1685
|
+
action?: "credit" | "debit" | undefined;
|
|
1686
|
+
viaAccount?: string | undefined;
|
|
1687
|
+
viaAccountObject?: any;
|
|
1688
|
+
accountObject?: any;
|
|
1689
|
+
rate?: number | undefined;
|
|
1690
|
+
exchangedAmount?: number | undefined;
|
|
1691
|
+
}>;
|
|
1692
|
+
type JournalSchemaType = z$1.infer<typeof journalSchema>;
|
|
1693
|
+
|
|
1633
1694
|
declare function Breadcrumbs(): react_jsx_runtime.JSX.Element;
|
|
1634
1695
|
|
|
1635
1696
|
interface ErrorPageProps {
|
|
@@ -1650,4 +1711,4 @@ declare const ErrorPage: (({ title, message, statusCode, action, className, }: E
|
|
|
1650
1711
|
400: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1651
1712
|
};
|
|
1652
1713
|
|
|
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 };
|
|
1714
|
+
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 };
|