Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement multiple File uploading #9814

Open
wants to merge 27 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fbbd353
Implement multiple File uploading
DonXavierdev Jan 7, 2025
f136465
Added jspdf to package.json
DonXavierdev Jan 7, 2025
21cd51d
Implement multiple File uploading
DonXavierdev Jan 7, 2025
a757ad5
Added jspdf to package.json
DonXavierdev Jan 7, 2025
f478af1
Merge branch 'issues/7417/File-upload-enhancement' of https://github.…
DonXavierdev Jan 7, 2025
1c20535
Merge branch 'develop' into issues/7417/File-upload-enhancement
DonXavierdev Jan 7, 2025
1dbf18f
Add jspdf to package.json
DonXavierdev Jan 11, 2025
5fe1f64
Merge branch 'issues/7417/File-upload-enhancement' of https://github.…
DonXavierdev Jan 11, 2025
ece5d70
resolve package-lock.json
DonXavierdev Jan 11, 2025
467cf59
Merge branch 'develop' of https://github.com/DonXavierdev/care_fe int…
DonXavierdev Jan 11, 2025
5d65539
Merge branch 'issues/7417/File-upload-enhancement' of https://github.…
DonXavierdev Jan 11, 2025
8014bf8
Remove duplicates package-lock.json
DonXavierdev Jan 11, 2025
74186e6
remove extra space package.json
DonXavierdev Jan 11, 2025
18bb454
package-lock.json mistake solved
DonXavierdev Jan 11, 2025
da64eb4
Merge branch 'develop' of https://github.com/DonXavierdev/care_fe int…
DonXavierdev Jan 12, 2025
5141210
Merge branch 'develop' of https://github.com/DonXavierdev/care_fe int…
DonXavierdev Jan 14, 2025
127acde
Add PDF combination feature to file upload
DonXavierdev Jan 16, 2025
14d397f
Add error handling for PDF generation + Reset isPdf wherever necessary
DonXavierdev Jan 18, 2025
f1c77d2
Add checkbox For image to pdf conversion.
DonXavierdev Jan 21, 2025
677fd46
Indicate file conversion progress,replace checkbox shadcn
DonXavierdev Jan 22, 2025
66ddf42
Seperate Textbox for CombineToPdf and replace textbox with input shadcn
DonXavierdev Jan 24, 2025
cec95d7
Merge Branch with Main
DonXavierdev Jan 24, 2025
cc6e0d8
Add missing jspdf dependency
DonXavierdev Jan 24, 2025
eb5b3c2
Use Shadcn Label instead or normal label tag
DonXavierdev Jan 24, 2025
0c77702
Merge branch 'develop' of https://github.com/DonXavierdev/care_fe int…
DonXavierdev Jan 25, 2025
e59ef78
fix: rename error variable in useFileUpload hook for clarity
DonXavierdev Jan 25, 2025
84d9bd7
Fix Deploy preview failure
DonXavierdev Jan 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
273 changes: 273 additions & 0 deletions package-lock.json
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should only be adding jspdf 👍

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Even if i remove other dependencies like atob,canvg etc. When user installs using "npm install" jspdf automatically installs the necessary dependencies into the package-lock.json file. What should i do about it. @Jacobjeevan

Copy link
Contributor

@Jacobjeevan Jacobjeevan Jan 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Even if i remove other dependencies like atob,canvg etc. When user installs using "npm install" jspdf automatically installs the necessary dependencies into the package-lock.json file. What should i do about it. @Jacobjeevan

Then it's fine (to include them) 👍 Make sure only those are affected though.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
"i18next-browser-languagedetector": "^8.0.2",
"i18next-http-backend": "^3.0.1",
"input-otp": "^1.4.2",
"jspdf": "^2.5.2",
"lodash-es": "^4.17.21",
"lucide-react": "^0.469.0",
"markdown-it": "^14.1.0",
Expand Down
Loading
Loading