ide-assi 0.658.0 → 0.660.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
|
@@ -202456,7 +202456,7 @@ class IdeFetch {
|
|
|
202456
202456
|
|
|
202457
202457
|
return fetch(url, options)
|
|
202458
202458
|
.then(res => {
|
|
202459
|
-
|
|
202459
|
+
ninegrid.loading.hide();
|
|
202460
202460
|
if (!res.ok) {
|
|
202461
202461
|
return res.text().then(text => {
|
|
202462
202462
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|
|
@@ -202465,7 +202465,7 @@ class IdeFetch {
|
|
|
202465
202465
|
return res.json();
|
|
202466
202466
|
})
|
|
202467
202467
|
.catch(err => {
|
|
202468
|
-
|
|
202468
|
+
ninegrid.loading.hide();
|
|
202469
202469
|
console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
|
|
202470
202470
|
throw err;
|
|
202471
202471
|
});
|
|
@@ -237590,6 +237590,8 @@ class aiNatualInput extends HTMLElement
|
|
|
237590
237590
|
}
|
|
237591
237591
|
|
|
237592
237592
|
this.#selectFunc.call(this, params);
|
|
237593
|
+
|
|
237594
|
+
this.#target.disabled = false;
|
|
237593
237595
|
}
|
|
237594
237596
|
};
|
|
237595
237597
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202452,7 +202452,7 @@ class IdeFetch {
|
|
|
202452
202452
|
|
|
202453
202453
|
return fetch(url, options)
|
|
202454
202454
|
.then(res => {
|
|
202455
|
-
|
|
202455
|
+
ninegrid.loading.hide();
|
|
202456
202456
|
if (!res.ok) {
|
|
202457
202457
|
return res.text().then(text => {
|
|
202458
202458
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|
|
@@ -202461,7 +202461,7 @@ class IdeFetch {
|
|
|
202461
202461
|
return res.json();
|
|
202462
202462
|
})
|
|
202463
202463
|
.catch(err => {
|
|
202464
|
-
|
|
202464
|
+
ninegrid.loading.hide();
|
|
202465
202465
|
console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
|
|
202466
202466
|
throw err;
|
|
202467
202467
|
});
|
|
@@ -237586,6 +237586,8 @@ class aiNatualInput extends HTMLElement
|
|
|
237586
237586
|
}
|
|
237587
237587
|
|
|
237588
237588
|
this.#selectFunc.call(this, params);
|
|
237589
|
+
|
|
237590
|
+
this.#target.disabled = false;
|
|
237589
237591
|
}
|
|
237590
237592
|
};
|
|
237591
237593
|
|
|
@@ -19,7 +19,7 @@ export class IdeFetch {
|
|
|
19
19
|
|
|
20
20
|
return fetch(url, options)
|
|
21
21
|
.then(res => {
|
|
22
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
31
|
+
ninegrid.loading.hide();
|
|
32
32
|
console.error(`[fetch.${method.toLowerCase()}] ${url} 실패:`, err);
|
|
33
33
|
throw err;
|
|
34
34
|
});
|