@endge/core 7.0.1 → 7.1.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/core.js +4 -4
- package/package.json +1 -1
package/dist/core.js
CHANGED
|
@@ -50484,8 +50484,8 @@ const QW = /* @__PURE__ */ new Set(["$table", "$row", "$column", "$cell"]), p$ =
|
|
|
50484
50484
|
{
|
|
50485
50485
|
label: "metaOf",
|
|
50486
50486
|
kind: "property",
|
|
50487
|
-
detail: "Meta-plane для prop или поля
|
|
50488
|
-
documentation: "$data.metaOf(reference[, namespace]) реактивно читает метаданные DataPath, связанного с
|
|
50487
|
+
detail: "Meta-plane для prop, строки или поля строки",
|
|
50488
|
+
documentation: "$data.metaOf(reference[, namespace]) реактивно читает метаданные DataPath, связанного с prop, текущей строкой или её полем."
|
|
50489
50489
|
}
|
|
50490
50490
|
],
|
|
50491
50491
|
$row: [
|
|
@@ -50684,7 +50684,7 @@ function aJ(t, r, e, i) {
|
|
|
50684
50684
|
e.push({
|
|
50685
50685
|
severity: "error",
|
|
50686
50686
|
code: "sfc-data-meta-call-shape",
|
|
50687
|
-
message: "$data.metaOf() принимает ссылку prop
|
|
50687
|
+
message: "$data.metaOf() принимает ссылку prop, row или row.field и optional статический непустой namespace.",
|
|
50688
50688
|
sourcePath: i.sourcePath,
|
|
50689
50689
|
start: typeof a.start == "number" ? a.start : void 0,
|
|
50690
50690
|
end: typeof a.end == "number" ? a.end : void 0
|
|
@@ -50698,7 +50698,7 @@ function oJ(t, r) {
|
|
|
50698
50698
|
const e = [...t];
|
|
50699
50699
|
e[0] === "props" && e.shift();
|
|
50700
50700
|
const i = e[0];
|
|
50701
|
-
return i && r.has(i) ? { kind: "prop", prop: i, path: e.slice(1) } : e[0] === "row"
|
|
50701
|
+
return i && r.has(i) ? { kind: "prop", prop: i, path: e.slice(1) } : e[0] === "row" ? { kind: "table-row", path: e.slice(1) } : e[0] === "$row" && e[1] === "data" ? { kind: "table-row", path: e.slice(2) } : null;
|
|
50702
50702
|
}
|
|
50703
50703
|
function lJ(t, r, e, i) {
|
|
50704
50704
|
const s = [];
|