ubk.erp.webpack 1.2.9 → 1.3.0

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.
Files changed (31) hide show
  1. package/README.md +69 -0
  2. package/dist/Api/api.d.ts +36 -0
  3. package/dist/Layout/ExpenseDashboard/AddExpense/AddExpense.d.ts +5 -0
  4. package/dist/Layout/ExpenseDashboard/AddExpense/AddExpenseEdit.d.ts +5 -0
  5. package/dist/Layout/ExpenseDashboard/AddExpense/index.d.ts +1 -0
  6. package/dist/Layout/ExpenseDashboard/ExpenseHead/ExpenseHead.d.ts +5 -0
  7. package/dist/Layout/ExpenseDashboard/ExpenseHead/ExpenseHeadEdit.d.ts +5 -0
  8. package/dist/Layout/ExpenseDashboard/ExpenseHead/index.d.ts +1 -0
  9. package/dist/Layout/ExpenseDashboard/SearchExpense/SearchExpense.d.ts +5 -0
  10. package/dist/Layout/ExpenseDashboard/SearchExpense/index.d.ts +1 -0
  11. package/dist/Layout/ExpenseDashboard/index.d.ts +3 -0
  12. package/dist/Layout/IncomeDashboard/AddIncome/AddIncome.d.ts +5 -0
  13. package/dist/Layout/IncomeDashboard/AddIncome/AddIncomeEdit.d.ts +5 -0
  14. package/dist/Layout/IncomeDashboard/AddIncome/index.d.ts +1 -0
  15. package/dist/Layout/IncomeDashboard/IncomeHead/IncomeHead.d.ts +5 -0
  16. package/dist/Layout/IncomeDashboard/IncomeHead/IncomeHeadEdit.d.ts +5 -0
  17. package/dist/Layout/IncomeDashboard/IncomeHead/index.d.ts +1 -0
  18. package/dist/Layout/IncomeDashboard/SearchIncome/SearchIncome.d.ts +5 -0
  19. package/dist/Layout/IncomeDashboard/SearchIncome/index.d.ts +1 -0
  20. package/dist/Layout/IncomeDashboard/index.d.ts +3 -0
  21. package/dist/Layout/StudentInformation/AssignStudentSubject/AssignStudentSubject.d.ts +5 -0
  22. package/dist/Layout/StudentInformation/AssignStudentSubject/index.d.ts +1 -0
  23. package/dist/Layout/StudentInformation/MedicalReport/MedicalReport.d.ts +5 -0
  24. package/dist/Layout/StudentInformation/MedicalReport/index.d.ts +1 -0
  25. package/dist/Layout/StudentInformation/StudentLoginCredential/StudentLoginCredential.d.ts +5 -0
  26. package/dist/Layout/StudentInformation/StudentLoginCredential/index.d.ts +1 -0
  27. package/dist/Layout/StudentInformation/index.d.ts +3 -0
  28. package/dist/index.cjs +12 -12
  29. package/dist/index.d.ts +9 -0
  30. package/dist/index.js +10671 -8542
  31. package/package.json +1 -1
package/README.md CHANGED
@@ -275,6 +275,75 @@ const HomeworkPage = ({ token }) => {
275
275
  | `AddHomework` | Create and manage homework assignments with class, section, subject, dates, description, and attachments. |
276
276
  | `SubmissionDetails` | View homework submission details with student-wise submission status and document preview. |
277
277
 
278
+ ### Using the Income Module
279
+
280
+ ```jsx
281
+ import { AddIncome, SearchIncome, IncomeHead } from "ubk.erp.webpack";
282
+
283
+ const IncomePage = ({ token }) => {
284
+ return (
285
+ <>
286
+ <AddIncome token={token} />
287
+ <SearchIncome token={token} />
288
+ <IncomeHead token={token} />
289
+ </>
290
+ );
291
+ };
292
+ ```
293
+
294
+ ## 🧩 Available Components
295
+
296
+ ### Core
297
+
298
+ | Component | Description |
299
+ | :--- | :--- |
300
+ | `ErpDashboard` | Main dashboard overview. |
301
+ | `MenuSubmenu` | Dynamic menu and navigation component. |
302
+
303
+ ### Front Office
304
+
305
+ | Component | Description |
306
+ | :--- | :--- |
307
+ | `AdmissionEnquiry` | Admission enquiry management. |
308
+ | `VisitorBook` | Visitor entry tracking with purpose, contact, date, and image upload. |
309
+ | `PhoneCallLog` | Phone call log management with call type, follow-up date, and duration. |
310
+ | `PostalDispatch` | Postal dispatch management with reference, address, and document upload. |
311
+ | `PostalReceive` | Postal receive management with from/to title, reference, and document upload. |
312
+ | `Complain` | Complaint management with type, description, action taken, and assignment. |
313
+ | `SetupFrontOffice` | Front office setup/master data (Purpose, Complaint Type, Source, Reference). |
314
+ | `GatePass` | Student gate pass list with print support and today's gate pass summary. |
315
+
316
+ ### Homework
317
+
318
+ | Component | Description |
319
+ | :--- | :--- |
320
+ | `AddHomework` | Create and manage homework assignments with class, section, subject, dates, description, and attachments. |
321
+ | `SubmissionDetails` | View homework submission details with student-wise submission status and document preview. |
322
+
323
+ ### Income
324
+
325
+ | Component | Description |
326
+ | :--- | :--- |
327
+ | `AddIncome` | Add new income entries with income head, amount, date, invoice number, description, and document upload. |
328
+ | `SearchIncome` | Search income records by date range with paginated results. |
329
+ | `IncomeHead` | Manage income head categories with add/edit/delete and paginated list. |
330
+
331
+ ### Expense
332
+
333
+ | Component | Description |
334
+ | :--- | :--- |
335
+ | `AddExpense` | Add new expense entries with expense head, vendor, amount, date, payment mode, invoice number, description, and document upload. |
336
+ | `SearchExpense` | Search expense records by date range with paginated results. |
337
+ | `ExpenseHead` | Manage expense head categories with add/edit/delete and paginated list. |
338
+
339
+ ### Student Information
340
+
341
+ | Component | Description |
342
+ | :--- | :--- |
343
+ | `StudentLoginCredential` | View and manage student login credentials (username/password) by class and section. |
344
+ | `MedicalReport` | Manage student medical reports and medicine history with add/view functionality. |
345
+ | `AssignStudentSubject` | Assign and unassign subjects and extra-curricular activities to students. |
346
+
278
347
  ### Academics
279
348
 
280
349
  | Component | Description |
package/dist/Api/api.d.ts CHANGED
@@ -92,3 +92,39 @@ export const homeworkListUrl: "api/branchapi/homeworks/gethomeworklistByClassSec
92
92
  export const homeworkAddUrl: "api/branchapi/homeworks/addHomework";
93
93
  export const homeworkUpdateUrl: "api/student/Homework/updateHomework";
94
94
  export const homeworkDeleteUrl: "api/student/Homework/deleteHomework";
95
+ export const incomeListUrl: "api/branchapi/income/incomeTableList";
96
+ export const incomeAddUrl: "api/branchapi/income/addincome";
97
+ export const incomeUpdateUrl: "api/branchapi/income/editincome";
98
+ export const incomeDeleteUrl: "api/branchapi/income/deleteincome";
99
+ export const incomeHeadDropdownUrl: "api/branchapi/income/incomeheadDropdown";
100
+ export const incomeHeadListUrl: "api/branchapi/income/incomeheadTableList";
101
+ export const incomeHeadAddUrl: "api/branchapi/income/addincomehead";
102
+ export const incomeHeadUpdateUrl: "api/branchapi/income/editincomehead";
103
+ export const incomeHeadDeleteUrl: "api/branchapi/income/deleteincomehead";
104
+ export const incomeShowUrl: "api/branchapi/income/incomeShowdata";
105
+ export const incomeHeadShowUrl: "api/branchapi/income/incomeheadShowdata";
106
+ export const incomeSearchByDateUrl: "api/branchapi/income/searchincomebydates";
107
+ export const expenseListUrl: "api/branchapi/expense/expenseTableList";
108
+ export const expenseAddUrl: "api/branchapi/expense/addexpense";
109
+ export const expenseUpdateUrl: "api/branchapi/expense/editexpense";
110
+ export const expenseDeleteUrl: "api/branchapi/expense/deleteExpense";
111
+ export const expenseHeadDropdownUrl: "api/branchapi/expense/expenseheadDropdown";
112
+ export const expenseHeadListUrl: "api/branchapi/expense/expenseheadTableList";
113
+ export const expenseHeadAddUrl: "api/branchapi/expense/addexpensehead";
114
+ export const expenseHeadUpdateUrl: "api/branchapi/expense/editexpensehead";
115
+ export const expenseHeadDeleteUrl: "api/branchapi/expense/deleteexpensehead";
116
+ export const expenseShowUrl: "api/branchapi/expense/expenseShowdata";
117
+ export const expenseHeadShowUrl: "api/branchapi/expense/expenseheadShowdata";
118
+ export const expenseSearchByDateUrl: "api/branchapi/expense/searchexpensebydates";
119
+ export const vendorListUrl: "api/accounts/vendor/vendorlist";
120
+ export const studentLoginTableUrl: "api/student/studentDetails/studentLoginCredentialList";
121
+ export const studentListUrl: "/branchapi/student/studentlist";
122
+ export const studentSearchByKeywordUrl: "api/branchapi/student/studentsearchbyKeywords";
123
+ export const studentSearchByClassSectionUrl: "api/branchapi/student/studentsearchbyClassSection";
124
+ export const deleteStudentUrl: "branchapi/student/deleteStudent";
125
+ export const addStudentMedicineUrl: "/branchapi/student/addStudentMedicineDetails";
126
+ export const studentMedicineDetailsUrl: "/branchapi/student/StudentMedicineDetails";
127
+ export const getStudentClassSubjectUrl: "/branchapi/academy/getstudentClasssubjectByStudentId";
128
+ export const removeAssignStudentSubjectUrl: "/branchapi/academy/removeAssignStudentSubject";
129
+ export const extraCurricularActivitiesUrl: "/branchapi/feesCollection/extraCurricularActivitiesFess";
130
+ export const unAssignStudentSubjectUrl: "/branchapi/academy/unAssigneStudentSubject";
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default AddExpense;
3
+ declare function AddExpense({ token }: {
4
+ token: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default AddExpenseEdit;
3
+ declare function AddExpenseEdit({ data }: {
4
+ data: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { default } from './AddExpense';
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default ExpenseHead;
3
+ declare function ExpenseHead({ token }: {
4
+ token: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default ExpenseHeadEdit;
3
+ declare function ExpenseHeadEdit({ data }: {
4
+ data: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { default } from './ExpenseHead';
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default SearchExpense;
3
+ declare function SearchExpense({ token }: {
4
+ token: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { default } from './SearchExpense';
@@ -0,0 +1,3 @@
1
+ export { default as SearchExpense } from './SearchExpense';
2
+ export { default as AddExpense } from './AddExpense';
3
+ export { default as ExpenseHead } from './ExpenseHead';
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default AddIncome;
3
+ declare function AddIncome({ token }: {
4
+ token: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default AddIncomeEdit;
3
+ declare function AddIncomeEdit({ data }: {
4
+ data: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { default } from './AddIncome';
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default IncomeHead;
3
+ declare function IncomeHead({ token }: {
4
+ token: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default IncomeHeadEdit;
3
+ declare function IncomeHeadEdit({ data }: {
4
+ data: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { default } from './IncomeHead';
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default SearchIncome;
3
+ declare function SearchIncome({ token }: {
4
+ token: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { default } from './SearchIncome';
@@ -0,0 +1,3 @@
1
+ export { default as AddIncome } from './AddIncome';
2
+ export { default as SearchIncome } from './SearchIncome';
3
+ export { default as IncomeHead } from './IncomeHead';
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default AssignStudentSubject;
3
+ declare function AssignStudentSubject({ token }: {
4
+ token: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { default } from './AssignStudentSubject';
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default MedicalReport;
3
+ declare function MedicalReport({ token }: {
4
+ token: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { default } from './MedicalReport';
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export default StudentLoginCredential;
3
+ declare function StudentLoginCredential({ token }: {
4
+ token: any;
5
+ }): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export { default } from './StudentLoginCredential';
@@ -0,0 +1,3 @@
1
+ export { default as StudentLoginCredential } from './StudentLoginCredential';
2
+ export { default as MedicalReport } from './MedicalReport';
3
+ export { default as AssignStudentSubject } from './AssignStudentSubject';