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.
@@ -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
  };
@@ -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
  };
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.895.0",
4
+ "version": "6.896.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -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
  };