data-driven-forms / react-forms

React library for rendering forms.
https://data-driven-forms.org/
Apache License 2.0
302 stars 87 forks source link

feat(mui5):introducing isFilterCaseInSensitive prop for dual-list-select filterOption #1472

Closed AmirSaif closed 3 months ago

AmirSaif commented 3 months ago

Description

Please include a summary of the change. introducing isFilterCaseInSensitive prop for dual-list-select filterOption. isFilterCaseInSensitive : false -> Filtering would be Case sensitive, CaTs would not match with cats. isFilterCaseInSensitive : true -> Filtering would not be Case sensitive, CaTs would match with cats. Schema (if applicable) export default { "fields": [ { "component": "customDualList", "name": "MUI", "isFilterCaseInSensitive":true, "options": [ { "value": "cats", "label": "cats" }, { "value": "cats_1", "label": "cats_1" }, { "value": "cats_2", "label": "cats_2" }, { "value": "zebras", "label": "zebras" }, { "value": "pigeons", "label": "pigeons" } ] } ] };

Checklist: (please see documentation page for more information)

vercel[bot] commented 3 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
react-forms ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 7, 2024 10:45pm
AmirSaif commented 3 months ago

Raised a new one: https://github.com/data-driven-forms/react-forms/pull/1473