ninegrid2 6.592.0 → 6.594.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 +16 -1
- package/dist/bundle.esm.js +12 -1
- package/dist/etc/ninegridContainer.js +2 -0
- package/dist/index.js +12 -1
- package/package.json +1 -1
- package/rollup.config.js +1 -1
- package/src/etc/ninegridContainer.js +2 -0
- package/src/index.js +12 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var ExcelJS$1 = require('exceljs');
|
|
4
6
|
var googleGenai = require('@langchain/google-genai');
|
|
5
7
|
var ollama = require('@langchain/ollama');
|
|
@@ -25767,6 +25769,8 @@ class NinegridContainer extends HTMLElement
|
|
|
25767
25769
|
}
|
|
25768
25770
|
}
|
|
25769
25771
|
|
|
25772
|
+
//export { NinegridContainer };
|
|
25773
|
+
|
|
25770
25774
|
customElements.define("nine-grid", NinegridContainer);
|
|
25771
25775
|
|
|
25772
25776
|
class nxDialog extends HTMLElement
|
|
@@ -54547,6 +54551,17 @@ customElements.define("nx-ai-container", aiContainer);
|
|
|
54547
54551
|
//console.log($);
|
|
54548
54552
|
window.jQuery = window.$ = $$1;
|
|
54549
54553
|
|
|
54554
|
+
// ✅ Custom Elements 등록 함수 정의
|
|
54555
|
+
function defineCustomElements() {
|
|
54556
|
+
if (!customElements.get("nine-grid")) {
|
|
54557
|
+
customElements.define("nine-grid", NinegridContainer);
|
|
54558
|
+
}
|
|
54559
|
+
}
|
|
54560
|
+
|
|
54561
|
+
//export default ninegrid;
|
|
54562
|
+
|
|
54550
54563
|
//export default new ninegrid();
|
|
54551
54564
|
|
|
54552
|
-
|
|
54565
|
+
exports.NinegridContainer = NinegridContainer;
|
|
54566
|
+
exports.default = ninegrid;
|
|
54567
|
+
exports.defineCustomElements = defineCustomElements;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -25765,6 +25765,8 @@ class NinegridContainer extends HTMLElement
|
|
|
25765
25765
|
}
|
|
25766
25766
|
}
|
|
25767
25767
|
|
|
25768
|
+
//export { NinegridContainer };
|
|
25769
|
+
|
|
25768
25770
|
customElements.define("nine-grid", NinegridContainer);
|
|
25769
25771
|
|
|
25770
25772
|
class nxDialog extends HTMLElement
|
|
@@ -54545,6 +54547,15 @@ customElements.define("nx-ai-container", aiContainer);
|
|
|
54545
54547
|
//console.log($);
|
|
54546
54548
|
window.jQuery = window.$ = $$1;
|
|
54547
54549
|
|
|
54550
|
+
// ✅ Custom Elements 등록 함수 정의
|
|
54551
|
+
function defineCustomElements() {
|
|
54552
|
+
if (!customElements.get("nine-grid")) {
|
|
54553
|
+
customElements.define("nine-grid", NinegridContainer);
|
|
54554
|
+
}
|
|
54555
|
+
}
|
|
54556
|
+
|
|
54557
|
+
//export default ninegrid;
|
|
54558
|
+
|
|
54548
54559
|
//export default new ninegrid();
|
|
54549
54560
|
|
|
54550
|
-
export { ninegrid as default };
|
|
54561
|
+
export { NinegridContainer, ninegrid as default, defineCustomElements };
|
package/dist/index.js
CHANGED
|
@@ -85,7 +85,7 @@ import "./etc/ngTableWrapper.js";
|
|
|
85
85
|
import "./etc/ngTextArea.js";
|
|
86
86
|
import "./etc/ngTree.js";
|
|
87
87
|
import "./etc/ngView.js";
|
|
88
|
-
import "./etc/ninegridContainer.js";
|
|
88
|
+
import { NinegridContainer } from "./etc/ninegridContainer.js";
|
|
89
89
|
import "./etc/nxConfirm.js";
|
|
90
90
|
import "./etc/nxDialog.js";
|
|
91
91
|
import "./etc/nxDiv.js";
|
|
@@ -174,7 +174,18 @@ export default ninegrid;
|
|
|
174
174
|
|
|
175
175
|
//export default new ninegrid();
|
|
176
176
|
|
|
177
|
+
export { NinegridContainer }; // Named Export
|
|
177
178
|
|
|
179
|
+
// ✅ Custom Elements 등록 함수 정의
|
|
180
|
+
export function defineCustomElements() {
|
|
181
|
+
if (!customElements.get("nine-grid")) {
|
|
182
|
+
customElements.define("nine-grid", NinegridContainer);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
//const ninegrid = { defineCustomElements };
|
|
178
187
|
export default ninegrid;
|
|
179
188
|
|
|
189
|
+
//export default ninegrid;
|
|
190
|
+
|
|
180
191
|
//export default new ninegrid();
|
package/package.json
CHANGED
package/rollup.config.js
CHANGED
package/src/index.js
CHANGED
|
@@ -85,7 +85,7 @@ import "./etc/ngTableWrapper.js";
|
|
|
85
85
|
import "./etc/ngTextArea.js";
|
|
86
86
|
import "./etc/ngTree.js";
|
|
87
87
|
import "./etc/ngView.js";
|
|
88
|
-
import "./etc/ninegridContainer.js";
|
|
88
|
+
import { NinegridContainer } from "./etc/ninegridContainer.js";
|
|
89
89
|
import "./etc/nxConfirm.js";
|
|
90
90
|
import "./etc/nxDialog.js";
|
|
91
91
|
import "./etc/nxDiv.js";
|
|
@@ -174,7 +174,18 @@ export default ninegrid;
|
|
|
174
174
|
|
|
175
175
|
//export default new ninegrid();
|
|
176
176
|
|
|
177
|
+
export { NinegridContainer }; // Named Export
|
|
177
178
|
|
|
179
|
+
// ✅ Custom Elements 등록 함수 정의
|
|
180
|
+
export function defineCustomElements() {
|
|
181
|
+
if (!customElements.get("nine-grid")) {
|
|
182
|
+
customElements.define("nine-grid", NinegridContainer);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
//const ninegrid = { defineCustomElements };
|
|
178
187
|
export default ninegrid;
|
|
179
188
|
|
|
189
|
+
//export default ninegrid;
|
|
190
|
+
|
|
180
191
|
//export default new ninegrid();
|