@accelint/design-toolkit 1.0.1 → 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.
Files changed (74) hide show
  1. package/dist/components/accordion/index.d.ts +2 -2
  2. package/dist/components/avatar/index.d.ts +4 -4
  3. package/dist/components/badge/index.d.ts +2 -2
  4. package/dist/components/box/index.d.ts +3 -3
  5. package/dist/components/checkbox/index.d.ts +2 -2
  6. package/dist/components/chip/index.d.ts +2 -2
  7. package/dist/components/color-picker/index.d.ts +21 -0
  8. package/dist/components/color-picker/index.js +2 -0
  9. package/dist/components/color-picker/index.js.map +1 -0
  10. package/dist/components/combobox/index.js +1 -1
  11. package/dist/components/combobox/index.js.map +1 -1
  12. package/dist/components/date-field/index.d.ts +28 -0
  13. package/dist/components/date-field/index.js +2 -0
  14. package/dist/components/date-field/index.js.map +1 -0
  15. package/dist/components/dialog/index.d.ts +40 -0
  16. package/dist/components/dialog/index.js +2 -0
  17. package/dist/components/dialog/index.js.map +1 -0
  18. package/dist/components/icon/index.js +1 -1
  19. package/dist/components/icon/index.js.map +1 -1
  20. package/dist/components/query-builder/action-element.d.ts +6 -0
  21. package/dist/components/query-builder/action-element.js +2 -0
  22. package/dist/components/query-builder/action-element.js.map +1 -0
  23. package/dist/components/query-builder/constants.d.ts +3 -0
  24. package/dist/components/query-builder/constants.js +2 -0
  25. package/dist/components/query-builder/constants.js.map +1 -0
  26. package/dist/components/query-builder/example-configuration.d.ts +30 -0
  27. package/dist/components/query-builder/example-configuration.js +2 -0
  28. package/dist/components/query-builder/example-configuration.js.map +1 -0
  29. package/dist/components/query-builder/group.d.ts +8 -0
  30. package/dist/components/query-builder/group.js +2 -0
  31. package/dist/components/query-builder/group.js.map +1 -0
  32. package/dist/components/query-builder/index.d.ts +44 -0
  33. package/dist/components/query-builder/index.js +2 -0
  34. package/dist/components/query-builder/index.js.map +1 -0
  35. package/dist/components/query-builder/rule.d.ts +6 -0
  36. package/dist/components/query-builder/rule.js +2 -0
  37. package/dist/components/query-builder/rule.js.map +1 -0
  38. package/dist/components/query-builder/utils.d.ts +14 -0
  39. package/dist/components/query-builder/utils.js +2 -0
  40. package/dist/components/query-builder/utils.js.map +1 -0
  41. package/dist/components/query-builder/value-editor.d.ts +6 -0
  42. package/dist/components/query-builder/value-editor.js +2 -0
  43. package/dist/components/query-builder/value-editor.js.map +1 -0
  44. package/dist/components/query-builder/value-selector.d.ts +6 -0
  45. package/dist/components/query-builder/value-selector.js +2 -0
  46. package/dist/components/query-builder/value-selector.js.map +1 -0
  47. package/dist/components/radio/index.d.ts +2 -2
  48. package/dist/components/radio/index.js +1 -1
  49. package/dist/components/radio/index.js.map +1 -1
  50. package/dist/components/search-field/index.d.ts +19 -0
  51. package/dist/components/search-field/index.js +2 -0
  52. package/dist/components/search-field/index.js.map +1 -0
  53. package/dist/components/switch/index.d.ts +1 -1
  54. package/dist/components/switch/index.js +1 -1
  55. package/dist/components/switch/index.js.map +1 -1
  56. package/dist/components/tabs/index.d.ts +33 -0
  57. package/dist/components/tabs/index.js +2 -0
  58. package/dist/components/tabs/index.js.map +1 -0
  59. package/dist/components/text-area/index.js +1 -1
  60. package/dist/components/text-area/index.js.map +1 -1
  61. package/dist/components/text-field/index.js +1 -1
  62. package/dist/components/text-field/index.js.map +1 -1
  63. package/dist/components/tooltip/index.d.ts +2 -2
  64. package/dist/components/tooltip/index.js +1 -1
  65. package/dist/components/tooltip/index.js.map +1 -1
  66. package/dist/index.css +54 -0
  67. package/dist/index.d.ts +14 -0
  68. package/dist/index.js +1 -1
  69. package/dist/lib/react.d.ts +15 -3
  70. package/dist/lib/react.js +4 -1
  71. package/dist/lib/react.js.map +1 -1
  72. package/dist/metafile-esm.json +1 -1
  73. package/dist/styles.css +439 -6
  74. package/package.json +21 -5
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,15 +328,30 @@
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
  }
@@ -344,11 +361,17 @@
344
361
  .bottom-\[20px\] {
345
362
  bottom: 20px;
346
363
  }
364
+ .left-\[7px\] {
365
+ left: 7px;
366
+ }
367
+ .left-s {
368
+ left: var(--spacing-s);
369
+ }
347
370
  .col-span-2 {
348
371
  grid-column: span 2 / span 2;
349
372
  }
350
- .col-start-2 {
351
- grid-column-start: 2;
373
+ .col-span-full {
374
+ grid-column: 1 / -1;
352
375
  }
353
376
  .container {
354
377
  width: 100%;
@@ -374,6 +397,9 @@
374
397
  .my-s {
375
398
  margin-block: var(--spacing-s);
376
399
  }
400
+ .mt-l {
401
+ margin-top: var(--spacing-l);
402
+ }
377
403
  .mt-oversized {
378
404
  margin-top: var(--spacing-oversized);
379
405
  }
@@ -383,8 +409,14 @@
383
409
  .mt-xl {
384
410
  margin-top: var(--spacing-xl);
385
411
  }
386
- .mr-xs {
387
- margin-right: var(--spacing-xs);
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);
388
420
  }
389
421
  .ml-auto {
390
422
  margin-left: auto;
@@ -407,6 +439,9 @@
407
439
  .inline-flex {
408
440
  display: inline-flex;
409
441
  }
442
+ .table {
443
+ display: table;
444
+ }
410
445
  .size-\[20px\] {
411
446
  width: 20px;
412
447
  height: 20px;
@@ -458,12 +493,21 @@
458
493
  .\[height\:var\(--icon-size\)\] {
459
494
  height: var(--icon-size);
460
495
  }
496
+ .h-\[16px\] {
497
+ height: 16px;
498
+ }
461
499
  .h-\[40px\] {
462
500
  height: 40px;
463
501
  }
464
502
  .h-\[90px\] {
465
503
  height: 90px;
466
504
  }
505
+ .h-\[600px\] {
506
+ height: 600px;
507
+ }
508
+ .h-\[800px\] {
509
+ height: 800px;
510
+ }
467
511
  .h-\[var\(--icon-size\,12px\)\] {
468
512
  height: var(--icon-size,12px);
469
513
  }
@@ -476,6 +520,9 @@
476
520
  .h-\[var\(--icon-size\,24px\)\] {
477
521
  height: var(--icon-size,24px);
478
522
  }
523
+ .h-full {
524
+ height: 100%;
525
+ }
479
526
  .h-l {
480
527
  height: var(--spacing-l);
481
528
  }
@@ -506,6 +553,12 @@
506
553
  .w-\(--trigger-width\) {
507
554
  width: var(--trigger-width);
508
555
  }
556
+ .w-\[16px\] {
557
+ width: 16px;
558
+ }
559
+ .w-\[16px\] {
560
+ width: 16px;
561
+ }
509
562
  .w-\[32px\] {
510
563
  width: 32px;
511
564
  }
@@ -536,6 +589,30 @@
536
589
  .w-\[280px\] {
537
590
  width: 280px;
538
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
+ }
539
616
  .w-\[size\] {
540
617
  width: size;
541
618
  }
@@ -569,6 +646,9 @@
569
646
  .w-content {
570
647
  width: fit-content;
571
648
  }
649
+ .w-fit {
650
+ width: fit-content;
651
+ }
572
652
  .w-full {
573
653
  width: 100%;
574
654
  }
@@ -578,18 +658,44 @@
578
658
  .max-w-\[160px\] {
579
659
  max-width: 160px;
580
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
+ }
581
676
  .min-w-l {
582
677
  min-width: var(--spacing-l);
583
678
  }
584
679
  .flex-none {
585
680
  flex: none;
586
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
+ }
587
690
  .rotate-180 {
588
691
  rotate: 180deg;
589
692
  }
590
693
  .transform {
591
694
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
592
695
  }
696
+ .animate-spin {
697
+ animation: var(--animate-spin);
698
+ }
593
699
  .cursor-crosshair {
594
700
  cursor: crosshair;
595
701
  }
@@ -611,11 +717,14 @@
611
717
  .grid-cols-3 {
612
718
  grid-template-columns: repeat(3, minmax(0, 1fr));
613
719
  }
720
+ .grid-cols-\[10px_minmax\(100px\,_1fr\)_min-content\] {
721
+ grid-template-columns: 10px minmax(100px, 1fr) min-content;
722
+ }
614
723
  .grid-cols-\[auto_1fr\] {
615
724
  grid-template-columns: auto 1fr;
616
725
  }
617
- .grid-cols-subgrid {
618
- grid-template-columns: subgrid;
726
+ .grid-cols-\[minmax\(100px\,_1fr\)_min-content\] {
727
+ grid-template-columns: minmax(100px, 1fr) min-content;
619
728
  }
620
729
  .flex-col {
621
730
  flex-direction: column;
@@ -683,6 +792,9 @@
683
792
  .gap-x-oversized {
684
793
  column-gap: var(--spacing-oversized);
685
794
  }
795
+ .gap-x-s {
796
+ column-gap: var(--spacing-s);
797
+ }
686
798
  .gap-x-xxl {
687
799
  column-gap: var(--spacing-xxl);
688
800
  }
@@ -695,6 +807,11 @@
695
807
  .gap-y-xxl {
696
808
  row-gap: var(--spacing-xxl);
697
809
  }
810
+ .truncate {
811
+ overflow: hidden;
812
+ text-overflow: ellipsis;
813
+ white-space: nowrap;
814
+ }
698
815
  .overflow-hidden {
699
816
  overflow: hidden;
700
817
  }
@@ -725,6 +842,22 @@
725
842
  .rounded-small {
726
843
  border-radius: var(--radius-small);
727
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
+ }
728
861
  .border {
729
862
  border-style: var(--tw-border-style);
730
863
  border-width: 1px;
@@ -745,6 +878,9 @@
745
878
  .border-default-dark {
746
879
  border-color: var(--color-default-dark);
747
880
  }
881
+ .border-default-light {
882
+ border-color: var(--color-default-light);
883
+ }
748
884
  .border-highlight {
749
885
  border-color: var(--color-highlight);
750
886
  }
@@ -772,6 +908,9 @@
772
908
  .border-static-light {
773
909
  border-color: var(--color-static-light);
774
910
  }
911
+ .border-transparent {
912
+ border-color: transparent;
913
+ }
775
914
  .bg-\[\#E8178A\]\/40 {
776
915
  background-color: color-mix(in oklab, #E8178A 40%, transparent);
777
916
  }
@@ -922,6 +1061,9 @@
922
1061
  .p-0 {
923
1062
  padding: var(--spacing-0);
924
1063
  }
1064
+ .p-l {
1065
+ padding: var(--spacing-l);
1066
+ }
925
1067
  .p-m {
926
1068
  padding: var(--spacing-m);
927
1069
  }
@@ -931,6 +1073,9 @@
931
1073
  .p-s {
932
1074
  padding: var(--spacing-s);
933
1075
  }
1076
+ .p-xl {
1077
+ padding: var(--spacing-xl);
1078
+ }
934
1079
  .p-xs {
935
1080
  padding: var(--spacing-xs);
936
1081
  }
@@ -949,12 +1094,21 @@
949
1094
  .py-xs {
950
1095
  padding-block: var(--spacing-xs);
951
1096
  }
1097
+ .pr-\[30px\] {
1098
+ padding-right: 30px;
1099
+ }
952
1100
  .pr-\[32px\] {
953
1101
  padding-right: 32px;
954
1102
  }
955
1103
  .pr-xl {
956
1104
  padding-right: var(--spacing-xl);
957
1105
  }
1106
+ .pl-\[32px\] {
1107
+ padding-left: 32px;
1108
+ }
1109
+ .pl-\[35px\] {
1110
+ padding-left: 35px;
1111
+ }
958
1112
  .pl-m {
959
1113
  padding-left: var(--spacing-m);
960
1114
  }
@@ -1080,6 +1234,10 @@
1080
1234
  --tw-leading: 64px;
1081
1235
  line-height: 64px;
1082
1236
  }
1237
+ .font-light {
1238
+ --tw-font-weight: var(--font-weight-light);
1239
+ font-weight: var(--font-weight-light);
1240
+ }
1083
1241
  .font-medium {
1084
1242
  --tw-font-weight: var(--font-weight-medium);
1085
1243
  font-weight: var(--font-weight-medium);
@@ -1130,6 +1288,10 @@
1130
1288
  color: var(--color-interactive-default);
1131
1289
  --icon-color: var(--color-interactive-default);
1132
1290
  }
1291
+ .fg-interactive-hover {
1292
+ color: var(--color-interactive-hover);
1293
+ --icon-color: var(--color-interactive-hover);
1294
+ }
1133
1295
  .fg-interactive-hover-light {
1134
1296
  color: var(--color-interactive-hover-light);
1135
1297
  --icon-color: var(--color-interactive-hover-light);
@@ -1207,6 +1369,9 @@
1207
1369
  outline-style: var(--tw-outline-style);
1208
1370
  outline-width: 1px;
1209
1371
  }
1372
+ .outline-offset-1 {
1373
+ outline-offset: 1px;
1374
+ }
1210
1375
  .outline-advisory-bold {
1211
1376
  outline-color: var(--color-advisory-bold);
1212
1377
  }
@@ -1237,6 +1402,9 @@
1237
1402
  .outline-serious {
1238
1403
  outline-color: var(--color-serious);
1239
1404
  }
1405
+ .outline-static-dark {
1406
+ outline-color: var(--color-static-dark);
1407
+ }
1240
1408
  .outline-static-light {
1241
1409
  outline-color: var(--color-static-light);
1242
1410
  }
@@ -1384,11 +1552,90 @@
1384
1552
  --icon-color: var(--color-default-light);
1385
1553
  }
1386
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
+ }
1387
1624
  .group-ai-expanded\:rotate-180 {
1388
1625
  &:is(:where(.group)[data-expanded] *) {
1389
1626
  rotate: 180deg;
1390
1627
  }
1391
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
+ }
1392
1639
  .group-ai-disabled\:bg-interactive-disabled {
1393
1640
  &:is(:where(.group)[data-disabled] *) {
1394
1641
  background-color: var(--color-interactive-disabled);
@@ -1597,6 +1844,11 @@
1597
1844
  background-color: transparent;
1598
1845
  }
1599
1846
  }
1847
+ .focus-within\:outline-highlight {
1848
+ &:focus-within {
1849
+ outline-color: var(--color-highlight);
1850
+ }
1851
+ }
1600
1852
  .hover\:bg-critical-hover {
1601
1853
  &:hover {
1602
1854
  @media (hover: hover) {
@@ -1684,6 +1936,14 @@
1684
1936
  }
1685
1937
  }
1686
1938
  }
1939
+ .hover\:outline-solid {
1940
+ &:hover {
1941
+ @media (hover: hover) {
1942
+ --tw-outline-style: solid;
1943
+ outline-style: solid;
1944
+ }
1945
+ }
1946
+ }
1687
1947
  .hover\:icon-default-light {
1688
1948
  &:hover {
1689
1949
  @media (hover: hover) {
@@ -1731,6 +1991,11 @@
1731
1991
  }
1732
1992
  }
1733
1993
  }
1994
+ .focus\:bg-highlight {
1995
+ &:focus {
1996
+ background-color: var(--color-highlight);
1997
+ }
1998
+ }
1734
1999
  .focus\:bg-interactive-disabled {
1735
2000
  &:focus {
1736
2001
  background-color: var(--color-interactive-disabled);
@@ -1762,6 +2027,11 @@
1762
2027
  --icon-color: var(--color-disabled);
1763
2028
  }
1764
2029
  }
2030
+ .focus\:text-inverse-light {
2031
+ &:focus {
2032
+ color: var(--color-inverse-light);
2033
+ }
2034
+ }
1765
2035
  .focus\:outline-highlight {
1766
2036
  &:focus {
1767
2037
  outline-color: var(--color-highlight);
@@ -1777,6 +2047,23 @@
1777
2047
  outline-color: var(--color-interactive-hover);
1778
2048
  }
1779
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
+ }
1780
2067
  .focus\:icon-default-light {
1781
2068
  &:focus {
1782
2069
  --icon-color: var(--color-default-light);
@@ -1798,6 +2085,17 @@
1798
2085
  }
1799
2086
  }
1800
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
+ }
1801
2099
  .\*\*\:data-\[slot\=description\]\:text-body-xs {
1802
2100
  :is(& *) {
1803
2101
  &[data-slot="description"] {
@@ -1874,6 +2172,21 @@
1874
2172
  grid-template-columns: repeat(4, minmax(0, 1fr));
1875
2173
  }
1876
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
+ }
1877
2190
  .ai-focus\:bg-highlight-bold {
1878
2191
  &[data-focused] {
1879
2192
  background-color: var(--color-highlight-bold);
@@ -2125,6 +2438,44 @@
2125
2438
  }
2126
2439
  }
2127
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
+ }
2128
2479
  }
2129
2480
  :root {
2130
2481
  --neutral-01: #ffffff;
@@ -2221,6 +2572,77 @@
2221
2572
  --button-xs-size: 10px;
2222
2573
  --button-xs-height: 12px;
2223
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
+ }
2224
2646
  @property --tw-rotate-x {
2225
2647
  syntax: "*";
2226
2648
  inherits: false;
@@ -2382,9 +2804,20 @@
2382
2804
  initial-value: "";
2383
2805
  inherits: false;
2384
2806
  }
2807
+ @keyframes spin {
2808
+ to {
2809
+ transform: rotate(360deg);
2810
+ }
2811
+ }
2385
2812
  @layer properties {
2386
2813
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
2387
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;
2388
2821
  --tw-rotate-x: initial;
2389
2822
  --tw-rotate-y: initial;
2390
2823
  --tw-rotate-z: initial;