warqadui 0.0.80 → 0.0.84
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 +140 -1
- package/dist/index.d.ts +140 -1
- package/dist/index.js +19201 -406
- package/dist/index.mjs +19559 -355
- package/dist/styles.js +68 -0
- package/dist/styles.mjs +68 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1169,21 +1169,83 @@ declare function Accounts({ v, url }: {
|
|
|
1169
1169
|
|
|
1170
1170
|
declare function AccountForm(): react_jsx_runtime.JSX.Element;
|
|
1171
1171
|
|
|
1172
|
+
type AccountProps<T extends FieldValues> = {
|
|
1173
|
+
name: Path<T>;
|
|
1174
|
+
label: string;
|
|
1175
|
+
form: UseFormReturn<T>;
|
|
1176
|
+
placeholder?: string;
|
|
1177
|
+
api: string;
|
|
1178
|
+
filter?: string[];
|
|
1179
|
+
showBalance?: boolean;
|
|
1180
|
+
v?: number;
|
|
1181
|
+
required?: boolean;
|
|
1182
|
+
};
|
|
1183
|
+
declare function Account<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, showBalance, required, }: AccountProps<T>): react_jsx_runtime.JSX.Element;
|
|
1184
|
+
|
|
1185
|
+
type Props$3<T extends FieldValues> = {
|
|
1186
|
+
name?: Path<T>;
|
|
1187
|
+
label?: string;
|
|
1188
|
+
form: UseFormReturn<T>;
|
|
1189
|
+
placeholder?: string;
|
|
1190
|
+
api?: string;
|
|
1191
|
+
filter?: string[];
|
|
1192
|
+
showBalance?: boolean;
|
|
1193
|
+
v?: number;
|
|
1194
|
+
required?: boolean;
|
|
1195
|
+
};
|
|
1196
|
+
declare function Customer<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, v, }: Props$3<T>): react_jsx_runtime.JSX.Element;
|
|
1197
|
+
|
|
1198
|
+
type Props$2<T extends FieldValues> = {
|
|
1199
|
+
name?: Path<T>;
|
|
1200
|
+
label?: string;
|
|
1201
|
+
form: UseFormReturn<T>;
|
|
1202
|
+
placeholder?: string;
|
|
1203
|
+
api?: string;
|
|
1204
|
+
filter?: string[];
|
|
1205
|
+
showBalance?: boolean;
|
|
1206
|
+
v?: number;
|
|
1207
|
+
required?: boolean;
|
|
1208
|
+
};
|
|
1209
|
+
declare function Employee<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, v, }: Props$2<T>): react_jsx_runtime.JSX.Element;
|
|
1210
|
+
|
|
1211
|
+
type Props$1<T extends FieldValues> = {
|
|
1212
|
+
name?: Path<T>;
|
|
1213
|
+
label?: string;
|
|
1214
|
+
form: UseFormReturn<T>;
|
|
1215
|
+
placeholder?: string;
|
|
1216
|
+
api?: string;
|
|
1217
|
+
filter?: string[];
|
|
1218
|
+
showBalance?: boolean;
|
|
1219
|
+
v?: number;
|
|
1220
|
+
required?: boolean;
|
|
1221
|
+
};
|
|
1222
|
+
declare function Branches$1<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, v, }: Props$1<T>): react_jsx_runtime.JSX.Element;
|
|
1223
|
+
|
|
1224
|
+
declare const AccountFields: {
|
|
1225
|
+
Account: typeof Account;
|
|
1226
|
+
Customer: typeof Customer;
|
|
1227
|
+
Employee: typeof Employee;
|
|
1228
|
+
Branches: typeof Branches$1;
|
|
1229
|
+
};
|
|
1230
|
+
|
|
1172
1231
|
declare const createAccountSchema: z$1.ZodObject<{
|
|
1173
1232
|
name: z$1.ZodString;
|
|
1174
1233
|
email: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodOptional<z$1.ZodString>, string | undefined, string | undefined>, string | undefined, string | undefined>;
|
|
1175
1234
|
phoneNumber: z$1.ZodOptional<z$1.ZodString>;
|
|
1176
1235
|
sex: z$1.ZodEnum<["male", "female"]>;
|
|
1236
|
+
branch: z$1.ZodOptional<z$1.ZodString>;
|
|
1177
1237
|
}, "strip", z$1.ZodTypeAny, {
|
|
1178
1238
|
name: string;
|
|
1179
1239
|
sex: "male" | "female";
|
|
1180
1240
|
email?: string | undefined;
|
|
1181
1241
|
phoneNumber?: string | undefined;
|
|
1242
|
+
branch?: string | undefined;
|
|
1182
1243
|
}, {
|
|
1183
1244
|
name: string;
|
|
1184
1245
|
sex: "male" | "female";
|
|
1185
1246
|
email?: string | undefined;
|
|
1186
1247
|
phoneNumber?: string | undefined;
|
|
1248
|
+
branch?: string | undefined;
|
|
1187
1249
|
}>;
|
|
1188
1250
|
type CreateAccountSchemaType = z$1.infer<typeof createAccountSchema>;
|
|
1189
1251
|
|
|
@@ -1282,6 +1344,83 @@ type updateUserEmailSchemaType = z$1.infer<typeof updateUserEmailSchema>;
|
|
|
1282
1344
|
type resetPasswordSchemaType = z$1.infer<typeof resetPasswordSchema>;
|
|
1283
1345
|
type createUserSchemaType = z$1.infer<typeof createUserSchema>;
|
|
1284
1346
|
|
|
1347
|
+
declare function Wallets({ v, url }: {
|
|
1348
|
+
v?: 1 | 2;
|
|
1349
|
+
url?: string;
|
|
1350
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1351
|
+
|
|
1352
|
+
declare function WalletForm(): react_jsx_runtime.JSX.Element;
|
|
1353
|
+
|
|
1354
|
+
type WalletFieldProps<T extends FieldValues> = {
|
|
1355
|
+
name: Path<T>;
|
|
1356
|
+
label: string;
|
|
1357
|
+
form: UseFormReturn<T>;
|
|
1358
|
+
placeholder?: string;
|
|
1359
|
+
api: string;
|
|
1360
|
+
filter?: string[];
|
|
1361
|
+
showBalance?: boolean;
|
|
1362
|
+
v?: number;
|
|
1363
|
+
required?: boolean;
|
|
1364
|
+
};
|
|
1365
|
+
declare function Wallet<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, showBalance, required, }: WalletFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1366
|
+
|
|
1367
|
+
type Props<T extends FieldValues> = {
|
|
1368
|
+
name?: Path<T>;
|
|
1369
|
+
label?: string;
|
|
1370
|
+
form: UseFormReturn<T>;
|
|
1371
|
+
placeholder?: string;
|
|
1372
|
+
api?: string;
|
|
1373
|
+
filter?: string[];
|
|
1374
|
+
showBalance?: boolean;
|
|
1375
|
+
v?: number;
|
|
1376
|
+
required?: boolean;
|
|
1377
|
+
};
|
|
1378
|
+
declare function Branches<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, v, }: Props<T>): react_jsx_runtime.JSX.Element;
|
|
1379
|
+
|
|
1380
|
+
declare const WalletField: {
|
|
1381
|
+
Wallet: typeof Wallet;
|
|
1382
|
+
Branches: typeof Branches;
|
|
1383
|
+
};
|
|
1384
|
+
|
|
1385
|
+
declare const createWalletSchema: z$1.ZodObject<{
|
|
1386
|
+
name: z$1.ZodString;
|
|
1387
|
+
type: z$1.ZodEnum<["bank", "cash", "mobile"]>;
|
|
1388
|
+
currency: z$1.ZodEnum<["USD", "TZS", "KES", "CNY"]>;
|
|
1389
|
+
accountNo: z$1.ZodOptional<z$1.ZodString>;
|
|
1390
|
+
branch: z$1.ZodOptional<z$1.ZodString>;
|
|
1391
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
1392
|
+
name: string;
|
|
1393
|
+
type: "mobile" | "bank" | "cash";
|
|
1394
|
+
currency: "USD" | "TZS" | "KES" | "CNY";
|
|
1395
|
+
branch?: string | undefined;
|
|
1396
|
+
accountNo?: string | undefined;
|
|
1397
|
+
}, {
|
|
1398
|
+
name: string;
|
|
1399
|
+
type: "mobile" | "bank" | "cash";
|
|
1400
|
+
currency: "USD" | "TZS" | "KES" | "CNY";
|
|
1401
|
+
branch?: string | undefined;
|
|
1402
|
+
accountNo?: string | undefined;
|
|
1403
|
+
}>;
|
|
1404
|
+
type CreateWalletSchemaType = z$1.infer<typeof createWalletSchema>;
|
|
1405
|
+
|
|
1285
1406
|
declare function Breadcrumbs(): react_jsx_runtime.JSX.Element;
|
|
1286
1407
|
|
|
1287
|
-
|
|
1408
|
+
interface ErrorPageProps {
|
|
1409
|
+
title?: string;
|
|
1410
|
+
message?: string;
|
|
1411
|
+
statusCode?: number;
|
|
1412
|
+
action?: {
|
|
1413
|
+
label: string;
|
|
1414
|
+
onClick: () => void;
|
|
1415
|
+
};
|
|
1416
|
+
className?: string;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
declare const ErrorPage: (({ title, message, statusCode, action, className, }: ErrorPageProps) => react_jsx_runtime.JSX.Element) & {
|
|
1420
|
+
500: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1421
|
+
404: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1422
|
+
401: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1423
|
+
400: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1424
|
+
};
|
|
1425
|
+
|
|
1426
|
+
export { AccountFields, AccountForm, type AccountType, Accounts, AdminProtectedRoute, Badge, type BadgeProps, type BranchesContext, Branding, type BrandingProps, Breadcrumbs, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryCard, type CategoryItem, ClassicSpin, CodeBlock, ConfirmModal, type ConfirmModalProps, type CreateAccountSchemaType, type CreateWalletSchemaType, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, 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, PageA4, PageHeader, type PdfOptions, PhoneInput, type PhoneInputProps, type PostFunction, PostTable, type PostTableActions, type PostTableChangeParams, 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, createUserSchema, type createUserSchemaType, createWalletSchema, generatePdf, linkUserSchema, type linkUserSchemaType, 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
|
@@ -1169,21 +1169,83 @@ declare function Accounts({ v, url }: {
|
|
|
1169
1169
|
|
|
1170
1170
|
declare function AccountForm(): react_jsx_runtime.JSX.Element;
|
|
1171
1171
|
|
|
1172
|
+
type AccountProps<T extends FieldValues> = {
|
|
1173
|
+
name: Path<T>;
|
|
1174
|
+
label: string;
|
|
1175
|
+
form: UseFormReturn<T>;
|
|
1176
|
+
placeholder?: string;
|
|
1177
|
+
api: string;
|
|
1178
|
+
filter?: string[];
|
|
1179
|
+
showBalance?: boolean;
|
|
1180
|
+
v?: number;
|
|
1181
|
+
required?: boolean;
|
|
1182
|
+
};
|
|
1183
|
+
declare function Account<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, showBalance, required, }: AccountProps<T>): react_jsx_runtime.JSX.Element;
|
|
1184
|
+
|
|
1185
|
+
type Props$3<T extends FieldValues> = {
|
|
1186
|
+
name?: Path<T>;
|
|
1187
|
+
label?: string;
|
|
1188
|
+
form: UseFormReturn<T>;
|
|
1189
|
+
placeholder?: string;
|
|
1190
|
+
api?: string;
|
|
1191
|
+
filter?: string[];
|
|
1192
|
+
showBalance?: boolean;
|
|
1193
|
+
v?: number;
|
|
1194
|
+
required?: boolean;
|
|
1195
|
+
};
|
|
1196
|
+
declare function Customer<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, v, }: Props$3<T>): react_jsx_runtime.JSX.Element;
|
|
1197
|
+
|
|
1198
|
+
type Props$2<T extends FieldValues> = {
|
|
1199
|
+
name?: Path<T>;
|
|
1200
|
+
label?: string;
|
|
1201
|
+
form: UseFormReturn<T>;
|
|
1202
|
+
placeholder?: string;
|
|
1203
|
+
api?: string;
|
|
1204
|
+
filter?: string[];
|
|
1205
|
+
showBalance?: boolean;
|
|
1206
|
+
v?: number;
|
|
1207
|
+
required?: boolean;
|
|
1208
|
+
};
|
|
1209
|
+
declare function Employee<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, v, }: Props$2<T>): react_jsx_runtime.JSX.Element;
|
|
1210
|
+
|
|
1211
|
+
type Props$1<T extends FieldValues> = {
|
|
1212
|
+
name?: Path<T>;
|
|
1213
|
+
label?: string;
|
|
1214
|
+
form: UseFormReturn<T>;
|
|
1215
|
+
placeholder?: string;
|
|
1216
|
+
api?: string;
|
|
1217
|
+
filter?: string[];
|
|
1218
|
+
showBalance?: boolean;
|
|
1219
|
+
v?: number;
|
|
1220
|
+
required?: boolean;
|
|
1221
|
+
};
|
|
1222
|
+
declare function Branches$1<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, v, }: Props$1<T>): react_jsx_runtime.JSX.Element;
|
|
1223
|
+
|
|
1224
|
+
declare const AccountFields: {
|
|
1225
|
+
Account: typeof Account;
|
|
1226
|
+
Customer: typeof Customer;
|
|
1227
|
+
Employee: typeof Employee;
|
|
1228
|
+
Branches: typeof Branches$1;
|
|
1229
|
+
};
|
|
1230
|
+
|
|
1172
1231
|
declare const createAccountSchema: z$1.ZodObject<{
|
|
1173
1232
|
name: z$1.ZodString;
|
|
1174
1233
|
email: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodOptional<z$1.ZodString>, string | undefined, string | undefined>, string | undefined, string | undefined>;
|
|
1175
1234
|
phoneNumber: z$1.ZodOptional<z$1.ZodString>;
|
|
1176
1235
|
sex: z$1.ZodEnum<["male", "female"]>;
|
|
1236
|
+
branch: z$1.ZodOptional<z$1.ZodString>;
|
|
1177
1237
|
}, "strip", z$1.ZodTypeAny, {
|
|
1178
1238
|
name: string;
|
|
1179
1239
|
sex: "male" | "female";
|
|
1180
1240
|
email?: string | undefined;
|
|
1181
1241
|
phoneNumber?: string | undefined;
|
|
1242
|
+
branch?: string | undefined;
|
|
1182
1243
|
}, {
|
|
1183
1244
|
name: string;
|
|
1184
1245
|
sex: "male" | "female";
|
|
1185
1246
|
email?: string | undefined;
|
|
1186
1247
|
phoneNumber?: string | undefined;
|
|
1248
|
+
branch?: string | undefined;
|
|
1187
1249
|
}>;
|
|
1188
1250
|
type CreateAccountSchemaType = z$1.infer<typeof createAccountSchema>;
|
|
1189
1251
|
|
|
@@ -1282,6 +1344,83 @@ type updateUserEmailSchemaType = z$1.infer<typeof updateUserEmailSchema>;
|
|
|
1282
1344
|
type resetPasswordSchemaType = z$1.infer<typeof resetPasswordSchema>;
|
|
1283
1345
|
type createUserSchemaType = z$1.infer<typeof createUserSchema>;
|
|
1284
1346
|
|
|
1347
|
+
declare function Wallets({ v, url }: {
|
|
1348
|
+
v?: 1 | 2;
|
|
1349
|
+
url?: string;
|
|
1350
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1351
|
+
|
|
1352
|
+
declare function WalletForm(): react_jsx_runtime.JSX.Element;
|
|
1353
|
+
|
|
1354
|
+
type WalletFieldProps<T extends FieldValues> = {
|
|
1355
|
+
name: Path<T>;
|
|
1356
|
+
label: string;
|
|
1357
|
+
form: UseFormReturn<T>;
|
|
1358
|
+
placeholder?: string;
|
|
1359
|
+
api: string;
|
|
1360
|
+
filter?: string[];
|
|
1361
|
+
showBalance?: boolean;
|
|
1362
|
+
v?: number;
|
|
1363
|
+
required?: boolean;
|
|
1364
|
+
};
|
|
1365
|
+
declare function Wallet<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, showBalance, required, }: WalletFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1366
|
+
|
|
1367
|
+
type Props<T extends FieldValues> = {
|
|
1368
|
+
name?: Path<T>;
|
|
1369
|
+
label?: string;
|
|
1370
|
+
form: UseFormReturn<T>;
|
|
1371
|
+
placeholder?: string;
|
|
1372
|
+
api?: string;
|
|
1373
|
+
filter?: string[];
|
|
1374
|
+
showBalance?: boolean;
|
|
1375
|
+
v?: number;
|
|
1376
|
+
required?: boolean;
|
|
1377
|
+
};
|
|
1378
|
+
declare function Branches<T extends FieldValues>({ name, label, placeholder, api, form, filter, showBalance, required, v, }: Props<T>): react_jsx_runtime.JSX.Element;
|
|
1379
|
+
|
|
1380
|
+
declare const WalletField: {
|
|
1381
|
+
Wallet: typeof Wallet;
|
|
1382
|
+
Branches: typeof Branches;
|
|
1383
|
+
};
|
|
1384
|
+
|
|
1385
|
+
declare const createWalletSchema: z$1.ZodObject<{
|
|
1386
|
+
name: z$1.ZodString;
|
|
1387
|
+
type: z$1.ZodEnum<["bank", "cash", "mobile"]>;
|
|
1388
|
+
currency: z$1.ZodEnum<["USD", "TZS", "KES", "CNY"]>;
|
|
1389
|
+
accountNo: z$1.ZodOptional<z$1.ZodString>;
|
|
1390
|
+
branch: z$1.ZodOptional<z$1.ZodString>;
|
|
1391
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
1392
|
+
name: string;
|
|
1393
|
+
type: "mobile" | "bank" | "cash";
|
|
1394
|
+
currency: "USD" | "TZS" | "KES" | "CNY";
|
|
1395
|
+
branch?: string | undefined;
|
|
1396
|
+
accountNo?: string | undefined;
|
|
1397
|
+
}, {
|
|
1398
|
+
name: string;
|
|
1399
|
+
type: "mobile" | "bank" | "cash";
|
|
1400
|
+
currency: "USD" | "TZS" | "KES" | "CNY";
|
|
1401
|
+
branch?: string | undefined;
|
|
1402
|
+
accountNo?: string | undefined;
|
|
1403
|
+
}>;
|
|
1404
|
+
type CreateWalletSchemaType = z$1.infer<typeof createWalletSchema>;
|
|
1405
|
+
|
|
1285
1406
|
declare function Breadcrumbs(): react_jsx_runtime.JSX.Element;
|
|
1286
1407
|
|
|
1287
|
-
|
|
1408
|
+
interface ErrorPageProps {
|
|
1409
|
+
title?: string;
|
|
1410
|
+
message?: string;
|
|
1411
|
+
statusCode?: number;
|
|
1412
|
+
action?: {
|
|
1413
|
+
label: string;
|
|
1414
|
+
onClick: () => void;
|
|
1415
|
+
};
|
|
1416
|
+
className?: string;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
declare const ErrorPage: (({ title, message, statusCode, action, className, }: ErrorPageProps) => react_jsx_runtime.JSX.Element) & {
|
|
1420
|
+
500: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1421
|
+
404: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1422
|
+
401: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1423
|
+
400: (props: ErrorPageProps) => react_jsx_runtime.JSX.Element;
|
|
1424
|
+
};
|
|
1425
|
+
|
|
1426
|
+
export { AccountFields, AccountForm, type AccountType, Accounts, AdminProtectedRoute, Badge, type BadgeProps, type BranchesContext, Branding, type BrandingProps, Breadcrumbs, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryCard, type CategoryItem, ClassicSpin, CodeBlock, ConfirmModal, type ConfirmModalProps, type CreateAccountSchemaType, type CreateWalletSchemaType, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, 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, PageA4, PageHeader, type PdfOptions, PhoneInput, type PhoneInputProps, type PostFunction, PostTable, type PostTableActions, type PostTableChangeParams, 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, createUserSchema, type createUserSchemaType, createWalletSchema, generatePdf, linkUserSchema, type linkUserSchemaType, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType };
|