Skip to content

Commit adc2d07

Browse files
committed
feat(web): add numeric input to components lib
1 parent 90716d3 commit adc2d07

File tree

12 files changed

+309
-77
lines changed

12 files changed

+309
-77
lines changed

package-lock.json

Lines changed: 150 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@
1414
"@mui/x-date-pickers": "^8.5.3",
1515
"formik": "^2.4.6",
1616
"luxon": "^3.6.1",
17+
"mathjs": "^14.5.2",
1718
"react": "19.1.0",
1819
"react-dom": "19.1.0",
20+
"react-i18next": "^15.5.3",
1921
"react-router-dom": "^7.6.2",
2022
"tslib": "^2.8.1",
2123
"zod": "^3.25.67"

tsconfig.base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"importHelpers": true,
1111
"target": "es2015",
1212
"module": "esnext",
13-
"lib": ["es2020", "dom"],
13+
"lib": ["es2021", "dom"],
1414
"skipLibCheck": true,
1515
"skipDefaultLibCheck": true,
1616
"baseUrl": ".",

web/components/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
},
1313
"peerDependencies": {
1414
"react": "^19.1.0",
15-
"@mui/material": "^7.1.2"
15+
"@mui/material": "^7.1.2",
16+
"react-i18next": "^15.5.3"
17+
},
18+
"dependencies": {
19+
"mathjs": "^14.5.2"
1620
},
1721
"repository": {
1822
"type": "git",

web/components/src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
export * from "./lib/CashingTextField";
22
export * from "./lib/DataGridTitle";
3-
export * from "./lib/Loading";
4-
export * from "./lib/NumericInput";
3+
export * from "./lib/numeric-input";
54
export * from "./lib/Select";

web/components/src/lib/Loading.spec.tsx

Lines changed: 0 additions & 5 deletions
This file was deleted.

web/components/src/lib/Loading.tsx

Lines changed: 0 additions & 10 deletions
This file was deleted.

web/components/src/lib/NumericInput.tsx

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)