@mastra/playground-ui 30.0.2-alpha.2 → 31.0.0-alpha.3
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/CHANGELOG.md +74 -0
- package/dist/index.cjs.js +233 -75
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +201 -27
- package/dist/index.es.js +227 -70
- package/dist/index.es.js.map +1 -1
- package/dist/src/domains/logs/hooks/use-logs.d.ts +13 -1267
- package/dist/src/domains/traces/hooks/use-branch.d.ts +5 -46
- package/dist/src/domains/traces/hooks/use-span-detail.d.ts +6 -44
- package/dist/src/domains/traces/hooks/use-trace-light-spans.d.ts +5 -18
- package/dist/src/domains/traces/hooks/use-trace-spans.d.ts +5 -46
- package/dist/src/domains/traces/hooks/use-traces.d.ts +15 -1539
- package/dist/src/ds/components/ButtonsGroup/buttons-group.stories.d.ts +30 -0
- package/dist/src/ds/components/Command/command.d.ts +7 -72
- package/dist/src/ds/components/FormFieldBlocks/fields/search-field-block.d.ts +2 -1
- package/dist/src/ds/components/Input/input.d.ts +3 -3
- package/dist/src/ds/components/Input/input.stories.d.ts +4 -0
- package/dist/src/ds/components/InputGroup/input-group.d.ts +7 -2
- package/dist/src/ds/components/InputGroup/input-group.stories.d.ts +3 -0
- package/dist/src/ds/components/ListSearch/list-search.d.ts +2 -1
- package/dist/src/ds/components/Searchbar/searchbar.d.ts +4 -1
- package/dist/src/ds/components/Searchbar/searchbar.stories.d.ts +3 -0
- package/dist/src/ds/components/Textarea/textarea.d.ts +3 -3
- package/dist/src/ds/components/Textarea/textarea.stories.d.ts +1 -0
- package/dist/src/ds/primitives/form-element.d.ts +6 -4
- package/dist/src/lib/formatting.d.ts +1 -0
- package/package.json +6 -6
package/dist/index.css
CHANGED
|
@@ -296,6 +296,7 @@
|
|
|
296
296
|
--color-border1: var(--border1);
|
|
297
297
|
--color-border2: var(--border2);
|
|
298
298
|
--color-surface-overlay-soft: var(--surface-overlay-soft);
|
|
299
|
+
--color-surface-overlay-strong: var(--surface-overlay-strong);
|
|
299
300
|
--color-negative1: var(--negative1);
|
|
300
301
|
--color-notice-success: var(--notice-success);
|
|
301
302
|
--color-notice-success-fg: var(--notice-success-fg);
|
|
@@ -1062,6 +1063,11 @@
|
|
|
1062
1063
|
margin-bottom: 4vh;
|
|
1063
1064
|
}
|
|
1064
1065
|
|
|
1066
|
+
.-ml-px {
|
|
1067
|
+
margin-left: -1px;
|
|
1068
|
+
margin-left: calc(var(--spacing-px) * -1);
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1065
1071
|
.ml-0\! {
|
|
1066
1072
|
margin-left: var(--spacing-0) !important;
|
|
1067
1073
|
}
|
|
@@ -4300,6 +4306,10 @@
|
|
|
4300
4306
|
box-shadow: var(--shadow-dialog);
|
|
4301
4307
|
}
|
|
4302
4308
|
|
|
4309
|
+
.ring-accent1 {
|
|
4310
|
+
--tw-ring-color: var(--color-accent1);
|
|
4311
|
+
}
|
|
4312
|
+
|
|
4303
4313
|
.outline-hidden {
|
|
4304
4314
|
--tw-outline-style: none;
|
|
4305
4315
|
outline-style: none;
|
|
@@ -4610,6 +4620,38 @@
|
|
|
4610
4620
|
background-color: var(--color-surface5);
|
|
4611
4621
|
}
|
|
4612
4622
|
|
|
4623
|
+
.group-data-\[size\=default\]\/input-group\:h-form-default:is(:where(.group\/input-group)[data-size="default"] *) {
|
|
4624
|
+
height: var(--spacing-form-default);
|
|
4625
|
+
}
|
|
4626
|
+
|
|
4627
|
+
.group-data-\[size\=default\]\/input-group\:text-ui-md:is(:where(.group\/input-group)[data-size="default"] *) {
|
|
4628
|
+
font-size: var(--text-ui-md);
|
|
4629
|
+
}
|
|
4630
|
+
|
|
4631
|
+
.group-data-\[size\=lg\]\/input-group\:h-form-lg:is(:where(.group\/input-group)[data-size="lg"] *) {
|
|
4632
|
+
height: var(--spacing-form-lg);
|
|
4633
|
+
}
|
|
4634
|
+
|
|
4635
|
+
.group-data-\[size\=lg\]\/input-group\:text-ui-lg:is(:where(.group\/input-group)[data-size="lg"] *) {
|
|
4636
|
+
font-size: var(--text-ui-lg);
|
|
4637
|
+
}
|
|
4638
|
+
|
|
4639
|
+
.group-data-\[size\=md\]\/input-group\:h-form-md:is(:where(.group\/input-group)[data-size="md"] *) {
|
|
4640
|
+
height: var(--spacing-form-md);
|
|
4641
|
+
}
|
|
4642
|
+
|
|
4643
|
+
.group-data-\[size\=md\]\/input-group\:text-ui-md:is(:where(.group\/input-group)[data-size="md"] *) {
|
|
4644
|
+
font-size: var(--text-ui-md);
|
|
4645
|
+
}
|
|
4646
|
+
|
|
4647
|
+
.group-data-\[size\=sm\]\/input-group\:h-form-sm:is(:where(.group\/input-group)[data-size="sm"] *) {
|
|
4648
|
+
height: var(--spacing-form-sm);
|
|
4649
|
+
}
|
|
4650
|
+
|
|
4651
|
+
.group-data-\[size\=sm\]\/input-group\:text-ui-sm:is(:where(.group\/input-group)[data-size="sm"] *) {
|
|
4652
|
+
font-size: var(--text-ui-sm);
|
|
4653
|
+
}
|
|
4654
|
+
|
|
4613
4655
|
.group-data-\[variant\=line\]\/tabs-list\:border-b-2:is(:where(.group\/tabs-list)[data-variant="line"] *) {
|
|
4614
4656
|
border-bottom-style: var(--tw-border-style);
|
|
4615
4657
|
border-bottom-width: 2px;
|
|
@@ -4975,6 +5017,20 @@
|
|
|
4975
5017
|
border-color: var(--color-neutral2);
|
|
4976
5018
|
}
|
|
4977
5019
|
|
|
5020
|
+
.focus-within\:border-neutral5\/50:focus-within {
|
|
5021
|
+
border-color: var(--color-neutral5);
|
|
5022
|
+
}
|
|
5023
|
+
|
|
5024
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5025
|
+
.focus-within\:border-neutral5\/50:focus-within {
|
|
5026
|
+
border-color: color-mix(in oklab, var(--color-neutral5) 50%, transparent);
|
|
5027
|
+
}
|
|
5028
|
+
}
|
|
5029
|
+
|
|
5030
|
+
.focus-within\:bg-surface-overlay-strong:focus-within {
|
|
5031
|
+
background-color: var(--color-surface-overlay-strong);
|
|
5032
|
+
}
|
|
5033
|
+
|
|
4978
5034
|
.focus-within\:bg-surface4:focus-within {
|
|
4979
5035
|
background-color: var(--color-surface4);
|
|
4980
5036
|
}
|
|
@@ -5117,6 +5173,10 @@
|
|
|
5117
5173
|
background-color: var(--sidebar-nav-hover);
|
|
5118
5174
|
}
|
|
5119
5175
|
|
|
5176
|
+
.hover\:bg-surface-overlay-strong:hover {
|
|
5177
|
+
background-color: var(--color-surface-overlay-strong);
|
|
5178
|
+
}
|
|
5179
|
+
|
|
5120
5180
|
.hover\:bg-surface2:hover {
|
|
5121
5181
|
background-color: var(--color-surface2);
|
|
5122
5182
|
}
|
|
@@ -5227,21 +5287,6 @@
|
|
|
5227
5287
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5228
5288
|
}
|
|
5229
5289
|
|
|
5230
|
-
.focus\:shadow-glow-accent2:focus {
|
|
5231
|
-
--tw-shadow: 0 0 20px var(--tw-shadow-color, oklch(63.7% .237 25.331 / .25));
|
|
5232
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5233
|
-
}
|
|
5234
|
-
|
|
5235
|
-
.focus\:shadow-none:focus {
|
|
5236
|
-
--tw-shadow: 0 0 #0000;
|
|
5237
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5238
|
-
}
|
|
5239
|
-
|
|
5240
|
-
.focus\:ring-0:focus {
|
|
5241
|
-
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
5242
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5243
|
-
}
|
|
5244
|
-
|
|
5245
5290
|
.focus\:ring-1:focus {
|
|
5246
5291
|
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
5247
5292
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -5257,10 +5302,6 @@
|
|
|
5257
5302
|
}
|
|
5258
5303
|
}
|
|
5259
5304
|
|
|
5260
|
-
.focus\:ring-error:focus {
|
|
5261
|
-
--tw-ring-color: var(--color-error);
|
|
5262
|
-
}
|
|
5263
|
-
|
|
5264
5305
|
.focus\:outline-hidden:focus {
|
|
5265
5306
|
--tw-outline-style: none;
|
|
5266
5307
|
outline-style: none;
|
|
@@ -5307,10 +5348,28 @@
|
|
|
5307
5348
|
border-color: var(--color-border2);
|
|
5308
5349
|
}
|
|
5309
5350
|
|
|
5351
|
+
.focus-visible\:border-error:focus-visible {
|
|
5352
|
+
border-color: var(--color-error);
|
|
5353
|
+
}
|
|
5354
|
+
|
|
5355
|
+
.focus-visible\:border-neutral5\/50:focus-visible {
|
|
5356
|
+
border-color: var(--color-neutral5);
|
|
5357
|
+
}
|
|
5358
|
+
|
|
5359
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5360
|
+
.focus-visible\:border-neutral5\/50:focus-visible {
|
|
5361
|
+
border-color: color-mix(in oklab, var(--color-neutral5) 50%, transparent);
|
|
5362
|
+
}
|
|
5363
|
+
}
|
|
5364
|
+
|
|
5310
5365
|
.focus-visible\:border-transparent:focus-visible {
|
|
5311
5366
|
border-color: #0000;
|
|
5312
5367
|
}
|
|
5313
5368
|
|
|
5369
|
+
.focus-visible\:bg-surface-overlay-strong:focus-visible {
|
|
5370
|
+
background-color: var(--color-surface-overlay-strong);
|
|
5371
|
+
}
|
|
5372
|
+
|
|
5314
5373
|
.focus-visible\:bg-surface3:focus-visible {
|
|
5315
5374
|
background-color: var(--color-surface3);
|
|
5316
5375
|
}
|
|
@@ -5490,19 +5549,38 @@
|
|
|
5490
5549
|
border-color: var(--color-error);
|
|
5491
5550
|
}
|
|
5492
5551
|
|
|
5493
|
-
.has-\[\
|
|
5494
|
-
|
|
5495
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5552
|
+
.has-\[textarea\]\:h-auto:has(:is(textarea)) {
|
|
5553
|
+
height: auto;
|
|
5496
5554
|
}
|
|
5497
5555
|
|
|
5498
|
-
.has-\[\
|
|
5499
|
-
|
|
5556
|
+
.has-\[textarea\]\:rounded-xl:has(:is(textarea)) {
|
|
5557
|
+
border-radius: var(--radius-xl);
|
|
5558
|
+
}
|
|
5559
|
+
|
|
5560
|
+
.has-\[\>\[data-align\=block-end\]\]\:h-auto:has( > [data-align="block-end"]) {
|
|
5561
|
+
height: auto;
|
|
5500
5562
|
}
|
|
5501
5563
|
|
|
5502
|
-
.has-\[\>\[data-align\=block-end\]\]\:flex-col:has( > [data-align="block-end"])
|
|
5564
|
+
.has-\[\>\[data-align\=block-end\]\]\:flex-col:has( > [data-align="block-end"]) {
|
|
5503
5565
|
flex-direction: column;
|
|
5504
5566
|
}
|
|
5505
5567
|
|
|
5568
|
+
.has-\[\>\[data-align\=block-end\]\]\:rounded-xl:has( > [data-align="block-end"]) {
|
|
5569
|
+
border-radius: var(--radius-xl);
|
|
5570
|
+
}
|
|
5571
|
+
|
|
5572
|
+
.has-\[\>\[data-align\=block-start\]\]\:h-auto:has( > [data-align="block-start"]) {
|
|
5573
|
+
height: auto;
|
|
5574
|
+
}
|
|
5575
|
+
|
|
5576
|
+
.has-\[\>\[data-align\=block-start\]\]\:flex-col:has( > [data-align="block-start"]) {
|
|
5577
|
+
flex-direction: column;
|
|
5578
|
+
}
|
|
5579
|
+
|
|
5580
|
+
.has-\[\>\[data-align\=block-start\]\]\:rounded-xl:has( > [data-align="block-start"]) {
|
|
5581
|
+
border-radius: var(--radius-xl);
|
|
5582
|
+
}
|
|
5583
|
+
|
|
5506
5584
|
.has-\[\>button\]\:pr-1:has( > button) {
|
|
5507
5585
|
padding-right: var(--spacing-1);
|
|
5508
5586
|
}
|
|
@@ -6560,6 +6638,26 @@
|
|
|
6560
6638
|
border-top-width: 1px;
|
|
6561
6639
|
}
|
|
6562
6640
|
|
|
6641
|
+
.\[\&\:\:-webkit-inner-spin-button\]\:m-0::-webkit-inner-spin-button {
|
|
6642
|
+
margin: var(--spacing-0);
|
|
6643
|
+
}
|
|
6644
|
+
|
|
6645
|
+
.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button {
|
|
6646
|
+
appearance: none;
|
|
6647
|
+
}
|
|
6648
|
+
|
|
6649
|
+
.\[\&\:\:-webkit-outer-spin-button\]\:m-0::-webkit-outer-spin-button {
|
|
6650
|
+
margin: var(--spacing-0);
|
|
6651
|
+
}
|
|
6652
|
+
|
|
6653
|
+
.\[\&\:\:-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button {
|
|
6654
|
+
appearance: none;
|
|
6655
|
+
}
|
|
6656
|
+
|
|
6657
|
+
.\[\&\:\:-webkit-search-cancel-button\]\:appearance-none::-webkit-search-cancel-button {
|
|
6658
|
+
appearance: none;
|
|
6659
|
+
}
|
|
6660
|
+
|
|
6563
6661
|
.\[\&\:after\]\:absolute:after {
|
|
6564
6662
|
position: absolute;
|
|
6565
6663
|
}
|
|
@@ -6691,6 +6789,10 @@
|
|
|
6691
6789
|
color: var(--color-black);
|
|
6692
6790
|
}
|
|
6693
6791
|
|
|
6792
|
+
.\[\&\:hover\:not\(\:focus-within\)\]\:border-border2:hover:not(:focus-within) {
|
|
6793
|
+
border-color: var(--color-border2);
|
|
6794
|
+
}
|
|
6795
|
+
|
|
6694
6796
|
.\[\&\:hover\>div\]\:bg-surface5:hover > div {
|
|
6695
6797
|
background-color: var(--color-surface5);
|
|
6696
6798
|
}
|
|
@@ -6769,12 +6871,38 @@
|
|
|
6769
6871
|
z-index: 10;
|
|
6770
6872
|
}
|
|
6771
6873
|
|
|
6874
|
+
.\[\&\>\*\:has\(\+_\*\:not\(\[aria-hidden\=true\]\)\)\]\:rounded-r-none > :has( + :not([aria-hidden="true"])) {
|
|
6875
|
+
border-top-right-radius: var(--radius-none);
|
|
6876
|
+
border-bottom-right-radius: var(--radius-none);
|
|
6877
|
+
}
|
|
6878
|
+
|
|
6879
|
+
.\[\&\>\*\:has\(\:focus-visible\)\]\:relative > :has(:focus-visible) {
|
|
6880
|
+
position: relative;
|
|
6881
|
+
}
|
|
6882
|
+
|
|
6883
|
+
.\[\&\>\*\:has\(\:focus-visible\)\]\:z-10 > :has(:focus-visible) {
|
|
6884
|
+
z-index: 10;
|
|
6885
|
+
}
|
|
6886
|
+
|
|
6887
|
+
.\[\&\>\*\:has\(\~_\*\:not\(\[aria-hidden\=true\]\)\:not\(\[data-base-ui-focus-guard\]\)\:not\(\[aria-owns\]\)\)\]\:rounded-r-none > :has( ~ :not([aria-hidden="true"]):not([data-base-ui-focus-guard]):not([aria-owns])) {
|
|
6888
|
+
border-top-right-radius: var(--radius-none);
|
|
6889
|
+
border-bottom-right-radius: var(--radius-none);
|
|
6890
|
+
}
|
|
6891
|
+
|
|
6892
|
+
.\[\&\>\*\:hover\]\:relative > :hover {
|
|
6893
|
+
position: relative;
|
|
6894
|
+
}
|
|
6895
|
+
|
|
6896
|
+
.\[\&\>\*\:hover\]\:z-10 > :hover {
|
|
6897
|
+
z-index: 10;
|
|
6898
|
+
}
|
|
6899
|
+
|
|
6772
6900
|
.\[\&\>\*\:not\(\:first-child\)\]\:rounded-t-none > :not(:first-child) {
|
|
6773
6901
|
border-top-left-radius: var(--radius-none);
|
|
6774
6902
|
border-top-right-radius: var(--radius-none);
|
|
6775
6903
|
}
|
|
6776
6904
|
|
|
6777
|
-
.\[\&\>\*\:not\(\:first-child\)\]\:rounded-l-none > :not(:first-child) {
|
|
6905
|
+
.\[\&\>\*\:not\(\:first-child\)\]\:rounded-l-none > :not(:first-child), .\[\&\>\*\:not\(\:first-child\)\:not\(\[aria-hidden\=true\]\)\:not\(\[data-base-ui-focus-guard\]\)\:not\(\[aria-owns\]\)\]\:rounded-l-none > :not(:first-child):not([aria-hidden="true"]):not([data-base-ui-focus-guard]):not([aria-owns]) {
|
|
6778
6906
|
border-top-left-radius: var(--radius-none);
|
|
6779
6907
|
border-bottom-left-radius: var(--radius-none);
|
|
6780
6908
|
}
|
|
@@ -6789,16 +6917,36 @@
|
|
|
6789
6917
|
border-bottom-left-radius: var(--radius-none);
|
|
6790
6918
|
}
|
|
6791
6919
|
|
|
6920
|
+
.\[\&\>\*\:not\(\[data-slot\=buttons-group-separator\]\)\]\:transition-\[color\,background-color\] > :not([data-slot="buttons-group-separator"]) {
|
|
6921
|
+
transition-property: color, background-color;
|
|
6922
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
6923
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
6924
|
+
}
|
|
6925
|
+
|
|
6792
6926
|
.\[\&\>\*\:not\(\[data-slot\=buttons-group-separator\]\)\:not\(\:first-child\)\]\:-mt-px > :not([data-slot="buttons-group-separator"]):not(:first-child) {
|
|
6793
6927
|
margin-top: -1px;
|
|
6794
6928
|
margin-top: calc(var(--spacing-px) * -1);
|
|
6795
6929
|
}
|
|
6796
6930
|
|
|
6797
|
-
.\[\&\>\*\:not\(\[data-slot\=buttons-group-separator\]\)\:not\(
|
|
6931
|
+
.\[\&\>\*\:not\(\[data-slot\=buttons-group-separator\]\)\:not\(\[aria-hidden\=true\]\)\]\:transition-\[color\,background-color\] > :not([data-slot="buttons-group-separator"]):not([aria-hidden="true"]) {
|
|
6932
|
+
transition-property: color, background-color;
|
|
6933
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
6934
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
6935
|
+
}
|
|
6936
|
+
|
|
6937
|
+
.\[\&\>\*\:not\(\[data-slot\=buttons-group-separator\]\)\:not\(\[aria-hidden\=true\]\)\:not\(\[data-base-ui-focus-guard\]\)\:not\(\[aria-owns\]\)\:not\(\:first-child\)\]\:-ml-px > :not([data-slot="buttons-group-separator"]):not([aria-hidden="true"]):not([data-base-ui-focus-guard]):not([aria-owns]):not(:first-child) {
|
|
6798
6938
|
margin-left: -1px;
|
|
6799
6939
|
margin-left: calc(var(--spacing-px) * -1);
|
|
6800
6940
|
}
|
|
6801
6941
|
|
|
6942
|
+
.\[\&\>\*\:not\(\[data-slot\=buttons-group-separator\]\)\:not\(\[data-slot\=buttons-group-text\]\)\:not\(\[data-variant\=default\]\)\:not\(\[data-variant\=primary\]\)\:not\(\:first-child\)\:not\(\:hover\)\:not\(\:focus-visible\)\:not\(\:has\(\:focus-visible\)\)\]\:border-t-transparent > :not([data-slot="buttons-group-separator"]):not([data-slot="buttons-group-text"]):not([data-variant="default"]):not([data-variant="primary"]):not(:first-child):not(:hover):not(:focus-visible):not(:has(:focus-visible)) {
|
|
6943
|
+
border-top-color: #0000;
|
|
6944
|
+
}
|
|
6945
|
+
|
|
6946
|
+
.\[\&\>\*\:not\(\[data-slot\=buttons-group-separator\]\)\:not\(\[data-slot\=buttons-group-text\]\)\:not\(\[data-variant\=default\]\)\:not\(\[data-variant\=primary\]\)\:not\(\[aria-hidden\=true\]\)\:not\(\[data-base-ui-focus-guard\]\)\:not\(\[aria-owns\]\)\:not\(\:first-child\)\:not\(\:hover\)\:not\(\:focus-visible\)\:not\(\:has\(\:focus-visible\)\)\]\:border-l-transparent > :not([data-slot="buttons-group-separator"]):not([data-slot="buttons-group-text"]):not([data-variant="default"]):not([data-variant="primary"]):not([aria-hidden="true"]):not([data-base-ui-focus-guard]):not([aria-owns]):not(:first-child):not(:hover):not(:focus-visible):not(:has(:focus-visible)) {
|
|
6947
|
+
border-left-color: #0000;
|
|
6948
|
+
}
|
|
6949
|
+
|
|
6802
6950
|
.\[\&\>\.absolute\]\:hidden > .absolute {
|
|
6803
6951
|
display: none;
|
|
6804
6952
|
}
|
|
@@ -6845,6 +6993,24 @@
|
|
|
6845
6993
|
padding-left: var(--spacing-0);
|
|
6846
6994
|
}
|
|
6847
6995
|
|
|
6996
|
+
.\[\&\>\[data-slot\=select-trigger\]\]\:w-fit > [data-slot="select-trigger"] {
|
|
6997
|
+
width: fit-content;
|
|
6998
|
+
}
|
|
6999
|
+
|
|
7000
|
+
.\[\&\>\[data-slot\=select-trigger\]\]\:flex-none > [data-slot="select-trigger"] {
|
|
7001
|
+
flex: none;
|
|
7002
|
+
}
|
|
7003
|
+
|
|
7004
|
+
.\[\&\>\[data-variant\=primary\]\:not\(\:first-child\)\]\:shadow-\[inset_0_1px_0_0_var\(--color-border1\)\] > [data-variant="primary"]:not(:first-child) {
|
|
7005
|
+
--tw-shadow: inset 0 1px 0 0 var(--tw-shadow-color, var(--color-border1));
|
|
7006
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
7007
|
+
}
|
|
7008
|
+
|
|
7009
|
+
.\[\&\>\[data-variant\=primary\]\:not\(\[aria-hidden\=true\]\)\:not\(\:first-child\)\]\:shadow-\[inset_1px_0_0_0_var\(--color-border1\)\] > [data-variant="primary"]:not([aria-hidden="true"]):not(:first-child) {
|
|
7010
|
+
--tw-shadow: inset 1px 0 0 0 var(--tw-shadow-color, var(--color-border1));
|
|
7011
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
7012
|
+
}
|
|
7013
|
+
|
|
6848
7014
|
.\[\&\>a\]\:flex > a {
|
|
6849
7015
|
display: flex;
|
|
6850
7016
|
}
|
|
@@ -7006,6 +7172,10 @@
|
|
|
7006
7172
|
color: var(--color-neutral5);
|
|
7007
7173
|
}
|
|
7008
7174
|
|
|
7175
|
+
.\[\&\>input\]\:flex-1 > input {
|
|
7176
|
+
flex: 1;
|
|
7177
|
+
}
|
|
7178
|
+
|
|
7009
7179
|
.\[\&\>label\]\:absolute > label {
|
|
7010
7180
|
position: absolute;
|
|
7011
7181
|
}
|
|
@@ -7289,6 +7459,10 @@
|
|
|
7289
7459
|
rotate: 90deg;
|
|
7290
7460
|
}
|
|
7291
7461
|
|
|
7462
|
+
.\[\&\[type\=number\]\]\:\[appearance\:textfield\][type="number"] {
|
|
7463
|
+
appearance: textfield;
|
|
7464
|
+
}
|
|
7465
|
+
|
|
7292
7466
|
.data-list-row:focus-visible + .\[\.data-list-row\:focus-visible\+\&\]\:border-t-transparent, .data-list-row:hover + .\[\.data-list-row\:hover\+\&\]\:border-t-transparent, .data-list-subheader + .\[\.data-list-subheader\+\&\]\:border-t-transparent {
|
|
7293
7467
|
border-top-color: #0000;
|
|
7294
7468
|
}
|