ide-assi 0.575.0 → 0.576.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.
package/dist/bundle.cjs.js
CHANGED
|
@@ -201777,7 +201777,7 @@ class IdeFetch {
|
|
|
201777
201777
|
|
|
201778
201778
|
return fetch(url, options)
|
|
201779
201779
|
.then(res => {
|
|
201780
|
-
ninegrid.loading.hide();
|
|
201780
|
+
//ninegrid.loading.hide();
|
|
201781
201781
|
if (!res.ok) {
|
|
201782
201782
|
return res.text().then(text => {
|
|
201783
201783
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|
|
@@ -201786,7 +201786,7 @@ class IdeFetch {
|
|
|
201786
201786
|
return res.json();
|
|
201787
201787
|
})
|
|
201788
201788
|
.catch(err => {
|
|
201789
|
-
ninegrid.loading.hide();
|
|
201789
|
+
//ninegrid.loading.hide();
|
|
201790
201790
|
console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
|
|
201791
201791
|
throw err;
|
|
201792
201792
|
});
|
package/dist/bundle.esm.js
CHANGED
|
@@ -201773,7 +201773,7 @@ class IdeFetch {
|
|
|
201773
201773
|
|
|
201774
201774
|
return fetch(url, options)
|
|
201775
201775
|
.then(res => {
|
|
201776
|
-
ninegrid.loading.hide();
|
|
201776
|
+
//ninegrid.loading.hide();
|
|
201777
201777
|
if (!res.ok) {
|
|
201778
201778
|
return res.text().then(text => {
|
|
201779
201779
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|
|
@@ -201782,7 +201782,7 @@ class IdeFetch {
|
|
|
201782
201782
|
return res.json();
|
|
201783
201783
|
})
|
|
201784
201784
|
.catch(err => {
|
|
201785
|
-
ninegrid.loading.hide();
|
|
201785
|
+
//ninegrid.loading.hide();
|
|
201786
201786
|
console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
|
|
201787
201787
|
throw err;
|
|
201788
201788
|
});
|
|
@@ -19,7 +19,7 @@ export class IdeFetch {
|
|
|
19
19
|
|
|
20
20
|
return fetch(url, options)
|
|
21
21
|
.then(res => {
|
|
22
|
-
ninegrid.loading.hide();
|
|
22
|
+
//ninegrid.loading.hide();
|
|
23
23
|
if (!res.ok) {
|
|
24
24
|
return res.text().then(text => {
|
|
25
25
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|
|
@@ -28,7 +28,7 @@ export class IdeFetch {
|
|
|
28
28
|
return res.json();
|
|
29
29
|
})
|
|
30
30
|
.catch(err => {
|
|
31
|
-
ninegrid.loading.hide();
|
|
31
|
+
//ninegrid.loading.hide();
|
|
32
32
|
console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
|
|
33
33
|
throw err;
|
|
34
34
|
});
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@ export class IdeFetch {
|
|
|
19
19
|
|
|
20
20
|
return fetch(url, options)
|
|
21
21
|
.then(res => {
|
|
22
|
-
ninegrid.loading.hide();
|
|
22
|
+
//ninegrid.loading.hide();
|
|
23
23
|
if (!res.ok) {
|
|
24
24
|
return res.text().then(text => {
|
|
25
25
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|
|
@@ -28,7 +28,7 @@ export class IdeFetch {
|
|
|
28
28
|
return res.json();
|
|
29
29
|
})
|
|
30
30
|
.catch(err => {
|
|
31
|
-
ninegrid.loading.hide();
|
|
31
|
+
//ninegrid.loading.hide();
|
|
32
32
|
console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
|
|
33
33
|
throw err;
|
|
34
34
|
});
|