tinacms 0.69.0 → 0.69.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/dist/index.es.js +7 -4
- package/dist/index.js +7 -4
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -1175,7 +1175,8 @@ const formify = async ({
|
|
|
1175
1175
|
return formifyInlineFragmentNode({
|
|
1176
1176
|
inlineFragmentNode: selectionNode,
|
|
1177
1177
|
parentType: type,
|
|
1178
|
-
path
|
|
1178
|
+
path,
|
|
1179
|
+
showInSidebar: true
|
|
1179
1180
|
});
|
|
1180
1181
|
}
|
|
1181
1182
|
case "Field": {
|
|
@@ -1245,7 +1246,8 @@ const formify = async ({
|
|
|
1245
1246
|
return formifyInlineFragmentNode({
|
|
1246
1247
|
inlineFragmentNode: selectionNode,
|
|
1247
1248
|
parentType: field.type,
|
|
1248
|
-
path: fieldPath
|
|
1249
|
+
path: fieldPath,
|
|
1250
|
+
showInSidebar: false
|
|
1249
1251
|
});
|
|
1250
1252
|
}
|
|
1251
1253
|
default:
|
|
@@ -1259,7 +1261,8 @@ const formify = async ({
|
|
|
1259
1261
|
const formifyInlineFragmentNode = ({
|
|
1260
1262
|
inlineFragmentNode,
|
|
1261
1263
|
parentType,
|
|
1262
|
-
path
|
|
1264
|
+
path,
|
|
1265
|
+
showInSidebar
|
|
1263
1266
|
}) => {
|
|
1264
1267
|
const type = getSelectedUnionType(parentType, inlineFragmentNode);
|
|
1265
1268
|
if (!type) {
|
|
@@ -1270,7 +1273,7 @@ const formify = async ({
|
|
|
1270
1273
|
inlineFragmentNode,
|
|
1271
1274
|
type,
|
|
1272
1275
|
path,
|
|
1273
|
-
showInSidebar
|
|
1276
|
+
showInSidebar
|
|
1274
1277
|
});
|
|
1275
1278
|
}
|
|
1276
1279
|
return {
|
package/dist/index.js
CHANGED
|
@@ -1193,7 +1193,8 @@
|
|
|
1193
1193
|
return formifyInlineFragmentNode({
|
|
1194
1194
|
inlineFragmentNode: selectionNode,
|
|
1195
1195
|
parentType: type,
|
|
1196
|
-
path
|
|
1196
|
+
path,
|
|
1197
|
+
showInSidebar: true
|
|
1197
1198
|
});
|
|
1198
1199
|
}
|
|
1199
1200
|
case "Field": {
|
|
@@ -1263,7 +1264,8 @@
|
|
|
1263
1264
|
return formifyInlineFragmentNode({
|
|
1264
1265
|
inlineFragmentNode: selectionNode,
|
|
1265
1266
|
parentType: field.type,
|
|
1266
|
-
path: fieldPath
|
|
1267
|
+
path: fieldPath,
|
|
1268
|
+
showInSidebar: false
|
|
1267
1269
|
});
|
|
1268
1270
|
}
|
|
1269
1271
|
default:
|
|
@@ -1277,7 +1279,8 @@
|
|
|
1277
1279
|
const formifyInlineFragmentNode = ({
|
|
1278
1280
|
inlineFragmentNode,
|
|
1279
1281
|
parentType,
|
|
1280
|
-
path
|
|
1282
|
+
path,
|
|
1283
|
+
showInSidebar
|
|
1281
1284
|
}) => {
|
|
1282
1285
|
const type = getSelectedUnionType(parentType, inlineFragmentNode);
|
|
1283
1286
|
if (!type) {
|
|
@@ -1288,7 +1291,7 @@
|
|
|
1288
1291
|
inlineFragmentNode,
|
|
1289
1292
|
type,
|
|
1290
1293
|
path,
|
|
1291
|
-
showInSidebar
|
|
1294
|
+
showInSidebar
|
|
1292
1295
|
});
|
|
1293
1296
|
}
|
|
1294
1297
|
return {
|