@proveanything/smartlinks-utils-ui 1.0.1 → 1.13.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.
@@ -2561,6 +2561,12 @@
2561
2561
  .bottom-0 {
2562
2562
  bottom: 0px;
2563
2563
  }
2564
+ .bottom-1\.5 {
2565
+ bottom: 0.375rem;
2566
+ }
2567
+ .bottom-full {
2568
+ bottom: 100%;
2569
+ }
2564
2570
  .left-0 {
2565
2571
  left: 0px;
2566
2572
  }
@@ -2588,6 +2594,9 @@
2588
2594
  .right-3 {
2589
2595
  right: 0.75rem;
2590
2596
  }
2597
+ .right-4 {
2598
+ right: 1rem;
2599
+ }
2591
2600
  .top-0 {
2592
2601
  top: 0px;
2593
2602
  }
@@ -2603,6 +2612,9 @@
2603
2612
  .top-2 {
2604
2613
  top: 0.5rem;
2605
2614
  }
2615
+ .top-4 {
2616
+ top: 1rem;
2617
+ }
2606
2618
  .z-10 {
2607
2619
  z-index: 10;
2608
2620
  }
@@ -2618,6 +2630,9 @@
2618
2630
  .z-\[1000\] {
2619
2631
  z-index: 1000;
2620
2632
  }
2633
+ .z-\[100\] {
2634
+ z-index: 100;
2635
+ }
2621
2636
  .col-span-2 {
2622
2637
  grid-column: span 2 / span 2;
2623
2638
  }
@@ -2643,6 +2658,9 @@
2643
2658
  .-mb-px {
2644
2659
  margin-bottom: -1px;
2645
2660
  }
2661
+ .-mt-0\.5 {
2662
+ margin-top: -0.125rem;
2663
+ }
2646
2664
  .mb-0\.5 {
2647
2665
  margin-bottom: 0.125rem;
2648
2666
  }
@@ -2670,6 +2688,9 @@
2670
2688
  .ml-auto {
2671
2689
  margin-left: auto;
2672
2690
  }
2691
+ .mr-1 {
2692
+ margin-right: 0.25rem;
2693
+ }
2673
2694
  .mt-0\.5 {
2674
2695
  margin-top: 0.125rem;
2675
2696
  }
@@ -2769,9 +2790,6 @@
2769
2790
  .h-full {
2770
2791
  height: 100%;
2771
2792
  }
2772
- .max-h-32 {
2773
- max-height: 8rem;
2774
- }
2775
2793
  .max-h-80 {
2776
2794
  max-height: 20rem;
2777
2795
  }
@@ -2790,9 +2808,15 @@
2790
2808
  .max-h-\[min\(36rem\,calc\(100vh-2rem\)\)\] {
2791
2809
  max-height: min(36rem, calc(100vh - 2rem));
2792
2810
  }
2811
+ .max-h-full {
2812
+ max-height: 100%;
2813
+ }
2793
2814
  .min-h-0 {
2794
2815
  min-height: 0px;
2795
2816
  }
2817
+ .min-h-\[2\.5rem\] {
2818
+ min-height: 2.5rem;
2819
+ }
2796
2820
  .w-1\.5 {
2797
2821
  width: 0.375rem;
2798
2822
  }
@@ -2808,6 +2832,9 @@
2808
2832
  .w-2\.5 {
2809
2833
  width: 0.625rem;
2810
2834
  }
2835
+ .w-24 {
2836
+ width: 6rem;
2837
+ }
2811
2838
  .w-3 {
2812
2839
  width: 0.75rem;
2813
2840
  }
@@ -2835,6 +2862,9 @@
2835
2862
  .w-9 {
2836
2863
  width: 2.25rem;
2837
2864
  }
2865
+ .w-\[min\(28rem\,92vw\)\] {
2866
+ width: min(28rem, 92vw);
2867
+ }
2838
2868
  .w-\[min\(28rem\,calc\(100vw-2rem\)\)\] {
2839
2869
  width: min(28rem, calc(100vw - 2rem));
2840
2870
  }
@@ -2850,9 +2880,15 @@
2850
2880
  .min-w-\[12rem\] {
2851
2881
  min-width: 12rem;
2852
2882
  }
2883
+ .min-w-\[140px\] {
2884
+ min-width: 140px;
2885
+ }
2853
2886
  .min-w-\[200px\] {
2854
2887
  min-width: 200px;
2855
2888
  }
2889
+ .min-w-\[8rem\] {
2890
+ min-width: 8rem;
2891
+ }
2856
2892
  .max-w-2xl {
2857
2893
  max-width: 42rem;
2858
2894
  }
@@ -3050,6 +3086,9 @@
3050
3086
  .self-start {
3051
3087
  align-self: flex-start;
3052
3088
  }
3089
+ .self-center {
3090
+ align-self: center;
3091
+ }
3053
3092
  .overflow-auto {
3054
3093
  overflow: auto;
3055
3094
  }
@@ -3113,6 +3152,9 @@
3113
3152
  .border-border {
3114
3153
  border-color: hsl(var(--border));
3115
3154
  }
3155
+ .border-border\/50 {
3156
+ border-color: hsl(var(--border) / 0.5);
3157
+ }
3116
3158
  .border-destructive {
3117
3159
  border-color: hsl(var(--destructive));
3118
3160
  }
@@ -3134,6 +3176,9 @@
3134
3176
  .border-primary {
3135
3177
  border-color: hsl(var(--primary));
3136
3178
  }
3179
+ .border-primary\/30 {
3180
+ border-color: hsl(var(--primary) / 0.3);
3181
+ }
3137
3182
  .border-primary\/50 {
3138
3183
  border-color: hsl(var(--primary) / 0.5);
3139
3184
  }
@@ -3156,9 +3201,21 @@
3156
3201
  .bg-background\/80 {
3157
3202
  background-color: hsl(var(--background) / 0.8);
3158
3203
  }
3204
+ .bg-background\/90 {
3205
+ background-color: hsl(var(--background) / 0.9);
3206
+ }
3207
+ .bg-black\/0 {
3208
+ background-color: rgb(0 0 0 / 0);
3209
+ }
3159
3210
  .bg-black\/50 {
3160
3211
  background-color: rgb(0 0 0 / 0.5);
3161
3212
  }
3213
+ .bg-black\/60 {
3214
+ background-color: rgb(0 0 0 / 0.6);
3215
+ }
3216
+ .bg-black\/80 {
3217
+ background-color: rgb(0 0 0 / 0.8);
3218
+ }
3162
3219
  .bg-blue-100 {
3163
3220
  --tw-bg-opacity: 1;
3164
3221
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
@@ -3187,9 +3244,6 @@
3187
3244
  .bg-destructive\/5 {
3188
3245
  background-color: hsl(var(--destructive) / 0.05);
3189
3246
  }
3190
- .bg-destructive\/80 {
3191
- background-color: hsl(var(--destructive) / 0.8);
3192
- }
3193
3247
  .bg-emerald-50 {
3194
3248
  --tw-bg-opacity: 1;
3195
3249
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
@@ -3221,6 +3275,9 @@
3221
3275
  .bg-muted\/30 {
3222
3276
  background-color: hsl(var(--muted) / 0.3);
3223
3277
  }
3278
+ .bg-popover {
3279
+ background-color: hsl(var(--popover));
3280
+ }
3224
3281
  .bg-primary {
3225
3282
  background-color: hsl(var(--primary));
3226
3283
  }
@@ -3241,6 +3298,9 @@
3241
3298
  --tw-bg-opacity: 1;
3242
3299
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
3243
3300
  }
3301
+ .bg-white\/10 {
3302
+ background-color: rgb(255 255 255 / 0.1);
3303
+ }
3244
3304
  .fill-current {
3245
3305
  fill: currentColor;
3246
3306
  }
@@ -3502,9 +3562,6 @@
3502
3562
  .text-destructive {
3503
3563
  color: hsl(var(--destructive));
3504
3564
  }
3505
- .text-destructive-foreground {
3506
- color: hsl(var(--destructive-foreground));
3507
- }
3508
3565
  .text-emerald-700 {
3509
3566
  --tw-text-opacity: 1;
3510
3567
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
@@ -3542,6 +3599,9 @@
3542
3599
  .text-muted-foreground\/40 {
3543
3600
  color: hsl(var(--muted-foreground) / 0.4);
3544
3601
  }
3602
+ .text-popover-foreground {
3603
+ color: hsl(var(--popover-foreground));
3604
+ }
3545
3605
  .text-primary {
3546
3606
  color: hsl(var(--primary));
3547
3607
  }
@@ -3608,6 +3668,14 @@
3608
3668
  var(--tw-ring-shadow, 0 0 #0000),
3609
3669
  var(--tw-shadow);
3610
3670
  }
3671
+ .shadow-md {
3672
+ --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
3673
+ --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
3674
+ box-shadow:
3675
+ var(--tw-ring-offset-shadow, 0 0 #0000),
3676
+ var(--tw-ring-shadow, 0 0 #0000),
3677
+ var(--tw-shadow);
3678
+ }
3611
3679
  .shadow-sm {
3612
3680
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
3613
3681
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
@@ -3757,6 +3825,9 @@
3757
3825
  .hover\:bg-accent\/50:hover {
3758
3826
  background-color: hsl(var(--accent) / 0.5);
3759
3827
  }
3828
+ .hover\:bg-background:hover {
3829
+ background-color: hsl(var(--background));
3830
+ }
3760
3831
  .hover\:bg-blue-100:hover {
3761
3832
  --tw-bg-opacity: 1;
3762
3833
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
@@ -3768,9 +3839,6 @@
3768
3839
  --tw-bg-opacity: 1;
3769
3840
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
3770
3841
  }
3771
- .hover\:bg-destructive:hover {
3772
- background-color: hsl(var(--destructive));
3773
- }
3774
3842
  .hover\:bg-destructive\/10:hover {
3775
3843
  background-color: hsl(var(--destructive) / 0.1);
3776
3844
  }
@@ -3803,6 +3871,9 @@
3803
3871
  --tw-bg-opacity: 1;
3804
3872
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
3805
3873
  }
3874
+ .hover\:bg-white\/20:hover {
3875
+ background-color: rgb(255 255 255 / 0.2);
3876
+ }
3806
3877
  .hover\:text-\[hsl\(var\(--sl-control-hover-fg\)\)\]:hover {
3807
3878
  color: hsl(var(--sl-control-hover-fg));
3808
3879
  }
@@ -3912,6 +3983,9 @@
3912
3983
  .disabled\:opacity-70:disabled {
3913
3984
  opacity: 0.7;
3914
3985
  }
3986
+ .group:hover .group-hover\:bg-black\/40 {
3987
+ background-color: rgb(0 0 0 / 0.4);
3988
+ }
3915
3989
  .group:hover .group-hover\:opacity-100 {
3916
3990
  opacity: 1;
3917
3991
  }