altair-graphql-core 7.3.5 → 8.0.0

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.
@@ -22,7 +22,7 @@ class AltairV3Panel {
22
22
  const link = document.createElement('link');
23
23
  link.rel = 'stylesheet';
24
24
  link.type = 'text/css';
25
- link.crossOrigin = 'anonymous';
25
+ // link.crossOrigin = 'anonymous';
26
26
  link.href = styleUrl;
27
27
  document.head.appendChild(link);
28
28
  });
@@ -10,7 +10,7 @@ const injectScript = (url) => {
10
10
  const script = document.createElement('script');
11
11
  script.type = 'text/javascript';
12
12
  script.src = url;
13
- script.crossOrigin = 'anonymous';
13
+ // script.crossOrigin = 'anonymous';
14
14
  script.onload = () => resolve(null);
15
15
  script.onerror = (err) => reject(err);
16
16
  head.appendChild(script);
@@ -26,7 +26,7 @@ const injectStylesheet = (url) => {
26
26
  const style = document.createElement('link');
27
27
  style.type = 'text/css';
28
28
  style.rel = 'stylesheet';
29
- style.crossOrigin = 'anonymous';
29
+ // style.crossOrigin = 'anonymous';
30
30
  style.href = url;
31
31
  style.onload = () => resolve(null);
32
32
  style.onerror = (err) => reject(err);
@@ -19,7 +19,7 @@ export class AltairV3Panel {
19
19
  const link = document.createElement('link');
20
20
  link.rel = 'stylesheet';
21
21
  link.type = 'text/css';
22
- link.crossOrigin = 'anonymous';
22
+ // link.crossOrigin = 'anonymous';
23
23
  link.href = styleUrl;
24
24
  document.head.appendChild(link);
25
25
  });
@@ -7,7 +7,7 @@ export const injectScript = (url) => {
7
7
  const script = document.createElement('script');
8
8
  script.type = 'text/javascript';
9
9
  script.src = url;
10
- script.crossOrigin = 'anonymous';
10
+ // script.crossOrigin = 'anonymous';
11
11
  script.onload = () => resolve(null);
12
12
  script.onerror = (err) => reject(err);
13
13
  head.appendChild(script);
@@ -22,7 +22,7 @@ export const injectStylesheet = (url) => {
22
22
  const style = document.createElement('link');
23
23
  style.type = 'text/css';
24
24
  style.rel = 'stylesheet';
25
- style.crossOrigin = 'anonymous';
25
+ // style.crossOrigin = 'anonymous';
26
26
  style.href = url;
27
27
  style.onload = () => resolve(null);
28
28
  style.onerror = (err) => reject(err);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "altair-graphql-core",
3
3
  "description": "Several of the core logic for altair graphql client",
4
- "version": "7.3.5",
4
+ "version": "8.0.0",
5
5
  "author": "Samuel Imolorhe <altair@sirmuel.design> (https://sirmuel.design)",
6
6
  "bugs": "https://github.com/altair-graphql/altair/issues",
7
7
  "dependencies": {
@@ -79,5 +79,5 @@
79
79
  "test": "jest"
80
80
  },
81
81
  "types": "./build/index.d.ts",
82
- "gitHead": "d01637b5a92ca3f19d3260003b4e3b020ac5d6e4"
82
+ "gitHead": "3280e9e43dc4971a7c3d78655fb113278b0540a5"
83
83
  }