@tanstack/router-core 1.132.0-alpha.15 → 1.132.0-alpha.18
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/cjs/path.cjs +1 -0
- package/dist/cjs/path.cjs.map +1 -1
- package/dist/cjs/router.cjs +1 -2
- package/dist/cjs/router.cjs.map +1 -1
- package/dist/esm/path.js +1 -0
- package/dist/esm/path.js.map +1 -1
- package/dist/esm/router.js +1 -2
- package/dist/esm/router.js.map +1 -1
- package/package.json +1 -1
- package/src/path.ts +4 -0
- package/src/router.ts +1 -2
package/package.json
CHANGED
package/src/path.ts
CHANGED
|
@@ -397,6 +397,10 @@ export function interpolatePath({
|
|
|
397
397
|
|
|
398
398
|
if (segment.type === SEGMENT_TYPE_WILDCARD) {
|
|
399
399
|
usedParams._splat = params._splat
|
|
400
|
+
|
|
401
|
+
// TODO: Deprecate *
|
|
402
|
+
usedParams['*'] = params._splat
|
|
403
|
+
|
|
400
404
|
const segmentPrefix = segment.prefixSegment || ''
|
|
401
405
|
const segmentSuffix = segment.suffixSegment || ''
|
|
402
406
|
|