opus-react 0.2.20 → 0.2.22
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/index.cjs +2244 -349
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1172 -10
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +299 -5
- package/dist/index.d.ts +299 -5
- package/dist/index.js +2231 -352
- package/dist/index.js.map +1 -1
- package/package.json +4 -1
package/dist/index.css
CHANGED
|
@@ -5669,8 +5669,11 @@
|
|
|
5669
5669
|
/* components/ProgressRing/ProgressRing.module.css */
|
|
5670
5670
|
.opus_YxX6Hh_ring {
|
|
5671
5671
|
aspect-ratio: 1;
|
|
5672
|
-
|
|
5673
|
-
|
|
5672
|
+
flex-shrink: 0;
|
|
5673
|
+
width: 220px;
|
|
5674
|
+
min-width: 220px;
|
|
5675
|
+
max-width: 220px;
|
|
5676
|
+
height: 220px;
|
|
5674
5677
|
position: relative;
|
|
5675
5678
|
}
|
|
5676
5679
|
|
|
@@ -5765,8 +5768,11 @@
|
|
|
5765
5768
|
/* components/Speedometer/Speedometer.module.css */
|
|
5766
5769
|
.opus__jpB7z_speedometer {
|
|
5767
5770
|
aspect-ratio: 220 / 130;
|
|
5768
|
-
|
|
5769
|
-
|
|
5771
|
+
flex-shrink: 0;
|
|
5772
|
+
width: 260px;
|
|
5773
|
+
min-width: 260px;
|
|
5774
|
+
max-width: 260px;
|
|
5775
|
+
height: auto;
|
|
5770
5776
|
position: relative;
|
|
5771
5777
|
overflow: hidden;
|
|
5772
5778
|
}
|
|
@@ -6690,6 +6696,130 @@
|
|
|
6690
6696
|
overflow: hidden;
|
|
6691
6697
|
}
|
|
6692
6698
|
|
|
6699
|
+
.opus_zN0bNb_rowHeaderInner {
|
|
6700
|
+
align-items: center;
|
|
6701
|
+
gap: 6px;
|
|
6702
|
+
min-width: 0;
|
|
6703
|
+
max-width: 100%;
|
|
6704
|
+
display: inline-flex;
|
|
6705
|
+
}
|
|
6706
|
+
|
|
6707
|
+
.opus_zN0bNb_rowHeaderLabel {
|
|
6708
|
+
text-overflow: ellipsis;
|
|
6709
|
+
min-width: 0;
|
|
6710
|
+
overflow: hidden;
|
|
6711
|
+
}
|
|
6712
|
+
|
|
6713
|
+
.opus_zN0bNb_chevron {
|
|
6714
|
+
flex: none;
|
|
6715
|
+
width: 10px;
|
|
6716
|
+
height: 10px;
|
|
6717
|
+
font-size: 10px;
|
|
6718
|
+
line-height: 1;
|
|
6719
|
+
}
|
|
6720
|
+
|
|
6721
|
+
.opus_zN0bNb_chevron svg {
|
|
6722
|
+
width: 10px !important;
|
|
6723
|
+
height: 10px !important;
|
|
6724
|
+
}
|
|
6725
|
+
|
|
6726
|
+
.opus_zN0bNb_expandButton {
|
|
6727
|
+
width: 18px;
|
|
6728
|
+
height: 18px;
|
|
6729
|
+
color: var(--opus-muted);
|
|
6730
|
+
cursor: pointer;
|
|
6731
|
+
background: none;
|
|
6732
|
+
border: 0;
|
|
6733
|
+
border-radius: 4px;
|
|
6734
|
+
flex: none;
|
|
6735
|
+
place-items: center;
|
|
6736
|
+
padding: 0;
|
|
6737
|
+
font-size: 10px;
|
|
6738
|
+
line-height: 1;
|
|
6739
|
+
display: inline-grid;
|
|
6740
|
+
}
|
|
6741
|
+
|
|
6742
|
+
.opus_zN0bNb_expandButton:hover {
|
|
6743
|
+
color: var(--opus-accent);
|
|
6744
|
+
background: color-mix(in srgb, var(--opus-accent) 12%, transparent);
|
|
6745
|
+
}
|
|
6746
|
+
|
|
6747
|
+
.opus_zN0bNb_expandButton svg {
|
|
6748
|
+
width: 10px !important;
|
|
6749
|
+
height: 10px !important;
|
|
6750
|
+
}
|
|
6751
|
+
|
|
6752
|
+
.opus_zN0bNb_expandSpacer {
|
|
6753
|
+
flex: none;
|
|
6754
|
+
width: 18px;
|
|
6755
|
+
height: 18px;
|
|
6756
|
+
}
|
|
6757
|
+
|
|
6758
|
+
.opus_zN0bNb_groupRow td, .opus_zN0bNb_groupCell {
|
|
6759
|
+
vertical-align: middle;
|
|
6760
|
+
height: 34px;
|
|
6761
|
+
max-height: 34px;
|
|
6762
|
+
background: color-mix(in srgb, var(--opus-accent) 10%, var(--opus-panel)) !important;
|
|
6763
|
+
padding: 0 !important;
|
|
6764
|
+
}
|
|
6765
|
+
|
|
6766
|
+
.opus_zN0bNb_groupButton {
|
|
6767
|
+
box-sizing: border-box;
|
|
6768
|
+
width: 100%;
|
|
6769
|
+
height: 34px;
|
|
6770
|
+
max-height: 34px;
|
|
6771
|
+
color: var(--opus-text);
|
|
6772
|
+
cursor: pointer;
|
|
6773
|
+
font: inherit;
|
|
6774
|
+
text-align: left;
|
|
6775
|
+
background: none;
|
|
6776
|
+
border: 0;
|
|
6777
|
+
align-items: center;
|
|
6778
|
+
gap: 8px;
|
|
6779
|
+
padding: 0 12px;
|
|
6780
|
+
font-size: .82rem;
|
|
6781
|
+
font-weight: 800;
|
|
6782
|
+
line-height: 1;
|
|
6783
|
+
display: flex;
|
|
6784
|
+
}
|
|
6785
|
+
|
|
6786
|
+
.opus_zN0bNb_groupButton svg {
|
|
6787
|
+
flex: none;
|
|
6788
|
+
width: 10px !important;
|
|
6789
|
+
height: 10px !important;
|
|
6790
|
+
}
|
|
6791
|
+
|
|
6792
|
+
.opus_zN0bNb_groupCount {
|
|
6793
|
+
color: var(--opus-muted);
|
|
6794
|
+
margin-left: auto;
|
|
6795
|
+
font-size: .74rem;
|
|
6796
|
+
font-weight: 700;
|
|
6797
|
+
}
|
|
6798
|
+
|
|
6799
|
+
.opus_zN0bNb_detailRow td, .opus_zN0bNb_detailCell {
|
|
6800
|
+
color: var(--opus-muted);
|
|
6801
|
+
font-size: .82rem;
|
|
6802
|
+
line-height: 1.45;
|
|
6803
|
+
white-space: normal !important;
|
|
6804
|
+
background: color-mix(in srgb, var(--opus-accent) 6%, var(--opus-panel)) !important;
|
|
6805
|
+
padding: 12px 14px !important;
|
|
6806
|
+
}
|
|
6807
|
+
|
|
6808
|
+
.opus_zN0bNb_spacerRow td {
|
|
6809
|
+
background: none !important;
|
|
6810
|
+
border: 0 !important;
|
|
6811
|
+
}
|
|
6812
|
+
|
|
6813
|
+
.opus_zN0bNb_infiniteFooter {
|
|
6814
|
+
border-top: 1px solid color-mix(in srgb, var(--opus-border) 72%, transparent);
|
|
6815
|
+
min-height: 36px;
|
|
6816
|
+
color: var(--opus-muted);
|
|
6817
|
+
place-items: center;
|
|
6818
|
+
font-size: .74rem;
|
|
6819
|
+
font-weight: 700;
|
|
6820
|
+
display: grid;
|
|
6821
|
+
}
|
|
6822
|
+
|
|
6693
6823
|
@media (prefers-reduced-transparency: reduce) {
|
|
6694
6824
|
.opus_zN0bNb_grid thead th:before {
|
|
6695
6825
|
backdrop-filter: none;
|
|
@@ -7924,19 +8054,24 @@
|
|
|
7924
8054
|
gap: 8px;
|
|
7925
8055
|
width: 100%;
|
|
7926
8056
|
min-width: 0;
|
|
8057
|
+
max-width: 100%;
|
|
7927
8058
|
display: grid;
|
|
7928
8059
|
}
|
|
7929
8060
|
|
|
7930
|
-
.opus_NkO9Yb_content[data-size="small"] {
|
|
7931
|
-
width: 180px;
|
|
8061
|
+
.opus_NkO9Yb_content[data-size="small"]:not([data-fill="true"]) {
|
|
8062
|
+
max-width: 180px;
|
|
8063
|
+
}
|
|
8064
|
+
|
|
8065
|
+
.opus_NkO9Yb_content[data-size="medium"]:not([data-fill="true"]) {
|
|
8066
|
+
max-width: 240px;
|
|
7932
8067
|
}
|
|
7933
8068
|
|
|
7934
|
-
.opus_NkO9Yb_content[data-size="
|
|
7935
|
-
width:
|
|
8069
|
+
.opus_NkO9Yb_content[data-size="large"]:not([data-fill="true"]) {
|
|
8070
|
+
max-width: 340px;
|
|
7936
8071
|
}
|
|
7937
8072
|
|
|
7938
|
-
.opus_NkO9Yb_content[data-
|
|
7939
|
-
width:
|
|
8073
|
+
.opus_NkO9Yb_content[data-fill="true"] {
|
|
8074
|
+
max-width: 100%;
|
|
7940
8075
|
}
|
|
7941
8076
|
|
|
7942
8077
|
.opus_NkO9Yb_caption {
|
|
@@ -7964,6 +8099,8 @@
|
|
|
7964
8099
|
.opus_8llAjm_gallery {
|
|
7965
8100
|
grid-template-columns: repeat(var(--model-gallery-columns), minmax(0, 1fr));
|
|
7966
8101
|
gap: 14px;
|
|
8102
|
+
width: 100%;
|
|
8103
|
+
min-width: 0;
|
|
7967
8104
|
display: grid;
|
|
7968
8105
|
}
|
|
7969
8106
|
|
|
@@ -7981,6 +8118,8 @@
|
|
|
7981
8118
|
|
|
7982
8119
|
.opus_8llAjm_gallery > * {
|
|
7983
8120
|
width: 100%;
|
|
8121
|
+
min-width: 0;
|
|
8122
|
+
max-width: 100%;
|
|
7984
8123
|
}
|
|
7985
8124
|
|
|
7986
8125
|
.opus_8llAjm_empty {
|
|
@@ -8085,6 +8224,1029 @@
|
|
|
8085
8224
|
display: flex;
|
|
8086
8225
|
}
|
|
8087
8226
|
|
|
8227
|
+
/* components/Badge/Badge.module.css */
|
|
8228
|
+
.opus_1GJHzl_badge {
|
|
8229
|
+
letter-spacing: .01em;
|
|
8230
|
+
white-space: nowrap;
|
|
8231
|
+
vertical-align: middle;
|
|
8232
|
+
border: 1px solid #0000;
|
|
8233
|
+
border-radius: 999px;
|
|
8234
|
+
align-items: center;
|
|
8235
|
+
gap: 6px;
|
|
8236
|
+
max-width: 100%;
|
|
8237
|
+
font-weight: 650;
|
|
8238
|
+
line-height: 1;
|
|
8239
|
+
display: inline-flex;
|
|
8240
|
+
}
|
|
8241
|
+
|
|
8242
|
+
.opus_1GJHzl_badge[data-size="sm"] {
|
|
8243
|
+
min-height: 20px;
|
|
8244
|
+
padding: 0 8px;
|
|
8245
|
+
font-size: .68rem;
|
|
8246
|
+
}
|
|
8247
|
+
|
|
8248
|
+
.opus_1GJHzl_badge[data-size="md"] {
|
|
8249
|
+
min-height: 24px;
|
|
8250
|
+
padding: 0 10px;
|
|
8251
|
+
font-size: .74rem;
|
|
8252
|
+
}
|
|
8253
|
+
|
|
8254
|
+
.opus_1GJHzl_dot {
|
|
8255
|
+
background: currentColor;
|
|
8256
|
+
border-radius: 999px;
|
|
8257
|
+
flex-shrink: 0;
|
|
8258
|
+
width: 6px;
|
|
8259
|
+
height: 6px;
|
|
8260
|
+
}
|
|
8261
|
+
|
|
8262
|
+
.opus_1GJHzl_badge[data-variant="solid"] {
|
|
8263
|
+
color: var(--badge-solid-fg);
|
|
8264
|
+
background: var(--badge-solid-bg);
|
|
8265
|
+
}
|
|
8266
|
+
|
|
8267
|
+
.opus_1GJHzl_badge[data-variant="soft"] {
|
|
8268
|
+
color: var(--badge-soft-fg);
|
|
8269
|
+
background: var(--badge-soft-bg);
|
|
8270
|
+
}
|
|
8271
|
+
|
|
8272
|
+
.opus_1GJHzl_badge[data-variant="outline"] {
|
|
8273
|
+
color: var(--badge-outline-fg);
|
|
8274
|
+
border-color: var(--badge-outline-border);
|
|
8275
|
+
background: none;
|
|
8276
|
+
}
|
|
8277
|
+
|
|
8278
|
+
.opus_1GJHzl_badge[data-tone="neutral"] {
|
|
8279
|
+
--badge-solid-bg: color-mix(in srgb, var(--opus-muted) 72%, var(--opus-text));
|
|
8280
|
+
--badge-solid-fg: var(--opus-panel);
|
|
8281
|
+
--badge-soft-bg: color-mix(in srgb, var(--opus-muted) 16%, transparent);
|
|
8282
|
+
--badge-soft-fg: var(--opus-muted);
|
|
8283
|
+
--badge-outline-fg: var(--opus-muted);
|
|
8284
|
+
--badge-outline-border: color-mix(in srgb, var(--opus-muted) 40%, transparent);
|
|
8285
|
+
}
|
|
8286
|
+
|
|
8287
|
+
.opus_1GJHzl_badge[data-tone="accent"] {
|
|
8288
|
+
--badge-solid-bg: var(--opus-accent);
|
|
8289
|
+
--badge-solid-fg: var(--opus-accent-contrast, #fff);
|
|
8290
|
+
--badge-soft-bg: var(--opus-accent-soft);
|
|
8291
|
+
--badge-soft-fg: var(--opus-accent);
|
|
8292
|
+
--badge-outline-fg: var(--opus-accent);
|
|
8293
|
+
--badge-outline-border: color-mix(in srgb, var(--opus-accent) 45%, transparent);
|
|
8294
|
+
}
|
|
8295
|
+
|
|
8296
|
+
.opus_1GJHzl_badge[data-tone="success"] {
|
|
8297
|
+
--badge-solid-bg: #16a34a;
|
|
8298
|
+
--badge-solid-fg: #fff;
|
|
8299
|
+
--badge-soft-bg: #22c55e29;
|
|
8300
|
+
--badge-soft-fg: #15803d;
|
|
8301
|
+
--badge-outline-fg: #16a34a;
|
|
8302
|
+
--badge-outline-border: #22c55e6b;
|
|
8303
|
+
}
|
|
8304
|
+
|
|
8305
|
+
.opus_1GJHzl_badge[data-tone="warning"] {
|
|
8306
|
+
--badge-solid-bg: #d97706;
|
|
8307
|
+
--badge-solid-fg: #fff;
|
|
8308
|
+
--badge-soft-bg: #f59e0b29;
|
|
8309
|
+
--badge-soft-fg: #b45309;
|
|
8310
|
+
--badge-outline-fg: #d97706;
|
|
8311
|
+
--badge-outline-border: #f59e0b6b;
|
|
8312
|
+
}
|
|
8313
|
+
|
|
8314
|
+
.opus_1GJHzl_badge[data-tone="danger"] {
|
|
8315
|
+
--badge-solid-bg: #dc2626;
|
|
8316
|
+
--badge-solid-fg: #fff;
|
|
8317
|
+
--badge-soft-bg: #ef444429;
|
|
8318
|
+
--badge-soft-fg: #b91c1c;
|
|
8319
|
+
--badge-outline-fg: #dc2626;
|
|
8320
|
+
--badge-outline-border: #ef44446b;
|
|
8321
|
+
}
|
|
8322
|
+
|
|
8323
|
+
.opus_1GJHzl_badge[data-tone="info"] {
|
|
8324
|
+
--badge-solid-bg: #2563eb;
|
|
8325
|
+
--badge-solid-fg: #fff;
|
|
8326
|
+
--badge-soft-bg: #3b82f629;
|
|
8327
|
+
--badge-soft-fg: #1d4ed8;
|
|
8328
|
+
--badge-outline-fg: #2563eb;
|
|
8329
|
+
--badge-outline-border: #3b82f66b;
|
|
8330
|
+
}
|
|
8331
|
+
|
|
8332
|
+
[data-theme="dark"] .opus_1GJHzl_badge[data-tone="success"] {
|
|
8333
|
+
--badge-soft-fg: #86efac;
|
|
8334
|
+
}
|
|
8335
|
+
|
|
8336
|
+
[data-theme="dark"] .opus_1GJHzl_badge[data-tone="warning"] {
|
|
8337
|
+
--badge-soft-fg: #fcd34d;
|
|
8338
|
+
}
|
|
8339
|
+
|
|
8340
|
+
[data-theme="dark"] .opus_1GJHzl_badge[data-tone="danger"] {
|
|
8341
|
+
--badge-soft-fg: #fca5a5;
|
|
8342
|
+
}
|
|
8343
|
+
|
|
8344
|
+
[data-theme="dark"] .opus_1GJHzl_badge[data-tone="info"] {
|
|
8345
|
+
--badge-soft-fg: #93c5fd;
|
|
8346
|
+
}
|
|
8347
|
+
|
|
8348
|
+
/* components/Divider/Divider.module.css */
|
|
8349
|
+
.opus_ux1i0D_divider, .opus_ux1i0D_line {
|
|
8350
|
+
background: color-mix(in srgb, var(--opus-border) 100%, transparent);
|
|
8351
|
+
border: 0;
|
|
8352
|
+
}
|
|
8353
|
+
|
|
8354
|
+
.opus_ux1i0D_divider[data-tone="muted"], .opus_ux1i0D_labelled[data-tone="muted"] .opus_ux1i0D_line {
|
|
8355
|
+
background: color-mix(in srgb, var(--opus-muted) 28%, transparent);
|
|
8356
|
+
}
|
|
8357
|
+
|
|
8358
|
+
.opus_ux1i0D_divider[data-tone="strong"], .opus_ux1i0D_labelled[data-tone="strong"] .opus_ux1i0D_line {
|
|
8359
|
+
background: color-mix(in srgb, var(--opus-border-strong, var(--opus-border)) 100%, transparent);
|
|
8360
|
+
}
|
|
8361
|
+
|
|
8362
|
+
.opus_ux1i0D_divider[data-orientation="horizontal"] {
|
|
8363
|
+
width: 100%;
|
|
8364
|
+
height: 1px;
|
|
8365
|
+
margin: 0;
|
|
8366
|
+
display: block;
|
|
8367
|
+
}
|
|
8368
|
+
|
|
8369
|
+
.opus_ux1i0D_divider[data-orientation="vertical"] {
|
|
8370
|
+
align-self: stretch;
|
|
8371
|
+
width: 1px;
|
|
8372
|
+
height: 1.6em;
|
|
8373
|
+
min-height: 24px;
|
|
8374
|
+
display: inline-block;
|
|
8375
|
+
}
|
|
8376
|
+
|
|
8377
|
+
.opus_ux1i0D_labelled {
|
|
8378
|
+
grid-template-columns: 1fr auto 1fr;
|
|
8379
|
+
align-items: center;
|
|
8380
|
+
gap: 12px;
|
|
8381
|
+
width: 100%;
|
|
8382
|
+
display: grid;
|
|
8383
|
+
}
|
|
8384
|
+
|
|
8385
|
+
.opus_ux1i0D_line {
|
|
8386
|
+
height: 1px;
|
|
8387
|
+
}
|
|
8388
|
+
|
|
8389
|
+
.opus_ux1i0D_label {
|
|
8390
|
+
color: var(--opus-muted);
|
|
8391
|
+
letter-spacing: .04em;
|
|
8392
|
+
text-transform: uppercase;
|
|
8393
|
+
white-space: nowrap;
|
|
8394
|
+
font-size: .78rem;
|
|
8395
|
+
font-weight: 600;
|
|
8396
|
+
}
|
|
8397
|
+
|
|
8398
|
+
/* components/Avatar/Avatar.module.css */
|
|
8399
|
+
.opus_jsRWxO_avatar {
|
|
8400
|
+
border: 1px solid color-mix(in srgb, var(--opus-border) 80%, transparent);
|
|
8401
|
+
background: linear-gradient(135deg, color-mix(in srgb, var(--opus-accent) 28%, transparent), color-mix(in srgb, var(--opus-muted) 18%, transparent)),
|
|
8402
|
+
color-mix(in srgb, var(--opus-panel) 88%, transparent);
|
|
8403
|
+
color: var(--opus-text);
|
|
8404
|
+
user-select: none;
|
|
8405
|
+
flex-shrink: 0;
|
|
8406
|
+
justify-content: center;
|
|
8407
|
+
align-items: center;
|
|
8408
|
+
font-weight: 700;
|
|
8409
|
+
line-height: 1;
|
|
8410
|
+
display: inline-flex;
|
|
8411
|
+
overflow: hidden;
|
|
8412
|
+
}
|
|
8413
|
+
|
|
8414
|
+
.opus_jsRWxO_avatar[data-shape="circle"] {
|
|
8415
|
+
border-radius: 999px;
|
|
8416
|
+
}
|
|
8417
|
+
|
|
8418
|
+
.opus_jsRWxO_avatar[data-shape="rounded"] {
|
|
8419
|
+
border-radius: calc(var(--opus-input-radius-large, 6px) + 2px);
|
|
8420
|
+
}
|
|
8421
|
+
|
|
8422
|
+
.opus_jsRWxO_avatar[data-size="sm"] {
|
|
8423
|
+
width: 28px;
|
|
8424
|
+
height: 28px;
|
|
8425
|
+
font-size: .68rem;
|
|
8426
|
+
}
|
|
8427
|
+
|
|
8428
|
+
.opus_jsRWxO_avatar[data-size="md"] {
|
|
8429
|
+
width: 36px;
|
|
8430
|
+
height: 36px;
|
|
8431
|
+
font-size: .76rem;
|
|
8432
|
+
}
|
|
8433
|
+
|
|
8434
|
+
.opus_jsRWxO_avatar[data-size="lg"] {
|
|
8435
|
+
width: 48px;
|
|
8436
|
+
height: 48px;
|
|
8437
|
+
font-size: .9rem;
|
|
8438
|
+
}
|
|
8439
|
+
|
|
8440
|
+
.opus_jsRWxO_avatar[data-size="xl"] {
|
|
8441
|
+
width: 64px;
|
|
8442
|
+
height: 64px;
|
|
8443
|
+
font-size: 1.05rem;
|
|
8444
|
+
}
|
|
8445
|
+
|
|
8446
|
+
.opus_jsRWxO_image {
|
|
8447
|
+
object-fit: cover;
|
|
8448
|
+
width: 100%;
|
|
8449
|
+
height: 100%;
|
|
8450
|
+
}
|
|
8451
|
+
|
|
8452
|
+
.opus_jsRWxO_initials {
|
|
8453
|
+
letter-spacing: .02em;
|
|
8454
|
+
}
|
|
8455
|
+
|
|
8456
|
+
/* components/AvatarGroup/AvatarGroup.module.css */
|
|
8457
|
+
.opus_Vv36ne_group {
|
|
8458
|
+
align-items: center;
|
|
8459
|
+
display: inline-flex;
|
|
8460
|
+
}
|
|
8461
|
+
|
|
8462
|
+
.opus_Vv36ne_item {
|
|
8463
|
+
margin-left: -8px;
|
|
8464
|
+
display: inline-flex;
|
|
8465
|
+
}
|
|
8466
|
+
|
|
8467
|
+
.opus_Vv36ne_item:first-child {
|
|
8468
|
+
margin-left: 0;
|
|
8469
|
+
}
|
|
8470
|
+
|
|
8471
|
+
.opus_Vv36ne_item [class*="avatar"] {
|
|
8472
|
+
box-shadow: 0 0 0 2px var(--opus-panel, #10132b);
|
|
8473
|
+
}
|
|
8474
|
+
|
|
8475
|
+
.opus_Vv36ne_overflow {
|
|
8476
|
+
border: 1px solid color-mix(in srgb, var(--opus-border) 80%, transparent);
|
|
8477
|
+
background: color-mix(in srgb, var(--opus-muted) 18%, var(--opus-panel));
|
|
8478
|
+
color: var(--opus-text);
|
|
8479
|
+
box-shadow: 0 0 0 2px var(--opus-panel, #10132b);
|
|
8480
|
+
border-radius: 999px;
|
|
8481
|
+
justify-content: center;
|
|
8482
|
+
align-items: center;
|
|
8483
|
+
margin-left: -8px;
|
|
8484
|
+
font-weight: 700;
|
|
8485
|
+
display: inline-flex;
|
|
8486
|
+
}
|
|
8487
|
+
|
|
8488
|
+
.opus_Vv36ne_overflow[data-size="sm"] {
|
|
8489
|
+
width: 28px;
|
|
8490
|
+
height: 28px;
|
|
8491
|
+
font-size: .64rem;
|
|
8492
|
+
}
|
|
8493
|
+
|
|
8494
|
+
.opus_Vv36ne_overflow[data-size="md"] {
|
|
8495
|
+
width: 36px;
|
|
8496
|
+
height: 36px;
|
|
8497
|
+
font-size: .7rem;
|
|
8498
|
+
}
|
|
8499
|
+
|
|
8500
|
+
.opus_Vv36ne_overflow[data-size="lg"] {
|
|
8501
|
+
width: 48px;
|
|
8502
|
+
height: 48px;
|
|
8503
|
+
font-size: .78rem;
|
|
8504
|
+
}
|
|
8505
|
+
|
|
8506
|
+
.opus_Vv36ne_overflow[data-size="xl"] {
|
|
8507
|
+
width: 64px;
|
|
8508
|
+
height: 64px;
|
|
8509
|
+
font-size: .9rem;
|
|
8510
|
+
}
|
|
8511
|
+
|
|
8512
|
+
/* components/Statistic/Statistic.module.css */
|
|
8513
|
+
.opus_vCN1bv_root {
|
|
8514
|
+
gap: 6px;
|
|
8515
|
+
min-width: 0;
|
|
8516
|
+
display: grid;
|
|
8517
|
+
}
|
|
8518
|
+
|
|
8519
|
+
.opus_vCN1bv_label {
|
|
8520
|
+
color: var(--opus-muted);
|
|
8521
|
+
margin: 0;
|
|
8522
|
+
font-size: .82rem;
|
|
8523
|
+
font-weight: 600;
|
|
8524
|
+
}
|
|
8525
|
+
|
|
8526
|
+
.opus_vCN1bv_value {
|
|
8527
|
+
color: var(--opus-text);
|
|
8528
|
+
letter-spacing: -.03em;
|
|
8529
|
+
align-items: baseline;
|
|
8530
|
+
gap: 4px;
|
|
8531
|
+
margin: 0;
|
|
8532
|
+
font-size: clamp(1.6rem, 2.4vw, 2.1rem);
|
|
8533
|
+
font-weight: 750;
|
|
8534
|
+
line-height: 1.1;
|
|
8535
|
+
display: inline-flex;
|
|
8536
|
+
}
|
|
8537
|
+
|
|
8538
|
+
.opus_vCN1bv_affix {
|
|
8539
|
+
color: var(--opus-muted);
|
|
8540
|
+
font-size: .72em;
|
|
8541
|
+
font-weight: 650;
|
|
8542
|
+
}
|
|
8543
|
+
|
|
8544
|
+
.opus_vCN1bv_trend {
|
|
8545
|
+
align-items: center;
|
|
8546
|
+
gap: 6px;
|
|
8547
|
+
margin: 0;
|
|
8548
|
+
font-size: .78rem;
|
|
8549
|
+
font-weight: 650;
|
|
8550
|
+
display: inline-flex;
|
|
8551
|
+
}
|
|
8552
|
+
|
|
8553
|
+
.opus_vCN1bv_trend[data-trend="up"] {
|
|
8554
|
+
color: #15803d;
|
|
8555
|
+
}
|
|
8556
|
+
|
|
8557
|
+
.opus_vCN1bv_trend[data-trend="down"] {
|
|
8558
|
+
color: #b91c1c;
|
|
8559
|
+
}
|
|
8560
|
+
|
|
8561
|
+
.opus_vCN1bv_trend[data-trend="flat"] {
|
|
8562
|
+
color: var(--opus-muted);
|
|
8563
|
+
}
|
|
8564
|
+
|
|
8565
|
+
[data-theme="dark"] .opus_vCN1bv_trend[data-trend="up"] {
|
|
8566
|
+
color: #86efac;
|
|
8567
|
+
}
|
|
8568
|
+
|
|
8569
|
+
[data-theme="dark"] .opus_vCN1bv_trend[data-trend="down"] {
|
|
8570
|
+
color: #fca5a5;
|
|
8571
|
+
}
|
|
8572
|
+
|
|
8573
|
+
/* components/List/List.module.css */
|
|
8574
|
+
.opus_ys3xlo_list {
|
|
8575
|
+
border: 1px solid var(--opus-border);
|
|
8576
|
+
border-radius: var(--opus-input-radius-large, 6px);
|
|
8577
|
+
background: color-mix(in srgb, var(--opus-panel) 88%, transparent);
|
|
8578
|
+
gap: 0;
|
|
8579
|
+
width: 100%;
|
|
8580
|
+
margin: 0;
|
|
8581
|
+
padding: 0;
|
|
8582
|
+
list-style: none;
|
|
8583
|
+
display: grid;
|
|
8584
|
+
overflow: hidden;
|
|
8585
|
+
}
|
|
8586
|
+
|
|
8587
|
+
.opus_ys3xlo_list[data-ordered="true"] {
|
|
8588
|
+
counter-reset: opus-list;
|
|
8589
|
+
}
|
|
8590
|
+
|
|
8591
|
+
.opus_ys3xlo_item {
|
|
8592
|
+
border-bottom: 1px solid var(--opus-border);
|
|
8593
|
+
grid-template-columns: auto minmax(0, 1fr);
|
|
8594
|
+
align-items: start;
|
|
8595
|
+
gap: 12px;
|
|
8596
|
+
padding: 14px 16px;
|
|
8597
|
+
display: grid;
|
|
8598
|
+
}
|
|
8599
|
+
|
|
8600
|
+
.opus_ys3xlo_list[data-density="compact"] .opus_ys3xlo_item {
|
|
8601
|
+
gap: 10px;
|
|
8602
|
+
padding: 10px 12px;
|
|
8603
|
+
}
|
|
8604
|
+
|
|
8605
|
+
.opus_ys3xlo_item:last-child {
|
|
8606
|
+
border-bottom: 0;
|
|
8607
|
+
}
|
|
8608
|
+
|
|
8609
|
+
.opus_ys3xlo_list[data-ordered="true"] .opus_ys3xlo_item {
|
|
8610
|
+
counter-increment: opus-list;
|
|
8611
|
+
}
|
|
8612
|
+
|
|
8613
|
+
.opus_ys3xlo_list[data-ordered="true"] .opus_ys3xlo_item:not(:has(.opus_ys3xlo_icon)):before {
|
|
8614
|
+
content: counter(opus-list);
|
|
8615
|
+
background: color-mix(in srgb, var(--opus-accent) 14%, transparent);
|
|
8616
|
+
width: 24px;
|
|
8617
|
+
height: 24px;
|
|
8618
|
+
color: var(--opus-accent);
|
|
8619
|
+
border-radius: 999px;
|
|
8620
|
+
justify-content: center;
|
|
8621
|
+
align-items: center;
|
|
8622
|
+
font-size: .72rem;
|
|
8623
|
+
font-weight: 700;
|
|
8624
|
+
display: inline-flex;
|
|
8625
|
+
}
|
|
8626
|
+
|
|
8627
|
+
.opus_ys3xlo_icon {
|
|
8628
|
+
background: color-mix(in srgb, var(--opus-accent) 12%, transparent);
|
|
8629
|
+
width: 28px;
|
|
8630
|
+
height: 28px;
|
|
8631
|
+
color: var(--opus-accent);
|
|
8632
|
+
border-radius: 8px;
|
|
8633
|
+
justify-content: center;
|
|
8634
|
+
align-items: center;
|
|
8635
|
+
font-size: .82rem;
|
|
8636
|
+
display: inline-flex;
|
|
8637
|
+
}
|
|
8638
|
+
|
|
8639
|
+
.opus_ys3xlo_body {
|
|
8640
|
+
gap: 4px;
|
|
8641
|
+
min-width: 0;
|
|
8642
|
+
display: grid;
|
|
8643
|
+
}
|
|
8644
|
+
|
|
8645
|
+
.opus_ys3xlo_head {
|
|
8646
|
+
justify-content: space-between;
|
|
8647
|
+
align-items: baseline;
|
|
8648
|
+
gap: 12px;
|
|
8649
|
+
display: flex;
|
|
8650
|
+
}
|
|
8651
|
+
|
|
8652
|
+
.opus_ys3xlo_title {
|
|
8653
|
+
color: var(--opus-text);
|
|
8654
|
+
font-size: .9rem;
|
|
8655
|
+
font-weight: 650;
|
|
8656
|
+
}
|
|
8657
|
+
|
|
8658
|
+
.opus_ys3xlo_meta {
|
|
8659
|
+
color: var(--opus-muted);
|
|
8660
|
+
white-space: nowrap;
|
|
8661
|
+
font-size: .76rem;
|
|
8662
|
+
}
|
|
8663
|
+
|
|
8664
|
+
.opus_ys3xlo_description {
|
|
8665
|
+
color: var(--opus-muted);
|
|
8666
|
+
margin: 0;
|
|
8667
|
+
font-size: .82rem;
|
|
8668
|
+
line-height: 1.45;
|
|
8669
|
+
}
|
|
8670
|
+
|
|
8671
|
+
/* components/DescriptionList/DescriptionList.module.css */
|
|
8672
|
+
.opus_FY8OsC_list {
|
|
8673
|
+
gap: 14px;
|
|
8674
|
+
width: 100%;
|
|
8675
|
+
margin: 0;
|
|
8676
|
+
display: grid;
|
|
8677
|
+
}
|
|
8678
|
+
|
|
8679
|
+
.opus_FY8OsC_row {
|
|
8680
|
+
gap: 4px;
|
|
8681
|
+
min-width: 0;
|
|
8682
|
+
display: grid;
|
|
8683
|
+
}
|
|
8684
|
+
|
|
8685
|
+
.opus_FY8OsC_list[data-layout="inline"] .opus_FY8OsC_row {
|
|
8686
|
+
grid-template-columns: minmax(7rem, 11rem) minmax(0, 1fr);
|
|
8687
|
+
align-items: baseline;
|
|
8688
|
+
gap: 16px;
|
|
8689
|
+
}
|
|
8690
|
+
|
|
8691
|
+
.opus_FY8OsC_term {
|
|
8692
|
+
color: var(--opus-muted);
|
|
8693
|
+
letter-spacing: .02em;
|
|
8694
|
+
margin: 0;
|
|
8695
|
+
font-size: .78rem;
|
|
8696
|
+
font-weight: 650;
|
|
8697
|
+
}
|
|
8698
|
+
|
|
8699
|
+
.opus_FY8OsC_details {
|
|
8700
|
+
color: var(--opus-text);
|
|
8701
|
+
margin: 0;
|
|
8702
|
+
font-size: .92rem;
|
|
8703
|
+
line-height: 1.45;
|
|
8704
|
+
}
|
|
8705
|
+
|
|
8706
|
+
/* components/PropertyGrid/PropertyGrid.module.css */
|
|
8707
|
+
.opus_Bnfsue_grid {
|
|
8708
|
+
border: 1px solid var(--opus-border);
|
|
8709
|
+
border-radius: var(--opus-input-radius-large, 6px);
|
|
8710
|
+
background: color-mix(in srgb, var(--opus-panel) 92%, transparent);
|
|
8711
|
+
width: 100%;
|
|
8712
|
+
display: grid;
|
|
8713
|
+
overflow: hidden;
|
|
8714
|
+
}
|
|
8715
|
+
|
|
8716
|
+
.opus_Bnfsue_row {
|
|
8717
|
+
border-bottom: 1px solid var(--opus-border);
|
|
8718
|
+
grid-template-columns: minmax(8rem, 12rem) minmax(0, 1fr);
|
|
8719
|
+
display: grid;
|
|
8720
|
+
}
|
|
8721
|
+
|
|
8722
|
+
.opus_Bnfsue_row:last-child {
|
|
8723
|
+
border-bottom: 0;
|
|
8724
|
+
}
|
|
8725
|
+
|
|
8726
|
+
.opus_Bnfsue_label {
|
|
8727
|
+
background: color-mix(in srgb, var(--opus-muted) 8%, transparent);
|
|
8728
|
+
color: var(--opus-muted);
|
|
8729
|
+
padding: 10px 12px;
|
|
8730
|
+
font-size: .78rem;
|
|
8731
|
+
font-weight: 650;
|
|
8732
|
+
}
|
|
8733
|
+
|
|
8734
|
+
.opus_Bnfsue_valueCell {
|
|
8735
|
+
justify-content: space-between;
|
|
8736
|
+
align-items: center;
|
|
8737
|
+
gap: 10px;
|
|
8738
|
+
min-width: 0;
|
|
8739
|
+
padding: 10px 12px;
|
|
8740
|
+
display: flex;
|
|
8741
|
+
}
|
|
8742
|
+
|
|
8743
|
+
.opus_Bnfsue_value {
|
|
8744
|
+
min-width: 0;
|
|
8745
|
+
color: var(--opus-text);
|
|
8746
|
+
font-family: var(--font-ibm-plex-mono), ui-monospace, monospace;
|
|
8747
|
+
text-overflow: ellipsis;
|
|
8748
|
+
white-space: nowrap;
|
|
8749
|
+
font-size: .8rem;
|
|
8750
|
+
overflow: hidden;
|
|
8751
|
+
}
|
|
8752
|
+
|
|
8753
|
+
.opus_Bnfsue_copy {
|
|
8754
|
+
border: 1px solid var(--opus-border);
|
|
8755
|
+
color: var(--opus-muted);
|
|
8756
|
+
cursor: pointer;
|
|
8757
|
+
background: none;
|
|
8758
|
+
border-radius: 999px;
|
|
8759
|
+
flex-shrink: 0;
|
|
8760
|
+
padding: 4px 8px;
|
|
8761
|
+
font-size: .7rem;
|
|
8762
|
+
font-weight: 650;
|
|
8763
|
+
}
|
|
8764
|
+
|
|
8765
|
+
.opus_Bnfsue_copy:hover {
|
|
8766
|
+
color: var(--opus-text);
|
|
8767
|
+
border-color: color-mix(in srgb, var(--opus-accent) 40%, var(--opus-border));
|
|
8768
|
+
}
|
|
8769
|
+
|
|
8770
|
+
.opus_Bnfsue_copy:focus-visible {
|
|
8771
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--opus-accent) 24%, transparent);
|
|
8772
|
+
outline: none;
|
|
8773
|
+
}
|
|
8774
|
+
|
|
8775
|
+
@media (width <= 560px) {
|
|
8776
|
+
.opus_Bnfsue_row {
|
|
8777
|
+
grid-template-columns: 1fr;
|
|
8778
|
+
}
|
|
8779
|
+
|
|
8780
|
+
.opus_Bnfsue_label {
|
|
8781
|
+
border-bottom: 1px solid var(--opus-border);
|
|
8782
|
+
}
|
|
8783
|
+
}
|
|
8784
|
+
|
|
8785
|
+
/* components/ContentTimeline/ContentTimeline.module.css */
|
|
8786
|
+
.opus_vApy-v_list {
|
|
8787
|
+
gap: 0;
|
|
8788
|
+
width: 100%;
|
|
8789
|
+
margin: 0;
|
|
8790
|
+
padding: 0;
|
|
8791
|
+
list-style: none;
|
|
8792
|
+
display: grid;
|
|
8793
|
+
}
|
|
8794
|
+
|
|
8795
|
+
.opus_vApy-v_item {
|
|
8796
|
+
grid-template-columns: 20px minmax(0, 1fr);
|
|
8797
|
+
align-items: stretch;
|
|
8798
|
+
gap: 14px;
|
|
8799
|
+
display: grid;
|
|
8800
|
+
}
|
|
8801
|
+
|
|
8802
|
+
.opus_vApy-v_rail {
|
|
8803
|
+
flex-direction: column;
|
|
8804
|
+
align-items: center;
|
|
8805
|
+
padding-top: 4px;
|
|
8806
|
+
display: flex;
|
|
8807
|
+
position: relative;
|
|
8808
|
+
}
|
|
8809
|
+
|
|
8810
|
+
.opus_vApy-v_dot {
|
|
8811
|
+
background: var(--opus-accent);
|
|
8812
|
+
width: 10px;
|
|
8813
|
+
height: 10px;
|
|
8814
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--opus-accent) 18%, transparent);
|
|
8815
|
+
border-radius: 999px;
|
|
8816
|
+
flex-shrink: 0;
|
|
8817
|
+
}
|
|
8818
|
+
|
|
8819
|
+
.opus_vApy-v_item[data-status="success"] .opus_vApy-v_dot {
|
|
8820
|
+
background: #16a34a;
|
|
8821
|
+
box-shadow: 0 0 0 3px #22c55e2e;
|
|
8822
|
+
}
|
|
8823
|
+
|
|
8824
|
+
.opus_vApy-v_item[data-status="warning"] .opus_vApy-v_dot {
|
|
8825
|
+
background: #d97706;
|
|
8826
|
+
box-shadow: 0 0 0 3px #f59e0b2e;
|
|
8827
|
+
}
|
|
8828
|
+
|
|
8829
|
+
.opus_vApy-v_item[data-status="danger"] .opus_vApy-v_dot {
|
|
8830
|
+
background: #dc2626;
|
|
8831
|
+
box-shadow: 0 0 0 3px #ef44442e;
|
|
8832
|
+
}
|
|
8833
|
+
|
|
8834
|
+
.opus_vApy-v_item[data-status="muted"] .opus_vApy-v_dot {
|
|
8835
|
+
background: var(--opus-muted);
|
|
8836
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--opus-muted) 16%, transparent);
|
|
8837
|
+
}
|
|
8838
|
+
|
|
8839
|
+
.opus_vApy-v_line {
|
|
8840
|
+
background: color-mix(in srgb, var(--opus-border) 90%, transparent);
|
|
8841
|
+
flex: 1;
|
|
8842
|
+
width: 2px;
|
|
8843
|
+
min-height: 18px;
|
|
8844
|
+
margin-top: 6px;
|
|
8845
|
+
}
|
|
8846
|
+
|
|
8847
|
+
.opus_vApy-v_body {
|
|
8848
|
+
min-width: 0;
|
|
8849
|
+
padding-bottom: 22px;
|
|
8850
|
+
}
|
|
8851
|
+
|
|
8852
|
+
.opus_vApy-v_item:last-child .opus_vApy-v_body {
|
|
8853
|
+
padding-bottom: 0;
|
|
8854
|
+
}
|
|
8855
|
+
|
|
8856
|
+
.opus_vApy-v_head {
|
|
8857
|
+
justify-content: space-between;
|
|
8858
|
+
align-items: baseline;
|
|
8859
|
+
gap: 12px;
|
|
8860
|
+
display: flex;
|
|
8861
|
+
}
|
|
8862
|
+
|
|
8863
|
+
.opus_vApy-v_title {
|
|
8864
|
+
color: var(--opus-text);
|
|
8865
|
+
margin: 0;
|
|
8866
|
+
font-size: .92rem;
|
|
8867
|
+
font-weight: 650;
|
|
8868
|
+
}
|
|
8869
|
+
|
|
8870
|
+
.opus_vApy-v_time {
|
|
8871
|
+
color: var(--opus-muted);
|
|
8872
|
+
white-space: nowrap;
|
|
8873
|
+
font-size: .76rem;
|
|
8874
|
+
}
|
|
8875
|
+
|
|
8876
|
+
.opus_vApy-v_description {
|
|
8877
|
+
color: var(--opus-muted);
|
|
8878
|
+
margin: 6px 0 0;
|
|
8879
|
+
font-size: .84rem;
|
|
8880
|
+
line-height: 1.45;
|
|
8881
|
+
}
|
|
8882
|
+
|
|
8883
|
+
/* components/TreeView/TreeView.module.css */
|
|
8884
|
+
.opus_NlkzXy_tree, .opus_NlkzXy_children {
|
|
8885
|
+
margin: 0;
|
|
8886
|
+
padding: 0;
|
|
8887
|
+
list-style: none;
|
|
8888
|
+
}
|
|
8889
|
+
|
|
8890
|
+
.opus_NlkzXy_tree {
|
|
8891
|
+
border: 1px solid var(--opus-border);
|
|
8892
|
+
border-radius: var(--opus-input-radius-large, 6px);
|
|
8893
|
+
background: color-mix(in srgb, var(--opus-panel) 92%, transparent);
|
|
8894
|
+
width: 100%;
|
|
8895
|
+
overflow: hidden;
|
|
8896
|
+
}
|
|
8897
|
+
|
|
8898
|
+
.opus_NlkzXy_node {
|
|
8899
|
+
display: grid;
|
|
8900
|
+
}
|
|
8901
|
+
|
|
8902
|
+
.opus_NlkzXy_row {
|
|
8903
|
+
border-bottom: 1px solid color-mix(in srgb, var(--opus-border) 70%, transparent);
|
|
8904
|
+
align-items: center;
|
|
8905
|
+
gap: 6px;
|
|
8906
|
+
min-height: 36px;
|
|
8907
|
+
padding-right: 12px;
|
|
8908
|
+
display: flex;
|
|
8909
|
+
}
|
|
8910
|
+
|
|
8911
|
+
.opus_NlkzXy_node:last-child > .opus_NlkzXy_row {
|
|
8912
|
+
border-bottom: 0;
|
|
8913
|
+
}
|
|
8914
|
+
|
|
8915
|
+
.opus_NlkzXy_toggle, .opus_NlkzXy_leafMark {
|
|
8916
|
+
flex-shrink: 0;
|
|
8917
|
+
justify-content: center;
|
|
8918
|
+
align-items: center;
|
|
8919
|
+
width: 22px;
|
|
8920
|
+
height: 22px;
|
|
8921
|
+
display: inline-flex;
|
|
8922
|
+
}
|
|
8923
|
+
|
|
8924
|
+
.opus_NlkzXy_toggle {
|
|
8925
|
+
color: var(--opus-muted);
|
|
8926
|
+
cursor: pointer;
|
|
8927
|
+
background: none;
|
|
8928
|
+
border: 0;
|
|
8929
|
+
border-radius: 6px;
|
|
8930
|
+
padding: 0;
|
|
8931
|
+
}
|
|
8932
|
+
|
|
8933
|
+
.opus_NlkzXy_toggle:hover {
|
|
8934
|
+
background: color-mix(in srgb, var(--opus-accent) 12%, transparent);
|
|
8935
|
+
color: var(--opus-text);
|
|
8936
|
+
}
|
|
8937
|
+
|
|
8938
|
+
.opus_NlkzXy_toggle:focus-visible {
|
|
8939
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--opus-accent) 24%, transparent);
|
|
8940
|
+
outline: none;
|
|
8941
|
+
}
|
|
8942
|
+
|
|
8943
|
+
.opus_NlkzXy_leafMark {
|
|
8944
|
+
color: #0000;
|
|
8945
|
+
}
|
|
8946
|
+
|
|
8947
|
+
.opus_NlkzXy_label {
|
|
8948
|
+
color: var(--opus-text);
|
|
8949
|
+
font-size: .86rem;
|
|
8950
|
+
font-weight: 550;
|
|
8951
|
+
}
|
|
8952
|
+
|
|
8953
|
+
/* components/MasonryGrid/MasonryGrid.module.css */
|
|
8954
|
+
.opus_Fxxd7-_grid {
|
|
8955
|
+
width: 100%;
|
|
8956
|
+
}
|
|
8957
|
+
|
|
8958
|
+
.opus_Fxxd7-_card {
|
|
8959
|
+
break-inside: avoid;
|
|
8960
|
+
page-break-inside: avoid;
|
|
8961
|
+
border: 1px solid var(--opus-border);
|
|
8962
|
+
border-radius: var(--opus-input-radius-large, 6px);
|
|
8963
|
+
background: linear-gradient(180deg, color-mix(in srgb, var(--opus-accent) 8%, transparent), transparent 48%),
|
|
8964
|
+
color-mix(in srgb, var(--opus-panel) 94%, transparent);
|
|
8965
|
+
gap: 8px;
|
|
8966
|
+
padding: 16px;
|
|
8967
|
+
display: grid;
|
|
8968
|
+
}
|
|
8969
|
+
|
|
8970
|
+
.opus_Fxxd7-_title {
|
|
8971
|
+
color: var(--opus-text);
|
|
8972
|
+
margin: 0;
|
|
8973
|
+
font-size: .9rem;
|
|
8974
|
+
font-weight: 650;
|
|
8975
|
+
}
|
|
8976
|
+
|
|
8977
|
+
.opus_Fxxd7-_body {
|
|
8978
|
+
color: var(--opus-muted);
|
|
8979
|
+
margin: 0;
|
|
8980
|
+
font-size: .82rem;
|
|
8981
|
+
line-height: 1.45;
|
|
8982
|
+
}
|
|
8983
|
+
|
|
8984
|
+
@media (width <= 720px) {
|
|
8985
|
+
.opus_Fxxd7-_grid {
|
|
8986
|
+
column-count: 2 !important;
|
|
8987
|
+
}
|
|
8988
|
+
}
|
|
8989
|
+
|
|
8990
|
+
@media (width <= 480px) {
|
|
8991
|
+
.opus_Fxxd7-_grid {
|
|
8992
|
+
column-count: 1 !important;
|
|
8993
|
+
}
|
|
8994
|
+
}
|
|
8995
|
+
|
|
8996
|
+
/* components/JsonViewer/JsonViewer.module.css */
|
|
8997
|
+
.opus_uLDgXq_root {
|
|
8998
|
+
border: 1px solid var(--opus-border);
|
|
8999
|
+
border-radius: var(--opus-input-radius-large, 6px);
|
|
9000
|
+
background: color-mix(in srgb, var(--opus-panel) 94%, #000 4%);
|
|
9001
|
+
width: 100%;
|
|
9002
|
+
max-height: 420px;
|
|
9003
|
+
font-family: var(--font-ibm-plex-mono), ui-monospace, monospace;
|
|
9004
|
+
padding: 12px;
|
|
9005
|
+
font-size: .78rem;
|
|
9006
|
+
line-height: 1.55;
|
|
9007
|
+
overflow: auto;
|
|
9008
|
+
}
|
|
9009
|
+
|
|
9010
|
+
.opus_uLDgXq_block, .opus_uLDgXq_children {
|
|
9011
|
+
display: grid;
|
|
9012
|
+
}
|
|
9013
|
+
|
|
9014
|
+
.opus_uLDgXq_line, .opus_uLDgXq_toggleLine {
|
|
9015
|
+
text-align: left;
|
|
9016
|
+
align-items: baseline;
|
|
9017
|
+
gap: 4px;
|
|
9018
|
+
min-height: 24px;
|
|
9019
|
+
display: flex;
|
|
9020
|
+
}
|
|
9021
|
+
|
|
9022
|
+
.opus_uLDgXq_toggleLine {
|
|
9023
|
+
width: 100%;
|
|
9024
|
+
color: inherit;
|
|
9025
|
+
cursor: pointer;
|
|
9026
|
+
font: inherit;
|
|
9027
|
+
background: none;
|
|
9028
|
+
border: 0;
|
|
9029
|
+
padding: 0;
|
|
9030
|
+
}
|
|
9031
|
+
|
|
9032
|
+
.opus_uLDgXq_toggleLine:hover {
|
|
9033
|
+
background: color-mix(in srgb, var(--opus-accent) 8%, transparent);
|
|
9034
|
+
}
|
|
9035
|
+
|
|
9036
|
+
.opus_uLDgXq_toggleLine:focus-visible {
|
|
9037
|
+
box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--opus-accent) 28%, transparent);
|
|
9038
|
+
outline: none;
|
|
9039
|
+
}
|
|
9040
|
+
|
|
9041
|
+
.opus_uLDgXq_chevron {
|
|
9042
|
+
width: 12px;
|
|
9043
|
+
color: var(--opus-muted);
|
|
9044
|
+
flex-shrink: 0;
|
|
9045
|
+
}
|
|
9046
|
+
|
|
9047
|
+
.opus_uLDgXq_key {
|
|
9048
|
+
color: color-mix(in srgb, var(--opus-accent) 80%, var(--opus-text));
|
|
9049
|
+
}
|
|
9050
|
+
|
|
9051
|
+
.opus_uLDgXq_summary {
|
|
9052
|
+
color: var(--opus-muted);
|
|
9053
|
+
}
|
|
9054
|
+
|
|
9055
|
+
.opus_uLDgXq_string {
|
|
9056
|
+
color: #16a34a;
|
|
9057
|
+
}
|
|
9058
|
+
|
|
9059
|
+
.opus_uLDgXq_number {
|
|
9060
|
+
color: #2563eb;
|
|
9061
|
+
}
|
|
9062
|
+
|
|
9063
|
+
.opus_uLDgXq_boolean {
|
|
9064
|
+
color: #d97706;
|
|
9065
|
+
}
|
|
9066
|
+
|
|
9067
|
+
.opus_uLDgXq_null {
|
|
9068
|
+
color: var(--opus-muted);
|
|
9069
|
+
}
|
|
9070
|
+
|
|
9071
|
+
[data-theme="dark"] .opus_uLDgXq_string {
|
|
9072
|
+
color: #86efac;
|
|
9073
|
+
}
|
|
9074
|
+
|
|
9075
|
+
[data-theme="dark"] .opus_uLDgXq_number {
|
|
9076
|
+
color: #93c5fd;
|
|
9077
|
+
}
|
|
9078
|
+
|
|
9079
|
+
[data-theme="dark"] .opus_uLDgXq_boolean {
|
|
9080
|
+
color: #fcd34d;
|
|
9081
|
+
}
|
|
9082
|
+
|
|
9083
|
+
/* components/Icon/Icon.module.css */
|
|
9084
|
+
.opus_7ASn4M_icon {
|
|
9085
|
+
color: var(--opus-text);
|
|
9086
|
+
place-items: center;
|
|
9087
|
+
line-height: 1;
|
|
9088
|
+
display: inline-grid;
|
|
9089
|
+
}
|
|
9090
|
+
|
|
9091
|
+
.opus_7ASn4M_icon[data-size="sm"] {
|
|
9092
|
+
width: .75rem;
|
|
9093
|
+
height: .75rem;
|
|
9094
|
+
font-size: .75rem;
|
|
9095
|
+
}
|
|
9096
|
+
|
|
9097
|
+
.opus_7ASn4M_icon[data-size="md"] {
|
|
9098
|
+
width: 1rem;
|
|
9099
|
+
height: 1rem;
|
|
9100
|
+
font-size: 1rem;
|
|
9101
|
+
}
|
|
9102
|
+
|
|
9103
|
+
.opus_7ASn4M_icon[data-size="lg"] {
|
|
9104
|
+
width: 1.35rem;
|
|
9105
|
+
height: 1.35rem;
|
|
9106
|
+
font-size: 1.35rem;
|
|
9107
|
+
}
|
|
9108
|
+
|
|
9109
|
+
.opus_7ASn4M_icon[data-tone="muted"] {
|
|
9110
|
+
color: var(--opus-muted);
|
|
9111
|
+
}
|
|
9112
|
+
|
|
9113
|
+
.opus_7ASn4M_icon[data-tone="accent"] {
|
|
9114
|
+
color: var(--opus-accent);
|
|
9115
|
+
}
|
|
9116
|
+
|
|
9117
|
+
.opus_7ASn4M_icon[data-tone="success"] {
|
|
9118
|
+
color: #22c55e;
|
|
9119
|
+
}
|
|
9120
|
+
|
|
9121
|
+
.opus_7ASn4M_icon[data-tone="warning"] {
|
|
9122
|
+
color: #f59e0b;
|
|
9123
|
+
}
|
|
9124
|
+
|
|
9125
|
+
.opus_7ASn4M_icon[data-tone="danger"] {
|
|
9126
|
+
color: #f43f5e;
|
|
9127
|
+
}
|
|
9128
|
+
|
|
9129
|
+
.opus_7ASn4M_icon svg {
|
|
9130
|
+
width: 1em !important;
|
|
9131
|
+
height: 1em !important;
|
|
9132
|
+
}
|
|
9133
|
+
|
|
9134
|
+
/* components/Spinner/Spinner.module.css */
|
|
9135
|
+
.opus_g5cd4Q_spinner {
|
|
9136
|
+
place-items: center;
|
|
9137
|
+
line-height: 0;
|
|
9138
|
+
display: inline-grid;
|
|
9139
|
+
}
|
|
9140
|
+
|
|
9141
|
+
.opus_g5cd4Q_spinner[data-size="sm"] {
|
|
9142
|
+
width: 16px;
|
|
9143
|
+
height: 16px;
|
|
9144
|
+
}
|
|
9145
|
+
|
|
9146
|
+
.opus_g5cd4Q_spinner[data-size="md"] {
|
|
9147
|
+
width: 24px;
|
|
9148
|
+
height: 24px;
|
|
9149
|
+
}
|
|
9150
|
+
|
|
9151
|
+
.opus_g5cd4Q_spinner[data-size="lg"] {
|
|
9152
|
+
width: 36px;
|
|
9153
|
+
height: 36px;
|
|
9154
|
+
}
|
|
9155
|
+
|
|
9156
|
+
.opus_g5cd4Q_ring {
|
|
9157
|
+
box-sizing: border-box;
|
|
9158
|
+
border-style: solid;
|
|
9159
|
+
border-width: 2px;
|
|
9160
|
+
border-color: color-mix(in srgb, var(--opus-accent) 28%, transparent);
|
|
9161
|
+
border-top-color: var(--opus-accent);
|
|
9162
|
+
border-radius: 50%;
|
|
9163
|
+
width: 100%;
|
|
9164
|
+
height: 100%;
|
|
9165
|
+
animation: .75s linear infinite opus_g5cd4Q_opus-spinner-rotate;
|
|
9166
|
+
}
|
|
9167
|
+
|
|
9168
|
+
.opus_g5cd4Q_spinner[data-tone="muted"] .opus_g5cd4Q_ring {
|
|
9169
|
+
border-color: color-mix(in srgb, var(--opus-muted) 28%, transparent);
|
|
9170
|
+
border-top-color: var(--opus-muted);
|
|
9171
|
+
}
|
|
9172
|
+
|
|
9173
|
+
.opus_g5cd4Q_spinner[data-tone="inverse"] .opus_g5cd4Q_ring {
|
|
9174
|
+
border-color: #fff #ffffff47 #ffffff47;
|
|
9175
|
+
}
|
|
9176
|
+
|
|
9177
|
+
@keyframes opus_g5cd4Q_opus-spinner-rotate {
|
|
9178
|
+
to {
|
|
9179
|
+
transform: rotate(360deg);
|
|
9180
|
+
}
|
|
9181
|
+
}
|
|
9182
|
+
|
|
9183
|
+
/* components/VisuallyHidden/VisuallyHidden.module.css */
|
|
9184
|
+
.opus_DIv7wy_hidden {
|
|
9185
|
+
clip: rect(0, 0, 0, 0);
|
|
9186
|
+
white-space: nowrap;
|
|
9187
|
+
border: 0;
|
|
9188
|
+
width: 1px;
|
|
9189
|
+
height: 1px;
|
|
9190
|
+
margin: -1px;
|
|
9191
|
+
padding: 0;
|
|
9192
|
+
position: absolute;
|
|
9193
|
+
overflow: hidden;
|
|
9194
|
+
}
|
|
9195
|
+
|
|
9196
|
+
/* components/FocusTrap/FocusTrap.module.css */
|
|
9197
|
+
.opus_fJckCZ_trap {
|
|
9198
|
+
display: contents;
|
|
9199
|
+
}
|
|
9200
|
+
|
|
9201
|
+
.opus_fJckCZ_trap[data-active="true"] {
|
|
9202
|
+
outline: none;
|
|
9203
|
+
}
|
|
9204
|
+
|
|
9205
|
+
/* components/KeyboardShortcut/KeyboardShortcut.module.css */
|
|
9206
|
+
.opus_pZh5vX_shortcut {
|
|
9207
|
+
color: var(--opus-muted);
|
|
9208
|
+
align-items: center;
|
|
9209
|
+
gap: 4px;
|
|
9210
|
+
font-family: inherit;
|
|
9211
|
+
font-weight: 700;
|
|
9212
|
+
display: inline-flex;
|
|
9213
|
+
}
|
|
9214
|
+
|
|
9215
|
+
.opus_pZh5vX_shortcut[data-size="sm"] .opus_pZh5vX_key {
|
|
9216
|
+
min-width: 1.35rem;
|
|
9217
|
+
min-height: 1.35rem;
|
|
9218
|
+
padding: 0 5px;
|
|
9219
|
+
font-size: .68rem;
|
|
9220
|
+
}
|
|
9221
|
+
|
|
9222
|
+
.opus_pZh5vX_shortcut[data-size="md"] .opus_pZh5vX_key {
|
|
9223
|
+
min-width: 1.55rem;
|
|
9224
|
+
min-height: 1.55rem;
|
|
9225
|
+
padding: 0 7px;
|
|
9226
|
+
font-size: .74rem;
|
|
9227
|
+
}
|
|
9228
|
+
|
|
9229
|
+
.opus_pZh5vX_key {
|
|
9230
|
+
border: 1px solid color-mix(in srgb, var(--opus-border) 85%, transparent);
|
|
9231
|
+
background: color-mix(in srgb, var(--opus-panel) 88%, transparent);
|
|
9232
|
+
box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--opus-border) 70%, transparent);
|
|
9233
|
+
color: var(--opus-text);
|
|
9234
|
+
text-transform: capitalize;
|
|
9235
|
+
border-radius: 6px;
|
|
9236
|
+
place-items: center;
|
|
9237
|
+
display: inline-grid;
|
|
9238
|
+
}
|
|
9239
|
+
|
|
9240
|
+
.opus_pZh5vX_plus {
|
|
9241
|
+
opacity: .7;
|
|
9242
|
+
margin: 0 1px;
|
|
9243
|
+
}
|
|
9244
|
+
|
|
9245
|
+
/* components/CopyButton/CopyButton.module.css */
|
|
9246
|
+
.opus_Ij6tWr_wrap {
|
|
9247
|
+
display: inline-flex;
|
|
9248
|
+
}
|
|
9249
|
+
|
|
8088
9250
|
/* components/Sidebar/Sidebar.module.css */
|
|
8089
9251
|
.opus_4Pogux_layout {
|
|
8090
9252
|
border: 1px solid var(--opus-border);
|