tinacms 0.62.0 → 0.64.2
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 +59 -0
- package/dist/index.es.js +1406 -75
- package/dist/index.js +1407 -76
- package/dist/style.css +1342 -0
- package/dist/tina-cms.d.ts +25 -4
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,64 @@
|
|
|
1
1
|
# tinacms
|
|
2
2
|
|
|
3
|
+
## 0.64.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [7006b38ea]
|
|
8
|
+
- @tinacms/toolkit@0.56.8
|
|
9
|
+
|
|
10
|
+
## 0.64.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 28010a026: Adds tailwind styles to Admin Layout
|
|
15
|
+
- Updated dependencies [e8ca82899]
|
|
16
|
+
- @tinacms/toolkit@0.56.7
|
|
17
|
+
|
|
18
|
+
## 0.64.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- 4a3990c7e: Cloudinary media store now serves images over `https` by default. This can now be configured though the handler provided.
|
|
23
|
+
|
|
24
|
+
To revert to the old behavior:
|
|
25
|
+
|
|
26
|
+
```ts
|
|
27
|
+
export default createMediaHandler(
|
|
28
|
+
{
|
|
29
|
+
// ...
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
useHttps: false,
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
The default for `useHttps` is `true`
|
|
38
|
+
|
|
39
|
+
## 0.63.0
|
|
40
|
+
|
|
41
|
+
### Minor Changes
|
|
42
|
+
|
|
43
|
+
- 3897ec5d9: Replace `branch`, `clientId`, `isLocalClient` props with single `apiURL`. When working locally, this should be `http://localhost:4001/graphql`. For Tina Cloud, use `https://content.tinajs.io/content/<my-client-id>/github/<my-branch>`
|
|
44
|
+
|
|
45
|
+
```tsx
|
|
46
|
+
// _app.tsx
|
|
47
|
+
// ...
|
|
48
|
+
<TinaCMS apiURL={process.env.NEXT_PUBLIC_TINA_API_URL} {...pageProps}>
|
|
49
|
+
{livePageProps => <Component {...livePageProps} />}
|
|
50
|
+
</TinaCMS>
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
DEPRECATION NOTICE: `branch`, `clientId`, `isLocalClient` props will be deprecated in the future
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- 96e4a77e2: Fixed types
|
|
58
|
+
- b5c22503a: Changes messaging on login page for TinaAdmin when in local-mode
|
|
59
|
+
- Updated dependencies [60f939f34]
|
|
60
|
+
- @tinacms/toolkit@0.56.6
|
|
61
|
+
|
|
3
62
|
## 0.62.0
|
|
4
63
|
|
|
5
64
|
### Minor Changes
|