@rebilly/instruments 7.2.3 → 7.2.4
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/CHANGELOG.md +7 -0
- package/dist/index.js +4 -4
- package/dist/index.min.js +4 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [7.2.4](https://github.com/Rebilly/rebilly/compare/instruments/core-v7.2.3...instruments/core-v7.2.4) (2023-10-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **instruments:** fix locales check ([#1904](https://github.com/Rebilly/rebilly/issues/1904)) ([90de52d](https://github.com/Rebilly/rebilly/commit/90de52d4f566b722f835fefaa19337e3586c7f3d))
|
|
7
|
+
|
|
1
8
|
## [7.2.3](https://github.com/Rebilly/rebilly/compare/instruments/core-v7.2.2...instruments/core-v7.2.3) (2023-10-16)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -1533,7 +1533,7 @@ const es$1 = {
|
|
|
1533
1533
|
es
|
|
1534
1534
|
};
|
|
1535
1535
|
function isLocales(locale, languages) {
|
|
1536
|
-
return !locale.includes("-")
|
|
1536
|
+
return !locale.includes("-") || Object.prototype.hasOwnProperty.call(languages, locale);
|
|
1537
1537
|
}
|
|
1538
1538
|
class Translate {
|
|
1539
1539
|
constructor() {
|
|
@@ -5335,7 +5335,7 @@ function cloneArrayDeep(val, instanceClone) {
|
|
|
5335
5335
|
return res;
|
|
5336
5336
|
}
|
|
5337
5337
|
var cloneDeep_1 = cloneDeep;
|
|
5338
|
-
const version = "54.2.
|
|
5338
|
+
const version = "54.2.2";
|
|
5339
5339
|
let urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
|
5340
5340
|
let nanoid = (size2 = 21) => {
|
|
5341
5341
|
let id2 = "";
|
|
@@ -22303,7 +22303,7 @@ ${displayNode}`
|
|
|
22303
22303
|
function handleComputedProperty(options) {
|
|
22304
22304
|
var _a;
|
|
22305
22305
|
options._computed = {
|
|
22306
|
-
version: "7.2.
|
|
22306
|
+
version: "7.2.3",
|
|
22307
22307
|
paymentMethodsUrl: ((_a = options._dev) == null ? void 0 : _a.paymentMethodsUrl) ?? "https://forms.secure-payments.app"
|
|
22308
22308
|
};
|
|
22309
22309
|
return options;
|
|
@@ -25434,7 +25434,7 @@ class RebillyInstrumentsInstance {
|
|
|
25434
25434
|
await show({ componentName, payload });
|
|
25435
25435
|
}
|
|
25436
25436
|
get version() {
|
|
25437
|
-
return `RebillyInstruments Ver.${"7.2.
|
|
25437
|
+
return `RebillyInstruments Ver.${"7.2.3"}`;
|
|
25438
25438
|
}
|
|
25439
25439
|
on(eventName, callback) {
|
|
25440
25440
|
on({ eventName, callback });
|