From 0ae21e2c2e8c2fb6f684e8a279f40a102d1b81cd Mon Sep 17 00:00:00 2001 From: Akash K <57758277+amk-dev@users.noreply.github.com> Date: Thu, 19 Dec 2024 18:52:05 +0530 Subject: [PATCH] feat: add bulk edit mode support in `multipart/form-data` (#4630) Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com> --- .../src/components/http/BodyParameters.vue | 128 +++++++++++++++- .../src/components/http/URLEncodedParams.vue | 138 ++++++++++-------- .../src/newstore/settings.ts | 7 +- .../persistence/validation-schemas/index.ts | 1 + packages/hoppscotch-data/src/rest/index.ts | 11 +- packages/hoppscotch-data/src/rest/v/10.ts | 58 ++++++++ 6 files changed, 271 insertions(+), 72 deletions(-) create mode 100644 packages/hoppscotch-data/src/rest/v/10.ts diff --git a/packages/hoppscotch-common/src/components/http/BodyParameters.vue b/packages/hoppscotch-common/src/components/http/BodyParameters.vue index 6fa832aa..f70bfff7 100644 --- a/packages/hoppscotch-common/src/components/http/BodyParameters.vue +++ b/packages/hoppscotch-common/src/components/http/BodyParameters.vue @@ -1,5 +1,5 @@