@pinerohit11/testwidget 0.2.107 → 0.2.108
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 +9 -3
- package/dist/index.mjs +9 -3
- 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 */
|
@@ -4186,7 +4189,10 @@ function AddCardEasyPay(props) {
|
|
4186
4189
|
const showError = (msz) => {
|
4187
4190
|
import_sweetalert24.default.fire({
|
4188
4191
|
icon: "error",
|
4189
|
-
text: msz
|
4192
|
+
text: msz,
|
4193
|
+
customClass: {
|
4194
|
+
popup: "custom-z-index"
|
4195
|
+
}
|
4190
4196
|
});
|
4191
4197
|
};
|
4192
4198
|
const handleClose = () => {
|
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 */
|
@@ -4148,7 +4151,10 @@ function AddCardEasyPay(props) {
|
|
4148
4151
|
const showError = (msz) => {
|
4149
4152
|
Swal4.fire({
|
4150
4153
|
icon: "error",
|
4151
|
-
text: msz
|
4154
|
+
text: msz,
|
4155
|
+
customClass: {
|
4156
|
+
popup: "custom-z-index"
|
4157
|
+
}
|
4152
4158
|
});
|
4153
4159
|
};
|
4154
4160
|
const handleClose = () => {
|