@adobe/acc-js-sdk 1.1.49 → 1.1.51
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 +15 -1
- package/package-lock.json +10 -10
- package/package.json +1 -1
- package/src/client.js +1 -0
package/docs/changeLog.html
CHANGED
|
@@ -2,8 +2,22 @@
|
|
|
2
2
|
layout: page
|
|
3
3
|
title: Change Log
|
|
4
4
|
---
|
|
5
|
+
<section class="changelog"><h1>Version 1.1.51</h1>
|
|
6
|
+
<h2>2024/08/15</h2>
|
|
7
|
+
<li>
|
|
8
|
+
Fix Vulnerability in Axios
|
|
9
|
+
</li>
|
|
10
|
+
</section>
|
|
11
|
+
|
|
12
|
+
<section class="changelog"><h1>Version 1.1.50</h1>
|
|
13
|
+
<h2>2024/07/18</h2>
|
|
14
|
+
<li>
|
|
15
|
+
<a href="https://github.com/adobe/acc-js-sdk/pull/110">Issue 110</a>. Update fileUploader iframe style so it remains hidden.
|
|
16
|
+
</li>
|
|
17
|
+
</section>
|
|
18
|
+
|
|
5
19
|
<section class="changelog"><h1>Version 1.1.49</h1>
|
|
6
|
-
<h2>2024/07/
|
|
20
|
+
<h2>2024/07/07</h2>
|
|
7
21
|
<li>
|
|
8
22
|
<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
23
|
</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.51",
|
|
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.51",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"axios": "^1.2.1",
|
|
@@ -1322,11 +1322,11 @@
|
|
|
1322
1322
|
"license": "MIT"
|
|
1323
1323
|
},
|
|
1324
1324
|
"node_modules/axios": {
|
|
1325
|
-
"version": "1.
|
|
1326
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
1327
|
-
"integrity": "sha512-
|
|
1325
|
+
"version": "1.7.4",
|
|
1326
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz",
|
|
1327
|
+
"integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==",
|
|
1328
1328
|
"dependencies": {
|
|
1329
|
-
"follow-redirects": "^1.15.
|
|
1329
|
+
"follow-redirects": "^1.15.6",
|
|
1330
1330
|
"form-data": "^4.0.0",
|
|
1331
1331
|
"proxy-from-env": "^1.1.0"
|
|
1332
1332
|
}
|
|
@@ -5606,11 +5606,11 @@
|
|
|
5606
5606
|
"version": "0.4.0"
|
|
5607
5607
|
},
|
|
5608
5608
|
"axios": {
|
|
5609
|
-
"version": "1.
|
|
5610
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
5611
|
-
"integrity": "sha512-
|
|
5609
|
+
"version": "1.7.4",
|
|
5610
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz",
|
|
5611
|
+
"integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==",
|
|
5612
5612
|
"requires": {
|
|
5613
|
-
"follow-redirects": "^1.15.
|
|
5613
|
+
"follow-redirects": "^1.15.6",
|
|
5614
5614
|
"form-data": "^4.0.0",
|
|
5615
5615
|
"proxy-from-env": "^1.1.0"
|
|
5616
5616
|
}
|
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) {
|