ninegrid2 6.933.0 → 6.934.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 +5 -5
- package/dist/bundle.esm.js +5 -5
- package/dist/etc/nxSideMenu.js +2 -2
- package/dist/nx/nxTitle.js +3 -3
- package/package.json +1 -1
- package/src/etc/nxSideMenu.js +2 -2
- package/src/nx/nxTitle.js +3 -3
package/dist/bundle.cjs.js
CHANGED
|
@@ -120521,9 +120521,9 @@ class nxSideMenuItem extends HTMLElement
|
|
|
120521
120521
|
requestAnimationFrame(() => {
|
|
120522
120522
|
|
|
120523
120523
|
|
|
120524
|
-
console.log("nxSideMenuItem", this.#caption);
|
|
120524
|
+
//console.log("nxSideMenuItem", this.#caption);
|
|
120525
120525
|
//this.data.caption = this.#caption;
|
|
120526
|
-
this.setAttribute("data-caption", this.innerText.trim());
|
|
120526
|
+
//this.setAttribute("data-caption", this.innerText.trim());
|
|
120527
120527
|
this.#init();
|
|
120528
120528
|
|
|
120529
120529
|
/**
|
|
@@ -121733,8 +121733,8 @@ class nxTitle extends HTMLElement {
|
|
|
121733
121733
|
const tempPath = []; // 임시 경로를 저장하여 역순으로 처리
|
|
121734
121734
|
|
|
121735
121735
|
// 1. 현재 활성화된 메뉴 항목의 캡션을 추가 (예: '심의자료')
|
|
121736
|
-
const currentActiveCaption = activeMenuItem.
|
|
121737
|
-
console.log("nxTitle", activeMenuItem.caption
|
|
121736
|
+
const currentActiveCaption = activeMenuItem.caption;//activeMenuItem.caption;
|
|
121737
|
+
console.log("nxTitle", activeMenuItem.caption);
|
|
121738
121738
|
|
|
121739
121739
|
if (currentActiveCaption) {
|
|
121740
121740
|
tempPath.unshift(currentActiveCaption); // 맨 앞에 추가
|
|
@@ -121756,7 +121756,7 @@ class nxTitle extends HTMLElement {
|
|
|
121756
121756
|
console.log(currentElement);
|
|
121757
121757
|
|
|
121758
121758
|
if (currentElement && currentElement.tagName === 'NX-SIDE-MENU-ITEM') {
|
|
121759
|
-
const caption = currentElement.getAttribute('caption');
|
|
121759
|
+
const caption = currentElement.caption;//.getAttribute('caption');
|
|
121760
121760
|
|
|
121761
121761
|
// 'group' 속성을 가진 메뉴 항목 찾기 (예: '자료관리')
|
|
121762
121762
|
if (currentElement.hasAttribute('group')) {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -120517,9 +120517,9 @@ class nxSideMenuItem extends HTMLElement
|
|
|
120517
120517
|
requestAnimationFrame(() => {
|
|
120518
120518
|
|
|
120519
120519
|
|
|
120520
|
-
console.log("nxSideMenuItem", this.#caption);
|
|
120520
|
+
//console.log("nxSideMenuItem", this.#caption);
|
|
120521
120521
|
//this.data.caption = this.#caption;
|
|
120522
|
-
this.setAttribute("data-caption", this.innerText.trim());
|
|
120522
|
+
//this.setAttribute("data-caption", this.innerText.trim());
|
|
120523
120523
|
this.#init();
|
|
120524
120524
|
|
|
120525
120525
|
/**
|
|
@@ -121729,8 +121729,8 @@ class nxTitle extends HTMLElement {
|
|
|
121729
121729
|
const tempPath = []; // 임시 경로를 저장하여 역순으로 처리
|
|
121730
121730
|
|
|
121731
121731
|
// 1. 현재 활성화된 메뉴 항목의 캡션을 추가 (예: '심의자료')
|
|
121732
|
-
const currentActiveCaption = activeMenuItem.
|
|
121733
|
-
console.log("nxTitle", activeMenuItem.caption
|
|
121732
|
+
const currentActiveCaption = activeMenuItem.caption;//activeMenuItem.caption;
|
|
121733
|
+
console.log("nxTitle", activeMenuItem.caption);
|
|
121734
121734
|
|
|
121735
121735
|
if (currentActiveCaption) {
|
|
121736
121736
|
tempPath.unshift(currentActiveCaption); // 맨 앞에 추가
|
|
@@ -121752,7 +121752,7 @@ class nxTitle extends HTMLElement {
|
|
|
121752
121752
|
console.log(currentElement);
|
|
121753
121753
|
|
|
121754
121754
|
if (currentElement && currentElement.tagName === 'NX-SIDE-MENU-ITEM') {
|
|
121755
|
-
const caption = currentElement.getAttribute('caption');
|
|
121755
|
+
const caption = currentElement.caption;//.getAttribute('caption');
|
|
121756
121756
|
|
|
121757
121757
|
// 'group' 속성을 가진 메뉴 항목 찾기 (예: '자료관리')
|
|
121758
121758
|
if (currentElement.hasAttribute('group')) {
|
package/dist/etc/nxSideMenu.js
CHANGED
|
@@ -369,9 +369,9 @@ class nxSideMenuItem extends HTMLElement
|
|
|
369
369
|
requestAnimationFrame(() => {
|
|
370
370
|
|
|
371
371
|
|
|
372
|
-
console.log("nxSideMenuItem", this.#caption);
|
|
372
|
+
//console.log("nxSideMenuItem", this.#caption);
|
|
373
373
|
//this.data.caption = this.#caption;
|
|
374
|
-
this.setAttribute("data-caption", this.innerText.trim());
|
|
374
|
+
//this.setAttribute("data-caption", this.innerText.trim());
|
|
375
375
|
this.#init();
|
|
376
376
|
|
|
377
377
|
/**
|
package/dist/nx/nxTitle.js
CHANGED
|
@@ -51,8 +51,8 @@ class nxTitle extends HTMLElement {
|
|
|
51
51
|
const tempPath = []; // 임시 경로를 저장하여 역순으로 처리
|
|
52
52
|
|
|
53
53
|
// 1. 현재 활성화된 메뉴 항목의 캡션을 추가 (예: '심의자료')
|
|
54
|
-
const currentActiveCaption = activeMenuItem.
|
|
55
|
-
console.log("nxTitle", activeMenuItem.caption
|
|
54
|
+
const currentActiveCaption = activeMenuItem.caption;//activeMenuItem.caption;
|
|
55
|
+
console.log("nxTitle", activeMenuItem.caption);
|
|
56
56
|
|
|
57
57
|
if (currentActiveCaption) {
|
|
58
58
|
tempPath.unshift(currentActiveCaption); // 맨 앞에 추가
|
|
@@ -75,7 +75,7 @@ class nxTitle extends HTMLElement {
|
|
|
75
75
|
console.log(currentElement);
|
|
76
76
|
|
|
77
77
|
if (currentElement && currentElement.tagName === 'NX-SIDE-MENU-ITEM') {
|
|
78
|
-
const caption = currentElement.getAttribute('caption');
|
|
78
|
+
const caption = currentElement.caption;//.getAttribute('caption');
|
|
79
79
|
|
|
80
80
|
// 'group' 속성을 가진 메뉴 항목 찾기 (예: '자료관리')
|
|
81
81
|
if (currentElement.hasAttribute('group')) {
|
package/package.json
CHANGED
package/src/etc/nxSideMenu.js
CHANGED
|
@@ -369,9 +369,9 @@ class nxSideMenuItem extends HTMLElement
|
|
|
369
369
|
requestAnimationFrame(() => {
|
|
370
370
|
|
|
371
371
|
|
|
372
|
-
console.log("nxSideMenuItem", this.#caption);
|
|
372
|
+
//console.log("nxSideMenuItem", this.#caption);
|
|
373
373
|
//this.data.caption = this.#caption;
|
|
374
|
-
this.setAttribute("data-caption", this.innerText.trim());
|
|
374
|
+
//this.setAttribute("data-caption", this.innerText.trim());
|
|
375
375
|
this.#init();
|
|
376
376
|
|
|
377
377
|
/**
|
package/src/nx/nxTitle.js
CHANGED
|
@@ -51,8 +51,8 @@ class nxTitle extends HTMLElement {
|
|
|
51
51
|
const tempPath = []; // 임시 경로를 저장하여 역순으로 처리
|
|
52
52
|
|
|
53
53
|
// 1. 현재 활성화된 메뉴 항목의 캡션을 추가 (예: '심의자료')
|
|
54
|
-
const currentActiveCaption = activeMenuItem.
|
|
55
|
-
console.log("nxTitle", activeMenuItem.caption
|
|
54
|
+
const currentActiveCaption = activeMenuItem.caption;//activeMenuItem.caption;
|
|
55
|
+
console.log("nxTitle", activeMenuItem.caption);
|
|
56
56
|
|
|
57
57
|
if (currentActiveCaption) {
|
|
58
58
|
tempPath.unshift(currentActiveCaption); // 맨 앞에 추가
|
|
@@ -75,7 +75,7 @@ class nxTitle extends HTMLElement {
|
|
|
75
75
|
console.log(currentElement);
|
|
76
76
|
|
|
77
77
|
if (currentElement && currentElement.tagName === 'NX-SIDE-MENU-ITEM') {
|
|
78
|
-
const caption = currentElement.getAttribute('caption');
|
|
78
|
+
const caption = currentElement.caption;//.getAttribute('caption');
|
|
79
79
|
|
|
80
80
|
// 'group' 속성을 가진 메뉴 항목 찾기 (예: '자료관리')
|
|
81
81
|
if (currentElement.hasAttribute('group')) {
|