aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-02-05 16:45:40 +0300
committerValentin Popov <valentin@popov.link>2026-02-05 16:45:40 +0300
commit59be13de07143e546284c75d00ea98c9159aa573 (patch)
tree10d1033894649df3eb6d4fb2c5b66ff42fa42caf /package.json
parentb9bd07c53d8c624f14f9b7da71ff1e4de099a029 (diff)
downloadstrapi-plugin-checkbox-list-59be13de07143e546284c75d00ea98c9159aa573.tar.xz
strapi-plugin-checkbox-list-59be13de07143e546284c75d00ea98c9159aa573.zip
Enhance checkbox-list custom field functionality
- Added CheckboxListEnumInput component for handling enumeration inputs. - Updated CheckboxListDefaultInput to support new options structure. - Integrated validation for checkbox list options using Yup. - Modified package.json and package-lock.json to include new dependencies. - Improved admin interface with enhanced input handling and validation feedback.
Diffstat (limited to 'package.json')
-rw-r--r--package.json4
1 files changed, 3 insertions, 1 deletions
diff --git a/package.json b/package.json
index e90fd78..5297f20 100644
--- a/package.json
+++ b/package.json
@@ -31,9 +31,11 @@
"test:ts:back": "run -T tsc -p server/tsconfig.json"
},
"dependencies": {
+ "@sindresorhus/slugify": "^2.2.1",
"@strapi/design-system": "^2.0.0-rc.30",
"@strapi/icons": "^2.0.0-rc.30",
- "react-intl": "^7.1.14"
+ "react-intl": "^7.1.14",
+ "yup": "^0.32.11"
},
"devDependencies": {
"@strapi/sdk-plugin": "^5.4.0",