baaz-custom-components 5.0.27 → 5.0.28

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.css CHANGED
@@ -46,6 +46,7 @@
46
46
  --tracking-wider: 0.05em;
47
47
  --tracking-widest: 0.1em;
48
48
  --radius-xs: 0.125rem;
49
+ --radius-2xl: 1rem;
49
50
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
50
51
  --animate-spin: spin 1s linear infinite;
51
52
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
@@ -543,6 +544,9 @@
543
544
  .max-h-\(--radix-select-content-available-height\) {
544
545
  max-height: var(--radix-select-content-available-height);
545
546
  }
547
+ .max-h-\[85vh\] {
548
+ max-height: 85vh;
549
+ }
546
550
  .min-h-0 {
547
551
  min-height: calc(var(--spacing) * 0);
548
552
  }
@@ -585,9 +589,6 @@
585
589
  .w-\[40px\] {
586
590
  width: 40px;
587
591
  }
588
- .w-\[90px\] {
589
- width: 90px;
590
- }
591
592
  .w-\[94\%\] {
592
593
  width: 94%;
593
594
  }
@@ -597,9 +598,6 @@
597
598
  .w-\[250px\] {
598
599
  width: 250px;
599
600
  }
600
- .w-\[650px\] {
601
- width: 650px;
602
- }
603
601
  .w-auto {
604
602
  width: auto;
605
603
  }
@@ -615,9 +613,6 @@
615
613
  .max-w-\(--skeleton-width\) {
616
614
  max-width: var(--skeleton-width);
617
615
  }
618
- .max-w-\[95vw\] {
619
- max-width: 95vw;
620
- }
621
616
  .max-w-\[calc\(100\%-2rem\)\] {
622
617
  max-width: calc(100% - 2rem);
623
618
  }
@@ -729,12 +724,18 @@
729
724
  .items-end {
730
725
  align-items: flex-end;
731
726
  }
727
+ .items-start {
728
+ align-items: flex-start;
729
+ }
732
730
  .justify-between {
733
731
  justify-content: space-between;
734
732
  }
735
733
  .justify-center {
736
734
  justify-content: center;
737
735
  }
736
+ .justify-end {
737
+ justify-content: flex-end;
738
+ }
738
739
  .gap-1 {
739
740
  gap: calc(var(--spacing) * 1);
740
741
  }
@@ -803,6 +804,10 @@
803
804
  .rounded-xs {
804
805
  border-radius: var(--radius-xs);
805
806
  }
807
+ .rounded-t-2xl {
808
+ border-top-left-radius: var(--radius-2xl);
809
+ border-top-right-radius: var(--radius-2xl);
810
+ }
806
811
  .rounded-tl-md {
807
812
  border-top-left-radius: calc(var(--radius) - 2px);
808
813
  }
@@ -887,6 +892,12 @@
887
892
  background-color: color-mix(in oklab, var(--background) 60%, transparent);
888
893
  }
889
894
  }
895
+ .bg-black\/40 {
896
+ background-color: color-mix(in srgb, #000 40%, transparent);
897
+ @supports (color: color-mix(in lab, red, red)) {
898
+ background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
899
+ }
900
+ }
890
901
  .bg-black\/50 {
891
902
  background-color: color-mix(in srgb, #000 50%, transparent);
892
903
  @supports (color: color-mix(in lab, red, red)) {
@@ -1223,6 +1234,15 @@
1223
1234
  var(--tw-ring-shadow),
1224
1235
  var(--tw-shadow);
1225
1236
  }
1237
+ .shadow-xl {
1238
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1239
+ box-shadow:
1240
+ var(--tw-inset-shadow),
1241
+ var(--tw-inset-ring-shadow),
1242
+ var(--tw-ring-offset-shadow),
1243
+ var(--tw-ring-shadow),
1244
+ var(--tw-shadow);
1245
+ }
1226
1246
  .shadow-xs {
1227
1247
  --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
1228
1248
  box-shadow:
@@ -2559,6 +2579,16 @@
2559
2579
  display: flex;
2560
2580
  }
2561
2581
  }
2582
+ .sm\:w-\[40px\] {
2583
+ @media (width >= 40rem) {
2584
+ width: 40px;
2585
+ }
2586
+ }
2587
+ .sm\:w-\[90px\] {
2588
+ @media (width >= 40rem) {
2589
+ width: 90px;
2590
+ }
2591
+ }
2562
2592
  .sm\:max-w-lg {
2563
2593
  @media (width >= 40rem) {
2564
2594
  max-width: var(--container-lg);
@@ -2569,11 +2599,26 @@
2569
2599
  max-width: var(--container-sm);
2570
2600
  }
2571
2601
  }
2602
+ .sm\:min-w-\[8rem\] {
2603
+ @media (width >= 40rem) {
2604
+ min-width: 8rem;
2605
+ }
2606
+ }
2572
2607
  .sm\:flex-row {
2573
2608
  @media (width >= 40rem) {
2574
2609
  flex-direction: row;
2575
2610
  }
2576
2611
  }
2612
+ .sm\:items-center {
2613
+ @media (width >= 40rem) {
2614
+ align-items: center;
2615
+ }
2616
+ }
2617
+ .sm\:justify-center {
2618
+ @media (width >= 40rem) {
2619
+ justify-content: center;
2620
+ }
2621
+ }
2577
2622
  .sm\:justify-end {
2578
2623
  @media (width >= 40rem) {
2579
2624
  justify-content: flex-end;
@@ -2594,6 +2639,26 @@
2594
2639
  position: absolute;
2595
2640
  }
2596
2641
  }
2642
+ .md\:top-full {
2643
+ @media (width >= 48rem) {
2644
+ top: 100%;
2645
+ }
2646
+ }
2647
+ .md\:right-0 {
2648
+ @media (width >= 48rem) {
2649
+ right: calc(var(--spacing) * 0);
2650
+ }
2651
+ }
2652
+ .md\:bottom-auto {
2653
+ @media (width >= 48rem) {
2654
+ bottom: auto;
2655
+ }
2656
+ }
2657
+ .md\:left-0 {
2658
+ @media (width >= 48rem) {
2659
+ left: calc(var(--spacing) * 0);
2660
+ }
2661
+ }
2597
2662
  .md\:block {
2598
2663
  @media (width >= 48rem) {
2599
2664
  display: block;
@@ -2604,6 +2669,16 @@
2604
2669
  display: flex;
2605
2670
  }
2606
2671
  }
2672
+ .md\:hidden {
2673
+ @media (width >= 48rem) {
2674
+ display: none;
2675
+ }
2676
+ }
2677
+ .md\:w-\[700px\] {
2678
+ @media (width >= 48rem) {
2679
+ width: 700px;
2680
+ }
2681
+ }
2607
2682
  .md\:w-\[var\(--radix-navigation-menu-viewport-width\)\] {
2608
2683
  @media (width >= 48rem) {
2609
2684
  width: var(--radix-navigation-menu-viewport-width);
@@ -2614,6 +2689,36 @@
2614
2689
  width: auto;
2615
2690
  }
2616
2691
  }
2692
+ .md\:max-w-\[95vw\] {
2693
+ @media (width >= 48rem) {
2694
+ max-width: 95vw;
2695
+ }
2696
+ }
2697
+ .md\:flex-row {
2698
+ @media (width >= 48rem) {
2699
+ flex-direction: row;
2700
+ }
2701
+ }
2702
+ .md\:items-center {
2703
+ @media (width >= 48rem) {
2704
+ align-items: center;
2705
+ }
2706
+ }
2707
+ .md\:gap-2 {
2708
+ @media (width >= 48rem) {
2709
+ gap: calc(var(--spacing) * 2);
2710
+ }
2711
+ }
2712
+ .md\:rounded-md {
2713
+ @media (width >= 48rem) {
2714
+ border-radius: calc(var(--radius) - 2px);
2715
+ }
2716
+ }
2717
+ .md\:px-4 {
2718
+ @media (width >= 48rem) {
2719
+ padding-inline: calc(var(--spacing) * 4);
2720
+ }
2721
+ }
2617
2722
  .md\:text-sm {
2618
2723
  @media (width >= 48rem) {
2619
2724
  font-size: var(--text-sm);