ninegrid2 6.943.0 → 6.945.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 +2 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/nx/nxTitle.js +3 -3
- package/package.json +1 -1
- package/src/nx/nxTitle.js +3 -3
package/dist/bundle.cjs.js
CHANGED
|
@@ -121788,7 +121788,7 @@ class nxTitle extends HTMLElement {
|
|
|
121788
121788
|
caption: "Home",
|
|
121789
121789
|
});
|
|
121790
121790
|
|
|
121791
|
-
console.log(this.#breadcrumbPath);
|
|
121791
|
+
//console.log(this.#breadcrumbPath);
|
|
121792
121792
|
//this.#breadcrumbPath = path;
|
|
121793
121793
|
//this.#renderer();
|
|
121794
121794
|
};
|
|
@@ -121842,7 +121842,7 @@ console.log(this.#breadcrumbPath);
|
|
|
121842
121842
|
}
|
|
121843
121843
|
|
|
121844
121844
|
// static 메서드 aaa() 선언
|
|
121845
|
-
static goto(path) {
|
|
121845
|
+
static goto = (path) => {
|
|
121846
121846
|
console.log('static aaa()가 호출되었습니다. Path:', path);
|
|
121847
121847
|
|
|
121848
121848
|
if (window.location.pathname === path) {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121784,7 +121784,7 @@ class nxTitle extends HTMLElement {
|
|
|
121784
121784
|
caption: "Home",
|
|
121785
121785
|
});
|
|
121786
121786
|
|
|
121787
|
-
console.log(this.#breadcrumbPath);
|
|
121787
|
+
//console.log(this.#breadcrumbPath);
|
|
121788
121788
|
//this.#breadcrumbPath = path;
|
|
121789
121789
|
//this.#renderer();
|
|
121790
121790
|
};
|
|
@@ -121838,7 +121838,7 @@ console.log(this.#breadcrumbPath);
|
|
|
121838
121838
|
}
|
|
121839
121839
|
|
|
121840
121840
|
// static 메서드 aaa() 선언
|
|
121841
|
-
static goto(path) {
|
|
121841
|
+
static goto = (path) => {
|
|
121842
121842
|
console.log('static aaa()가 호출되었습니다. Path:', path);
|
|
121843
121843
|
|
|
121844
121844
|
if (window.location.pathname === path) {
|
package/dist/nx/nxTitle.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import ninegrid from "../index.js";
|
|
2
2
|
|
|
3
|
-
class nxTitle extends HTMLElement {
|
|
3
|
+
export class nxTitle extends HTMLElement {
|
|
4
4
|
|
|
5
5
|
#breadcrumbPath = []; // Breadcrumb 경로를 저장할 내부 상태 초기화
|
|
6
6
|
|
|
@@ -123,7 +123,7 @@ class nxTitle extends HTMLElement {
|
|
|
123
123
|
caption: "Home",
|
|
124
124
|
});
|
|
125
125
|
|
|
126
|
-
console.log(this.#breadcrumbPath);
|
|
126
|
+
//console.log(this.#breadcrumbPath);
|
|
127
127
|
//this.#breadcrumbPath = path;
|
|
128
128
|
//this.#renderer();
|
|
129
129
|
};
|
|
@@ -177,7 +177,7 @@ console.log(this.#breadcrumbPath);
|
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
// static 메서드 aaa() 선언
|
|
180
|
-
static goto(path) {
|
|
180
|
+
static goto = (path) => {
|
|
181
181
|
console.log('static aaa()가 호출되었습니다. Path:', path);
|
|
182
182
|
|
|
183
183
|
if (window.location.pathname === path) {
|
package/package.json
CHANGED
package/src/nx/nxTitle.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import ninegrid from "../index.js";
|
|
2
2
|
|
|
3
|
-
class nxTitle extends HTMLElement {
|
|
3
|
+
export class nxTitle extends HTMLElement {
|
|
4
4
|
|
|
5
5
|
#breadcrumbPath = []; // Breadcrumb 경로를 저장할 내부 상태 초기화
|
|
6
6
|
|
|
@@ -123,7 +123,7 @@ class nxTitle extends HTMLElement {
|
|
|
123
123
|
caption: "Home",
|
|
124
124
|
});
|
|
125
125
|
|
|
126
|
-
console.log(this.#breadcrumbPath);
|
|
126
|
+
//console.log(this.#breadcrumbPath);
|
|
127
127
|
//this.#breadcrumbPath = path;
|
|
128
128
|
//this.#renderer();
|
|
129
129
|
};
|
|
@@ -177,7 +177,7 @@ console.log(this.#breadcrumbPath);
|
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
// static 메서드 aaa() 선언
|
|
180
|
-
static goto(path) {
|
|
180
|
+
static goto = (path) => {
|
|
181
181
|
console.log('static aaa()가 호출되었습니다. Path:', path);
|
|
182
182
|
|
|
183
183
|
if (window.location.pathname === path) {
|