@mxenabled/connect-widget 0.17.2 → 0.17.3
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/README.md +6 -4
- package/dist/index.es.js +15 -30
- package/dist/index.es.js.map +1 -1
- package/dist/lastBuild.txt +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,10 +69,12 @@ You need to pass an object containing API endpoint callbacks as the `apiValue` p
|
|
|
69
69
|
_To make commits that trigger a package release, use `npx cz`, it will launch easy to follow commitizen prompts._
|
|
70
70
|
|
|
71
71
|
A new _MAJOR.MINOR.PATCH_ release will be generated if at least one of the following types are used, see [Conventional Commits Documentation](https://www.conventionalcommits.org/) for more specifics.
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
|
|
73
|
+
- `fix:` -> PATCH bump
|
|
74
|
+
- `feat:` -> MINOR bump
|
|
74
75
|
|
|
75
76
|
Major bump (any type with a footer of `BREAKING CHANGE:`)
|
|
77
|
+
|
|
76
78
|
```
|
|
77
79
|
<any_type>: <message>
|
|
78
80
|
|
|
@@ -94,6 +96,6 @@ Pull requests are welcome. Please open an issue first to discuss what you would
|
|
|
94
96
|
|
|
95
97
|
Make sure to add/update tests, translations, and documentation as appropriate.
|
|
96
98
|
|
|
97
|
-
##
|
|
99
|
+
## Changes
|
|
98
100
|
|
|
99
|
-
View our
|
|
101
|
+
View our notes for each release [here](https://github.com/mxenabled/connect-widget/releases)
|
package/dist/index.es.js
CHANGED
|
@@ -5131,39 +5131,23 @@ function baseFindIndex$2(array, predicate, fromIndex, fromRight) {
|
|
|
5131
5131
|
}
|
|
5132
5132
|
var _baseFindIndex = baseFindIndex$2;
|
|
5133
5133
|
|
|
5134
|
-
var
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
var reWhitespace = /\s/;
|
|
5141
|
-
function trimmedEndIndex(string) {
|
|
5142
|
-
var index = string.length;
|
|
5143
|
-
while (index-- && reWhitespace.test(string.charAt(index))) {
|
|
5144
|
-
}
|
|
5145
|
-
return index;
|
|
5146
|
-
}
|
|
5147
|
-
_trimmedEndIndex = trimmedEndIndex;
|
|
5148
|
-
return _trimmedEndIndex;
|
|
5134
|
+
var reWhitespace = /\s/;
|
|
5135
|
+
function trimmedEndIndex$1(string) {
|
|
5136
|
+
var index = string.length;
|
|
5137
|
+
while (index-- && reWhitespace.test(string.charAt(index))) {
|
|
5138
|
+
}
|
|
5139
|
+
return index;
|
|
5149
5140
|
}
|
|
5141
|
+
var _trimmedEndIndex = trimmedEndIndex$1;
|
|
5150
5142
|
|
|
5151
|
-
var
|
|
5152
|
-
var
|
|
5153
|
-
|
|
5154
|
-
|
|
5155
|
-
if (hasRequired_baseTrim) return _baseTrim;
|
|
5156
|
-
hasRequired_baseTrim = 1;
|
|
5157
|
-
var trimmedEndIndex = require_trimmedEndIndex();
|
|
5158
|
-
var reTrimStart = /^\s+/;
|
|
5159
|
-
function baseTrim(string) {
|
|
5160
|
-
return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
|
|
5161
|
-
}
|
|
5162
|
-
_baseTrim = baseTrim;
|
|
5163
|
-
return _baseTrim;
|
|
5143
|
+
var trimmedEndIndex = _trimmedEndIndex;
|
|
5144
|
+
var reTrimStart = /^\s+/;
|
|
5145
|
+
function baseTrim$1(string) {
|
|
5146
|
+
return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, "") : string;
|
|
5164
5147
|
}
|
|
5148
|
+
var _baseTrim = baseTrim$1;
|
|
5165
5149
|
|
|
5166
|
-
var baseTrim =
|
|
5150
|
+
var baseTrim = _baseTrim, isObject$7 = isObject_1, isSymbol$1 = isSymbol_1;
|
|
5167
5151
|
var NAN = 0 / 0;
|
|
5168
5152
|
var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
|
|
5169
5153
|
var reIsBinary = /^0b[01]+$/i;
|
|
@@ -8629,7 +8613,7 @@ var hasRequiredTrim;
|
|
|
8629
8613
|
function requireTrim () {
|
|
8630
8614
|
if (hasRequiredTrim) return trim_1;
|
|
8631
8615
|
hasRequiredTrim = 1;
|
|
8632
|
-
var baseToString = _baseToString, baseTrim =
|
|
8616
|
+
var baseToString = _baseToString, baseTrim = _baseTrim, castSlice = require_castSlice(), charsEndIndex = require_charsEndIndex(), charsStartIndex = require_charsStartIndex(), stringToArray = require_stringToArray(), toString = toString_1;
|
|
8633
8617
|
function trim(string, chars, guard) {
|
|
8634
8618
|
string = toString(string);
|
|
8635
8619
|
if (string && (guard || chars === void 0)) {
|
|
@@ -74763,6 +74747,7 @@ const VerifyDeposits = ({ microdeposit, onSuccess }) => {
|
|
|
74763
74747
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { ref: containerRef, children: [
|
|
74764
74748
|
/* @__PURE__ */ jsxRuntimeExports.jsx(SlideDown, { children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { style: styles.header, children: [
|
|
74765
74749
|
/* @__PURE__ */ jsxRuntimeExports.jsx(x, { "data-test": "title-header", style: styles.title, truncate: false, variant: "H2", children: __("Enter deposit amounts") }),
|
|
74750
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("br", {}),
|
|
74766
74751
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
74767
74752
|
ProtectedText,
|
|
74768
74753
|
{
|