@proveanything/smartlinks-utils-ui 1.13.8 → 1.13.13

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 (47) hide show
  1. package/README.md +6 -6
  2. package/dist/ErrorBoundary-J9iKgF_H.d.ts +40 -0
  3. package/dist/{chunk-OTJV62XV.js → chunk-5ZQT2GGU.js} +5 -5
  4. package/dist/chunk-5ZQT2GGU.js.map +1 -0
  5. package/dist/{chunk-4LHF5JB7.js → chunk-DH5HG5DW.js} +15 -6
  6. package/dist/chunk-DH5HG5DW.js.map +1 -0
  7. package/dist/{chunk-E3GQ6LNZ.js → chunk-I3T36FSI.js} +528 -49
  8. package/dist/chunk-I3T36FSI.js.map +1 -0
  9. package/dist/{chunk-7UBXTFZQ.js → chunk-JNCRSL2H.js} +13 -12
  10. package/dist/chunk-JNCRSL2H.js.map +1 -0
  11. package/dist/{chunk-JMCV6FOW.js → chunk-WVCNIX7N.js} +3 -3
  12. package/dist/{chunk-JMCV6FOW.js.map → chunk-WVCNIX7N.js.map} +1 -1
  13. package/dist/{chunk-3RRHM4LP.js → chunk-XASZS7EA.js} +131 -4
  14. package/dist/chunk-XASZS7EA.js.map +1 -0
  15. package/dist/components/AssetPicker/index.css +34 -0
  16. package/dist/components/AssetPicker/index.css.map +1 -1
  17. package/dist/components/AssetPicker/index.js +1 -1
  18. package/dist/components/ConditionsEditor/index.css +34 -0
  19. package/dist/components/ConditionsEditor/index.css.map +1 -1
  20. package/dist/components/ConditionsEditor/index.d.ts +2 -2
  21. package/dist/components/ConditionsEditor/index.js +2 -2
  22. package/dist/components/FacetRuleEditor/index.d.ts +1 -1
  23. package/dist/components/FacetRuleEditor/index.js +2 -2
  24. package/dist/components/FontPicker/index.css +34 -0
  25. package/dist/components/FontPicker/index.css.map +1 -1
  26. package/dist/components/FontPicker/index.js +1 -1
  27. package/dist/components/IconPicker/index.css +34 -0
  28. package/dist/components/IconPicker/index.css.map +1 -1
  29. package/dist/components/LinkPicker/index.css +34 -0
  30. package/dist/components/LinkPicker/index.css.map +1 -1
  31. package/dist/components/RecordsAdmin/index.css +34 -0
  32. package/dist/components/RecordsAdmin/index.css.map +1 -1
  33. package/dist/components/RecordsAdmin/index.d.ts +1 -0
  34. package/dist/components/RecordsAdmin/index.js +15 -11
  35. package/dist/components/RecordsAdmin/index.js.map +1 -1
  36. package/dist/index.css +34 -0
  37. package/dist/index.css.map +1 -1
  38. package/dist/index.d.ts +2 -1
  39. package/dist/index.js +7 -7
  40. package/dist/index.js.map +1 -1
  41. package/dist/{types-a2DdgZ2H.d.ts → types-BLqki3Zy.d.ts} +11 -0
  42. package/package.json +3 -3
  43. package/dist/chunk-3RRHM4LP.js.map +0 -1
  44. package/dist/chunk-4LHF5JB7.js.map +0 -1
  45. package/dist/chunk-7UBXTFZQ.js.map +0 -1
  46. package/dist/chunk-E3GQ6LNZ.js.map +0 -1
  47. package/dist/chunk-OTJV62XV.js.map +0 -1
@@ -25,6 +25,9 @@
25
25
  .static {
26
26
  position: static;
27
27
  }
28
+ .\!fixed {
29
+ position: fixed !important;
30
+ }
28
31
  .fixed {
29
32
  position: fixed;
30
33
  }
@@ -277,6 +280,9 @@
277
280
  .h-24 {
278
281
  height: 6rem;
279
282
  }
283
+ .h-28 {
284
+ height: 7rem;
285
+ }
280
286
  .h-3 {
281
287
  height: 0.75rem;
282
288
  }
@@ -355,6 +361,9 @@
355
361
  .w-24 {
356
362
  width: 6rem;
357
363
  }
364
+ .w-28 {
365
+ width: 7rem;
366
+ }
358
367
  .w-3 {
359
368
  width: 0.75rem;
360
369
  }
@@ -554,6 +563,9 @@
554
563
  .items-center {
555
564
  align-items: center;
556
565
  }
566
+ .items-baseline {
567
+ align-items: baseline;
568
+ }
557
569
  .justify-end {
558
570
  justify-content: flex-end;
559
571
  }
@@ -621,6 +633,9 @@
621
633
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
622
634
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
623
635
  }
636
+ .divide-border > :not([hidden]) ~ :not([hidden]) {
637
+ border-color: hsl(var(--border));
638
+ }
624
639
  .self-start {
625
640
  align-self: flex-start;
626
641
  }
@@ -686,6 +701,9 @@
686
701
  .border-dashed {
687
702
  border-style: dashed;
688
703
  }
704
+ .border-amber-500\/40 {
705
+ border-color: rgb(245 158 11 / 0.4);
706
+ }
689
707
  .border-background {
690
708
  border-color: hsl(var(--background));
691
709
  }
@@ -702,6 +720,9 @@
702
720
  .border-destructive {
703
721
  border-color: hsl(var(--destructive));
704
722
  }
723
+ .border-destructive\/40 {
724
+ border-color: hsl(var(--destructive) / 0.4);
725
+ }
705
726
  .border-destructive\/50 {
706
727
  border-color: hsl(var(--destructive) / 0.5);
707
728
  }
@@ -739,6 +760,9 @@
739
760
  --tw-bg-opacity: 1;
740
761
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
741
762
  }
763
+ .bg-amber-500\/10 {
764
+ background-color: rgb(245 158 11 / 0.1);
765
+ }
742
766
  .bg-background {
743
767
  background-color: hsl(var(--background));
744
768
  }
@@ -1010,6 +1034,9 @@
1010
1034
  .text-center {
1011
1035
  text-align: center;
1012
1036
  }
1037
+ .text-right {
1038
+ text-align: right;
1039
+ }
1013
1040
  .font-mono {
1014
1041
  font-family:
1015
1042
  ui-monospace,
@@ -1457,6 +1484,9 @@
1457
1484
  .hover\:underline:hover {
1458
1485
  text-decoration-line: underline;
1459
1486
  }
1487
+ .hover\:no-underline:hover {
1488
+ text-decoration-line: none;
1489
+ }
1460
1490
  .hover\:opacity-100:hover {
1461
1491
  opacity: 1;
1462
1492
  }
@@ -1632,6 +1662,10 @@
1632
1662
  --tw-text-opacity: 1;
1633
1663
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
1634
1664
  }
1665
+ .dark\:text-emerald-400 {
1666
+ --tw-text-opacity: 1;
1667
+ color: rgb(52 211 153 / var(--tw-text-opacity, 1));
1668
+ }
1635
1669
  .dark\:text-gray-100 {
1636
1670
  --tw-text-opacity: 1;
1637
1671
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));