@proveanything/smartlinks-utils-ui 0.12.6 → 0.12.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.
- package/dist/chunk-WCUKTVWC.js +382 -0
- package/dist/chunk-WCUKTVWC.js.map +1 -0
- package/dist/components/AssetPicker/index.css +14 -6
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.css +14 -6
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.js +1 -1
- package/dist/components/FontPicker/index.css +14 -6
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +14 -6
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/LinkPicker/index.css +3990 -0
- package/dist/components/LinkPicker/index.css.map +1 -0
- package/dist/components/LinkPicker/index.d.ts +131 -0
- package/dist/components/LinkPicker/index.js +6 -0
- package/dist/components/LinkPicker/index.js.map +1 -0
- package/dist/components/RecordsAdmin/index.css +14 -6
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +44 -3
- package/dist/components/RecordsAdmin/index.js +772 -392
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +14 -6
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +5 -1
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
.collapse {
|
|
23
23
|
visibility: collapse;
|
|
24
24
|
}
|
|
25
|
+
.static {
|
|
26
|
+
position: static;
|
|
27
|
+
}
|
|
25
28
|
.fixed {
|
|
26
29
|
position: fixed;
|
|
27
30
|
}
|
|
@@ -828,6 +831,10 @@
|
|
|
828
831
|
padding-top: 1rem;
|
|
829
832
|
padding-bottom: 1rem;
|
|
830
833
|
}
|
|
834
|
+
.py-6 {
|
|
835
|
+
padding-top: 1.5rem;
|
|
836
|
+
padding-bottom: 1.5rem;
|
|
837
|
+
}
|
|
831
838
|
.pb-1 {
|
|
832
839
|
padding-bottom: 0.25rem;
|
|
833
840
|
}
|
|
@@ -3673,26 +3680,27 @@
|
|
|
3673
3680
|
transform: translateY(-50%);
|
|
3674
3681
|
z-index: 4;
|
|
3675
3682
|
display: inline-flex;
|
|
3683
|
+
width: auto;
|
|
3684
|
+
max-width: -moz-max-content;
|
|
3685
|
+
max-width: max-content;
|
|
3686
|
+
box-sizing: content-box;
|
|
3676
3687
|
align-items: center;
|
|
3677
3688
|
justify-content: center;
|
|
3678
3689
|
gap: 0.4rem;
|
|
3679
|
-
padding: 0.
|
|
3690
|
+
padding: 0.65rem 0.45rem;
|
|
3680
3691
|
background: hsl(var(--ra-accent));
|
|
3681
3692
|
color: hsl(var(--ra-accent-fg, 0 0% 100%));
|
|
3682
3693
|
border: 1px solid hsl(var(--ra-accent));
|
|
3683
3694
|
border-radius: 999px;
|
|
3684
3695
|
box-shadow: 0 1px 2px hsl(0 0% 0% / 0.08), 0 8px 18px -8px hsl(var(--ra-accent) / 0.55);
|
|
3685
3696
|
cursor: pointer;
|
|
3686
|
-
transition:
|
|
3687
|
-
transform .14s ease,
|
|
3688
|
-
box-shadow .14s ease,
|
|
3689
|
-
background .12s ease,
|
|
3690
|
-
filter .12s ease;
|
|
3697
|
+
transition: filter .12s ease, box-shadow .12s ease;
|
|
3691
3698
|
writing-mode: vertical-rl;
|
|
3692
3699
|
font-size: 0.7rem;
|
|
3693
3700
|
font-weight: 600;
|
|
3694
3701
|
letter-spacing: 0.06em;
|
|
3695
3702
|
text-transform: uppercase;
|
|
3703
|
+
white-space: nowrap;
|
|
3696
3704
|
}
|
|
3697
3705
|
.ra-shell.ra-preview-reopen--floating,
|
|
3698
3706
|
.ra-preview-reopen--floating {
|