ninegrid2 6.453.0 → 6.454.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 -2
- package/dist/bundle.esm.js +5 -2
- package/dist/etc/ngExport.js +5 -2
- package/package.json +1 -1
- package/src/etc/ngExport.js +5 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -17877,8 +17877,11 @@ class ngExport extends HTMLElement
|
|
|
17877
17877
|
|
|
17878
17878
|
exportExcel = () => {
|
|
17879
17879
|
//console.log("export Excel...");
|
|
17880
|
-
this.#
|
|
17881
|
-
|
|
17880
|
+
if (this.#owner.data.count() > 100) {
|
|
17881
|
+
this.#dialog.showModal();
|
|
17882
|
+
$(".title", this.#dialog).html("Export Excel");
|
|
17883
|
+
}
|
|
17884
|
+
|
|
17882
17885
|
this.#excel.export();
|
|
17883
17886
|
};
|
|
17884
17887
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -17875,8 +17875,11 @@ class ngExport extends HTMLElement
|
|
|
17875
17875
|
|
|
17876
17876
|
exportExcel = () => {
|
|
17877
17877
|
//console.log("export Excel...");
|
|
17878
|
-
this.#
|
|
17879
|
-
|
|
17878
|
+
if (this.#owner.data.count() > 100) {
|
|
17879
|
+
this.#dialog.showModal();
|
|
17880
|
+
$(".title", this.#dialog).html("Export Excel");
|
|
17881
|
+
}
|
|
17882
|
+
|
|
17880
17883
|
this.#excel.export();
|
|
17881
17884
|
};
|
|
17882
17885
|
}
|
package/dist/etc/ngExport.js
CHANGED
|
@@ -423,8 +423,11 @@ export class ngExport extends HTMLElement
|
|
|
423
423
|
|
|
424
424
|
exportExcel = () => {
|
|
425
425
|
//console.log("export Excel...");
|
|
426
|
-
this.#
|
|
427
|
-
|
|
426
|
+
if (this.#owner.data.count() > 100) {
|
|
427
|
+
this.#dialog.showModal();
|
|
428
|
+
$(".title", this.#dialog).html("Export Excel");
|
|
429
|
+
}
|
|
430
|
+
|
|
428
431
|
this.#excel.export();
|
|
429
432
|
};
|
|
430
433
|
}
|
package/package.json
CHANGED
package/src/etc/ngExport.js
CHANGED
|
@@ -423,8 +423,11 @@ export class ngExport extends HTMLElement
|
|
|
423
423
|
|
|
424
424
|
exportExcel = () => {
|
|
425
425
|
//console.log("export Excel...");
|
|
426
|
-
this.#
|
|
427
|
-
|
|
426
|
+
if (this.#owner.data.count() > 100) {
|
|
427
|
+
this.#dialog.showModal();
|
|
428
|
+
$(".title", this.#dialog).html("Export Excel");
|
|
429
|
+
}
|
|
430
|
+
|
|
428
431
|
this.#excel.export();
|
|
429
432
|
};
|
|
430
433
|
}
|