opus-react 0.6.7 → 0.6.9
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 +222 -197
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +68 -27
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +222 -197
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -13429,7 +13429,7 @@ button.opus_7Zs_d5_docCard:hover, .opus_7Zs_d5_docCard[data-kind="folder"]:hover
|
|
|
13429
13429
|
}
|
|
13430
13430
|
|
|
13431
13431
|
.opus_PaKREB_handle:hover, .opus_PaKREB_handle:focus-visible {
|
|
13432
|
-
background: color-mix(in srgb, var(--opus-accent)
|
|
13432
|
+
background: color-mix(in srgb, var(--opus-accent) 10%, transparent);
|
|
13433
13433
|
}
|
|
13434
13434
|
|
|
13435
13435
|
.opus_PaKREB_handle[data-background="none"]:hover, .opus_PaKREB_handle[data-background="none"]:focus-visible {
|
|
@@ -13438,52 +13438,69 @@ button.opus_7Zs_d5_docCard:hover, .opus_7Zs_d5_docCard[data-kind="folder"]:hover
|
|
|
13438
13438
|
|
|
13439
13439
|
.opus_PaKREB_handle:after {
|
|
13440
13440
|
content: "";
|
|
13441
|
-
background: color-mix(in srgb, var(--opus-accent) 32%, transparent);
|
|
13442
13441
|
border-radius: 999px;
|
|
13443
13442
|
transition: background .16s, inset .16s;
|
|
13444
13443
|
position: absolute;
|
|
13445
13444
|
}
|
|
13446
13445
|
|
|
13447
13446
|
.opus_PaKREB_handle[data-orientation="vertical"]:after {
|
|
13448
|
-
|
|
13447
|
+
background: linear-gradient(to bottom,
|
|
13448
|
+
transparent 0%,
|
|
13449
|
+
color-mix(in srgb, var(--opus-accent) 32%, transparent) 14%,
|
|
13450
|
+
color-mix(in srgb, var(--opus-accent) 32%, transparent) 86%,
|
|
13451
|
+
transparent 100%);
|
|
13452
|
+
inset: 6% 3px;
|
|
13449
13453
|
}
|
|
13450
13454
|
|
|
13451
13455
|
.opus_PaKREB_handle[data-orientation="horizontal"]:after {
|
|
13452
|
-
|
|
13456
|
+
background: linear-gradient(to right,
|
|
13457
|
+
transparent 0%,
|
|
13458
|
+
color-mix(in srgb, var(--opus-accent) 32%, transparent) 14%,
|
|
13459
|
+
color-mix(in srgb, var(--opus-accent) 32%, transparent) 86%,
|
|
13460
|
+
transparent 100%);
|
|
13461
|
+
inset: 3px 6%;
|
|
13453
13462
|
}
|
|
13454
13463
|
|
|
13455
13464
|
.opus_PaKREB_handle[data-orientation="vertical"][data-height="short"]:after {
|
|
13456
|
-
inset:
|
|
13465
|
+
inset: 18% 3px;
|
|
13457
13466
|
}
|
|
13458
13467
|
|
|
13459
13468
|
.opus_PaKREB_handle[data-orientation="vertical"][data-height="tall"]:after {
|
|
13460
|
-
inset:
|
|
13469
|
+
inset: 3% 3px;
|
|
13461
13470
|
}
|
|
13462
13471
|
|
|
13463
13472
|
.opus_PaKREB_handle[data-orientation="vertical"][data-height="full"]:after {
|
|
13464
|
-
inset:
|
|
13473
|
+
inset: 1% 3px;
|
|
13465
13474
|
}
|
|
13466
13475
|
|
|
13467
13476
|
.opus_PaKREB_handle[data-orientation="horizontal"][data-height="short"]:after {
|
|
13468
|
-
inset: 3px
|
|
13477
|
+
inset: 3px 18%;
|
|
13469
13478
|
}
|
|
13470
13479
|
|
|
13471
13480
|
.opus_PaKREB_handle[data-orientation="horizontal"][data-height="tall"]:after {
|
|
13472
|
-
inset: 3px
|
|
13481
|
+
inset: 3px 3%;
|
|
13473
13482
|
}
|
|
13474
13483
|
|
|
13475
13484
|
.opus_PaKREB_handle[data-orientation="horizontal"][data-height="full"]:after {
|
|
13476
|
-
inset: 3px
|
|
13485
|
+
inset: 3px 1%;
|
|
13477
13486
|
}
|
|
13478
13487
|
|
|
13479
13488
|
.opus_PaKREB_handle[data-orientation="vertical"]:hover:after, .opus_PaKREB_handle[data-orientation="vertical"]:focus-visible:after {
|
|
13480
|
-
background:
|
|
13481
|
-
|
|
13489
|
+
background: linear-gradient(to bottom,
|
|
13490
|
+
transparent 0%,
|
|
13491
|
+
color-mix(in srgb, var(--opus-accent) 36%, transparent) 12%,
|
|
13492
|
+
color-mix(in srgb, var(--opus-accent) 36%, transparent) 88%,
|
|
13493
|
+
transparent 100%);
|
|
13494
|
+
inset: 5% 2px;
|
|
13482
13495
|
}
|
|
13483
13496
|
|
|
13484
13497
|
.opus_PaKREB_handle[data-orientation="horizontal"]:hover:after, .opus_PaKREB_handle[data-orientation="horizontal"]:focus-visible:after {
|
|
13485
|
-
background:
|
|
13486
|
-
|
|
13498
|
+
background: linear-gradient(to right,
|
|
13499
|
+
transparent 0%,
|
|
13500
|
+
color-mix(in srgb, var(--opus-accent) 36%, transparent) 12%,
|
|
13501
|
+
color-mix(in srgb, var(--opus-accent) 36%, transparent) 88%,
|
|
13502
|
+
transparent 100%);
|
|
13503
|
+
inset: 2px 5%;
|
|
13487
13504
|
}
|
|
13488
13505
|
|
|
13489
13506
|
.opus_PaKREB_handle:focus-visible {
|
|
@@ -13531,10 +13548,10 @@ button.opus_7Zs_d5_docCard:hover, .opus_7Zs_d5_docCard[data-kind="folder"]:hover
|
|
|
13531
13548
|
}
|
|
13532
13549
|
|
|
13533
13550
|
.opus_PaKREB_handle:hover .opus_PaKREB_grip, .opus_PaKREB_handle:focus-visible .opus_PaKREB_grip {
|
|
13534
|
-
border-color: var(--opus-accent);
|
|
13535
|
-
background-color: var(--opus-accent);
|
|
13536
|
-
box-shadow: 0 1px
|
|
13537
|
-
0 0
|
|
13551
|
+
border-color: color-mix(in srgb, var(--opus-accent) 62%, #070912);
|
|
13552
|
+
background-color: color-mix(in srgb, var(--opus-accent) 58%, #070912);
|
|
13553
|
+
box-shadow: 0 1px 3px #00000038,
|
|
13554
|
+
0 0 4px color-mix(in srgb, var(--opus-accent) 6%, transparent);
|
|
13538
13555
|
}
|
|
13539
13556
|
|
|
13540
13557
|
[data-theme="light"] .opus_PaKREB_handle {
|
|
@@ -13553,8 +13570,20 @@ button.opus_7Zs_d5_docCard:hover, .opus_7Zs_d5_docCard[data-kind="folder"]:hover
|
|
|
13553
13570
|
background: color-mix(in srgb, var(--opus-text) 7%, transparent);
|
|
13554
13571
|
}
|
|
13555
13572
|
|
|
13556
|
-
[data-theme="light"] .opus_PaKREB_handle:after {
|
|
13557
|
-
background:
|
|
13573
|
+
[data-theme="light"] .opus_PaKREB_handle[data-orientation="vertical"]:after {
|
|
13574
|
+
background: linear-gradient(to bottom,
|
|
13575
|
+
transparent 0%,
|
|
13576
|
+
color-mix(in srgb, var(--opus-accent) 24%, transparent) 14%,
|
|
13577
|
+
color-mix(in srgb, var(--opus-accent) 24%, transparent) 86%,
|
|
13578
|
+
transparent 100%);
|
|
13579
|
+
}
|
|
13580
|
+
|
|
13581
|
+
[data-theme="light"] .opus_PaKREB_handle[data-orientation="horizontal"]:after {
|
|
13582
|
+
background: linear-gradient(to right,
|
|
13583
|
+
transparent 0%,
|
|
13584
|
+
color-mix(in srgb, var(--opus-accent) 24%, transparent) 14%,
|
|
13585
|
+
color-mix(in srgb, var(--opus-accent) 24%, transparent) 86%,
|
|
13586
|
+
transparent 100%);
|
|
13558
13587
|
}
|
|
13559
13588
|
|
|
13560
13589
|
[data-theme="light"] .opus_PaKREB_grip {
|
|
@@ -13569,22 +13598,34 @@ button.opus_7Zs_d5_docCard:hover, .opus_7Zs_d5_docCard[data-kind="folder"]:hover
|
|
|
13569
13598
|
}
|
|
13570
13599
|
|
|
13571
13600
|
[data-theme="light"] .opus_PaKREB_handle:hover, [data-theme="light"] .opus_PaKREB_handle:focus-visible {
|
|
13572
|
-
background: color-mix(in srgb, var(--opus-accent)
|
|
13601
|
+
background: color-mix(in srgb, var(--opus-accent) 7%, transparent);
|
|
13573
13602
|
}
|
|
13574
13603
|
|
|
13575
13604
|
[data-theme="light"] .opus_PaKREB_handle[data-background="none"]:hover, [data-theme="light"] .opus_PaKREB_handle[data-background="none"]:focus-visible {
|
|
13576
13605
|
background: none;
|
|
13577
13606
|
}
|
|
13578
13607
|
|
|
13579
|
-
[data-theme="light"] .opus_PaKREB_handle:hover:after, [data-theme="light"] .opus_PaKREB_handle:focus-visible:after {
|
|
13580
|
-
background:
|
|
13608
|
+
[data-theme="light"] .opus_PaKREB_handle[data-orientation="vertical"]:hover:after, [data-theme="light"] .opus_PaKREB_handle[data-orientation="vertical"]:focus-visible:after {
|
|
13609
|
+
background: linear-gradient(to bottom,
|
|
13610
|
+
transparent 0%,
|
|
13611
|
+
color-mix(in srgb, var(--opus-accent) 28%, transparent) 12%,
|
|
13612
|
+
color-mix(in srgb, var(--opus-accent) 28%, transparent) 88%,
|
|
13613
|
+
transparent 100%);
|
|
13614
|
+
}
|
|
13615
|
+
|
|
13616
|
+
[data-theme="light"] .opus_PaKREB_handle[data-orientation="horizontal"]:hover:after, [data-theme="light"] .opus_PaKREB_handle[data-orientation="horizontal"]:focus-visible:after {
|
|
13617
|
+
background: linear-gradient(to right,
|
|
13618
|
+
transparent 0%,
|
|
13619
|
+
color-mix(in srgb, var(--opus-accent) 28%, transparent) 12%,
|
|
13620
|
+
color-mix(in srgb, var(--opus-accent) 28%, transparent) 88%,
|
|
13621
|
+
transparent 100%);
|
|
13581
13622
|
}
|
|
13582
13623
|
|
|
13583
13624
|
[data-theme="light"] .opus_PaKREB_handle:hover .opus_PaKREB_grip, [data-theme="light"] .opus_PaKREB_handle:focus-visible .opus_PaKREB_grip {
|
|
13584
|
-
border-color: var(--opus-accent);
|
|
13585
|
-
background-color: var(--opus-accent);
|
|
13586
|
-
box-shadow: 0 1px
|
|
13587
|
-
0 0
|
|
13625
|
+
border-color: color-mix(in srgb, var(--opus-accent) 78%, #fff);
|
|
13626
|
+
background-color: color-mix(in srgb, var(--opus-accent) 70%, #fff);
|
|
13627
|
+
box-shadow: 0 1px 3px color-mix(in srgb, var(--opus-muted) 16%, transparent),
|
|
13628
|
+
0 0 4px color-mix(in srgb, var(--opus-accent) 10%, transparent);
|
|
13588
13629
|
}
|
|
13589
13630
|
|
|
13590
13631
|
/* components/Splitter/Splitter.module.css */
|