@everchron/ec-shards 8.7.0 → 8.7.1
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/ec-shards.js +8 -3
- package/dist/ec-shards.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/ec-shards.js
CHANGED
|
@@ -6696,8 +6696,13 @@ const qd = {
|
|
|
6696
6696
|
/** Determines if listener should be added for listed mouse event. */
|
|
6697
6697
|
mouseEvent: {
|
|
6698
6698
|
type: String,
|
|
6699
|
-
validator: (e) => ["", "contextmenu"].includes(e),
|
|
6699
|
+
validator: (e) => ["", "click", "contextmenu"].includes(e),
|
|
6700
6700
|
default: ""
|
|
6701
|
+
},
|
|
6702
|
+
/** Determines if the row should have clickable styles. */
|
|
6703
|
+
clickable: {
|
|
6704
|
+
type: Boolean,
|
|
6705
|
+
default: !1
|
|
6701
6706
|
}
|
|
6702
6707
|
},
|
|
6703
6708
|
methods: {
|
|
@@ -6720,7 +6725,7 @@ const qd = {
|
|
|
6720
6725
|
};
|
|
6721
6726
|
function jd(e, s, t, a, n, i) {
|
|
6722
6727
|
return o(), l("div", {
|
|
6723
|
-
class: v(["ecs-data-grid-row", [t.state, t.type == "header" ? "header-row" : "", t.mouseEvent === "click" ? "clickable" : ""]]),
|
|
6728
|
+
class: v(["ecs-data-grid-row", [t.state, t.type == "header" ? "header-row" : "", t.mouseEvent === "click" || t.clickable === !0 ? "clickable" : ""]]),
|
|
6724
6729
|
ref: "grid_row",
|
|
6725
6730
|
role: "row"
|
|
6726
6731
|
}, [
|
|
@@ -6733,7 +6738,7 @@ function jd(e, s, t, a, n, i) {
|
|
|
6733
6738
|
p(e.$slots, "default", {}, void 0, !0)
|
|
6734
6739
|
], 2);
|
|
6735
6740
|
}
|
|
6736
|
-
const Gd = /* @__PURE__ */ _(qd, [["render", jd], ["__scopeId", "data-v-
|
|
6741
|
+
const Gd = /* @__PURE__ */ _(qd, [["render", jd], ["__scopeId", "data-v-f4227c48"]]);
|
|
6737
6742
|
const Ud = {
|
|
6738
6743
|
name: "ecs-data-grid-row-group",
|
|
6739
6744
|
components: {
|