valtech-components 2.0.981 → 2.0.982
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/esm2022/lib/components/organisms/preferences-view/preferences-view.component.mjs +36 -63
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +35 -62
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/preferences-view/preferences-view.component.d.ts +5 -8
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LanguageSelectorMetadata } from '../../molecules/language-selector/types';
|
|
2
|
+
import { PopoverSelectorMetadata } from '../../molecules/popover-selector/types';
|
|
2
3
|
import { PreferencesService } from '../../../services/preferences/preferences.service';
|
|
3
4
|
import { PreferencesViewConfig } from './types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
@@ -42,16 +43,12 @@ export declare class PreferencesViewComponent {
|
|
|
42
43
|
readonly langHint: import("@angular/core").Signal<string>;
|
|
43
44
|
readonly fontSizeTitle: import("@angular/core").Signal<string>;
|
|
44
45
|
readonly fontSizeHint: import("@angular/core").Signal<string>;
|
|
45
|
-
readonly themeLight: import("@angular/core").Signal<string>;
|
|
46
|
-
readonly themeDark: import("@angular/core").Signal<string>;
|
|
47
|
-
readonly themeAuto: import("@angular/core").Signal<string>;
|
|
48
|
-
readonly fontSizeSmall: import("@angular/core").Signal<string>;
|
|
49
|
-
readonly fontSizeMedium: import("@angular/core").Signal<string>;
|
|
50
|
-
readonly fontSizeLarge: import("@angular/core").Signal<string>;
|
|
51
46
|
readonly langProps: import("@angular/core").Signal<Partial<LanguageSelectorMetadata>>;
|
|
47
|
+
readonly themePickerProps: import("@angular/core").Signal<PopoverSelectorMetadata>;
|
|
48
|
+
readonly fontSizePickerProps: import("@angular/core").Signal<PopoverSelectorMetadata>;
|
|
52
49
|
constructor();
|
|
53
|
-
onThemeChange(value: string): Promise<void>;
|
|
54
|
-
onFontSizeChange(value: string): Promise<void>;
|
|
50
|
+
onThemeChange(value: string | string[]): Promise<void>;
|
|
51
|
+
onFontSizeChange(value: string | string[]): Promise<void>;
|
|
55
52
|
onLanguageChange(value: string): Promise<void>;
|
|
56
53
|
private dispatch;
|
|
57
54
|
/** Lee del namespace configurado. */
|
package/lib/version.d.ts
CHANGED