@proveanything/smartlinks-utils-ui 0.12.5 → 0.12.7
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 +9 -2
- package/dist/components/AssetPicker/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.css +9 -2
- package/dist/components/ConditionsEditor/index.css.map +1 -1
- package/dist/components/ConditionsEditor/index.js +1 -1
- package/dist/components/FontPicker/index.css +9 -2
- package/dist/components/FontPicker/index.css.map +1 -1
- package/dist/components/IconPicker/index.css +9 -2
- package/dist/components/IconPicker/index.css.map +1 -1
- package/dist/components/LinkPicker/index.css +3989 -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 +9 -2
- package/dist/components/RecordsAdmin/index.css.map +1 -1
- package/dist/components/RecordsAdmin/index.d.ts +37 -2
- package/dist/components/RecordsAdmin/index.js +406 -127
- package/dist/components/RecordsAdmin/index.js.map +1 -1
- package/dist/index.css +9 -2
- 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { ConditionsEditor } from '../../chunk-7UBXTFZQ.js';
|
|
2
|
-
import '../../chunk-5UQQYXCX.js';
|
|
3
2
|
import '../../chunk-4LHF5JB7.js';
|
|
3
|
+
import '../../chunk-5UQQYXCX.js';
|
|
4
4
|
import '../../chunk-L7FQ52F5.js';
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
|
@@ -1220,7 +1220,7 @@
|
|
|
1220
1220
|
border-radius: 0.35rem;
|
|
1221
1221
|
background: transparent;
|
|
1222
1222
|
color: hsl(var(--ra-muted-text));
|
|
1223
|
-
opacity: 0;
|
|
1223
|
+
opacity: 0.72;
|
|
1224
1224
|
transition:
|
|
1225
1225
|
opacity .15s ease,
|
|
1226
1226
|
background .15s ease,
|
|
@@ -1740,7 +1740,7 @@
|
|
|
1740
1740
|
display: flex;
|
|
1741
1741
|
align-items: center;
|
|
1742
1742
|
padding-right: 0.35rem;
|
|
1743
|
-
opacity:
|
|
1743
|
+
opacity: 1;
|
|
1744
1744
|
transition: opacity .12s ease;
|
|
1745
1745
|
}
|
|
1746
1746
|
.ra-shell .ra-sibling-list .ra-row-shell:hover > .ra-row-menu-wrap,
|
|
@@ -2466,6 +2466,9 @@
|
|
|
2466
2466
|
.collapse {
|
|
2467
2467
|
visibility: collapse;
|
|
2468
2468
|
}
|
|
2469
|
+
.static {
|
|
2470
|
+
position: static;
|
|
2471
|
+
}
|
|
2469
2472
|
.fixed {
|
|
2470
2473
|
position: fixed;
|
|
2471
2474
|
}
|
|
@@ -3272,6 +3275,10 @@
|
|
|
3272
3275
|
padding-top: 1rem;
|
|
3273
3276
|
padding-bottom: 1rem;
|
|
3274
3277
|
}
|
|
3278
|
+
.py-6 {
|
|
3279
|
+
padding-top: 1.5rem;
|
|
3280
|
+
padding-bottom: 1.5rem;
|
|
3281
|
+
}
|
|
3275
3282
|
.pb-1 {
|
|
3276
3283
|
padding-bottom: 0.25rem;
|
|
3277
3284
|
}
|