main
Last change
on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
716 bytes
|
Line | |
---|
1 | // ----------------------------------------------------------------------
|
---|
2 |
|
---|
3 | export type SettingsValueProps = {
|
---|
4 | themeStretch: boolean;
|
---|
5 | themeMode: 'light' | 'dark';
|
---|
6 | themeDirection: 'rtl' | 'ltr';
|
---|
7 | themeContrast: 'default' | 'bold';
|
---|
8 | themeLayout: 'vertical' | 'horizontal' | 'mini';
|
---|
9 | themeColorPresets: 'default' | 'cyan' | 'purple' | 'blue' | 'orange' | 'red';
|
---|
10 | };
|
---|
11 |
|
---|
12 | export type SettingsContextProps = SettingsValueProps & {
|
---|
13 | // Update
|
---|
14 | onUpdate: (name: string, value: string | boolean) => void;
|
---|
15 | // Direction by lang
|
---|
16 | onChangeDirectionByLang: (lang: string) => void;
|
---|
17 | // Reset
|
---|
18 | canReset: boolean;
|
---|
19 | onReset: VoidFunction;
|
---|
20 | // Drawer
|
---|
21 | open: boolean;
|
---|
22 | onToggle: VoidFunction;
|
---|
23 | onClose: VoidFunction;
|
---|
24 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.