tinacms 1.1.5 → 1.2.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/LICENSE +8 -0
- package/dist/admin/api.d.ts +9 -11
- package/dist/admin/components/AuthTemplate.d.ts +2 -10
- package/dist/admin/components/GetCMS.d.ts +2 -10
- package/dist/admin/components/GetCollection.d.ts +6 -12
- package/dist/admin/components/GetCollections.d.ts +2 -10
- package/dist/admin/components/GetDocument.d.ts +2 -10
- package/dist/admin/components/Layout.d.ts +2 -10
- package/dist/admin/components/LoadingPage.d.ts +2 -10
- package/dist/admin/components/Page.d.ts +1 -10
- package/dist/admin/components/Sidebar.d.ts +2 -10
- package/dist/admin/index.d.ts +2 -10
- package/dist/admin/pages/CollectionCreatePage.d.ts +2 -10
- package/dist/admin/pages/CollectionListPage.d.ts +2 -10
- package/dist/admin/pages/CollectionUpdatePage.d.ts +2 -10
- package/dist/admin/pages/DashboardPage.d.ts +2 -10
- package/dist/admin/pages/LoginPage.d.ts +2 -10
- package/dist/admin/pages/LogoutPage.d.ts +2 -10
- package/dist/admin/pages/ScreenPage.d.ts +2 -10
- package/dist/admin/plugins/route-mapping.d.ts +1 -10
- package/dist/admin/types.d.ts +1 -10
- package/dist/auth/AuthModal.d.ts +2 -10
- package/dist/auth/TinaCloudProvider.d.ts +1 -10
- package/dist/auth/authenticate.d.ts +3 -12
- package/dist/auth/index.d.ts +1 -10
- package/dist/auth/popupWindow.d.ts +1 -10
- package/dist/auth/useGenerator.d.ts +1 -10
- package/dist/auth/useTinaAuthRedirect.d.ts +1 -10
- package/dist/client.d.ts +1 -10
- package/dist/client.es.js +1 -29
- package/dist/client.js +3 -31
- package/dist/edit-state.d.ts +1 -10
- package/dist/hooks/create-page-plugin.d.ts +1 -10
- package/dist/hooks/formify/formify-utils.d.ts +1 -10
- package/dist/hooks/formify/formify.d.ts +1 -10
- package/dist/hooks/formify/index.d.ts +1 -10
- package/dist/hooks/formify/reducer.d.ts +1 -10
- package/dist/hooks/formify/spec/runner.d.ts +1 -10
- package/dist/hooks/formify/spec/util.d.ts +1 -10
- package/dist/hooks/formify/types.d.ts +1 -10
- package/dist/hooks/formify/util.d.ts +1 -10
- package/dist/hooks/use-content-creator.d.ts +1 -10
- package/dist/hooks/use-graphql-forms.d.ts +1 -10
- package/dist/index.d.ts +1 -10
- package/dist/index.es.js +325 -76
- package/dist/index.js +326 -77
- package/dist/internalClient/formify.d.ts +1 -10
- package/dist/internalClient/index.d.ts +2 -13
- package/dist/rich-text/index.d.ts +2 -10
- package/dist/rich-text/prism.d.ts +2 -10
- package/dist/style.css +38 -8
- package/dist/tina-cms.d.ts +2 -10
- package/dist/types/cms.d.ts +1 -10
- package/dist/unifiedClient/index.d.ts +1 -11
- package/dist/utils/client.d.ts +1 -10
- package/dist/utils/index.d.ts +1 -10
- package/package.json +5 -6
- package/dist/utils/parseUrl.d.ts +0 -18
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
2
|
+
|
|
12
3
|
*/
|
|
13
4
|
import { GraphQLSchema, GraphQLField, DocumentNode, FieldNode } from 'graphql';
|
|
14
5
|
/**
|
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
2
|
+
|
|
12
3
|
*/
|
|
13
4
|
import { TokenObject } from '../auth/authenticate';
|
|
14
5
|
import { BranchData, EventBus } from '@tinacms/toolkit';
|
|
@@ -30,7 +21,6 @@ interface ServerOptions {
|
|
|
30
21
|
branch: string;
|
|
31
22
|
customContentApiUrl?: string;
|
|
32
23
|
getTokenFn?: () => Promise<TokenObject>;
|
|
33
|
-
onLogin?: OnLoginFunc;
|
|
34
24
|
tinaioConfig?: TinaIOConfig;
|
|
35
25
|
tokenStorage?: 'MEMORY' | 'LOCAL_STORAGE' | 'CUSTOM';
|
|
36
26
|
}
|
|
@@ -147,7 +137,6 @@ export declare class LocalClient extends Client {
|
|
|
147
137
|
id_token: string;
|
|
148
138
|
refresh_token: string;
|
|
149
139
|
}>;
|
|
150
|
-
|
|
151
|
-
isAuthenticated(): Promise<boolean>;
|
|
140
|
+
getUser(): Promise<boolean>;
|
|
152
141
|
}
|
|
153
142
|
export {};
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
2
|
+
|
|
12
3
|
*/
|
|
4
|
+
/// <reference types="react" />
|
|
13
5
|
declare type BaseComponents = {
|
|
14
6
|
h1?: {
|
|
15
7
|
children: JSX.Element;
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
2
|
+
|
|
12
3
|
*/
|
|
4
|
+
/// <reference types="react" />
|
|
13
5
|
export declare const Prism: (props: {
|
|
14
6
|
value: string;
|
|
15
7
|
lang?: string;
|
package/dist/style.css
CHANGED
|
@@ -399,6 +399,9 @@
|
|
|
399
399
|
.tina-tailwind .mt-2 {
|
|
400
400
|
margin-top: 8px;
|
|
401
401
|
}
|
|
402
|
+
.tina-tailwind .ml-1\.5 {
|
|
403
|
+
margin-left: 6px;
|
|
404
|
+
}
|
|
402
405
|
.tina-tailwind .mb-4 {
|
|
403
406
|
margin-bottom: 16px;
|
|
404
407
|
}
|
|
@@ -426,6 +429,9 @@
|
|
|
426
429
|
.tina-tailwind .table {
|
|
427
430
|
display: table;
|
|
428
431
|
}
|
|
432
|
+
.tina-tailwind .grid {
|
|
433
|
+
display: grid;
|
|
434
|
+
}
|
|
429
435
|
.tina-tailwind .h-screen {
|
|
430
436
|
height: 100vh;
|
|
431
437
|
}
|
|
@@ -536,9 +542,18 @@
|
|
|
536
542
|
.tina-tailwind .cursor-pointer {
|
|
537
543
|
cursor: pointer;
|
|
538
544
|
}
|
|
545
|
+
.tina-tailwind .grid-flow-col {
|
|
546
|
+
grid-auto-flow: column;
|
|
547
|
+
}
|
|
539
548
|
.tina-tailwind .flex-col {
|
|
540
549
|
flex-direction: column;
|
|
541
550
|
}
|
|
551
|
+
.tina-tailwind .flex-wrap {
|
|
552
|
+
flex-wrap: wrap;
|
|
553
|
+
}
|
|
554
|
+
.tina-tailwind .items-start {
|
|
555
|
+
align-items: flex-start;
|
|
556
|
+
}
|
|
542
557
|
.tina-tailwind .items-end {
|
|
543
558
|
align-items: flex-end;
|
|
544
559
|
}
|
|
@@ -581,6 +596,12 @@
|
|
|
581
596
|
--tw-divide-opacity: 1;
|
|
582
597
|
border-color: rgb(230 227 239 / var(--tw-divide-opacity));
|
|
583
598
|
}
|
|
599
|
+
.tina-tailwind .self-end {
|
|
600
|
+
align-self: flex-end;
|
|
601
|
+
}
|
|
602
|
+
.tina-tailwind .justify-self-end {
|
|
603
|
+
justify-self: end;
|
|
604
|
+
}
|
|
584
605
|
.tina-tailwind .overflow-hidden {
|
|
585
606
|
overflow: hidden;
|
|
586
607
|
}
|
|
@@ -595,6 +616,9 @@
|
|
|
595
616
|
.tina-tailwind .whitespace-normal {
|
|
596
617
|
white-space: normal;
|
|
597
618
|
}
|
|
619
|
+
.tina-tailwind .whitespace-nowrap {
|
|
620
|
+
white-space: nowrap;
|
|
621
|
+
}
|
|
598
622
|
.tina-tailwind .rounded-lg {
|
|
599
623
|
border-radius: 8px;
|
|
600
624
|
}
|
|
@@ -648,6 +672,11 @@
|
|
|
648
672
|
--tw-gradient-to: rgb(29 44 108 / 0);
|
|
649
673
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
650
674
|
}
|
|
675
|
+
.tina-tailwind .from-gray-50\/50 {
|
|
676
|
+
--tw-gradient-from: rgb(246 246 249 / .5);
|
|
677
|
+
--tw-gradient-to: rgb(246 246 249 / 0);
|
|
678
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
679
|
+
}
|
|
651
680
|
.tina-tailwind .from-gray-800 {
|
|
652
681
|
--tw-gradient-from: #363145;
|
|
653
682
|
--tw-gradient-to: rgb(54 49 69 / 0);
|
|
@@ -660,6 +689,9 @@
|
|
|
660
689
|
.tina-tailwind .to-gray-900 {
|
|
661
690
|
--tw-gradient-to: #252336;
|
|
662
691
|
}
|
|
692
|
+
.tina-tailwind .to-gray-50 {
|
|
693
|
+
--tw-gradient-to: #F6F6F9;
|
|
694
|
+
}
|
|
663
695
|
.tina-tailwind .to-black {
|
|
664
696
|
--tw-gradient-to: #000;
|
|
665
697
|
}
|
|
@@ -683,6 +715,10 @@
|
|
|
683
715
|
padding-left: 48px;
|
|
684
716
|
padding-right: 48px;
|
|
685
717
|
}
|
|
718
|
+
.tina-tailwind .py-8 {
|
|
719
|
+
padding-top: 32px;
|
|
720
|
+
padding-bottom: 32px;
|
|
721
|
+
}
|
|
686
722
|
.tina-tailwind .py-10 {
|
|
687
723
|
padding-top: 40px;
|
|
688
724
|
padding-bottom: 40px;
|
|
@@ -714,11 +750,8 @@
|
|
|
714
750
|
.tina-tailwind .pt-4 {
|
|
715
751
|
padding-top: 16px;
|
|
716
752
|
}
|
|
717
|
-
.tina-tailwind .
|
|
718
|
-
padding-
|
|
719
|
-
}
|
|
720
|
-
.tina-tailwind .pt-16 {
|
|
721
|
-
padding-top: 64px;
|
|
753
|
+
.tina-tailwind .pt-12 {
|
|
754
|
+
padding-top: 48px;
|
|
722
755
|
}
|
|
723
756
|
.tina-tailwind .pr-3 {
|
|
724
757
|
padding-right: 12px;
|
|
@@ -732,9 +765,6 @@
|
|
|
732
765
|
.tina-tailwind .pl-5 {
|
|
733
766
|
padding-left: 20px;
|
|
734
767
|
}
|
|
735
|
-
.tina-tailwind .pt-3 {
|
|
736
|
-
padding-top: 12px;
|
|
737
|
-
}
|
|
738
768
|
.tina-tailwind .pl-18 {
|
|
739
769
|
padding-left: 72px;
|
|
740
770
|
}
|
package/dist/tina-cms.d.ts
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
2
|
+
|
|
12
3
|
*/
|
|
4
|
+
/// <reference types="react" />
|
|
13
5
|
import type { formifyCallback } from './hooks/use-graphql-forms';
|
|
14
6
|
import { useDocumentCreatorPlugin } from './hooks/use-content-creator';
|
|
15
7
|
import { TinaCMSProviderDefaultProps } from './types/cms';
|
package/dist/types/cms.d.ts
CHANGED
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
2
|
+
|
|
12
3
|
*/
|
|
13
4
|
/// <reference types="react" />
|
|
14
5
|
import type { TinaCMS } from '@tinacms/toolkit';
|
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
2
|
+
|
|
12
3
|
*/
|
|
13
4
|
export declare const TINA_HOST = "content.tinajs.io";
|
|
14
5
|
export interface TinaClientArgs<GenQueries = Record<string, unknown>> {
|
|
@@ -38,6 +29,5 @@ export declare class TinaClient<GenQueries> {
|
|
|
38
29
|
data: DataType;
|
|
39
30
|
query: string;
|
|
40
31
|
}>;
|
|
41
|
-
parseURL: (overrideUrl: string) => TinaClientURLParts;
|
|
42
32
|
}
|
|
43
33
|
export declare function createClient<GenQueries>(args: TinaClientArgs<GenQueries>): TinaClient<GenQueries>;
|
package/dist/utils/client.d.ts
CHANGED
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
2
|
+
|
|
12
3
|
*/
|
|
13
4
|
export declare class TinaGQLClient {
|
|
14
5
|
private _usedFrags;
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
2
|
+
|
|
12
3
|
*/
|
|
13
4
|
import { Client } from '../internalClient';
|
|
14
5
|
import type { TinaIOConfig } from '../internalClient';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinacms",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"exports": {
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"@headlessui/react": "^1.5.0",
|
|
56
56
|
"@heroicons/react": "^1.0.4",
|
|
57
57
|
"@react-hook/window-size": "^3.0.7",
|
|
58
|
-
"@tinacms/schema-tools": "1.
|
|
59
|
-
"@tinacms/sharedctx": "1.0.
|
|
60
|
-
"@tinacms/toolkit": "1.3.
|
|
58
|
+
"@tinacms/schema-tools": "1.3.0",
|
|
59
|
+
"@tinacms/sharedctx": "1.0.1",
|
|
60
|
+
"@tinacms/toolkit": "1.3.2",
|
|
61
61
|
"crypto-js": "^4.0.0",
|
|
62
62
|
"encoding": "0.1.13",
|
|
63
63
|
"fetch-ponyfill": "^7.1.0",
|
|
@@ -68,7 +68,6 @@
|
|
|
68
68
|
"prism-react-renderer": "^1.3.5",
|
|
69
69
|
"react-icons": "^4.3.1",
|
|
70
70
|
"react-router-dom": "6",
|
|
71
|
-
"url-pattern": "^1.0.3",
|
|
72
71
|
"yup": "^0.32.0"
|
|
73
72
|
},
|
|
74
73
|
"devDependencies": {
|
|
@@ -77,7 +76,7 @@
|
|
|
77
76
|
"@testing-library/react": "^12.0.0",
|
|
78
77
|
"@testing-library/react-hooks": "^7.0.2",
|
|
79
78
|
"@testing-library/user-event": "^12.7.0",
|
|
80
|
-
"@tinacms/scripts": "1.0.
|
|
79
|
+
"@tinacms/scripts": "1.0.2",
|
|
81
80
|
"@types/jest": "^27.0.1",
|
|
82
81
|
"@types/lodash": "^4.14.169",
|
|
83
82
|
"@types/node": "^14.0.13",
|
package/dist/utils/parseUrl.d.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
Copyright 2021 Forestry.io Holdings, Inc.
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
12
|
-
*/
|
|
13
|
-
export declare const TINA_HOST = "content.tinajs.io";
|
|
14
|
-
export declare const parseURL: (url: string) => {
|
|
15
|
-
branch: any;
|
|
16
|
-
isLocalClient: any;
|
|
17
|
-
clientId: any;
|
|
18
|
-
};
|