@breadstone/mosaik-elements-angular 0.0.228 → 0.0.229
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-angular",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.229",
|
|
4
4
|
"description": "Mosaik elements for Angular.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"rxjs": "*"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@breadstone/mosaik-elements": "^0.0.
|
|
23
|
-
"@breadstone/mosaik-elements-foundation": "^0.0.
|
|
22
|
+
"@breadstone/mosaik-elements": "^0.0.229",
|
|
23
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.229",
|
|
24
24
|
"tslib": "^2.8.1"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -48625,21 +48625,23 @@ declare function provideTheme(config: {
|
|
|
48625
48625
|
}): EnvironmentProviders;
|
|
48626
48626
|
|
|
48627
48627
|
/**
|
|
48628
|
-
* The `
|
|
48628
|
+
* The `ThemeService` class.
|
|
48629
48629
|
*
|
|
48630
48630
|
* @public
|
|
48631
48631
|
*/
|
|
48632
48632
|
declare class ThemeService {
|
|
48633
48633
|
private readonly _theme;
|
|
48634
|
+
private readonly _themeMode;
|
|
48634
48635
|
private readonly _themeObserver;
|
|
48635
48636
|
/**
|
|
48636
48637
|
* Constructs a new instance of the `{@link ThemeService}` class.
|
|
48637
48638
|
*
|
|
48638
48639
|
* @public
|
|
48639
48640
|
*/
|
|
48640
|
-
constructor(theme?: Signal<ITheme>, themeObserver?: ThemeObserver);
|
|
48641
|
+
constructor(theme?: Signal<ITheme>, themeMode?: Signal<ThemeMode>, themeObserver?: ThemeObserver);
|
|
48641
48642
|
get schemes(): Array<string>;
|
|
48642
48643
|
get palettes(): Array<string>;
|
|
48644
|
+
initialize(): void;
|
|
48643
48645
|
applyTheme(mode: ThemeMode): void;
|
|
48644
48646
|
}
|
|
48645
48647
|
|