@uniformdev/next-app-router-shared 20.7.1-alpha.123 → 20.7.1-alpha.134
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 +7 -16
- package/dist/index.d.ts +7 -16
- 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,7 +202,7 @@ type UniformServerConfig = {
|
|
|
211
202
|
disableDevTools?: boolean;
|
|
212
203
|
};
|
|
213
204
|
/**
|
|
214
|
-
*
|
|
205
|
+
* Experimental features.
|
|
215
206
|
*/
|
|
216
207
|
experimental?: {
|
|
217
208
|
/**
|
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,7 +202,7 @@ type UniformServerConfig = {
|
|
|
211
202
|
disableDevTools?: boolean;
|
|
212
203
|
};
|
|
213
204
|
/**
|
|
214
|
-
*
|
|
205
|
+
* Experimental features.
|
|
215
206
|
*/
|
|
216
207
|
experimental?: {
|
|
217
208
|
/**
|
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.134+97fe4134d7",
|
|
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.134+97fe4134d7",
|
|
40
|
+
"@uniformdev/context": "20.7.1-alpha.134+97fe4134d7",
|
|
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": "97fe4134d72fb8c0b3a3432e1a6a410fdedeedb4"
|
|
53
55
|
}
|