warqadui 0.0.288 → 0.0.290
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 +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +1054 -662
- package/dist/index.mjs +906 -506
- package/dist/styles.js +21 -0
- package/dist/styles.mjs +21 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -88,6 +88,7 @@ interface DashboardLayoutProps {
|
|
|
88
88
|
userProfile?: React__default.ReactNode;
|
|
89
89
|
fontFamily?: string;
|
|
90
90
|
sidebarFooter?: React__default.ReactNode;
|
|
91
|
+
posIcon?: React__default.ReactNode;
|
|
91
92
|
}
|
|
92
93
|
declare const DashboardLayout: React__default.FC<DashboardLayoutProps>;
|
|
93
94
|
|
|
@@ -414,6 +415,7 @@ declare const Enums: {
|
|
|
414
415
|
integrationTypes: readonly ["twilio-whatsapp"];
|
|
415
416
|
postTypes: readonly ["umrah", "hajj", "visa", "hotel"];
|
|
416
417
|
postStatus: readonly ["draft", "published", "archived"];
|
|
418
|
+
collectionTypes: readonly ["collected", "pending"];
|
|
417
419
|
};
|
|
418
420
|
|
|
419
421
|
type CurrencyType$2 = (typeof Enums.currencies)[number];
|
|
@@ -2695,6 +2697,11 @@ declare function purchase3List({ url, type, }: {
|
|
|
2695
2697
|
type?: string;
|
|
2696
2698
|
}): react_jsx_runtime.JSX.Element;
|
|
2697
2699
|
|
|
2700
|
+
declare function Collection3({ url, type, }: {
|
|
2701
|
+
url?: string;
|
|
2702
|
+
type?: string;
|
|
2703
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2704
|
+
|
|
2698
2705
|
type StockType = (typeof Enums.saleStockTypes)[number];
|
|
2699
2706
|
|
|
2700
2707
|
declare function Sale2List({ url, type }: {
|
|
@@ -2728,6 +2735,7 @@ declare const Transaction3: {
|
|
|
2728
2735
|
type: StockType;
|
|
2729
2736
|
currencySelect?: CurrencyType$2;
|
|
2730
2737
|
}) => react_jsx_runtime.JSX.Element;
|
|
2738
|
+
Collection: typeof Collection3;
|
|
2731
2739
|
Purchase3: typeof purchase3List;
|
|
2732
2740
|
Purchase3Form: ({ type }: {
|
|
2733
2741
|
type: StockType$1;
|
|
@@ -2742,6 +2750,10 @@ declare const Transaction3: {
|
|
|
2742
2750
|
List: typeof ExpensesJournal3;
|
|
2743
2751
|
Form: typeof ExpensesJournal3Form;
|
|
2744
2752
|
};
|
|
2753
|
+
CollectionLevel: ({ value, showYard, }: {
|
|
2754
|
+
value: boolean;
|
|
2755
|
+
showYard?: boolean;
|
|
2756
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2745
2757
|
};
|
|
2746
2758
|
|
|
2747
2759
|
declare const ItemReport: ({ value, type, }: {
|
package/dist/index.d.ts
CHANGED
|
@@ -88,6 +88,7 @@ interface DashboardLayoutProps {
|
|
|
88
88
|
userProfile?: React__default.ReactNode;
|
|
89
89
|
fontFamily?: string;
|
|
90
90
|
sidebarFooter?: React__default.ReactNode;
|
|
91
|
+
posIcon?: React__default.ReactNode;
|
|
91
92
|
}
|
|
92
93
|
declare const DashboardLayout: React__default.FC<DashboardLayoutProps>;
|
|
93
94
|
|
|
@@ -414,6 +415,7 @@ declare const Enums: {
|
|
|
414
415
|
integrationTypes: readonly ["twilio-whatsapp"];
|
|
415
416
|
postTypes: readonly ["umrah", "hajj", "visa", "hotel"];
|
|
416
417
|
postStatus: readonly ["draft", "published", "archived"];
|
|
418
|
+
collectionTypes: readonly ["collected", "pending"];
|
|
417
419
|
};
|
|
418
420
|
|
|
419
421
|
type CurrencyType$2 = (typeof Enums.currencies)[number];
|
|
@@ -2695,6 +2697,11 @@ declare function purchase3List({ url, type, }: {
|
|
|
2695
2697
|
type?: string;
|
|
2696
2698
|
}): react_jsx_runtime.JSX.Element;
|
|
2697
2699
|
|
|
2700
|
+
declare function Collection3({ url, type, }: {
|
|
2701
|
+
url?: string;
|
|
2702
|
+
type?: string;
|
|
2703
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2704
|
+
|
|
2698
2705
|
type StockType = (typeof Enums.saleStockTypes)[number];
|
|
2699
2706
|
|
|
2700
2707
|
declare function Sale2List({ url, type }: {
|
|
@@ -2728,6 +2735,7 @@ declare const Transaction3: {
|
|
|
2728
2735
|
type: StockType;
|
|
2729
2736
|
currencySelect?: CurrencyType$2;
|
|
2730
2737
|
}) => react_jsx_runtime.JSX.Element;
|
|
2738
|
+
Collection: typeof Collection3;
|
|
2731
2739
|
Purchase3: typeof purchase3List;
|
|
2732
2740
|
Purchase3Form: ({ type }: {
|
|
2733
2741
|
type: StockType$1;
|
|
@@ -2742,6 +2750,10 @@ declare const Transaction3: {
|
|
|
2742
2750
|
List: typeof ExpensesJournal3;
|
|
2743
2751
|
Form: typeof ExpensesJournal3Form;
|
|
2744
2752
|
};
|
|
2753
|
+
CollectionLevel: ({ value, showYard, }: {
|
|
2754
|
+
value: boolean;
|
|
2755
|
+
showYard?: boolean;
|
|
2756
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2745
2757
|
};
|
|
2746
2758
|
|
|
2747
2759
|
declare const ItemReport: ({ value, type, }: {
|