ninegrid2 6.593.0 → 6.595.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 +12 -4
- package/dist/bundle.esm.js +11 -4
- package/dist/etc/ninegridContainer.js +3 -3
- package/dist/index.js +5 -5
- package/package.json +1 -1
- package/src/etc/ninegridContainer.js +3 -3
- package/src/index.js +5 -5
package/dist/bundle.cjs.js
CHANGED
|
@@ -24490,7 +24490,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
24490
24490
|
customElements.define("ng-filter-button", ngFilterButton);
|
|
24491
24491
|
customElements.define("ng-filter-panel", ngFilterPanel);
|
|
24492
24492
|
|
|
24493
|
-
class
|
|
24493
|
+
class NineGridContainer extends HTMLElement
|
|
24494
24494
|
{
|
|
24495
24495
|
#colResizer;
|
|
24496
24496
|
#colMover;
|
|
@@ -25769,9 +25769,9 @@ class NinegridContainer extends HTMLElement
|
|
|
25769
25769
|
}
|
|
25770
25770
|
}
|
|
25771
25771
|
|
|
25772
|
-
//export {
|
|
25772
|
+
//export { NineGridContainer };
|
|
25773
25773
|
|
|
25774
|
-
customElements.define("nine-grid",
|
|
25774
|
+
customElements.define("nine-grid", NineGridContainer);
|
|
25775
25775
|
|
|
25776
25776
|
class nxDialog extends HTMLElement
|
|
25777
25777
|
{
|
|
@@ -54551,9 +54551,17 @@ customElements.define("nx-ai-container", aiContainer);
|
|
|
54551
54551
|
//console.log($);
|
|
54552
54552
|
window.jQuery = window.$ = $$1;
|
|
54553
54553
|
|
|
54554
|
+
// ✅ Custom Elements 등록 함수 정의
|
|
54555
|
+
function defineCustomElements() {
|
|
54556
|
+
if (!customElements.get("nine-grid")) {
|
|
54557
|
+
customElements.define("nine-grid", NineGridContainer);
|
|
54558
|
+
}
|
|
54559
|
+
}
|
|
54560
|
+
|
|
54554
54561
|
//export default ninegrid;
|
|
54555
54562
|
|
|
54556
54563
|
//export default new ninegrid();
|
|
54557
54564
|
|
|
54558
|
-
exports.
|
|
54565
|
+
exports.NineGridContainer = NineGridContainer;
|
|
54559
54566
|
exports.default = ninegrid;
|
|
54567
|
+
exports.defineCustomElements = defineCustomElements;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -24486,7 +24486,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
24486
24486
|
customElements.define("ng-filter-button", ngFilterButton);
|
|
24487
24487
|
customElements.define("ng-filter-panel", ngFilterPanel);
|
|
24488
24488
|
|
|
24489
|
-
class
|
|
24489
|
+
class NineGridContainer extends HTMLElement
|
|
24490
24490
|
{
|
|
24491
24491
|
#colResizer;
|
|
24492
24492
|
#colMover;
|
|
@@ -25765,9 +25765,9 @@ class NinegridContainer extends HTMLElement
|
|
|
25765
25765
|
}
|
|
25766
25766
|
}
|
|
25767
25767
|
|
|
25768
|
-
//export {
|
|
25768
|
+
//export { NineGridContainer };
|
|
25769
25769
|
|
|
25770
|
-
customElements.define("nine-grid",
|
|
25770
|
+
customElements.define("nine-grid", NineGridContainer);
|
|
25771
25771
|
|
|
25772
25772
|
class nxDialog extends HTMLElement
|
|
25773
25773
|
{
|
|
@@ -54547,8 +54547,15 @@ customElements.define("nx-ai-container", aiContainer);
|
|
|
54547
54547
|
//console.log($);
|
|
54548
54548
|
window.jQuery = window.$ = $$1;
|
|
54549
54549
|
|
|
54550
|
+
// ✅ Custom Elements 등록 함수 정의
|
|
54551
|
+
function defineCustomElements() {
|
|
54552
|
+
if (!customElements.get("nine-grid")) {
|
|
54553
|
+
customElements.define("nine-grid", NineGridContainer);
|
|
54554
|
+
}
|
|
54555
|
+
}
|
|
54556
|
+
|
|
54550
54557
|
//export default ninegrid;
|
|
54551
54558
|
|
|
54552
54559
|
//export default new ninegrid();
|
|
54553
54560
|
|
|
54554
|
-
export {
|
|
54561
|
+
export { NineGridContainer, ninegrid as default, defineCustomElements };
|
|
@@ -20,7 +20,7 @@ import { ngCustomEvent } from "./ngCustomEvent.js";
|
|
|
20
20
|
|
|
21
21
|
import { ngFiltering } from "../utils/ngFiltering.js";
|
|
22
22
|
|
|
23
|
-
export class
|
|
23
|
+
export class NineGridContainer extends HTMLElement
|
|
24
24
|
{
|
|
25
25
|
#colResizer;
|
|
26
26
|
#colMover;
|
|
@@ -1322,6 +1322,6 @@ export class NinegridContainer extends HTMLElement
|
|
|
1322
1322
|
}
|
|
1323
1323
|
}
|
|
1324
1324
|
|
|
1325
|
-
//export {
|
|
1325
|
+
//export { NineGridContainer };
|
|
1326
1326
|
|
|
1327
|
-
customElements.define("nine-grid",
|
|
1327
|
+
customElements.define("nine-grid", NineGridContainer);
|
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 {
|
|
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,14 +174,14 @@ export default ninegrid;
|
|
|
174
174
|
|
|
175
175
|
//export default new ninegrid();
|
|
176
176
|
|
|
177
|
-
export {
|
|
178
|
-
|
|
177
|
+
export { NineGridContainer }; // Named Export
|
|
178
|
+
|
|
179
179
|
// ✅ Custom Elements 등록 함수 정의
|
|
180
180
|
export function defineCustomElements() {
|
|
181
181
|
if (!customElements.get("nine-grid")) {
|
|
182
|
-
customElements.define("nine-grid",
|
|
182
|
+
customElements.define("nine-grid", NineGridContainer);
|
|
183
183
|
}
|
|
184
|
-
}
|
|
184
|
+
}
|
|
185
185
|
|
|
186
186
|
//const ninegrid = { defineCustomElements };
|
|
187
187
|
export default ninegrid;
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@ import { ngCustomEvent } from "./ngCustomEvent.js";
|
|
|
20
20
|
|
|
21
21
|
import { ngFiltering } from "../utils/ngFiltering.js";
|
|
22
22
|
|
|
23
|
-
export class
|
|
23
|
+
export class NineGridContainer extends HTMLElement
|
|
24
24
|
{
|
|
25
25
|
#colResizer;
|
|
26
26
|
#colMover;
|
|
@@ -1322,6 +1322,6 @@ export class NinegridContainer extends HTMLElement
|
|
|
1322
1322
|
}
|
|
1323
1323
|
}
|
|
1324
1324
|
|
|
1325
|
-
//export {
|
|
1325
|
+
//export { NineGridContainer };
|
|
1326
1326
|
|
|
1327
|
-
customElements.define("nine-grid",
|
|
1327
|
+
customElements.define("nine-grid", NineGridContainer);
|
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 {
|
|
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,14 +174,14 @@ export default ninegrid;
|
|
|
174
174
|
|
|
175
175
|
//export default new ninegrid();
|
|
176
176
|
|
|
177
|
-
export {
|
|
178
|
-
|
|
177
|
+
export { NineGridContainer }; // Named Export
|
|
178
|
+
|
|
179
179
|
// ✅ Custom Elements 등록 함수 정의
|
|
180
180
|
export function defineCustomElements() {
|
|
181
181
|
if (!customElements.get("nine-grid")) {
|
|
182
|
-
customElements.define("nine-grid",
|
|
182
|
+
customElements.define("nine-grid", NineGridContainer);
|
|
183
183
|
}
|
|
184
|
-
}
|
|
184
|
+
}
|
|
185
185
|
|
|
186
186
|
//const ninegrid = { defineCustomElements };
|
|
187
187
|
export default ninegrid;
|