@formio/js 5.2.5 → 5.2.7-rc.0
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 +8 -0
- 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 +8 -0
- package/dist/formio.form.js +10 -10
- 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 +8 -0
- package/dist/formio.full.js +11 -11
- 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 +3 -3
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +1 -1
- package/dist/formio.utils.js +2 -2
- 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/Form.js +1 -1
- package/lib/cjs/FormBuilder.d.ts +2 -2
- package/lib/cjs/FormBuilder.js +1 -1
- package/lib/cjs/Formio.js +1 -1
- package/lib/cjs/components/_classes/component/Component.js +4 -1
- package/lib/cjs/components/datagrid/DataGrid.js +5 -1
- package/lib/cjs/components/day/Day.js +1 -1
- package/lib/cjs/components/editgrid/EditGrid.js +2 -0
- package/lib/cjs/package.json +1 -1
- package/lib/cjs/utils/index.d.ts +1 -0
- package/lib/cjs/utils/utils.d.ts +5 -0
- package/lib/cjs/utils/utils.js +18 -1
- package/lib/mjs/Embed.js +1 -1
- package/lib/mjs/Form.js +1 -1
- package/lib/mjs/FormBuilder.d.ts +2 -2
- package/lib/mjs/FormBuilder.js +1 -1
- package/lib/mjs/Formio.js +1 -1
- package/lib/mjs/components/_classes/component/Component.js +4 -1
- package/lib/mjs/components/datagrid/DataGrid.js +6 -2
- package/lib/mjs/components/day/Day.js +1 -1
- package/lib/mjs/components/editgrid/EditGrid.js +3 -1
- package/lib/mjs/package.json +1 -1
- package/lib/mjs/utils/index.d.ts +1 -0
- package/lib/mjs/utils/utils.d.ts +5 -0
- package/lib/mjs/utils/utils.js +16 -0
- package/package.json +4 -3
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
|
|
30
30
|
/*! choices.js v11.1.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
|
31
31
|
|
|
32
|
-
/*! formiojs v5.2.
|
|
32
|
+
/*! formiojs v5.2.6 | https://unpkg.com/formiojs@5.2.6/LICENSE.txt */
|
|
33
33
|
|
|
34
34
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
35
35
|
|
package/dist/formio.full.css
CHANGED
|
@@ -2559,6 +2559,14 @@ url("./fonts/bootstrap-icons.woff?e34853135f9e39acf64315236852cd5a") format("wof
|
|
|
2559
2559
|
position: relative;
|
|
2560
2560
|
}
|
|
2561
2561
|
|
|
2562
|
+
.col-form-label.field-required:after {
|
|
2563
|
+
content: none !important;
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
.required-star {
|
|
2567
|
+
color: #eb0000;
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2562
2570
|
.formio-error-wrapper,
|
|
2563
2571
|
.formio-warning-wrapper {
|
|
2564
2572
|
padding: 1em;
|