@metrevals/inspect-scout-viewer 0.3.3-beta.1765662729 → 0.4.3-beta.1765899631
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/lib/api/api.d.ts +2 -0
- package/lib/api/jsonrpc.d.ts +1 -0
- package/lib/api/request.d.ts +1 -0
- package/lib/app/{values → components}/Explanation.d.ts +2 -2
- package/lib/app/{values → components}/Identifier.d.ts +2 -2
- package/lib/app/{values → components}/Value.d.ts +2 -2
- package/lib/app/hooks.d.ts +6 -8
- package/lib/app/{result → scanResults}/ScanResultHeader.d.ts +3 -2
- package/lib/app/{result → scanResults}/info/InfoPanel.d.ts +2 -2
- package/lib/app/{result → scanResults}/metadata/MetadataPanel.d.ts +2 -2
- package/lib/app/scanResults/result/ResultBody.d.ts +7 -0
- package/lib/app/{result → scanResults}/result/ResultPanel.d.ts +2 -2
- package/lib/app/{result → scanResults}/result/ResultSidebar.d.ts +2 -2
- package/lib/app/{result → scanResults}/transcript/TranscriptPanel.d.ts +2 -2
- package/lib/app/{scanner → scans}/results/list/ScanResultsRow.d.ts +2 -2
- package/lib/app/server/hooks.d.ts +4 -0
- package/lib/app/types.d.ts +40 -62
- package/lib/app/utils/refs.d.ts +3 -3
- package/lib/app/utils/results.d.ts +4 -4
- package/lib/components/MarkdownDiv.d.ts +1 -0
- package/lib/index.d.ts +1 -2
- package/lib/index.js +80712 -80585
- package/lib/index.js.map +1 -1
- package/lib/state/store.d.ts +7 -7
- package/lib/styles/index.css +217 -213
- package/package.json +1 -1
- package/lib/app/result/result/ResultBody.d.ts +0 -6
- /package/lib/app/{values → components}/Error.d.ts +0 -0
- /package/lib/app/{navbar → components}/Navbar.d.ts +0 -0
- /package/lib/app/{values → components}/ValidationResult.d.ts +0 -0
- /package/lib/app/{navbar → components}/useBreadcrumbTruncation.d.ts +0 -0
- /package/lib/app/{result → scanResults}/ScanResultNav.d.ts +0 -0
- /package/lib/app/{result → scanResults}/ScanResultPanel.d.ts +0 -0
- /package/lib/app/{result → scanResults}/error/ErrorPanel.d.ts +0 -0
- /package/lib/app/{scanner → scans}/ScannerPanel.d.ts +0 -0
- /package/lib/app/{scanner → scans}/ScannerPanelBody.d.ts +0 -0
- /package/lib/app/{scanner → scans}/ScannerPanelTitle.d.ts +0 -0
- /package/lib/app/{scanner → scans}/info/ScanInfo.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanDataframeClearFiltersButton.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanDataframeColumnsPopover.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanDataframeFilterColumnsButton.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanDataframeWrapTextButton.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsBody.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsFilter.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsGroup.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsOutline.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsPanel.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsSearch.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/list/ScanHeader.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/list/ScanResultsGroup.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/list/ScanResultsList.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/types.d.ts +0 -0
package/lib/state/store.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { GridState } from 'ag-grid-community';
|
|
|
2
2
|
import { ColumnTable } from 'arquero';
|
|
3
3
|
import { StateSnapshot } from 'react-virtuoso';
|
|
4
4
|
import { ScanApi } from '../api/api';
|
|
5
|
-
import { ErrorScope, ResultGroup,
|
|
5
|
+
import { ScanResultInputData, ErrorScope, ResultGroup, ScanResultSummary, SortColumn } from '../app/types';
|
|
6
6
|
import { Status } from '../types';
|
|
7
7
|
interface StoreState {
|
|
8
8
|
singleFileMode?: boolean;
|
|
@@ -16,7 +16,7 @@ interface StoreState {
|
|
|
16
16
|
visibleScanJobCount?: number;
|
|
17
17
|
selectedScanLocation?: string;
|
|
18
18
|
selectedScanStatus?: Status;
|
|
19
|
-
visibleScannerResults:
|
|
19
|
+
visibleScannerResults: ScanResultSummary[];
|
|
20
20
|
visibleScannerResultsCount: number;
|
|
21
21
|
selectedScanResult?: string;
|
|
22
22
|
properties: Record<string, Record<string, unknown> | undefined>;
|
|
@@ -42,7 +42,6 @@ interface StoreState {
|
|
|
42
42
|
dataframeWrapText?: boolean;
|
|
43
43
|
dataframeShowFilterColumns?: boolean;
|
|
44
44
|
dataframeFilterColumns?: string[];
|
|
45
|
-
transcriptId?: string;
|
|
46
45
|
transcriptCollapsedEvents: Record<string, Record<string, boolean>>;
|
|
47
46
|
transcriptOutlineId?: string;
|
|
48
47
|
setSingleFileMode: (enabled: boolean) => void;
|
|
@@ -62,9 +61,11 @@ interface StoreState {
|
|
|
62
61
|
setSelectedScanResult: (result: string) => void;
|
|
63
62
|
setSelectedScanResultData: (scanner: string, data: ColumnTable) => void;
|
|
64
63
|
getSelectedScanResultData: (scanner?: string) => ColumnTable | undefined;
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
setSelectedScanResultInputData: (uuid: string, inputData: ScanResultInputData) => void;
|
|
65
|
+
getSelectedScanResultInputData: (uuid: string) => ScanResultInputData | undefined;
|
|
66
|
+
setSelectedScanResultPreviews: (scanner?: string, previews?: ScanResultSummary[]) => void;
|
|
67
|
+
getSelectedScanResultPreviews: (scanner?: string) => ScanResultSummary[] | undefined;
|
|
68
|
+
setVisibleScannerResults: (results: ScanResultSummary[]) => void;
|
|
68
69
|
setVisibleScannerResultsCount: (count: number) => void;
|
|
69
70
|
clearScanState: () => void;
|
|
70
71
|
clearScansState: () => void;
|
|
@@ -90,7 +91,6 @@ interface StoreState {
|
|
|
90
91
|
clearVisibleRange: (name: string) => void;
|
|
91
92
|
setSelectedResultsTab: (tab: string) => void;
|
|
92
93
|
setSelectedResultTab: (tab: string) => void;
|
|
93
|
-
setTranscriptId: (id?: string) => void;
|
|
94
94
|
setTranscriptOutlineId: (id: string) => void;
|
|
95
95
|
clearTranscriptOutlineId: () => void;
|
|
96
96
|
setTranscriptCollapsedEvent: (scope: string, event: string, collapsed: boolean) => void;
|
package/lib/styles/index.css
CHANGED
|
@@ -36,93 +36,126 @@
|
|
|
36
36
|
transform: translateX(2000%);
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
.
|
|
39
|
+
.error-panel {
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
min-height: 10rem;
|
|
42
|
+
margin-top: 4rem;
|
|
43
|
+
margin-bottom: 4em;
|
|
40
44
|
width: 100%;
|
|
41
|
-
|
|
45
|
+
}
|
|
46
|
+
.error-panel-heading {
|
|
47
|
+
font-size: var(--inspect-font-size-larger);
|
|
42
48
|
}
|
|
43
49
|
|
|
44
|
-
.
|
|
45
|
-
|
|
50
|
+
.error-panel-body {
|
|
51
|
+
display: inline-block;
|
|
52
|
+
font-size: var(--inspect-font-size-smaller);
|
|
53
|
+
margin-top: 1rem;
|
|
54
|
+
border: solid 1px var(--bs-border-color);
|
|
46
55
|
border-radius: var(--bs-border-radius);
|
|
56
|
+
padding: 1em;
|
|
57
|
+
max-width: 80%;
|
|
47
58
|
}
|
|
48
59
|
|
|
49
|
-
.
|
|
50
|
-
font-size: var(--inspect-font-size-
|
|
51
|
-
white-space:
|
|
52
|
-
word-wrap: anywhere !important;
|
|
60
|
+
.error-panel-stack {
|
|
61
|
+
font-size: var(--inspect-font-size-smaller);
|
|
62
|
+
white-space: prewrap;
|
|
53
63
|
}
|
|
54
64
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
._tabs_1sz0h_1 {
|
|
65
|
+
.centered-flex {
|
|
66
|
+
display: flex;
|
|
67
|
+
flex: 0 0 content;
|
|
60
68
|
align-items: center;
|
|
69
|
+
justify-content: center;
|
|
61
70
|
}
|
|
62
71
|
|
|
63
|
-
.
|
|
64
|
-
|
|
65
|
-
|
|
72
|
+
.error-icon {
|
|
73
|
+
margin-right: 0.5rem;
|
|
74
|
+
color: var(--bs-red);
|
|
66
75
|
}
|
|
76
|
+
._footer_14uod_1 {
|
|
77
|
+
border-top: solid var(--bs-light-border-subtle) 1px;
|
|
78
|
+
background: var(--bs-light-bg-subtle);
|
|
79
|
+
display: grid;
|
|
80
|
+
grid-template-columns: 0.5fr 1fr 0.5fr;
|
|
81
|
+
justify-content: space-between;
|
|
67
82
|
|
|
68
|
-
.
|
|
69
|
-
height: 100%;
|
|
70
|
-
overflow-y: auto;
|
|
83
|
+
padding: 0.2em 1em;
|
|
71
84
|
}
|
|
72
85
|
|
|
73
|
-
.
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
font-weight: 500;
|
|
79
|
-
margin-top: 2px;
|
|
80
|
-
margin-bottom: -1px;
|
|
86
|
+
._spinnerContainer_14uod_11 {
|
|
87
|
+
display: grid;
|
|
88
|
+
grid-template-columns: max-content max-content;
|
|
89
|
+
column-gap: 0.3em;
|
|
90
|
+
padding-top: 0.2em;
|
|
81
91
|
}
|
|
82
92
|
|
|
83
|
-
.
|
|
84
|
-
|
|
93
|
+
._spinner_14uod_11 {
|
|
94
|
+
height: 11px;
|
|
95
|
+
width: 11px;
|
|
96
|
+
color: var(--bs-secondary);
|
|
97
|
+
border-width: 1px;
|
|
85
98
|
}
|
|
86
99
|
|
|
87
|
-
.
|
|
88
|
-
margin-
|
|
100
|
+
._label_14uod_25 {
|
|
101
|
+
margin-left: 0.1em;
|
|
102
|
+
margin-top: -3px;
|
|
89
103
|
}
|
|
90
104
|
|
|
91
|
-
.
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
align-items: center;
|
|
105
|
+
._right_14uod_30 {
|
|
106
|
+
display: grid;
|
|
107
|
+
grid-auto-columns: max-content;
|
|
108
|
+
grid-auto-flow: column;
|
|
96
109
|
justify-content: end;
|
|
97
|
-
|
|
98
|
-
|
|
110
|
+
align-items: center;
|
|
111
|
+
column-gap: 0.5em;
|
|
99
112
|
}
|
|
100
113
|
|
|
101
|
-
.
|
|
102
|
-
|
|
103
|
-
|
|
114
|
+
._left_14uod_39 {
|
|
115
|
+
display: grid;
|
|
116
|
+
grid-auto-columns: max-content;
|
|
117
|
+
grid-auto-flow: column;
|
|
118
|
+
justify-content: start;
|
|
119
|
+
align-items: center;
|
|
120
|
+
column-gap: 0.5em;
|
|
104
121
|
}
|
|
105
|
-
|
|
106
|
-
|
|
122
|
+
|
|
123
|
+
._center_14uod_48 {
|
|
124
|
+
display: grid;
|
|
125
|
+
grid-auto-columns: max-content;
|
|
126
|
+
grid-auto-flow: column;
|
|
127
|
+
justify-content: center;
|
|
128
|
+
align-items: center;
|
|
129
|
+
column-gap: 0.5em;
|
|
130
|
+
}
|
|
131
|
+
._pager_jzegk_1 {
|
|
132
|
+
--bs-pagination-padding-x: 0.5em;
|
|
133
|
+
--bs-pagination-padding-y: 0.15em;
|
|
134
|
+
--bs-pagination-font-size: 0.8rem;
|
|
135
|
+
--bs-pagination-padding-x: 0.5em;
|
|
136
|
+
--bs-pagination-padding-y: 0;
|
|
137
|
+
--bs-pagination-border-radius: var(--bs-border-radius);
|
|
138
|
+
margin-bottom: 0;
|
|
107
139
|
}
|
|
108
140
|
|
|
109
|
-
.
|
|
110
|
-
|
|
141
|
+
._item_jzegk_11:not(.disabled) {
|
|
142
|
+
cursor: pointer;
|
|
111
143
|
}
|
|
112
144
|
|
|
113
|
-
.
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
0 0 0 2px rgba(var(--bs-primary-rgb), 0.5),
|
|
117
|
-
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
118
|
-
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
145
|
+
._item_jzegk_11 {
|
|
146
|
+
margin-left: 0.2em;
|
|
147
|
+
margin-right: 0.2em;
|
|
119
148
|
}
|
|
120
149
|
|
|
121
|
-
.
|
|
122
|
-
.
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
150
|
+
._item_jzegk_11:first-child,
|
|
151
|
+
._item_jzegk_11:last-child {
|
|
152
|
+
--bs-pagination-padding-x: 0.3em;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
._item_jzegk_11:first-child .ii:before,
|
|
156
|
+
._item_jzegk_11:last-child .ii:before {
|
|
157
|
+
margin-top: -2px;
|
|
158
|
+
font-size: 0.8em;
|
|
126
159
|
}
|
|
127
160
|
._header_oy6cz_1 {
|
|
128
161
|
background: var(--bs-light);
|
|
@@ -190,6 +223,129 @@
|
|
|
190
223
|
padding-left: 0.5rem;
|
|
191
224
|
margin-left: 0.5rem;
|
|
192
225
|
}
|
|
226
|
+
._gridWrapper_1jp8e_1 {
|
|
227
|
+
height: 100%;
|
|
228
|
+
border-top: solid 1px var(--bs-border-color);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
/* Hide sort index numbers in multi-column sort */
|
|
232
|
+
._gridWrapper_1jp8e_1 .ag-header-cell .ag-sort-order {
|
|
233
|
+
display: none;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
._row_1jp8e_11 {
|
|
237
|
+
cursor: pointer;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
._green_1jp8e_15 {
|
|
241
|
+
color: var(--bs-success);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
._red_1jp8e_19 {
|
|
245
|
+
color: var(--bs-danger);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
._yellow_1jp8e_23 {
|
|
249
|
+
color: var(--bs-warning);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
._blue_1jp8e_27 {
|
|
253
|
+
color: var(--bs-info);
|
|
254
|
+
}
|
|
255
|
+
._container_18ufx_1 {
|
|
256
|
+
display: grid;
|
|
257
|
+
grid-template-rows: max-content max-content 1fr max-content;
|
|
258
|
+
height: 100%;
|
|
259
|
+
row-gap: 0;
|
|
260
|
+
}
|
|
261
|
+
.json-panel {
|
|
262
|
+
width: 100%;
|
|
263
|
+
padding: 0.5em;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.json-panel:not(.simple) {
|
|
267
|
+
background: var(--bs-light);
|
|
268
|
+
border-radius: var(--bs-border-radius);
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.json-panel .source-code {
|
|
272
|
+
font-size: var(--inspect-font-size-small);
|
|
273
|
+
white-space: pre-wrap !important;
|
|
274
|
+
word-wrap: anywhere !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/* Prism.js theme customizations can go here if needed */
|
|
278
|
+
.language-javascript {
|
|
279
|
+
background: transparent !important;
|
|
280
|
+
}
|
|
281
|
+
._tabs_1sz0h_1 {
|
|
282
|
+
align-items: center;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
._tabContents_1sz0h_5 {
|
|
286
|
+
flex: 1;
|
|
287
|
+
overflow-y: hidden;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
._tabContents_1sz0h_5._scrollable_1sz0h_10 {
|
|
291
|
+
height: 100%;
|
|
292
|
+
overflow-y: auto;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
._tab_1sz0h_1 {
|
|
296
|
+
color: "var(--bs-body-color)";
|
|
297
|
+
padding: 0.25rem 0.5rem;
|
|
298
|
+
border-top-left-radius: var(--bs-border-radius);
|
|
299
|
+
border-top-right-radius: var(--bs-border-radius);
|
|
300
|
+
font-weight: 500;
|
|
301
|
+
margin-top: 2px;
|
|
302
|
+
margin-bottom: -1px;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
._tabItem_1sz0h_25 {
|
|
306
|
+
align-self: end;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
._tabIcon_1sz0h_29 {
|
|
310
|
+
margin-right: 0.5em;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
._tabTools_1sz0h_33 {
|
|
314
|
+
flex-basis: auto;
|
|
315
|
+
margin-left: auto;
|
|
316
|
+
display: flex;
|
|
317
|
+
align-items: center;
|
|
318
|
+
justify-content: end;
|
|
319
|
+
flex-wrap: wrap;
|
|
320
|
+
row-gap: 0.3rem;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
._tabStyle_1sz0h_43 {
|
|
324
|
+
padding-left: 0.7em;
|
|
325
|
+
padding-right: 0.7em;
|
|
326
|
+
}
|
|
327
|
+
.btn._toolButton_1y0d0_1 {
|
|
328
|
+
background-color: var(--bs-light-border-subtle);
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
._toolButton_1y0d0_1 i {
|
|
332
|
+
margin-right: 0.5em;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
._toolButton_1y0d0_1:focus {
|
|
336
|
+
outline: none;
|
|
337
|
+
box-shadow:
|
|
338
|
+
0 0 0 2px rgba(var(--bs-primary-rgb), 0.5),
|
|
339
|
+
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
340
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
._latched_1y0d0_17,
|
|
344
|
+
._latched_1y0d0_17:hover {
|
|
345
|
+
box-shadow:
|
|
346
|
+
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
347
|
+
inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
348
|
+
}
|
|
193
349
|
.ansi-display {
|
|
194
350
|
font-family: monospace;
|
|
195
351
|
white-space: pre-wrap;
|
|
@@ -4162,162 +4318,6 @@ pre._value_1uivt_24 {
|
|
|
4162
4318
|
._container_g5onx_1 {
|
|
4163
4319
|
overflow-y: auto;
|
|
4164
4320
|
}
|
|
4165
|
-
.error-panel {
|
|
4166
|
-
flex-direction: column;
|
|
4167
|
-
min-height: 10rem;
|
|
4168
|
-
margin-top: 4rem;
|
|
4169
|
-
margin-bottom: 4em;
|
|
4170
|
-
width: 100%;
|
|
4171
|
-
}
|
|
4172
|
-
.error-panel-heading {
|
|
4173
|
-
font-size: var(--inspect-font-size-larger);
|
|
4174
|
-
}
|
|
4175
|
-
|
|
4176
|
-
.error-panel-body {
|
|
4177
|
-
display: inline-block;
|
|
4178
|
-
font-size: var(--inspect-font-size-smaller);
|
|
4179
|
-
margin-top: 1rem;
|
|
4180
|
-
border: solid 1px var(--bs-border-color);
|
|
4181
|
-
border-radius: var(--bs-border-radius);
|
|
4182
|
-
padding: 1em;
|
|
4183
|
-
max-width: 80%;
|
|
4184
|
-
}
|
|
4185
|
-
|
|
4186
|
-
.error-panel-stack {
|
|
4187
|
-
font-size: var(--inspect-font-size-smaller);
|
|
4188
|
-
white-space: prewrap;
|
|
4189
|
-
}
|
|
4190
|
-
|
|
4191
|
-
.centered-flex {
|
|
4192
|
-
display: flex;
|
|
4193
|
-
flex: 0 0 content;
|
|
4194
|
-
align-items: center;
|
|
4195
|
-
justify-content: center;
|
|
4196
|
-
}
|
|
4197
|
-
|
|
4198
|
-
.error-icon {
|
|
4199
|
-
margin-right: 0.5rem;
|
|
4200
|
-
color: var(--bs-red);
|
|
4201
|
-
}
|
|
4202
|
-
._footer_14uod_1 {
|
|
4203
|
-
border-top: solid var(--bs-light-border-subtle) 1px;
|
|
4204
|
-
background: var(--bs-light-bg-subtle);
|
|
4205
|
-
display: grid;
|
|
4206
|
-
grid-template-columns: 0.5fr 1fr 0.5fr;
|
|
4207
|
-
justify-content: space-between;
|
|
4208
|
-
|
|
4209
|
-
padding: 0.2em 1em;
|
|
4210
|
-
}
|
|
4211
|
-
|
|
4212
|
-
._spinnerContainer_14uod_11 {
|
|
4213
|
-
display: grid;
|
|
4214
|
-
grid-template-columns: max-content max-content;
|
|
4215
|
-
column-gap: 0.3em;
|
|
4216
|
-
padding-top: 0.2em;
|
|
4217
|
-
}
|
|
4218
|
-
|
|
4219
|
-
._spinner_14uod_11 {
|
|
4220
|
-
height: 11px;
|
|
4221
|
-
width: 11px;
|
|
4222
|
-
color: var(--bs-secondary);
|
|
4223
|
-
border-width: 1px;
|
|
4224
|
-
}
|
|
4225
|
-
|
|
4226
|
-
._label_14uod_25 {
|
|
4227
|
-
margin-left: 0.1em;
|
|
4228
|
-
margin-top: -3px;
|
|
4229
|
-
}
|
|
4230
|
-
|
|
4231
|
-
._right_14uod_30 {
|
|
4232
|
-
display: grid;
|
|
4233
|
-
grid-auto-columns: max-content;
|
|
4234
|
-
grid-auto-flow: column;
|
|
4235
|
-
justify-content: end;
|
|
4236
|
-
align-items: center;
|
|
4237
|
-
column-gap: 0.5em;
|
|
4238
|
-
}
|
|
4239
|
-
|
|
4240
|
-
._left_14uod_39 {
|
|
4241
|
-
display: grid;
|
|
4242
|
-
grid-auto-columns: max-content;
|
|
4243
|
-
grid-auto-flow: column;
|
|
4244
|
-
justify-content: start;
|
|
4245
|
-
align-items: center;
|
|
4246
|
-
column-gap: 0.5em;
|
|
4247
|
-
}
|
|
4248
|
-
|
|
4249
|
-
._center_14uod_48 {
|
|
4250
|
-
display: grid;
|
|
4251
|
-
grid-auto-columns: max-content;
|
|
4252
|
-
grid-auto-flow: column;
|
|
4253
|
-
justify-content: center;
|
|
4254
|
-
align-items: center;
|
|
4255
|
-
column-gap: 0.5em;
|
|
4256
|
-
}
|
|
4257
|
-
._pager_jzegk_1 {
|
|
4258
|
-
--bs-pagination-padding-x: 0.5em;
|
|
4259
|
-
--bs-pagination-padding-y: 0.15em;
|
|
4260
|
-
--bs-pagination-font-size: 0.8rem;
|
|
4261
|
-
--bs-pagination-padding-x: 0.5em;
|
|
4262
|
-
--bs-pagination-padding-y: 0;
|
|
4263
|
-
--bs-pagination-border-radius: var(--bs-border-radius);
|
|
4264
|
-
margin-bottom: 0;
|
|
4265
|
-
}
|
|
4266
|
-
|
|
4267
|
-
._item_jzegk_11:not(.disabled) {
|
|
4268
|
-
cursor: pointer;
|
|
4269
|
-
}
|
|
4270
|
-
|
|
4271
|
-
._item_jzegk_11 {
|
|
4272
|
-
margin-left: 0.2em;
|
|
4273
|
-
margin-right: 0.2em;
|
|
4274
|
-
}
|
|
4275
|
-
|
|
4276
|
-
._item_jzegk_11:first-child,
|
|
4277
|
-
._item_jzegk_11:last-child {
|
|
4278
|
-
--bs-pagination-padding-x: 0.3em;
|
|
4279
|
-
}
|
|
4280
|
-
|
|
4281
|
-
._item_jzegk_11:first-child .ii:before,
|
|
4282
|
-
._item_jzegk_11:last-child .ii:before {
|
|
4283
|
-
margin-top: -2px;
|
|
4284
|
-
font-size: 0.8em;
|
|
4285
|
-
}
|
|
4286
|
-
._gridWrapper_1jp8e_1 {
|
|
4287
|
-
height: 100%;
|
|
4288
|
-
border-top: solid 1px var(--bs-border-color);
|
|
4289
|
-
}
|
|
4290
|
-
|
|
4291
|
-
/* Hide sort index numbers in multi-column sort */
|
|
4292
|
-
._gridWrapper_1jp8e_1 .ag-header-cell .ag-sort-order {
|
|
4293
|
-
display: none;
|
|
4294
|
-
}
|
|
4295
|
-
|
|
4296
|
-
._row_1jp8e_11 {
|
|
4297
|
-
cursor: pointer;
|
|
4298
|
-
}
|
|
4299
|
-
|
|
4300
|
-
._green_1jp8e_15 {
|
|
4301
|
-
color: var(--bs-success);
|
|
4302
|
-
}
|
|
4303
|
-
|
|
4304
|
-
._red_1jp8e_19 {
|
|
4305
|
-
color: var(--bs-danger);
|
|
4306
|
-
}
|
|
4307
|
-
|
|
4308
|
-
._yellow_1jp8e_23 {
|
|
4309
|
-
color: var(--bs-warning);
|
|
4310
|
-
}
|
|
4311
|
-
|
|
4312
|
-
._blue_1jp8e_27 {
|
|
4313
|
-
color: var(--bs-info);
|
|
4314
|
-
}
|
|
4315
|
-
._container_18ufx_1 {
|
|
4316
|
-
display: grid;
|
|
4317
|
-
grid-template-rows: max-content max-content 1fr max-content;
|
|
4318
|
-
height: 100%;
|
|
4319
|
-
row-gap: 0;
|
|
4320
|
-
}
|
|
4321
4321
|
._root_ke0e7_1 {
|
|
4322
4322
|
height: 100vh;
|
|
4323
4323
|
display: grid;
|
|
@@ -4477,11 +4477,15 @@ button._segment_19z32_10 {
|
|
|
4477
4477
|
color: var(--bs-primary) !important;
|
|
4478
4478
|
margin-right: 0.3rem;
|
|
4479
4479
|
}
|
|
4480
|
-
.
|
|
4480
|
+
._id_3fl9e_1 {
|
|
4481
4481
|
display: grid;
|
|
4482
4482
|
grid-template-rows: auto auto;
|
|
4483
4483
|
row-gap: 0;
|
|
4484
4484
|
}
|
|
4485
|
+
|
|
4486
|
+
._idContainer_3fl9e_7 {
|
|
4487
|
+
overflow-wrap: anywhere;
|
|
4488
|
+
}
|
|
4485
4489
|
._row_diloz_1 {
|
|
4486
4490
|
border-bottom: solid 1px var(--bs-border-color);
|
|
4487
4491
|
padding: 0.5rem 1rem;
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|