Skip to content

Releases: data-driven-forms/react-forms

v3.22.4

21 Mar 12:15
Compare
Choose a tag to compare

3.22.4 (2024-03-21)

Bug fixes

@data-driven-forms/common~3.22.4

  • fix(common): lift compare values from select promises
  • fix(common): memoize initial select options value
  • fix(common): useSelect rendering loop

@data-driven-forms/react-renderer-demo~3.22.4

  • Fix fielprovider typo
  • Update codesandbox code template

v3.22.3

24 Jan 08:31
Compare
Choose a tag to compare

3.22.3 (2024-01-24)

Bug fixes

@data-driven-forms/ant-component-mapper~3.22.3

  • fix(all): replace defaultProps with inline function defaults

@data-driven-forms/blueprint-component-mapper~3.22.3

  • fix(all): replace defaultProps with inline function defaults

@data-driven-forms/carbon-component-mapper~3.22.3

  • fix(all): replace defaultProps with inline function defaults

@data-driven-forms/common~3.22.3

  • fix(all): replace defaultProps with inline function defaults

@data-driven-forms/mui-component-mapper~3.22.3

  • fix(all): replace defaultProps with inline function defaults

@data-driven-forms/pf4-component-mapper~3.22.3

  • fix(all): replace defaultProps with inline function defaults

@data-driven-forms/react-form-renderer~3.22.3

  • fix(all): replace defaultProps with inline function defaults

@data-driven-forms/react-renderer-demo~3.22.3

  • fix(all): replace defaultProps with inline function defaults

@data-driven-forms/suir-component-mapper~3.22.3

  • fix(all): replace defaultProps with inline function defaults

v3.22.2

08 Jan 09:28
Compare
Choose a tag to compare

3.22.2 (2024-01-08)

Bug fixes

@data-driven-forms/pf4-component-mapper~3.22.2

  • fix(pf4): fix date and time picker change attributes order

v3.22.1

07 Dec 08:15
Compare
Choose a tag to compare

3.22.1 (2023-12-07)

Bug fixes

@data-driven-forms/react-form-renderer~3.22.1

  • fix(renderer): add missing condition mapper attribute
  • fix(renderer): add mapped conditions to condition triggers

@data-driven-forms/react-renderer-demo~3.22.1

  • Update number value documentation example

v3.22.0

10 Nov 08:38
Compare
Choose a tag to compare

3.22.0 (2023-11-10)

Minor changes

@data-driven-forms/react-form-renderer~3.22.0

  • feat(renderer): allow condition mapping for when and is

@data-driven-forms/react-renderer-demo~3.22.0

  • feat(renderer): allow condition mapping for when and is

v3.21.10

06 Nov 14:35
Compare
Choose a tag to compare

3.21.10 (2023-11-06)

Bug fixes

@data-driven-forms/react-form-renderer~3.21.10

  • fix(renderer): pass field property to when in sequence and not

v3.21.9

06 Nov 07:56
Compare
Choose a tag to compare

3.21.9 (2023-11-06)

Bug fixes

@data-driven-forms/mui-component-mapper~3.21.9

  • fix(mui): Correctly use onBlur and onFocus for MUIDatePicker and MUITimepicker

v3.21.8

24 Oct 07:51
Compare
Choose a tag to compare

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

16 Oct 12:54
Compare
Choose a tag to compare

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

18 Sep 13:31
Compare
Choose a tag to compare

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