@formio/js 5.5.1 → 5.5.2
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 +23 -1
- 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 +23 -1
- package/dist/formio.form.js +18 -194
- package/dist/formio.form.min.css +1 -1
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +2 -2
- package/dist/formio.full.css +23 -1
- package/dist/formio.full.js +18 -194
- package/dist/formio.full.min.css +1 -1
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +2 -2
- package/dist/formio.js +311 -180
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +12 -2
- package/dist/formio.utils.js +7 -7
- package/dist/formio.utils.min.js +1 -1
- package/dist/formio.utils.min.js.LICENSE.txt +2 -2
- package/lib/cjs/Embed.js +1 -1
- package/lib/cjs/Formio.js +1 -1
- package/lib/cjs/PDF.js +5 -0
- package/lib/cjs/Wizard.d.ts +5 -0
- package/lib/cjs/Wizard.js +22 -0
- package/lib/cjs/package.json +1 -1
- package/lib/cjs/providers/storage/indexeddb.js +2 -2
- package/lib/cjs/utils/utils.d.ts +2 -5
- package/lib/cjs/utils/utils.js +2 -13
- package/lib/mjs/Embed.js +1 -1
- package/lib/mjs/Formio.js +1 -1
- package/lib/mjs/PDF.js +4 -0
- package/lib/mjs/Wizard.d.ts +5 -0
- package/lib/mjs/Wizard.js +22 -0
- package/lib/mjs/package.json +1 -1
- package/lib/mjs/providers/storage/indexeddb.js +2 -2
- package/lib/mjs/utils/utils.d.ts +2 -5
- package/lib/mjs/utils/utils.js +3 -12
- package/package.json +3 -4
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
* MIT licensed
|
|
24
24
|
*/
|
|
25
25
|
|
|
26
|
-
/*! @license DOMPurify 3.4.
|
|
26
|
+
/*! @license DOMPurify 3.4.13 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.4.13/LICENSE */
|
|
27
27
|
|
|
28
28
|
/*! choices.js v11.1.0 | © 2025 Josh Johnson | https://github.com/jshjohnson/Choices#readme */
|
|
29
29
|
|
|
30
|
-
/*! formiojs v5.5.
|
|
30
|
+
/*! formiojs v5.5.2 | https://unpkg.com/formiojs@5.5.2/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
|
@@ -2565,7 +2565,9 @@ select.form-control {
|
|
|
2565
2565
|
position: relative;
|
|
2566
2566
|
}
|
|
2567
2567
|
|
|
2568
|
-
.col-form-label.field-required:after
|
|
2568
|
+
.col-form-label.field-required:after,
|
|
2569
|
+
.form-check-label.field-required:after,
|
|
2570
|
+
.usa-checkbox__label.field-required:after {
|
|
2569
2571
|
content: none !important;
|
|
2570
2572
|
}
|
|
2571
2573
|
|
|
@@ -2580,6 +2582,11 @@ select.form-control {
|
|
|
2580
2582
|
color: #eb0000;
|
|
2581
2583
|
}
|
|
2582
2584
|
|
|
2585
|
+
.formio-component-radio label.col-form-label,
|
|
2586
|
+
.formio-component-selectboxes label.col-form-label {
|
|
2587
|
+
display: inline;
|
|
2588
|
+
}
|
|
2589
|
+
|
|
2583
2590
|
.formio-error-wrapper,
|
|
2584
2591
|
.formio-warning-wrapper {
|
|
2585
2592
|
padding: 1em;
|
|
@@ -3367,6 +3374,21 @@ body.formio-dialog-open {
|
|
|
3367
3374
|
right: 5px;
|
|
3368
3375
|
}
|
|
3369
3376
|
|
|
3377
|
+
.formio-component-label-hidden > .required-star {
|
|
3378
|
+
position: absolute;
|
|
3379
|
+
top: 6px;
|
|
3380
|
+
right: 5px;
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
.formio-component-datetime.formio-component-label-hidden > .required-star {
|
|
3384
|
+
right: 45px;
|
|
3385
|
+
}
|
|
3386
|
+
|
|
3387
|
+
.formio-component-select.formio-component-label-hidden > .required-star,
|
|
3388
|
+
.formio-component-resource.formio-component-label-hidden > .required-star {
|
|
3389
|
+
right: 40px;
|
|
3390
|
+
}
|
|
3391
|
+
|
|
3370
3392
|
.formio-component-datetime .control-label--hidden.field-required {
|
|
3371
3393
|
right: 45px;
|
|
3372
3394
|
z-index: 3;
|