@proveanything/smartlinks-utils-ui 0.9.2 → 0.9.4
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-CBIKDA3S.js → chunk-2IQEDRSZ.js} +4 -31
- package/dist/chunk-2IQEDRSZ.js.map +1 -0
- package/dist/{chunk-KFKVGUUP.js → chunk-KA4MKRHL.js} +2 -4
- package/dist/chunk-KA4MKRHL.js.map +1 -0
- package/dist/chunk-OLYC54YT.js +59 -0
- package/dist/chunk-OLYC54YT.js.map +1 -0
- package/dist/components/AssetPicker/index.css +2189 -3
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/AssetPicker/index.js +2 -1
- package/dist/components/ConditionsEditor/index.css +2189 -3
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/FontPicker/index.css +2189 -3
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +2189 -3
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.css +75 -30
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +33 -4
- package/dist/components/RecordsAdmin/index.js +475 -176
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +2189 -3
- package/dist/index.css.map +1 -1
- package/dist/index.js +2 -2
- package/dist/records-4NN757SG.js +3 -0
- package/dist/{records-AYYQSP7E.js.map → records-4NN757SG.js.map} +1 -1
- package/package.json +1 -1
- package/dist/chunk-CBIKDA3S.js.map +0 -1
- package/dist/chunk-KFKVGUUP.js.map +0 -1
- package/dist/records-AYYQSP7E.js +0 -3
|
@@ -321,15 +321,15 @@
|
|
|
321
321
|
.max-w-4xl {
|
|
322
322
|
max-width: 56rem;
|
|
323
323
|
}
|
|
324
|
-
.max-w-\[12rem\] {
|
|
325
|
-
max-width: 12rem;
|
|
326
|
-
}
|
|
327
324
|
.max-w-\[14rem\] {
|
|
328
325
|
max-width: 14rem;
|
|
329
326
|
}
|
|
330
327
|
.max-w-\[160px\] {
|
|
331
328
|
max-width: 160px;
|
|
332
329
|
}
|
|
330
|
+
.max-w-\[18rem\] {
|
|
331
|
+
max-width: 18rem;
|
|
332
|
+
}
|
|
333
333
|
.max-w-\[200px\] {
|
|
334
334
|
max-width: 200px;
|
|
335
335
|
}
|
|
@@ -410,6 +410,9 @@
|
|
|
410
410
|
.resize-none {
|
|
411
411
|
resize: none;
|
|
412
412
|
}
|
|
413
|
+
.resize {
|
|
414
|
+
resize: both;
|
|
415
|
+
}
|
|
413
416
|
.appearance-none {
|
|
414
417
|
-webkit-appearance: none;
|
|
415
418
|
-moz-appearance: none;
|
|
@@ -2542,15 +2545,26 @@
|
|
|
2542
2545
|
overflow-y: auto;
|
|
2543
2546
|
padding: 1rem;
|
|
2544
2547
|
}
|
|
2545
|
-
.ra-confirm-root
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2548
|
+
.ra-confirm-root,
|
|
2549
|
+
.ra-shell.ra-confirm-root {
|
|
2550
|
+
position: fixed !important;
|
|
2551
|
+
inset: 0 !important;
|
|
2552
|
+
top: 0 !important;
|
|
2553
|
+
left: 0 !important;
|
|
2554
|
+
right: 0 !important;
|
|
2555
|
+
bottom: 0 !important;
|
|
2556
|
+
width: 100vw !important;
|
|
2557
|
+
height: 100vh !important;
|
|
2558
|
+
z-index: 2147483000 !important;
|
|
2559
|
+
display: flex !important;
|
|
2560
|
+
align-items: center !important;
|
|
2561
|
+
justify-content: center !important;
|
|
2552
2562
|
padding: 1rem;
|
|
2553
|
-
|
|
2563
|
+
margin: 0 !important;
|
|
2564
|
+
background: transparent !important;
|
|
2565
|
+
float: none !important;
|
|
2566
|
+
transform: none !important;
|
|
2567
|
+
pointer-events: auto;
|
|
2554
2568
|
}
|
|
2555
2569
|
.ra-confirm-root .ra-confirm-backdrop {
|
|
2556
2570
|
position: absolute;
|
|
@@ -2909,6 +2923,25 @@
|
|
|
2909
2923
|
flex-direction: column;
|
|
2910
2924
|
gap: 0.125rem;
|
|
2911
2925
|
}
|
|
2926
|
+
.ra-row-menu-portal {
|
|
2927
|
+
position: fixed !important;
|
|
2928
|
+
right: auto !important;
|
|
2929
|
+
z-index: 1000 !important;
|
|
2930
|
+
margin: 0 !important;
|
|
2931
|
+
float: none !important;
|
|
2932
|
+
top: 0;
|
|
2933
|
+
left: 0;
|
|
2934
|
+
min-width: 11rem;
|
|
2935
|
+
padding: 0.25rem;
|
|
2936
|
+
border-radius: 0.5rem;
|
|
2937
|
+
background: hsl(var(--ra-surface));
|
|
2938
|
+
border: 1px solid hsl(var(--ra-border));
|
|
2939
|
+
box-shadow: 0 12px 28px -10px hsl(0 0% 0% / 0.25);
|
|
2940
|
+
display: flex;
|
|
2941
|
+
flex-direction: column;
|
|
2942
|
+
gap: 0.125rem;
|
|
2943
|
+
color: hsl(var(--ra-text));
|
|
2944
|
+
}
|
|
2912
2945
|
.ra-shell .ra-row-menu-item {
|
|
2913
2946
|
display: inline-flex;
|
|
2914
2947
|
align-items: center;
|
|
@@ -3382,25 +3415,26 @@
|
|
|
3382
3415
|
.ra-shell .ra-preview-reopen {
|
|
3383
3416
|
position: absolute;
|
|
3384
3417
|
top: 50%;
|
|
3385
|
-
right:
|
|
3418
|
+
right: -1.25rem;
|
|
3386
3419
|
transform: translateY(-50%);
|
|
3387
3420
|
z-index: 4;
|
|
3388
3421
|
display: inline-flex;
|
|
3389
3422
|
align-items: center;
|
|
3390
3423
|
justify-content: center;
|
|
3391
3424
|
gap: 0.4rem;
|
|
3392
|
-
padding: 0.
|
|
3393
|
-
background: hsl(var(--ra-
|
|
3394
|
-
color: hsl(var(--ra-
|
|
3395
|
-
border: 1px solid hsl(var(--ra-
|
|
3396
|
-
border-
|
|
3397
|
-
|
|
3398
|
-
box-shadow: var(--ra-card-shadow);
|
|
3425
|
+
padding: 0.75rem 0.55rem;
|
|
3426
|
+
background: hsl(var(--ra-accent));
|
|
3427
|
+
color: hsl(var(--ra-accent-fg, 0 0% 100%));
|
|
3428
|
+
border: 1px solid hsl(var(--ra-accent));
|
|
3429
|
+
border-radius: 999px;
|
|
3430
|
+
box-shadow: 0 1px 2px hsl(0 0% 0% / 0.08), 0 8px 18px -8px hsl(var(--ra-accent) / 0.55);
|
|
3399
3431
|
cursor: pointer;
|
|
3400
3432
|
transition:
|
|
3401
|
-
|
|
3433
|
+
transform .14s ease,
|
|
3434
|
+
box-shadow .14s ease,
|
|
3402
3435
|
background .12s ease,
|
|
3403
|
-
|
|
3436
|
+
right .14s ease,
|
|
3437
|
+
filter .12s ease;
|
|
3404
3438
|
writing-mode: vertical-rl;
|
|
3405
3439
|
font-size: 0.7rem;
|
|
3406
3440
|
font-weight: 600;
|
|
@@ -3408,9 +3442,14 @@
|
|
|
3408
3442
|
text-transform: uppercase;
|
|
3409
3443
|
}
|
|
3410
3444
|
.ra-shell .ra-preview-reopen:hover {
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3445
|
+
right: -1.4rem;
|
|
3446
|
+
transform: translateY(-50%);
|
|
3447
|
+
filter: brightness(0.95);
|
|
3448
|
+
box-shadow: 0 2px 4px hsl(0 0% 0% / 0.10), 0 12px 24px -8px hsl(var(--ra-accent) / 0.65);
|
|
3449
|
+
}
|
|
3450
|
+
.ra-shell .ra-preview-reopen:focus-visible {
|
|
3451
|
+
outline: none;
|
|
3452
|
+
box-shadow: 0 0 0 3px var(--ra-focus-ring), 0 8px 18px -8px hsl(var(--ra-accent) / 0.55);
|
|
3414
3453
|
}
|
|
3415
3454
|
.ra-shell .ra-preview-reopen svg {
|
|
3416
3455
|
width: 0.85rem;
|
|
@@ -3525,13 +3564,16 @@
|
|
|
3525
3564
|
font-weight: 500;
|
|
3526
3565
|
}
|
|
3527
3566
|
.ra-saveall-overlay {
|
|
3528
|
-
position: fixed;
|
|
3529
|
-
inset: 0;
|
|
3530
|
-
|
|
3567
|
+
position: fixed !important;
|
|
3568
|
+
inset: 0 !important;
|
|
3569
|
+
width: 100vw !important;
|
|
3570
|
+
height: 100vh !important;
|
|
3571
|
+
margin: 0 !important;
|
|
3572
|
+
z-index: 2147483000 !important;
|
|
3531
3573
|
background: hsl(0 0% 0% / 0.45);
|
|
3532
|
-
display: flex;
|
|
3533
|
-
align-items: center;
|
|
3534
|
-
justify-content: center;
|
|
3574
|
+
display: flex !important;
|
|
3575
|
+
align-items: center !important;
|
|
3576
|
+
justify-content: center !important;
|
|
3535
3577
|
padding: 1rem;
|
|
3536
3578
|
animation: ra-confirm-fade .12s ease-out;
|
|
3537
3579
|
}
|
|
@@ -3643,4 +3685,7 @@
|
|
|
3643
3685
|
transform: rotate(360deg);
|
|
3644
3686
|
}
|
|
3645
3687
|
}
|
|
3688
|
+
.sl-ui-records-admin-styles-loaded {
|
|
3689
|
+
--sl-ui-records-admin-styles: loaded;
|
|
3690
|
+
}
|
|
3646
3691
|
/*# sourceMappingURL=index.css.map */
|