warqadui 0.0.287 → 0.0.289
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 +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +1043 -659
- package/dist/index.mjs +895 -503
- package/dist/styles.js +21 -0
- package/dist/styles.mjs +21 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -414,6 +414,7 @@ declare const Enums: {
|
|
|
414
414
|
integrationTypes: readonly ["twilio-whatsapp"];
|
|
415
415
|
postTypes: readonly ["umrah", "hajj", "visa", "hotel"];
|
|
416
416
|
postStatus: readonly ["draft", "published", "archived"];
|
|
417
|
+
collectionTypes: readonly ["collected", "pending"];
|
|
417
418
|
};
|
|
418
419
|
|
|
419
420
|
type CurrencyType$2 = (typeof Enums.currencies)[number];
|
|
@@ -2695,6 +2696,11 @@ declare function purchase3List({ url, type, }: {
|
|
|
2695
2696
|
type?: string;
|
|
2696
2697
|
}): react_jsx_runtime.JSX.Element;
|
|
2697
2698
|
|
|
2699
|
+
declare function Collection3({ url, type, }: {
|
|
2700
|
+
url?: string;
|
|
2701
|
+
type?: string;
|
|
2702
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2703
|
+
|
|
2698
2704
|
type StockType = (typeof Enums.saleStockTypes)[number];
|
|
2699
2705
|
|
|
2700
2706
|
declare function Sale2List({ url, type }: {
|
|
@@ -2728,6 +2734,7 @@ declare const Transaction3: {
|
|
|
2728
2734
|
type: StockType;
|
|
2729
2735
|
currencySelect?: CurrencyType$2;
|
|
2730
2736
|
}) => react_jsx_runtime.JSX.Element;
|
|
2737
|
+
Collection: typeof Collection3;
|
|
2731
2738
|
Purchase3: typeof purchase3List;
|
|
2732
2739
|
Purchase3Form: ({ type }: {
|
|
2733
2740
|
type: StockType$1;
|
|
@@ -2742,6 +2749,10 @@ declare const Transaction3: {
|
|
|
2742
2749
|
List: typeof ExpensesJournal3;
|
|
2743
2750
|
Form: typeof ExpensesJournal3Form;
|
|
2744
2751
|
};
|
|
2752
|
+
CollectionLevel: ({ value, showYard, }: {
|
|
2753
|
+
value: boolean;
|
|
2754
|
+
showYard?: boolean;
|
|
2755
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2745
2756
|
};
|
|
2746
2757
|
|
|
2747
2758
|
declare const ItemReport: ({ value, type, }: {
|
package/dist/index.d.ts
CHANGED
|
@@ -414,6 +414,7 @@ declare const Enums: {
|
|
|
414
414
|
integrationTypes: readonly ["twilio-whatsapp"];
|
|
415
415
|
postTypes: readonly ["umrah", "hajj", "visa", "hotel"];
|
|
416
416
|
postStatus: readonly ["draft", "published", "archived"];
|
|
417
|
+
collectionTypes: readonly ["collected", "pending"];
|
|
417
418
|
};
|
|
418
419
|
|
|
419
420
|
type CurrencyType$2 = (typeof Enums.currencies)[number];
|
|
@@ -2695,6 +2696,11 @@ declare function purchase3List({ url, type, }: {
|
|
|
2695
2696
|
type?: string;
|
|
2696
2697
|
}): react_jsx_runtime.JSX.Element;
|
|
2697
2698
|
|
|
2699
|
+
declare function Collection3({ url, type, }: {
|
|
2700
|
+
url?: string;
|
|
2701
|
+
type?: string;
|
|
2702
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2703
|
+
|
|
2698
2704
|
type StockType = (typeof Enums.saleStockTypes)[number];
|
|
2699
2705
|
|
|
2700
2706
|
declare function Sale2List({ url, type }: {
|
|
@@ -2728,6 +2734,7 @@ declare const Transaction3: {
|
|
|
2728
2734
|
type: StockType;
|
|
2729
2735
|
currencySelect?: CurrencyType$2;
|
|
2730
2736
|
}) => react_jsx_runtime.JSX.Element;
|
|
2737
|
+
Collection: typeof Collection3;
|
|
2731
2738
|
Purchase3: typeof purchase3List;
|
|
2732
2739
|
Purchase3Form: ({ type }: {
|
|
2733
2740
|
type: StockType$1;
|
|
@@ -2742,6 +2749,10 @@ declare const Transaction3: {
|
|
|
2742
2749
|
List: typeof ExpensesJournal3;
|
|
2743
2750
|
Form: typeof ExpensesJournal3Form;
|
|
2744
2751
|
};
|
|
2752
|
+
CollectionLevel: ({ value, showYard, }: {
|
|
2753
|
+
value: boolean;
|
|
2754
|
+
showYard?: boolean;
|
|
2755
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
2745
2756
|
};
|
|
2746
2757
|
|
|
2747
2758
|
declare const ItemReport: ({ value, type, }: {
|