@proveanything/smartlinks-utils-ui 0.12.4 → 0.12.6
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 +17 -2
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.css +17 -2
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/FontPicker/index.css +17 -2
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +17 -2
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.css +17 -2
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +8 -0
- package/dist/components/RecordsAdmin/index.js +392 -34
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +17 -2
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
.z-50 {
|
|
99
99
|
z-index: 50;
|
|
100
100
|
}
|
|
101
|
+
.z-\[1000\] {
|
|
102
|
+
z-index: 1000;
|
|
103
|
+
}
|
|
101
104
|
.col-span-2 {
|
|
102
105
|
grid-column: span 2 / span 2;
|
|
103
106
|
}
|
|
@@ -129,6 +132,9 @@
|
|
|
129
132
|
.mb-1 {
|
|
130
133
|
margin-bottom: 0.25rem;
|
|
131
134
|
}
|
|
135
|
+
.mb-1\.5 {
|
|
136
|
+
margin-bottom: 0.375rem;
|
|
137
|
+
}
|
|
132
138
|
.mb-2 {
|
|
133
139
|
margin-bottom: 0.5rem;
|
|
134
140
|
}
|
|
@@ -264,6 +270,9 @@
|
|
|
264
270
|
.max-h-\[85vh\] {
|
|
265
271
|
max-height: 85vh;
|
|
266
272
|
}
|
|
273
|
+
.max-h-\[min\(36rem\,calc\(100vh-2rem\)\)\] {
|
|
274
|
+
max-height: min(36rem, calc(100vh - 2rem));
|
|
275
|
+
}
|
|
267
276
|
.min-h-0 {
|
|
268
277
|
min-height: 0px;
|
|
269
278
|
}
|
|
@@ -309,6 +318,9 @@
|
|
|
309
318
|
.w-9 {
|
|
310
319
|
width: 2.25rem;
|
|
311
320
|
}
|
|
321
|
+
.w-\[min\(28rem\,calc\(100vw-2rem\)\)\] {
|
|
322
|
+
width: min(28rem, calc(100vw - 2rem));
|
|
323
|
+
}
|
|
312
324
|
.w-full {
|
|
313
325
|
width: 100%;
|
|
314
326
|
}
|
|
@@ -472,6 +484,9 @@
|
|
|
472
484
|
.gap-2 {
|
|
473
485
|
gap: 0.5rem;
|
|
474
486
|
}
|
|
487
|
+
.gap-2\.5 {
|
|
488
|
+
gap: 0.625rem;
|
|
489
|
+
}
|
|
475
490
|
.gap-3 {
|
|
476
491
|
gap: 0.75rem;
|
|
477
492
|
}
|
|
@@ -2925,7 +2940,7 @@
|
|
|
2925
2940
|
border-radius: 0.35rem;
|
|
2926
2941
|
background: transparent;
|
|
2927
2942
|
color: hsl(var(--ra-muted-text));
|
|
2928
|
-
opacity: 0;
|
|
2943
|
+
opacity: 0.72;
|
|
2929
2944
|
transition:
|
|
2930
2945
|
opacity .15s ease,
|
|
2931
2946
|
background .15s ease,
|
|
@@ -3445,7 +3460,7 @@
|
|
|
3445
3460
|
display: flex;
|
|
3446
3461
|
align-items: center;
|
|
3447
3462
|
padding-right: 0.35rem;
|
|
3448
|
-
opacity:
|
|
3463
|
+
opacity: 1;
|
|
3449
3464
|
transition: opacity .12s ease;
|
|
3450
3465
|
}
|
|
3451
3466
|
.ra-shell .ra-sibling-list .ra-row-shell:hover > .ra-row-menu-wrap,
|