@formio/js 5.0.0-dev.5898.ffba52a → 5.0.0-dev.5902.8763b69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/Changelog.md +307 -10
  2. package/dist/formio.form.js +603 -591
  3. package/dist/formio.form.min.js +1 -1
  4. package/dist/formio.form.min.js.LICENSE.txt +2 -2
  5. package/dist/formio.full.js +605 -593
  6. package/dist/formio.full.min.js +1 -1
  7. package/dist/formio.full.min.js.LICENSE.txt +2 -2
  8. package/dist/formio.js +3131 -209
  9. package/dist/formio.min.js +1 -1
  10. package/dist/formio.min.js.LICENSE.txt +14 -0
  11. package/dist/formio.utils.js +58 -46
  12. package/dist/formio.utils.min.js +1 -1
  13. package/dist/formio.utils.min.js.LICENSE.txt +2 -2
  14. package/lib/cjs/Webform.d.ts +1 -1
  15. package/lib/cjs/Webform.js +27 -28
  16. package/lib/cjs/WebformBuilder.js +28 -36
  17. package/lib/cjs/Wizard.d.ts +0 -1
  18. package/lib/cjs/Wizard.js +19 -33
  19. package/lib/cjs/components/Components.d.ts +0 -7
  20. package/lib/cjs/components/Components.js +1 -33
  21. package/lib/cjs/components/_classes/component/Component.d.ts +39 -7
  22. package/lib/cjs/components/_classes/component/Component.js +106 -37
  23. package/lib/cjs/components/_classes/component/editForm/Component.edit.data.js +2 -2
  24. package/lib/cjs/components/_classes/component/editForm/Component.edit.validation.js +1 -1
  25. package/lib/cjs/components/_classes/componentModal/ComponentModal.d.ts +1 -0
  26. package/lib/cjs/components/_classes/componentModal/ComponentModal.js +1 -0
  27. package/lib/cjs/components/_classes/nested/NestedComponent.d.ts +4 -19
  28. package/lib/cjs/components/_classes/nested/NestedComponent.js +54 -60
  29. package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.d.ts +2 -1
  30. package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.js +9 -46
  31. package/lib/cjs/components/datagrid/DataGrid.d.ts +0 -1
  32. package/lib/cjs/components/datagrid/DataGrid.js +1 -45
  33. package/lib/cjs/components/datamap/DataMap.js +2 -3
  34. package/lib/cjs/components/editgrid/EditGrid.d.ts +1 -1
  35. package/lib/cjs/components/editgrid/EditGrid.js +20 -15
  36. package/lib/cjs/components/form/Form.d.ts +1 -3
  37. package/lib/cjs/components/form/Form.js +21 -28
  38. package/lib/cjs/components/hidden/Hidden.d.ts +0 -1
  39. package/lib/cjs/components/hidden/Hidden.js +1 -1
  40. package/lib/cjs/components/html/HTML.js +15 -3
  41. package/lib/cjs/components/radio/Radio.js +2 -3
  42. package/lib/cjs/components/select/editForm/Select.edit.data.d.ts +1 -1
  43. package/lib/cjs/components/select/editForm/Select.edit.data.js +1 -0
  44. package/lib/cjs/components/selectboxes/SelectBoxes.js +8 -1
  45. package/lib/cjs/components/signature/Signature.js +3 -1
  46. package/lib/cjs/utils/conditionOperators/DateGreaterThan.js +2 -2
  47. package/lib/cjs/utils/conditionOperators/IsEmptyValue.d.ts +2 -2
  48. package/lib/cjs/utils/conditionOperators/IsEmptyValue.js +2 -2
  49. package/lib/cjs/utils/conditionOperators/IsEqualTo.d.ts +2 -2
  50. package/lib/cjs/utils/conditionOperators/IsEqualTo.js +2 -2
  51. package/lib/cjs/utils/formUtils.d.ts +25 -14
  52. package/lib/cjs/utils/formUtils.js +11 -16
  53. package/lib/cjs/utils/i18n.js +5 -0
  54. package/lib/cjs/utils/utils.d.ts +1 -2
  55. package/lib/cjs/utils/utils.js +15 -31
  56. package/lib/mjs/Webform.d.ts +1 -1
  57. package/lib/mjs/Webform.js +24 -27
  58. package/lib/mjs/WebformBuilder.js +28 -36
  59. package/lib/mjs/Wizard.d.ts +0 -1
  60. package/lib/mjs/Wizard.js +16 -29
  61. package/lib/mjs/components/Components.d.ts +0 -7
  62. package/lib/mjs/components/Components.js +1 -32
  63. package/lib/mjs/components/_classes/component/Component.d.ts +39 -7
  64. package/lib/mjs/components/_classes/component/Component.js +108 -38
  65. package/lib/mjs/components/_classes/component/editForm/Component.edit.data.js +2 -2
  66. package/lib/mjs/components/_classes/component/editForm/Component.edit.validation.js +1 -1
  67. package/lib/mjs/components/_classes/componentModal/ComponentModal.d.ts +1 -0
  68. package/lib/mjs/components/_classes/componentModal/ComponentModal.js +1 -0
  69. package/lib/mjs/components/_classes/nested/NestedComponent.d.ts +4 -19
  70. package/lib/mjs/components/_classes/nested/NestedComponent.js +55 -61
  71. package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.d.ts +2 -1
  72. package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.js +8 -43
  73. package/lib/mjs/components/datagrid/DataGrid.d.ts +0 -1
  74. package/lib/mjs/components/datagrid/DataGrid.js +1 -45
  75. package/lib/mjs/components/datamap/DataMap.js +2 -3
  76. package/lib/mjs/components/editgrid/EditGrid.d.ts +1 -1
  77. package/lib/mjs/components/editgrid/EditGrid.js +22 -14
  78. package/lib/mjs/components/form/Form.d.ts +1 -3
  79. package/lib/mjs/components/form/Form.js +22 -28
  80. package/lib/mjs/components/hidden/Hidden.d.ts +0 -1
  81. package/lib/mjs/components/hidden/Hidden.js +1 -1
  82. package/lib/mjs/components/html/HTML.js +15 -3
  83. package/lib/mjs/components/radio/Radio.js +2 -3
  84. package/lib/mjs/components/select/editForm/Select.edit.data.d.ts +1 -1
  85. package/lib/mjs/components/select/editForm/Select.edit.data.js +1 -0
  86. package/lib/mjs/components/selectboxes/SelectBoxes.js +8 -1
  87. package/lib/mjs/components/signature/Signature.js +3 -1
  88. package/lib/mjs/utils/conditionOperators/DateGreaterThan.js +2 -2
  89. package/lib/mjs/utils/conditionOperators/IsEmptyValue.d.ts +2 -2
  90. package/lib/mjs/utils/conditionOperators/IsEmptyValue.js +2 -2
  91. package/lib/mjs/utils/conditionOperators/IsEqualTo.d.ts +2 -2
  92. package/lib/mjs/utils/conditionOperators/IsEqualTo.js +2 -2
  93. package/lib/mjs/utils/formUtils.d.ts +25 -14
  94. package/lib/mjs/utils/formUtils.js +2 -12
  95. package/lib/mjs/utils/i18n.js +4 -0
  96. package/lib/mjs/utils/utils.d.ts +1 -2
  97. package/lib/mjs/utils/utils.js +14 -29
  98. package/package.json +4 -4
package/Changelog.md CHANGED
@@ -8,15 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
  ### Changed
9
9
  - FIO-8270: panel component closing on logic event trigger
10
10
  - FIO-8575: Added ability to reload google maps library with correct API key
11
- - FIO-8659: no modal edit in display tab
12
- - Removing fetch ponyfill since it is no longer needed
13
- - FIO-8652: DataGrid does not reorder
14
11
  - Fixing the submitOnEnter where it will show the loader for the submit
15
- - Fixing the formioReady promise to always resolve if you load it from the full source instead of the embed code
16
12
  - FIO-8126: Fixed select component emitting blur on click
17
13
  - FIO-8304: allow for multivalue masks to have blank input mask option
18
- - FIO-8570: fixed decimal symbol property on number component
19
14
  - 5.x - FIO-8426: changes required for eSignature
15
+ -
20
16
  - FIO-8596: added the editGridEditRow and editGridOpenModal events for editGrid
21
17
  - FIO-7733 remove form min height
22
18
  - FIO-8414 | FIO-8403 | FIO-8389: Fixes 5x validations and conditionals for array data components
@@ -112,6 +108,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
112
108
  - FIO-9120: Fix issue with unchecking radio default value
113
109
  - FIO-7195/FIO-8234: Fixes an issue where Select renders value properties instead of labels in DataTable
114
110
  - FIO-7195: Fixes an issue where Radio/SelectBoxes will show values instead of labels on View tab and in DataTable
111
+ - FIO-9217 Fix: allow moment.js datetime custom default values in calendar widget-text field components
112
+ - FIO-8677: Fixes an issue where its possible to draweon Signature on the View tab of PDF form
113
+ - FIO-9314: made select data property a hidden component and changed hidden component empty value to null
114
+ - FIO-9347: fixed select preview issue in form builder
115
+ - FIO-8518: fixed adding checkbox with radio type to pdf design page
116
+ - FIO-9418: Fixed the edit grid errors to show the outer error wrapper if any fields in the edit grid are invalid
117
+
118
+ # Change Log
119
+ All notable changes to this project will be documented in this file
120
+
121
+ The format is based on [Keep a Changelog](http://keepachangelog.com/)
122
+ and this project adheres to [Semantic Versioning](http://semver.org/).
123
+
124
+ ## 5.0.0
125
+ ### Changed
126
+ - Official Release
127
+ - Updated @formio/bootstrap@3.0.0
128
+ - Updated @formio/core@2.3.0
115
129
 
116
130
  ### New Features
117
131
 
@@ -162,7 +176,7 @@ This is a **Breaking Change** so please see the section below for more informati
162
176
  The 5.x renderer incorporates our new Core validation engine found @ https://github.com/formio/core/tree/master/src/process. This process can be briefly described within the pull request notes @ https://github.com/formio/formio.js/pull/5317. This will also improve our Iso-morphic behavior for our renderer validation and significantly improve memory and processor consumption for server-side form validations. This feature does have a **Breaking Change** which is described below.
163
177
 
164
178
  #### Core SDK
165
- With the 5.x renderer, the Formio SDK is now part of our Core library found @ https://github.com/formio/core/tree/master/src/sdk. It is now imported directly into the @formio/js library and is re-exported to support reverse compatability. Because of this, there should not be any code upgrade involved.
179
+ With the 5.x renderer, the Formio SDK is now part of our Core library found @ https://github.com/formio/core/tree/master/src/sdk. It is now imported directly into the @formio/js library and is re-exported to support reverse compatability. Because of this, there should not be any code upgrade involved.
166
180
 
167
181
  For example, the following code still works.
168
182
 
@@ -203,7 +217,7 @@ With the 5.x version of the renderer/builder, there has been much effort into re
203
217
  - formio.form.min.js ~ 1.4mb => ~30% size reduction
204
218
  - formio.min.js (SDK) ~ 235k => ~50% size reduction
205
219
 
206
- #### New lazy-loading Embedding method.
220
+ #### New lazy-loading Embedding method.
207
221
  One of the more exciting new additions to the 5.x renderer is the new lazy-loading process for adding the renderer to your application. There is a new file that is included with the 5.x renderer called "formio.embed.js". This file is tiny coming in at ~10kb. What this file does, however, is make it so that you can bundle a lazy-loading renderer within your application without increasing the build sizes of your application.
208
222
 
209
223
  To use the new lazy-loading features, you will need to change your imports from the following to the new embed source as the following illustrates.
@@ -275,7 +289,6 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
275
289
  ```
276
290
 
277
291
  ### Breaking Changes
278
- - Sketchpad imageType is being removed. All image types are now treated the same. You no longer need the imageType property in your form json
279
292
  - Bootstrap 5 Default Template - With the 5.x version of the renderer, the default template is now **Bootstrap 5** and is found @ https://github.com/formio/bootstrap repo.
280
293
  - Bootstrap Icons - Now, instead of Font Awesome being the default icon set for our renderer, we are using Bootstrap Icons as the default icon set which is compatible with Bootstrap 5. Of course, you can always change out icon sets, but this is now the default.
281
294
  - This version implements a new validation system. Within this, there are some changes that you should be aware of.
@@ -299,7 +312,7 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
299
312
  ```js
300
313
  const isValid = form.getComponent('editgrid').validateRow().length === 0;
301
314
  ```
302
-
315
+
303
316
  - In the 5.x renderer, the errors array will always be populated if there are errors in the form. They may not be displayed depending on the "pristine" state of the rendered form, but the error is always populated if there are form errors. This is different in 4.x where the error property would only contain and error if an error is VISIBLE on the form. This means that it is difficult to determine if a form has errors without executing the checkValidity() method with the dirty flag set to "true". You no longer need to do this in the 5.x renderer.
304
317
 
305
318
  **4.x Renderer**
@@ -328,7 +341,289 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
328
341
  console.log(textField.visibleErrors); // This is the equivalent of the 4.x renderer "errors" array.
329
342
  ```
330
343
 
331
- - With the 5.x renderer, all templates are now stored within a separate repo, and are included as a dependency for this renderer.
344
+ - With the 5.x renderer, all templates are now stored within a separate repo, and are included as a dependency for this renderer.
345
+
346
+
347
+ ## 5.0.0-rc.102
348
+ ### Changed
349
+ - Updated @formio/core@2.3.0-rc.23
350
+
351
+ ## 5.0.0-rc.101
352
+ ### Changed
353
+ - FIO-9361: Fix showing extra submit buttons
354
+ - FIO-9327: Fixed an issue where select boxes default values would become messed up during builder mode.
355
+ - FIO-9350 Wizard: Show form-level errors after failed submission on subsequent form interaction when current page has no errors
356
+
357
+ ## 5.0.0-rc.100
358
+ ### Changed
359
+ - FIO-8423: change default parent tag from p to div
360
+ - FIO-9347: Fixed select preview issue in form builder
361
+ - FIO-9329: update tooltip for validateWhenHidden
362
+ - FIO-9386: fixed an issue where configured logic prevents the component settings saving because of validation configured in logic
363
+ - FIO-9360: validate current page only on wizard change
364
+
365
+ ## 5.0.0-rc.99
366
+ ### Changed
367
+ - Updated @formio/core@2.3.0-rc.22
368
+ - FIO-9329: validateWhenHidden respects both conditionally hidden and intentionally hidden
369
+ - FIO-9354: Fix custom translation not applied to error message
370
+
371
+ ## 5.0.0-rc.98
372
+ ### Changed
373
+ - FIO-9280 fixed validation for select boxes with valid values and when value property is not set
374
+
375
+ ## 5.0.0-rc.97
376
+ ### Changed
377
+ - Updated @formio/core@2.3.0-rc.21
378
+ - FIO-9290: fixed an issue where infinite loader is shown when radio/selectboxes with url type is failed to load options
379
+ - FIO-9280 fixed value property validation
380
+
381
+ ### Changed
382
+ - FIO-9283: fixed an issue where select with resource dataSrc does not display values in readOnly mode
383
+
384
+ ## 5.0.0-rc.96
385
+ ### Changed
386
+ - Updated @formio/core@2.3.0-rc.18
387
+ - FIO-9259 fixed errors list for parent wizard with nested wizard
388
+ - FIO-9176: updated instance.component.path
389
+ - FIO-9205: fixed labels in select filter feature
390
+
391
+ ## 5.0.0-rc.95
392
+ ### Changed
393
+ - Updated @formio/core@2.3.0-rc.17
394
+ - FIO-9205: fixed an issue where Select Filter feature does not work
395
+ - FIO-9173: Allow Scientific Notations
396
+ - FIO-9247 fixed triggering custom validation inside Edit Grid
397
+
398
+
399
+ ## 5.0.0-rc.94
400
+ ### Changed
401
+ - Updated @formio/bootstrap@3.0.0-rc.41
402
+ - Updated @formio/core@2.3.0-rc.16
403
+
404
+ ## 5.0.0-rc.93
405
+ ### Changed
406
+ - Updated @formio/bootstrap@3.0.0-rc.40
407
+ - Updated @formio/core@2.3.0-rc.14
408
+ - FIO-9197: Fix Day component triggered required validation when loading form
409
+ - FIO-7195: Fixes an issue where Radio/SelectBoxes will show values instead of labels on View tab and in DataTable
410
+ - FIO-7778: validation link does not open modal
411
+ - FIO-9072: removed setting dirty flag to true on set submission and changed tests
412
+ - FIO-9189: moved some methods to core
413
+ - FIO-9228: fixed an issue where error messages are duplicated in error list for nested wizard
414
+
415
+ ## 5.0.0-rc.92
416
+ ### Changed
417
+ - Updated @formio/bootstrap@3.0.0-rc.39
418
+ - Updated @formio/core@2.3.0-rc.13
419
+ - FIO-9196: Fixed issue with getting default value instead of requested value in Day component
420
+ - FIO-9208: Changing the links to go to help.form.io instead of github page.
421
+ - FIO-8510: changes in nested forms trigger modified change in the parent
422
+ - FIO-9086: time component default value validation
423
+ - FIO-9186: added test for the issue reated to validation inside layout components insode editGrid
424
+ - FIO-9184: Fixed edit grid row validation for new row
425
+ - FIO-9144 Fix cursor jump in number component
426
+
427
+ ## 5.0.0-rc.91
428
+ ### Changed
429
+ - Updated @formio/bootstrap@3.0.0-rc.38
430
+ - Updated @formio/core@2.3.0-rc.10
431
+ - FIO-7195/FIO-8234: Fixes an issue where Select renders value properties instead of labels in DataTable
432
+ - FIO-9158: fixed password component error in Edit page
433
+ - FIO-9153: fixed an issue where tagpad components skip front-end validation before submission
434
+
435
+ ## 5.0.0-rc.90
436
+ ### Changed
437
+ - Updated @formio/core@2.3.0-rc.9
438
+ - FIO-9127 fixed saving empty values for Day component with hidden fields
439
+
440
+ ## 5.0.0-rc.89
441
+ ### Changed
442
+ - Updated @formio/core@2.3.0-rc.8
443
+ - FIO-8914: fixed an issue where select url does not work properly when url value has whitespaces at the end
444
+ - FIO-8990: fixed incorrect moment export
445
+ - FIO-9056: Fix enabling multiple values for address component
446
+ - FIO-9147: fixed an issue where the simple conditionally visible component is not validated on change
447
+ - FIO-9126 fixed display of value for Day component with hidden fields
448
+ - FIO-9120: Fix issue with unchecking radio default value
449
+ - FIO-9158: fixed an issue where Password component error message persists to displayed in Edit page
450
+ - FIO-9127 fixed saving an empty value for day component after deleting values
451
+ - FIO-9153-9154: fixed console errors when navigating tagpad validation errors
452
+ - FIO-8948-8950: fixed an issue where radio and select boxes with url type do not display in PDF download
453
+ - FIO-9080 checkbox radio validation error
454
+ - FIO-9148: Fixed duplicated revision versions
455
+
456
+ ## 5.0.0-rc.88
457
+ ### Changed
458
+ - Updated @formio/core@2.3.0-rc.7
459
+
460
+ ## 5.0.0-rc.87
461
+ ### Changed
462
+ - FIO-9059: fixed an issue where the value for textarea with json datatype is not normalized and set correctly
463
+
464
+ ## 5.0.0-rc.86
465
+ ### Changed
466
+ - Updated @formio/core@2.3.0-rc.6
467
+
468
+ - FIO-9075: fixed an issue where the form cannot be resubmitted if it has server errors
469
+ - FIO-8414 | FIO-8403 | FIO-8389: Fixes 5x validations and conditionals for array data components
470
+ - FIO-9097 fixed navigation through the errors list
471
+
472
+ ## 5.0.0-rc.85
473
+ ### Changed
474
+ - Updated @formio/core@2.3.0-rc.4
475
+
476
+ ### Changed
477
+ - FIO-8719 fixed error message display for nested wizard components
478
+ - FIO-8962 Fixed screen shifting when validation errors pop up in an embedded Wizard form
479
+ - Bugfix: allow paths for valueProperty
480
+
481
+ ## 5.0.0-rc.84
482
+
483
+ ## 5.0.0-rc.83
484
+ ### Changed
485
+ - FIO-9010: tighten up multivalue normalization by covering 'any' type models
486
+ - FIO-8986 fixed setting default value for day ,component with hidden day and month
487
+ - FIO-9034 fixed creating extra submit button
488
+
489
+ ## 5.0.0-rc.82
490
+ ### Changed
491
+ - FIO-8234/FIO-7195: Fixes an issue where value properties are shown instead of labels for Select component with Resource/URL data sources in read only mode and for modal preview
492
+
493
+ ## 5.0.0-rc.81
494
+ ### Changed
495
+ - Updated @formio/core@2.3.0-rc.3
496
+ - FIO-8991: fixed an issue where select value (when it is array with numbers) does not display in submission grid
497
+ - FIO-8951: Updated conditions for selectData and added logic to clear selectData
498
+ - FIO-9010 fixed disappearance of components inside Columns after editing
499
+ - FIO-8938 fixed label display for multiple select with dataSrc resource
500
+ - FIO-8908: Fix error message appears when saving not fully filled conditionals tab
501
+
502
+ ## 5.0.0-rc.80
503
+ ### Changed
504
+ - Updated @formio/core@2.2.3-rc.2
505
+
506
+ ## 5.0.0-rc.79
507
+ ### Changed
508
+ - Updated @formio/core@2.2.3-rc.1
509
+ - FIO-8914: fixed an issue where errors list doesnot appear when submitting a PDF form
510
+ - FIO-8954 previously selected option is displayed in metadata with data source = url
511
+ - FIO-8920 fixed errors list for the form with nested wizard
512
+ - FIO-8986 fixed setting up of default value with hidden fields
513
+ - FIO-8912: fix normalization in submission
514
+ - Fixed an issue where the 'root' may be the component that does not have a getComponent method
515
+ - FIO-8972 fixed display of select componet with custom dataSrc on Data Tab
516
+ - FIO-8912 update to model types
517
+
518
+ ## 5.0.0-rc.78
519
+ ### Changed
520
+ - FIO-8072: Added conditional operators for select component with number data type
521
+
522
+ ## 5.0.0-rc.77
523
+ ### Changed
524
+ - Updated @formio/core@2.2.2
525
+ - FIO-8900-8899: made only 2 operators available for address component in conditionals ui and fixed setting an empty value for address
526
+ - FIO-8912: consolidate normalization for multivalue components
527
+ - FIO-8795 fixed selected data after removing row
528
+
529
+ ## 5.0.0-rc.76
530
+ ### Changed
531
+ - Updated @formio/core@2.2.2-rc.5
532
+ - FIO-8874: fixed conditional value field for time component
533
+ - FIO-8849: fixed an issue where value of the selctboxes/radio with URL data source are not available in simple conditons UI
534
+ - FIO-8931: Disable file synchronization feature
535
+ - FIO-8866-8864: fixed simple conditions operators for recaptcha
536
+ - FIO-8921: fixed an issue where newly created PDF-form cannot be saved in builder after adding some components in it
537
+ - FIO-8798: updated shape of the data of day component with hidden fields
538
+
539
+ ## 5.0.0-rc.75
540
+ ### Changed
541
+ - Updated @formio/core@2.2.2-rc.3
542
+
543
+ ## 5.0.0-rc.74
544
+ ### Changed
545
+ - Updated @formio/core@2.2.2-rc.2
546
+ - FIO-8799 updated conditional tab for Time Component
547
+ - FIO-8797: set empty day component value to the empty string
548
+
549
+ - FIO-8760: Fixes an issue where nested form is not getting all the options
550
+ - FIO-8789: Fixing issues where the wrong urls are used for CDN on remote environments
551
+
552
+ ## 5.0.0-rc.73
553
+ ### Changed
554
+ - FIO-8729: fixed an issue where the rollback to default templates does not work correctly and unknown template message is shown
555
+
556
+ ## 5.0.0-rc.72
557
+ ### Changed
558
+ - Updated @formio/core@2.2.2-rc.1
559
+ - FIO-8684: Fixes cannot attach more than one component to the PDF form
560
+ - Bugfix/submission metadata nullish
561
+ - FIO-8765: fixed an issue where dataMap thows an error
562
+ - FIO-8719 fixed validation for Data Grid component inside nested wizard
563
+
564
+ ### Changed
565
+ - FIO-8621: error event on file upload adding
566
+ - FIO-8783: Fixed the issue when validation messages disappear after collapse and expand the panel
567
+
568
+ ## 5.0.0-rc.71
569
+ ### Changed
570
+ - Updated @formio/bootstrap@3.0.0-rc.37
571
+
572
+ ## 5.0.0-rc.70
573
+ ### Changed
574
+ - Updated @formio/core@2.2.0-rc.9
575
+ - FIO-8759 fixed validation for the default value component
576
+ - FIO-8752: coerced keyboard actions to a boolean value
577
+ - FIO-8389: Fix conditional logic for Edit Grid
578
+ - FIO-8647,8721: validation not triggered for each row after the first one in data and edit grid
579
+ - FIO-8720: fixed errors occurring with valid time and number components
580
+ - FIO-8719 fixed validation for nested wizard fields
581
+ - FIO-5748 Fixed preview not working correctly after hiding/showing it
582
+
583
+ ## 5.0.0-rc.69
584
+ ### Changed
585
+ - Updated @formio/core@2.2.0-rc.7
586
+ - FIO-8570: fixed decimal symbol property on number component
587
+ - FIO-8570: fixed thousandSeparator problem and decimal symbol problem
588
+
589
+ ## 5.0.0-rc.68
590
+ ### Changed
591
+ - Updated @formio/core@2.2.0-rc.6
592
+ - FIO-7733 remove form min height
593
+ - FIO-8710: fixed incorrect Components import that causes errors when interacting with form components
594
+ - FIO-8716 fixed unsavedRows validation for Edit Grid
595
+ - FIO-7478: fixed and isse where dataGrod reordering does not work in 5.x and fixed reordering with select component
596
+
597
+ ## 5.0.0-rc.67
598
+ ### Changed
599
+ - Updated @formio/core@2.2.0-rc.5
600
+ - FIO-8633 fixed icon name for Edit Grid
601
+ - FIO-8645: day component required validation error not correct
602
+ - FIO-8688 fixed 'global is not defined' error message
603
+ - FIO-8639 fixed error when adding address component
604
+
605
+ ## 5.0.0-rc.66
606
+ ### Changed
607
+ - FIO-8652: DataGrid does not reorder
608
+ - FIO-8659: no modal edit in display tab
609
+
610
+ ## 5.0.0-rc.65
611
+ ### Changed
612
+ - Updated @formio/core@2.2.0-rc.4
613
+
614
+ ## 5.0.0-rc.64
615
+ ### Changed
616
+ - Removing fetch ponyfill since it is no longer needed.
617
+
618
+ ## 5.0.0-rc.63
619
+ ### Changed
620
+ - Fixing the formioReady promise to always resolve if you load it from the full source instead of the embed code.
621
+
622
+ ## 5.0.0-rc.62
623
+ ### Changed
624
+ - Updated @formio/bootstrap@3.0.0-rc.36
625
+
626
+
332
627
 
333
628
  ### Fixed
334
629
  - FIO-7525: fixed an issue where new conditional logic based on select boxes does not work
@@ -412,6 +707,8 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
412
707
  - FIO-8496: added loading=async for Google Maps JavaScript API
413
708
  - FIO-8445: Fixed searchbar not focusing when navigating using up and down arrows
414
709
  - FIO-7936: showCounter messages not translating
710
+ - FIO-7775: reset value event resets component values to their default values
711
+ - FIO-6710: added translation for day component placeholder
415
712
 
416
713
  ## 5.0.0-rc.37
417
714
  ### Fixed