@proveanything/smartlinks-utils-ui 0.11.11 → 0.12.2
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 +35 -0
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.css +35 -0
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/FontPicker/index.css +35 -0
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +35 -0
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.css +35 -0
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +310 -41
- package/dist/components/RecordsAdmin/index.js +1024 -122
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +35 -0
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2203,6 +2203,35 @@
|
|
|
2203
2203
|
transform: rotate(360deg);
|
|
2204
2204
|
}
|
|
2205
2205
|
}
|
|
2206
|
+
.ra-history-block {
|
|
2207
|
+
margin-left: 0.75rem;
|
|
2208
|
+
border-left: 2px solid hsl(var(--ra-border));
|
|
2209
|
+
padding: 0.15rem 0 0.25rem 0.5rem;
|
|
2210
|
+
}
|
|
2211
|
+
.ra-history-rows {
|
|
2212
|
+
list-style: none;
|
|
2213
|
+
margin: 0;
|
|
2214
|
+
padding: 0;
|
|
2215
|
+
}
|
|
2216
|
+
.ra-history-row {
|
|
2217
|
+
opacity: 0.65;
|
|
2218
|
+
}
|
|
2219
|
+
.ra-history-row:hover {
|
|
2220
|
+
opacity: 0.9;
|
|
2221
|
+
}
|
|
2222
|
+
.ra-history-disclosure {
|
|
2223
|
+
background: transparent;
|
|
2224
|
+
border: 0;
|
|
2225
|
+
cursor: pointer;
|
|
2226
|
+
font-size: 0.7rem;
|
|
2227
|
+
color: hsl(var(--ra-muted-text));
|
|
2228
|
+
padding: 0.25rem 0.5rem;
|
|
2229
|
+
text-align: left;
|
|
2230
|
+
}
|
|
2231
|
+
.ra-history-disclosure:hover {
|
|
2232
|
+
color: hsl(var(--ra-text));
|
|
2233
|
+
text-decoration: underline;
|
|
2234
|
+
}
|
|
2206
2235
|
.sl-ui-records-admin-styles-loaded {
|
|
2207
2236
|
--sl-ui-records-admin-styles: loaded;
|
|
2208
2237
|
}
|
|
@@ -2521,6 +2550,9 @@
|
|
|
2521
2550
|
.min-w-0 {
|
|
2522
2551
|
min-width: 0px;
|
|
2523
2552
|
}
|
|
2553
|
+
.min-w-\[10rem\] {
|
|
2554
|
+
min-width: 10rem;
|
|
2555
|
+
}
|
|
2524
2556
|
.min-w-\[12rem\] {
|
|
2525
2557
|
min-width: 12rem;
|
|
2526
2558
|
}
|
|
@@ -3127,6 +3159,9 @@
|
|
|
3127
3159
|
.italic {
|
|
3128
3160
|
font-style: italic;
|
|
3129
3161
|
}
|
|
3162
|
+
.leading-tight {
|
|
3163
|
+
line-height: 1.25;
|
|
3164
|
+
}
|
|
3130
3165
|
.tracking-wide {
|
|
3131
3166
|
letter-spacing: 0.025em;
|
|
3132
3167
|
}
|