@uniformdev/canvas-next 19.135.0 → 19.135.1-alpha.10
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.
|
@@ -32,6 +32,8 @@ declare const withUniformGetServerSideProps: <TProps extends {
|
|
|
32
32
|
withComponentIDs?: boolean | undefined;
|
|
33
33
|
withTotalCount?: boolean | undefined;
|
|
34
34
|
withUIStatus?: boolean | undefined;
|
|
35
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
36
|
+
withProjectMapNodes?: boolean | undefined;
|
|
35
37
|
withContentSourceMap?: boolean | undefined;
|
|
36
38
|
locale?: string | undefined;
|
|
37
39
|
releaseId?: string | undefined;
|
|
@@ -103,6 +105,8 @@ declare const withUniformGetStaticProps: <TProps extends {
|
|
|
103
105
|
withComponentIDs?: boolean | undefined;
|
|
104
106
|
withTotalCount?: boolean | undefined;
|
|
105
107
|
withUIStatus?: boolean | undefined;
|
|
108
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
109
|
+
withProjectMapNodes?: boolean | undefined;
|
|
106
110
|
withContentSourceMap?: boolean | undefined;
|
|
107
111
|
locale?: string | undefined;
|
|
108
112
|
releaseId?: string | undefined;
|
|
@@ -32,6 +32,8 @@ declare const withUniformGetServerSideProps: <TProps extends {
|
|
|
32
32
|
withComponentIDs?: boolean | undefined;
|
|
33
33
|
withTotalCount?: boolean | undefined;
|
|
34
34
|
withUIStatus?: boolean | undefined;
|
|
35
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
36
|
+
withProjectMapNodes?: boolean | undefined;
|
|
35
37
|
withContentSourceMap?: boolean | undefined;
|
|
36
38
|
locale?: string | undefined;
|
|
37
39
|
releaseId?: string | undefined;
|
|
@@ -103,6 +105,8 @@ declare const withUniformGetStaticProps: <TProps extends {
|
|
|
103
105
|
withComponentIDs?: boolean | undefined;
|
|
104
106
|
withTotalCount?: boolean | undefined;
|
|
105
107
|
withUIStatus?: boolean | undefined;
|
|
108
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
109
|
+
withProjectMapNodes?: boolean | undefined;
|
|
106
110
|
withContentSourceMap?: boolean | undefined;
|
|
107
111
|
locale?: string | undefined;
|
|
108
112
|
releaseId?: string | undefined;
|
package/dist/route/index.d.mts
CHANGED
|
@@ -126,6 +126,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
126
126
|
connectedData?: {
|
|
127
127
|
pointer: string;
|
|
128
128
|
syntax: "jptr";
|
|
129
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
130
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
131
|
+
failureDefault?: string | undefined;
|
|
129
132
|
} | undefined;
|
|
130
133
|
locales?: {
|
|
131
134
|
[key: string]: unknown;
|
|
@@ -141,7 +144,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
141
144
|
isSearchHit?: boolean | undefined;
|
|
142
145
|
queryStrings?: {
|
|
143
146
|
name: string;
|
|
144
|
-
value
|
|
147
|
+
value?: string | undefined;
|
|
145
148
|
helpText?: string | undefined;
|
|
146
149
|
}[] | undefined;
|
|
147
150
|
previewValue?: string | undefined;
|
|
@@ -163,6 +166,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
163
166
|
connectedData?: {
|
|
164
167
|
pointer: string;
|
|
165
168
|
syntax: "jptr";
|
|
169
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
170
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
171
|
+
failureDefault?: string | undefined;
|
|
166
172
|
} | undefined;
|
|
167
173
|
locales?: {
|
|
168
174
|
[key: string]: unknown;
|
|
@@ -205,6 +211,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
205
211
|
connectedData?: {
|
|
206
212
|
pointer: string;
|
|
207
213
|
syntax: "jptr";
|
|
214
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
215
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
216
|
+
failureDefault?: string | undefined;
|
|
208
217
|
} | undefined;
|
|
209
218
|
locales?: {
|
|
210
219
|
[key: string]: unknown;
|
|
@@ -230,6 +239,10 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
230
239
|
_id: string;
|
|
231
240
|
_slug?: string | null | undefined;
|
|
232
241
|
_name: string;
|
|
242
|
+
_author?: string | undefined;
|
|
243
|
+
_authorSubject?: string | undefined;
|
|
244
|
+
_creator?: string | undefined;
|
|
245
|
+
_creatorSubject?: string | undefined;
|
|
233
246
|
_pattern?: string | undefined;
|
|
234
247
|
_patternDataResources?: {
|
|
235
248
|
[key: string]: {
|
|
@@ -261,6 +274,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
261
274
|
connectedData?: {
|
|
262
275
|
pointer: string;
|
|
263
276
|
syntax: "jptr";
|
|
277
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
278
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
279
|
+
failureDefault?: string | undefined;
|
|
264
280
|
} | undefined;
|
|
265
281
|
locales?: {
|
|
266
282
|
[key: string]: unknown;
|
|
@@ -298,6 +314,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
298
314
|
connectedData?: {
|
|
299
315
|
pointer: string;
|
|
300
316
|
syntax: "jptr";
|
|
317
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
318
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
319
|
+
failureDefault?: string | undefined;
|
|
301
320
|
} | undefined;
|
|
302
321
|
locales?: {
|
|
303
322
|
[key: string]: unknown;
|
|
@@ -313,7 +332,7 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
313
332
|
isSearchHit?: boolean | undefined;
|
|
314
333
|
queryStrings?: {
|
|
315
334
|
name: string;
|
|
316
|
-
value
|
|
335
|
+
value?: string | undefined;
|
|
317
336
|
helpText?: string | undefined;
|
|
318
337
|
}[] | undefined;
|
|
319
338
|
previewValue?: string | undefined;
|
|
@@ -335,6 +354,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
335
354
|
connectedData?: {
|
|
336
355
|
pointer: string;
|
|
337
356
|
syntax: "jptr";
|
|
357
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
358
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
359
|
+
failureDefault?: string | undefined;
|
|
338
360
|
} | undefined;
|
|
339
361
|
locales?: {
|
|
340
362
|
[key: string]: unknown;
|
|
@@ -377,6 +399,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
377
399
|
connectedData?: {
|
|
378
400
|
pointer: string;
|
|
379
401
|
syntax: "jptr";
|
|
402
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
403
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
404
|
+
failureDefault?: string | undefined;
|
|
380
405
|
} | undefined;
|
|
381
406
|
locales?: {
|
|
382
407
|
[key: string]: unknown;
|
|
@@ -402,6 +427,10 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
402
427
|
_id: string;
|
|
403
428
|
_slug?: string | null | undefined;
|
|
404
429
|
_name: string;
|
|
430
|
+
_author?: string | undefined;
|
|
431
|
+
_authorSubject?: string | undefined;
|
|
432
|
+
_creator?: string | undefined;
|
|
433
|
+
_creatorSubject?: string | undefined;
|
|
405
434
|
_pattern?: string | undefined;
|
|
406
435
|
_patternDataResources?: {
|
|
407
436
|
[key: string]: {
|
|
@@ -433,6 +462,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
433
462
|
connectedData?: {
|
|
434
463
|
pointer: string;
|
|
435
464
|
syntax: "jptr";
|
|
465
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
466
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
467
|
+
failureDefault?: string | undefined;
|
|
436
468
|
} | undefined;
|
|
437
469
|
locales?: {
|
|
438
470
|
[key: string]: unknown;
|
package/dist/route/index.d.ts
CHANGED
|
@@ -126,6 +126,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
126
126
|
connectedData?: {
|
|
127
127
|
pointer: string;
|
|
128
128
|
syntax: "jptr";
|
|
129
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
130
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
131
|
+
failureDefault?: string | undefined;
|
|
129
132
|
} | undefined;
|
|
130
133
|
locales?: {
|
|
131
134
|
[key: string]: unknown;
|
|
@@ -141,7 +144,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
141
144
|
isSearchHit?: boolean | undefined;
|
|
142
145
|
queryStrings?: {
|
|
143
146
|
name: string;
|
|
144
|
-
value
|
|
147
|
+
value?: string | undefined;
|
|
145
148
|
helpText?: string | undefined;
|
|
146
149
|
}[] | undefined;
|
|
147
150
|
previewValue?: string | undefined;
|
|
@@ -163,6 +166,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
163
166
|
connectedData?: {
|
|
164
167
|
pointer: string;
|
|
165
168
|
syntax: "jptr";
|
|
169
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
170
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
171
|
+
failureDefault?: string | undefined;
|
|
166
172
|
} | undefined;
|
|
167
173
|
locales?: {
|
|
168
174
|
[key: string]: unknown;
|
|
@@ -205,6 +211,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
205
211
|
connectedData?: {
|
|
206
212
|
pointer: string;
|
|
207
213
|
syntax: "jptr";
|
|
214
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
215
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
216
|
+
failureDefault?: string | undefined;
|
|
208
217
|
} | undefined;
|
|
209
218
|
locales?: {
|
|
210
219
|
[key: string]: unknown;
|
|
@@ -230,6 +239,10 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
230
239
|
_id: string;
|
|
231
240
|
_slug?: string | null | undefined;
|
|
232
241
|
_name: string;
|
|
242
|
+
_author?: string | undefined;
|
|
243
|
+
_authorSubject?: string | undefined;
|
|
244
|
+
_creator?: string | undefined;
|
|
245
|
+
_creatorSubject?: string | undefined;
|
|
233
246
|
_pattern?: string | undefined;
|
|
234
247
|
_patternDataResources?: {
|
|
235
248
|
[key: string]: {
|
|
@@ -261,6 +274,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
261
274
|
connectedData?: {
|
|
262
275
|
pointer: string;
|
|
263
276
|
syntax: "jptr";
|
|
277
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
278
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
279
|
+
failureDefault?: string | undefined;
|
|
264
280
|
} | undefined;
|
|
265
281
|
locales?: {
|
|
266
282
|
[key: string]: unknown;
|
|
@@ -298,6 +314,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
298
314
|
connectedData?: {
|
|
299
315
|
pointer: string;
|
|
300
316
|
syntax: "jptr";
|
|
317
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
318
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
319
|
+
failureDefault?: string | undefined;
|
|
301
320
|
} | undefined;
|
|
302
321
|
locales?: {
|
|
303
322
|
[key: string]: unknown;
|
|
@@ -313,7 +332,7 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
313
332
|
isSearchHit?: boolean | undefined;
|
|
314
333
|
queryStrings?: {
|
|
315
334
|
name: string;
|
|
316
|
-
value
|
|
335
|
+
value?: string | undefined;
|
|
317
336
|
helpText?: string | undefined;
|
|
318
337
|
}[] | undefined;
|
|
319
338
|
previewValue?: string | undefined;
|
|
@@ -335,6 +354,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
335
354
|
connectedData?: {
|
|
336
355
|
pointer: string;
|
|
337
356
|
syntax: "jptr";
|
|
357
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
358
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
359
|
+
failureDefault?: string | undefined;
|
|
338
360
|
} | undefined;
|
|
339
361
|
locales?: {
|
|
340
362
|
[key: string]: unknown;
|
|
@@ -377,6 +399,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
377
399
|
connectedData?: {
|
|
378
400
|
pointer: string;
|
|
379
401
|
syntax: "jptr";
|
|
402
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
403
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
404
|
+
failureDefault?: string | undefined;
|
|
380
405
|
} | undefined;
|
|
381
406
|
locales?: {
|
|
382
407
|
[key: string]: unknown;
|
|
@@ -402,6 +427,10 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
402
427
|
_id: string;
|
|
403
428
|
_slug?: string | null | undefined;
|
|
404
429
|
_name: string;
|
|
430
|
+
_author?: string | undefined;
|
|
431
|
+
_authorSubject?: string | undefined;
|
|
432
|
+
_creator?: string | undefined;
|
|
433
|
+
_creatorSubject?: string | undefined;
|
|
405
434
|
_pattern?: string | undefined;
|
|
406
435
|
_patternDataResources?: {
|
|
407
436
|
[key: string]: {
|
|
@@ -433,6 +462,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
433
462
|
connectedData?: {
|
|
434
463
|
pointer: string;
|
|
435
464
|
syntax: "jptr";
|
|
465
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
466
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
467
|
+
failureDefault?: string | undefined;
|
|
436
468
|
} | undefined;
|
|
437
469
|
locales?: {
|
|
438
470
|
[key: string]: unknown;
|
package/dist/slug/index.d.mts
CHANGED
|
@@ -29,6 +29,8 @@ declare const withUniformGetServerSideProps: <TProps extends {
|
|
|
29
29
|
withComponentIDs?: boolean | undefined;
|
|
30
30
|
withTotalCount?: boolean | undefined;
|
|
31
31
|
withUIStatus?: boolean | undefined;
|
|
32
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
33
|
+
withProjectMapNodes?: boolean | undefined;
|
|
32
34
|
withContentSourceMap?: boolean | undefined;
|
|
33
35
|
locale?: string | undefined;
|
|
34
36
|
releaseId?: string | undefined;
|
|
@@ -78,6 +80,8 @@ declare const withUniformGetStaticProps: <TProps extends {
|
|
|
78
80
|
withComponentIDs?: boolean | undefined;
|
|
79
81
|
withTotalCount?: boolean | undefined;
|
|
80
82
|
withUIStatus?: boolean | undefined;
|
|
83
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
84
|
+
withProjectMapNodes?: boolean | undefined;
|
|
81
85
|
withContentSourceMap?: boolean | undefined;
|
|
82
86
|
locale?: string | undefined;
|
|
83
87
|
releaseId?: string | undefined;
|
package/dist/slug/index.d.ts
CHANGED
|
@@ -29,6 +29,8 @@ declare const withUniformGetServerSideProps: <TProps extends {
|
|
|
29
29
|
withComponentIDs?: boolean | undefined;
|
|
30
30
|
withTotalCount?: boolean | undefined;
|
|
31
31
|
withUIStatus?: boolean | undefined;
|
|
32
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
33
|
+
withProjectMapNodes?: boolean | undefined;
|
|
32
34
|
withContentSourceMap?: boolean | undefined;
|
|
33
35
|
locale?: string | undefined;
|
|
34
36
|
releaseId?: string | undefined;
|
|
@@ -78,6 +80,8 @@ declare const withUniformGetStaticProps: <TProps extends {
|
|
|
78
80
|
withComponentIDs?: boolean | undefined;
|
|
79
81
|
withTotalCount?: boolean | undefined;
|
|
80
82
|
withUIStatus?: boolean | undefined;
|
|
83
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
84
|
+
withProjectMapNodes?: boolean | undefined;
|
|
81
85
|
withContentSourceMap?: boolean | undefined;
|
|
82
86
|
locale?: string | undefined;
|
|
83
87
|
releaseId?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-next",
|
|
3
|
-
"version": "19.135.
|
|
3
|
+
"version": "19.135.1-alpha.10+261b728b6b",
|
|
4
4
|
"description": "Next.js SDK for Uniform Canvas",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
"document": "api-extractor run --local"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@uniformdev/canvas": "19.135.
|
|
71
|
-
"@uniformdev/canvas-react": "19.135.
|
|
72
|
-
"@uniformdev/project-map": "19.135.
|
|
73
|
-
"@uniformdev/redirect": "19.135.
|
|
74
|
-
"@uniformdev/richtext": "19.135.
|
|
70
|
+
"@uniformdev/canvas": "19.135.1-alpha.10+261b728b6b",
|
|
71
|
+
"@uniformdev/canvas-react": "19.135.1-alpha.10+261b728b6b",
|
|
72
|
+
"@uniformdev/project-map": "19.135.1-alpha.10+261b728b6b",
|
|
73
|
+
"@uniformdev/redirect": "19.135.1-alpha.10+261b728b6b",
|
|
74
|
+
"@uniformdev/richtext": "19.135.1-alpha.10+261b728b6b",
|
|
75
75
|
"colorette": "2.0.20"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"publishConfig": {
|
|
92
92
|
"access": "public"
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "261b728b6bc036ca8260861715632078b3eb27ca"
|
|
95
95
|
}
|