ninegrid2 6.895.0 → 6.896.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 -0
- package/dist/bundle.esm.js +8 -0
- package/dist/utils/ninegrid.js +8 -0
- package/package.json +1 -1
- package/src/utils/ninegrid.js +8 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -11510,6 +11510,14 @@ class ninegrid {
|
|
|
11510
11510
|
return null; // 없으면 null 반환
|
|
11511
11511
|
};
|
|
11512
11512
|
|
|
11513
|
+
static setOptions = (k,o) => {
|
|
11514
|
+
for (const prop in o) {
|
|
11515
|
+
if (ninegrid.options[k][prop]) {
|
|
11516
|
+
ninegrid.options[k][prop] = o[prop];
|
|
11517
|
+
}
|
|
11518
|
+
}
|
|
11519
|
+
};
|
|
11520
|
+
|
|
11513
11521
|
static confirm(message, title, options) {
|
|
11514
11522
|
return nxConfirmPopup.confirm(message, title, options);
|
|
11515
11523
|
};
|
package/dist/bundle.esm.js
CHANGED
|
@@ -11506,6 +11506,14 @@ class ninegrid {
|
|
|
11506
11506
|
return null; // 없으면 null 반환
|
|
11507
11507
|
};
|
|
11508
11508
|
|
|
11509
|
+
static setOptions = (k,o) => {
|
|
11510
|
+
for (const prop in o) {
|
|
11511
|
+
if (ninegrid.options[k][prop]) {
|
|
11512
|
+
ninegrid.options[k][prop] = o[prop];
|
|
11513
|
+
}
|
|
11514
|
+
}
|
|
11515
|
+
};
|
|
11516
|
+
|
|
11509
11517
|
static confirm(message, title, options) {
|
|
11510
11518
|
return nxConfirmPopup.confirm(message, title, options);
|
|
11511
11519
|
};
|
package/dist/utils/ninegrid.js
CHANGED
|
@@ -643,6 +643,14 @@ export class ninegrid {
|
|
|
643
643
|
return null; // 없으면 null 반환
|
|
644
644
|
};
|
|
645
645
|
|
|
646
|
+
static setOptions = (k,o) => {
|
|
647
|
+
for (const prop in o) {
|
|
648
|
+
if (ninegrid.options[k][prop]) {
|
|
649
|
+
ninegrid.options[k][prop] = o[prop];
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
};
|
|
653
|
+
|
|
646
654
|
static confirm(message, title, options) {
|
|
647
655
|
return nxConfirmPopup.confirm(message, title, options);
|
|
648
656
|
};
|
package/package.json
CHANGED
package/src/utils/ninegrid.js
CHANGED
|
@@ -643,6 +643,14 @@ export class ninegrid {
|
|
|
643
643
|
return null; // 없으면 null 반환
|
|
644
644
|
};
|
|
645
645
|
|
|
646
|
+
static setOptions = (k,o) => {
|
|
647
|
+
for (const prop in o) {
|
|
648
|
+
if (ninegrid.options[k][prop]) {
|
|
649
|
+
ninegrid.options[k][prop] = o[prop];
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
};
|
|
653
|
+
|
|
646
654
|
static confirm(message, title, options) {
|
|
647
655
|
return nxConfirmPopup.confirm(message, title, options);
|
|
648
656
|
};
|