@proveanything/smartlinks-utils-ui 0.12.4 → 0.12.5
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/components/AssetPicker/index.css +15 -0
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.css +15 -0
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/FontPicker/index.css +15 -0
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +15 -0
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.css +15 -0
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +8 -0
- package/dist/components/RecordsAdmin/index.js +370 -32
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +15 -0
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
|
@@ -2542,6 +2542,9 @@
|
|
|
2542
2542
|
.z-50 {
|
|
2543
2543
|
z-index: 50;
|
|
2544
2544
|
}
|
|
2545
|
+
.z-\[1000\] {
|
|
2546
|
+
z-index: 1000;
|
|
2547
|
+
}
|
|
2545
2548
|
.col-span-2 {
|
|
2546
2549
|
grid-column: span 2 / span 2;
|
|
2547
2550
|
}
|
|
@@ -2573,6 +2576,9 @@
|
|
|
2573
2576
|
.mb-1 {
|
|
2574
2577
|
margin-bottom: 0.25rem;
|
|
2575
2578
|
}
|
|
2579
|
+
.mb-1\.5 {
|
|
2580
|
+
margin-bottom: 0.375rem;
|
|
2581
|
+
}
|
|
2576
2582
|
.mb-2 {
|
|
2577
2583
|
margin-bottom: 0.5rem;
|
|
2578
2584
|
}
|
|
@@ -2708,6 +2714,9 @@
|
|
|
2708
2714
|
.max-h-\[85vh\] {
|
|
2709
2715
|
max-height: 85vh;
|
|
2710
2716
|
}
|
|
2717
|
+
.max-h-\[min\(36rem\,calc\(100vh-2rem\)\)\] {
|
|
2718
|
+
max-height: min(36rem, calc(100vh - 2rem));
|
|
2719
|
+
}
|
|
2711
2720
|
.min-h-0 {
|
|
2712
2721
|
min-height: 0px;
|
|
2713
2722
|
}
|
|
@@ -2753,6 +2762,9 @@
|
|
|
2753
2762
|
.w-9 {
|
|
2754
2763
|
width: 2.25rem;
|
|
2755
2764
|
}
|
|
2765
|
+
.w-\[min\(28rem\,calc\(100vw-2rem\)\)\] {
|
|
2766
|
+
width: min(28rem, calc(100vw - 2rem));
|
|
2767
|
+
}
|
|
2756
2768
|
.w-full {
|
|
2757
2769
|
width: 100%;
|
|
2758
2770
|
}
|
|
@@ -2916,6 +2928,9 @@
|
|
|
2916
2928
|
.gap-2 {
|
|
2917
2929
|
gap: 0.5rem;
|
|
2918
2930
|
}
|
|
2931
|
+
.gap-2\.5 {
|
|
2932
|
+
gap: 0.625rem;
|
|
2933
|
+
}
|
|
2919
2934
|
.gap-3 {
|
|
2920
2935
|
gap: 0.75rem;
|
|
2921
2936
|
}
|