@tanstack/react-router 1.4.3 → 1.4.4

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.
@@ -1427,7 +1427,10 @@
1427
1427
  if (routeSegment) {
1428
1428
  if (routeSegment.type === 'wildcard') {
1429
1429
  if (baseSegment?.value) {
1430
- params['*'] = joinPaths(baseSegments.slice(i).map(d => d.value));
1430
+ const _splat = joinPaths(baseSegments.slice(i).map(d => d.value));
1431
+ // TODO: Deprecate *
1432
+ params['*'] = _splat;
1433
+ params['_splat'] = _splat;
1431
1434
  return true;
1432
1435
  }
1433
1436
  return false;