@arsedizioni/ars-utils 19.4.2 → 19.4.4

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.
@@ -755,10 +755,10 @@ class DateIntervalChangeDirective {
755
755
  ngOnDestroy() {
756
756
  this.subscription.unsubscribe();
757
757
  }
758
- onKeyup(event) {
759
- if (event.key === ' ') {
760
- event.preventDefault();
761
- event.stopPropagation();
758
+ onKeyup(e) {
759
+ if (e.key === ' ') {
760
+ e.preventDefault();
761
+ e.stopPropagation();
762
762
  }
763
763
  this.subject.next(event);
764
764
  }
@@ -781,8 +781,8 @@ class CopyClipboardDirective {
781
781
  this.payload = input(undefined, { alias: "copyClipboard" });
782
782
  this.copied = output({ alias: 'copied' });
783
783
  }
784
- onClick(event) {
785
- event.preventDefault();
784
+ onClick(e) {
785
+ e.preventDefault();
786
786
  if (!this.payload())
787
787
  return;
788
788
  if (SystemUtils.isBrowser()) {
@@ -1849,7 +1849,7 @@ class ThemeService {
1849
1849
  // per intercettare il cambio di tema a livello di sistema
1850
1850
  this.prefersColorSchemeMediaQueryList = window.matchMedia('(prefers-color-scheme: dark)');
1851
1851
  /**
1852
- * Theme changed event.
1852
+ * Theme changed e.
1853
1853
  * Notify the consuming component about the incoming theme change.
1854
1854
  * @example
1855
1855
  * // React to theme changes