@pinerohit11/testwidget 0.2.119 → 0.2.121
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/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -1583,7 +1583,10 @@ function Chargewidgetstyles() {
|
|
1583
1583
|
|
1584
1584
|
.error-span{
|
1585
1585
|
color:red !important;
|
1586
|
-
font-size:12px !important
|
1586
|
+
font-size:12px !important;
|
1587
|
+
text-align: left !important;
|
1588
|
+
width: 100% !important;
|
1589
|
+
display: block;
|
1587
1590
|
}
|
1588
1591
|
|
1589
1592
|
.charge-customer-name{
|
@@ -2626,6 +2629,7 @@ function GetPaymentPage(props) {
|
|
2626
2629
|
const hasError = validateAchData();
|
2627
2630
|
if (hasError) return;
|
2628
2631
|
else {
|
2632
|
+
setLoading2(true);
|
2629
2633
|
let dataForm = {
|
2630
2634
|
fractalpayPublicKey: fractalpayClientKey,
|
2631
2635
|
label: (achData == null ? void 0 : achData.name) || "John Doe",
|
package/dist/index.mjs
CHANGED
@@ -1545,7 +1545,10 @@ function Chargewidgetstyles() {
|
|
1545
1545
|
|
1546
1546
|
.error-span{
|
1547
1547
|
color:red !important;
|
1548
|
-
font-size:12px !important
|
1548
|
+
font-size:12px !important;
|
1549
|
+
text-align: left !important;
|
1550
|
+
width: 100% !important;
|
1551
|
+
display: block;
|
1549
1552
|
}
|
1550
1553
|
|
1551
1554
|
.charge-customer-name{
|
@@ -2588,6 +2591,7 @@ function GetPaymentPage(props) {
|
|
2588
2591
|
const hasError = validateAchData();
|
2589
2592
|
if (hasError) return;
|
2590
2593
|
else {
|
2594
|
+
setLoading2(true);
|
2591
2595
|
let dataForm = {
|
2592
2596
|
fractalpayPublicKey: fractalpayClientKey,
|
2593
2597
|
label: (achData == null ? void 0 : achData.name) || "John Doe",
|