tinacms 0.68.0 → 0.68.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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # tinacms
2
2
 
3
+ ## 0.68.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 41d666f9a: Styles list page overflow menu, removes unused prop
8
+ - e5a1152f2: Fix issue where pages that didnt use `useTina` would get a loading spinner that hangs
9
+ - Updated dependencies [41d666f9a]
10
+ - @tinacms/toolkit@0.56.24
11
+
3
12
  ## 0.68.0
4
13
 
5
14
  ### Minor Changes
package/dist/index.es.js CHANGED
@@ -425,6 +425,9 @@ function useGraphqlForms({
425
425
  eventList,
426
426
  onSubmit
427
427
  });
428
+ if (!query) {
429
+ return [state.data, false];
430
+ }
428
431
  return [state.data, state.status !== "done"];
429
432
  }
430
433
  const transformDocumentIntoMutationRequestPayload = (document, instructions) => {
@@ -3780,7 +3783,6 @@ const CollectionListPage = () => {
3780
3783
  }, document.node._sys.template)), /* @__PURE__ */ React.createElement("td", {
3781
3784
  className: "w-0"
3782
3785
  }, /* @__PURE__ */ React.createElement(OverflowMenu, {
3783
- showEmbed: true,
3784
3786
  toolbarItems: [
3785
3787
  {
3786
3788
  name: "edit",
package/dist/index.js CHANGED
@@ -444,6 +444,9 @@ var __objRest = (source, exclude) => {
444
444
  eventList,
445
445
  onSubmit
446
446
  });
447
+ if (!query) {
448
+ return [state.data, false];
449
+ }
447
450
  return [state.data, state.status !== "done"];
448
451
  }
449
452
  const transformDocumentIntoMutationRequestPayload = (document, instructions) => {
@@ -3799,7 +3802,6 @@ This will work when developing locally but NOT when deployed to production.
3799
3802
  }, document.node._sys.template)), /* @__PURE__ */ React__default["default"].createElement("td", {
3800
3803
  className: "w-0"
3801
3804
  }, /* @__PURE__ */ React__default["default"].createElement(toolkit.OverflowMenu, {
3802
- showEmbed: true,
3803
3805
  toolbarItems: [
3804
3806
  {
3805
3807
  name: "edit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinacms",
3
- "version": "0.68.0",
3
+ "version": "0.68.1",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist"
@@ -26,7 +26,7 @@
26
26
  "@heroicons/react": "^1.0.4",
27
27
  "@tinacms/schema-tools": "0.0.3",
28
28
  "@tinacms/sharedctx": "0.1.1",
29
- "@tinacms/toolkit": "0.56.23",
29
+ "@tinacms/toolkit": "0.56.24",
30
30
  "crypto-js": "^4.0.0",
31
31
  "final-form": "4.20.1",
32
32
  "graphql": "^15.1.0",