opus-react 0.2.33 → 0.2.34
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 +183 -135
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +105 -71
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +183 -135
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -14129,9 +14129,7 @@
|
|
|
14129
14129
|
|
|
14130
14130
|
/* components/Sidebar/Sidebar.module.css */
|
|
14131
14131
|
.opus_4Pogux_layout {
|
|
14132
|
-
|
|
14133
|
-
border-radius: var(--opus-input-radius-large);
|
|
14134
|
-
background: color-mix(in srgb, var(--opus-panel) 88%, transparent);
|
|
14132
|
+
background: none;
|
|
14135
14133
|
width: 100%;
|
|
14136
14134
|
min-height: 280px;
|
|
14137
14135
|
display: grid;
|
|
@@ -14139,11 +14137,11 @@
|
|
|
14139
14137
|
}
|
|
14140
14138
|
|
|
14141
14139
|
.opus_4Pogux_layout[data-side="left"] {
|
|
14142
|
-
grid-template-columns: minmax(0,
|
|
14140
|
+
grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
|
|
14143
14141
|
}
|
|
14144
14142
|
|
|
14145
14143
|
.opus_4Pogux_layout[data-side="right"] {
|
|
14146
|
-
grid-template-columns: minmax(0, 1fr) minmax(0,
|
|
14144
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 240px);
|
|
14147
14145
|
}
|
|
14148
14146
|
|
|
14149
14147
|
.opus_4Pogux_layout[data-collapsed="true"][data-side="left"] {
|
|
@@ -14155,16 +14153,18 @@
|
|
|
14155
14153
|
}
|
|
14156
14154
|
|
|
14157
14155
|
.opus_4Pogux_sidebar {
|
|
14158
|
-
|
|
14159
|
-
|
|
14160
|
-
|
|
14156
|
+
--sidebar-pad: 14px;
|
|
14157
|
+
--sidebar-gap: 4px;
|
|
14158
|
+
--sidebar-row-pad-block: 8px;
|
|
14159
|
+
--sidebar-row-pad-inline: 10px;
|
|
14160
|
+
background: color-mix(in srgb, var(--opus-panel) 90%, transparent);
|
|
14161
|
+
min-width: 0;
|
|
14161
14162
|
min-height: 0;
|
|
14162
|
-
|
|
14163
|
-
|
|
14164
|
-
|
|
14165
|
-
|
|
14166
|
-
|
|
14167
|
-
border-inline-start: 1px solid var(--opus-border);
|
|
14163
|
+
color: var(--opus-text);
|
|
14164
|
+
flex-direction: column;
|
|
14165
|
+
transition: background .22s, color .22s;
|
|
14166
|
+
display: flex;
|
|
14167
|
+
overflow: hidden;
|
|
14168
14168
|
}
|
|
14169
14169
|
|
|
14170
14170
|
.opus_4Pogux_sidebar[data-collapsed="true"] {
|
|
@@ -14178,32 +14178,20 @@
|
|
|
14178
14178
|
--sidebar-row-pad-inline: 8px;
|
|
14179
14179
|
}
|
|
14180
14180
|
|
|
14181
|
-
.opus_4Pogux_sidebar[data-density="comfortable"] {
|
|
14182
|
-
--sidebar-pad: 14px;
|
|
14183
|
-
--sidebar-gap: 4px;
|
|
14184
|
-
--sidebar-row-pad-block: 8px;
|
|
14185
|
-
--sidebar-row-pad-inline: 10px;
|
|
14186
|
-
}
|
|
14187
|
-
|
|
14188
14181
|
.opus_4Pogux_header, .opus_4Pogux_footer, .opus_4Pogux_body {
|
|
14189
14182
|
min-width: 0;
|
|
14190
14183
|
}
|
|
14191
14184
|
|
|
14192
|
-
.opus_4Pogux_header, .opus_4Pogux_footer {
|
|
14193
|
-
padding: var(--sidebar-pad);
|
|
14194
|
-
}
|
|
14195
|
-
|
|
14196
14185
|
.opus_4Pogux_header {
|
|
14197
|
-
|
|
14186
|
+
padding: 18px var(--sidebar-pad) 12px;
|
|
14187
|
+
background: color-mix(in srgb, var(--opus-panel) 90%, transparent);
|
|
14188
|
+
flex-shrink: 0;
|
|
14198
14189
|
}
|
|
14199
14190
|
|
|
14200
14191
|
.opus_4Pogux_footer {
|
|
14201
|
-
|
|
14202
|
-
padding: var(--sidebar-pad)
|
|
14203
|
-
var(--sidebar-pad)
|
|
14204
|
-
var(--sidebar-pad)
|
|
14205
|
-
calc(var(--sidebar-pad) + var(--sidebar-row-pad-inline));
|
|
14192
|
+
padding: 12px var(--sidebar-pad) 18px;
|
|
14206
14193
|
color: var(--opus-muted);
|
|
14194
|
+
flex-shrink: 0;
|
|
14207
14195
|
font-size: .78rem;
|
|
14208
14196
|
line-height: 1.4;
|
|
14209
14197
|
}
|
|
@@ -14216,25 +14204,26 @@
|
|
|
14216
14204
|
}
|
|
14217
14205
|
|
|
14218
14206
|
.opus_4Pogux_headerTitle {
|
|
14219
|
-
|
|
14220
|
-
|
|
14221
|
-
letter-spacing: .04em;
|
|
14207
|
+
color: var(--opus-accent);
|
|
14208
|
+
letter-spacing: .12em;
|
|
14222
14209
|
text-transform: uppercase;
|
|
14223
14210
|
margin: 0;
|
|
14224
|
-
font-size: .
|
|
14225
|
-
font-weight:
|
|
14211
|
+
font-size: .78rem;
|
|
14212
|
+
font-weight: 700;
|
|
14213
|
+
line-height: 1;
|
|
14226
14214
|
}
|
|
14227
14215
|
|
|
14228
14216
|
.opus_4Pogux_body {
|
|
14229
|
-
|
|
14230
|
-
|
|
14217
|
+
min-height: 0;
|
|
14218
|
+
padding: 12px var(--sidebar-pad) 18px;
|
|
14219
|
+
flex: 1;
|
|
14220
|
+
overflow: hidden auto;
|
|
14231
14221
|
}
|
|
14232
14222
|
|
|
14233
14223
|
.opus_4Pogux_main {
|
|
14234
14224
|
min-width: 0;
|
|
14235
14225
|
color: var(--opus-muted);
|
|
14236
|
-
background:
|
|
14237
|
-
color-mix(in srgb, var(--opus-panel) 82%, transparent);
|
|
14226
|
+
background: none;
|
|
14238
14227
|
place-items: center;
|
|
14239
14228
|
padding: 24px;
|
|
14240
14229
|
font-size: .88rem;
|
|
@@ -14242,7 +14231,9 @@
|
|
|
14242
14231
|
}
|
|
14243
14232
|
|
|
14244
14233
|
.opus_4Pogux_nav {
|
|
14234
|
+
align-content: start;
|
|
14245
14235
|
gap: var(--sidebar-gap);
|
|
14236
|
+
min-height: 0;
|
|
14246
14237
|
display: grid;
|
|
14247
14238
|
}
|
|
14248
14239
|
|
|
@@ -14251,31 +14242,52 @@
|
|
|
14251
14242
|
padding: var(--sidebar-row-pad-block) var(--sidebar-row-pad-inline);
|
|
14252
14243
|
border-radius: var(--opus-input-radius);
|
|
14253
14244
|
color: var(--opus-muted);
|
|
14245
|
+
font: inherit;
|
|
14254
14246
|
text-align: left;
|
|
14255
14247
|
cursor: pointer;
|
|
14256
14248
|
background: none;
|
|
14257
|
-
border:
|
|
14258
|
-
|
|
14249
|
+
border: 1px solid #0000;
|
|
14250
|
+
align-items: center;
|
|
14251
|
+
gap: 8px;
|
|
14252
|
+
font-size: .84rem;
|
|
14259
14253
|
font-weight: 600;
|
|
14260
14254
|
line-height: 1.3;
|
|
14261
14255
|
text-decoration: none;
|
|
14262
|
-
transition: background .16s, color .16s;
|
|
14263
|
-
display:
|
|
14256
|
+
transition: background .16s, border-color .16s, color .16s;
|
|
14257
|
+
display: inline-flex;
|
|
14264
14258
|
}
|
|
14265
14259
|
|
|
14266
14260
|
.opus_4Pogux_sidebar[data-collapsed="true"] .opus_4Pogux_link {
|
|
14267
|
-
|
|
14261
|
+
justify-content: center;
|
|
14268
14262
|
padding-inline: 8px;
|
|
14269
14263
|
}
|
|
14270
14264
|
|
|
14271
14265
|
.opus_4Pogux_link:hover {
|
|
14272
|
-
|
|
14266
|
+
border-color: var(--opus-border);
|
|
14267
|
+
background: color-mix(in srgb, var(--opus-accent-soft) 70%, transparent);
|
|
14273
14268
|
color: var(--opus-text);
|
|
14274
14269
|
}
|
|
14275
14270
|
|
|
14276
14271
|
.opus_4Pogux_linkActive {
|
|
14277
|
-
|
|
14278
|
-
|
|
14272
|
+
border-color: color-mix(in srgb, var(--opus-accent) 45%, transparent);
|
|
14273
|
+
background: var(--opus-accent-soft);
|
|
14274
|
+
color: var(--opus-accent);
|
|
14275
|
+
}
|
|
14276
|
+
|
|
14277
|
+
.opus_4Pogux_icon {
|
|
14278
|
+
width: 14px;
|
|
14279
|
+
color: inherit;
|
|
14280
|
+
flex-shrink: 0;
|
|
14281
|
+
justify-content: center;
|
|
14282
|
+
align-items: center;
|
|
14283
|
+
line-height: 1;
|
|
14284
|
+
display: inline-flex;
|
|
14285
|
+
}
|
|
14286
|
+
|
|
14287
|
+
.opus_4Pogux_icon svg {
|
|
14288
|
+
width: 1em;
|
|
14289
|
+
height: 1em;
|
|
14290
|
+
display: block;
|
|
14279
14291
|
}
|
|
14280
14292
|
|
|
14281
14293
|
.opus_4Pogux_group {
|
|
@@ -14284,36 +14296,55 @@
|
|
|
14284
14296
|
}
|
|
14285
14297
|
|
|
14286
14298
|
.opus_4Pogux_groupHeader {
|
|
14287
|
-
padding: var(--sidebar-row-pad-block) var(--sidebar-row-pad-inline);
|
|
14288
|
-
justify-content: space-between;
|
|
14289
14299
|
align-items: center;
|
|
14290
|
-
gap:
|
|
14300
|
+
gap: 4px;
|
|
14291
14301
|
display: flex;
|
|
14292
14302
|
}
|
|
14293
14303
|
|
|
14294
14304
|
.opus_4Pogux_groupLabel {
|
|
14295
|
-
|
|
14296
|
-
|
|
14297
|
-
|
|
14305
|
+
min-width: 0;
|
|
14306
|
+
padding: var(--sidebar-row-pad-block) var(--sidebar-row-pad-inline);
|
|
14307
|
+
border-radius: var(--opus-input-radius);
|
|
14308
|
+
color: var(--opus-accent);
|
|
14309
|
+
letter-spacing: .04em;
|
|
14310
|
+
border: 1px solid #0000;
|
|
14311
|
+
flex: 1;
|
|
14312
|
+
align-items: center;
|
|
14313
|
+
gap: 8px;
|
|
14314
|
+
font-size: .84rem;
|
|
14315
|
+
font-weight: 700;
|
|
14316
|
+
line-height: 1.3;
|
|
14317
|
+
display: inline-flex;
|
|
14298
14318
|
}
|
|
14299
14319
|
|
|
14300
14320
|
.opus_4Pogux_groupToggle {
|
|
14301
|
-
border-radius: var(--opus-input-radius
|
|
14321
|
+
border-radius: var(--opus-input-radius);
|
|
14322
|
+
width: 32px;
|
|
14323
|
+
height: 32px;
|
|
14324
|
+
color: var(--opus-muted);
|
|
14302
14325
|
cursor: pointer;
|
|
14303
14326
|
background: none;
|
|
14304
|
-
border:
|
|
14305
|
-
|
|
14306
|
-
|
|
14307
|
-
|
|
14327
|
+
border: 1px solid #0000;
|
|
14328
|
+
flex-shrink: 0;
|
|
14329
|
+
justify-content: center;
|
|
14330
|
+
align-items: center;
|
|
14308
14331
|
padding: 0;
|
|
14309
|
-
|
|
14332
|
+
transition: background .16s, border-color .16s;
|
|
14333
|
+
display: inline-flex;
|
|
14334
|
+
}
|
|
14335
|
+
|
|
14336
|
+
.opus_4Pogux_groupToggle:hover {
|
|
14337
|
+
border-color: var(--opus-border);
|
|
14338
|
+
background: color-mix(in srgb, var(--opus-accent-soft) 50%, transparent);
|
|
14310
14339
|
}
|
|
14311
14340
|
|
|
14312
14341
|
.opus_4Pogux_groupChevron, .opus_4Pogux_groupChevronOpen {
|
|
14313
|
-
border-
|
|
14314
|
-
border-
|
|
14342
|
+
border-bottom: 1.5px solid;
|
|
14343
|
+
border-right: 1.5px solid;
|
|
14344
|
+
flex-shrink: 0;
|
|
14315
14345
|
width: 7px;
|
|
14316
14346
|
height: 7px;
|
|
14347
|
+
margin-top: 1px;
|
|
14317
14348
|
transition: transform .16s;
|
|
14318
14349
|
transform: rotate(-45deg);
|
|
14319
14350
|
}
|
|
@@ -14324,7 +14355,7 @@
|
|
|
14324
14355
|
|
|
14325
14356
|
.opus_4Pogux_groupItemsWrap {
|
|
14326
14357
|
grid-template-rows: 0fr;
|
|
14327
|
-
transition: grid-template-rows .
|
|
14358
|
+
transition: grid-template-rows .24s;
|
|
14328
14359
|
display: grid;
|
|
14329
14360
|
}
|
|
14330
14361
|
|
|
@@ -14333,13 +14364,13 @@
|
|
|
14333
14364
|
}
|
|
14334
14365
|
|
|
14335
14366
|
.opus_4Pogux_groupItems {
|
|
14336
|
-
gap: var(--sidebar-gap);
|
|
14337
|
-
min-height: 0;
|
|
14338
|
-
margin-left: var(--sidebar-row-pad-inline);
|
|
14339
|
-
padding-left: calc(var(--sidebar-row-pad-inline) + 6px);
|
|
14340
14367
|
opacity: 0;
|
|
14341
14368
|
border-left: 1px solid #0000;
|
|
14342
|
-
|
|
14369
|
+
gap: 2px;
|
|
14370
|
+
min-height: 0;
|
|
14371
|
+
margin-left: 10px;
|
|
14372
|
+
padding-left: 10px;
|
|
14373
|
+
transition: opacity .2s, border-color .24s;
|
|
14343
14374
|
display: grid;
|
|
14344
14375
|
overflow: hidden;
|
|
14345
14376
|
}
|
|
@@ -14366,13 +14397,16 @@
|
|
|
14366
14397
|
}
|
|
14367
14398
|
|
|
14368
14399
|
@media (width <= 640px) {
|
|
14369
|
-
.opus_4Pogux_layout {
|
|
14400
|
+
.opus_4Pogux_layout, .opus_4Pogux_layout[data-side="left"], .opus_4Pogux_layout[data-side="right"] {
|
|
14370
14401
|
grid-template-columns: minmax(0, 1fr);
|
|
14371
14402
|
}
|
|
14372
14403
|
|
|
14404
|
+
.opus_4Pogux_layout[data-side="right"] .opus_4Pogux_sidebar {
|
|
14405
|
+
grid-row: 1;
|
|
14406
|
+
}
|
|
14407
|
+
|
|
14373
14408
|
.opus_4Pogux_sidebar {
|
|
14374
|
-
|
|
14375
|
-
border-bottom: 1px solid var(--opus-border);
|
|
14409
|
+
max-height: 42vh;
|
|
14376
14410
|
}
|
|
14377
14411
|
}
|
|
14378
14412
|
|