@arsedizioni/ars-utils 18.2.290 → 18.2.292
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/core/services/theme.service.d.ts +6 -2
- package/esm2022/clipper.common/common/definitions.mjs +6 -1
- package/esm2022/core/services/theme.service.mjs +16 -7
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +5 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +15 -6
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/package.json +12 -12
|
@@ -34,8 +34,12 @@ export declare class ThemeService implements OnDestroy {
|
|
|
34
34
|
* Tooltip text on toggle
|
|
35
35
|
*/
|
|
36
36
|
readonly toggleTooltip: Signal<string>;
|
|
37
|
-
|
|
37
|
+
initialize(): void;
|
|
38
38
|
ngOnDestroy(): void;
|
|
39
|
+
/**
|
|
40
|
+
* Load current theme
|
|
41
|
+
*/
|
|
42
|
+
private loadTheme;
|
|
39
43
|
/**
|
|
40
44
|
* Check if a value string is a theme type
|
|
41
45
|
* @param value : th string value
|
|
@@ -53,7 +57,7 @@ export declare class ThemeService implements OnDestroy {
|
|
|
53
57
|
toggleTheme(): void;
|
|
54
58
|
/**
|
|
55
59
|
* Get current active theme
|
|
56
|
-
*
|
|
60
|
+
* // Load current theme
|
|
57
61
|
*/
|
|
58
62
|
getTheme(): ThemeType;
|
|
59
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
|