@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.
- package/clipper.common/common/definitions.d.ts +1 -0
- package/clipper.ui/ui/search-result-item/search-result-item.component.d.ts +1 -1
- package/core/directives/changeDateIntervalDirective.d.ts +1 -1
- package/core/directives/copyClipboardDirective.d.ts +1 -1
- package/core/services/theme.service.d.ts +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +5 -5
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +7 -7
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-help.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs +4 -4
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +19 -19
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/help/components/help-viewer/help-viewer.component.d.ts +1 -1
- package/package.json +9 -9
- package/support.ui/ui/notifications-browser/notifications-browser.component.d.ts +1 -1
- package/ui.application/ui/components/filter-bar/filter-bar.component.d.ts +1 -1
- package/ui.application/ui/dialogs/select-file/select-file-dialog.component.d.ts +5 -5
- package/ui.application/ui/directives/resize-table-column.directive.d.ts +2 -2
|
@@ -755,10 +755,10 @@ class DateIntervalChangeDirective {
|
|
|
755
755
|
ngOnDestroy() {
|
|
756
756
|
this.subscription.unsubscribe();
|
|
757
757
|
}
|
|
758
|
-
onKeyup(
|
|
759
|
-
if (
|
|
760
|
-
|
|
761
|
-
|
|
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(
|
|
785
|
-
|
|
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
|
|
1852
|
+
* Theme changed e.
|
|
1853
1853
|
* Notify the consuming component about the incoming theme change.
|
|
1854
1854
|
* @example
|
|
1855
1855
|
* // React to theme changes
|