myio-js-library 0.1.68 → 0.1.69

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/index.cjs CHANGED
@@ -8720,7 +8720,9 @@ var AllReportModal = class {
8720
8720
  domainConfig;
8721
8721
  // Debug logging helper
8722
8722
  debugLog(message, data) {
8723
- console.log(`[AllReportModal DEBUG] ${message}`, data || "");
8723
+ if (this.debugEnabled) {
8724
+ console.log(`[AllReportModal DEBUG] ${message}`, data || "");
8725
+ }
8724
8726
  }
8725
8727
  // Helper: normalize identifiers (upper, strip spaces and non-alphanum)
8726
8728
  normalizeId(v) {
package/dist/index.js CHANGED
@@ -8646,7 +8646,9 @@ var AllReportModal = class {
8646
8646
  domainConfig;
8647
8647
  // Debug logging helper
8648
8648
  debugLog(message, data) {
8649
- console.log(`[AllReportModal DEBUG] ${message}`, data || "");
8649
+ if (this.debugEnabled) {
8650
+ console.log(`[AllReportModal DEBUG] ${message}`, data || "");
8651
+ }
8650
8652
  }
8651
8653
  // Helper: normalize identifiers (upper, strip spaces and non-alphanum)
8652
8654
  normalizeId(v) {
@@ -8635,7 +8635,9 @@
8635
8635
  domainConfig;
8636
8636
  // Debug logging helper
8637
8637
  debugLog(message, data) {
8638
- console.log(`[AllReportModal DEBUG] ${message}`, data || "");
8638
+ if (this.debugEnabled) {
8639
+ console.log(`[AllReportModal DEBUG] ${message}`, data || "");
8640
+ }
8639
8641
  }
8640
8642
  // Helper: normalize identifiers (upper, strip spaces and non-alphanum)
8641
8643
  normalizeId(v) {