@directus/themes 1.0.0 → 1.0.1
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/dist/components/theme-provider.vue.d.ts +15 -16
- package/dist/composables/use-fonts.d.ts +0 -1
- package/dist/composables/use-theme.d.ts +1 -2
- package/dist/schemas/theme.d.ts +227 -228
- package/dist/stores/theme.d.ts +0 -1
- package/dist/themes/index.d.ts +0 -1
- package/dist/utils/define-theme.d.ts +2 -262
- package/dist/utils/rules-to-css-vars.d.ts +1 -2
- package/package.json +9 -9
|
@@ -1,23 +1,22 @@
|
|
|
1
1
|
import { DeepPartial } from '@directus/types';
|
|
2
2
|
import { Theme } from '../schemas/index.js';
|
|
3
|
-
|
|
4
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
5
4
|
darkMode: boolean;
|
|
6
5
|
themeLight: string | null;
|
|
7
|
-
themeLightOverrides: DeepPartial<Theme[
|
|
6
|
+
themeLightOverrides: DeepPartial<Theme["rules"]>;
|
|
8
7
|
themeDark: string | null;
|
|
9
|
-
themeDarkOverrides: DeepPartial<Theme[
|
|
8
|
+
themeDarkOverrides: DeepPartial<Theme["rules"]>;
|
|
10
9
|
}>, {
|
|
11
10
|
themeLight: string;
|
|
12
11
|
themeDark: string;
|
|
13
12
|
themeLightOverrides: () => {};
|
|
14
13
|
themeDarkOverrides: () => {};
|
|
15
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<
|
|
14
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
16
15
|
darkMode: boolean;
|
|
17
16
|
themeLight: string | null;
|
|
18
|
-
themeLightOverrides: DeepPartial<Theme[
|
|
17
|
+
themeLightOverrides: DeepPartial<Theme["rules"]>;
|
|
19
18
|
themeDark: string | null;
|
|
20
|
-
themeDarkOverrides: DeepPartial<Theme[
|
|
19
|
+
themeDarkOverrides: DeepPartial<Theme["rules"]>;
|
|
21
20
|
}>, {
|
|
22
21
|
themeLight: string;
|
|
23
22
|
themeDark: string;
|
|
@@ -25,12 +24,17 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
25
24
|
themeDarkOverrides: () => {};
|
|
26
25
|
}>>>, {
|
|
27
26
|
themeLight: string | null;
|
|
28
|
-
themeLightOverrides: DeepPartial<Theme[
|
|
27
|
+
themeLightOverrides: DeepPartial<Theme["rules"]>;
|
|
29
28
|
themeDark: string | null;
|
|
30
|
-
themeDarkOverrides: DeepPartial<Theme[
|
|
29
|
+
themeDarkOverrides: DeepPartial<Theme["rules"]>;
|
|
31
30
|
}, {}>;
|
|
32
31
|
export default _default;
|
|
33
|
-
type
|
|
32
|
+
type __VLS_WithDefaults<P, D> = {
|
|
33
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
34
|
+
default: D[K];
|
|
35
|
+
}> : P[K];
|
|
36
|
+
};
|
|
37
|
+
type __VLS_TypePropsToOption<T> = {
|
|
34
38
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
35
39
|
type: import('vue').PropType<T[K]>;
|
|
36
40
|
} : {
|
|
@@ -38,11 +42,6 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
38
42
|
required: true;
|
|
39
43
|
};
|
|
40
44
|
};
|
|
41
|
-
type
|
|
42
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
43
|
-
default: D[K];
|
|
44
|
-
}> : P[K];
|
|
45
|
-
};
|
|
46
|
-
type __VLS_Prettify<T> = {
|
|
45
|
+
type __VLS_PrettifyLocal<T> = {
|
|
47
46
|
[K in keyof T]: T[K];
|
|
48
47
|
} & {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { DeepPartial } from '@directus/types';
|
|
2
2
|
import { MaybeRef } from 'vue';
|
|
3
3
|
import { Theme } from '../schemas/theme.js';
|
|
4
|
-
|
|
5
|
-
export declare const useTheme: (darkMode: MaybeRef<boolean>, themeLight: MaybeRef<string | null>, themeDark: MaybeRef<string | null>, themeLightOverrides: MaybeRef<DeepPartial<Theme['rules']>>, themeDarkOverrides: MaybeRef<DeepPartial<Theme['rules']>>) => {
|
|
4
|
+
export declare const useTheme: (darkMode: MaybeRef<boolean>, themeLight: MaybeRef<string | null>, themeDark: MaybeRef<string | null>, themeLightOverrides: MaybeRef<DeepPartial<Theme["rules"]>>, themeDarkOverrides: MaybeRef<DeepPartial<Theme["rules"]>>) => {
|
|
6
5
|
theme: import('vue').ComputedRef<{
|
|
7
6
|
id: string;
|
|
8
7
|
name: string;
|
package/dist/schemas/theme.d.ts
CHANGED
|
@@ -1,277 +1,276 @@
|
|
|
1
1
|
import { Static } from '@sinclair/typebox';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
2
|
+
export declare const ThemeSchema: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
3
|
+
id: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString;
|
|
4
|
+
name: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString;
|
|
5
|
+
appearance: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"light">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"dark">]>;
|
|
6
|
+
rules: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
7
|
+
borderRadius: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
8
|
+
borderWidth: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thin">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"medium">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thick">]>>>;
|
|
9
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
10
|
+
foregroundSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
11
|
+
foregroundAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
12
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
13
|
+
backgroundNormal: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
14
|
+
backgroundAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
15
|
+
backgroundSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
16
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
17
|
+
borderColorAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
18
|
+
borderColorSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
19
|
+
primary: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
20
|
+
primaryBackground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
21
|
+
primarySubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
22
|
+
primaryAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
23
|
+
secondary: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
24
|
+
secondaryBackground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
25
|
+
secondarySubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
26
|
+
secondaryAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
27
|
+
success: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
28
|
+
successBackground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
29
|
+
successSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
30
|
+
successAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
31
|
+
warning: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
32
|
+
warningBackground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
33
|
+
warningSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
34
|
+
warningAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
35
|
+
danger: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
36
|
+
dangerBackground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
37
|
+
dangerSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
38
|
+
dangerAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
39
|
+
fonts: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
40
|
+
display: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
41
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
42
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
44
43
|
}>>;
|
|
45
|
-
sans: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
46
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
47
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
44
|
+
sans: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
45
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
46
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
48
47
|
}>>;
|
|
49
|
-
serif: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
50
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
51
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
48
|
+
serif: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
49
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
50
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
52
51
|
}>>;
|
|
53
|
-
monospace: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
54
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
55
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
52
|
+
monospace: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
53
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
54
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
56
55
|
}>>;
|
|
57
56
|
}>>;
|
|
58
|
-
navigation: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
59
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
60
|
-
backgroundAccent: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
61
|
-
borderWidth: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TString, import('@sinclair/typebox').TLiteral<"thin">, import('@sinclair/typebox').TLiteral<"medium">, import('@sinclair/typebox').TLiteral<"thick">]>>>;
|
|
62
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
63
|
-
project: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
64
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
65
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
66
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
67
|
-
borderWidth: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TString, import('@sinclair/typebox').TLiteral<"thin">, import('@sinclair/typebox').TLiteral<"medium">, import('@sinclair/typebox').TLiteral<"thick">]>>>;
|
|
68
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
57
|
+
navigation: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
58
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
59
|
+
backgroundAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
60
|
+
borderWidth: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thin">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"medium">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thick">]>>>;
|
|
61
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
62
|
+
project: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
63
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
64
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
65
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
66
|
+
borderWidth: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thin">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"medium">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thick">]>>>;
|
|
67
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
69
68
|
}>>;
|
|
70
|
-
modules: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
71
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
72
|
-
borderWidth: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TString, import('@sinclair/typebox').TLiteral<"thin">, import('@sinclair/typebox').TLiteral<"medium">, import('@sinclair/typebox').TLiteral<"thick">]>>>;
|
|
73
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
74
|
-
button: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
75
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
76
|
-
foregroundHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
77
|
-
foregroundActive: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
78
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
79
|
-
backgroundHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
80
|
-
backgroundActive: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
69
|
+
modules: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
70
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
71
|
+
borderWidth: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thin">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"medium">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thick">]>>>;
|
|
72
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
73
|
+
button: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
74
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
75
|
+
foregroundHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
76
|
+
foregroundActive: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
77
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
78
|
+
backgroundHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
79
|
+
backgroundActive: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
81
80
|
}>>;
|
|
82
81
|
}>>;
|
|
83
|
-
list: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
84
|
-
icon: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
85
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
86
|
-
foregroundHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
87
|
-
foregroundActive: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
82
|
+
list: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
83
|
+
icon: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
84
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
85
|
+
foregroundHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
86
|
+
foregroundActive: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
88
87
|
}>>;
|
|
89
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
90
|
-
foregroundHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
91
|
-
foregroundActive: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
92
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
93
|
-
backgroundHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
94
|
-
backgroundActive: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
95
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
96
|
-
divider: import('@sinclair/typebox').TObject<{
|
|
97
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
98
|
-
borderWidth: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TString, import('@sinclair/typebox').TLiteral<"thin">, import('@sinclair/typebox').TLiteral<"medium">, import('@sinclair/typebox').TLiteral<"thick">]>>>;
|
|
88
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
89
|
+
foregroundHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
90
|
+
foregroundActive: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
91
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
92
|
+
backgroundHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
93
|
+
backgroundActive: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
94
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
95
|
+
divider: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
96
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
97
|
+
borderWidth: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thin">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"medium">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thick">]>>>;
|
|
99
98
|
}>;
|
|
100
99
|
}>>;
|
|
101
100
|
}>>;
|
|
102
|
-
header: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
103
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
104
|
-
borderWidth: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TString, import('@sinclair/typebox').TLiteral<"thin">, import('@sinclair/typebox').TLiteral<"medium">, import('@sinclair/typebox').TLiteral<"thick">]>>>;
|
|
105
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
106
|
-
boxShadow: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
107
|
-
headline: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
108
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
109
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
101
|
+
header: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
102
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
103
|
+
borderWidth: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thin">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"medium">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thick">]>>>;
|
|
104
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
105
|
+
boxShadow: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
106
|
+
headline: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
107
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
108
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
110
109
|
}>>;
|
|
111
|
-
title: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
112
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
113
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
114
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
110
|
+
title: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
111
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
112
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
113
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
115
114
|
}>>;
|
|
116
115
|
}>>;
|
|
117
|
-
form: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
118
|
-
columnGap: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
119
|
-
rowGap: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
120
|
-
field: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
121
|
-
label: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
122
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
123
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
124
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
116
|
+
form: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
117
|
+
columnGap: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
118
|
+
rowGap: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
119
|
+
field: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
120
|
+
label: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
121
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
122
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
123
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
125
124
|
}>>;
|
|
126
|
-
input: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
127
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
128
|
-
backgroundSubdued: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
129
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
130
|
-
foregroundSubdued: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
131
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
132
|
-
borderColorHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
133
|
-
borderColorFocus: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
134
|
-
boxShadow: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
135
|
-
boxShadowHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
136
|
-
boxShadowFocus: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
137
|
-
height: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
138
|
-
padding: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
125
|
+
input: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
126
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
127
|
+
backgroundSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
128
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
129
|
+
foregroundSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
130
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
131
|
+
borderColorHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
132
|
+
borderColorFocus: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
133
|
+
boxShadow: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
134
|
+
boxShadowHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
135
|
+
boxShadowFocus: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
136
|
+
height: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
137
|
+
padding: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
139
138
|
}>>;
|
|
140
139
|
}>>;
|
|
141
140
|
}>>;
|
|
142
|
-
sidebar: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
143
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
144
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
145
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
146
|
-
borderWidth: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TString, import('@sinclair/typebox').TLiteral<"thin">, import('@sinclair/typebox').TLiteral<"medium">, import('@sinclair/typebox').TLiteral<"thick">]>>>;
|
|
147
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
148
|
-
section: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
149
|
-
toggle: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
150
|
-
icon: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
151
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
152
|
-
foregroundHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
153
|
-
foregroundActive: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
141
|
+
sidebar: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
142
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
143
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
144
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
145
|
+
borderWidth: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thin">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"medium">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thick">]>>>;
|
|
146
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
147
|
+
section: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
148
|
+
toggle: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
149
|
+
icon: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
150
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
151
|
+
foregroundHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
152
|
+
foregroundActive: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
154
153
|
}>>;
|
|
155
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
156
|
-
foregroundHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
157
|
-
foregroundActive: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
158
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
159
|
-
backgroundHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
160
|
-
backgroundActive: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
161
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
162
|
-
borderWidth: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TString, import('@sinclair/typebox').TLiteral<"thin">, import('@sinclair/typebox').TLiteral<"medium">, import('@sinclair/typebox').TLiteral<"thick">]>>>;
|
|
163
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
154
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
155
|
+
foregroundHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
156
|
+
foregroundActive: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
157
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
158
|
+
backgroundHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
159
|
+
backgroundActive: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
160
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
161
|
+
borderWidth: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thin">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"medium">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thick">]>>>;
|
|
162
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
164
163
|
}>>;
|
|
165
|
-
form: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
166
|
-
columnGap: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
167
|
-
rowGap: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
168
|
-
field: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
169
|
-
label: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
170
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
171
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
172
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
164
|
+
form: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
165
|
+
columnGap: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
166
|
+
rowGap: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
167
|
+
field: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
168
|
+
label: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
169
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
170
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
171
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
173
172
|
}>>;
|
|
174
|
-
input: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
175
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
176
|
-
backgroundSubdued: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
177
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
178
|
-
foregroundSubdued: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
179
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
180
|
-
borderColorHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
181
|
-
borderColorFocus: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
182
|
-
boxShadow: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
183
|
-
boxShadowHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
184
|
-
boxShadowFocus: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
185
|
-
height: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
186
|
-
padding: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
173
|
+
input: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
174
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
175
|
+
backgroundSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
176
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
177
|
+
foregroundSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
178
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
179
|
+
borderColorHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
180
|
+
borderColorFocus: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
181
|
+
boxShadow: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
182
|
+
boxShadowHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
183
|
+
boxShadowFocus: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
184
|
+
height: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
185
|
+
padding: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
187
186
|
}>>;
|
|
188
187
|
}>>;
|
|
189
188
|
}>>;
|
|
190
189
|
}>>;
|
|
191
190
|
}>>;
|
|
192
|
-
public: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
193
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
194
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
195
|
-
foregroundAccent: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
196
|
-
art: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
197
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
198
|
-
primary: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
199
|
-
secondary: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
200
|
-
speed: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
191
|
+
public: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
192
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
193
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
194
|
+
foregroundAccent: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
195
|
+
art: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
196
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
197
|
+
primary: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
198
|
+
secondary: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
199
|
+
speed: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
201
200
|
}>>;
|
|
202
|
-
form: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
203
|
-
columnGap: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
204
|
-
rowGap: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
205
|
-
field: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
206
|
-
label: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
207
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
208
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
209
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
201
|
+
form: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
202
|
+
columnGap: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
203
|
+
rowGap: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
204
|
+
field: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
205
|
+
label: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
206
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
207
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
208
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
210
209
|
}>>;
|
|
211
|
-
input: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
212
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
213
|
-
backgroundSubdued: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
214
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
215
|
-
foregroundSubdued: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
216
|
-
borderColor: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
217
|
-
borderColorHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
218
|
-
borderColorFocus: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
219
|
-
boxShadow: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
220
|
-
boxShadowHover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
221
|
-
boxShadowFocus: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
222
|
-
height: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
223
|
-
padding: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
210
|
+
input: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
211
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
212
|
+
backgroundSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
213
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
214
|
+
foregroundSubdued: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
215
|
+
borderColor: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
216
|
+
borderColorHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
217
|
+
borderColorFocus: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
218
|
+
boxShadow: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
219
|
+
boxShadowHover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
220
|
+
boxShadowFocus: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
221
|
+
height: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
222
|
+
padding: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
224
223
|
}>>;
|
|
225
224
|
}>>;
|
|
226
225
|
}>>;
|
|
227
226
|
}>>;
|
|
228
|
-
popover: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
229
|
-
menu: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
230
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
231
|
-
borderRadius: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
232
|
-
boxShadow: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
227
|
+
popover: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
228
|
+
menu: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
229
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
230
|
+
borderRadius: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
231
|
+
boxShadow: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
233
232
|
}>>;
|
|
234
233
|
}>>;
|
|
235
|
-
banner: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
236
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
237
|
-
padding: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
238
|
-
borderRadius: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
239
|
-
avatar: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
240
|
-
background: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
241
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
242
|
-
borderRadius: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>, import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>]>>;
|
|
234
|
+
banner: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
235
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
236
|
+
padding: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
237
|
+
borderRadius: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
238
|
+
avatar: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
239
|
+
background: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
240
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
241
|
+
borderRadius: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>]>>;
|
|
243
242
|
}>>;
|
|
244
|
-
headline: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
245
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
246
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
247
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
243
|
+
headline: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
244
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
245
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
246
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
248
247
|
}>>;
|
|
249
|
-
title: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
250
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
251
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
252
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
248
|
+
title: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
249
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
250
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
251
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
253
252
|
}>>;
|
|
254
|
-
subtitle: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
255
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
256
|
-
fontFamily: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
257
|
-
fontWeight: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
253
|
+
subtitle: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
254
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
255
|
+
fontFamily: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
256
|
+
fontWeight: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
258
257
|
}>>;
|
|
259
|
-
art: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TObject<{
|
|
260
|
-
foreground: import('@sinclair/typebox').TOptional<import('@sinclair/typebox').TRef<import('@sinclair/typebox').TString>>;
|
|
258
|
+
art: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TObject<{
|
|
259
|
+
foreground: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TOptional<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TRef<import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString>>;
|
|
261
260
|
}>>;
|
|
262
261
|
}>>;
|
|
263
262
|
}>;
|
|
264
263
|
}>;
|
|
265
264
|
export declare const Definitions: {
|
|
266
265
|
$defs: {
|
|
267
|
-
Color: import('@sinclair/typebox').TString;
|
|
268
|
-
FamilyName: import('@sinclair/typebox').TString;
|
|
269
|
-
Length: import('@sinclair/typebox').TString;
|
|
270
|
-
Percentage: import('@sinclair/typebox').TString;
|
|
271
|
-
LineWidth: import('@sinclair/typebox').TUnion<[import('@sinclair/typebox').TString, import('@sinclair/typebox').TLiteral<"thin">, import('@sinclair/typebox').TLiteral<"medium">, import('@sinclair/typebox').TLiteral<"thick">]>;
|
|
272
|
-
BoxShadow: import('@sinclair/typebox').TString;
|
|
273
|
-
Size: import('@sinclair/typebox').TString;
|
|
274
|
-
Number: import('@sinclair/typebox').TString;
|
|
266
|
+
Color: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString;
|
|
267
|
+
FamilyName: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString;
|
|
268
|
+
Length: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString;
|
|
269
|
+
Percentage: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString;
|
|
270
|
+
LineWidth: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TUnion<[import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thin">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"medium">, import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TLiteral<"thick">]>;
|
|
271
|
+
BoxShadow: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString;
|
|
272
|
+
Size: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString;
|
|
273
|
+
Number: import('@sinclair/typebox', { with: { "resolution-mode": "require" } }).TString;
|
|
275
274
|
};
|
|
276
275
|
};
|
|
277
276
|
export type Theme = Static<typeof ThemeSchema>;
|
package/dist/stores/theme.d.ts
CHANGED
package/dist/themes/index.d.ts
CHANGED
|
@@ -1,262 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
name: string;
|
|
4
|
-
appearance: "light" | "dark";
|
|
5
|
-
rules: {
|
|
6
|
-
foreground?: string;
|
|
7
|
-
background?: string;
|
|
8
|
-
backgroundSubdued?: string;
|
|
9
|
-
foregroundSubdued?: string;
|
|
10
|
-
borderColor?: string;
|
|
11
|
-
borderRadius?: string;
|
|
12
|
-
borderWidth?: string;
|
|
13
|
-
foregroundAccent?: string;
|
|
14
|
-
backgroundNormal?: string;
|
|
15
|
-
backgroundAccent?: string;
|
|
16
|
-
borderColorAccent?: string;
|
|
17
|
-
borderColorSubdued?: string;
|
|
18
|
-
primary?: string;
|
|
19
|
-
primaryBackground?: string;
|
|
20
|
-
primarySubdued?: string;
|
|
21
|
-
primaryAccent?: string;
|
|
22
|
-
secondary?: string;
|
|
23
|
-
secondaryBackground?: string;
|
|
24
|
-
secondarySubdued?: string;
|
|
25
|
-
secondaryAccent?: string;
|
|
26
|
-
success?: string;
|
|
27
|
-
successBackground?: string;
|
|
28
|
-
successSubdued?: string;
|
|
29
|
-
successAccent?: string;
|
|
30
|
-
warning?: string;
|
|
31
|
-
warningBackground?: string;
|
|
32
|
-
warningSubdued?: string;
|
|
33
|
-
warningAccent?: string;
|
|
34
|
-
danger?: string;
|
|
35
|
-
dangerBackground?: string;
|
|
36
|
-
dangerSubdued?: string;
|
|
37
|
-
dangerAccent?: string;
|
|
38
|
-
fonts?: {
|
|
39
|
-
display?: {
|
|
40
|
-
fontFamily?: string;
|
|
41
|
-
fontWeight?: string;
|
|
42
|
-
};
|
|
43
|
-
sans?: {
|
|
44
|
-
fontFamily?: string;
|
|
45
|
-
fontWeight?: string;
|
|
46
|
-
};
|
|
47
|
-
serif?: {
|
|
48
|
-
fontFamily?: string;
|
|
49
|
-
fontWeight?: string;
|
|
50
|
-
};
|
|
51
|
-
monospace?: {
|
|
52
|
-
fontFamily?: string;
|
|
53
|
-
fontWeight?: string;
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
navigation?: {
|
|
57
|
-
background?: string;
|
|
58
|
-
borderColor?: string;
|
|
59
|
-
borderWidth?: string;
|
|
60
|
-
backgroundAccent?: string;
|
|
61
|
-
project?: {
|
|
62
|
-
foreground?: string;
|
|
63
|
-
fontFamily?: string;
|
|
64
|
-
background?: string;
|
|
65
|
-
borderColor?: string;
|
|
66
|
-
borderWidth?: string;
|
|
67
|
-
};
|
|
68
|
-
modules?: {
|
|
69
|
-
background?: string;
|
|
70
|
-
borderColor?: string;
|
|
71
|
-
borderWidth?: string;
|
|
72
|
-
button?: {
|
|
73
|
-
foreground?: string;
|
|
74
|
-
background?: string;
|
|
75
|
-
foregroundHover?: string;
|
|
76
|
-
foregroundActive?: string;
|
|
77
|
-
backgroundHover?: string;
|
|
78
|
-
backgroundActive?: string;
|
|
79
|
-
};
|
|
80
|
-
};
|
|
81
|
-
list?: {
|
|
82
|
-
foreground?: string;
|
|
83
|
-
fontFamily?: string;
|
|
84
|
-
background?: string;
|
|
85
|
-
foregroundHover?: string;
|
|
86
|
-
foregroundActive?: string;
|
|
87
|
-
backgroundHover?: string;
|
|
88
|
-
backgroundActive?: string;
|
|
89
|
-
icon?: {
|
|
90
|
-
foreground?: string;
|
|
91
|
-
foregroundHover?: string;
|
|
92
|
-
foregroundActive?: string;
|
|
93
|
-
};
|
|
94
|
-
divider: {
|
|
95
|
-
borderColor?: string;
|
|
96
|
-
borderWidth?: string;
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
};
|
|
100
|
-
header?: {
|
|
101
|
-
background?: string;
|
|
102
|
-
borderColor?: string;
|
|
103
|
-
boxShadow?: string;
|
|
104
|
-
borderWidth?: string;
|
|
105
|
-
headline?: {
|
|
106
|
-
foreground?: string;
|
|
107
|
-
fontFamily?: string;
|
|
108
|
-
};
|
|
109
|
-
title?: {
|
|
110
|
-
foreground?: string;
|
|
111
|
-
fontFamily?: string;
|
|
112
|
-
fontWeight?: string;
|
|
113
|
-
};
|
|
114
|
-
};
|
|
115
|
-
form?: {
|
|
116
|
-
columnGap?: string;
|
|
117
|
-
rowGap?: string;
|
|
118
|
-
field?: {
|
|
119
|
-
label?: {
|
|
120
|
-
foreground?: string;
|
|
121
|
-
fontFamily?: string;
|
|
122
|
-
fontWeight?: string;
|
|
123
|
-
};
|
|
124
|
-
input?: {
|
|
125
|
-
foreground?: string;
|
|
126
|
-
background?: string;
|
|
127
|
-
backgroundSubdued?: string;
|
|
128
|
-
foregroundSubdued?: string;
|
|
129
|
-
borderColor?: string;
|
|
130
|
-
borderColorHover?: string;
|
|
131
|
-
borderColorFocus?: string;
|
|
132
|
-
boxShadow?: string;
|
|
133
|
-
boxShadowHover?: string;
|
|
134
|
-
boxShadowFocus?: string;
|
|
135
|
-
height?: string;
|
|
136
|
-
padding?: string;
|
|
137
|
-
};
|
|
138
|
-
};
|
|
139
|
-
};
|
|
140
|
-
sidebar?: {
|
|
141
|
-
foreground?: string;
|
|
142
|
-
fontFamily?: string;
|
|
143
|
-
background?: string;
|
|
144
|
-
borderColor?: string;
|
|
145
|
-
borderWidth?: string;
|
|
146
|
-
section?: {
|
|
147
|
-
form?: {
|
|
148
|
-
columnGap?: string;
|
|
149
|
-
rowGap?: string;
|
|
150
|
-
field?: {
|
|
151
|
-
label?: {
|
|
152
|
-
foreground?: string;
|
|
153
|
-
fontFamily?: string;
|
|
154
|
-
fontWeight?: string;
|
|
155
|
-
};
|
|
156
|
-
input?: {
|
|
157
|
-
foreground?: string;
|
|
158
|
-
background?: string;
|
|
159
|
-
backgroundSubdued?: string;
|
|
160
|
-
foregroundSubdued?: string;
|
|
161
|
-
borderColor?: string;
|
|
162
|
-
borderColorHover?: string;
|
|
163
|
-
borderColorFocus?: string;
|
|
164
|
-
boxShadow?: string;
|
|
165
|
-
boxShadowHover?: string;
|
|
166
|
-
boxShadowFocus?: string;
|
|
167
|
-
height?: string;
|
|
168
|
-
padding?: string;
|
|
169
|
-
};
|
|
170
|
-
};
|
|
171
|
-
};
|
|
172
|
-
toggle?: {
|
|
173
|
-
foreground?: string;
|
|
174
|
-
fontFamily?: string;
|
|
175
|
-
background?: string;
|
|
176
|
-
borderColor?: string;
|
|
177
|
-
borderWidth?: string;
|
|
178
|
-
foregroundHover?: string;
|
|
179
|
-
foregroundActive?: string;
|
|
180
|
-
backgroundHover?: string;
|
|
181
|
-
backgroundActive?: string;
|
|
182
|
-
icon?: {
|
|
183
|
-
foreground?: string;
|
|
184
|
-
foregroundHover?: string;
|
|
185
|
-
foregroundActive?: string;
|
|
186
|
-
};
|
|
187
|
-
};
|
|
188
|
-
};
|
|
189
|
-
};
|
|
190
|
-
public?: {
|
|
191
|
-
foreground?: string;
|
|
192
|
-
background?: string;
|
|
193
|
-
foregroundAccent?: string;
|
|
194
|
-
form?: {
|
|
195
|
-
columnGap?: string;
|
|
196
|
-
rowGap?: string;
|
|
197
|
-
field?: {
|
|
198
|
-
label?: {
|
|
199
|
-
foreground?: string;
|
|
200
|
-
fontFamily?: string;
|
|
201
|
-
fontWeight?: string;
|
|
202
|
-
};
|
|
203
|
-
input?: {
|
|
204
|
-
foreground?: string;
|
|
205
|
-
background?: string;
|
|
206
|
-
backgroundSubdued?: string;
|
|
207
|
-
foregroundSubdued?: string;
|
|
208
|
-
borderColor?: string;
|
|
209
|
-
borderColorHover?: string;
|
|
210
|
-
borderColorFocus?: string;
|
|
211
|
-
boxShadow?: string;
|
|
212
|
-
boxShadowHover?: string;
|
|
213
|
-
boxShadowFocus?: string;
|
|
214
|
-
height?: string;
|
|
215
|
-
padding?: string;
|
|
216
|
-
};
|
|
217
|
-
};
|
|
218
|
-
};
|
|
219
|
-
art?: {
|
|
220
|
-
background?: string;
|
|
221
|
-
primary?: string;
|
|
222
|
-
secondary?: string;
|
|
223
|
-
speed?: string;
|
|
224
|
-
};
|
|
225
|
-
};
|
|
226
|
-
popover?: {
|
|
227
|
-
menu?: {
|
|
228
|
-
background?: string;
|
|
229
|
-
boxShadow?: string;
|
|
230
|
-
borderRadius?: string;
|
|
231
|
-
};
|
|
232
|
-
};
|
|
233
|
-
banner?: {
|
|
234
|
-
background?: string;
|
|
235
|
-
padding?: string;
|
|
236
|
-
borderRadius?: string;
|
|
237
|
-
headline?: {
|
|
238
|
-
foreground?: string;
|
|
239
|
-
fontFamily?: string;
|
|
240
|
-
fontWeight?: string;
|
|
241
|
-
};
|
|
242
|
-
title?: {
|
|
243
|
-
foreground?: string;
|
|
244
|
-
fontFamily?: string;
|
|
245
|
-
fontWeight?: string;
|
|
246
|
-
};
|
|
247
|
-
art?: {
|
|
248
|
-
foreground?: string;
|
|
249
|
-
};
|
|
250
|
-
avatar?: {
|
|
251
|
-
foreground?: string;
|
|
252
|
-
background?: string;
|
|
253
|
-
borderRadius?: string;
|
|
254
|
-
};
|
|
255
|
-
subtitle?: {
|
|
256
|
-
foreground?: string;
|
|
257
|
-
fontFamily?: string;
|
|
258
|
-
fontWeight?: string;
|
|
259
|
-
};
|
|
260
|
-
};
|
|
261
|
-
};
|
|
262
|
-
}>(theme: T) => T;
|
|
1
|
+
import { Theme } from '../index.js';
|
|
2
|
+
export declare const defineTheme: <T extends Theme>(theme: T) => T;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { DeepPartial } from '@directus/types';
|
|
2
2
|
import { Theme } from '../schemas/index.js';
|
|
3
|
-
|
|
4
|
-
export declare const rulesToCssVars: (rules: DeepPartial<Theme['rules']>) => Record<string, string | number>;
|
|
3
|
+
export declare const rulesToCssVars: (rules: DeepPartial<Theme["rules"]>) => Record<string, string | number>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@directus/themes",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Themes for Directus",
|
|
5
5
|
"homepage": "https://directus.io",
|
|
6
6
|
"repository": {
|
|
@@ -22,24 +22,24 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@sinclair/typebox": "0.
|
|
25
|
+
"@sinclair/typebox": "0.33.11",
|
|
26
26
|
"decamelize": "6.0.0",
|
|
27
27
|
"flat": "6.0.1",
|
|
28
28
|
"lodash-es": "4.17.21",
|
|
29
|
-
"@directus/utils": "12.0.
|
|
29
|
+
"@directus/utils": "12.0.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/lodash-es": "4.17.12",
|
|
33
33
|
"@unhead/vue": "1.9.9",
|
|
34
34
|
"@vitejs/plugin-vue": "5.0.4",
|
|
35
|
-
"pinia": "2.
|
|
36
|
-
"rollup-plugin-node-externals": "7.1.
|
|
37
|
-
"typescript": "5.
|
|
35
|
+
"pinia": "2.2.2",
|
|
36
|
+
"rollup-plugin-node-externals": "7.1.3",
|
|
37
|
+
"typescript": "5.6.2",
|
|
38
38
|
"vite": "5.2.11",
|
|
39
|
-
"vite-plugin-dts": "
|
|
39
|
+
"vite-plugin-dts": "4.2.3",
|
|
40
40
|
"vue": "3.4.27",
|
|
41
|
-
"@directus/
|
|
42
|
-
"@directus/
|
|
41
|
+
"@directus/types": "12.1.0",
|
|
42
|
+
"@directus/tsconfig": "2.0.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@unhead/vue": "1",
|