warqadui 0.0.64 → 0.0.66

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
@@ -5,6 +5,7 @@ import * as react_hook_form from 'react-hook-form';
5
5
  import { FieldValues, Path, UseFormReturn } from 'react-hook-form';
6
6
  import { ColumnDef, SortingState, ColumnFiltersState, RowData } from '@tanstack/react-table';
7
7
  import * as z from 'zod';
8
+ import { z as z$1 } from 'zod';
8
9
  import * as react_to_print from 'react-to-print';
9
10
  import { UploadFile } from 'antd';
10
11
  import * as zustand from 'zustand';
@@ -184,6 +185,73 @@ interface ModalProps {
184
185
  }
185
186
  declare const Modal: React__default.FC<ModalProps>;
186
187
 
188
+ interface ConfirmModalProps {
189
+ /**
190
+ * The trigger component that will open the modal when clicked.
191
+ */
192
+ children: React__default.ReactNode;
193
+ /**
194
+ * Title shown at the top of the modal.
195
+ */
196
+ title: string;
197
+ /**
198
+ * Detailed message describing the action being confirmed.
199
+ */
200
+ description: string;
201
+ /**
202
+ * The word the user must type to enable the confirm button.
203
+ * @default "delete"
204
+ */
205
+ confirmationWord?: string;
206
+ /**
207
+ * Callback fired when the cancel button is clicked or the modal is closed.
208
+ */
209
+ onCancel?: () => void | Promise<void>;
210
+ /**
211
+ * Async function called when the user confirms.
212
+ * If it resolves, the modal closes automatically (unless it explicitly returns false).
213
+ * If it rejects, the modal stays open.
214
+ */
215
+ onSubmit: () => Promise<void | boolean>;
216
+ /**
217
+ * Label for the confirm button.
218
+ * @default "Confirm"
219
+ */
220
+ confirmButtonText?: string;
221
+ /**
222
+ * Label for the cancel button.
223
+ * @default "Cancel"
224
+ */
225
+ cancelButtonText?: string;
226
+ /**
227
+ * Visual variant of the confirm button.
228
+ * @default "danger"
229
+ */
230
+ variant?: "danger" | "primary" | "warning";
231
+ /**
232
+ * Width of the modal in pixels.
233
+ * @default 500
234
+ */
235
+ width?: number;
236
+ /**
237
+ * Optional controlled open state.
238
+ */
239
+ isOpen?: boolean;
240
+ /**
241
+ * Optional controlled close handler.
242
+ */
243
+ onClose?: () => void;
244
+ /**
245
+ * Optional loading state.
246
+ */
247
+ isLoading?: boolean;
248
+ }
249
+ /**
250
+ * A reusable confirmation modal component that wraps any element and triggers
251
+ * a confirmation dialog with a required word input (e.g. for destructive actions).
252
+ */
253
+ declare const ConfirmModal: React__default.FC<ConfirmModalProps>;
254
+
187
255
  interface PageHeaderProps {
188
256
  title: string;
189
257
  description?: string;
@@ -610,10 +678,11 @@ declare const useLogin: (props: UseLoginProps) => {
610
678
  };
611
679
 
612
680
  interface DropdownItem {
613
- label: string;
681
+ label: React__default.ReactNode;
614
682
  icon?: React__default.ReactNode;
615
683
  onClick?: () => void | Promise<void>;
616
684
  disabled?: boolean;
685
+ loading?: boolean;
617
686
  className?: string;
618
687
  variant?: "default" | "danger";
619
688
  }
@@ -775,7 +844,7 @@ declare const useTransaction: ({ url, v, delay, params, dateFilter, }: {
775
844
  data: any;
776
845
  isLoading: boolean;
777
846
  get: FetchFunction;
778
- reload: () => void;
847
+ reload: () => Promise<any>;
779
848
  error: string | null;
780
849
  date: String | null | undefined;
781
850
  };
@@ -1041,4 +1110,97 @@ declare const useAuth: () => {
1041
1110
  can: (key: string) => boolean;
1042
1111
  };
1043
1112
 
1044
- export { type AccountType, AdminProtectedRoute, Badge, type BadgeProps, Branding, type BrandingProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryCard, type CategoryItem, ClassicSpin, CodeBlock, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, type FetchFunction, type FetchProps, Fields, Guard, InfoGrid, Input, type InputProps, 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, ProfileView, type ProfileViewInfoItem, type ProfileViewProps, ProtectedRoute, type PutFunction, 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, Views, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, generatePdf, storage, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig };
1113
+ declare function Accounts({ v, url }: {
1114
+ v?: 1 | 2;
1115
+ url?: string;
1116
+ }): react_jsx_runtime.JSX.Element;
1117
+
1118
+ declare function AccountForm(): react_jsx_runtime.JSX.Element;
1119
+
1120
+ declare const createAccountSchema: z$1.ZodObject<{
1121
+ name: z$1.ZodString;
1122
+ email: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodOptional<z$1.ZodString>, string | undefined, string | undefined>, string | undefined, string | undefined>;
1123
+ phoneNumber: z$1.ZodOptional<z$1.ZodString>;
1124
+ sex: z$1.ZodEnum<["male", "female"]>;
1125
+ }, "strip", z$1.ZodTypeAny, {
1126
+ name: string;
1127
+ sex: "male" | "female";
1128
+ email?: string | undefined;
1129
+ phoneNumber?: string | undefined;
1130
+ }, {
1131
+ name: string;
1132
+ sex: "male" | "female";
1133
+ email?: string | undefined;
1134
+ phoneNumber?: string | undefined;
1135
+ }>;
1136
+ type CreateAccountSchemaType = z$1.infer<typeof createAccountSchema>;
1137
+
1138
+ declare function LinkUser({ type: initialType }: {
1139
+ type?: string;
1140
+ }): react_jsx_runtime.JSX.Element;
1141
+
1142
+ declare function Users(): react_jsx_runtime.JSX.Element;
1143
+
1144
+ declare function ResetPasswordPage(): react_jsx_runtime.JSX.Element;
1145
+
1146
+ interface UserProfileProps {
1147
+ items?: DropdownItem[];
1148
+ name?: string;
1149
+ role?: string;
1150
+ image?: string;
1151
+ onLogout?: () => void;
1152
+ showThemeToggle?: boolean;
1153
+ }
1154
+ declare const UserProfile: React__default.FC<UserProfileProps>;
1155
+
1156
+ declare const ProfilePage: () => react_jsx_runtime.JSX.Element;
1157
+
1158
+ declare const linkUserSchema: z$1.ZodObject<{
1159
+ email: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodString, string, string>, string, string>;
1160
+ name: z$1.ZodString;
1161
+ }, "strip", z$1.ZodTypeAny, {
1162
+ name: string;
1163
+ email: string;
1164
+ }, {
1165
+ name: string;
1166
+ email: string;
1167
+ }>;
1168
+ declare const verifyUserEmailSchema: z$1.ZodObject<{
1169
+ email: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodString, string, string>, string, string>;
1170
+ token: z$1.ZodString;
1171
+ }, "strip", z$1.ZodTypeAny, {
1172
+ email: string;
1173
+ token: string;
1174
+ }, {
1175
+ email: string;
1176
+ token: string;
1177
+ }>;
1178
+ declare const updateUserEmailSchema: z$1.ZodObject<{
1179
+ currentEmail: z$1.ZodOptional<z$1.ZodString>;
1180
+ newEmail: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodString, string, string>, string, string>;
1181
+ }, "strip", z$1.ZodTypeAny, {
1182
+ newEmail: string;
1183
+ currentEmail?: string | undefined;
1184
+ }, {
1185
+ newEmail: string;
1186
+ currentEmail?: string | undefined;
1187
+ }>;
1188
+ declare const resetPasswordSchema: z$1.ZodObject<{
1189
+ email: z$1.ZodOptional<z$1.ZodString>;
1190
+ token: z$1.ZodString;
1191
+ password: z$1.ZodString;
1192
+ }, "strip", z$1.ZodTypeAny, {
1193
+ password: string;
1194
+ token: string;
1195
+ email?: string | undefined;
1196
+ }, {
1197
+ password: string;
1198
+ token: string;
1199
+ email?: string | undefined;
1200
+ }>;
1201
+ type linkUserSchemaType = z$1.infer<typeof linkUserSchema>;
1202
+ type verifyUserEmailSchemaType = z$1.infer<typeof verifyUserEmailSchema>;
1203
+ type updateUserEmailSchemaType = z$1.infer<typeof updateUserEmailSchema>;
1204
+ type resetPasswordSchemaType = z$1.infer<typeof resetPasswordSchema>;
1205
+
1206
+ export { AccountForm, type AccountType, Accounts, AdminProtectedRoute, Badge, type BadgeProps, Branding, type BrandingProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryCard, type CategoryItem, ClassicSpin, CodeBlock, ConfirmModal, type ConfirmModalProps, type CreateAccountSchemaType, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, 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, UserProfile, Users, Views, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, createAccountSchema, generatePdf, linkUserSchema, type linkUserSchemaType, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType };
package/dist/index.d.ts CHANGED
@@ -5,6 +5,7 @@ import * as react_hook_form from 'react-hook-form';
5
5
  import { FieldValues, Path, UseFormReturn } from 'react-hook-form';
6
6
  import { ColumnDef, SortingState, ColumnFiltersState, RowData } from '@tanstack/react-table';
7
7
  import * as z from 'zod';
8
+ import { z as z$1 } from 'zod';
8
9
  import * as react_to_print from 'react-to-print';
9
10
  import { UploadFile } from 'antd';
10
11
  import * as zustand from 'zustand';
@@ -184,6 +185,73 @@ interface ModalProps {
184
185
  }
185
186
  declare const Modal: React__default.FC<ModalProps>;
186
187
 
188
+ interface ConfirmModalProps {
189
+ /**
190
+ * The trigger component that will open the modal when clicked.
191
+ */
192
+ children: React__default.ReactNode;
193
+ /**
194
+ * Title shown at the top of the modal.
195
+ */
196
+ title: string;
197
+ /**
198
+ * Detailed message describing the action being confirmed.
199
+ */
200
+ description: string;
201
+ /**
202
+ * The word the user must type to enable the confirm button.
203
+ * @default "delete"
204
+ */
205
+ confirmationWord?: string;
206
+ /**
207
+ * Callback fired when the cancel button is clicked or the modal is closed.
208
+ */
209
+ onCancel?: () => void | Promise<void>;
210
+ /**
211
+ * Async function called when the user confirms.
212
+ * If it resolves, the modal closes automatically (unless it explicitly returns false).
213
+ * If it rejects, the modal stays open.
214
+ */
215
+ onSubmit: () => Promise<void | boolean>;
216
+ /**
217
+ * Label for the confirm button.
218
+ * @default "Confirm"
219
+ */
220
+ confirmButtonText?: string;
221
+ /**
222
+ * Label for the cancel button.
223
+ * @default "Cancel"
224
+ */
225
+ cancelButtonText?: string;
226
+ /**
227
+ * Visual variant of the confirm button.
228
+ * @default "danger"
229
+ */
230
+ variant?: "danger" | "primary" | "warning";
231
+ /**
232
+ * Width of the modal in pixels.
233
+ * @default 500
234
+ */
235
+ width?: number;
236
+ /**
237
+ * Optional controlled open state.
238
+ */
239
+ isOpen?: boolean;
240
+ /**
241
+ * Optional controlled close handler.
242
+ */
243
+ onClose?: () => void;
244
+ /**
245
+ * Optional loading state.
246
+ */
247
+ isLoading?: boolean;
248
+ }
249
+ /**
250
+ * A reusable confirmation modal component that wraps any element and triggers
251
+ * a confirmation dialog with a required word input (e.g. for destructive actions).
252
+ */
253
+ declare const ConfirmModal: React__default.FC<ConfirmModalProps>;
254
+
187
255
  interface PageHeaderProps {
188
256
  title: string;
189
257
  description?: string;
@@ -610,10 +678,11 @@ declare const useLogin: (props: UseLoginProps) => {
610
678
  };
611
679
 
612
680
  interface DropdownItem {
613
- label: string;
681
+ label: React__default.ReactNode;
614
682
  icon?: React__default.ReactNode;
615
683
  onClick?: () => void | Promise<void>;
616
684
  disabled?: boolean;
685
+ loading?: boolean;
617
686
  className?: string;
618
687
  variant?: "default" | "danger";
619
688
  }
@@ -775,7 +844,7 @@ declare const useTransaction: ({ url, v, delay, params, dateFilter, }: {
775
844
  data: any;
776
845
  isLoading: boolean;
777
846
  get: FetchFunction;
778
- reload: () => void;
847
+ reload: () => Promise<any>;
779
848
  error: string | null;
780
849
  date: String | null | undefined;
781
850
  };
@@ -1041,4 +1110,97 @@ declare const useAuth: () => {
1041
1110
  can: (key: string) => boolean;
1042
1111
  };
1043
1112
 
1044
- export { type AccountType, AdminProtectedRoute, Badge, type BadgeProps, Branding, type BrandingProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryCard, type CategoryItem, ClassicSpin, CodeBlock, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, type FetchFunction, type FetchProps, Fields, Guard, InfoGrid, Input, type InputProps, 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, ProfileView, type ProfileViewInfoItem, type ProfileViewProps, ProtectedRoute, type PutFunction, 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, Views, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, generatePdf, storage, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig };
1113
+ declare function Accounts({ v, url }: {
1114
+ v?: 1 | 2;
1115
+ url?: string;
1116
+ }): react_jsx_runtime.JSX.Element;
1117
+
1118
+ declare function AccountForm(): react_jsx_runtime.JSX.Element;
1119
+
1120
+ declare const createAccountSchema: z$1.ZodObject<{
1121
+ name: z$1.ZodString;
1122
+ email: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodOptional<z$1.ZodString>, string | undefined, string | undefined>, string | undefined, string | undefined>;
1123
+ phoneNumber: z$1.ZodOptional<z$1.ZodString>;
1124
+ sex: z$1.ZodEnum<["male", "female"]>;
1125
+ }, "strip", z$1.ZodTypeAny, {
1126
+ name: string;
1127
+ sex: "male" | "female";
1128
+ email?: string | undefined;
1129
+ phoneNumber?: string | undefined;
1130
+ }, {
1131
+ name: string;
1132
+ sex: "male" | "female";
1133
+ email?: string | undefined;
1134
+ phoneNumber?: string | undefined;
1135
+ }>;
1136
+ type CreateAccountSchemaType = z$1.infer<typeof createAccountSchema>;
1137
+
1138
+ declare function LinkUser({ type: initialType }: {
1139
+ type?: string;
1140
+ }): react_jsx_runtime.JSX.Element;
1141
+
1142
+ declare function Users(): react_jsx_runtime.JSX.Element;
1143
+
1144
+ declare function ResetPasswordPage(): react_jsx_runtime.JSX.Element;
1145
+
1146
+ interface UserProfileProps {
1147
+ items?: DropdownItem[];
1148
+ name?: string;
1149
+ role?: string;
1150
+ image?: string;
1151
+ onLogout?: () => void;
1152
+ showThemeToggle?: boolean;
1153
+ }
1154
+ declare const UserProfile: React__default.FC<UserProfileProps>;
1155
+
1156
+ declare const ProfilePage: () => react_jsx_runtime.JSX.Element;
1157
+
1158
+ declare const linkUserSchema: z$1.ZodObject<{
1159
+ email: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodString, string, string>, string, string>;
1160
+ name: z$1.ZodString;
1161
+ }, "strip", z$1.ZodTypeAny, {
1162
+ name: string;
1163
+ email: string;
1164
+ }, {
1165
+ name: string;
1166
+ email: string;
1167
+ }>;
1168
+ declare const verifyUserEmailSchema: z$1.ZodObject<{
1169
+ email: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodString, string, string>, string, string>;
1170
+ token: z$1.ZodString;
1171
+ }, "strip", z$1.ZodTypeAny, {
1172
+ email: string;
1173
+ token: string;
1174
+ }, {
1175
+ email: string;
1176
+ token: string;
1177
+ }>;
1178
+ declare const updateUserEmailSchema: z$1.ZodObject<{
1179
+ currentEmail: z$1.ZodOptional<z$1.ZodString>;
1180
+ newEmail: z$1.ZodEffects<z$1.ZodEffects<z$1.ZodString, string, string>, string, string>;
1181
+ }, "strip", z$1.ZodTypeAny, {
1182
+ newEmail: string;
1183
+ currentEmail?: string | undefined;
1184
+ }, {
1185
+ newEmail: string;
1186
+ currentEmail?: string | undefined;
1187
+ }>;
1188
+ declare const resetPasswordSchema: z$1.ZodObject<{
1189
+ email: z$1.ZodOptional<z$1.ZodString>;
1190
+ token: z$1.ZodString;
1191
+ password: z$1.ZodString;
1192
+ }, "strip", z$1.ZodTypeAny, {
1193
+ password: string;
1194
+ token: string;
1195
+ email?: string | undefined;
1196
+ }, {
1197
+ password: string;
1198
+ token: string;
1199
+ email?: string | undefined;
1200
+ }>;
1201
+ type linkUserSchemaType = z$1.infer<typeof linkUserSchema>;
1202
+ type verifyUserEmailSchemaType = z$1.infer<typeof verifyUserEmailSchema>;
1203
+ type updateUserEmailSchemaType = z$1.infer<typeof updateUserEmailSchema>;
1204
+ type resetPasswordSchemaType = z$1.infer<typeof resetPasswordSchema>;
1205
+
1206
+ export { AccountForm, type AccountType, Accounts, AdminProtectedRoute, Badge, type BadgeProps, Branding, type BrandingProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CategoryCard, type CategoryItem, ClassicSpin, CodeBlock, ConfirmModal, type ConfirmModalProps, type CreateAccountSchemaType, DashboardLayout, DataTable, type DataTableColumn, DateInput, type DateInputProps, type DeleteFunction, Dropdown, type DropdownItem, type DropdownProps, 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, UserProfile, Users, Views, type WarqadConfig, type WarqadConfigContextType, WarqadProvider, createAccountSchema, generatePdf, linkUserSchema, type linkUserSchemaType, resetPasswordSchema, type resetPasswordSchemaType, storage, updateUserEmailSchema, type updateUserEmailSchemaType, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType };