@select-org/select-post-builder 1.0.7 → 1.0.8

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.
@@ -1362,10 +1362,6 @@ body {
1362
1362
  margin-top: auto;
1363
1363
  }
1364
1364
 
1365
- [data-theme="select-post-builder"] .mr-2 {
1366
- margin-right: calc(var(--spacing) * 2);
1367
- }
1368
-
1369
1365
  [data-theme="select-post-builder"] .mb-2 {
1370
1366
  margin-bottom: calc(var(--spacing) * 2);
1371
1367
  }
@@ -1596,10 +1592,6 @@ body {
1596
1592
  height: 1px;
1597
1593
  }
1598
1594
 
1599
- [data-theme="select-post-builder"] .\!max-h-\[calc\(100dvh-7rem\)\] {
1600
- max-height: calc(100dvh - 7rem) !important;
1601
- }
1602
-
1603
1595
  [data-theme="select-post-builder"] .max-h-\(--radix-dropdown-menu-content-available-height\) {
1604
1596
  max-height: var(--radix-dropdown-menu-content-available-height);
1605
1597
  }
@@ -1616,6 +1608,10 @@ body {
1616
1608
  max-height: calc(100dvh - 7rem);
1617
1609
  }
1618
1610
 
1611
+ [data-theme="select-post-builder"] .max-h-\[calc\(100dvh-7rem\)\]\! {
1612
+ max-height: calc(100dvh - 7rem) !important;
1613
+ }
1614
+
1619
1615
  [data-theme="select-post-builder"] .max-h-full {
1620
1616
  max-height: 100%;
1621
1617
  }
@@ -1824,6 +1820,10 @@ body {
1824
1820
  cursor: grab;
1825
1821
  }
1826
1822
 
1823
+ [data-theme="select-post-builder"] .cursor-not-allowed {
1824
+ cursor: not-allowed;
1825
+ }
1826
+
1827
1827
  [data-theme="select-post-builder"] .cursor-pointer {
1828
1828
  cursor: pointer;
1829
1829
  }
@@ -2114,10 +2114,16 @@ body {
2114
2114
  }
2115
2115
  }
2116
2116
 
2117
- [data-theme="select-post-builder"] .border-primary {
2117
+ [data-theme="select-post-builder"] .border-primary, [data-theme="select-post-builder"] .border-primary\/50 {
2118
2118
  border-color: var(--primary);
2119
2119
  }
2120
2120
 
2121
+ @supports (color: color-mix(in lab, red, red)) {
2122
+ [data-theme="select-post-builder"] .border-primary\/50 {
2123
+ border-color: color-mix(in oklab, var(--primary) 50%, transparent);
2124
+ }
2125
+ }
2126
+
2121
2127
  [data-theme="select-post-builder"] .border-transparent {
2122
2128
  border-color: #0000;
2123
2129
  }
@@ -2274,6 +2280,16 @@ body {
2274
2280
  background-color: var(--primary-send);
2275
2281
  }
2276
2282
 
2283
+ [data-theme="select-post-builder"] .bg-primary\/5 {
2284
+ background-color: var(--primary);
2285
+ }
2286
+
2287
+ @supports (color: color-mix(in lab, red, red)) {
2288
+ [data-theme="select-post-builder"] .bg-primary\/5 {
2289
+ background-color: color-mix(in oklab, var(--primary) 5%, transparent);
2290
+ }
2291
+ }
2292
+
2277
2293
  [data-theme="select-post-builder"] .bg-primary\/10 {
2278
2294
  background-color: var(--primary);
2279
2295
  }
@@ -2793,6 +2809,10 @@ body {
2793
2809
  opacity: .7;
2794
2810
  }
2795
2811
 
2812
+ [data-theme="select-post-builder"] .opacity-75 {
2813
+ opacity: .75;
2814
+ }
2815
+
2796
2816
  [data-theme="select-post-builder"] .opacity-100 {
2797
2817
  opacity: 1;
2798
2818
  }
@@ -3191,16 +3211,6 @@ body {
3191
3211
  border-color: var(--accent);
3192
3212
  }
3193
3213
 
3194
- [data-theme="select-post-builder"] .hover\:border-destructive\/10:hover {
3195
- border-color: var(--destructive);
3196
- }
3197
-
3198
- @supports (color: color-mix(in lab, red, red)) {
3199
- [data-theme="select-post-builder"] .hover\:border-destructive\/10:hover {
3200
- border-color: color-mix(in oklab, var(--destructive) 10%, transparent);
3201
- }
3202
- }
3203
-
3204
3214
  [data-theme="select-post-builder"] .hover\:border-foreground\/20:hover {
3205
3215
  border-color: var(--foreground);
3206
3216
  }
@@ -4437,6 +4447,35 @@ body {
4437
4447
  color: var(--color-blue-500);
4438
4448
  }
4439
4449
 
4450
+ [data-theme="select-post-builder"] .prose-blockquote\:my-4 :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
4451
+ margin-block: calc(var(--spacing) * 4);
4452
+ }
4453
+
4454
+ [data-theme="select-post-builder"] .prose-blockquote\:border-s-4 :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
4455
+ border-inline-start-style: var(--tw-border-style);
4456
+ border-inline-start-width: 4px;
4457
+ }
4458
+
4459
+ [data-theme="select-post-builder"] .prose-blockquote\:border-gray-300 :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
4460
+ border-color: var(--color-gray-300);
4461
+ }
4462
+
4463
+ [data-theme="select-post-builder"] .prose-blockquote\:bg-gray-50 :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
4464
+ background-color: var(--color-gray-50);
4465
+ }
4466
+
4467
+ [data-theme="select-post-builder"] .prose-blockquote\:p-4 :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
4468
+ padding: calc(var(--spacing) * 4);
4469
+ }
4470
+
4471
+ [data-theme="select-post-builder"] .prose-blockquote\:dark\:border-gray-500 :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)):is(.dark *) {
4472
+ border-color: var(--color-gray-500);
4473
+ }
4474
+
4475
+ [data-theme="select-post-builder"] .prose-blockquote\:dark\:bg-gray-800 :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)):is(.dark *) {
4476
+ background-color: var(--color-gray-800);
4477
+ }
4478
+
4440
4479
  [data-theme="select-post-builder"] .prose-figcaption\:text-xs :where(figcaption):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
4441
4480
  font-size: var(--text-xs);
4442
4481
  line-height: var(--tw-leading, var(--text-xs--line-height));
@@ -4631,6 +4670,33 @@ body {
4631
4670
  border-radius: calc(var(--radius) - 5px);
4632
4671
  }
4633
4672
 
4673
+ [data-theme="select-post-builder"] .prose-blockquote\:\[\&\>p\]\:text-xl :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) > p {
4674
+ font-size: var(--text-xl);
4675
+ line-height: var(--tw-leading, var(--text-xl--line-height));
4676
+ }
4677
+
4678
+ [data-theme="select-post-builder"] .prose-blockquote\:\[\&\>p\]\:leading-relaxed :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) > p {
4679
+ --tw-leading: var(--leading-relaxed);
4680
+ line-height: var(--leading-relaxed);
4681
+ }
4682
+
4683
+ [data-theme="select-post-builder"] .prose-blockquote\:\[\&\>p\]\:font-medium :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) > p {
4684
+ --tw-font-weight: var(--font-weight-medium);
4685
+ font-weight: var(--font-weight-medium);
4686
+ }
4687
+
4688
+ [data-theme="select-post-builder"] .prose-blockquote\:\[\&\>p\]\:text-gray-900 :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) > p {
4689
+ color: var(--color-gray-900);
4690
+ }
4691
+
4692
+ [data-theme="select-post-builder"] .prose-blockquote\:\[\&\>p\]\:italic :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) > p {
4693
+ font-style: italic;
4694
+ }
4695
+
4696
+ [data-theme="select-post-builder"] .prose-blockquote\:\[\&\>p\]\:dark\:text-white :where(blockquote):not(:where([class~="not-prose"], [class~="not-prose"] *)) > p:is(.dark *) {
4697
+ color: var(--color-white);
4698
+ }
4699
+
4634
4700
  [data-theme="select-post-builder"] .\[\&\>svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3\.5 > svg:not([class*="size-"]) {
4635
4701
  width: calc(var(--spacing) * 3.5);
4636
4702
  height: calc(var(--spacing) * 3.5);