@uniformdev/next-app-router-shared 20.7.1-alpha.123 → 20.7.1-alpha.136
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/LICENSE.txt +1 -1
- package/dist/index.d.mts +19 -28
- package/dist/index.d.ts +19 -28
- package/package.json +8 -6
package/LICENSE.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
©
|
|
1
|
+
© 2026 Uniform Systems, Inc. All Rights Reserved.
|
|
2
2
|
See details of Uniform Systems, Inc. Master Subscription Agreement here: https://uniform.dev/eula
|
package/dist/index.d.mts
CHANGED
|
@@ -162,10 +162,16 @@ type TestProps = ComponentProps & {
|
|
|
162
162
|
|
|
163
163
|
type CacheMode = {
|
|
164
164
|
type: RequestInit['cache'];
|
|
165
|
+
/**
|
|
166
|
+
* @deprecated
|
|
167
|
+
*/
|
|
165
168
|
bypassCache?: boolean;
|
|
166
169
|
} | {
|
|
167
170
|
type: 'revalidate';
|
|
168
171
|
interval: number;
|
|
172
|
+
/**
|
|
173
|
+
* @deprecated
|
|
174
|
+
*/
|
|
169
175
|
bypassCache?: boolean;
|
|
170
176
|
};
|
|
171
177
|
type ManifestCacheMode = CacheMode;
|
|
@@ -184,21 +190,6 @@ type UniformServerConfig = {
|
|
|
184
190
|
* The path to the playground page.
|
|
185
191
|
*/
|
|
186
192
|
playgroundPath?: string;
|
|
187
|
-
/**
|
|
188
|
-
* Cache mode for manifest data.
|
|
189
|
-
*
|
|
190
|
-
*/
|
|
191
|
-
manifestCache?: ManifestCacheMode;
|
|
192
|
-
/**
|
|
193
|
-
* Cache mode for canvas data.
|
|
194
|
-
*
|
|
195
|
-
*/
|
|
196
|
-
canvasCache?: CanvasCacheMode;
|
|
197
|
-
/**
|
|
198
|
-
* Cache mode for project map data.
|
|
199
|
-
*
|
|
200
|
-
*/
|
|
201
|
-
projectMapCache?: ProjectMapCacheMode;
|
|
202
193
|
/**
|
|
203
194
|
* Options for Uniform Context
|
|
204
195
|
*/
|
|
@@ -211,27 +202,27 @@ type UniformServerConfig = {
|
|
|
211
202
|
disableDevTools?: boolean;
|
|
212
203
|
};
|
|
213
204
|
/**
|
|
214
|
-
*
|
|
205
|
+
* Enables quirk serialization for Uniform Context.
|
|
206
|
+
*
|
|
207
|
+
* @default true
|
|
208
|
+
*/
|
|
209
|
+
quirkSerialization?: boolean;
|
|
210
|
+
/**
|
|
211
|
+
* Enables runtime cache in middleware.
|
|
212
|
+
*
|
|
213
|
+
* @default true
|
|
214
|
+
*/
|
|
215
|
+
middlewareRuntimeCache?: boolean;
|
|
216
|
+
/**
|
|
217
|
+
* Experimental features.
|
|
215
218
|
*/
|
|
216
219
|
experimental?: {
|
|
217
|
-
/**
|
|
218
|
-
* Enables quirk serialization for Uniform Context.
|
|
219
|
-
*
|
|
220
|
-
* @default false
|
|
221
|
-
*/
|
|
222
|
-
quirkSerialization?: boolean;
|
|
223
220
|
/**
|
|
224
221
|
* Enables visual editing mode.
|
|
225
222
|
*
|
|
226
223
|
* @default false
|
|
227
224
|
*/
|
|
228
225
|
vercelVisualEditing?: boolean;
|
|
229
|
-
/**
|
|
230
|
-
* Enables runtime cache in middleware.
|
|
231
|
-
*
|
|
232
|
-
* @default false
|
|
233
|
-
*/
|
|
234
|
-
middlewareRuntimeCache?: boolean;
|
|
235
226
|
/**
|
|
236
227
|
* Requires middlewareRuntimeCache to be enabled. If enabled, the middleware will retain a copy
|
|
237
228
|
* of the old route data in cache and use it while the new route data is being fetched.
|
package/dist/index.d.ts
CHANGED
|
@@ -162,10 +162,16 @@ type TestProps = ComponentProps & {
|
|
|
162
162
|
|
|
163
163
|
type CacheMode = {
|
|
164
164
|
type: RequestInit['cache'];
|
|
165
|
+
/**
|
|
166
|
+
* @deprecated
|
|
167
|
+
*/
|
|
165
168
|
bypassCache?: boolean;
|
|
166
169
|
} | {
|
|
167
170
|
type: 'revalidate';
|
|
168
171
|
interval: number;
|
|
172
|
+
/**
|
|
173
|
+
* @deprecated
|
|
174
|
+
*/
|
|
169
175
|
bypassCache?: boolean;
|
|
170
176
|
};
|
|
171
177
|
type ManifestCacheMode = CacheMode;
|
|
@@ -184,21 +190,6 @@ type UniformServerConfig = {
|
|
|
184
190
|
* The path to the playground page.
|
|
185
191
|
*/
|
|
186
192
|
playgroundPath?: string;
|
|
187
|
-
/**
|
|
188
|
-
* Cache mode for manifest data.
|
|
189
|
-
*
|
|
190
|
-
*/
|
|
191
|
-
manifestCache?: ManifestCacheMode;
|
|
192
|
-
/**
|
|
193
|
-
* Cache mode for canvas data.
|
|
194
|
-
*
|
|
195
|
-
*/
|
|
196
|
-
canvasCache?: CanvasCacheMode;
|
|
197
|
-
/**
|
|
198
|
-
* Cache mode for project map data.
|
|
199
|
-
*
|
|
200
|
-
*/
|
|
201
|
-
projectMapCache?: ProjectMapCacheMode;
|
|
202
193
|
/**
|
|
203
194
|
* Options for Uniform Context
|
|
204
195
|
*/
|
|
@@ -211,27 +202,27 @@ type UniformServerConfig = {
|
|
|
211
202
|
disableDevTools?: boolean;
|
|
212
203
|
};
|
|
213
204
|
/**
|
|
214
|
-
*
|
|
205
|
+
* Enables quirk serialization for Uniform Context.
|
|
206
|
+
*
|
|
207
|
+
* @default true
|
|
208
|
+
*/
|
|
209
|
+
quirkSerialization?: boolean;
|
|
210
|
+
/**
|
|
211
|
+
* Enables runtime cache in middleware.
|
|
212
|
+
*
|
|
213
|
+
* @default true
|
|
214
|
+
*/
|
|
215
|
+
middlewareRuntimeCache?: boolean;
|
|
216
|
+
/**
|
|
217
|
+
* Experimental features.
|
|
215
218
|
*/
|
|
216
219
|
experimental?: {
|
|
217
|
-
/**
|
|
218
|
-
* Enables quirk serialization for Uniform Context.
|
|
219
|
-
*
|
|
220
|
-
* @default false
|
|
221
|
-
*/
|
|
222
|
-
quirkSerialization?: boolean;
|
|
223
220
|
/**
|
|
224
221
|
* Enables visual editing mode.
|
|
225
222
|
*
|
|
226
223
|
* @default false
|
|
227
224
|
*/
|
|
228
225
|
vercelVisualEditing?: boolean;
|
|
229
|
-
/**
|
|
230
|
-
* Enables runtime cache in middleware.
|
|
231
|
-
*
|
|
232
|
-
* @default false
|
|
233
|
-
*/
|
|
234
|
-
middlewareRuntimeCache?: boolean;
|
|
235
226
|
/**
|
|
236
227
|
* Requires middlewareRuntimeCache to be enabled. If enabled, the middleware will retain a copy
|
|
237
228
|
* of the old route data in cache and use it while the new route data is being fetched.
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/next-app-router-shared",
|
|
3
|
-
"version": "20.7.1-alpha.
|
|
3
|
+
"version": "20.7.1-alpha.136+b24fc21071",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsup",
|
|
7
7
|
"dev": "tsup --watch",
|
|
8
8
|
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
|
|
9
|
-
"test": "
|
|
9
|
+
"test": "vitest"
|
|
10
10
|
},
|
|
11
11
|
"sideEffects": false,
|
|
12
12
|
"main": "./dist/index.js",
|
|
@@ -31,11 +31,13 @@
|
|
|
31
31
|
"next": "16.0.7",
|
|
32
32
|
"react": "19.2.0",
|
|
33
33
|
"react-dom": "19.2.0",
|
|
34
|
-
"typescript": "5.9.2"
|
|
34
|
+
"typescript": "5.9.2",
|
|
35
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
36
|
+
"vitest": "3.2.4"
|
|
35
37
|
},
|
|
36
38
|
"dependencies": {
|
|
37
|
-
"@uniformdev/canvas": "20.7.1-alpha.
|
|
38
|
-
"@uniformdev/context": "20.7.1-alpha.
|
|
39
|
+
"@uniformdev/canvas": "20.7.1-alpha.136+b24fc21071",
|
|
40
|
+
"@uniformdev/context": "20.7.1-alpha.136+b24fc21071",
|
|
39
41
|
"uuid": "9.0.1"
|
|
40
42
|
},
|
|
41
43
|
"engines": {
|
|
@@ -49,5 +51,5 @@
|
|
|
49
51
|
"publishConfig": {
|
|
50
52
|
"access": "public"
|
|
51
53
|
},
|
|
52
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "b24fc21071984f3e41cf7d2e46345c122182a185"
|
|
53
55
|
}
|