@rebilly/instruments 16.28.0 → 16.28.1
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 +3 -3
- package/dist/index.js +5 -2
- package/dist/index.min.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [16.28.
|
|
1
|
+
## [16.28.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v16.28.0...instruments/core-v16.28.1) (2025-11-24)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **instruments,hpf:** allow clipboard write in approval iframe ([#16807](https://github.com/Rebilly/rebilly/issues/16807)) ([02c9e46](https://github.com/Rebilly/rebilly/commit/02c9e4657d3c210da488b0f50564e69738ebed72))
|
package/dist/index.js
CHANGED
|
@@ -1747,7 +1747,10 @@ class BaseIframe {
|
|
|
1747
1747
|
const container = {
|
|
1748
1748
|
appendChild: (iframe) => {
|
|
1749
1749
|
iframe.setAttribute("loading", "lazy");
|
|
1750
|
-
iframe.setAttribute(
|
|
1750
|
+
iframe.setAttribute(
|
|
1751
|
+
"allow",
|
|
1752
|
+
"camera;payment;clipboard-write *;"
|
|
1753
|
+
);
|
|
1751
1754
|
if ([
|
|
1752
1755
|
"rebilly-instruments-form",
|
|
1753
1756
|
"rebilly-instruments-summary"
|
|
@@ -5180,7 +5183,7 @@ function C$1({ options: t2 }) {
|
|
|
5180
5183
|
}
|
|
5181
5184
|
function o2() {
|
|
5182
5185
|
const i = {
|
|
5183
|
-
"REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((g) => g).join("/")}@
|
|
5186
|
+
"REB-API-CONSUMER": `${["Rebilly", t2.appName, "js-sdk"].filter((g) => g).join("/")}@02c9e46`
|
|
5184
5187
|
};
|
|
5185
5188
|
return t2.apiKey && (i["REB-APIKEY"] = t2.apiKey), i;
|
|
5186
5189
|
}
|