Releases: data-driven-forms/react-forms
v3.21.8
3.21.8 (2023-10-24)
Bug fixes
@data-driven-forms/pf4-component-mapper~3.21.8
- fix(pf): bug in wizard navbar
The wizard navigation should only contain one WizardNav component. Wrapping the WizardNavItems
in two WizardNav components is causing all steps to be treated as substeps and therefore don't
have step numbers. The fix is to remove one of the WizardNav wrappers.
v3.21.7
3.21.7 (2023-10-16)
Bug fixes
@data-driven-forms/pf4-component-mapper~3.21.7
- fix(pf4): fix bug in wizard navigation toolbar
In Patternfly 4, the WizardNavItem component step prop is "the step
passed into the onNavItemClick callback".
http://v4-archive.patternfly.org/v4/components/wizard#wizardnavitem
In Patternfly 5, onNavItemClick no longer exists. Instead, there is an
onClick callback which expects the index of the step to be navigated to.
https://www.patternfly.org/components/wizard/#wizardnavitem
However, filtering the navSchema like so: .filter((field) => field.primary) results in substeps with field.primary===false being
dropped. Practically, this means the 2nd substep and those following it.
Therefore, the index provided by .map((step, ind) => ... is incorrect.
The correct index can still be found from step.index.
v3.21.6
3.21.6 (2023-09-18)
Bug fixes
@data-driven-forms/common~3.21.6
- fix(common): Allow comparing select option value non primitives
@data-driven-forms/pf4-component-mapper~3.21.6
- fix(common): Allow comparing select option value non primitives
@data-driven-forms/react-renderer-demo~3.21.6
- fix(common): Allow comparing select option value non primitives
v3.21.5
v3.21.4
v3.21.3
v3.21.2
v3.21.1
3.21.1 (2023-08-29)
Bug fixes
@data-driven-forms/pf4-component-mapper~3.21.1
- fix(pf4): Add modal form class for PF4 wizard.
@data-driven-forms/react-renderer-demo~3.21.1
- Fix mui date picker and time picker examples
specify stackblitz dependency on @mui/x-date-pickers for latest release of major version 5 instead of using latest which used incompatible version 6
v3.21.0
3.21.0 (2023-08-01)
Minor changes
@data-driven-forms/common~3.21.0
- feat(pf4): Upgrade to pf4v5 dependency
Update Babel to use PF4 dynamic import paths.
@data-driven-forms/pf4-component-mapper~3.21.0
- feat(pf4): Upgrade to pf4v5 dependency
Update Babel to use PF4 dynamic import paths.
@data-driven-forms/react-renderer-demo~3.21.0
- feat(pf4): Upgrade to pf4v5 dependency
Update Babel to use PF4 dynamic import paths.
Bug fixes
@data-driven-forms/react-renderer-demo~3.21.0
- adding url to each sibling url
- adding more logs to collect preview link
- adding loggers to see vercel env variables
- fix: copy complete link from # button
- fix: eslint codebase issues
- fixing colors for links and buttons
@data-driven-forms/common~3.21.0
- fix: eslint codebase issues
- fixing colors for links and buttons