warqadui 0.0.108 → 0.0.110
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 +55 -12
- package/dist/index.d.ts +55 -12
- package/dist/index.js +47116 -19333
- package/dist/index.mjs +48151 -19411
- package/dist/styles.js +53 -0
- package/dist/styles.mjs +53 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -384,7 +384,10 @@ declare const Enums: {
|
|
|
384
384
|
viaTypes: readonly ["direct", "via account"];
|
|
385
385
|
actionTypes: readonly ["credit", "debit"];
|
|
386
386
|
transactionTypes: readonly ["journal", "payment", "money transfer", "expense", "adjustment", "forex transfer", "stock", "forex dubai to china"];
|
|
387
|
-
stockTypes: readonly ["pack", "product"
|
|
387
|
+
stockTypes: readonly ["pack", "product"];
|
|
388
|
+
saleStockTypes: readonly ["pack", "product"];
|
|
389
|
+
sale: readonly ["cash", "credit"];
|
|
390
|
+
stockTransferTypes: readonly ["pack", "product", "pack to product"];
|
|
388
391
|
};
|
|
389
392
|
|
|
390
393
|
interface ThemeConfig {
|
|
@@ -401,6 +404,9 @@ interface StoreConfig {
|
|
|
401
404
|
type apiConfig = {
|
|
402
405
|
accountStatementApi?: string;
|
|
403
406
|
walletReportApi?: string;
|
|
407
|
+
stockLevelReportApi?: string;
|
|
408
|
+
itemStockLevelReportApi?: string;
|
|
409
|
+
profitAndLossReportApi?: string;
|
|
404
410
|
};
|
|
405
411
|
type EnumsConfig = {
|
|
406
412
|
[K in keyof typeof Enums]: string[] | readonly string[];
|
|
@@ -1364,6 +1370,7 @@ declare const useApp: () => {
|
|
|
1364
1370
|
[k: string]: string;
|
|
1365
1371
|
} | null;
|
|
1366
1372
|
getParams: (key?: string) => string | Readonly<react_router.Params<string>> | undefined;
|
|
1373
|
+
setQuery: (params: Record<string, string>) => void;
|
|
1367
1374
|
branchId: string | undefined;
|
|
1368
1375
|
};
|
|
1369
1376
|
|
|
@@ -1564,8 +1571,9 @@ type ProductFieldProps<T extends FieldValues> = {
|
|
|
1564
1571
|
disabled?: boolean;
|
|
1565
1572
|
onChange?: (val: any, opt?: any) => void;
|
|
1566
1573
|
obj?: Path<T>;
|
|
1574
|
+
className?: string;
|
|
1567
1575
|
};
|
|
1568
|
-
declare function Product<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, required, disabled, onChange, obj, }: ProductFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1576
|
+
declare function Product<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, required, disabled, onChange, obj, className, }: ProductFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1569
1577
|
|
|
1570
1578
|
declare const ProductField: {
|
|
1571
1579
|
Product: typeof Product;
|
|
@@ -1606,8 +1614,11 @@ type PackFieldProps<T extends FieldValues> = {
|
|
|
1606
1614
|
v?: number;
|
|
1607
1615
|
required?: boolean;
|
|
1608
1616
|
disabled?: boolean;
|
|
1617
|
+
onChange?: (val: any, opt?: any) => void;
|
|
1618
|
+
obj?: Path<T>;
|
|
1619
|
+
className?: string;
|
|
1609
1620
|
};
|
|
1610
|
-
declare function Pack<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, required, disabled, }: PackFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1621
|
+
declare function Pack<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, required, disabled, onChange, obj, className, }: PackFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1611
1622
|
declare const _default: {
|
|
1612
1623
|
Pack: typeof Pack;
|
|
1613
1624
|
};
|
|
@@ -1621,14 +1632,14 @@ declare const packProductItemSchema: z$1.ZodObject<{
|
|
|
1621
1632
|
}, "strip", z$1.ZodTypeAny, {
|
|
1622
1633
|
product: string;
|
|
1623
1634
|
index: number;
|
|
1624
|
-
cost: number;
|
|
1625
1635
|
quantity: number;
|
|
1636
|
+
cost: number;
|
|
1626
1637
|
productData?: any;
|
|
1627
1638
|
}, {
|
|
1628
1639
|
product: string;
|
|
1629
1640
|
index: number;
|
|
1630
|
-
cost: number;
|
|
1631
1641
|
quantity: number;
|
|
1642
|
+
cost: number;
|
|
1632
1643
|
productData?: any;
|
|
1633
1644
|
}>;
|
|
1634
1645
|
declare const packTypes: z$1.ZodEnum<["pressure", "bag", "boxes"]>;
|
|
@@ -1644,14 +1655,14 @@ declare const createPackSchema: z$1.ZodObject<{
|
|
|
1644
1655
|
}, "strip", z$1.ZodTypeAny, {
|
|
1645
1656
|
product: string;
|
|
1646
1657
|
index: number;
|
|
1647
|
-
cost: number;
|
|
1648
1658
|
quantity: number;
|
|
1659
|
+
cost: number;
|
|
1649
1660
|
productData?: any;
|
|
1650
1661
|
}, {
|
|
1651
1662
|
product: string;
|
|
1652
1663
|
index: number;
|
|
1653
|
-
cost: number;
|
|
1654
1664
|
quantity: number;
|
|
1665
|
+
cost: number;
|
|
1655
1666
|
productData?: any;
|
|
1656
1667
|
}>, "many">;
|
|
1657
1668
|
tempProduct: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1664,8 +1675,8 @@ declare const createPackSchema: z$1.ZodObject<{
|
|
|
1664
1675
|
products: {
|
|
1665
1676
|
product: string;
|
|
1666
1677
|
index: number;
|
|
1667
|
-
cost: number;
|
|
1668
1678
|
quantity: number;
|
|
1679
|
+
cost: number;
|
|
1669
1680
|
productData?: any;
|
|
1670
1681
|
}[];
|
|
1671
1682
|
tempProduct?: string | undefined;
|
|
@@ -1678,8 +1689,8 @@ declare const createPackSchema: z$1.ZodObject<{
|
|
|
1678
1689
|
products: {
|
|
1679
1690
|
product: string;
|
|
1680
1691
|
index: number;
|
|
1681
|
-
cost: number;
|
|
1682
1692
|
quantity: number;
|
|
1693
|
+
cost: number;
|
|
1683
1694
|
productData?: any;
|
|
1684
1695
|
}[];
|
|
1685
1696
|
tempProduct?: string | undefined;
|
|
@@ -1981,15 +1992,36 @@ declare const forexTransferSchema: z$1.ZodObject<{
|
|
|
1981
1992
|
}>;
|
|
1982
1993
|
type ForexTransferSchemaType = z$1.infer<typeof forexTransferSchema>;
|
|
1983
1994
|
|
|
1984
|
-
declare function ClothendStockAdjustment({ url }: {
|
|
1995
|
+
declare function ClothendStockAdjustment({ url, type, }: {
|
|
1985
1996
|
url?: string;
|
|
1997
|
+
type?: string;
|
|
1986
1998
|
}): react_jsx_runtime.JSX.Element;
|
|
1987
1999
|
|
|
1988
|
-
type StockType = (typeof Enums.stockTypes)[number];
|
|
2000
|
+
type StockType$1 = (typeof Enums.stockTypes)[number];
|
|
1989
2001
|
declare const PosStockAdjustment: ({ type }: {
|
|
2002
|
+
type: StockType$1;
|
|
2003
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2004
|
+
|
|
2005
|
+
declare function SaleStockAdjustment({ url, type, }: {
|
|
2006
|
+
url?: string;
|
|
2007
|
+
type?: string;
|
|
2008
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2009
|
+
|
|
2010
|
+
type StockType = (typeof Enums.saleStockTypes)[number];
|
|
2011
|
+
declare const SaleStockForm: ({ type }: {
|
|
1990
2012
|
type: StockType;
|
|
1991
2013
|
}) => react_jsx_runtime.JSX.Element;
|
|
1992
2014
|
|
|
2015
|
+
type TransferStockType = (typeof Enums.stockTransferTypes)[number];
|
|
2016
|
+
declare function ClothendStockTransfer({ url, type, }: {
|
|
2017
|
+
url?: string;
|
|
2018
|
+
type?: TransferStockType;
|
|
2019
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2020
|
+
|
|
2021
|
+
declare const PosStockTransfer: ({ type }: {
|
|
2022
|
+
type: TransferStockType;
|
|
2023
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2024
|
+
|
|
1993
2025
|
declare function ForexDubaiToChina(): react_jsx_runtime.JSX.Element;
|
|
1994
2026
|
|
|
1995
2027
|
declare function ForexDubaiToChinaForm(): react_jsx_runtime.JSX.Element;
|
|
@@ -2036,4 +2068,15 @@ declare const forexDubaiToChinaSchema: z$1.ZodObject<{
|
|
|
2036
2068
|
}>;
|
|
2037
2069
|
type ForexDubaiToChinaSchemaType = z$1.infer<typeof forexDubaiToChinaSchema>;
|
|
2038
2070
|
|
|
2039
|
-
|
|
2071
|
+
declare const StockLevel: ({ value }: {
|
|
2072
|
+
value: boolean;
|
|
2073
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2074
|
+
|
|
2075
|
+
declare const ItemReport: ({ value, type, }: {
|
|
2076
|
+
value: boolean;
|
|
2077
|
+
type: "pack" | "product";
|
|
2078
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2079
|
+
|
|
2080
|
+
declare const ProfitAndLossReport: () => react_jsx_runtime.JSX.Element;
|
|
2081
|
+
|
|
2082
|
+
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, ForexDubaiToChina, ForexDubaiToChinaForm, type ForexDubaiToChinaSchemaType, ForexTransferForm, type ForexTransferSchemaType, ForexTransfers, Guard, InfoGrid, Input, type InputProps, ItemReport, 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, 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, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType, walletAdjustmentSchema };
|
package/dist/index.d.ts
CHANGED
|
@@ -384,7 +384,10 @@ declare const Enums: {
|
|
|
384
384
|
viaTypes: readonly ["direct", "via account"];
|
|
385
385
|
actionTypes: readonly ["credit", "debit"];
|
|
386
386
|
transactionTypes: readonly ["journal", "payment", "money transfer", "expense", "adjustment", "forex transfer", "stock", "forex dubai to china"];
|
|
387
|
-
stockTypes: readonly ["pack", "product"
|
|
387
|
+
stockTypes: readonly ["pack", "product"];
|
|
388
|
+
saleStockTypes: readonly ["pack", "product"];
|
|
389
|
+
sale: readonly ["cash", "credit"];
|
|
390
|
+
stockTransferTypes: readonly ["pack", "product", "pack to product"];
|
|
388
391
|
};
|
|
389
392
|
|
|
390
393
|
interface ThemeConfig {
|
|
@@ -401,6 +404,9 @@ interface StoreConfig {
|
|
|
401
404
|
type apiConfig = {
|
|
402
405
|
accountStatementApi?: string;
|
|
403
406
|
walletReportApi?: string;
|
|
407
|
+
stockLevelReportApi?: string;
|
|
408
|
+
itemStockLevelReportApi?: string;
|
|
409
|
+
profitAndLossReportApi?: string;
|
|
404
410
|
};
|
|
405
411
|
type EnumsConfig = {
|
|
406
412
|
[K in keyof typeof Enums]: string[] | readonly string[];
|
|
@@ -1364,6 +1370,7 @@ declare const useApp: () => {
|
|
|
1364
1370
|
[k: string]: string;
|
|
1365
1371
|
} | null;
|
|
1366
1372
|
getParams: (key?: string) => string | Readonly<react_router.Params<string>> | undefined;
|
|
1373
|
+
setQuery: (params: Record<string, string>) => void;
|
|
1367
1374
|
branchId: string | undefined;
|
|
1368
1375
|
};
|
|
1369
1376
|
|
|
@@ -1564,8 +1571,9 @@ type ProductFieldProps<T extends FieldValues> = {
|
|
|
1564
1571
|
disabled?: boolean;
|
|
1565
1572
|
onChange?: (val: any, opt?: any) => void;
|
|
1566
1573
|
obj?: Path<T>;
|
|
1574
|
+
className?: string;
|
|
1567
1575
|
};
|
|
1568
|
-
declare function Product<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, required, disabled, onChange, obj, }: ProductFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1576
|
+
declare function Product<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, required, disabled, onChange, obj, className, }: ProductFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1569
1577
|
|
|
1570
1578
|
declare const ProductField: {
|
|
1571
1579
|
Product: typeof Product;
|
|
@@ -1606,8 +1614,11 @@ type PackFieldProps<T extends FieldValues> = {
|
|
|
1606
1614
|
v?: number;
|
|
1607
1615
|
required?: boolean;
|
|
1608
1616
|
disabled?: boolean;
|
|
1617
|
+
onChange?: (val: any, opt?: any) => void;
|
|
1618
|
+
obj?: Path<T>;
|
|
1619
|
+
className?: string;
|
|
1609
1620
|
};
|
|
1610
|
-
declare function Pack<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, required, disabled, }: PackFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1621
|
+
declare function Pack<T extends FieldValues>({ name, label, placeholder, api, form, filter, v, required, disabled, onChange, obj, className, }: PackFieldProps<T>): react_jsx_runtime.JSX.Element;
|
|
1611
1622
|
declare const _default: {
|
|
1612
1623
|
Pack: typeof Pack;
|
|
1613
1624
|
};
|
|
@@ -1621,14 +1632,14 @@ declare const packProductItemSchema: z$1.ZodObject<{
|
|
|
1621
1632
|
}, "strip", z$1.ZodTypeAny, {
|
|
1622
1633
|
product: string;
|
|
1623
1634
|
index: number;
|
|
1624
|
-
cost: number;
|
|
1625
1635
|
quantity: number;
|
|
1636
|
+
cost: number;
|
|
1626
1637
|
productData?: any;
|
|
1627
1638
|
}, {
|
|
1628
1639
|
product: string;
|
|
1629
1640
|
index: number;
|
|
1630
|
-
cost: number;
|
|
1631
1641
|
quantity: number;
|
|
1642
|
+
cost: number;
|
|
1632
1643
|
productData?: any;
|
|
1633
1644
|
}>;
|
|
1634
1645
|
declare const packTypes: z$1.ZodEnum<["pressure", "bag", "boxes"]>;
|
|
@@ -1644,14 +1655,14 @@ declare const createPackSchema: z$1.ZodObject<{
|
|
|
1644
1655
|
}, "strip", z$1.ZodTypeAny, {
|
|
1645
1656
|
product: string;
|
|
1646
1657
|
index: number;
|
|
1647
|
-
cost: number;
|
|
1648
1658
|
quantity: number;
|
|
1659
|
+
cost: number;
|
|
1649
1660
|
productData?: any;
|
|
1650
1661
|
}, {
|
|
1651
1662
|
product: string;
|
|
1652
1663
|
index: number;
|
|
1653
|
-
cost: number;
|
|
1654
1664
|
quantity: number;
|
|
1665
|
+
cost: number;
|
|
1655
1666
|
productData?: any;
|
|
1656
1667
|
}>, "many">;
|
|
1657
1668
|
tempProduct: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1664,8 +1675,8 @@ declare const createPackSchema: z$1.ZodObject<{
|
|
|
1664
1675
|
products: {
|
|
1665
1676
|
product: string;
|
|
1666
1677
|
index: number;
|
|
1667
|
-
cost: number;
|
|
1668
1678
|
quantity: number;
|
|
1679
|
+
cost: number;
|
|
1669
1680
|
productData?: any;
|
|
1670
1681
|
}[];
|
|
1671
1682
|
tempProduct?: string | undefined;
|
|
@@ -1678,8 +1689,8 @@ declare const createPackSchema: z$1.ZodObject<{
|
|
|
1678
1689
|
products: {
|
|
1679
1690
|
product: string;
|
|
1680
1691
|
index: number;
|
|
1681
|
-
cost: number;
|
|
1682
1692
|
quantity: number;
|
|
1693
|
+
cost: number;
|
|
1683
1694
|
productData?: any;
|
|
1684
1695
|
}[];
|
|
1685
1696
|
tempProduct?: string | undefined;
|
|
@@ -1981,15 +1992,36 @@ declare const forexTransferSchema: z$1.ZodObject<{
|
|
|
1981
1992
|
}>;
|
|
1982
1993
|
type ForexTransferSchemaType = z$1.infer<typeof forexTransferSchema>;
|
|
1983
1994
|
|
|
1984
|
-
declare function ClothendStockAdjustment({ url }: {
|
|
1995
|
+
declare function ClothendStockAdjustment({ url, type, }: {
|
|
1985
1996
|
url?: string;
|
|
1997
|
+
type?: string;
|
|
1986
1998
|
}): react_jsx_runtime.JSX.Element;
|
|
1987
1999
|
|
|
1988
|
-
type StockType = (typeof Enums.stockTypes)[number];
|
|
2000
|
+
type StockType$1 = (typeof Enums.stockTypes)[number];
|
|
1989
2001
|
declare const PosStockAdjustment: ({ type }: {
|
|
2002
|
+
type: StockType$1;
|
|
2003
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2004
|
+
|
|
2005
|
+
declare function SaleStockAdjustment({ url, type, }: {
|
|
2006
|
+
url?: string;
|
|
2007
|
+
type?: string;
|
|
2008
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2009
|
+
|
|
2010
|
+
type StockType = (typeof Enums.saleStockTypes)[number];
|
|
2011
|
+
declare const SaleStockForm: ({ type }: {
|
|
1990
2012
|
type: StockType;
|
|
1991
2013
|
}) => react_jsx_runtime.JSX.Element;
|
|
1992
2014
|
|
|
2015
|
+
type TransferStockType = (typeof Enums.stockTransferTypes)[number];
|
|
2016
|
+
declare function ClothendStockTransfer({ url, type, }: {
|
|
2017
|
+
url?: string;
|
|
2018
|
+
type?: TransferStockType;
|
|
2019
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2020
|
+
|
|
2021
|
+
declare const PosStockTransfer: ({ type }: {
|
|
2022
|
+
type: TransferStockType;
|
|
2023
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2024
|
+
|
|
1993
2025
|
declare function ForexDubaiToChina(): react_jsx_runtime.JSX.Element;
|
|
1994
2026
|
|
|
1995
2027
|
declare function ForexDubaiToChinaForm(): react_jsx_runtime.JSX.Element;
|
|
@@ -2036,4 +2068,15 @@ declare const forexDubaiToChinaSchema: z$1.ZodObject<{
|
|
|
2036
2068
|
}>;
|
|
2037
2069
|
type ForexDubaiToChinaSchemaType = z$1.infer<typeof forexDubaiToChinaSchema>;
|
|
2038
2070
|
|
|
2039
|
-
|
|
2071
|
+
declare const StockLevel: ({ value }: {
|
|
2072
|
+
value: boolean;
|
|
2073
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2074
|
+
|
|
2075
|
+
declare const ItemReport: ({ value, type, }: {
|
|
2076
|
+
value: boolean;
|
|
2077
|
+
type: "pack" | "product";
|
|
2078
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2079
|
+
|
|
2080
|
+
declare const ProfitAndLossReport: () => react_jsx_runtime.JSX.Element;
|
|
2081
|
+
|
|
2082
|
+
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, ForexDubaiToChina, ForexDubaiToChinaForm, type ForexDubaiToChinaSchemaType, ForexTransferForm, type ForexTransferSchemaType, ForexTransfers, Guard, InfoGrid, Input, type InputProps, ItemReport, 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, 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, useA4CategoryView, useA4StatementView, useAntdImageUpload, useApi, useApp, useAuth, useAuthStore, useLogin, useModal, useSearchApiContext, useSelectContext, useTheme, useTransaction, useWarqadConfig, verifyUserEmailSchema, type verifyUserEmailSchemaType, walletAdjustmentSchema };
|