ninegrid2 6.893.0 → 6.895.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 -1
- package/dist/bundle.esm.js +8 -1
- package/dist/nx/nxTab.js +1 -0
- package/dist/utils/ninegrid.js +7 -1
- package/package.json +1 -1
- package/src/nx/nxTab.js +1 -0
- package/src/utils/ninegrid.js +7 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -11508,9 +11508,15 @@ class ninegrid {
|
|
|
11508
11508
|
}
|
|
11509
11509
|
|
|
11510
11510
|
return null; // 없으면 null 반환
|
|
11511
|
-
}
|
|
11511
|
+
};
|
|
11512
11512
|
|
|
11513
|
+
static confirm(message, title, options) {
|
|
11514
|
+
return nxConfirmPopup.confirm(message, title, options);
|
|
11515
|
+
};
|
|
11513
11516
|
|
|
11517
|
+
static alert(message, title, options) {
|
|
11518
|
+
return nxAlertPopup.alert(message, title, options);
|
|
11519
|
+
};
|
|
11514
11520
|
|
|
11515
11521
|
static i18n = {
|
|
11516
11522
|
convertArrayToJSON : (arr) => {
|
|
@@ -121161,6 +121167,7 @@ class nxTab extends HTMLElement {
|
|
|
121161
121167
|
activeContent.classList.remove('active','exit-left','exit-right');
|
|
121162
121168
|
//newContent.classList.remove('exit-left','exit-right');
|
|
121163
121169
|
activeContent.style.left = '';
|
|
121170
|
+
activeContent.classList.add('exit-left');
|
|
121164
121171
|
|
|
121165
121172
|
newContent.classList.add('active');
|
|
121166
121173
|
newContent.style.left = '';
|
package/dist/bundle.esm.js
CHANGED
|
@@ -11504,9 +11504,15 @@ class ninegrid {
|
|
|
11504
11504
|
}
|
|
11505
11505
|
|
|
11506
11506
|
return null; // 없으면 null 반환
|
|
11507
|
-
}
|
|
11507
|
+
};
|
|
11508
11508
|
|
|
11509
|
+
static confirm(message, title, options) {
|
|
11510
|
+
return nxConfirmPopup.confirm(message, title, options);
|
|
11511
|
+
};
|
|
11509
11512
|
|
|
11513
|
+
static alert(message, title, options) {
|
|
11514
|
+
return nxAlertPopup.alert(message, title, options);
|
|
11515
|
+
};
|
|
11510
11516
|
|
|
11511
11517
|
static i18n = {
|
|
11512
11518
|
convertArrayToJSON : (arr) => {
|
|
@@ -121157,6 +121163,7 @@ class nxTab extends HTMLElement {
|
|
|
121157
121163
|
activeContent.classList.remove('active','exit-left','exit-right');
|
|
121158
121164
|
//newContent.classList.remove('exit-left','exit-right');
|
|
121159
121165
|
activeContent.style.left = '';
|
|
121166
|
+
activeContent.classList.add('exit-left');
|
|
121160
121167
|
|
|
121161
121168
|
newContent.classList.add('active');
|
|
121162
121169
|
newContent.style.left = '';
|
package/dist/nx/nxTab.js
CHANGED
|
@@ -138,6 +138,7 @@ class nxTab extends HTMLElement {
|
|
|
138
138
|
activeContent.classList.remove('active','exit-left','exit-right');
|
|
139
139
|
//newContent.classList.remove('exit-left','exit-right');
|
|
140
140
|
activeContent.style.left = '';
|
|
141
|
+
activeContent.classList.add('exit-left');
|
|
141
142
|
|
|
142
143
|
newContent.classList.add('active');
|
|
143
144
|
newContent.style.left = '';
|
package/dist/utils/ninegrid.js
CHANGED
|
@@ -641,9 +641,15 @@ export class ninegrid {
|
|
|
641
641
|
}
|
|
642
642
|
|
|
643
643
|
return null; // 없으면 null 반환
|
|
644
|
-
}
|
|
644
|
+
};
|
|
645
645
|
|
|
646
|
+
static confirm(message, title, options) {
|
|
647
|
+
return nxConfirmPopup.confirm(message, title, options);
|
|
648
|
+
};
|
|
646
649
|
|
|
650
|
+
static alert(message, title, options) {
|
|
651
|
+
return nxAlertPopup.alert(message, title, options);
|
|
652
|
+
};
|
|
647
653
|
|
|
648
654
|
static i18n = {
|
|
649
655
|
convertArrayToJSON : (arr) => {
|
package/package.json
CHANGED
package/src/nx/nxTab.js
CHANGED
|
@@ -138,6 +138,7 @@ class nxTab extends HTMLElement {
|
|
|
138
138
|
activeContent.classList.remove('active','exit-left','exit-right');
|
|
139
139
|
//newContent.classList.remove('exit-left','exit-right');
|
|
140
140
|
activeContent.style.left = '';
|
|
141
|
+
activeContent.classList.add('exit-left');
|
|
141
142
|
|
|
142
143
|
newContent.classList.add('active');
|
|
143
144
|
newContent.style.left = '';
|
package/src/utils/ninegrid.js
CHANGED
|
@@ -641,9 +641,15 @@ export class ninegrid {
|
|
|
641
641
|
}
|
|
642
642
|
|
|
643
643
|
return null; // 없으면 null 반환
|
|
644
|
-
}
|
|
644
|
+
};
|
|
645
645
|
|
|
646
|
+
static confirm(message, title, options) {
|
|
647
|
+
return nxConfirmPopup.confirm(message, title, options);
|
|
648
|
+
};
|
|
646
649
|
|
|
650
|
+
static alert(message, title, options) {
|
|
651
|
+
return nxAlertPopup.alert(message, title, options);
|
|
652
|
+
};
|
|
647
653
|
|
|
648
654
|
static i18n = {
|
|
649
655
|
convertArrayToJSON : (arr) => {
|