@accelint/design-toolkit 1.0.0 → 2.0.0
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/components/accordion/index.d.ts +2 -2
- package/dist/components/accordion/index.js.map +1 -1
- package/dist/components/avatar/index.d.ts +4 -4
- package/dist/components/badge/index.d.ts +2 -2
- package/dist/components/box/index.d.ts +3 -3
- package/dist/components/checkbox/index.d.ts +2 -2
- package/dist/components/chip/index.d.ts +2 -2
- package/dist/components/color-picker/index.d.ts +21 -0
- package/dist/components/color-picker/index.js +2 -0
- package/dist/components/color-picker/index.js.map +1 -0
- package/dist/components/combobox/index.d.ts +41 -0
- package/dist/components/combobox/index.js +2 -0
- package/dist/components/combobox/index.js.map +1 -0
- package/dist/components/date-field/index.d.ts +28 -0
- package/dist/components/date-field/index.js +2 -0
- package/dist/components/date-field/index.js.map +1 -0
- package/dist/components/dialog/index.d.ts +40 -0
- package/dist/components/dialog/index.js +2 -0
- package/dist/components/dialog/index.js.map +1 -0
- package/dist/components/icon/index.js +1 -1
- package/dist/components/icon/index.js.map +1 -1
- package/dist/components/query-builder/action-element.d.ts +6 -0
- package/dist/components/query-builder/action-element.js +2 -0
- package/dist/components/query-builder/action-element.js.map +1 -0
- package/dist/components/query-builder/constants.d.ts +3 -0
- package/dist/components/query-builder/constants.js +2 -0
- package/dist/components/query-builder/constants.js.map +1 -0
- package/dist/components/query-builder/example-configuration.d.ts +30 -0
- package/dist/components/query-builder/example-configuration.js +2 -0
- package/dist/components/query-builder/example-configuration.js.map +1 -0
- package/dist/components/query-builder/group.d.ts +8 -0
- package/dist/components/query-builder/group.js +2 -0
- package/dist/components/query-builder/group.js.map +1 -0
- package/dist/components/query-builder/index.d.ts +44 -0
- package/dist/components/query-builder/index.js +2 -0
- package/dist/components/query-builder/index.js.map +1 -0
- package/dist/components/query-builder/rule.d.ts +6 -0
- package/dist/components/query-builder/rule.js +2 -0
- package/dist/components/query-builder/rule.js.map +1 -0
- package/dist/components/query-builder/utils.d.ts +14 -0
- package/dist/components/query-builder/utils.js +2 -0
- package/dist/components/query-builder/utils.js.map +1 -0
- package/dist/components/query-builder/value-editor.d.ts +6 -0
- package/dist/components/query-builder/value-editor.js +2 -0
- package/dist/components/query-builder/value-editor.js.map +1 -0
- package/dist/components/query-builder/value-selector.d.ts +6 -0
- package/dist/components/query-builder/value-selector.js +2 -0
- package/dist/components/query-builder/value-selector.js.map +1 -0
- package/dist/components/radio/index.d.ts +2 -2
- package/dist/components/radio/index.js +1 -1
- package/dist/components/radio/index.js.map +1 -1
- package/dist/components/search-field/index.d.ts +19 -0
- package/dist/components/search-field/index.js +2 -0
- package/dist/components/search-field/index.js.map +1 -0
- package/dist/components/switch/index.d.ts +1 -1
- package/dist/components/switch/index.js +1 -1
- package/dist/components/switch/index.js.map +1 -1
- package/dist/components/tabs/index.d.ts +33 -0
- package/dist/components/tabs/index.js +2 -0
- package/dist/components/tabs/index.js.map +1 -0
- package/dist/components/text-area/index.js +1 -1
- package/dist/components/text-area/index.js.map +1 -1
- package/dist/components/text-field/index.js +1 -1
- package/dist/components/text-field/index.js.map +1 -1
- package/dist/components/tooltip/index.d.ts +2 -2
- package/dist/components/tooltip/index.js +1 -1
- package/dist/components/tooltip/index.js.map +1 -1
- package/dist/index.css +54 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +1 -1
- package/dist/lib/react.d.ts +15 -3
- package/dist/lib/react.js +4 -1
- package/dist/lib/react.js.map +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/styles.css +641 -0
- package/dist/types/types.d.ts +11 -0
- package/dist/types/types.js +2 -0
- package/dist/types/types.js.map +1 -0
- package/package.json +19 -3
package/dist/styles.css
CHANGED
@@ -99,8 +99,10 @@
|
|
99
99
|
@layer theme, base, components, utilities;
|
100
100
|
@layer theme {
|
101
101
|
:root, :host {
|
102
|
+
--font-weight-light: 300;
|
102
103
|
--font-weight-normal: 400;
|
103
104
|
--font-weight-medium: 500;
|
105
|
+
--animate-spin: spin 1s linear infinite;
|
104
106
|
--default-transition-duration: 150ms;
|
105
107
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
106
108
|
--font-primary: "Roboto Flex", sans-serif;
|
@@ -326,21 +328,51 @@
|
|
326
328
|
.absolute {
|
327
329
|
position: absolute;
|
328
330
|
}
|
331
|
+
.fixed {
|
332
|
+
position: fixed;
|
333
|
+
}
|
329
334
|
.relative {
|
330
335
|
position: relative;
|
331
336
|
}
|
332
337
|
.\[inset\:var\(--badge-inset\,initial\)\] {
|
333
338
|
inset: var(--badge-inset,initial);
|
334
339
|
}
|
340
|
+
.inset-0 {
|
341
|
+
inset: var(--spacing-0);
|
342
|
+
}
|
343
|
+
.top-1\/2 {
|
344
|
+
top: calc(1/2 * 100%);
|
345
|
+
}
|
346
|
+
.top-\[6px\] {
|
347
|
+
top: 6px;
|
348
|
+
}
|
335
349
|
.right-\[5px\] {
|
336
350
|
right: 5px;
|
337
351
|
}
|
352
|
+
.right-\[8px\] {
|
353
|
+
right: 8px;
|
354
|
+
}
|
338
355
|
.right-\[20px\] {
|
339
356
|
right: 20px;
|
340
357
|
}
|
358
|
+
.right-xs {
|
359
|
+
right: var(--spacing-xs);
|
360
|
+
}
|
341
361
|
.bottom-\[20px\] {
|
342
362
|
bottom: 20px;
|
343
363
|
}
|
364
|
+
.left-\[7px\] {
|
365
|
+
left: 7px;
|
366
|
+
}
|
367
|
+
.left-s {
|
368
|
+
left: var(--spacing-s);
|
369
|
+
}
|
370
|
+
.col-span-2 {
|
371
|
+
grid-column: span 2 / span 2;
|
372
|
+
}
|
373
|
+
.col-span-full {
|
374
|
+
grid-column: 1 / -1;
|
375
|
+
}
|
344
376
|
.container {
|
345
377
|
width: 100%;
|
346
378
|
@media (width >= 40rem) {
|
@@ -359,12 +391,33 @@
|
|
359
391
|
max-width: 96rem;
|
360
392
|
}
|
361
393
|
}
|
394
|
+
.m-xs {
|
395
|
+
margin: var(--spacing-xs);
|
396
|
+
}
|
397
|
+
.my-s {
|
398
|
+
margin-block: var(--spacing-s);
|
399
|
+
}
|
400
|
+
.mt-l {
|
401
|
+
margin-top: var(--spacing-l);
|
402
|
+
}
|
362
403
|
.mt-oversized {
|
363
404
|
margin-top: var(--spacing-oversized);
|
364
405
|
}
|
406
|
+
.mt-s {
|
407
|
+
margin-top: var(--spacing-s);
|
408
|
+
}
|
365
409
|
.mt-xl {
|
366
410
|
margin-top: var(--spacing-xl);
|
367
411
|
}
|
412
|
+
.mr-s {
|
413
|
+
margin-right: var(--spacing-s);
|
414
|
+
}
|
415
|
+
.mb-m {
|
416
|
+
margin-bottom: var(--spacing-m);
|
417
|
+
}
|
418
|
+
.mb-s {
|
419
|
+
margin-bottom: var(--spacing-s);
|
420
|
+
}
|
368
421
|
.ml-auto {
|
369
422
|
margin-left: auto;
|
370
423
|
}
|
@@ -377,12 +430,18 @@
|
|
377
430
|
.grid {
|
378
431
|
display: grid;
|
379
432
|
}
|
433
|
+
.hidden {
|
434
|
+
display: none;
|
435
|
+
}
|
380
436
|
.inline-block {
|
381
437
|
display: inline-block;
|
382
438
|
}
|
383
439
|
.inline-flex {
|
384
440
|
display: inline-flex;
|
385
441
|
}
|
442
|
+
.table {
|
443
|
+
display: table;
|
444
|
+
}
|
386
445
|
.size-\[20px\] {
|
387
446
|
width: 20px;
|
388
447
|
height: 20px;
|
@@ -434,12 +493,21 @@
|
|
434
493
|
.\[height\:var\(--icon-size\)\] {
|
435
494
|
height: var(--icon-size);
|
436
495
|
}
|
496
|
+
.h-\[16px\] {
|
497
|
+
height: 16px;
|
498
|
+
}
|
437
499
|
.h-\[40px\] {
|
438
500
|
height: 40px;
|
439
501
|
}
|
440
502
|
.h-\[90px\] {
|
441
503
|
height: 90px;
|
442
504
|
}
|
505
|
+
.h-\[600px\] {
|
506
|
+
height: 600px;
|
507
|
+
}
|
508
|
+
.h-\[800px\] {
|
509
|
+
height: 800px;
|
510
|
+
}
|
443
511
|
.h-\[var\(--icon-size\,12px\)\] {
|
444
512
|
height: var(--icon-size,12px);
|
445
513
|
}
|
@@ -452,12 +520,18 @@
|
|
452
520
|
.h-\[var\(--icon-size\,24px\)\] {
|
453
521
|
height: var(--icon-size,24px);
|
454
522
|
}
|
523
|
+
.h-full {
|
524
|
+
height: 100%;
|
525
|
+
}
|
455
526
|
.h-l {
|
456
527
|
height: var(--spacing-l);
|
457
528
|
}
|
458
529
|
.h-xl {
|
459
530
|
height: var(--spacing-xl);
|
460
531
|
}
|
532
|
+
.max-h-\[200px\] {
|
533
|
+
max-height: 200px;
|
534
|
+
}
|
461
535
|
.min-h-\[20px\] {
|
462
536
|
min-height: 20px;
|
463
537
|
}
|
@@ -473,6 +547,18 @@
|
|
473
547
|
.\[width\:var\(--icon-size\)\] {
|
474
548
|
width: var(--icon-size);
|
475
549
|
}
|
550
|
+
.w-\(--trigger-width\) {
|
551
|
+
width: var(--trigger-width);
|
552
|
+
}
|
553
|
+
.w-\(--trigger-width\) {
|
554
|
+
width: var(--trigger-width);
|
555
|
+
}
|
556
|
+
.w-\[16px\] {
|
557
|
+
width: 16px;
|
558
|
+
}
|
559
|
+
.w-\[16px\] {
|
560
|
+
width: 16px;
|
561
|
+
}
|
476
562
|
.w-\[32px\] {
|
477
563
|
width: 32px;
|
478
564
|
}
|
@@ -503,6 +589,30 @@
|
|
503
589
|
.w-\[280px\] {
|
504
590
|
width: 280px;
|
505
591
|
}
|
592
|
+
.w-\[300px\] {
|
593
|
+
width: 300px;
|
594
|
+
}
|
595
|
+
.w-\[300px\] {
|
596
|
+
width: 300px;
|
597
|
+
}
|
598
|
+
.w-\[500px\] {
|
599
|
+
width: 500px;
|
600
|
+
}
|
601
|
+
.w-\[500px\] {
|
602
|
+
width: 500px;
|
603
|
+
}
|
604
|
+
.w-\[600px\] {
|
605
|
+
width: 600px;
|
606
|
+
}
|
607
|
+
.w-\[600px\] {
|
608
|
+
width: 600px;
|
609
|
+
}
|
610
|
+
.w-\[960px\] {
|
611
|
+
width: 960px;
|
612
|
+
}
|
613
|
+
.w-\[960px\] {
|
614
|
+
width: 960px;
|
615
|
+
}
|
506
616
|
.w-\[size\] {
|
507
617
|
width: size;
|
508
618
|
}
|
@@ -536,6 +646,9 @@
|
|
536
646
|
.w-content {
|
537
647
|
width: fit-content;
|
538
648
|
}
|
649
|
+
.w-fit {
|
650
|
+
width: fit-content;
|
651
|
+
}
|
539
652
|
.w-full {
|
540
653
|
width: 100%;
|
541
654
|
}
|
@@ -545,15 +658,44 @@
|
|
545
658
|
.max-w-\[160px\] {
|
546
659
|
max-width: 160px;
|
547
660
|
}
|
661
|
+
.max-w-\[280px\] {
|
662
|
+
max-width: 280px;
|
663
|
+
}
|
664
|
+
.max-w-\[720px\] {
|
665
|
+
max-width: 720px;
|
666
|
+
}
|
667
|
+
.min-w-0 {
|
668
|
+
min-width: var(--spacing-0);
|
669
|
+
}
|
670
|
+
.min-w-\[280px\] {
|
671
|
+
min-width: 280px;
|
672
|
+
}
|
673
|
+
.min-w-\[320px\] {
|
674
|
+
min-width: 320px;
|
675
|
+
}
|
548
676
|
.min-w-l {
|
549
677
|
min-width: var(--spacing-l);
|
550
678
|
}
|
551
679
|
.flex-none {
|
552
680
|
flex: none;
|
553
681
|
}
|
682
|
+
.-translate-y-1\/2 {
|
683
|
+
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
684
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
685
|
+
}
|
686
|
+
.scale-x-\[-1\] {
|
687
|
+
--tw-scale-x: -1;
|
688
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
689
|
+
}
|
690
|
+
.rotate-180 {
|
691
|
+
rotate: 180deg;
|
692
|
+
}
|
554
693
|
.transform {
|
555
694
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
556
695
|
}
|
696
|
+
.animate-spin {
|
697
|
+
animation: var(--animate-spin);
|
698
|
+
}
|
557
699
|
.cursor-crosshair {
|
558
700
|
cursor: crosshair;
|
559
701
|
}
|
@@ -575,6 +717,15 @@
|
|
575
717
|
.grid-cols-3 {
|
576
718
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
577
719
|
}
|
720
|
+
.grid-cols-\[10px_minmax\(100px\,_1fr\)_min-content\] {
|
721
|
+
grid-template-columns: 10px minmax(100px, 1fr) min-content;
|
722
|
+
}
|
723
|
+
.grid-cols-\[auto_1fr\] {
|
724
|
+
grid-template-columns: auto 1fr;
|
725
|
+
}
|
726
|
+
.grid-cols-\[minmax\(100px\,_1fr\)_min-content\] {
|
727
|
+
grid-template-columns: minmax(100px, 1fr) min-content;
|
728
|
+
}
|
578
729
|
.flex-col {
|
579
730
|
flex-direction: column;
|
580
731
|
}
|
@@ -641,6 +792,9 @@
|
|
641
792
|
.gap-x-oversized {
|
642
793
|
column-gap: var(--spacing-oversized);
|
643
794
|
}
|
795
|
+
.gap-x-s {
|
796
|
+
column-gap: var(--spacing-s);
|
797
|
+
}
|
644
798
|
.gap-x-xxl {
|
645
799
|
column-gap: var(--spacing-xxl);
|
646
800
|
}
|
@@ -653,9 +807,20 @@
|
|
653
807
|
.gap-y-xxl {
|
654
808
|
row-gap: var(--spacing-xxl);
|
655
809
|
}
|
810
|
+
.truncate {
|
811
|
+
overflow: hidden;
|
812
|
+
text-overflow: ellipsis;
|
813
|
+
white-space: nowrap;
|
814
|
+
}
|
656
815
|
.overflow-hidden {
|
657
816
|
overflow: hidden;
|
658
817
|
}
|
818
|
+
.overflow-x-clip {
|
819
|
+
overflow-x: clip;
|
820
|
+
}
|
821
|
+
.overflow-y-auto {
|
822
|
+
overflow-y: auto;
|
823
|
+
}
|
659
824
|
.rounded-full {
|
660
825
|
border-radius: calc(infinity * 1px);
|
661
826
|
}
|
@@ -677,10 +842,30 @@
|
|
677
842
|
.rounded-small {
|
678
843
|
border-radius: var(--radius-small);
|
679
844
|
}
|
845
|
+
.rounded-t-large {
|
846
|
+
border-top-left-radius: var(--radius-large);
|
847
|
+
border-top-right-radius: var(--radius-large);
|
848
|
+
}
|
849
|
+
.rounded-l-large {
|
850
|
+
border-top-left-radius: var(--radius-large);
|
851
|
+
border-bottom-left-radius: var(--radius-large);
|
852
|
+
}
|
853
|
+
.rounded-r-large {
|
854
|
+
border-top-right-radius: var(--radius-large);
|
855
|
+
border-bottom-right-radius: var(--radius-large);
|
856
|
+
}
|
857
|
+
.rounded-b-large {
|
858
|
+
border-bottom-right-radius: var(--radius-large);
|
859
|
+
border-bottom-left-radius: var(--radius-large);
|
860
|
+
}
|
680
861
|
.border {
|
681
862
|
border-style: var(--tw-border-style);
|
682
863
|
border-width: 1px;
|
683
864
|
}
|
865
|
+
.border-t {
|
866
|
+
border-top-style: var(--tw-border-style);
|
867
|
+
border-top-width: 1px;
|
868
|
+
}
|
684
869
|
.border-\[\#E8178A\] {
|
685
870
|
border-color: #E8178A;
|
686
871
|
}
|
@@ -690,6 +875,12 @@
|
|
690
875
|
.border-critical {
|
691
876
|
border-color: var(--color-critical);
|
692
877
|
}
|
878
|
+
.border-default-dark {
|
879
|
+
border-color: var(--color-default-dark);
|
880
|
+
}
|
881
|
+
.border-default-light {
|
882
|
+
border-color: var(--color-default-light);
|
883
|
+
}
|
693
884
|
.border-highlight {
|
694
885
|
border-color: var(--color-highlight);
|
695
886
|
}
|
@@ -717,6 +908,9 @@
|
|
717
908
|
.border-static-light {
|
718
909
|
border-color: var(--color-static-light);
|
719
910
|
}
|
911
|
+
.border-transparent {
|
912
|
+
border-color: transparent;
|
913
|
+
}
|
720
914
|
.bg-\[\#E8178A\]\/40 {
|
721
915
|
background-color: color-mix(in oklab, #E8178A 40%, transparent);
|
722
916
|
}
|
@@ -867,6 +1061,9 @@
|
|
867
1061
|
.p-0 {
|
868
1062
|
padding: var(--spacing-0);
|
869
1063
|
}
|
1064
|
+
.p-l {
|
1065
|
+
padding: var(--spacing-l);
|
1066
|
+
}
|
870
1067
|
.p-m {
|
871
1068
|
padding: var(--spacing-m);
|
872
1069
|
}
|
@@ -876,6 +1073,9 @@
|
|
876
1073
|
.p-s {
|
877
1074
|
padding: var(--spacing-s);
|
878
1075
|
}
|
1076
|
+
.p-xl {
|
1077
|
+
padding: var(--spacing-xl);
|
1078
|
+
}
|
879
1079
|
.p-xs {
|
880
1080
|
padding: var(--spacing-xs);
|
881
1081
|
}
|
@@ -894,15 +1094,30 @@
|
|
894
1094
|
.py-xs {
|
895
1095
|
padding-block: var(--spacing-xs);
|
896
1096
|
}
|
1097
|
+
.pr-\[30px\] {
|
1098
|
+
padding-right: 30px;
|
1099
|
+
}
|
1100
|
+
.pr-\[32px\] {
|
1101
|
+
padding-right: 32px;
|
1102
|
+
}
|
897
1103
|
.pr-xl {
|
898
1104
|
padding-right: var(--spacing-xl);
|
899
1105
|
}
|
1106
|
+
.pl-\[32px\] {
|
1107
|
+
padding-left: 32px;
|
1108
|
+
}
|
1109
|
+
.pl-\[35px\] {
|
1110
|
+
padding-left: 35px;
|
1111
|
+
}
|
900
1112
|
.pl-m {
|
901
1113
|
padding-left: var(--spacing-m);
|
902
1114
|
}
|
903
1115
|
.pl-s {
|
904
1116
|
padding-left: var(--spacing-s);
|
905
1117
|
}
|
1118
|
+
.pl-xs {
|
1119
|
+
padding-left: var(--spacing-xs);
|
1120
|
+
}
|
906
1121
|
.text-center {
|
907
1122
|
text-align: center;
|
908
1123
|
}
|
@@ -1019,6 +1234,10 @@
|
|
1019
1234
|
--tw-leading: 64px;
|
1020
1235
|
line-height: 64px;
|
1021
1236
|
}
|
1237
|
+
.font-light {
|
1238
|
+
--tw-font-weight: var(--font-weight-light);
|
1239
|
+
font-weight: var(--font-weight-light);
|
1240
|
+
}
|
1022
1241
|
.font-medium {
|
1023
1242
|
--tw-font-weight: var(--font-weight-medium);
|
1024
1243
|
font-weight: var(--font-weight-medium);
|
@@ -1069,6 +1288,10 @@
|
|
1069
1288
|
color: var(--color-interactive-default);
|
1070
1289
|
--icon-color: var(--color-interactive-default);
|
1071
1290
|
}
|
1291
|
+
.fg-interactive-hover {
|
1292
|
+
color: var(--color-interactive-hover);
|
1293
|
+
--icon-color: var(--color-interactive-hover);
|
1294
|
+
}
|
1072
1295
|
.fg-interactive-hover-light {
|
1073
1296
|
color: var(--color-interactive-hover-light);
|
1074
1297
|
--icon-color: var(--color-interactive-hover-light);
|
@@ -1146,6 +1369,9 @@
|
|
1146
1369
|
outline-style: var(--tw-outline-style);
|
1147
1370
|
outline-width: 1px;
|
1148
1371
|
}
|
1372
|
+
.outline-offset-1 {
|
1373
|
+
outline-offset: 1px;
|
1374
|
+
}
|
1149
1375
|
.outline-advisory-bold {
|
1150
1376
|
outline-color: var(--color-advisory-bold);
|
1151
1377
|
}
|
@@ -1176,6 +1402,12 @@
|
|
1176
1402
|
.outline-serious {
|
1177
1403
|
outline-color: var(--color-serious);
|
1178
1404
|
}
|
1405
|
+
.outline-static-dark {
|
1406
|
+
outline-color: var(--color-static-dark);
|
1407
|
+
}
|
1408
|
+
.outline-static-light {
|
1409
|
+
outline-color: var(--color-static-light);
|
1410
|
+
}
|
1179
1411
|
.filter {
|
1180
1412
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
1181
1413
|
}
|
@@ -1240,6 +1472,9 @@
|
|
1240
1472
|
.icon-size-m {
|
1241
1473
|
--icon-size: var(--spacing-m);
|
1242
1474
|
}
|
1475
|
+
.icon-size-xl {
|
1476
|
+
--icon-size: var(--spacing-xl);
|
1477
|
+
}
|
1243
1478
|
.not-ai-selected\:cursor-not-allowed {
|
1244
1479
|
&:not(*[data-selected]) {
|
1245
1480
|
cursor: not-allowed;
|
@@ -1317,11 +1552,90 @@
|
|
1317
1552
|
--icon-color: var(--color-default-light);
|
1318
1553
|
}
|
1319
1554
|
}
|
1555
|
+
.group-ai-orientation-horizontal\:rounded-small {
|
1556
|
+
&:is(:where(.group)[data-orientation="horizontal"] *) {
|
1557
|
+
border-radius: var(--radius-small);
|
1558
|
+
}
|
1559
|
+
}
|
1560
|
+
.group-ai-orientation-horizontal\:rounded-b-none {
|
1561
|
+
&:is(:where(.group)[data-orientation="horizontal"] *) {
|
1562
|
+
border-bottom-right-radius: 0;
|
1563
|
+
border-bottom-left-radius: 0;
|
1564
|
+
}
|
1565
|
+
}
|
1566
|
+
.group-ai-orientation-horizontal\:rounded-b-none {
|
1567
|
+
&:is(:where(.group)[data-orientation="horizontal"] *) {
|
1568
|
+
border-bottom-right-radius: var(--radius-none);
|
1569
|
+
border-bottom-left-radius: var(--radius-none);
|
1570
|
+
}
|
1571
|
+
}
|
1572
|
+
.group-ai-orientation-horizontal\:border-b {
|
1573
|
+
&:is(:where(.group)[data-orientation="horizontal"] *) {
|
1574
|
+
border-bottom-style: var(--tw-border-style);
|
1575
|
+
border-bottom-width: 1px;
|
1576
|
+
}
|
1577
|
+
}
|
1578
|
+
.group-ai-orientation-horizontal\:border-highlight {
|
1579
|
+
&:is(:where(.group)[data-orientation="horizontal"] *) {
|
1580
|
+
border-color: var(--color-highlight);
|
1581
|
+
}
|
1582
|
+
}
|
1583
|
+
.group-ai-orientation-horizontal\:border-interactive-disabled {
|
1584
|
+
&:is(:where(.group)[data-orientation="horizontal"] *) {
|
1585
|
+
border-color: var(--color-interactive-disabled);
|
1586
|
+
}
|
1587
|
+
}
|
1588
|
+
.group-ai-orientation-horizontal\:border-interactive-hover {
|
1589
|
+
&:is(:where(.group)[data-orientation="horizontal"] *) {
|
1590
|
+
border-color: var(--color-interactive-hover);
|
1591
|
+
}
|
1592
|
+
}
|
1593
|
+
.group-ai-orientation-horizontal\:border-static-light {
|
1594
|
+
&:is(:where(.group)[data-orientation="horizontal"] *) {
|
1595
|
+
border-color: var(--color-static-light);
|
1596
|
+
}
|
1597
|
+
}
|
1598
|
+
.group-ai-orientation-horizontal\:pl-0 {
|
1599
|
+
&:is(:where(.group)[data-orientation="horizontal"] *) {
|
1600
|
+
padding-left: var(--spacing-0);
|
1601
|
+
}
|
1602
|
+
}
|
1603
|
+
.group-ai-orientation-vertical\:border {
|
1604
|
+
&:is(:where(.group)[data-orientation="vertical"] *) {
|
1605
|
+
border-style: var(--tw-border-style);
|
1606
|
+
border-width: 1px;
|
1607
|
+
}
|
1608
|
+
}
|
1609
|
+
.group-ai-orientation-vertical\:border-interactive-hover {
|
1610
|
+
&:is(:where(.group)[data-orientation="vertical"] *) {
|
1611
|
+
border-color: var(--color-interactive-hover);
|
1612
|
+
}
|
1613
|
+
}
|
1614
|
+
.group-ai-orientation-vertical\:border-transparent {
|
1615
|
+
&:is(:where(.group)[data-orientation="vertical"] *) {
|
1616
|
+
border-color: transparent;
|
1617
|
+
}
|
1618
|
+
}
|
1619
|
+
.group-ai-orientation-vertical\:pt-0 {
|
1620
|
+
&:is(:where(.group)[data-orientation="vertical"] *) {
|
1621
|
+
padding-top: var(--spacing-0);
|
1622
|
+
}
|
1623
|
+
}
|
1320
1624
|
.group-ai-expanded\:rotate-180 {
|
1321
1625
|
&:is(:where(.group)[data-expanded] *) {
|
1322
1626
|
rotate: 180deg;
|
1323
1627
|
}
|
1324
1628
|
}
|
1629
|
+
.group-ai-empty\:hidden {
|
1630
|
+
&:is(:where(.group)[data-empty] *) {
|
1631
|
+
display: none;
|
1632
|
+
}
|
1633
|
+
}
|
1634
|
+
.group-ai-disabled\:hidden {
|
1635
|
+
&:is(:where(.group)[data-disabled] *) {
|
1636
|
+
display: none;
|
1637
|
+
}
|
1638
|
+
}
|
1325
1639
|
.group-ai-disabled\:bg-interactive-disabled {
|
1326
1640
|
&:is(:where(.group)[data-disabled] *) {
|
1327
1641
|
background-color: var(--color-interactive-disabled);
|
@@ -1460,6 +1774,40 @@
|
|
1460
1774
|
}
|
1461
1775
|
}
|
1462
1776
|
}
|
1777
|
+
.first\:border-none {
|
1778
|
+
&:first-child {
|
1779
|
+
--tw-border-style: none;
|
1780
|
+
border-style: none;
|
1781
|
+
}
|
1782
|
+
}
|
1783
|
+
.not-disabled\:read-only\:rounded-none {
|
1784
|
+
&:not(*:disabled) {
|
1785
|
+
&:read-only {
|
1786
|
+
border-radius: 0;
|
1787
|
+
}
|
1788
|
+
}
|
1789
|
+
}
|
1790
|
+
.not-disabled\:read-only\:rounded-none {
|
1791
|
+
&:not(*:disabled) {
|
1792
|
+
&:read-only {
|
1793
|
+
border-radius: var(--radius-none);
|
1794
|
+
}
|
1795
|
+
}
|
1796
|
+
}
|
1797
|
+
.not-disabled\:read-only\:p-0 {
|
1798
|
+
&:not(*:disabled) {
|
1799
|
+
&:read-only {
|
1800
|
+
padding: var(--spacing-0);
|
1801
|
+
}
|
1802
|
+
}
|
1803
|
+
}
|
1804
|
+
.not-disabled\:read-only\:outline-transparent {
|
1805
|
+
&:not(*:disabled) {
|
1806
|
+
&:read-only {
|
1807
|
+
outline-color: transparent;
|
1808
|
+
}
|
1809
|
+
}
|
1810
|
+
}
|
1463
1811
|
.empty\:\[inset\:var\(--badge-empty-inset\,initial\)\] {
|
1464
1812
|
&:empty {
|
1465
1813
|
inset: var(--badge-empty-inset,initial);
|
@@ -1496,6 +1844,11 @@
|
|
1496
1844
|
background-color: transparent;
|
1497
1845
|
}
|
1498
1846
|
}
|
1847
|
+
.focus-within\:outline-highlight {
|
1848
|
+
&:focus-within {
|
1849
|
+
outline-color: var(--color-highlight);
|
1850
|
+
}
|
1851
|
+
}
|
1499
1852
|
.hover\:bg-critical-hover {
|
1500
1853
|
&:hover {
|
1501
1854
|
@media (hover: hover) {
|
@@ -1503,6 +1856,13 @@
|
|
1503
1856
|
}
|
1504
1857
|
}
|
1505
1858
|
}
|
1859
|
+
.hover\:bg-highlight-bold {
|
1860
|
+
&:hover {
|
1861
|
+
@media (hover: hover) {
|
1862
|
+
background-color: var(--color-highlight-bold);
|
1863
|
+
}
|
1864
|
+
}
|
1865
|
+
}
|
1506
1866
|
.hover\:bg-interactive-disabled {
|
1507
1867
|
&:hover {
|
1508
1868
|
@media (hover: hover) {
|
@@ -1554,6 +1914,14 @@
|
|
1554
1914
|
}
|
1555
1915
|
}
|
1556
1916
|
}
|
1917
|
+
.hover\:fg-inverse-light {
|
1918
|
+
&:hover {
|
1919
|
+
@media (hover: hover) {
|
1920
|
+
color: var(--color-inverse-light);
|
1921
|
+
--icon-color: var(--color-inverse-light);
|
1922
|
+
}
|
1923
|
+
}
|
1924
|
+
}
|
1557
1925
|
.hover\:outline-interactive-disabled {
|
1558
1926
|
&:hover {
|
1559
1927
|
@media (hover: hover) {
|
@@ -1568,6 +1936,14 @@
|
|
1568
1936
|
}
|
1569
1937
|
}
|
1570
1938
|
}
|
1939
|
+
.hover\:outline-solid {
|
1940
|
+
&:hover {
|
1941
|
+
@media (hover: hover) {
|
1942
|
+
--tw-outline-style: solid;
|
1943
|
+
outline-style: solid;
|
1944
|
+
}
|
1945
|
+
}
|
1946
|
+
}
|
1571
1947
|
.hover\:icon-default-light {
|
1572
1948
|
&:hover {
|
1573
1949
|
@media (hover: hover) {
|
@@ -1591,6 +1967,17 @@
|
|
1591
1967
|
}
|
1592
1968
|
}
|
1593
1969
|
}
|
1970
|
+
.not-disabled\:read-only\:hover\:outline-transparent {
|
1971
|
+
&:not(*:disabled) {
|
1972
|
+
&:read-only {
|
1973
|
+
&:hover {
|
1974
|
+
@media (hover: hover) {
|
1975
|
+
outline-color: transparent;
|
1976
|
+
}
|
1977
|
+
}
|
1978
|
+
}
|
1979
|
+
}
|
1980
|
+
}
|
1594
1981
|
.focus\:bg-critical-hover {
|
1595
1982
|
&:focus {
|
1596
1983
|
background-color: var(--color-critical-hover);
|
@@ -1604,6 +1991,11 @@
|
|
1604
1991
|
}
|
1605
1992
|
}
|
1606
1993
|
}
|
1994
|
+
.focus\:bg-highlight {
|
1995
|
+
&:focus {
|
1996
|
+
background-color: var(--color-highlight);
|
1997
|
+
}
|
1998
|
+
}
|
1607
1999
|
.focus\:bg-interactive-disabled {
|
1608
2000
|
&:focus {
|
1609
2001
|
background-color: var(--color-interactive-disabled);
|
@@ -1635,6 +2027,11 @@
|
|
1635
2027
|
--icon-color: var(--color-disabled);
|
1636
2028
|
}
|
1637
2029
|
}
|
2030
|
+
.focus\:text-inverse-light {
|
2031
|
+
&:focus {
|
2032
|
+
color: var(--color-inverse-light);
|
2033
|
+
}
|
2034
|
+
}
|
1638
2035
|
.focus\:outline-highlight {
|
1639
2036
|
&:focus {
|
1640
2037
|
outline-color: var(--color-highlight);
|
@@ -1650,6 +2047,23 @@
|
|
1650
2047
|
outline-color: var(--color-interactive-hover);
|
1651
2048
|
}
|
1652
2049
|
}
|
2050
|
+
.focus\:outline-serious {
|
2051
|
+
&:focus {
|
2052
|
+
outline-color: var(--color-serious);
|
2053
|
+
}
|
2054
|
+
}
|
2055
|
+
.focus\:outline-none {
|
2056
|
+
&:focus {
|
2057
|
+
--tw-outline-style: none;
|
2058
|
+
outline-style: none;
|
2059
|
+
}
|
2060
|
+
}
|
2061
|
+
.focus\:outline-solid {
|
2062
|
+
&:focus {
|
2063
|
+
--tw-outline-style: solid;
|
2064
|
+
outline-style: solid;
|
2065
|
+
}
|
2066
|
+
}
|
1653
2067
|
.focus\:icon-default-light {
|
1654
2068
|
&:focus {
|
1655
2069
|
--icon-color: var(--color-default-light);
|
@@ -1662,6 +2076,56 @@
|
|
1662
2076
|
}
|
1663
2077
|
}
|
1664
2078
|
}
|
2079
|
+
.not-disabled\:read-only\:focus\:outline-transparent {
|
2080
|
+
&:not(*:disabled) {
|
2081
|
+
&:read-only {
|
2082
|
+
&:focus {
|
2083
|
+
outline-color: transparent;
|
2084
|
+
}
|
2085
|
+
}
|
2086
|
+
}
|
2087
|
+
}
|
2088
|
+
.data-selected\:outline-highlight {
|
2089
|
+
&[data-selected] {
|
2090
|
+
outline-color: var(--color-highlight);
|
2091
|
+
}
|
2092
|
+
}
|
2093
|
+
.data-selected\:outline-solid {
|
2094
|
+
&[data-selected] {
|
2095
|
+
--tw-outline-style: solid;
|
2096
|
+
outline-style: solid;
|
2097
|
+
}
|
2098
|
+
}
|
2099
|
+
.\*\*\:data-\[slot\=description\]\:text-body-xs {
|
2100
|
+
:is(& *) {
|
2101
|
+
&[data-slot="description"] {
|
2102
|
+
font-size: var(--body-xs-size);
|
2103
|
+
font-weight: 400;
|
2104
|
+
letter-spacing: 0.5px;
|
2105
|
+
line-height: var(--body-xs-height);
|
2106
|
+
}
|
2107
|
+
}
|
2108
|
+
}
|
2109
|
+
.\*\*\:data-\[slot\=description\]\:fg-default-dark {
|
2110
|
+
:is(& *) {
|
2111
|
+
&[data-slot="description"] {
|
2112
|
+
color: var(--color-default-dark);
|
2113
|
+
--icon-color: var(--color-default-dark);
|
2114
|
+
}
|
2115
|
+
}
|
2116
|
+
}
|
2117
|
+
.hover\:\*\*\:data-\[slot\=description\]\:fg-inverse-light {
|
2118
|
+
&:hover {
|
2119
|
+
@media (hover: hover) {
|
2120
|
+
:is(& *) {
|
2121
|
+
&[data-slot="description"] {
|
2122
|
+
color: var(--color-inverse-light);
|
2123
|
+
--icon-color: var(--color-inverse-light);
|
2124
|
+
}
|
2125
|
+
}
|
2126
|
+
}
|
2127
|
+
}
|
2128
|
+
}
|
1665
2129
|
.data-\[variant\=compact\]\:gap-xs {
|
1666
2130
|
&[data-variant="compact"] {
|
1667
2131
|
gap: var(--spacing-xs);
|
@@ -1708,6 +2172,42 @@
|
|
1708
2172
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
1709
2173
|
}
|
1710
2174
|
}
|
2175
|
+
.ai-orientation-horizontal\:flex-col {
|
2176
|
+
&[data-orientation="horizontal"] {
|
2177
|
+
flex-direction: column;
|
2178
|
+
}
|
2179
|
+
}
|
2180
|
+
.ai-orientation-horizontal\:flex-row {
|
2181
|
+
&[data-orientation="horizontal"] {
|
2182
|
+
flex-direction: row;
|
2183
|
+
}
|
2184
|
+
}
|
2185
|
+
.ai-orientation-vertical\:gap-xs {
|
2186
|
+
&[data-orientation="vertical"] {
|
2187
|
+
gap: var(--spacing-xs);
|
2188
|
+
}
|
2189
|
+
}
|
2190
|
+
.ai-focus\:bg-highlight-bold {
|
2191
|
+
&[data-focused] {
|
2192
|
+
background-color: var(--color-highlight-bold);
|
2193
|
+
}
|
2194
|
+
}
|
2195
|
+
.ai-focus\:fg-inverse-light {
|
2196
|
+
&[data-focused] {
|
2197
|
+
color: var(--color-inverse-light);
|
2198
|
+
--icon-color: var(--color-inverse-light);
|
2199
|
+
}
|
2200
|
+
}
|
2201
|
+
.ai-focus\:\*\*\:data-\[slot\=description\]\:fg-inverse-light {
|
2202
|
+
&[data-focused] {
|
2203
|
+
:is(& *) {
|
2204
|
+
&[data-slot="description"] {
|
2205
|
+
color: var(--color-inverse-light);
|
2206
|
+
--icon-color: var(--color-inverse-light);
|
2207
|
+
}
|
2208
|
+
}
|
2209
|
+
}
|
2210
|
+
}
|
1711
2211
|
.ai-pressed\:bg-critical-hover {
|
1712
2212
|
&[data-pressed] {
|
1713
2213
|
background-color: var(--color-critical-hover);
|
@@ -1815,11 +2315,32 @@
|
|
1815
2315
|
cursor: not-allowed;
|
1816
2316
|
}
|
1817
2317
|
}
|
2318
|
+
.ai-disabled\:bg-transparent {
|
2319
|
+
&[data-disabled] {
|
2320
|
+
background-color: transparent;
|
2321
|
+
}
|
2322
|
+
}
|
2323
|
+
.ai-disabled\:fg-disabled {
|
2324
|
+
&[data-disabled] {
|
2325
|
+
color: var(--color-disabled);
|
2326
|
+
--icon-color: var(--color-disabled);
|
2327
|
+
}
|
2328
|
+
}
|
1818
2329
|
.ai-disabled\:text-interactive-disabled {
|
1819
2330
|
&[data-disabled] {
|
1820
2331
|
color: var(--color-interactive-disabled);
|
1821
2332
|
}
|
1822
2333
|
}
|
2334
|
+
.ai-disabled\:\*\*\:data-\[slot\=description\]\:fg-disabled {
|
2335
|
+
&[data-disabled] {
|
2336
|
+
:is(& *) {
|
2337
|
+
&[data-slot="description"] {
|
2338
|
+
color: var(--color-disabled);
|
2339
|
+
--icon-color: var(--color-disabled);
|
2340
|
+
}
|
2341
|
+
}
|
2342
|
+
}
|
2343
|
+
}
|
1823
2344
|
.\[\&\:empty\]\:before\:content-\[\'CUI\'\] {
|
1824
2345
|
&:empty {
|
1825
2346
|
&::before {
|
@@ -1917,6 +2438,44 @@
|
|
1917
2438
|
}
|
1918
2439
|
}
|
1919
2440
|
}
|
2441
|
+
.\[\&\>\*\]\:p-s {
|
2442
|
+
&>* {
|
2443
|
+
padding: var(--spacing-s);
|
2444
|
+
}
|
2445
|
+
}
|
2446
|
+
.\[\&\>\*\]\:p-xs {
|
2447
|
+
&>* {
|
2448
|
+
padding: var(--spacing-xs);
|
2449
|
+
}
|
2450
|
+
}
|
2451
|
+
.\[\&\>\*\]\:text-header-m {
|
2452
|
+
&>* {
|
2453
|
+
font-size: var(--header-m-size);
|
2454
|
+
font-weight: 500;
|
2455
|
+
letter-spacing: 0.25px;
|
2456
|
+
line-height: var(--header-m-height);
|
2457
|
+
}
|
2458
|
+
}
|
2459
|
+
.\[\&\>\*\]\:leading-\[0\] {
|
2460
|
+
&>* {
|
2461
|
+
--tw-leading: 0;
|
2462
|
+
line-height: 0;
|
2463
|
+
}
|
2464
|
+
}
|
2465
|
+
.ai-orientation-horizontal\:\[\&\>\*\]\:pr-s {
|
2466
|
+
&[data-orientation="horizontal"] {
|
2467
|
+
&>* {
|
2468
|
+
padding-right: var(--spacing-s);
|
2469
|
+
}
|
2470
|
+
}
|
2471
|
+
}
|
2472
|
+
.ai-orientation-horizontal\:\[\&\>\*\]\:pl-s {
|
2473
|
+
&[data-orientation="horizontal"] {
|
2474
|
+
&>* {
|
2475
|
+
padding-left: var(--spacing-s);
|
2476
|
+
}
|
2477
|
+
}
|
2478
|
+
}
|
1920
2479
|
}
|
1921
2480
|
:root {
|
1922
2481
|
--neutral-01: #ffffff;
|
@@ -2013,6 +2572,77 @@
|
|
2013
2572
|
--button-xs-size: 10px;
|
2014
2573
|
--button-xs-height: 12px;
|
2015
2574
|
}
|
2575
|
+
@layer components {
|
2576
|
+
.hide-cancel::-webkit-search-cancel-button {
|
2577
|
+
display: none;
|
2578
|
+
}
|
2579
|
+
.queryBuilder .rule-lines::before {
|
2580
|
+
content: '';
|
2581
|
+
width: 10px;
|
2582
|
+
position: absolute;
|
2583
|
+
top: 0;
|
2584
|
+
bottom: 0;
|
2585
|
+
left: 50%;
|
2586
|
+
background-image: repeating-linear-gradient(to bottom, var(--neutral-04), var(--neutral-04)), repeating-linear-gradient(to right, var(--neutral-04), var(--neutral-04));
|
2587
|
+
background-position: left -1px, center;
|
2588
|
+
background-repeat: repeat-y, repeat-x;
|
2589
|
+
background-size: 1px 4px, 4px 1px;
|
2590
|
+
}
|
2591
|
+
.queryBuilder .group > span.rule-lines:last-of-type::before {
|
2592
|
+
content: '';
|
2593
|
+
width: 10px;
|
2594
|
+
position: absolute;
|
2595
|
+
top: 0;
|
2596
|
+
bottom: 50%;
|
2597
|
+
left: 50%;
|
2598
|
+
background-image: repeating-linear-gradient(to bottom,var(--neutral-04), var(--neutral-04)), repeating-linear-gradient(to right, var(--neutral-04), var(--neutral-04));
|
2599
|
+
background-position: left -1px, bottom;
|
2600
|
+
background-repeat: repeat-y, repeat-x;
|
2601
|
+
background-size: 1px 4px, 4px 1px;
|
2602
|
+
}
|
2603
|
+
.queryBuilder .group > span.rule-lines:last-of-type:has(~ div.group)::before {
|
2604
|
+
content: '';
|
2605
|
+
width: 10px;
|
2606
|
+
position: absolute;
|
2607
|
+
top: 0;
|
2608
|
+
bottom: 0;
|
2609
|
+
left: 50%;
|
2610
|
+
background-image: repeating-linear-gradient(to bottom, var(--neutral-04), var(--neutral-04)), repeating-linear-gradient(to right, var(--neutral-04), var(--neutral-04));
|
2611
|
+
background-position: left -1px, center;
|
2612
|
+
background-repeat: repeat-y, repeat-x;
|
2613
|
+
background-size: 1px 4px, 4px 1px;
|
2614
|
+
}
|
2615
|
+
}
|
2616
|
+
@property --tw-translate-x {
|
2617
|
+
syntax: "*";
|
2618
|
+
inherits: false;
|
2619
|
+
initial-value: 0;
|
2620
|
+
}
|
2621
|
+
@property --tw-translate-y {
|
2622
|
+
syntax: "*";
|
2623
|
+
inherits: false;
|
2624
|
+
initial-value: 0;
|
2625
|
+
}
|
2626
|
+
@property --tw-translate-z {
|
2627
|
+
syntax: "*";
|
2628
|
+
inherits: false;
|
2629
|
+
initial-value: 0;
|
2630
|
+
}
|
2631
|
+
@property --tw-scale-x {
|
2632
|
+
syntax: "*";
|
2633
|
+
inherits: false;
|
2634
|
+
initial-value: 1;
|
2635
|
+
}
|
2636
|
+
@property --tw-scale-y {
|
2637
|
+
syntax: "*";
|
2638
|
+
inherits: false;
|
2639
|
+
initial-value: 1;
|
2640
|
+
}
|
2641
|
+
@property --tw-scale-z {
|
2642
|
+
syntax: "*";
|
2643
|
+
inherits: false;
|
2644
|
+
initial-value: 1;
|
2645
|
+
}
|
2016
2646
|
@property --tw-rotate-x {
|
2017
2647
|
syntax: "*";
|
2018
2648
|
inherits: false;
|
@@ -2174,9 +2804,20 @@
|
|
2174
2804
|
initial-value: "";
|
2175
2805
|
inherits: false;
|
2176
2806
|
}
|
2807
|
+
@keyframes spin {
|
2808
|
+
to {
|
2809
|
+
transform: rotate(360deg);
|
2810
|
+
}
|
2811
|
+
}
|
2177
2812
|
@layer properties {
|
2178
2813
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
2179
2814
|
*, ::before, ::after, ::backdrop {
|
2815
|
+
--tw-translate-x: 0;
|
2816
|
+
--tw-translate-y: 0;
|
2817
|
+
--tw-translate-z: 0;
|
2818
|
+
--tw-scale-x: 1;
|
2819
|
+
--tw-scale-y: 1;
|
2820
|
+
--tw-scale-z: 1;
|
2180
2821
|
--tw-rotate-x: initial;
|
2181
2822
|
--tw-rotate-y: initial;
|
2182
2823
|
--tw-rotate-z: initial;
|