@tap-payments/os-micro-frontend-shared 0.0.65 → 0.0.69-sheetview-container-v2

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 (46) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +12 -12
  3. package/build/components/VirtualTable/VirtualTable.d.ts +1 -1
  4. package/build/components/VirtualTable/VirtualTable.js +3 -3
  5. package/build/components/VirtualTable/style.d.ts +3 -1
  6. package/build/components/VirtualTable/style.js +5 -3
  7. package/build/constants/table/cell/authenticationsTableCellWidth.d.ts +11 -0
  8. package/build/constants/table/cell/authenticationsTableCellWidth.js +11 -0
  9. package/build/constants/table/cell/authorizationTableCellWidth.d.ts +32 -0
  10. package/build/constants/table/cell/authorizationTableCellWidth.js +32 -0
  11. package/build/constants/table/cell/chargeTableCellWidth.d.ts +32 -0
  12. package/build/constants/table/cell/chargeTableCellWidth.js +32 -0
  13. package/build/constants/table/cell/destinationsTableCellWidth.d.ts +21 -0
  14. package/build/constants/table/cell/destinationsTableCellWidth.js +21 -0
  15. package/build/constants/table/cell/intentsTableCellWidth.d.ts +6 -0
  16. package/build/constants/table/cell/intentsTableCellWidth.js +6 -0
  17. package/build/constants/table/cell/invoicesTableCellWidth.d.ts +17 -0
  18. package/build/constants/table/cell/invoicesTableCellWidth.js +17 -0
  19. package/build/constants/table/cell/leadsTableCellWidth.d.ts +7 -0
  20. package/build/constants/table/cell/leadsTableCellWidth.js +7 -0
  21. package/build/constants/table/cell/merchantsTableCellWidth.d.ts +11 -0
  22. package/build/constants/table/cell/merchantsTableCellWidth.js +11 -0
  23. package/build/constants/table/cell/ordersTableCellWidth.d.ts +11 -0
  24. package/build/constants/table/cell/ordersTableCellWidth.js +11 -0
  25. package/build/constants/table/cell/payoutsTableCellWidth.d.ts +11 -0
  26. package/build/constants/table/cell/payoutsTableCellWidth.js +11 -0
  27. package/build/constants/table/cell/protectAuthorizationsTableCellWidth.d.ts +14 -0
  28. package/build/constants/table/cell/protectAuthorizationsTableCellWidth.js +14 -0
  29. package/build/constants/table/cell/protectChargesTableCellWidth.d.ts +13 -0
  30. package/build/constants/table/cell/protectChargesTableCellWidth.js +13 -0
  31. package/build/constants/table/cell/refundTableCellWidth.d.ts +28 -0
  32. package/build/constants/table/cell/refundTableCellWidth.js +28 -0
  33. package/build/constants/table/cell/terminalsTableCellWidth.d.ts +14 -0
  34. package/build/constants/table/cell/terminalsTableCellWidth.js +14 -0
  35. package/build/constants/table/cell/tokensTableCellWidth.d.ts +9 -0
  36. package/build/constants/table/cell/tokensTableCellWidth.js +9 -0
  37. package/build/constants/table/cell/topupsTableCellWidth.d.ts +11 -0
  38. package/build/constants/table/cell/topupsTableCellWidth.js +11 -0
  39. package/build/constants/table/cell/walletDetailsTableCellWidth.d.ts +6 -0
  40. package/build/constants/table/cell/walletDetailsTableCellWidth.js +6 -0
  41. package/build/constants/table/cell/walletStatementTableCellWidth.d.ts +12 -0
  42. package/build/constants/table/cell/walletStatementTableCellWidth.js +12 -0
  43. package/build/constants/table/cell/walletTableCellWidth.d.ts +6 -0
  44. package/build/constants/table/cell/walletTableCellWidth.js +6 -0
  45. package/build/types/table.d.ts +2 -1
  46. package/package.json +129 -129
@@ -2,45 +2,56 @@ export declare const topupsTableCellWidth: {
2
2
  readonly id: {
3
3
  readonly default: "180px";
4
4
  readonly text: "180px";
5
+ readonly sheet: "180px";
5
6
  };
6
7
  readonly created: {
7
8
  readonly default: "170px";
8
9
  readonly text: "170px";
10
+ readonly sheet: "170px";
9
11
  };
10
12
  readonly charge_order: {
11
13
  readonly default: "150px";
12
14
  readonly text: "250px";
15
+ readonly sheet: "250px";
13
16
  };
14
17
  readonly customer: {
15
18
  readonly default: "180px";
16
19
  readonly text: "180px";
20
+ readonly sheet: "180px";
17
21
  };
18
22
  readonly device: {
19
23
  readonly default: "150px";
20
24
  readonly text: "250px";
25
+ readonly sheet: "250px";
21
26
  };
22
27
  readonly amount: {
23
28
  readonly default: "195px";
24
29
  readonly text: "195px";
30
+ readonly sheet: "195px";
25
31
  };
26
32
  readonly source: {
27
33
  readonly default: "94px";
28
34
  readonly text: "125px";
35
+ readonly sheet: "125px";
29
36
  };
30
37
  readonly authenticate: {
31
38
  readonly default: "18px";
32
39
  readonly text: "250px";
40
+ readonly sheet: "250px";
33
41
  };
34
42
  readonly payment_agreement: {
35
43
  readonly default: "50px";
36
44
  readonly text: "250px";
45
+ readonly sheet: "250px";
37
46
  };
38
47
  readonly status: {
39
48
  readonly default: "150px";
40
49
  readonly text: "250px";
50
+ readonly sheet: "250px";
41
51
  };
42
52
  readonly actions: {
43
53
  readonly default: "100px";
44
54
  readonly text: "100px";
55
+ readonly sheet: "100px";
45
56
  };
46
57
  };
@@ -2,45 +2,56 @@ export const topupsTableCellWidth = {
2
2
  id: {
3
3
  default: '180px',
4
4
  text: '180px',
5
+ sheet: '180px',
5
6
  },
6
7
  created: {
7
8
  default: '170px',
8
9
  text: '170px',
10
+ sheet: '170px',
9
11
  },
10
12
  charge_order: {
11
13
  default: '150px',
12
14
  text: '250px',
15
+ sheet: '250px',
13
16
  },
14
17
  customer: {
15
18
  default: '180px',
16
19
  text: '180px',
20
+ sheet: '180px',
17
21
  },
18
22
  device: {
19
23
  default: '150px',
20
24
  text: '250px',
25
+ sheet: '250px',
21
26
  },
22
27
  amount: {
23
28
  default: '195px',
24
29
  text: '195px',
30
+ sheet: '195px',
25
31
  },
26
32
  source: {
27
33
  default: '94px',
28
34
  text: '125px',
35
+ sheet: '125px',
29
36
  },
30
37
  authenticate: {
31
38
  default: '18px',
32
39
  text: '250px',
40
+ sheet: '250px',
33
41
  },
34
42
  payment_agreement: {
35
43
  default: '50px',
36
44
  text: '250px',
45
+ sheet: '250px',
37
46
  },
38
47
  status: {
39
48
  default: '150px',
40
49
  text: '250px',
50
+ sheet: '250px',
41
51
  },
42
52
  actions: {
43
53
  default: '100px',
44
54
  text: '100px',
55
+ sheet: '100px',
45
56
  },
46
57
  };
@@ -2,25 +2,31 @@ export declare const walletDetailsTableCellWidth: {
2
2
  readonly id: {
3
3
  readonly default: "180px";
4
4
  readonly text: "180px";
5
+ readonly sheet: "180px";
5
6
  };
6
7
  readonly amount: {
7
8
  readonly default: "200px";
8
9
  readonly text: "200px";
10
+ readonly sheet: "200px";
9
11
  };
10
12
  readonly actions: {
11
13
  readonly default: "70px";
12
14
  readonly text: "70px";
15
+ readonly sheet: "70px";
13
16
  };
14
17
  readonly date: {
15
18
  readonly default: "130px";
16
19
  readonly text: "130px";
20
+ readonly sheet: "130px";
17
21
  };
18
22
  readonly description: {
19
23
  readonly default: "210px";
20
24
  readonly text: "210px";
25
+ readonly sheet: "210px";
21
26
  };
22
27
  readonly transactions: {
23
28
  readonly default: "90px";
24
29
  readonly text: "90px";
30
+ readonly sheet: "90px";
25
31
  };
26
32
  };
@@ -2,25 +2,31 @@ export const walletDetailsTableCellWidth = {
2
2
  id: {
3
3
  default: '180px',
4
4
  text: '180px',
5
+ sheet: '180px',
5
6
  },
6
7
  amount: {
7
8
  default: '200px',
8
9
  text: '200px',
10
+ sheet: '200px',
9
11
  },
10
12
  actions: {
11
13
  default: '70px',
12
14
  text: '70px',
15
+ sheet: '70px',
13
16
  },
14
17
  date: {
15
18
  default: '130px',
16
19
  text: '130px',
20
+ sheet: '130px',
17
21
  },
18
22
  description: {
19
23
  default: '210px',
20
24
  text: '210px',
25
+ sheet: '210px',
21
26
  },
22
27
  transactions: {
23
28
  default: '90px',
24
29
  text: '90px',
30
+ sheet: '90px',
25
31
  },
26
32
  };
@@ -2,49 +2,61 @@ export declare const walletStatementTableCellWidth: {
2
2
  readonly id: {
3
3
  readonly default: "225px";
4
4
  readonly text: "225px";
5
+ readonly sheet: "225px";
5
6
  };
6
7
  readonly postdate: {
7
8
  readonly default: "170px";
8
9
  readonly text: "170px";
10
+ readonly sheet: "170px";
9
11
  };
10
12
  readonly date: {
11
13
  readonly default: "110px";
12
14
  readonly text: "110px";
15
+ readonly sheet: "110px";
13
16
  };
14
17
  readonly description: {
15
18
  readonly default: "210px";
16
19
  readonly text: "210px";
20
+ readonly sheet: "210px";
17
21
  };
18
22
  readonly receipt: {
19
23
  readonly default: "80px";
20
24
  readonly text: "150px";
25
+ readonly sheet: "150px";
21
26
  };
22
27
  readonly authenticate: {
23
28
  readonly default: "70px";
24
29
  readonly text: "100px";
30
+ readonly sheet: "100px";
25
31
  };
26
32
  readonly debit: {
27
33
  readonly default: "400px";
28
34
  readonly text: "400px";
35
+ readonly sheet: "400px";
29
36
  };
30
37
  readonly source: {
31
38
  readonly default: "70px";
32
39
  readonly text: "125px";
40
+ readonly sheet: "125px";
33
41
  };
34
42
  readonly actions: {
35
43
  readonly default: "100px";
36
44
  readonly text: "100px";
45
+ readonly sheet: "100px";
37
46
  };
38
47
  readonly amount: {
39
48
  readonly default: "195px";
40
49
  readonly text: "195px";
50
+ readonly sheet: "195px";
41
51
  };
42
52
  readonly reference: {
43
53
  readonly default: "95px";
44
54
  readonly text: "110px";
55
+ readonly sheet: "110px";
45
56
  };
46
57
  readonly card: {
47
58
  readonly default: "120px";
48
59
  readonly text: "120px";
60
+ readonly sheet: "120px";
49
61
  };
50
62
  };
@@ -2,49 +2,61 @@ export const walletStatementTableCellWidth = {
2
2
  id: {
3
3
  default: '225px',
4
4
  text: '225px',
5
+ sheet: '225px',
5
6
  },
6
7
  postdate: {
7
8
  default: '170px',
8
9
  text: '170px',
10
+ sheet: '170px',
9
11
  },
10
12
  date: {
11
13
  default: '110px',
12
14
  text: '110px',
15
+ sheet: '110px',
13
16
  },
14
17
  description: {
15
18
  default: '210px',
16
19
  text: '210px',
20
+ sheet: '210px',
17
21
  },
18
22
  receipt: {
19
23
  default: '80px',
20
24
  text: '150px',
25
+ sheet: '150px',
21
26
  },
22
27
  authenticate: {
23
28
  default: '70px',
24
29
  text: '100px',
30
+ sheet: '100px',
25
31
  },
26
32
  debit: {
27
33
  default: '400px',
28
34
  text: '400px',
35
+ sheet: '400px',
29
36
  },
30
37
  source: {
31
38
  default: '70px',
32
39
  text: '125px',
40
+ sheet: '125px',
33
41
  },
34
42
  actions: {
35
43
  default: '100px',
36
44
  text: '100px',
45
+ sheet: '100px',
37
46
  },
38
47
  amount: {
39
48
  default: '195px',
40
49
  text: '195px',
50
+ sheet: '195px',
41
51
  },
42
52
  reference: {
43
53
  default: '95px',
44
54
  text: '110px',
55
+ sheet: '110px',
45
56
  },
46
57
  card: {
47
58
  default: '120px',
48
59
  text: '120px',
60
+ sheet: '120px',
49
61
  },
50
62
  };
@@ -2,25 +2,31 @@ export declare const walletTableCellWidth: {
2
2
  readonly id: {
3
3
  readonly default: "180px";
4
4
  readonly text: "180px";
5
+ readonly sheet: "180px";
5
6
  };
6
7
  readonly type: {
7
8
  readonly default: "150px";
8
9
  readonly text: "250px";
10
+ readonly sheet: "250px";
9
11
  };
10
12
  readonly wallet: {
11
13
  readonly default: "150px";
12
14
  readonly text: "250px";
15
+ readonly sheet: "250px";
13
16
  };
14
17
  readonly source: {
15
18
  readonly default: "70px";
16
19
  readonly text: "125px";
20
+ readonly sheet: "125px";
17
21
  };
18
22
  readonly amount: {
19
23
  readonly default: "195px";
20
24
  readonly text: "195px";
25
+ readonly sheet: "195px";
21
26
  };
22
27
  readonly actions: {
23
28
  readonly default: "100px";
24
29
  readonly text: "100px";
30
+ readonly sheet: "100px";
25
31
  };
26
32
  };
@@ -2,25 +2,31 @@ export const walletTableCellWidth = {
2
2
  id: {
3
3
  default: '180px',
4
4
  text: '180px',
5
+ sheet: '180px',
5
6
  },
6
7
  type: {
7
8
  default: '150px',
8
9
  text: '250px',
10
+ sheet: '250px',
9
11
  },
10
12
  wallet: {
11
13
  default: '150px',
12
14
  text: '250px',
15
+ sheet: '250px',
13
16
  },
14
17
  source: {
15
18
  default: '70px',
16
19
  text: '125px',
20
+ sheet: '125px',
17
21
  },
18
22
  amount: {
19
23
  default: '195px',
20
24
  text: '195px',
25
+ sheet: '195px',
21
26
  },
22
27
  actions: {
23
28
  default: '100px',
24
29
  text: '100px',
30
+ sheet: '100px',
25
31
  },
26
32
  };
@@ -114,13 +114,14 @@ export interface IVirtualTable<R = any> {
114
114
  areAllRowsLoaded?: boolean;
115
115
  tableBodyStyles?: React.CSSProperties;
116
116
  isTextShown?: boolean;
117
- tableMode?: 'default' | 'text';
117
+ tableMode?: 'default' | 'text' | 'sheet';
118
118
  tableTitle?: string;
119
119
  dimensions?: {
120
120
  height: string | number;
121
121
  width: string | number;
122
122
  };
123
123
  dragControls?: DragControls;
124
+ isSheetView?: boolean;
124
125
  }
125
126
  export type ColumnFilterValues = Record<string, string | string[] | {
126
127
  phone: string;
package/package.json CHANGED
@@ -1,129 +1,129 @@
1
- {
2
- "name": "@tap-payments/os-micro-frontend-shared",
3
- "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.0.65",
5
- "type": "module",
6
- "main": "build/index.js",
7
- "module": "build/index.js",
8
- "types": "build/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./build/index.d.ts",
12
- "import": "./build/index.js",
13
- "require": "./build/index.js"
14
- },
15
- "./constants": {
16
- "types": "./build/constants/index.d.ts",
17
- "import": "./build/constants/index.js",
18
- "require": "./build/constants/index.js"
19
- },
20
- "./components": {
21
- "types": "./build/components/index.d.ts",
22
- "import": "./build/components/index.js",
23
- "require": "./build/components/index.js"
24
- },
25
- "./components/*": {
26
- "types": "./build/components/*/index.d.ts",
27
- "import": "./build/components/*/index.js",
28
- "require": "./build/components/*/index.js"
29
- },
30
- "./hooks": {
31
- "types": "./build/hooks/index.d.ts",
32
- "import": "./build/hooks/index.js",
33
- "require": "./build/hooks/index.js"
34
- },
35
- "./utils": {
36
- "types": "./build/utils/index.d.ts",
37
- "import": "./build/utils/index.js",
38
- "require": "./build/utils/index.js"
39
- },
40
- "./theme": {
41
- "types": "./build/theme/index.d.ts",
42
- "import": "./build/theme/index.js",
43
- "require": "./build/theme/index.js"
44
- },
45
- "./types": {
46
- "types": "./build/types/index.d.ts",
47
- "import": "./build/types/index.js",
48
- "require": "./build/types/index.js"
49
- }
50
- },
51
- "license": "MIT",
52
- "author": {
53
- "name": "Ahmed Sharkawy",
54
- "email": "a.elsharkawy@tap.company"
55
- },
56
- "files": [
57
- "build",
58
- "readme.md"
59
- ],
60
- "scripts": {
61
- "ts:build": "rm -rf build && tsc -p tsconfig.npm.json && tsc-alias -p tsconfig.npm.json",
62
- "push": "npm version patch --no-git-tag-version && npm run ts:build && npm publish --access public",
63
- "dev": "vite",
64
- "build": "tsc -b && vite build ",
65
- "prettier": "prettier --list-different \"src/**/*.{md,mdx,ts,js,tsx,jsx,json}\"",
66
- "prettier:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css,json}\"",
67
- "lint": "eslint . --color",
68
- "lint:fix": "eslint src --fix --color",
69
- "preview": "vite preview",
70
- "prepare": "husky"
71
- },
72
- "dependencies": {
73
- "@emotion/react": "^11.11.0",
74
- "@emotion/styled": "^11.11.0",
75
- "@hookform/resolvers": "^3.3.1",
76
- "@mui/material": "^5.12.3",
77
- "@uiw/react-json-view": "^2.0.0-alpha.16",
78
- "axios": "^1.4.0",
79
- "dayjs": "^1.11.8",
80
- "framer-motion": "10.11.0",
81
- "i18next": "^22.4.15",
82
- "memoize-one": "^6.0.0",
83
- "re-resizable": "^6.9.9",
84
- "react": "^18.2.0",
85
- "react-currency-input-field": "^3.6.11",
86
- "react-dom": "^18.2.0",
87
- "react-draggable": "^4.4.6",
88
- "react-dropzone": "^14.2.3",
89
- "react-hook-form": "^7.45.4",
90
- "react-hot-toast": "^2.4.1",
91
- "react-i18next": "^12.2.2",
92
- "react-multi-date-picker": "^4.1.2",
93
- "react-router-dom": "^6.14.2",
94
- "react-virtualized-auto-sizer": "^1.0.20",
95
- "react-window": "^1.8.9",
96
- "react-window-infinite-loader": "^1.0.9",
97
- "react18-input-otp": "^1.1.4",
98
- "recharts": "^2.15.1"
99
- },
100
- "devDependencies": {
101
- "@eslint/js": "^9.17.0",
102
- "@testing-library/jest-dom": "^5.16.5",
103
- "@types/lodash": "^4.17.15",
104
- "@types/react": "^18.2.6",
105
- "@types/react-dom": "^18.3.5",
106
- "@types/react-virtualized-auto-sizer": "^1.0.8",
107
- "@types/react-window": "^1.8.5",
108
- "@types/react-window-infinite-loader": "^1.0.6",
109
- "@vitejs/plugin-react": "^4.3.4",
110
- "eslint": "^9.17.0",
111
- "eslint-plugin-react-hooks": "^5.0.0",
112
- "eslint-plugin-react-refresh": "^0.4.16",
113
- "globals": "^15.14.0",
114
- "husky": "^8.0.3",
115
- "lint-staged": "^13.2.2",
116
- "prettier": "^2.8.8",
117
- "tsc-alias": "^1.8.16",
118
- "typescript": "5.0.2",
119
- "typescript-eslint": "^8.18.2",
120
- "vite": "6.0.5",
121
- "vite-tsconfig-paths": "^4.2.0"
122
- },
123
- "lint-staged": {
124
- "src/**/*.{ts,tsx,json,js,jsx}": [
125
- "yarn run prettier:fix",
126
- "yarn run lint"
127
- ]
128
- }
129
- }
1
+ {
2
+ "name": "@tap-payments/os-micro-frontend-shared",
3
+ "description": "Shared components and utilities for Tap Payments micro frontends",
4
+ "version": "0.0.69-sheetview-container-v2",
5
+ "type": "module",
6
+ "main": "build/index.js",
7
+ "module": "build/index.js",
8
+ "types": "build/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./build/index.d.ts",
12
+ "import": "./build/index.js",
13
+ "require": "./build/index.js"
14
+ },
15
+ "./constants": {
16
+ "types": "./build/constants/index.d.ts",
17
+ "import": "./build/constants/index.js",
18
+ "require": "./build/constants/index.js"
19
+ },
20
+ "./components": {
21
+ "types": "./build/components/index.d.ts",
22
+ "import": "./build/components/index.js",
23
+ "require": "./build/components/index.js"
24
+ },
25
+ "./components/*": {
26
+ "types": "./build/components/*/index.d.ts",
27
+ "import": "./build/components/*/index.js",
28
+ "require": "./build/components/*/index.js"
29
+ },
30
+ "./hooks": {
31
+ "types": "./build/hooks/index.d.ts",
32
+ "import": "./build/hooks/index.js",
33
+ "require": "./build/hooks/index.js"
34
+ },
35
+ "./utils": {
36
+ "types": "./build/utils/index.d.ts",
37
+ "import": "./build/utils/index.js",
38
+ "require": "./build/utils/index.js"
39
+ },
40
+ "./theme": {
41
+ "types": "./build/theme/index.d.ts",
42
+ "import": "./build/theme/index.js",
43
+ "require": "./build/theme/index.js"
44
+ },
45
+ "./types": {
46
+ "types": "./build/types/index.d.ts",
47
+ "import": "./build/types/index.js",
48
+ "require": "./build/types/index.js"
49
+ }
50
+ },
51
+ "license": "MIT",
52
+ "author": {
53
+ "name": "Ahmed Sharkawy",
54
+ "email": "a.elsharkawy@tap.company"
55
+ },
56
+ "files": [
57
+ "build",
58
+ "readme.md"
59
+ ],
60
+ "scripts": {
61
+ "ts:build": "rm -rf build && tsc -p tsconfig.npm.json && tsc-alias -p tsconfig.npm.json",
62
+ "push": "npm version patch --no-git-tag-version && npm run ts:build && npm publish --access public",
63
+ "dev": "vite",
64
+ "build": "tsc -b && vite build ",
65
+ "prettier": "prettier --list-different \"src/**/*.{md,mdx,ts,js,tsx,jsx,json}\"",
66
+ "prettier:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css,json}\"",
67
+ "lint": "eslint . --color",
68
+ "lint:fix": "eslint src --fix --color",
69
+ "preview": "vite preview",
70
+ "prepare": "husky"
71
+ },
72
+ "dependencies": {
73
+ "@emotion/react": "^11.11.0",
74
+ "@emotion/styled": "^11.11.0",
75
+ "@hookform/resolvers": "^3.3.1",
76
+ "@mui/material": "^5.12.3",
77
+ "@uiw/react-json-view": "^2.0.0-alpha.16",
78
+ "axios": "^1.4.0",
79
+ "dayjs": "^1.11.8",
80
+ "framer-motion": "10.11.0",
81
+ "i18next": "^22.4.15",
82
+ "memoize-one": "^6.0.0",
83
+ "re-resizable": "^6.9.9",
84
+ "react": "^18.2.0",
85
+ "react-currency-input-field": "^3.6.11",
86
+ "react-dom": "^18.2.0",
87
+ "react-draggable": "^4.4.6",
88
+ "react-dropzone": "^14.2.3",
89
+ "react-hook-form": "^7.45.4",
90
+ "react-hot-toast": "^2.4.1",
91
+ "react-i18next": "^12.2.2",
92
+ "react-multi-date-picker": "^4.1.2",
93
+ "react-router-dom": "^6.14.2",
94
+ "react-virtualized-auto-sizer": "^1.0.20",
95
+ "react-window": "^1.8.9",
96
+ "react-window-infinite-loader": "^1.0.9",
97
+ "react18-input-otp": "^1.1.4",
98
+ "recharts": "^2.15.1"
99
+ },
100
+ "devDependencies": {
101
+ "@eslint/js": "^9.17.0",
102
+ "@testing-library/jest-dom": "^5.16.5",
103
+ "@types/lodash": "^4.17.15",
104
+ "@types/react": "^18.2.6",
105
+ "@types/react-dom": "^18.3.5",
106
+ "@types/react-virtualized-auto-sizer": "^1.0.8",
107
+ "@types/react-window": "^1.8.5",
108
+ "@types/react-window-infinite-loader": "^1.0.6",
109
+ "@vitejs/plugin-react": "^4.3.4",
110
+ "eslint": "^9.17.0",
111
+ "eslint-plugin-react-hooks": "^5.0.0",
112
+ "eslint-plugin-react-refresh": "^0.4.16",
113
+ "globals": "^15.14.0",
114
+ "husky": "^8.0.3",
115
+ "lint-staged": "^13.2.2",
116
+ "prettier": "^2.8.8",
117
+ "tsc-alias": "^1.8.16",
118
+ "typescript": "5.0.2",
119
+ "typescript-eslint": "^8.18.2",
120
+ "vite": "6.0.5",
121
+ "vite-tsconfig-paths": "^4.2.0"
122
+ },
123
+ "lint-staged": {
124
+ "src/**/*.{ts,tsx,json,js,jsx}": [
125
+ "yarn run prettier:fix",
126
+ "yarn run lint"
127
+ ]
128
+ }
129
+ }