@adobe/acc-js-sdk 1.1.49 → 1.1.50
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/docs/changeLog.html +8 -1
- package/package-lock.json +2 -2
- package/package.json +1 -1
- package/src/client.js +1 -0
package/docs/changeLog.html
CHANGED
|
@@ -2,8 +2,15 @@
|
|
|
2
2
|
layout: page
|
|
3
3
|
title: Change Log
|
|
4
4
|
---
|
|
5
|
+
<section class="changelog"><h1>Version 1.1.50</h1>
|
|
6
|
+
<h2>2024/07/18</h2>
|
|
7
|
+
<li>
|
|
8
|
+
<a href="https://github.com/adobe/acc-js-sdk/pull/110">Issue 110</a>. Update fileUploader iframe style so it remains hidden.
|
|
9
|
+
</li>
|
|
10
|
+
</section>
|
|
11
|
+
|
|
5
12
|
<section class="changelog"><h1>Version 1.1.49</h1>
|
|
6
|
-
<h2>2024/07/
|
|
13
|
+
<h2>2024/07/07</h2>
|
|
7
14
|
<li>
|
|
8
15
|
<a href="https://github.com/adobe/acc-js-sdk/pull/109">Issue 109</a>. Extra HTTP headers were not passed in all API calls.
|
|
9
16
|
</li>
|
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/acc-js-sdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.50",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@adobe/acc-js-sdk",
|
|
9
|
-
"version": "1.1.
|
|
9
|
+
"version": "1.1.50",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"axios": "^1.2.1",
|
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -609,6 +609,7 @@ const fileUploader = (client) => {
|
|
|
609
609
|
}
|
|
610
610
|
const iframe = document.createElement('iframe');
|
|
611
611
|
iframe.style.display = 'block';
|
|
612
|
+
iframe.style.border = 'none';
|
|
612
613
|
iframe.style.height = 0;
|
|
613
614
|
iframe.style.width = 0;
|
|
614
615
|
if(options && options.className) {
|