@1771technologies/lytenyte-pro 1.0.13 → 1.0.14
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.
|
@@ -50,9 +50,6 @@ export function makeRowLayout({ view: n, viewCache, layout, rds, columns }) {
|
|
|
50
50
|
};
|
|
51
51
|
}
|
|
52
52
|
function handleViewLayout({ columns, spanLayout: n, rowStart, rowEnd, rowPin, layout, viewCache, container, rowForIndex, }) {
|
|
53
|
-
/**
|
|
54
|
-
* TOP ROW LAYOUT START
|
|
55
|
-
*/
|
|
56
53
|
for (let r = rowStart; r < rowEnd; r++) {
|
|
57
54
|
const status = layout.special[r];
|
|
58
55
|
const computed = layout.computed[r];
|
|
@@ -68,7 +65,9 @@ function handleViewLayout({ columns, spanLayout: n, rowStart, rowEnd, rowPin, la
|
|
|
68
65
|
const rowLastPinTop = n.rowTopEnd - 1 === r ? true : undefined;
|
|
69
66
|
if (status === FULL_WIDTH) {
|
|
70
67
|
const row = {
|
|
71
|
-
id
|
|
68
|
+
get id() {
|
|
69
|
+
return node.get()?.id ?? `${r}`;
|
|
70
|
+
},
|
|
72
71
|
rowIndex: r,
|
|
73
72
|
kind: "full-width",
|
|
74
73
|
rowPin,
|
|
@@ -147,7 +146,9 @@ function handleViewLayout({ columns, spanLayout: n, rowStart, rowEnd, rowPin, la
|
|
|
147
146
|
});
|
|
148
147
|
}
|
|
149
148
|
const row = {
|
|
150
|
-
id
|
|
149
|
+
get id() {
|
|
150
|
+
return node.get()?.id ?? `${r}`;
|
|
151
|
+
},
|
|
151
152
|
rowIndex: r,
|
|
152
153
|
kind: "row",
|
|
153
154
|
cells: cellLayout,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1771technologies/lytenyte-pro",
|
|
3
3
|
"description": "Blazingly fast headless React data grid with 100s of features.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.14",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "COMMERCIAL",
|
|
7
7
|
"files": [
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@1771technologies/lytenyte-core": "1.0.
|
|
52
|
-
"@1771technologies/lytenyte-dragon": "1.0.
|
|
53
|
-
"@1771technologies/lytenyte-shared": "1.0.
|
|
54
|
-
"@1771technologies/lytenyte-
|
|
55
|
-
"@1771technologies/lytenyte-
|
|
56
|
-
"@1771technologies/lytenyte-react-hooks": "1.0.
|
|
51
|
+
"@1771technologies/lytenyte-core": "1.0.14",
|
|
52
|
+
"@1771technologies/lytenyte-dragon": "1.0.14",
|
|
53
|
+
"@1771technologies/lytenyte-shared": "1.0.14",
|
|
54
|
+
"@1771technologies/lytenyte-dom-utils": "1.0.14",
|
|
55
|
+
"@1771technologies/lytenyte-js-utils": "1.0.14",
|
|
56
|
+
"@1771technologies/lytenyte-react-hooks": "1.0.14"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"react": "^18.0.0 || ^19.0.0",
|