feat: enhance confirmation dialogs and form error handling; add new utility functions

This commit is contained in:
Firman Ramdhani
2026-07-24 16:21:27 +07:00
parent b7e9af9b07
commit b332da4808
10 changed files with 117 additions and 73 deletions
+3 -1
View File
@@ -13,12 +13,14 @@
},
"dependencies": {
"crypto-js": "^4.2.0",
"dayjs": "^1.11.19"
"dayjs": "^1.11.19",
"lodash": "^4.18.1"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/crypto-js": "^4.2.2",
"@types/lodash": "^4.17.24",
"eslint": "^8.57.1",
"typescript": "5.5.4",
"vitest": "^4.0.17"
+1
View File
@@ -4,3 +4,4 @@ export * from './encryption/encryption.utils';
export * from './date/date.utils';
export * from './currency/currency.utils';
export * from './string/string.utils';
export * from './lodash/lodash.utils';
@@ -0,0 +1,3 @@
import lodash from 'lodash';
export { lodash };