@pinerohit11/testwidget 0.2.107 → 0.2.109
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 +15 -5
- package/dist/index.mjs +15 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -171,8 +171,8 @@ var Loader = (props) => {
|
|
171
171
|
var Loader_default = Loader;
|
172
172
|
|
173
173
|
// src/app/components/baseurl.ts
|
174
|
-
var
|
175
|
-
var
|
174
|
+
var baseUrl = "http://192.168.1.63:8082/";
|
175
|
+
var masterBaseUrl = "http://192.168.1.63:8081/";
|
176
176
|
|
177
177
|
// src/app/components/Errortext.ts
|
178
178
|
var ErrorText = {
|
@@ -3644,6 +3644,9 @@ function AddCardStyle() {
|
|
3644
3644
|
background-color: #35254D;
|
3645
3645
|
}
|
3646
3646
|
|
3647
|
+
.custom-z-index {
|
3648
|
+
z-index: 9999 !important;
|
3649
|
+
}
|
3647
3650
|
#add-credit-card-panel{
|
3648
3651
|
padding: auto 10px !important}
|
3649
3652
|
/* Responsive Design */
|
@@ -3721,7 +3724,8 @@ function SuccessCardMszStyle() {
|
|
3721
3724
|
border: 1px solid #e3e3e3;
|
3722
3725
|
justify-content: center;
|
3723
3726
|
text-align: center;
|
3724
|
-
margin-top: 50px; /* Adjust this to move the content down */
|
3727
|
+
// margin-top: 50px; /* Adjust this to move the content down */
|
3728
|
+
margin: 50px auto 0 auto !important;
|
3725
3729
|
}
|
3726
3730
|
|
3727
3731
|
.card-success .success-icon {
|
@@ -3783,7 +3787,7 @@ function SuccessCardMszStyle() {
|
|
3783
3787
|
|
3784
3788
|
// src/app/components/SuccessCardMessage/SuccessCardMsz.tsx
|
3785
3789
|
var SuccessCardMsz = ({ onClose }) => {
|
3786
|
-
return /* @__PURE__ */ import_react17.default.createElement(import_react17.default.Fragment, null, /* @__PURE__ */ import_react17.default.createElement(SuccessCardMszStyle, null), /* @__PURE__ */ import_react17.default.createElement("div", { className: "card-success" }, /* @__PURE__ */ import_react17.default.createElement("div", { className: "
|
3790
|
+
return /* @__PURE__ */ import_react17.default.createElement(import_react17.default.Fragment, null, /* @__PURE__ */ import_react17.default.createElement(SuccessCardMszStyle, null), /* @__PURE__ */ import_react17.default.createElement("div", { className: "card-success" }, /* @__PURE__ */ import_react17.default.createElement("div", { className: "payment-success-container" }, /* @__PURE__ */ import_react17.default.createElement("div", { className: "success-icon" }, /* @__PURE__ */ import_react17.default.createElement("div", { className: "circle" }, /* @__PURE__ */ import_react17.default.createElement("i", { className: "fa fa-check-circle", "aria-hidden": "true" })), /* @__PURE__ */ import_react17.default.createElement("div", { className: "success-text" }, /* @__PURE__ */ import_react17.default.createElement("div", { className: "payment-success-text" }, "Your card was added successfully."), /* @__PURE__ */ import_react17.default.createElement("div", { className: "thank-you-text" }, "Thank you "))))));
|
3787
3791
|
};
|
3788
3792
|
var SuccessCardMsz_default = SuccessCardMsz;
|
3789
3793
|
|
@@ -4186,7 +4190,10 @@ function AddCardEasyPay(props) {
|
|
4186
4190
|
const showError = (msz) => {
|
4187
4191
|
import_sweetalert24.default.fire({
|
4188
4192
|
icon: "error",
|
4189
|
-
text: msz
|
4193
|
+
text: msz,
|
4194
|
+
customClass: {
|
4195
|
+
popup: "custom-z-index"
|
4196
|
+
}
|
4190
4197
|
});
|
4191
4198
|
};
|
4192
4199
|
const handleClose = () => {
|
@@ -4372,6 +4379,9 @@ function AddCardEasyPay(props) {
|
|
4372
4379
|
orderId: "",
|
4373
4380
|
zipCode: ""
|
4374
4381
|
});
|
4382
|
+
setTimeout(() => {
|
4383
|
+
HandleSubmit(e, "share", "");
|
4384
|
+
}, 2e3);
|
4375
4385
|
} catch (err) {
|
4376
4386
|
console.log(err);
|
4377
4387
|
hideLoader();
|
package/dist/index.mjs
CHANGED
@@ -133,8 +133,8 @@ var Loader = (props) => {
|
|
133
133
|
var Loader_default = Loader;
|
134
134
|
|
135
135
|
// src/app/components/baseurl.ts
|
136
|
-
var
|
137
|
-
var
|
136
|
+
var baseUrl = "http://192.168.1.63:8082/";
|
137
|
+
var masterBaseUrl = "http://192.168.1.63:8081/";
|
138
138
|
|
139
139
|
// src/app/components/Errortext.ts
|
140
140
|
var ErrorText = {
|
@@ -3606,6 +3606,9 @@ function AddCardStyle() {
|
|
3606
3606
|
background-color: #35254D;
|
3607
3607
|
}
|
3608
3608
|
|
3609
|
+
.custom-z-index {
|
3610
|
+
z-index: 9999 !important;
|
3611
|
+
}
|
3609
3612
|
#add-credit-card-panel{
|
3610
3613
|
padding: auto 10px !important}
|
3611
3614
|
/* Responsive Design */
|
@@ -3683,7 +3686,8 @@ function SuccessCardMszStyle() {
|
|
3683
3686
|
border: 1px solid #e3e3e3;
|
3684
3687
|
justify-content: center;
|
3685
3688
|
text-align: center;
|
3686
|
-
margin-top: 50px; /* Adjust this to move the content down */
|
3689
|
+
// margin-top: 50px; /* Adjust this to move the content down */
|
3690
|
+
margin: 50px auto 0 auto !important;
|
3687
3691
|
}
|
3688
3692
|
|
3689
3693
|
.card-success .success-icon {
|
@@ -3745,7 +3749,7 @@ function SuccessCardMszStyle() {
|
|
3745
3749
|
|
3746
3750
|
// src/app/components/SuccessCardMessage/SuccessCardMsz.tsx
|
3747
3751
|
var SuccessCardMsz = ({ onClose }) => {
|
3748
|
-
return /* @__PURE__ */ React16.createElement(React16.Fragment, null, /* @__PURE__ */ React16.createElement(SuccessCardMszStyle, null), /* @__PURE__ */ React16.createElement("div", { className: "card-success" }, /* @__PURE__ */ React16.createElement("div", { className: "
|
3752
|
+
return /* @__PURE__ */ React16.createElement(React16.Fragment, null, /* @__PURE__ */ React16.createElement(SuccessCardMszStyle, null), /* @__PURE__ */ React16.createElement("div", { className: "card-success" }, /* @__PURE__ */ React16.createElement("div", { className: "payment-success-container" }, /* @__PURE__ */ React16.createElement("div", { className: "success-icon" }, /* @__PURE__ */ React16.createElement("div", { className: "circle" }, /* @__PURE__ */ React16.createElement("i", { className: "fa fa-check-circle", "aria-hidden": "true" })), /* @__PURE__ */ React16.createElement("div", { className: "success-text" }, /* @__PURE__ */ React16.createElement("div", { className: "payment-success-text" }, "Your card was added successfully."), /* @__PURE__ */ React16.createElement("div", { className: "thank-you-text" }, "Thank you "))))));
|
3749
3753
|
};
|
3750
3754
|
var SuccessCardMsz_default = SuccessCardMsz;
|
3751
3755
|
|
@@ -4148,7 +4152,10 @@ function AddCardEasyPay(props) {
|
|
4148
4152
|
const showError = (msz) => {
|
4149
4153
|
Swal4.fire({
|
4150
4154
|
icon: "error",
|
4151
|
-
text: msz
|
4155
|
+
text: msz,
|
4156
|
+
customClass: {
|
4157
|
+
popup: "custom-z-index"
|
4158
|
+
}
|
4152
4159
|
});
|
4153
4160
|
};
|
4154
4161
|
const handleClose = () => {
|
@@ -4334,6 +4341,9 @@ function AddCardEasyPay(props) {
|
|
4334
4341
|
orderId: "",
|
4335
4342
|
zipCode: ""
|
4336
4343
|
});
|
4344
|
+
setTimeout(() => {
|
4345
|
+
HandleSubmit(e, "share", "");
|
4346
|
+
}, 2e3);
|
4337
4347
|
} catch (err) {
|
4338
4348
|
console.log(err);
|
4339
4349
|
hideLoader();
|