@syntrologie/adapt-faq 2.22.0 → 2.24.0
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/editor.js +5 -5
- package/dist/editor.js.map +2 -2
- package/dist/runtime.js.map +1 -1
- package/package.json +1 -1
package/dist/editor.js
CHANGED
|
@@ -3769,11 +3769,11 @@ var EditorCardLit = class extends LitElement4 {
|
|
|
3769
3769
|
};
|
|
3770
3770
|
}
|
|
3771
3771
|
render() {
|
|
3772
|
-
const
|
|
3773
|
-
const
|
|
3774
|
-
const
|
|
3775
|
-
const
|
|
3776
|
-
const
|
|
3772
|
+
const _base = "py-2 px-2.5 rounded-lg border shadow-sm mb-1 text-sm";
|
|
3773
|
+
const _borderCls = this.validated ? "border-green-500/50" : "border-white/10";
|
|
3774
|
+
const _bgCls = "bg-white/[0.02]";
|
|
3775
|
+
const _colorCls = "text-slate-200";
|
|
3776
|
+
const _interactiveCls = this.clickable ? "cursor-pointer hover:border-white/20 hover:bg-white/[0.04] transition-colors" : "";
|
|
3777
3777
|
return html5`
|
|
3778
3778
|
<style>
|
|
3779
3779
|
:host { display: block; }
|