ide-assi 0.295.0 → 0.296.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 +1 -0
- package/dist/bundle.esm.js +1 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
- package/src/index.js +2 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -194320,6 +194320,7 @@ function defineCustomElements() {
|
|
|
194320
194320
|
}
|
|
194321
194321
|
|
|
194322
194322
|
exports.IdeAssi = IdeAssi;
|
|
194323
|
+
exports.ai = IdeAi;
|
|
194323
194324
|
exports.api = IdeFetch;
|
|
194324
194325
|
exports.default = IdeAssi;
|
|
194325
194326
|
exports.defineCustomElements = defineCustomElements;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -194315,4 +194315,4 @@ function defineCustomElements() {
|
|
|
194315
194315
|
}
|
|
194316
194316
|
}
|
|
194317
194317
|
|
|
194318
|
-
export { IdeAssi, IdeFetch as api, IdeAssi as default, defineCustomElements };
|
|
194318
|
+
export { IdeAssi, IdeAi as ai, IdeFetch as api, IdeAssi as default, defineCustomElements };
|
package/dist/index.js
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
import { IdeAssi } from "./components/ideAssi.js";
|
|
4
4
|
import "./components/ideAssiSettings.js";
|
|
5
5
|
import { IdeFetch } from "./components/ideFetch.js";
|
|
6
|
+
import { IdeAi } from "./components/ideAi.js";
|
|
6
7
|
|
|
7
|
-
export { IdeAssi, IdeFetch as api }; // Named Export
|
|
8
|
+
export { IdeAssi, IdeFetch as api, IdeAi as ai }; // Named Export
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
// ✅ Custom Elements 등록 함수 정의
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
import { IdeAssi } from "./components/ideAssi.js";
|
|
4
4
|
import "./components/ideAssiSettings.js";
|
|
5
5
|
import { IdeFetch } from "./components/ideFetch.js";
|
|
6
|
+
import { IdeAi } from "./components/ideAi.js";
|
|
6
7
|
|
|
7
|
-
export { IdeAssi, IdeFetch as api }; // Named Export
|
|
8
|
+
export { IdeAssi, IdeFetch as api, IdeAi as ai }; // Named Export
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
// ✅ Custom Elements 등록 함수 정의
|