create-keystone-app 8.0.2 → 9.0.0
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
package/starter/package.json
CHANGED
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"postinstall": "keystone postinstall"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@keystone-6/auth": "^
|
|
13
|
-
"@keystone-6/core": "^
|
|
14
|
-
"@keystone-6/fields-document": "^
|
|
12
|
+
"@keystone-6/auth": "^6.0.0",
|
|
13
|
+
"@keystone-6/core": "^4.0.1",
|
|
14
|
+
"@keystone-6/fields-document": "^6.0.0",
|
|
15
15
|
"typescript": "^4.8.0"
|
|
16
16
|
}
|
|
17
17
|
}
|
package/starter/schema.graphql
CHANGED
|
@@ -340,9 +340,10 @@ type KeystoneAdminUIListMeta {
|
|
|
340
340
|
pageSize: Int!
|
|
341
341
|
labelField: String!
|
|
342
342
|
fields: [KeystoneAdminUIFieldMeta!]!
|
|
343
|
+
groups: [KeystoneAdminUIFieldGroupMeta!]!
|
|
343
344
|
initialSort: KeystoneAdminUISort
|
|
344
345
|
isHidden: Boolean!
|
|
345
|
-
isSingleton: Boolean
|
|
346
|
+
isSingleton: Boolean!
|
|
346
347
|
}
|
|
347
348
|
|
|
348
349
|
type KeystoneAdminUIFieldMeta {
|
|
@@ -380,6 +381,7 @@ enum KeystoneAdminUIFieldMetaListViewFieldMode {
|
|
|
380
381
|
|
|
381
382
|
type KeystoneAdminUIFieldMetaItemView {
|
|
382
383
|
fieldMode: KeystoneAdminUIFieldMetaItemViewFieldMode
|
|
384
|
+
fieldPosition: KeystoneAdminUIFieldMetaItemViewFieldPosition
|
|
383
385
|
}
|
|
384
386
|
|
|
385
387
|
enum KeystoneAdminUIFieldMetaItemViewFieldMode {
|
|
@@ -388,11 +390,22 @@ enum KeystoneAdminUIFieldMetaItemViewFieldMode {
|
|
|
388
390
|
hidden
|
|
389
391
|
}
|
|
390
392
|
|
|
393
|
+
enum KeystoneAdminUIFieldMetaItemViewFieldPosition {
|
|
394
|
+
form
|
|
395
|
+
sidebar
|
|
396
|
+
}
|
|
397
|
+
|
|
391
398
|
enum QueryMode {
|
|
392
399
|
default
|
|
393
400
|
insensitive
|
|
394
401
|
}
|
|
395
402
|
|
|
403
|
+
type KeystoneAdminUIFieldGroupMeta {
|
|
404
|
+
label: String!
|
|
405
|
+
description: String
|
|
406
|
+
fields: [KeystoneAdminUIFieldMeta!]!
|
|
407
|
+
}
|
|
408
|
+
|
|
396
409
|
type KeystoneAdminUISort {
|
|
397
410
|
field: String!
|
|
398
411
|
direction: KeystoneAdminUISortDirection!
|