@formio/js 5.4.0 → 5.4.1

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 (48) hide show
  1. package/dist/formio.builder.css +11 -5
  2. package/dist/formio.builder.min.css +1 -1
  3. package/dist/formio.embed.js +1 -1
  4. package/dist/formio.embed.min.js +1 -1
  5. package/dist/formio.embed.min.js.LICENSE.txt +1 -1
  6. package/dist/formio.form.css +11 -5
  7. package/dist/formio.form.js +2768 -2774
  8. package/dist/formio.form.min.css +1 -1
  9. package/dist/formio.form.min.js +1 -1
  10. package/dist/formio.form.min.js.LICENSE.txt +1 -1
  11. package/dist/formio.full.css +11 -5
  12. package/dist/formio.full.js +3368 -3374
  13. package/dist/formio.full.min.css +1 -1
  14. package/dist/formio.full.min.js +1 -1
  15. package/dist/formio.full.min.js.LICENSE.txt +1 -1
  16. package/dist/formio.js +1118 -1124
  17. package/dist/formio.min.js +1 -1
  18. package/dist/formio.min.js.LICENSE.txt +1 -1
  19. package/dist/formio.utils.js +1050 -1056
  20. package/dist/formio.utils.min.js +1 -1
  21. package/dist/formio.utils.min.js.LICENSE.txt +1 -1
  22. package/lib/cjs/Embed.js +1 -1
  23. package/lib/cjs/Formio.js +1 -1
  24. package/lib/cjs/components/_classes/component/Component.d.ts +5 -0
  25. package/lib/cjs/components/_classes/component/Component.js +16 -2
  26. package/lib/cjs/components/button/Button.d.ts +1 -0
  27. package/lib/cjs/components/button/Button.js +22 -1
  28. package/lib/cjs/components/datagrid/DataGrid.js +4 -5
  29. package/lib/cjs/components/select/Select.js +2 -3
  30. package/lib/cjs/package.json +1 -1
  31. package/lib/cjs/providers/address/GoogleAddressProvider.js +1 -1
  32. package/lib/cjs/translations/en.d.ts +1 -0
  33. package/lib/cjs/translations/en.js +3 -1
  34. package/lib/cjs/utils/utils.js +5 -5
  35. package/lib/mjs/Embed.js +1 -1
  36. package/lib/mjs/Formio.js +1 -1
  37. package/lib/mjs/components/_classes/component/Component.d.ts +5 -0
  38. package/lib/mjs/components/_classes/component/Component.js +16 -2
  39. package/lib/mjs/components/button/Button.d.ts +1 -0
  40. package/lib/mjs/components/button/Button.js +21 -1
  41. package/lib/mjs/components/datagrid/DataGrid.js +5 -6
  42. package/lib/mjs/components/select/Select.js +2 -3
  43. package/lib/mjs/package.json +1 -1
  44. package/lib/mjs/providers/address/GoogleAddressProvider.js +1 -1
  45. package/lib/mjs/translations/en.d.ts +1 -0
  46. package/lib/mjs/translations/en.js +3 -1
  47. package/lib/mjs/utils/utils.js +5 -5
  48. package/package.json +5 -5
@@ -27,7 +27,7 @@
27
27
 
28
28
  /*! choices.js v11.1.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
29
29
 
30
- /*! formiojs v5.4.0 | https://unpkg.com/formiojs@5.4.0/LICENSE.txt */
30
+ /*! formiojs v5.4.1 | https://unpkg.com/formiojs@5.4.1/LICENSE.txt */
31
31
 
32
32
  /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
33
33
 
@@ -2891,6 +2891,12 @@ td > .formio-form-group {
2891
2891
  text-overflow: ellipsis;
2892
2892
  }
2893
2893
 
2894
+ /* Force remove (X) button visibility for single-select items with object values (custom dataSrc, no valueProperty). */
2895
+ .choices[data-type*=select-one] .choices__list--single .choices__item[data-deletable]:not([data-placeholder]) .choices__button {
2896
+ display: block;
2897
+ visibility: visible;
2898
+ }
2899
+
2894
2900
  .choices__input {
2895
2901
  padding: 2px;
2896
2902
  }
@@ -3715,19 +3721,19 @@ td .formio-component-modaledit .formio-modaledit-view-container {
3715
3721
  .table > tbody > tr > td.cell-align-left {
3716
3722
  text-align: left;
3717
3723
  }
3718
- .table > tbody > tr > td.cell-align-center > div {
3719
- margin-left: auto;
3720
- margin-right: auto;
3721
- }
3722
3724
  .table > tbody > tr > td.cell-align-center {
3723
3725
  text-align: center;
3724
3726
  }
3725
- .table > tbody > tr > td.cell-align-right > div {
3727
+ .table > tbody > tr > td.cell-align-center > div {
3726
3728
  margin-left: auto;
3729
+ margin-right: auto;
3727
3730
  }
3728
3731
  .table > tbody > tr > td.cell-align-right {
3729
3732
  text-align: right;
3730
3733
  }
3734
+ .table > tbody > tr > td.cell-align-right > div {
3735
+ margin-left: auto;
3736
+ }
3731
3737
 
3732
3738
  .table-responsive[ref=component] {
3733
3739
  overflow-x: visible;