@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.
- package/dist/formio.builder.css +11 -5
- package/dist/formio.builder.min.css +1 -1
- package/dist/formio.embed.js +1 -1
- package/dist/formio.embed.min.js +1 -1
- package/dist/formio.embed.min.js.LICENSE.txt +1 -1
- package/dist/formio.form.css +11 -5
- package/dist/formio.form.js +2768 -2774
- package/dist/formio.form.min.css +1 -1
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +1 -1
- package/dist/formio.full.css +11 -5
- package/dist/formio.full.js +3368 -3374
- package/dist/formio.full.min.css +1 -1
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +1 -1
- package/dist/formio.js +1118 -1124
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +1 -1
- package/dist/formio.utils.js +1050 -1056
- package/dist/formio.utils.min.js +1 -1
- package/dist/formio.utils.min.js.LICENSE.txt +1 -1
- package/lib/cjs/Embed.js +1 -1
- package/lib/cjs/Formio.js +1 -1
- package/lib/cjs/components/_classes/component/Component.d.ts +5 -0
- package/lib/cjs/components/_classes/component/Component.js +16 -2
- package/lib/cjs/components/button/Button.d.ts +1 -0
- package/lib/cjs/components/button/Button.js +22 -1
- package/lib/cjs/components/datagrid/DataGrid.js +4 -5
- package/lib/cjs/components/select/Select.js +2 -3
- package/lib/cjs/package.json +1 -1
- package/lib/cjs/providers/address/GoogleAddressProvider.js +1 -1
- package/lib/cjs/translations/en.d.ts +1 -0
- package/lib/cjs/translations/en.js +3 -1
- package/lib/cjs/utils/utils.js +5 -5
- package/lib/mjs/Embed.js +1 -1
- package/lib/mjs/Formio.js +1 -1
- package/lib/mjs/components/_classes/component/Component.d.ts +5 -0
- package/lib/mjs/components/_classes/component/Component.js +16 -2
- package/lib/mjs/components/button/Button.d.ts +1 -0
- package/lib/mjs/components/button/Button.js +21 -1
- package/lib/mjs/components/datagrid/DataGrid.js +5 -6
- package/lib/mjs/components/select/Select.js +2 -3
- package/lib/mjs/package.json +1 -1
- package/lib/mjs/providers/address/GoogleAddressProvider.js +1 -1
- package/lib/mjs/translations/en.d.ts +1 -0
- package/lib/mjs/translations/en.js +3 -1
- package/lib/mjs/utils/utils.js +5 -5
- 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.
|
|
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
|
|
package/dist/formio.full.css
CHANGED
|
@@ -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-
|
|
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;
|