ninegrid2 6.914.0 → 6.916.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 +8 -51
- package/dist/bundle.esm.js +8 -51
- package/dist/nx/nxTitle.js +8 -51
- package/package.json +1 -1
- package/src/nx/nxTitle.js +8 -51
package/dist/bundle.cjs.js
CHANGED
|
@@ -121655,10 +121655,14 @@ class nxTitle extends HTMLElement {
|
|
|
121655
121655
|
}
|
|
121656
121656
|
|
|
121657
121657
|
connectedCallback() {
|
|
121658
|
-
this.#
|
|
121659
|
-
this.#generateBreadcrumb(); // 빵 부스러기 데이터 생성 및 최종 렌더링 트리거
|
|
121658
|
+
this.#init();
|
|
121660
121659
|
}
|
|
121661
121660
|
|
|
121661
|
+
#init = () => {
|
|
121662
|
+
this.#generateBreadcrumb(); // 빵 부스러기 데이터 생성 및 최종 렌더링 트리거
|
|
121663
|
+
this.#renderer(); // 초기 렌더링 (빵 부스러기 데이터는 아직 없음)
|
|
121664
|
+
};
|
|
121665
|
+
|
|
121662
121666
|
// Breadcrumb 경로를 구성하는 비공개 메서드
|
|
121663
121667
|
#generateBreadcrumb = () => {
|
|
121664
121668
|
const path = ["Home"]; // 기본 경로 시작은 Home
|
|
@@ -121719,9 +121723,9 @@ console.log(currentElement);
|
|
|
121719
121723
|
|
|
121720
121724
|
// 마지막으로 현재 페이지의 구체적인 제목 추가
|
|
121721
121725
|
path.push(currentPageCaption);
|
|
121722
|
-
|
|
121726
|
+
console.log(path);
|
|
121723
121727
|
this.#breadcrumbPath = path;
|
|
121724
|
-
this.#renderer();
|
|
121728
|
+
//this.#renderer();
|
|
121725
121729
|
};
|
|
121726
121730
|
|
|
121727
121731
|
#renderer = () => {
|
|
@@ -121741,53 +121745,6 @@ console.log(currentElement);
|
|
|
121741
121745
|
<style>
|
|
121742
121746
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxTitle.css";
|
|
121743
121747
|
${ninegrid.getCustomPath(this,"nxTitle.css")}
|
|
121744
|
-
|
|
121745
|
-
/* Breadcrumb CSS */
|
|
121746
|
-
.breadcrumb-container {
|
|
121747
|
-
padding: 10px 15px;
|
|
121748
|
-
background-color: #f5f5f5;
|
|
121749
|
-
border-bottom: 1px solid #eee;
|
|
121750
|
-
font-size: 13px;
|
|
121751
|
-
color: #777;
|
|
121752
|
-
display: flex; /* 가로 정렬 */
|
|
121753
|
-
align-items: center;
|
|
121754
|
-
justify-content: flex-end; /* 오른쪽 정렬 */
|
|
121755
|
-
margin-bottom: 15px; /* 제목과의 간격 */
|
|
121756
|
-
}
|
|
121757
|
-
.breadcrumb-item {
|
|
121758
|
-
white-space: nowrap; /* 줄바꿈 방지 */
|
|
121759
|
-
}
|
|
121760
|
-
.breadcrumb-separator {
|
|
121761
|
-
margin: 0 5px;
|
|
121762
|
-
color: #bbb;
|
|
121763
|
-
}
|
|
121764
|
-
.breadcrumb-current {
|
|
121765
|
-
font-weight: bold;
|
|
121766
|
-
color: #333;
|
|
121767
|
-
}
|
|
121768
|
-
|
|
121769
|
-
/* Title CSS (아이콘 및 텍스트 스타일) */
|
|
121770
|
-
.title-wrapper {
|
|
121771
|
-
display: flex;
|
|
121772
|
-
align-items: center;
|
|
121773
|
-
padding: 10px 15px;
|
|
121774
|
-
border-bottom: 2px solid #eee;
|
|
121775
|
-
margin-bottom: 15px;
|
|
121776
|
-
}
|
|
121777
|
-
.title-icon {
|
|
121778
|
-
margin-right: 10px;
|
|
121779
|
-
font-size: 20px;
|
|
121780
|
-
color: #333;
|
|
121781
|
-
/* Font Awesome 등 외부 아이콘 라이브러리를 사용하는 경우 */
|
|
121782
|
-
/* font-family: 'Font Awesome 5 Free'; */
|
|
121783
|
-
/* font-weight: 900; */
|
|
121784
|
-
/* content: '\f054'; */
|
|
121785
|
-
}
|
|
121786
|
-
.title-text {
|
|
121787
|
-
font-size: 18px;
|
|
121788
|
-
font-weight: bold;
|
|
121789
|
-
color: #333;
|
|
121790
|
-
}
|
|
121791
121748
|
</style>
|
|
121792
121749
|
|
|
121793
121750
|
<div class="wrapper">
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121651,10 +121651,14 @@ class nxTitle extends HTMLElement {
|
|
|
121651
121651
|
}
|
|
121652
121652
|
|
|
121653
121653
|
connectedCallback() {
|
|
121654
|
-
this.#
|
|
121655
|
-
this.#generateBreadcrumb(); // 빵 부스러기 데이터 생성 및 최종 렌더링 트리거
|
|
121654
|
+
this.#init();
|
|
121656
121655
|
}
|
|
121657
121656
|
|
|
121657
|
+
#init = () => {
|
|
121658
|
+
this.#generateBreadcrumb(); // 빵 부스러기 데이터 생성 및 최종 렌더링 트리거
|
|
121659
|
+
this.#renderer(); // 초기 렌더링 (빵 부스러기 데이터는 아직 없음)
|
|
121660
|
+
};
|
|
121661
|
+
|
|
121658
121662
|
// Breadcrumb 경로를 구성하는 비공개 메서드
|
|
121659
121663
|
#generateBreadcrumb = () => {
|
|
121660
121664
|
const path = ["Home"]; // 기본 경로 시작은 Home
|
|
@@ -121715,9 +121719,9 @@ console.log(currentElement);
|
|
|
121715
121719
|
|
|
121716
121720
|
// 마지막으로 현재 페이지의 구체적인 제목 추가
|
|
121717
121721
|
path.push(currentPageCaption);
|
|
121718
|
-
|
|
121722
|
+
console.log(path);
|
|
121719
121723
|
this.#breadcrumbPath = path;
|
|
121720
|
-
this.#renderer();
|
|
121724
|
+
//this.#renderer();
|
|
121721
121725
|
};
|
|
121722
121726
|
|
|
121723
121727
|
#renderer = () => {
|
|
@@ -121737,53 +121741,6 @@ console.log(currentElement);
|
|
|
121737
121741
|
<style>
|
|
121738
121742
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxTitle.css";
|
|
121739
121743
|
${ninegrid.getCustomPath(this,"nxTitle.css")}
|
|
121740
|
-
|
|
121741
|
-
/* Breadcrumb CSS */
|
|
121742
|
-
.breadcrumb-container {
|
|
121743
|
-
padding: 10px 15px;
|
|
121744
|
-
background-color: #f5f5f5;
|
|
121745
|
-
border-bottom: 1px solid #eee;
|
|
121746
|
-
font-size: 13px;
|
|
121747
|
-
color: #777;
|
|
121748
|
-
display: flex; /* 가로 정렬 */
|
|
121749
|
-
align-items: center;
|
|
121750
|
-
justify-content: flex-end; /* 오른쪽 정렬 */
|
|
121751
|
-
margin-bottom: 15px; /* 제목과의 간격 */
|
|
121752
|
-
}
|
|
121753
|
-
.breadcrumb-item {
|
|
121754
|
-
white-space: nowrap; /* 줄바꿈 방지 */
|
|
121755
|
-
}
|
|
121756
|
-
.breadcrumb-separator {
|
|
121757
|
-
margin: 0 5px;
|
|
121758
|
-
color: #bbb;
|
|
121759
|
-
}
|
|
121760
|
-
.breadcrumb-current {
|
|
121761
|
-
font-weight: bold;
|
|
121762
|
-
color: #333;
|
|
121763
|
-
}
|
|
121764
|
-
|
|
121765
|
-
/* Title CSS (아이콘 및 텍스트 스타일) */
|
|
121766
|
-
.title-wrapper {
|
|
121767
|
-
display: flex;
|
|
121768
|
-
align-items: center;
|
|
121769
|
-
padding: 10px 15px;
|
|
121770
|
-
border-bottom: 2px solid #eee;
|
|
121771
|
-
margin-bottom: 15px;
|
|
121772
|
-
}
|
|
121773
|
-
.title-icon {
|
|
121774
|
-
margin-right: 10px;
|
|
121775
|
-
font-size: 20px;
|
|
121776
|
-
color: #333;
|
|
121777
|
-
/* Font Awesome 등 외부 아이콘 라이브러리를 사용하는 경우 */
|
|
121778
|
-
/* font-family: 'Font Awesome 5 Free'; */
|
|
121779
|
-
/* font-weight: 900; */
|
|
121780
|
-
/* content: '\f054'; */
|
|
121781
|
-
}
|
|
121782
|
-
.title-text {
|
|
121783
|
-
font-size: 18px;
|
|
121784
|
-
font-weight: bold;
|
|
121785
|
-
color: #333;
|
|
121786
|
-
}
|
|
121787
121744
|
</style>
|
|
121788
121745
|
|
|
121789
121746
|
<div class="wrapper">
|
package/dist/nx/nxTitle.js
CHANGED
|
@@ -10,10 +10,14 @@ class nxTitle extends HTMLElement {
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
connectedCallback() {
|
|
13
|
-
this.#
|
|
14
|
-
this.#generateBreadcrumb(); // 빵 부스러기 데이터 생성 및 최종 렌더링 트리거
|
|
13
|
+
this.#init();
|
|
15
14
|
}
|
|
16
15
|
|
|
16
|
+
#init = () => {
|
|
17
|
+
this.#generateBreadcrumb(); // 빵 부스러기 데이터 생성 및 최종 렌더링 트리거
|
|
18
|
+
this.#renderer(); // 초기 렌더링 (빵 부스러기 데이터는 아직 없음)
|
|
19
|
+
};
|
|
20
|
+
|
|
17
21
|
// Breadcrumb 경로를 구성하는 비공개 메서드
|
|
18
22
|
#generateBreadcrumb = () => {
|
|
19
23
|
const path = ["Home"]; // 기본 경로 시작은 Home
|
|
@@ -90,9 +94,9 @@ console.log(currentElement);
|
|
|
90
94
|
|
|
91
95
|
// 마지막으로 현재 페이지의 구체적인 제목 추가
|
|
92
96
|
path.push(currentPageCaption);
|
|
93
|
-
|
|
97
|
+
console.log(path);
|
|
94
98
|
this.#breadcrumbPath = path;
|
|
95
|
-
this.#renderer();
|
|
99
|
+
//this.#renderer();
|
|
96
100
|
};
|
|
97
101
|
|
|
98
102
|
#renderer = () => {
|
|
@@ -112,53 +116,6 @@ console.log(currentElement);
|
|
|
112
116
|
<style>
|
|
113
117
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxTitle.css";
|
|
114
118
|
${ninegrid.getCustomPath(this,"nxTitle.css")}
|
|
115
|
-
|
|
116
|
-
/* Breadcrumb CSS */
|
|
117
|
-
.breadcrumb-container {
|
|
118
|
-
padding: 10px 15px;
|
|
119
|
-
background-color: #f5f5f5;
|
|
120
|
-
border-bottom: 1px solid #eee;
|
|
121
|
-
font-size: 13px;
|
|
122
|
-
color: #777;
|
|
123
|
-
display: flex; /* 가로 정렬 */
|
|
124
|
-
align-items: center;
|
|
125
|
-
justify-content: flex-end; /* 오른쪽 정렬 */
|
|
126
|
-
margin-bottom: 15px; /* 제목과의 간격 */
|
|
127
|
-
}
|
|
128
|
-
.breadcrumb-item {
|
|
129
|
-
white-space: nowrap; /* 줄바꿈 방지 */
|
|
130
|
-
}
|
|
131
|
-
.breadcrumb-separator {
|
|
132
|
-
margin: 0 5px;
|
|
133
|
-
color: #bbb;
|
|
134
|
-
}
|
|
135
|
-
.breadcrumb-current {
|
|
136
|
-
font-weight: bold;
|
|
137
|
-
color: #333;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
/* Title CSS (아이콘 및 텍스트 스타일) */
|
|
141
|
-
.title-wrapper {
|
|
142
|
-
display: flex;
|
|
143
|
-
align-items: center;
|
|
144
|
-
padding: 10px 15px;
|
|
145
|
-
border-bottom: 2px solid #eee;
|
|
146
|
-
margin-bottom: 15px;
|
|
147
|
-
}
|
|
148
|
-
.title-icon {
|
|
149
|
-
margin-right: 10px;
|
|
150
|
-
font-size: 20px;
|
|
151
|
-
color: #333;
|
|
152
|
-
/* Font Awesome 등 외부 아이콘 라이브러리를 사용하는 경우 */
|
|
153
|
-
/* font-family: 'Font Awesome 5 Free'; */
|
|
154
|
-
/* font-weight: 900; */
|
|
155
|
-
/* content: '\f054'; */
|
|
156
|
-
}
|
|
157
|
-
.title-text {
|
|
158
|
-
font-size: 18px;
|
|
159
|
-
font-weight: bold;
|
|
160
|
-
color: #333;
|
|
161
|
-
}
|
|
162
119
|
</style>
|
|
163
120
|
|
|
164
121
|
<div class="wrapper">
|
package/package.json
CHANGED
package/src/nx/nxTitle.js
CHANGED
|
@@ -10,10 +10,14 @@ class nxTitle extends HTMLElement {
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
connectedCallback() {
|
|
13
|
-
this.#
|
|
14
|
-
this.#generateBreadcrumb(); // 빵 부스러기 데이터 생성 및 최종 렌더링 트리거
|
|
13
|
+
this.#init();
|
|
15
14
|
}
|
|
16
15
|
|
|
16
|
+
#init = () => {
|
|
17
|
+
this.#generateBreadcrumb(); // 빵 부스러기 데이터 생성 및 최종 렌더링 트리거
|
|
18
|
+
this.#renderer(); // 초기 렌더링 (빵 부스러기 데이터는 아직 없음)
|
|
19
|
+
};
|
|
20
|
+
|
|
17
21
|
// Breadcrumb 경로를 구성하는 비공개 메서드
|
|
18
22
|
#generateBreadcrumb = () => {
|
|
19
23
|
const path = ["Home"]; // 기본 경로 시작은 Home
|
|
@@ -90,9 +94,9 @@ console.log(currentElement);
|
|
|
90
94
|
|
|
91
95
|
// 마지막으로 현재 페이지의 구체적인 제목 추가
|
|
92
96
|
path.push(currentPageCaption);
|
|
93
|
-
|
|
97
|
+
console.log(path);
|
|
94
98
|
this.#breadcrumbPath = path;
|
|
95
|
-
this.#renderer();
|
|
99
|
+
//this.#renderer();
|
|
96
100
|
};
|
|
97
101
|
|
|
98
102
|
#renderer = () => {
|
|
@@ -112,53 +116,6 @@ console.log(currentElement);
|
|
|
112
116
|
<style>
|
|
113
117
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxTitle.css";
|
|
114
118
|
${ninegrid.getCustomPath(this,"nxTitle.css")}
|
|
115
|
-
|
|
116
|
-
/* Breadcrumb CSS */
|
|
117
|
-
.breadcrumb-container {
|
|
118
|
-
padding: 10px 15px;
|
|
119
|
-
background-color: #f5f5f5;
|
|
120
|
-
border-bottom: 1px solid #eee;
|
|
121
|
-
font-size: 13px;
|
|
122
|
-
color: #777;
|
|
123
|
-
display: flex; /* 가로 정렬 */
|
|
124
|
-
align-items: center;
|
|
125
|
-
justify-content: flex-end; /* 오른쪽 정렬 */
|
|
126
|
-
margin-bottom: 15px; /* 제목과의 간격 */
|
|
127
|
-
}
|
|
128
|
-
.breadcrumb-item {
|
|
129
|
-
white-space: nowrap; /* 줄바꿈 방지 */
|
|
130
|
-
}
|
|
131
|
-
.breadcrumb-separator {
|
|
132
|
-
margin: 0 5px;
|
|
133
|
-
color: #bbb;
|
|
134
|
-
}
|
|
135
|
-
.breadcrumb-current {
|
|
136
|
-
font-weight: bold;
|
|
137
|
-
color: #333;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
/* Title CSS (아이콘 및 텍스트 스타일) */
|
|
141
|
-
.title-wrapper {
|
|
142
|
-
display: flex;
|
|
143
|
-
align-items: center;
|
|
144
|
-
padding: 10px 15px;
|
|
145
|
-
border-bottom: 2px solid #eee;
|
|
146
|
-
margin-bottom: 15px;
|
|
147
|
-
}
|
|
148
|
-
.title-icon {
|
|
149
|
-
margin-right: 10px;
|
|
150
|
-
font-size: 20px;
|
|
151
|
-
color: #333;
|
|
152
|
-
/* Font Awesome 등 외부 아이콘 라이브러리를 사용하는 경우 */
|
|
153
|
-
/* font-family: 'Font Awesome 5 Free'; */
|
|
154
|
-
/* font-weight: 900; */
|
|
155
|
-
/* content: '\f054'; */
|
|
156
|
-
}
|
|
157
|
-
.title-text {
|
|
158
|
-
font-size: 18px;
|
|
159
|
-
font-weight: bold;
|
|
160
|
-
color: #333;
|
|
161
|
-
}
|
|
162
119
|
</style>
|
|
163
120
|
|
|
164
121
|
<div class="wrapper">
|