@appcorp/stellar-solutions-modules 0.1.55 → 0.1.56
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/global-modules/bank/bank.d.ts +7 -1
- package/global-modules/bank/bank.js +5 -19
- package/global-modules/bank/constants.js +5 -5
- package/global-modules/bank/context.js +39 -41
- package/global-modules/bank/drawer.d.ts +0 -4
- package/global-modules/bank/drawer.js +8 -6
- package/global-modules/bank/form.d.ts +0 -3
- package/global-modules/bank/form.js +16 -13
- package/global-modules/bank/validate.js +2 -2
- package/global-modules/branch/branch.d.ts +7 -1
- package/global-modules/branch/branch.js +6 -16
- package/global-modules/branch/constants.js +1 -1
- package/global-modules/branch/context.js +35 -21
- package/global-modules/branch/drawer.d.ts +0 -4
- package/global-modules/branch/drawer.js +8 -6
- package/global-modules/branch/form.d.ts +0 -3
- package/global-modules/branch/form.js +11 -12
- package/global-modules/branch/validate.js +6 -6
- package/global-modules/payment-mode/constants.js +1 -1
- package/global-modules/payment-mode/context.js +7 -9
- package/global-modules/payment-mode/drawer.d.ts +0 -4
- package/global-modules/payment-mode/drawer.js +8 -6
- package/global-modules/payment-mode/form.d.ts +0 -3
- package/global-modules/payment-mode/form.js +6 -7
- package/global-modules/payment-mode/payment-mode.d.ts +1 -1
- package/global-modules/payment-mode/payment-mode.js +38 -38
- package/global-modules/payment-mode/validate.js +2 -2
- package/global-modules/preferences/constants.d.ts +0 -4
- package/global-modules/preferences/constants.js +14 -17
- package/global-modules/preferences/preferences.js +2 -6
- package/global-modules/tax/constants.js +1 -1
- package/global-modules/tax/context.js +5 -2
- package/global-modules/tax/drawer.d.ts +0 -4
- package/global-modules/tax/drawer.js +8 -6
- package/global-modules/tax/form.d.ts +0 -4
- package/global-modules/tax/form.js +6 -7
- package/global-modules/tax/tax.d.ts +1 -1
- package/global-modules/tax/tax.js +37 -37
- package/package.json +3 -3
|
@@ -13,17 +13,14 @@
|
|
|
13
13
|
*
|
|
14
14
|
* Naming Convention: Descriptive names with clear purpose
|
|
15
15
|
*/
|
|
16
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
-
};
|
|
19
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
17
|
+
exports.initialMenuItems = exports.PREFERENCE_API_ROUTES = exports.pageLimit = void 0;
|
|
18
|
+
// import React, { ReactNode } from "react";
|
|
19
|
+
// import { Currency } from "./currency";
|
|
20
|
+
// import { PaymentModePage } from "../payment-mode/payment-mode";
|
|
21
|
+
// import { BranchPage } from "../branch/branch";
|
|
22
|
+
// import { TaxPage } from "../tax/tax";
|
|
23
|
+
// import { BankPage } from "../bank/bank";
|
|
27
24
|
// ============================================================================
|
|
28
25
|
// PAGE CONFIGURATION
|
|
29
26
|
// ============================================================================
|
|
@@ -117,13 +114,13 @@ exports.initialMenuItems = [
|
|
|
117
114
|
* Mapping of dashboard tab names to their corresponding React components
|
|
118
115
|
* Used for dynamic rendering of preference management sections
|
|
119
116
|
*/
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
};
|
|
117
|
+
// export const dashboardTabsMap: { [key: string]: ReactNode } = {
|
|
118
|
+
// Currency: <Currency />,
|
|
119
|
+
// "Payment Mode": <PaymentModePage />,
|
|
120
|
+
// Branch: <BranchPage params={{}} />,
|
|
121
|
+
// Tax: <TaxPage params={{}} />,
|
|
122
|
+
// Bank: <BankPage params={{}} />,
|
|
123
|
+
// };
|
|
127
124
|
// ============================================================================
|
|
128
125
|
// OPTIMIZATION SUMMARY
|
|
129
126
|
// ============================================================================
|
|
@@ -6,15 +6,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.PreferencesPage = void 0;
|
|
8
8
|
var react_1 = __importDefault(require("react"));
|
|
9
|
-
|
|
9
|
+
// import { usePreferenceStateContext } from "./context";
|
|
10
10
|
var generate_toast_1 = require("@appcorp/app-corp-vista/utils/generate-toast");
|
|
11
|
-
var vista_dashboard_tabs_v1_1 = require("@appcorp/app-corp-vista/molecules/vista-dashboard-tabs-v1/vista-dashboard-tabs-v1");
|
|
12
|
-
var constants_1 = require("./constants");
|
|
13
11
|
var PreferencesPage = function () {
|
|
14
|
-
|
|
12
|
+
// const { headerTabs, activeTab } = usePreferenceStateContext();
|
|
15
13
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
16
|
-
react_1.default.createElement(vista_dashboard_tabs_v1_1.VistaDashboardTabsV1, { headerTabs: headerTabs, heading: "Heading" },
|
|
17
|
-
react_1.default.createElement("div", { className: "pt-4" }, constants_1.dashboardTabsMap[activeTab])),
|
|
18
14
|
react_1.default.createElement(generate_toast_1.VistaToaster, null)));
|
|
19
15
|
};
|
|
20
16
|
exports.PreferencesPage = PreferencesPage;
|
|
@@ -149,6 +149,7 @@ var useTaxState = function () {
|
|
|
149
149
|
var data = _a.data, error = _a.error;
|
|
150
150
|
if (error) {
|
|
151
151
|
showErrorToast(tCommon("messagesNetworkError"));
|
|
152
|
+
return;
|
|
152
153
|
}
|
|
153
154
|
if (data === null || data === void 0 ? void 0 : data.items) {
|
|
154
155
|
dispatch({
|
|
@@ -184,6 +185,7 @@ var useTaxState = function () {
|
|
|
184
185
|
var data = _a.data, error = _a.error;
|
|
185
186
|
if (error) {
|
|
186
187
|
showErrorToast(tCommon("messagesNetworkError"));
|
|
188
|
+
return;
|
|
187
189
|
}
|
|
188
190
|
if (data) {
|
|
189
191
|
dispatch({
|
|
@@ -200,6 +202,7 @@ var useTaxState = function () {
|
|
|
200
202
|
var data = _a.data, error = _a.error;
|
|
201
203
|
if (error) {
|
|
202
204
|
showErrorToast(tCommon("messagesNetworkError"));
|
|
205
|
+
return;
|
|
203
206
|
}
|
|
204
207
|
if (data) {
|
|
205
208
|
showSuccessToast(t("messagesTaxDeleted"));
|
|
@@ -219,7 +222,7 @@ var useTaxState = function () {
|
|
|
219
222
|
listCallback: listCallback,
|
|
220
223
|
listParams: listParams,
|
|
221
224
|
listUrl: constants_1.TAX_API_ROUTES.TAXES,
|
|
222
|
-
searchQuery:
|
|
225
|
+
searchQuery: debouncedQuery,
|
|
223
226
|
unitByIdUrl: constants_1.TAX_API_ROUTES.TAX_BY_ID,
|
|
224
227
|
unitUrl: constants_1.TAX_API_ROUTES.TAX,
|
|
225
228
|
updateCallback: updateCallback,
|
|
@@ -231,7 +234,7 @@ var useTaxState = function () {
|
|
|
231
234
|
// ---------------------------------------------------------------------------
|
|
232
235
|
(0, react_1.useEffect)(function () {
|
|
233
236
|
listFetchNow();
|
|
234
|
-
// eslint-disable-next-line
|
|
237
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
235
238
|
}, [debouncedQuery, state.currentPage, state.pageLimit]);
|
|
236
239
|
// ---------------------------------------------------------------------------
|
|
237
240
|
// DRAWER & MODAL HANDLERS
|
|
@@ -22,10 +22,6 @@ import { FC } from "react";
|
|
|
22
22
|
interface TaxDrawerProps {
|
|
23
23
|
/** Whether the interface is in RTL (Right-to-Left) mode */
|
|
24
24
|
isRTL: boolean;
|
|
25
|
-
/** Translation map for internationalization */
|
|
26
|
-
translationMap: {
|
|
27
|
-
[key: string]: string;
|
|
28
|
-
};
|
|
29
25
|
}
|
|
30
26
|
export declare const TaxDrawer: FC<TaxDrawerProps>;
|
|
31
27
|
export {};
|
|
@@ -30,6 +30,7 @@ var button_1 = require("@appcorp/shadcn/components/button");
|
|
|
30
30
|
var drawer_1 = require("@appcorp/shadcn/components/drawer");
|
|
31
31
|
var context_1 = require("./context");
|
|
32
32
|
var form_1 = require("./form");
|
|
33
|
+
var next_intl_1 = require("next-intl");
|
|
33
34
|
// ============================================================================
|
|
34
35
|
// CONSTANTS
|
|
35
36
|
// ============================================================================
|
|
@@ -43,10 +44,11 @@ var getDrawerDirection = function (isRTL) {
|
|
|
43
44
|
// COMPONENT
|
|
44
45
|
// ============================================================================
|
|
45
46
|
var TaxDrawer = function (_a) {
|
|
47
|
+
var isRTL = _a.isRTL;
|
|
48
|
+
var t = (0, next_intl_1.useTranslations)("tax");
|
|
46
49
|
// ============================================================================
|
|
47
50
|
// HOOKS & STATE
|
|
48
51
|
// ============================================================================
|
|
49
|
-
var isRTL = _a.isRTL, translationMap = _a.translationMap;
|
|
50
52
|
var _b = (0, context_1.useTaxStateContext)(), closeDrawer = _b.closeDrawer, disableSaveButton = _b.disableSaveButton, drawer = _b.drawer, handleSubmit = _b.handleSubmit;
|
|
51
53
|
// ============================================================================
|
|
52
54
|
// COMPUTED VALUES
|
|
@@ -59,17 +61,17 @@ var TaxDrawer = function (_a) {
|
|
|
59
61
|
return (react_1.default.createElement(drawer_1.Drawer, { open: isDrawerOpen, onOpenChange: function (open) { return !open && closeDrawer(); }, direction: drawerDirection },
|
|
60
62
|
react_1.default.createElement(drawer_1.DrawerContent, { className: "h-full ".concat(DRAWER_WIDTH, " ").concat(isRTL ? "rtl" : "ltr"), dir: isRTL ? "rtl" : "ltr" },
|
|
61
63
|
react_1.default.createElement(drawer_1.DrawerHeader, { className: "flex-row items-center justify-between border-b pb-4 ".concat(isRTL ? "flex-row-reverse" : "") },
|
|
62
|
-
react_1.default.createElement(drawer_1.DrawerTitle, { className: "text-xl font-semibold flex items-center ".concat(isRTL ? "flex-row-reverse gap-2" : "gap-2") }, (
|
|
64
|
+
react_1.default.createElement(drawer_1.DrawerTitle, { className: "text-xl font-semibold flex items-center ".concat(isRTL ? "flex-row-reverse gap-2" : "gap-2") }, t("drawerTitleTax")),
|
|
63
65
|
react_1.default.createElement(drawer_1.DrawerClose, { asChild: true },
|
|
64
66
|
react_1.default.createElement(button_1.Button, { variant: "ghost", size: "icon", className: "h-8 w-8" },
|
|
65
67
|
react_1.default.createElement(lucide_react_1.X, { className: "h-4 w-4" }),
|
|
66
|
-
react_1.default.createElement("span", { className: "sr-only" }, (
|
|
68
|
+
react_1.default.createElement("span", { className: "sr-only" }, t("drawerButtonCancel"))))),
|
|
67
69
|
react_1.default.createElement("div", { className: "flex-1 overflow-y-auto px-4 py-6 ".concat(isRTL ? "text-right" : "text-left") },
|
|
68
|
-
react_1.default.createElement(form_1.TaxForm, {
|
|
70
|
+
react_1.default.createElement(form_1.TaxForm, { isRTL: isRTL })),
|
|
69
71
|
react_1.default.createElement(drawer_1.DrawerFooter, { className: "border-t pt-4" },
|
|
70
72
|
react_1.default.createElement("div", { className: "flex gap-2 ".concat(isRTL ? "flex-row-reverse" : "") },
|
|
71
|
-
react_1.default.createElement(button_1.Button, { variant: "outline", onClick: closeDrawer, className: "flex-1", type: "button" }, (
|
|
72
|
-
react_1.default.createElement(button_1.Button, { onClick: handleSubmit, disabled: disableSaveButton, className: "flex-1", type: "button" }, (
|
|
73
|
+
react_1.default.createElement(button_1.Button, { variant: "outline", onClick: closeDrawer, className: "flex-1", type: "button" }, t("drawerButtonCancel")),
|
|
74
|
+
react_1.default.createElement(button_1.Button, { onClick: handleSubmit, disabled: disableSaveButton, className: "flex-1", type: "button" }, t("drawerButtonSave")))))));
|
|
73
75
|
};
|
|
74
76
|
exports.TaxDrawer = TaxDrawer;
|
|
75
77
|
// ============================================================================
|
|
@@ -16,10 +16,6 @@ import { FC } from "react";
|
|
|
16
16
|
interface TaxFormProps {
|
|
17
17
|
/** Whether the interface is in RTL (Right-to-Left) mode */
|
|
18
18
|
isRTL: boolean;
|
|
19
|
-
/** Translation map for internationalization */
|
|
20
|
-
translationMap: {
|
|
21
|
-
[key: string]: string;
|
|
22
|
-
};
|
|
23
19
|
}
|
|
24
20
|
export declare const TaxForm: FC<TaxFormProps>;
|
|
25
21
|
export {};
|
|
@@ -27,12 +27,11 @@ var context_1 = require("./context");
|
|
|
27
27
|
// COMPONENT
|
|
28
28
|
// ============================================================================
|
|
29
29
|
var TaxForm = function (_a) {
|
|
30
|
+
var isRTL = _a.isRTL;
|
|
31
|
+
var t = (0, next_intl_1.useTranslations)("tax");
|
|
30
32
|
// ============================================================================
|
|
31
33
|
// HOOKS & STATE
|
|
32
34
|
// ============================================================================
|
|
33
|
-
var isRTL = _a.isRTL, translationMap = _a.translationMap;
|
|
34
|
-
var t = (0, next_intl_1.useTranslations)("taxPage");
|
|
35
|
-
var ui = (0, next_intl_1.useTranslations)("ui");
|
|
36
35
|
var _b = (0, context_1.useTaxStateContext)(), taxName = _b.taxName, taxRate = _b.taxRate, enabled = _b.enabled, description = _b.description, errors = _b.errors, handleInputChange = _b.handleInputChange;
|
|
37
36
|
// ============================================================================
|
|
38
37
|
// HELPER FUNCTIONS
|
|
@@ -53,13 +52,13 @@ var TaxForm = function (_a) {
|
|
|
53
52
|
return (react_1.default.createElement("div", { className: "space-y-6 ".concat(isRTL ? "rtl" : "ltr"), dir: isRTL ? "rtl" : "ltr" },
|
|
54
53
|
react_1.default.createElement("div", { className: "space-y-4" },
|
|
55
54
|
react_1.default.createElement("div", { className: "space-y-2" },
|
|
56
|
-
react_1.default.createElement(input_1.Input, { id: "taxName", type: "text", label:
|
|
55
|
+
react_1.default.createElement(input_1.Input, { id: "taxName", type: "text", label: t("formLabelTaxName"), value: taxName || "", onChange: function (e) { return handleInputChange("taxName", e.target.value); }, placeholder: t("formPlaceholderTaxName"), info: t("formInfoTaxName"), error: getTranslatedError("taxName"), required: true })),
|
|
57
56
|
react_1.default.createElement("div", { className: "space-y-2" },
|
|
58
|
-
react_1.default.createElement(input_1.Input, { id: "taxRate", type: "number", label:
|
|
57
|
+
react_1.default.createElement(input_1.Input, { id: "taxRate", type: "number", label: t("formLabelTaxRate"), value: taxRate || "", onChange: function (e) { return handleInputChange("taxRate", e.target.value); }, placeholder: t("formPlaceholderTaxRate"), info: t("formInfoTaxRate"), error: getTranslatedError("taxRate"), required: true })),
|
|
59
58
|
react_1.default.createElement("div", { className: "space-y-2" },
|
|
60
|
-
react_1.default.createElement(input_1.Input, { id: "description", type: "text", label:
|
|
59
|
+
react_1.default.createElement(input_1.Input, { id: "description", type: "text", label: t("formLabelDescription"), value: description || "", onChange: function (e) { return handleInputChange("description", e.target.value); }, placeholder: t("formPlaceholderDescription"), info: t("formInfoDescription") })),
|
|
61
60
|
react_1.default.createElement("div", { className: "space-y-4" },
|
|
62
|
-
react_1.default.createElement(switch_1.Switch, { id: "enabled", label:
|
|
61
|
+
react_1.default.createElement(switch_1.Switch, { id: "enabled", label: t("formLabelEnabled"), checked: enabled || false, onCheckedChange: function (checked) { return handleInputChange("enabled", checked); }, info: t("formInfoEnabled"), error: getTranslatedError("enabled") })))));
|
|
63
62
|
};
|
|
64
63
|
exports.TaxForm = TaxForm;
|
|
65
64
|
// ============================================================================
|
|
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
5
|
};
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.
|
|
7
|
+
exports.TaxPage = void 0;
|
|
8
8
|
var react_1 = __importDefault(require("react"));
|
|
9
9
|
var next_intl_1 = require("next-intl");
|
|
10
10
|
var util_functions_1 = require("@react-pakistan/util-functions");
|
|
@@ -31,46 +31,46 @@ var drawer_1 = require("./drawer");
|
|
|
31
31
|
*
|
|
32
32
|
* @param params - Route parameters containing locale information
|
|
33
33
|
*/
|
|
34
|
-
var
|
|
34
|
+
var TaxPage = function () {
|
|
35
35
|
var _a = (0, context_1.useTaxStateContext)(), count = _a.count, currentPage = _a.currentPage, handleNextClick = _a.handleNextClick, handlePageLimit = _a.handlePageLimit, handlePreviousClick = _a.handlePreviousClick, headerActions = _a.headerActions, listLoading = _a.listLoading, pageLimit = _a.pageLimit, rowActions = _a.rowActions, searchQuery = _a.searchQuery, taxes = _a.taxes, searchOnChange = _a.searchOnChange;
|
|
36
36
|
var t = (0, next_intl_1.useTranslations)("tax");
|
|
37
37
|
var isRTL = (0, use_rtl_1.useRTL)();
|
|
38
38
|
// ============================================================================
|
|
39
39
|
// TRANSLATION MAPPING
|
|
40
40
|
// ============================================================================
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
};
|
|
41
|
+
// const translationMap = {
|
|
42
|
+
// // Form Labels
|
|
43
|
+
// formLabelTaxName: t("formLabelTaxName"),
|
|
44
|
+
// formLabelTaxRate: t("formLabelTaxRate"),
|
|
45
|
+
// formLabelDescription: t("formLabelDescription"),
|
|
46
|
+
// // Drawer
|
|
47
|
+
// drawerTitleTax: t("headingFormEdit"),
|
|
48
|
+
// headingFormCreate: t("headingFormCreate"),
|
|
49
|
+
// srCloseDrawer: t("srCloseDrawer"),
|
|
50
|
+
// cancelBtn: t("cancelBtn"),
|
|
51
|
+
// saveBtn: t("saveBtn"),
|
|
52
|
+
// // Actions
|
|
53
|
+
// addItem: t("addItem"),
|
|
54
|
+
// edit: t("edit"),
|
|
55
|
+
// delete: t("delete"),
|
|
56
|
+
// // Form Settings
|
|
57
|
+
// settings: t("settings"),
|
|
58
|
+
// enabled: t("enabled"),
|
|
59
|
+
// enableDescription: t("enableDescription"),
|
|
60
|
+
// // Messages
|
|
61
|
+
// messageTaxCreated: t("messages.taxCreated"),
|
|
62
|
+
// messageTaxUpdated: t("messages.taxUpdated"),
|
|
63
|
+
// messageTaxDeleted: t("messages.taxDeleted"),
|
|
64
|
+
// messageSavingTax: t("messages.savingTax"),
|
|
65
|
+
// messageDeletingTax: t("messages.deletingTax"),
|
|
66
|
+
// messageLoadingTaxes: t("messages.loadingTaxes"),
|
|
67
|
+
// messageSuccess: t("messages.success"),
|
|
68
|
+
// messageError: t("messages.error"),
|
|
69
|
+
// // Validation
|
|
70
|
+
// validationTaxNameRequired: t("validation.taxNameRequired"),
|
|
71
|
+
// validationTaxRateRequired: t("validation.taxRateRequired"),
|
|
72
|
+
// validationFormGeneralError: t("validation.formGeneralError"),
|
|
73
|
+
// };
|
|
74
74
|
// ============================================================================
|
|
75
75
|
// TABLE CONFIGURATION
|
|
76
76
|
// ============================================================================
|
|
@@ -117,7 +117,7 @@ var Tax = function () {
|
|
|
117
117
|
// ============================================================================
|
|
118
118
|
return (react_1.default.createElement("div", { className: "space-y-4 ".concat(isRTL ? "rtl" : "ltr"), dir: isRTL ? "rtl" : "ltr" },
|
|
119
119
|
react_1.default.createElement(enhanced_table_1.EnhancedTable, { currentPage: Number(currentPage), handleNextOnClick: handleNextClick, handleOnSelect: handlePageLimit, handlePreviousOnClick: handlePreviousClick, handleSearchInput: searchOnChange, headerActions: headerActions, isNextDisabled: (0, util_functions_1.isNextButtonDisabled)(currentPage, totalPages), isPreviousDisabled: (0, util_functions_1.isPreviousButtonDisabled)(currentPage), listOptions: (0, util_functions_1.getAvailablePageLimits)(count), loading: listLoading, nodeSelectKey: "pageLimit", pageLimit: pageLimit, rowActions: rowActions, searchDisabled: false, searchEnabled: true, searchId: "tax-search", searchPlaceholder: t("tableSearchPlaceholder"), searchValue: searchQuery, tableBodyCols: constants_1.tableBodyCols, tableBodyRows: taxes, tableDescription: t("tableDescription"), tableHeadItems: tableHeadItems, tableHeading: t("tableTitle"), totalPages: Number(totalPages) }),
|
|
120
|
-
react_1.default.createElement(drawer_1.TaxDrawer, {
|
|
120
|
+
react_1.default.createElement(drawer_1.TaxDrawer, { isRTL: isRTL }),
|
|
121
121
|
react_1.default.createElement(sonner_1.Toaster, null)));
|
|
122
122
|
};
|
|
123
|
-
exports.
|
|
123
|
+
exports.TaxPage = TaxPage;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appcorp/stellar-solutions-modules",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.56",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"automate": "./automate.sh",
|
|
6
6
|
"build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib && cp yarn.lock lib",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@appcorp/app-corp-vista": "^0.3.47",
|
|
23
|
-
"@appcorp/shadcn": "^1.0.
|
|
23
|
+
"@appcorp/shadcn": "^1.0.23",
|
|
24
24
|
"@dnd-kit/core": "^6.3.1",
|
|
25
25
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
26
26
|
"@eslint/eslintrc": "^3",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@radix-ui/react-separator": "^1.1.7",
|
|
35
35
|
"@radix-ui/react-slot": "^1.2.3",
|
|
36
36
|
"@radix-ui/react-switch": "^1.2.6",
|
|
37
|
-
"@react-pakistan/util-functions": "^1.24.
|
|
37
|
+
"@react-pakistan/util-functions": "^1.24.60",
|
|
38
38
|
"@supabase/supabase-js": "^2",
|
|
39
39
|
"@tailwindcss/forms": "^0",
|
|
40
40
|
"@tailwindcss/postcss": "^4",
|