@tanstack/router-core 1.169.2 → 1.170.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/router-core",
3
- "version": "1.169.2",
3
+ "version": "1.170.1",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -170,7 +170,7 @@
170
170
  "cookie-es": "^3.0.0",
171
171
  "seroval": "^1.5.4",
172
172
  "seroval-plugins": "^1.5.4",
173
- "@tanstack/history": "1.161.6"
173
+ "@tanstack/history": "1.162.0"
174
174
  },
175
175
  "devDependencies": {
176
176
  "@tanstack/store": "^0.9.3",
package/src/manifest.ts CHANGED
@@ -37,6 +37,13 @@ export function resolveManifestAssetLink(link: ManifestAssetLink) {
37
37
  export type Manifest = {
38
38
  inlineCss?: {
39
39
  styles: Record<string, string>
40
+ templates?: Record<
41
+ string,
42
+ {
43
+ strings: Array<string>
44
+ urls: Array<string>
45
+ }
46
+ >
40
47
  }
41
48
  routes: Record<
42
49
  string,
package/src/router.ts CHANGED
@@ -1179,7 +1179,7 @@ export class RouterCore<
1179
1179
  typeof window.CSS?.supports === 'function'
1180
1180
  ) {
1181
1181
  this.isViewTransitionTypesSupported = window.CSS.supports(
1182
- 'selector(:active-view-transition-type(a)',
1182
+ 'selector(:active-view-transition-type(a))',
1183
1183
  )
1184
1184
  }
1185
1185
  }