@autoafleveren/ui 1.6.2 → 1.6.3
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/ui.js
CHANGED
|
@@ -23614,7 +23614,8 @@ const Cb = /* @__PURE__ */ ke({
|
|
|
23614
23614
|
class: oe([[
|
|
23615
23615
|
...w(UN)[v.value],
|
|
23616
23616
|
...w(WN)[n.context ? "contextMenu" : "actionBar"],
|
|
23617
|
-
n.action.component ? "has-submenu" : ""
|
|
23617
|
+
n.action.component ? "has-submenu" : "",
|
|
23618
|
+
n.action.component && d.value ? "bg-zinc-600" : ""
|
|
23618
23619
|
], "relative cursor-pointer rounded-md transition-colors duration-200"])
|
|
23619
23620
|
}, [
|
|
23620
23621
|
ta((E(), D("div", {
|
package/package.json
CHANGED
|
@@ -128,6 +128,7 @@
|
|
|
128
128
|
...domClassesPerType[type],
|
|
129
129
|
...domClassesPerMenu[props.context ? 'contextMenu' : 'actionBar'],
|
|
130
130
|
props.action.component ? 'has-submenu' : '',
|
|
131
|
+
props.action.component && confirm ? 'bg-zinc-600' : '',
|
|
131
132
|
]"
|
|
132
133
|
class="relative cursor-pointer rounded-md transition-colors duration-200"
|
|
133
134
|
>
|