@vgip/meta-ui 2.1.1 → 2.1.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/fesm2022/vgip-meta-ui.mjs +4 -1
- package/fesm2022/vgip-meta-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/vendor/volta3/scss/components/_accordions.scss +5 -1
- package/vendor/volta3/scss/components/_callouts.scss +6 -2
- package/vendor/volta3/scss/components/_card.scss +1 -1
- package/vendor/volta3/scss/components/_form-elements.scss +1 -1
- package/vendor/volta3/scss/components/_modals.scss +1 -1
- package/vendor/volta3/scss/components/_tables.scss +1 -1
- package/vendor/volta3/scss/lib/_variables.scss +1 -1
|
@@ -1659,6 +1659,8 @@ class FieldAbstract {
|
|
|
1659
1659
|
return parseInt(v, 10);
|
|
1660
1660
|
}
|
|
1661
1661
|
catch (e) {
|
|
1662
|
+
if (window.scDebug)
|
|
1663
|
+
console.error(e);
|
|
1662
1664
|
return v;
|
|
1663
1665
|
}
|
|
1664
1666
|
}
|
|
@@ -5569,7 +5571,8 @@ class FieldDatetime extends FieldAbstract {
|
|
|
5569
5571
|
});
|
|
5570
5572
|
}
|
|
5571
5573
|
catch (e) {
|
|
5572
|
-
|
|
5574
|
+
if (window.scDebug)
|
|
5575
|
+
console.error(e);
|
|
5573
5576
|
}
|
|
5574
5577
|
}
|
|
5575
5578
|
}
|