@tanstack/svelte-table 8.5.16 → 8.5.17
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/build/cjs/table-core/build/esm/index.js +3 -0
- package/build/cjs/table-core/build/esm/index.js.map +1 -1
- package/build/esm/index.js +3 -0
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +45 -45
- package/build/umd/index.development.js +3 -0
- package/build/umd/index.development.js.map +1 -1
- package/build/umd/index.production.js.map +1 -1
- package/package.json +2 -2
package/build/esm/index.js
CHANGED
|
@@ -116,6 +116,9 @@ function createColumn(table, columnDef, depth, parent) {
|
|
|
116
116
|
let result = originalRow;
|
|
117
117
|
for (const key of accessorKey.split('.')) {
|
|
118
118
|
result = result[key];
|
|
119
|
+
if (process.env.NODE_ENV !== 'production' && result === undefined) {
|
|
120
|
+
throw new Error(`"${key}" in deeply nested key "${accessorKey}" returned undefined.`);
|
|
121
|
+
}
|
|
119
122
|
}
|
|
120
123
|
return result;
|
|
121
124
|
};
|