@everchron/ec-shards 9.2.0 → 9.2.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 +7 -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
|
@@ -6718,9 +6718,13 @@ const Gb = /* @__PURE__ */ v(Dd, [["render", Hd], ["__scopeId", "data-v-a756fba8
|
|
|
6718
6718
|
validator: (e) => ["default", "header"].includes(e),
|
|
6719
6719
|
default: "default"
|
|
6720
6720
|
},
|
|
6721
|
-
/** Determines if listener should be added for listed mouse event. Allowed values (as
|
|
6721
|
+
/** Determines if listener should be added for listed mouse event. Allowed values (eiter as String, or as values in an Array): `click`, `contextmenu`, `dblclick` */
|
|
6722
6722
|
mouseEvent: {
|
|
6723
|
-
type: Array
|
|
6723
|
+
type: [String, Array],
|
|
6724
|
+
validator: (e) => {
|
|
6725
|
+
const s = ["", "click", "contextmenu", "dblclick"];
|
|
6726
|
+
return e.every((t) => s.includes(t));
|
|
6727
|
+
}
|
|
6724
6728
|
},
|
|
6725
6729
|
/** Determines if the row should have clickable styles. */
|
|
6726
6730
|
clickable: {
|
|
@@ -6774,7 +6778,7 @@ function jd(e, s, t, a, n, i) {
|
|
|
6774
6778
|
p(e.$slots, "default", {}, void 0, !0)
|
|
6775
6779
|
], 2);
|
|
6776
6780
|
}
|
|
6777
|
-
const Ud = /* @__PURE__ */ v(qd, [["render", jd], ["__scopeId", "data-v-
|
|
6781
|
+
const Ud = /* @__PURE__ */ v(qd, [["render", jd], ["__scopeId", "data-v-db601372"]]), Gd = {
|
|
6778
6782
|
name: "ecs-data-grid-row-group",
|
|
6779
6783
|
components: {
|
|
6780
6784
|
EcsDataGridRow: Ud
|