lynx-console 0.0.0
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/src/components/BottomSheet.css.ts.vanilla-D-1A77Ik.css +83 -0
- package/dist/assets/src/components/ConsolePanel.css.ts.vanilla-B3avfSlI.css +246 -0
- package/dist/assets/src/components/FloatingButton.css.ts.vanilla-rPj35oLW.css +55 -0
- package/dist/assets/src/components/NetworkPanel.css.ts.vanilla-DFMduT0T.css +247 -0
- package/dist/assets/src/components/PerformancePanel.css.ts.vanilla-D35LuXlW.css +216 -0
- package/dist/assets/src/components/Tabs.css.ts.vanilla-DD7L2oXt.css +50 -0
- package/dist/index.cjs +1058 -0
- package/dist/index.css +466 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.cts +17 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +17 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +1059 -0
- package/dist/index.mjs.map +1 -0
- package/dist/setup.cjs +377 -0
- package/dist/setup.d.cts +15 -0
- package/dist/setup.d.cts.map +1 -0
- package/dist/setup.d.mts +15 -0
- package/dist/setup.d.mts.map +1 -0
- package/dist/setup.mjs +374 -0
- package/dist/setup.mjs.map +1 -0
- package/package.json +51 -0
- package/src/components/BottomSheet.css.ts +93 -0
- package/src/components/BottomSheet.tsx +142 -0
- package/src/components/ConsolePanel.css.ts +261 -0
- package/src/components/ConsolePanel.tsx +41 -0
- package/src/components/FloatingButton.css.ts +62 -0
- package/src/components/FloatingButton.tsx +37 -0
- package/src/components/LogPanel.tsx +241 -0
- package/src/components/NetworkDetailSection.tsx +42 -0
- package/src/components/NetworkPanel.css.ts +280 -0
- package/src/components/NetworkPanel.tsx +222 -0
- package/src/components/PerformancePanel.css.ts +224 -0
- package/src/components/PerformancePanel.tsx +209 -0
- package/src/components/Tabs.css.ts +66 -0
- package/src/components/Tabs.tsx +81 -0
- package/src/globals.d.ts +9 -0
- package/src/hooks/index.ts +3 -0
- package/src/hooks/useConsole.ts +35 -0
- package/src/hooks/useNetwork.ts +36 -0
- package/src/hooks/usePerformance.ts +39 -0
- package/src/index.tsx +110 -0
- package/src/setup/_setupMainThreadConsole.ts +80 -0
- package/src/setup/index.ts +4 -0
- package/src/setup/setupLogMonitor.ts +78 -0
- package/src/setup/setupMainThreadConsole.ts +34 -0
- package/src/setup/setupNetworkMonitor.ts +247 -0
- package/src/setup/setupPerformanceMonitor.ts +70 -0
- package/src/shared/ensureConsoleStructure.ts +20 -0
- package/src/styles/getDimensionValue.ts +7 -0
- package/src/styles/global.css.ts +10 -0
- package/src/styles/tokens.json +80 -0
- package/src/styles/typography.ts +25 -0
- package/src/styles/vars/color.ts +228 -0
- package/src/styles/vars/dimension.ts +79 -0
- package/src/styles/vars/index.css +463 -0
- package/src/styles/vars/index.ts +22 -0
- package/src/styles/vars/radius.ts +12 -0
- package/src/types.ts +96 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
.BottomSheet_overlay__5pjw6y0 {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
right: 0;
|
|
5
|
+
bottom: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
display: flex;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
align-items: flex-end;
|
|
10
|
+
z-index: 3;
|
|
11
|
+
}
|
|
12
|
+
.BottomSheet_backdrop__5pjw6y1 {
|
|
13
|
+
position: fixed;
|
|
14
|
+
top: 0;
|
|
15
|
+
right: 0;
|
|
16
|
+
bottom: 0;
|
|
17
|
+
left: 0;
|
|
18
|
+
z-index: 2;
|
|
19
|
+
background: var(--seed-color-bg-overlay);
|
|
20
|
+
transition: opacity var(--seed-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
|
|
21
|
+
}
|
|
22
|
+
.BottomSheet_content__5pjw6y2 {
|
|
23
|
+
position: relative;
|
|
24
|
+
display: flex;
|
|
25
|
+
flex: 1;
|
|
26
|
+
flex-direction: column;
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
word-break: break-all;
|
|
29
|
+
background: var(--seed-color-bg-layer-floating);
|
|
30
|
+
border-top-left-radius: var(--seed-radius-r6);
|
|
31
|
+
border-top-right-radius: var(--seed-radius-r6);
|
|
32
|
+
transition: transform var(--seed-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
|
|
33
|
+
height: 500px;
|
|
34
|
+
overflow: hidden;
|
|
35
|
+
}
|
|
36
|
+
.BottomSheet_handleContainer__5pjw6y3 {
|
|
37
|
+
position: absolute;
|
|
38
|
+
top: 0;
|
|
39
|
+
left: 0;
|
|
40
|
+
right: 0;
|
|
41
|
+
height: 48px;
|
|
42
|
+
display: flex;
|
|
43
|
+
justify-content: center;
|
|
44
|
+
z-index: 10;
|
|
45
|
+
}
|
|
46
|
+
.BottomSheet_handle__5pjw6y4 {
|
|
47
|
+
width: 36px;
|
|
48
|
+
height: 4px;
|
|
49
|
+
background-color: var(--seed-color-palette-gray-400);
|
|
50
|
+
border-radius: 9999px;
|
|
51
|
+
margin-top: 12px;
|
|
52
|
+
}
|
|
53
|
+
.BottomSheet_header__5pjw6y5 {
|
|
54
|
+
display: flex;
|
|
55
|
+
flex-direction: column;
|
|
56
|
+
gap: var(--seed-dimension-x2);
|
|
57
|
+
padding-top: var(--seed-dimension-x6);
|
|
58
|
+
padding-bottom: var(--seed-dimension-x4);
|
|
59
|
+
justify-content: flex-start;
|
|
60
|
+
padding-left: var(--seed-dimension-spacing-x-global-gutter);
|
|
61
|
+
padding-right: 50px;
|
|
62
|
+
}
|
|
63
|
+
.BottomSheet_title__5pjw6y6 {
|
|
64
|
+
font-size: 1.25rem;
|
|
65
|
+
line-height: 1.6875rem;
|
|
66
|
+
font-weight: var(--seed-font-weight-bold);
|
|
67
|
+
color: var(--seed-color-fg-neutral);
|
|
68
|
+
}
|
|
69
|
+
.BottomSheet_body__5pjw6y7 {
|
|
70
|
+
display: flex;
|
|
71
|
+
flex-direction: column;
|
|
72
|
+
flex: 1;
|
|
73
|
+
padding: 0 var(--seed-dimension-x4);
|
|
74
|
+
overflow: hidden;
|
|
75
|
+
}
|
|
76
|
+
.BottomSheet_footer__5pjw6y8 {
|
|
77
|
+
display: flex;
|
|
78
|
+
flex-direction: column;
|
|
79
|
+
padding-left: var(--seed-dimension-spacing-x-global-gutter);
|
|
80
|
+
padding-right: var(--seed-dimension-spacing-x-global-gutter);
|
|
81
|
+
padding-top: var(--seed-dimension-x3);
|
|
82
|
+
padding-bottom: var(--seed-dimension-x4);
|
|
83
|
+
}
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
.ConsolePanel_container__db6kuu0 {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
height: 100%;
|
|
5
|
+
}
|
|
6
|
+
.ConsolePanel_placeholder__db6kuu1 {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
height: 100%;
|
|
11
|
+
}
|
|
12
|
+
.ConsolePanel_placeholderText__db6kuu2 {
|
|
13
|
+
font-size: 0.875rem;
|
|
14
|
+
line-height: 1.1875rem;
|
|
15
|
+
font-weight: var(--seed-font-weight-regular);
|
|
16
|
+
color: var(--seed-color-fg-disabled);
|
|
17
|
+
}
|
|
18
|
+
.ConsolePanel_logContainer__db6kuu3 {
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-direction: column;
|
|
21
|
+
flex: 1;
|
|
22
|
+
padding-top: 4px;
|
|
23
|
+
}
|
|
24
|
+
.ConsolePanel_logHeader__db6kuu4 {
|
|
25
|
+
display: flex;
|
|
26
|
+
flex-direction: row;
|
|
27
|
+
align-items: center;
|
|
28
|
+
justify-content: space-between;
|
|
29
|
+
margin-bottom: 8px;
|
|
30
|
+
padding-bottom: 4px;
|
|
31
|
+
border-bottom-width: 1px;
|
|
32
|
+
border-bottom-color: var(--seed-color-stroke-neutral-subtle);
|
|
33
|
+
border-bottom-style: solid;
|
|
34
|
+
}
|
|
35
|
+
.ConsolePanel_logCount__db6kuu5 {
|
|
36
|
+
font-size: 0.8125rem;
|
|
37
|
+
line-height: 1.125rem;
|
|
38
|
+
font-weight: var(--seed-font-weight-regular);
|
|
39
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
40
|
+
}
|
|
41
|
+
.ConsolePanel_clearButton__db6kuu6 {
|
|
42
|
+
padding: 6px 12px;
|
|
43
|
+
background-color: var(--seed-color-bg-neutral-weak);
|
|
44
|
+
border-radius: 4px;
|
|
45
|
+
}
|
|
46
|
+
.ConsolePanel_clearButtonText__db6kuu7 {
|
|
47
|
+
font-size: 0.8125rem;
|
|
48
|
+
line-height: 1.125rem;
|
|
49
|
+
font-weight: var(--seed-font-weight-medium);
|
|
50
|
+
color: var(--seed-color-fg-neutral);
|
|
51
|
+
}
|
|
52
|
+
.ConsolePanel_logList__db6kuu8 {
|
|
53
|
+
flex: 1;
|
|
54
|
+
}
|
|
55
|
+
.ConsolePanel_logItem__db6kuu9 {
|
|
56
|
+
padding: 8px;
|
|
57
|
+
border-bottom-width: 1px;
|
|
58
|
+
border-bottom-color: var(--seed-color-stroke-neutral-weak);
|
|
59
|
+
border-bottom-style: solid;
|
|
60
|
+
}
|
|
61
|
+
.ConsolePanel_logItem_level_warn__db6kuuc {
|
|
62
|
+
background-color: var(--seed-color-palette-yellow-100);
|
|
63
|
+
}
|
|
64
|
+
.ConsolePanel_logItem_level_error__db6kuud {
|
|
65
|
+
background-color: var(--seed-color-palette-red-100);
|
|
66
|
+
}
|
|
67
|
+
.ConsolePanel_logItemHeader__db6kuue {
|
|
68
|
+
display: flex;
|
|
69
|
+
flex-direction: row;
|
|
70
|
+
align-items: center;
|
|
71
|
+
margin-bottom: 4px;
|
|
72
|
+
}
|
|
73
|
+
.ConsolePanel_logLevel__db6kuuf {
|
|
74
|
+
font-size: 0.75rem;
|
|
75
|
+
line-height: 1rem;
|
|
76
|
+
font-weight: var(--seed-font-weight-bold);
|
|
77
|
+
margin-right: 8px;
|
|
78
|
+
}
|
|
79
|
+
.ConsolePanel_logLevel_level_log__db6kuug {
|
|
80
|
+
color: var(--seed-color-palette-green-600);
|
|
81
|
+
}
|
|
82
|
+
.ConsolePanel_logLevel_level_info__db6kuuh {
|
|
83
|
+
color: var(--seed-color-palette-blue-600);
|
|
84
|
+
}
|
|
85
|
+
.ConsolePanel_logLevel_level_warn__db6kuui {
|
|
86
|
+
color: var(--seed-color-palette-yellow-600);
|
|
87
|
+
}
|
|
88
|
+
.ConsolePanel_logLevel_level_error__db6kuuj {
|
|
89
|
+
color: var(--seed-color-palette-red-600);
|
|
90
|
+
}
|
|
91
|
+
.ConsolePanel_logTime__db6kuuk {
|
|
92
|
+
font-size: 0.75rem;
|
|
93
|
+
line-height: 1rem;
|
|
94
|
+
font-weight: var(--seed-font-weight-regular);
|
|
95
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
96
|
+
}
|
|
97
|
+
.ConsolePanel_toggleIndicator__db6kuul {
|
|
98
|
+
font-size: 0.75rem;
|
|
99
|
+
line-height: 1rem;
|
|
100
|
+
font-weight: var(--seed-font-weight-regular);
|
|
101
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
102
|
+
margin-left: 4px;
|
|
103
|
+
align-self: flex-start;
|
|
104
|
+
}
|
|
105
|
+
.ConsolePanel_logMessage__db6kuum {
|
|
106
|
+
font-size: 0.8125rem;
|
|
107
|
+
line-height: 1.125rem;
|
|
108
|
+
font-weight: var(--seed-font-weight-regular);
|
|
109
|
+
color: var(--seed-color-fg-neutral);
|
|
110
|
+
word-break: break-all;
|
|
111
|
+
}
|
|
112
|
+
.ConsolePanel_logArgsContainer__db6kuun {
|
|
113
|
+
display: flex;
|
|
114
|
+
flex-direction: row;
|
|
115
|
+
flex-wrap: wrap;
|
|
116
|
+
gap: 8px;
|
|
117
|
+
}
|
|
118
|
+
.ConsolePanel_logArgItem__db6kuuo {
|
|
119
|
+
font-size: 0.8125rem;
|
|
120
|
+
line-height: 1.125rem;
|
|
121
|
+
font-weight: var(--seed-font-weight-regular);
|
|
122
|
+
}
|
|
123
|
+
.ConsolePanel_argNull__db6kuup {
|
|
124
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
125
|
+
}
|
|
126
|
+
.ConsolePanel_argUndefined__db6kuuq {
|
|
127
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
128
|
+
}
|
|
129
|
+
.ConsolePanel_argString__db6kuur {
|
|
130
|
+
font-size: 0.8125rem;
|
|
131
|
+
line-height: 1.125rem;
|
|
132
|
+
font-weight: var(--seed-font-weight-regular);
|
|
133
|
+
}
|
|
134
|
+
.ConsolePanel_argString_level_log__db6kuus {
|
|
135
|
+
color: var(--seed-color-fg-neutral);
|
|
136
|
+
}
|
|
137
|
+
.ConsolePanel_argString_level_info__db6kuut {
|
|
138
|
+
color: var(--seed-color-fg-neutral);
|
|
139
|
+
}
|
|
140
|
+
.ConsolePanel_argString_level_warn__db6kuuu {
|
|
141
|
+
color: var(--seed-color-palette-yellow-900);
|
|
142
|
+
}
|
|
143
|
+
.ConsolePanel_argString_level_error__db6kuuv {
|
|
144
|
+
color: var(--seed-color-palette-red-900);
|
|
145
|
+
}
|
|
146
|
+
.ConsolePanel_argPrimitive__db6kuuw {
|
|
147
|
+
font-size: 0.8125rem;
|
|
148
|
+
line-height: 1.125rem;
|
|
149
|
+
font-weight: var(--seed-font-weight-regular);
|
|
150
|
+
}
|
|
151
|
+
.ConsolePanel_argPrimitive_level_log__db6kuux {
|
|
152
|
+
color: var(--seed-color-palette-blue-600);
|
|
153
|
+
}
|
|
154
|
+
.ConsolePanel_argPrimitive_level_info__db6kuuy {
|
|
155
|
+
color: var(--seed-color-palette-blue-600);
|
|
156
|
+
}
|
|
157
|
+
.ConsolePanel_argPrimitive_level_warn__db6kuuz {
|
|
158
|
+
color: var(--seed-color-palette-yellow-900);
|
|
159
|
+
}
|
|
160
|
+
.ConsolePanel_argPrimitive_level_error__db6kuu10 {
|
|
161
|
+
color: var(--seed-color-palette-red-900);
|
|
162
|
+
}
|
|
163
|
+
.ConsolePanel_argObject__db6kuu11 {
|
|
164
|
+
display: flex;
|
|
165
|
+
flex-direction: column;
|
|
166
|
+
}
|
|
167
|
+
.ConsolePanel_argObjectHeader__db6kuu12 {
|
|
168
|
+
display: flex;
|
|
169
|
+
flex-direction: row;
|
|
170
|
+
align-items: center;
|
|
171
|
+
gap: 4px;
|
|
172
|
+
}
|
|
173
|
+
.ConsolePanel_argObjectPreview__db6kuu13 {
|
|
174
|
+
font-size: 0.8125rem;
|
|
175
|
+
line-height: 1.125rem;
|
|
176
|
+
font-weight: var(--seed-font-weight-medium);
|
|
177
|
+
color: var(--seed-color-fg-neutral);
|
|
178
|
+
}
|
|
179
|
+
.ConsolePanel_argObjectContent__db6kuu14 {
|
|
180
|
+
margin-top: 4px;
|
|
181
|
+
display: flex;
|
|
182
|
+
flex-direction: column;
|
|
183
|
+
gap: 4px;
|
|
184
|
+
}
|
|
185
|
+
.ConsolePanel_argObjectProperty__db6kuu15 {
|
|
186
|
+
display: flex;
|
|
187
|
+
flex-direction: row;
|
|
188
|
+
align-items: flex-start;
|
|
189
|
+
}
|
|
190
|
+
.ConsolePanel_argObjectKey__db6kuu16 {
|
|
191
|
+
font-size: 0.8125rem;
|
|
192
|
+
line-height: 1.125rem;
|
|
193
|
+
font-weight: var(--seed-font-weight-medium);
|
|
194
|
+
color: var(--seed-color-palette-purple-600);
|
|
195
|
+
}
|
|
196
|
+
.ConsolePanel_argObjectJson__db6kuu17 {
|
|
197
|
+
font-size: 0.8125rem;
|
|
198
|
+
line-height: 1.125rem;
|
|
199
|
+
font-weight: var(--seed-font-weight-regular);
|
|
200
|
+
color: var(--seed-color-fg-neutral);
|
|
201
|
+
}
|
|
202
|
+
.ConsolePanel_replInputRow__db6kuu18 {
|
|
203
|
+
display: flex;
|
|
204
|
+
flex-direction: row;
|
|
205
|
+
align-items: center;
|
|
206
|
+
gap: 8px;
|
|
207
|
+
padding-top: 8px;
|
|
208
|
+
padding-bottom: 8px;
|
|
209
|
+
margin-top: -1px;
|
|
210
|
+
border-top-width: 1px;
|
|
211
|
+
border-top-color: var(--seed-color-stroke-neutral-subtle);
|
|
212
|
+
border-top-style: solid;
|
|
213
|
+
background-image: linear-gradient(to bottom, transparent, var(--seed-color-bg-layer-default));
|
|
214
|
+
background-size: 100% 32px;
|
|
215
|
+
background-repeat: no-repeat;
|
|
216
|
+
background-position: top;
|
|
217
|
+
background-color: var(--seed-color-bg-layer-default);
|
|
218
|
+
}
|
|
219
|
+
.ConsolePanel_replPrompt__db6kuu19 {
|
|
220
|
+
font-size: 1.625rem;
|
|
221
|
+
line-height: 2.1875rem;
|
|
222
|
+
font-weight: var(--seed-font-weight-medium);
|
|
223
|
+
color: var(--seed-color-fg-placeholder);
|
|
224
|
+
padding-bottom: 8px;
|
|
225
|
+
}
|
|
226
|
+
.ConsolePanel_replInput__db6kuu1a {
|
|
227
|
+
flex: 1;
|
|
228
|
+
font-size: 1rem;
|
|
229
|
+
line-height: 1.375rem;
|
|
230
|
+
font-weight: var(--seed-font-weight-regular);
|
|
231
|
+
color: var(--seed-color-fg-neutral);
|
|
232
|
+
caret-color: var(--seed-color-palette-green-600);
|
|
233
|
+
padding-bottom: 8px;
|
|
234
|
+
}
|
|
235
|
+
.ConsolePanel_replRunButton__db6kuu1b {
|
|
236
|
+
padding: 4px 10px;
|
|
237
|
+
background-color: var(--seed-color-palette-green-100);
|
|
238
|
+
border-radius: 4px;
|
|
239
|
+
margin-bottom: 8px;
|
|
240
|
+
}
|
|
241
|
+
.ConsolePanel_replRunButtonText__db6kuu1c {
|
|
242
|
+
font-size: 0.8125rem;
|
|
243
|
+
line-height: 1.125rem;
|
|
244
|
+
font-weight: var(--seed-font-weight-medium);
|
|
245
|
+
color: var(--seed-color-palette-green-600);
|
|
246
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
.FloatingButton_wrapper__1homwpu0 {
|
|
2
|
+
position: fixed;
|
|
3
|
+
right: 16px;
|
|
4
|
+
bottom: 84px;
|
|
5
|
+
z-index: 9999;
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: row;
|
|
8
|
+
align-items: center;
|
|
9
|
+
gap: 8px;
|
|
10
|
+
}
|
|
11
|
+
.FloatingButton_button__1homwpu2 {
|
|
12
|
+
padding-left: 8px;
|
|
13
|
+
padding-right: 8px;
|
|
14
|
+
padding-top: 4px;
|
|
15
|
+
padding-bottom: 4px;
|
|
16
|
+
border-radius: 12px;
|
|
17
|
+
background-color: var(--seed-color-palette-green-600);
|
|
18
|
+
display: flex;
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
align-items: center;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
gap: 2px;
|
|
23
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
24
|
+
}
|
|
25
|
+
.FloatingButton_title__1homwpu3 {
|
|
26
|
+
font-size: 0.875rem;
|
|
27
|
+
line-height: 1.1875rem;
|
|
28
|
+
font-weight: var(--seed-font-weight-regular);
|
|
29
|
+
color: var(--seed-color-palette-static-white);
|
|
30
|
+
text-align: center;
|
|
31
|
+
}
|
|
32
|
+
.FloatingButton_subtitle__1homwpu4 {
|
|
33
|
+
font-size: 0.8125rem;
|
|
34
|
+
line-height: 1.125rem;
|
|
35
|
+
font-weight: var(--seed-font-weight-regular);
|
|
36
|
+
color: var(--seed-color-palette-static-white);
|
|
37
|
+
text-align: center;
|
|
38
|
+
}
|
|
39
|
+
.FloatingButton_reloadButton__1homwpu5 {
|
|
40
|
+
width: 32px;
|
|
41
|
+
height: 32px;
|
|
42
|
+
border-radius: 16px;
|
|
43
|
+
background-color: var(--seed-color-palette-green-600);
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
48
|
+
}
|
|
49
|
+
.FloatingButton_reloadIcon__1homwpu6 {
|
|
50
|
+
font-size: 20px;
|
|
51
|
+
line-height: 32px;
|
|
52
|
+
margin-bottom: 5px;
|
|
53
|
+
color: var(--seed-color-palette-static-white);
|
|
54
|
+
text-align: center;
|
|
55
|
+
}
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
.NetworkPanel_container__1kf6i8q0 {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
flex: 1;
|
|
5
|
+
padding-top: 4px;
|
|
6
|
+
}
|
|
7
|
+
.NetworkPanel_header__1kf6i8q1 {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: row;
|
|
10
|
+
align-items: center;
|
|
11
|
+
justify-content: space-between;
|
|
12
|
+
margin-bottom: 8px;
|
|
13
|
+
padding-bottom: 4px;
|
|
14
|
+
border-bottom-width: 1px;
|
|
15
|
+
border-bottom-color: var(--seed-color-stroke-neutral-subtle);
|
|
16
|
+
border-bottom-style: solid;
|
|
17
|
+
}
|
|
18
|
+
.NetworkPanel_count__1kf6i8q2 {
|
|
19
|
+
font-size: 0.8125rem;
|
|
20
|
+
line-height: 1.125rem;
|
|
21
|
+
font-weight: var(--seed-font-weight-regular);
|
|
22
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
23
|
+
}
|
|
24
|
+
.NetworkPanel_clearButton__1kf6i8q3 {
|
|
25
|
+
padding: 6px 12px;
|
|
26
|
+
background-color: var(--seed-color-bg-neutral-weak);
|
|
27
|
+
border-radius: 4px;
|
|
28
|
+
}
|
|
29
|
+
.NetworkPanel_clearButtonText__1kf6i8q4 {
|
|
30
|
+
font-size: 0.8125rem;
|
|
31
|
+
line-height: 1.125rem;
|
|
32
|
+
font-weight: var(--seed-font-weight-medium);
|
|
33
|
+
color: var(--seed-color-fg-neutral);
|
|
34
|
+
}
|
|
35
|
+
.NetworkPanel_list__1kf6i8q5 {
|
|
36
|
+
flex: 1;
|
|
37
|
+
}
|
|
38
|
+
.NetworkPanel_placeholder__1kf6i8q6 {
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
height: 100%;
|
|
43
|
+
}
|
|
44
|
+
.NetworkPanel_placeholderText__1kf6i8q7 {
|
|
45
|
+
font-size: 0.875rem;
|
|
46
|
+
line-height: 1.1875rem;
|
|
47
|
+
font-weight: var(--seed-font-weight-regular);
|
|
48
|
+
color: var(--seed-color-fg-disabled);
|
|
49
|
+
}
|
|
50
|
+
.NetworkPanel_item__1kf6i8q8 {
|
|
51
|
+
padding: 8px;
|
|
52
|
+
border-bottom-width: 1px;
|
|
53
|
+
border-bottom-color: var(--seed-color-stroke-neutral-weak);
|
|
54
|
+
border-bottom-style: solid;
|
|
55
|
+
}
|
|
56
|
+
.NetworkPanel_item_status_pending__1kf6i8q9 {
|
|
57
|
+
background-color: var(--seed-color-palette-gray-100);
|
|
58
|
+
}
|
|
59
|
+
.NetworkPanel_item_status_error__1kf6i8qb {
|
|
60
|
+
background-color: var(--seed-color-palette-red-100);
|
|
61
|
+
}
|
|
62
|
+
.NetworkPanel_itemHeader__1kf6i8qc {
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: row;
|
|
65
|
+
align-items: center;
|
|
66
|
+
margin-bottom: 4px;
|
|
67
|
+
gap: 8px;
|
|
68
|
+
}
|
|
69
|
+
.NetworkPanel_method__1kf6i8qd {
|
|
70
|
+
font-size: 0.75rem;
|
|
71
|
+
line-height: 1rem;
|
|
72
|
+
font-weight: var(--seed-font-weight-bold);
|
|
73
|
+
padding: 0 4px;
|
|
74
|
+
border-radius: 2px;
|
|
75
|
+
color: var(--seed-color-fg-neutral);
|
|
76
|
+
background-color: var(--seed-color-bg-neutral-weak);
|
|
77
|
+
}
|
|
78
|
+
.NetworkPanel_method_type_GET__1kf6i8qe {
|
|
79
|
+
color: var(--seed-color-palette-blue-600);
|
|
80
|
+
background-color: var(--seed-color-palette-blue-100);
|
|
81
|
+
}
|
|
82
|
+
.NetworkPanel_method_type_POST__1kf6i8qf {
|
|
83
|
+
color: var(--seed-color-palette-green-600);
|
|
84
|
+
background-color: var(--seed-color-palette-green-100);
|
|
85
|
+
}
|
|
86
|
+
.NetworkPanel_method_type_PUT__1kf6i8qg {
|
|
87
|
+
color: var(--seed-color-palette-yellow-600);
|
|
88
|
+
background-color: var(--seed-color-palette-yellow-100);
|
|
89
|
+
}
|
|
90
|
+
.NetworkPanel_method_type_PATCH__1kf6i8qh {
|
|
91
|
+
color: var(--seed-color-palette-purple-600);
|
|
92
|
+
background-color: var(--seed-color-palette-purple-100);
|
|
93
|
+
}
|
|
94
|
+
.NetworkPanel_method_type_DELETE__1kf6i8qi {
|
|
95
|
+
color: var(--seed-color-palette-red-600);
|
|
96
|
+
background-color: var(--seed-color-palette-red-100);
|
|
97
|
+
}
|
|
98
|
+
.NetworkPanel_statusCode__1kf6i8qj {
|
|
99
|
+
font-size: 0.75rem;
|
|
100
|
+
line-height: 1rem;
|
|
101
|
+
font-weight: var(--seed-font-weight-bold);
|
|
102
|
+
}
|
|
103
|
+
.NetworkPanel_statusCode_type_success__1kf6i8qk {
|
|
104
|
+
color: var(--seed-color-palette-green-600);
|
|
105
|
+
}
|
|
106
|
+
.NetworkPanel_statusCode_type_error__1kf6i8ql {
|
|
107
|
+
color: var(--seed-color-palette-red-600);
|
|
108
|
+
}
|
|
109
|
+
.NetworkPanel_statusCode_type_pending__1kf6i8qm {
|
|
110
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
111
|
+
}
|
|
112
|
+
.NetworkPanel_time__1kf6i8qn {
|
|
113
|
+
font-size: 0.75rem;
|
|
114
|
+
line-height: 1rem;
|
|
115
|
+
font-weight: var(--seed-font-weight-regular);
|
|
116
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
117
|
+
}
|
|
118
|
+
.NetworkPanel_url__1kf6i8qo {
|
|
119
|
+
font-size: 0.8125rem;
|
|
120
|
+
line-height: 1.125rem;
|
|
121
|
+
font-weight: var(--seed-font-weight-regular);
|
|
122
|
+
color: var(--seed-color-fg-neutral);
|
|
123
|
+
word-break: break-all;
|
|
124
|
+
margin-bottom: 4px;
|
|
125
|
+
}
|
|
126
|
+
.NetworkPanel_path__1kf6i8qp {
|
|
127
|
+
font-size: 0.8125rem;
|
|
128
|
+
line-height: 1.125rem;
|
|
129
|
+
font-weight: var(--seed-font-weight-regular);
|
|
130
|
+
color: var(--seed-color-fg-neutral);
|
|
131
|
+
word-break: break-all;
|
|
132
|
+
white-space: pre-wrap;
|
|
133
|
+
overflow: visible;
|
|
134
|
+
margin-bottom: 4px;
|
|
135
|
+
}
|
|
136
|
+
.NetworkPanel_details__1kf6i8qq {
|
|
137
|
+
font-size: 0.8125rem;
|
|
138
|
+
line-height: 1.125rem;
|
|
139
|
+
font-weight: var(--seed-font-weight-regular);
|
|
140
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
141
|
+
}
|
|
142
|
+
.NetworkPanel_detailsContainer__1kf6i8qr {
|
|
143
|
+
margin-top: 12px;
|
|
144
|
+
padding-top: 12px;
|
|
145
|
+
border-top-width: 1px;
|
|
146
|
+
border-top-color: var(--seed-color-stroke-neutral-subtle);
|
|
147
|
+
border-top-style: solid;
|
|
148
|
+
}
|
|
149
|
+
.NetworkPanel_tabs__1kf6i8qs {
|
|
150
|
+
display: flex;
|
|
151
|
+
flex-direction: row;
|
|
152
|
+
gap: 4px;
|
|
153
|
+
padding-bottom: 6px;
|
|
154
|
+
}
|
|
155
|
+
.NetworkPanel_tab__1kf6i8qt {
|
|
156
|
+
padding: 4px 8px;
|
|
157
|
+
border-radius: 4px;
|
|
158
|
+
cursor: pointer;
|
|
159
|
+
}
|
|
160
|
+
.NetworkPanel_tab_active_true__1kf6i8qu {
|
|
161
|
+
background-color: var(--seed-color-bg-neutral-weak);
|
|
162
|
+
}
|
|
163
|
+
.NetworkPanel_tab_active_false__1kf6i8qv {
|
|
164
|
+
background-color: transparent;
|
|
165
|
+
}
|
|
166
|
+
.NetworkPanel_tabText__1kf6i8qw {
|
|
167
|
+
font-size: 0.875rem;
|
|
168
|
+
line-height: 1.1875rem;
|
|
169
|
+
font-weight: var(--seed-font-weight-medium);
|
|
170
|
+
}
|
|
171
|
+
.NetworkPanel_tabText_active_true__1kf6i8qx {
|
|
172
|
+
color: var(--seed-color-fg-neutral);
|
|
173
|
+
}
|
|
174
|
+
.NetworkPanel_tabText_active_false__1kf6i8qy {
|
|
175
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
176
|
+
}
|
|
177
|
+
.NetworkPanel_tabContent__1kf6i8qz {
|
|
178
|
+
padding-top: 8px;
|
|
179
|
+
}
|
|
180
|
+
.NetworkPanel_detailSection__1kf6i8q10 {
|
|
181
|
+
margin-bottom: 12px;
|
|
182
|
+
}
|
|
183
|
+
.NetworkPanel_detailSectionTitle__1kf6i8q11 {
|
|
184
|
+
font-size: 0.8125rem;
|
|
185
|
+
line-height: 1.125rem;
|
|
186
|
+
font-weight: var(--seed-font-weight-bold);
|
|
187
|
+
color: var(--seed-color-fg-neutral);
|
|
188
|
+
margin-bottom: 8px;
|
|
189
|
+
}
|
|
190
|
+
.NetworkPanel_table__1kf6i8q12 {
|
|
191
|
+
display: flex;
|
|
192
|
+
flex-direction: column;
|
|
193
|
+
gap: 4px;
|
|
194
|
+
}
|
|
195
|
+
.NetworkPanel_tableRow__1kf6i8q13 {
|
|
196
|
+
display: flex;
|
|
197
|
+
flex-direction: row;
|
|
198
|
+
gap: 8px;
|
|
199
|
+
padding: 4px 8px;
|
|
200
|
+
background-color: var(--seed-color-bg-neutral-weak);
|
|
201
|
+
border-radius: 2px;
|
|
202
|
+
}
|
|
203
|
+
.NetworkPanel_tableKey__1kf6i8q14 {
|
|
204
|
+
font-size: 0.8125rem;
|
|
205
|
+
line-height: 1.125rem;
|
|
206
|
+
font-weight: var(--seed-font-weight-bold);
|
|
207
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
208
|
+
min-width: 70px;
|
|
209
|
+
flex-shrink: 0;
|
|
210
|
+
}
|
|
211
|
+
.NetworkPanel_tableValue__1kf6i8q15 {
|
|
212
|
+
font-size: 0.8125rem;
|
|
213
|
+
line-height: 1.125rem;
|
|
214
|
+
font-weight: var(--seed-font-weight-regular);
|
|
215
|
+
color: var(--seed-color-fg-neutral);
|
|
216
|
+
word-break: break-all;
|
|
217
|
+
flex: 1;
|
|
218
|
+
}
|
|
219
|
+
.NetworkPanel_bodyText__1kf6i8q16 {
|
|
220
|
+
font-size: 0.8125rem;
|
|
221
|
+
line-height: 1.125rem;
|
|
222
|
+
font-weight: var(--seed-font-weight-regular);
|
|
223
|
+
color: var(--seed-color-fg-neutral);
|
|
224
|
+
padding: 8px;
|
|
225
|
+
background-color: var(--seed-color-bg-neutral-weak);
|
|
226
|
+
border-radius: 4px;
|
|
227
|
+
word-break: break-all;
|
|
228
|
+
white-space: pre-wrap;
|
|
229
|
+
}
|
|
230
|
+
.NetworkPanel_errorText__1kf6i8q17 {
|
|
231
|
+
font-size: 0.8125rem;
|
|
232
|
+
line-height: 1.125rem;
|
|
233
|
+
font-weight: var(--seed-font-weight-regular);
|
|
234
|
+
color: var(--seed-color-palette-red-600);
|
|
235
|
+
padding: 8px;
|
|
236
|
+
background-color: var(--seed-color-palette-red-100);
|
|
237
|
+
border-radius: 4px;
|
|
238
|
+
word-break: break-all;
|
|
239
|
+
}
|
|
240
|
+
.NetworkPanel_emptyText__1kf6i8q18 {
|
|
241
|
+
font-size: 0.8125rem;
|
|
242
|
+
line-height: 1.125rem;
|
|
243
|
+
font-weight: var(--seed-font-weight-regular);
|
|
244
|
+
color: var(--seed-color-fg-disabled);
|
|
245
|
+
text-align: center;
|
|
246
|
+
padding: 16px 0;
|
|
247
|
+
}
|