@moul-dev/ui 2026.8.18 → 2026.8.21
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/assets/stylex.css +204 -8
- package/dist/moul-ui.js +4887 -3446
- package/dist/src/components/Button/Button.d.ts +1 -0
- package/dist/src/components/Button/Button.styles.d.ts +17 -0
- package/dist/src/components/ComboBox/ComboBox.styles.d.ts +8 -0
- package/dist/src/components/LogsViewer/Logs.d.ts +29 -0
- package/dist/src/components/LogsViewer/Logs.styles.d.ts +482 -0
- package/dist/src/components/LogsViewer/Logs.types.d.ts +208 -0
- package/dist/src/components/LogsViewer/exampleLogs.d.ts +3 -0
- package/dist/src/components/LogsViewer/index.d.ts +4 -0
- package/dist/src/components/LogsViewer/parseLogs.d.ts +21 -0
- package/dist/src/components/NumberField/NumberField.styles.d.ts +8 -0
- package/dist/src/components/SearchField/SearchField.styles.d.ts +23 -0
- package/dist/src/components/Sidebar/Sidebar.d.ts +3 -1
- package/dist/src/components/Sidebar/Sidebar.styles.d.ts +9 -5
- package/dist/src/components/TextArea/TextArea.styles.d.ts +2 -0
- package/dist/src/components/TextField/TextField.styles.d.ts +2 -0
- package/dist/src/components/ToggleButton/ToggleButton.d.ts +1 -1
- package/dist/src/components/ToggleButton/ToggleButton.styles.d.ts +20 -12
- package/dist/src/index.d.ts +4 -1
- package/dist/src/tokens/tokens.stylex.d.ts +1 -0
- package/dist/tokens.stylex.js +126 -0
- package/package.json +10 -1
|
@@ -6,5 +6,6 @@ export interface ButtonProps extends Omit<AriaButtonProps, 'style'> {
|
|
|
6
6
|
className?: string;
|
|
7
7
|
variant?: 'primary' | 'secondary' | 'tertiary' | 'outline' | 'ghost' | 'danger' | 'danger-soft';
|
|
8
8
|
size?: 'sm' | 'md' | 'lg';
|
|
9
|
+
isIcon?: boolean;
|
|
9
10
|
}
|
|
10
11
|
export declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -4,8 +4,10 @@ export declare const styles: Readonly<{
|
|
|
4
4
|
readonly display: stylex.StyleXClassNameFor<"display", "inline-flex">;
|
|
5
5
|
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
6
6
|
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
7
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
7
8
|
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
8
9
|
readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
|
|
10
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
9
11
|
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "background-color, border-color, box-shadow, transform">;
|
|
10
12
|
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", "0.15s">;
|
|
11
13
|
readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", "ease-in-out">;
|
|
@@ -49,6 +51,21 @@ export declare const styles: Readonly<{
|
|
|
49
51
|
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
50
52
|
readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", string>;
|
|
51
53
|
}>;
|
|
54
|
+
readonly iconSm: Readonly<{
|
|
55
|
+
readonly width: stylex.StyleXClassNameFor<"width", `calc(${stylex.StyleXVar<string>} * 2 + ${stylex.StyleXVar<string>})`>;
|
|
56
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", 0>;
|
|
57
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", 0>;
|
|
58
|
+
}>;
|
|
59
|
+
readonly iconMd: Readonly<{
|
|
60
|
+
readonly width: stylex.StyleXClassNameFor<"width", `calc(${stylex.StyleXVar<string>} * 2 + ${stylex.StyleXVar<string>})`>;
|
|
61
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", 0>;
|
|
62
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", 0>;
|
|
63
|
+
}>;
|
|
64
|
+
readonly iconLg: Readonly<{
|
|
65
|
+
readonly width: stylex.StyleXClassNameFor<"width", `calc(${stylex.StyleXVar<string>} * 2 + ${stylex.StyleXVar<string>})`>;
|
|
66
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", 0>;
|
|
67
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", 0>;
|
|
68
|
+
}>;
|
|
52
69
|
readonly primary: Readonly<{
|
|
53
70
|
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
54
71
|
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
@@ -11,11 +11,19 @@ export declare const styles: Readonly<{
|
|
|
11
11
|
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "stretch">;
|
|
12
12
|
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", "1px">;
|
|
13
13
|
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
|
|
14
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
15
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
14
16
|
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
15
17
|
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
16
18
|
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "border-color, box-shadow">;
|
|
17
19
|
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", "0.15s">;
|
|
18
20
|
readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", "ease-in-out">;
|
|
21
|
+
readonly ':hover': stylex.StyleXClassNameFor<":hover", {
|
|
22
|
+
readonly borderColor: stylex.StyleXVar<string>;
|
|
23
|
+
}>;
|
|
24
|
+
readonly '@media (prefers-reduced-motion: reduce)': stylex.StyleXClassNameFor<"@media (prefers-reduced-motion: reduce)", {
|
|
25
|
+
readonly transitionProperty: "none";
|
|
26
|
+
}>;
|
|
19
27
|
}>;
|
|
20
28
|
readonly groupSm: Readonly<{
|
|
21
29
|
readonly height: stylex.StyleXClassNameFor<"height", `calc(${stylex.StyleXVar<string>} * 2 + ${stylex.StyleXVar<string>})`>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { StyleXStyles } from '@stylexjs/stylex';
|
|
2
|
+
import { LogLevel, LogsProps } from './Logs.types';
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
export interface LogLevelBadgeProps {
|
|
5
|
+
level?: LogLevel | string;
|
|
6
|
+
style?: StyleXStyles;
|
|
7
|
+
className?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare function LogLevelBadge({ level, style, className, }: LogLevelBadgeProps): React.JSX.Element;
|
|
10
|
+
export interface LogCopyIconButtonProps {
|
|
11
|
+
textToCopy: string;
|
|
12
|
+
label?: string;
|
|
13
|
+
onCopy?: (text: string) => void;
|
|
14
|
+
style?: StyleXStyles;
|
|
15
|
+
}
|
|
16
|
+
export declare function LogCopyIconButton({ textToCopy, label, onCopy, style, }: LogCopyIconButtonProps): React.JSX.Element;
|
|
17
|
+
export interface LogAttributeChipProps {
|
|
18
|
+
name: string;
|
|
19
|
+
value: string | number | boolean | null | undefined;
|
|
20
|
+
}
|
|
21
|
+
export declare function LogAttributeChip({ name, value }: LogAttributeChipProps): React.JSX.Element | null;
|
|
22
|
+
export interface HighlightTextProps {
|
|
23
|
+
text?: string | null;
|
|
24
|
+
highlight?: string;
|
|
25
|
+
enabled?: boolean;
|
|
26
|
+
}
|
|
27
|
+
export declare function HighlightText({ text, highlight, enabled, }: HighlightTextProps): React.JSX.Element | null;
|
|
28
|
+
export declare const Logs: React.ForwardRefExoticComponent<LogsProps & React.RefAttributes<HTMLDivElement>>;
|
|
29
|
+
export declare const LogsViewer: React.ForwardRefExoticComponent<LogsProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,482 @@
|
|
|
1
|
+
import * as stylex from '@stylexjs/stylex';
|
|
2
|
+
export declare const styles: Readonly<{
|
|
3
|
+
readonly container: Readonly<{
|
|
4
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
5
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
6
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
7
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
8
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", "1px">;
|
|
9
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
|
|
10
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
11
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
12
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
13
|
+
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
14
|
+
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", string>;
|
|
15
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
16
|
+
}>;
|
|
17
|
+
readonly toolbar: Readonly<{
|
|
18
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
19
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
20
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
21
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
22
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
23
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
24
|
+
readonly borderBottomWidth: stylex.StyleXClassNameFor<"borderBottomWidth", "1px">;
|
|
25
|
+
readonly borderBottomStyle: stylex.StyleXClassNameFor<"borderBottomStyle", "solid">;
|
|
26
|
+
readonly borderBottomColor: stylex.StyleXClassNameFor<"borderBottomColor", string>;
|
|
27
|
+
}>;
|
|
28
|
+
readonly toolbarRow: Readonly<{
|
|
29
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
30
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
31
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
32
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
33
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap">;
|
|
34
|
+
}>;
|
|
35
|
+
readonly titleGroup: Readonly<{
|
|
36
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
37
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
38
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
39
|
+
}>;
|
|
40
|
+
readonly title: Readonly<{
|
|
41
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
42
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
43
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
44
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", 0>;
|
|
45
|
+
readonly letterSpacing: stylex.StyleXClassNameFor<"letterSpacing", "-0.01em">;
|
|
46
|
+
}>;
|
|
47
|
+
readonly actionsGroup: Readonly<{
|
|
48
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
49
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
50
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
51
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap">;
|
|
52
|
+
}>;
|
|
53
|
+
readonly controlsRow: Readonly<{
|
|
54
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
55
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
56
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
57
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
58
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap">;
|
|
59
|
+
}>;
|
|
60
|
+
readonly searchContainer: Readonly<{
|
|
61
|
+
readonly flex: stylex.StyleXClassNameFor<"flex", 1>;
|
|
62
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", "240px">;
|
|
63
|
+
}>;
|
|
64
|
+
readonly filterGroup: Readonly<{
|
|
65
|
+
readonly flexShrink: stylex.StyleXClassNameFor<"flexShrink", 0>;
|
|
66
|
+
}>;
|
|
67
|
+
readonly tableScrollContainer: Readonly<{
|
|
68
|
+
readonly position: stylex.StyleXClassNameFor<"position", "relative">;
|
|
69
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
70
|
+
readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "auto">;
|
|
71
|
+
readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "auto">;
|
|
72
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
73
|
+
readonly scrollBehavior: stylex.StyleXClassNameFor<"scrollBehavior", "smooth">;
|
|
74
|
+
readonly '@media (prefers-reduced-motion: reduce)': stylex.StyleXClassNameFor<"@media (prefers-reduced-motion: reduce)", {
|
|
75
|
+
readonly scrollBehavior: "auto";
|
|
76
|
+
}>;
|
|
77
|
+
}>;
|
|
78
|
+
readonly table: Readonly<{
|
|
79
|
+
readonly borderCollapse: stylex.StyleXClassNameFor<"borderCollapse", "collapse">;
|
|
80
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
81
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "start">;
|
|
82
|
+
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace">;
|
|
83
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
84
|
+
readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", string>;
|
|
85
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
86
|
+
}>;
|
|
87
|
+
readonly header: Readonly<{
|
|
88
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
89
|
+
readonly borderBottomWidth: stylex.StyleXClassNameFor<"borderBottomWidth", "1px">;
|
|
90
|
+
readonly borderBottomStyle: stylex.StyleXClassNameFor<"borderBottomStyle", "solid">;
|
|
91
|
+
readonly borderBottomColor: stylex.StyleXClassNameFor<"borderBottomColor", string>;
|
|
92
|
+
readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
|
|
93
|
+
readonly top: stylex.StyleXClassNameFor<"top", 0>;
|
|
94
|
+
readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1>;
|
|
95
|
+
}>;
|
|
96
|
+
readonly column: Readonly<{
|
|
97
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
98
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
99
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
100
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
101
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "start">;
|
|
102
|
+
readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
|
|
103
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
|
|
104
|
+
readonly ':focus-visible': stylex.StyleXClassNameFor<":focus-visible", {
|
|
105
|
+
readonly outlineStyle: "solid";
|
|
106
|
+
readonly outlineWidth: "2px";
|
|
107
|
+
readonly outlineOffset: "-2px";
|
|
108
|
+
readonly outlineColor: stylex.StyleXVar<string>;
|
|
109
|
+
}>;
|
|
110
|
+
}>;
|
|
111
|
+
readonly columnCompact: Readonly<{
|
|
112
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
113
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
114
|
+
}>;
|
|
115
|
+
readonly columnLineNumber: Readonly<{
|
|
116
|
+
readonly width: stylex.StyleXClassNameFor<"width", "48px">;
|
|
117
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "end">;
|
|
118
|
+
}>;
|
|
119
|
+
readonly columnTimestamp: Readonly<{
|
|
120
|
+
readonly width: stylex.StyleXClassNameFor<"width", "160px">;
|
|
121
|
+
}>;
|
|
122
|
+
readonly columnLevel: Readonly<{
|
|
123
|
+
readonly width: stylex.StyleXClassNameFor<"width", "72px">;
|
|
124
|
+
}>;
|
|
125
|
+
readonly columnMessage: Readonly<{
|
|
126
|
+
readonly width: stylex.StyleXClassNameFor<"width", "auto">;
|
|
127
|
+
}>;
|
|
128
|
+
readonly columnActions: Readonly<{
|
|
129
|
+
readonly width: stylex.StyleXClassNameFor<"width", "64px">;
|
|
130
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "end">;
|
|
131
|
+
}>;
|
|
132
|
+
readonly body: Readonly<{
|
|
133
|
+
readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
|
|
134
|
+
}>;
|
|
135
|
+
readonly row: Readonly<{
|
|
136
|
+
readonly borderBottomWidth: stylex.StyleXClassNameFor<"borderBottomWidth", "1px">;
|
|
137
|
+
readonly borderBottomStyle: stylex.StyleXClassNameFor<"borderBottomStyle", "solid">;
|
|
138
|
+
readonly borderBottomColor: stylex.StyleXClassNameFor<"borderBottomColor", string>;
|
|
139
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
140
|
+
readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
|
|
141
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
|
|
142
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "background-color">;
|
|
143
|
+
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", "0.1s">;
|
|
144
|
+
readonly '@media (prefers-reduced-motion: reduce)': stylex.StyleXClassNameFor<"@media (prefers-reduced-motion: reduce)", {
|
|
145
|
+
readonly transitionProperty: "none";
|
|
146
|
+
}>;
|
|
147
|
+
}>;
|
|
148
|
+
readonly rowHovered: Readonly<{
|
|
149
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
150
|
+
}>;
|
|
151
|
+
readonly rowSelected: Readonly<{
|
|
152
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
153
|
+
}>;
|
|
154
|
+
readonly rowFocused: Readonly<{
|
|
155
|
+
readonly outlineStyle: stylex.StyleXClassNameFor<"outlineStyle", "solid">;
|
|
156
|
+
readonly outlineWidth: stylex.StyleXClassNameFor<"outlineWidth", "2px">;
|
|
157
|
+
readonly outlineOffset: stylex.StyleXClassNameFor<"outlineOffset", "-2px">;
|
|
158
|
+
readonly outlineColor: stylex.StyleXClassNameFor<"outlineColor", string>;
|
|
159
|
+
}>;
|
|
160
|
+
readonly rowError: Readonly<{
|
|
161
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
162
|
+
readonly borderLeftWidth: stylex.StyleXClassNameFor<"borderLeftWidth", "2px">;
|
|
163
|
+
readonly borderLeftStyle: stylex.StyleXClassNameFor<"borderLeftStyle", "solid">;
|
|
164
|
+
readonly borderLeftColor: stylex.StyleXClassNameFor<"borderLeftColor", string>;
|
|
165
|
+
}>;
|
|
166
|
+
readonly rowWarn: Readonly<{
|
|
167
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
168
|
+
readonly borderLeftWidth: stylex.StyleXClassNameFor<"borderLeftWidth", "2px">;
|
|
169
|
+
readonly borderLeftStyle: stylex.StyleXClassNameFor<"borderLeftStyle", "solid">;
|
|
170
|
+
readonly borderLeftColor: stylex.StyleXClassNameFor<"borderLeftColor", string>;
|
|
171
|
+
}>;
|
|
172
|
+
readonly rowFatal: Readonly<{
|
|
173
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
174
|
+
readonly borderLeftWidth: stylex.StyleXClassNameFor<"borderLeftWidth", "2px">;
|
|
175
|
+
readonly borderLeftStyle: stylex.StyleXClassNameFor<"borderLeftStyle", "solid">;
|
|
176
|
+
readonly borderLeftColor: stylex.StyleXClassNameFor<"borderLeftColor", string>;
|
|
177
|
+
}>;
|
|
178
|
+
readonly cell: Readonly<{
|
|
179
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
180
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
181
|
+
readonly color: stylex.StyleXClassNameFor<"color", "inherit">;
|
|
182
|
+
readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
|
|
183
|
+
readonly verticalAlign: stylex.StyleXClassNameFor<"verticalAlign", "top">;
|
|
184
|
+
}>;
|
|
185
|
+
readonly cellCompact: Readonly<{
|
|
186
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
187
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
188
|
+
}>;
|
|
189
|
+
readonly cellLineNumber: Readonly<{
|
|
190
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "end">;
|
|
191
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
192
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
|
|
193
|
+
readonly opacity: stylex.StyleXClassNameFor<"opacity", 0.6>;
|
|
194
|
+
}>;
|
|
195
|
+
readonly cellTimestamp: Readonly<{
|
|
196
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
197
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
198
|
+
}>;
|
|
199
|
+
readonly cellLevel: Readonly<{
|
|
200
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
201
|
+
}>;
|
|
202
|
+
readonly cellMessage: Readonly<{
|
|
203
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
204
|
+
}>;
|
|
205
|
+
readonly cellActions: Readonly<{
|
|
206
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "end">;
|
|
207
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
208
|
+
}>;
|
|
209
|
+
readonly cellWrap: Readonly<{
|
|
210
|
+
readonly wordBreak: stylex.StyleXClassNameFor<"wordBreak", "break-word">;
|
|
211
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "pre-wrap">;
|
|
212
|
+
}>;
|
|
213
|
+
readonly cellNoWrap: Readonly<{
|
|
214
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
215
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
216
|
+
readonly textOverflow: stylex.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
217
|
+
}>;
|
|
218
|
+
readonly messageContent: Readonly<{
|
|
219
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
220
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
221
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
222
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", 0>;
|
|
223
|
+
}>;
|
|
224
|
+
readonly messageContentNoWrap: Readonly<{
|
|
225
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
226
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
227
|
+
readonly textOverflow: stylex.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
228
|
+
}>;
|
|
229
|
+
readonly messageText: Readonly<{
|
|
230
|
+
readonly display: stylex.StyleXClassNameFor<"display", "inline">;
|
|
231
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "inherit">;
|
|
232
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
233
|
+
readonly textOverflow: stylex.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
234
|
+
}>;
|
|
235
|
+
readonly attributeList: Readonly<{
|
|
236
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
237
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap">;
|
|
238
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
239
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
240
|
+
}>;
|
|
241
|
+
readonly attributeListNoWrap: Readonly<{
|
|
242
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "nowrap">;
|
|
243
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
244
|
+
}>;
|
|
245
|
+
readonly attributeChip: Readonly<{
|
|
246
|
+
readonly display: stylex.StyleXClassNameFor<"display", "inline-flex">;
|
|
247
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
248
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
249
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", "1px">;
|
|
250
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
251
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
252
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
253
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", "1px">;
|
|
254
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
|
|
255
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
256
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
257
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
258
|
+
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace">;
|
|
259
|
+
readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", string>;
|
|
260
|
+
}>;
|
|
261
|
+
readonly attributeChipError: Readonly<{
|
|
262
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
263
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
264
|
+
}>;
|
|
265
|
+
readonly attributeKey: Readonly<{
|
|
266
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
267
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
268
|
+
}>;
|
|
269
|
+
readonly attributeKeyError: Readonly<{
|
|
270
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
271
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
272
|
+
}>;
|
|
273
|
+
readonly attributeValue: Readonly<{
|
|
274
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
275
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
276
|
+
}>;
|
|
277
|
+
readonly attributeValueError: Readonly<{
|
|
278
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
279
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
280
|
+
}>;
|
|
281
|
+
readonly statusSuccess: Readonly<{
|
|
282
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
283
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
284
|
+
}>;
|
|
285
|
+
readonly statusWarn: Readonly<{
|
|
286
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
287
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
288
|
+
}>;
|
|
289
|
+
readonly statusError: Readonly<{
|
|
290
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
291
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
292
|
+
}>;
|
|
293
|
+
readonly inspector: Readonly<{
|
|
294
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
295
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
296
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
297
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
298
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
299
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
300
|
+
readonly borderTopWidth: stylex.StyleXClassNameFor<"borderTopWidth", "1px">;
|
|
301
|
+
readonly borderTopStyle: stylex.StyleXClassNameFor<"borderTopStyle", "solid">;
|
|
302
|
+
readonly borderTopColor: stylex.StyleXClassNameFor<"borderTopColor", string>;
|
|
303
|
+
}>;
|
|
304
|
+
readonly inspectorHeader: Readonly<{
|
|
305
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
306
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
307
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
308
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
309
|
+
}>;
|
|
310
|
+
readonly inspectorTitle: Readonly<{
|
|
311
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
312
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
313
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
314
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", 0>;
|
|
315
|
+
}>;
|
|
316
|
+
readonly inspectorGrid: Readonly<{
|
|
317
|
+
readonly display: stylex.StyleXClassNameFor<"display", "grid">;
|
|
318
|
+
readonly gridTemplateColumns: stylex.StyleXClassNameFor<"gridTemplateColumns", "repeat(auto-fit, minmax(200px, 1fr))">;
|
|
319
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
320
|
+
}>;
|
|
321
|
+
readonly inspectorItem: Readonly<{
|
|
322
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
323
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
324
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
325
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
326
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
327
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
328
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", "1px">;
|
|
329
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
|
|
330
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
331
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
332
|
+
}>;
|
|
333
|
+
readonly inspectorItemKey: Readonly<{
|
|
334
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
335
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
336
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
337
|
+
readonly textTransform: stylex.StyleXClassNameFor<"textTransform", "uppercase">;
|
|
338
|
+
readonly letterSpacing: stylex.StyleXClassNameFor<"letterSpacing", "0.05em">;
|
|
339
|
+
}>;
|
|
340
|
+
readonly inspectorItemValue: Readonly<{
|
|
341
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
342
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
343
|
+
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace">;
|
|
344
|
+
readonly wordBreak: stylex.StyleXClassNameFor<"wordBreak", "break-all">;
|
|
345
|
+
}>;
|
|
346
|
+
readonly rawCodeBlock: Readonly<{
|
|
347
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", 0>;
|
|
348
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
349
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
350
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
351
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", "1px">;
|
|
352
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
|
|
353
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
354
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
355
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
356
|
+
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace">;
|
|
357
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
358
|
+
readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "auto">;
|
|
359
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "pre-wrap">;
|
|
360
|
+
readonly wordBreak: stylex.StyleXClassNameFor<"wordBreak", "break-all">;
|
|
361
|
+
}>;
|
|
362
|
+
readonly drawerHeaderSingleLine: Readonly<{
|
|
363
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
364
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
365
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
366
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
367
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
368
|
+
}>;
|
|
369
|
+
readonly drawerHeaderTitleGroup: Readonly<{
|
|
370
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
371
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
372
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
373
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap">;
|
|
374
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", 0>;
|
|
375
|
+
}>;
|
|
376
|
+
readonly drawerHeaderTimestamp: Readonly<{
|
|
377
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
378
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
379
|
+
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace">;
|
|
380
|
+
}>;
|
|
381
|
+
readonly drawerBodyContent: Readonly<{
|
|
382
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
383
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
384
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
385
|
+
}>;
|
|
386
|
+
readonly cardHeaderFlex: Readonly<{
|
|
387
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
388
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "row">;
|
|
389
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
390
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
391
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
392
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
393
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
394
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
395
|
+
}>;
|
|
396
|
+
readonly drawerSectionTitle: Readonly<{
|
|
397
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
398
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
399
|
+
readonly textTransform: stylex.StyleXClassNameFor<"textTransform", "uppercase">;
|
|
400
|
+
readonly letterSpacing: stylex.StyleXClassNameFor<"letterSpacing", "0.06em">;
|
|
401
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
402
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", 0>;
|
|
403
|
+
}>;
|
|
404
|
+
readonly drawerAttrTable: Readonly<{
|
|
405
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
406
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
407
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
408
|
+
}>;
|
|
409
|
+
readonly drawerAttrRow: Readonly<{
|
|
410
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
411
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
412
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
413
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
414
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
415
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
416
|
+
readonly borderBottomWidth: stylex.StyleXClassNameFor<"borderBottomWidth", "1px">;
|
|
417
|
+
readonly borderBottomStyle: stylex.StyleXClassNameFor<"borderBottomStyle", "solid">;
|
|
418
|
+
readonly borderBottomColor: stylex.StyleXClassNameFor<"borderBottomColor", string>;
|
|
419
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
420
|
+
readonly ':last-child': stylex.StyleXClassNameFor<":last-child", {
|
|
421
|
+
readonly borderBottomWidth: 0;
|
|
422
|
+
}>;
|
|
423
|
+
}>;
|
|
424
|
+
readonly drawerAttrKey: Readonly<{
|
|
425
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
426
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
427
|
+
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace">;
|
|
428
|
+
readonly flexShrink: stylex.StyleXClassNameFor<"flexShrink", 0>;
|
|
429
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", "100px">;
|
|
430
|
+
}>;
|
|
431
|
+
readonly drawerAttrVal: Readonly<{
|
|
432
|
+
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace">;
|
|
433
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
434
|
+
readonly wordBreak: stylex.StyleXClassNameFor<"wordBreak", "break-all">;
|
|
435
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "end">;
|
|
436
|
+
readonly flex: stylex.StyleXClassNameFor<"flex", 1>;
|
|
437
|
+
}>;
|
|
438
|
+
readonly cardBodyFlush: Readonly<{
|
|
439
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", 0>;
|
|
440
|
+
}>;
|
|
441
|
+
readonly drawerFooterWrap: Readonly<{
|
|
442
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
443
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
444
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
445
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
446
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
447
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap">;
|
|
448
|
+
}>;
|
|
449
|
+
readonly emptyState: Readonly<{
|
|
450
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
451
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
452
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
453
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
454
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
455
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
456
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
457
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
458
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "center">;
|
|
459
|
+
}>;
|
|
460
|
+
readonly emptyStateText: Readonly<{
|
|
461
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
462
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
463
|
+
}>;
|
|
464
|
+
readonly searchHighlight: Readonly<{
|
|
465
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
466
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
467
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
468
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
469
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
470
|
+
}>;
|
|
471
|
+
readonly visuallyHidden: Readonly<{
|
|
472
|
+
readonly position: stylex.StyleXClassNameFor<"position", "absolute">;
|
|
473
|
+
readonly width: stylex.StyleXClassNameFor<"width", "1px">;
|
|
474
|
+
readonly height: stylex.StyleXClassNameFor<"height", "1px">;
|
|
475
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", 0>;
|
|
476
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", "-1px">;
|
|
477
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
478
|
+
readonly clip: stylex.StyleXClassNameFor<"clip", "rect(0, 0, 0, 0)">;
|
|
479
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
480
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", 0>;
|
|
481
|
+
}>;
|
|
482
|
+
}>;
|