@prosophia/lab-classic 0.0.2 → 0.0.4
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/BookPage.module.css +314 -0
- package/dist/ContactCTA.module.css +99 -0
- package/dist/ContactPage.module.css +259 -0
- package/dist/Footer.module.css +240 -0
- package/dist/HomePage.module.css +879 -0
- package/dist/Layout.module.css +368 -0
- package/dist/LegalPage.module.css +239 -0
- package/dist/NewsArticlePage.module.css +214 -0
- package/dist/NewsPage.module.css +189 -0
- package/dist/PastMembersPage.module.css +236 -0
- package/dist/PeoplePage.module.css +465 -0
- package/dist/PicturesPage.module.css +196 -0
- package/dist/PublicationDetailPage.module.css +213 -0
- package/dist/PublicationsPage.module.css +181 -0
- package/dist/ResearchPage.module.css +173 -0
- package/dist/ThemeToggle.module.css +114 -0
- package/dist/index-CSdV51Jq.d.mts +26 -0
- package/dist/index-CSdV51Jq.d.ts +26 -0
- package/dist/index.css +1587 -0
- package/dist/index.d.mts +279 -0
- package/dist/index.d.ts +279 -0
- package/dist/index.js +854 -94
- package/dist/index.mjs +805 -86
- package/dist/layouts/index.css +594 -0
- package/dist/layouts/index.d.mts +13 -0
- package/dist/layouts/index.d.ts +13 -0
- package/dist/layouts/index.js +389 -0
- package/dist/layouts/index.mjs +352 -0
- package/dist/schemas/index.d.mts +182 -0
- package/dist/schemas/index.d.ts +182 -0
- package/dist/schemas/index.js +1026 -0
- package/dist/schemas/index.mjs +987 -0
- package/dist/styles/globals.css +1169 -0
- package/package.json +24 -9
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import * as sanity from 'sanity';
|
|
2
|
+
|
|
3
|
+
declare const schemaTypes: (({
|
|
4
|
+
type: "document";
|
|
5
|
+
name: "publication";
|
|
6
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
7
|
+
preview?: sanity.PreviewConfig<Record<string, string>, Record<never, any>> | undefined;
|
|
8
|
+
}) | ({
|
|
9
|
+
type: "document";
|
|
10
|
+
name: "person";
|
|
11
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
12
|
+
preview?: sanity.PreviewConfig<{
|
|
13
|
+
title: string;
|
|
14
|
+
subtitle: string;
|
|
15
|
+
media: string;
|
|
16
|
+
}, Record<"title" | "media" | "subtitle", any>> | undefined;
|
|
17
|
+
}) | ({
|
|
18
|
+
type: "array";
|
|
19
|
+
name: "blockContent";
|
|
20
|
+
} & Omit<sanity.ArrayDefinition, "preview">) | ({
|
|
21
|
+
type: "document";
|
|
22
|
+
name: "newsArticle";
|
|
23
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
24
|
+
preview?: sanity.PreviewConfig<{
|
|
25
|
+
title: string;
|
|
26
|
+
subtitle: string;
|
|
27
|
+
media: string;
|
|
28
|
+
}, Record<"title" | "media" | "subtitle", any>> | undefined;
|
|
29
|
+
}) | ({
|
|
30
|
+
type: "document";
|
|
31
|
+
name: "researchPage";
|
|
32
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
33
|
+
preview?: sanity.PreviewConfig<{
|
|
34
|
+
title: string;
|
|
35
|
+
}, Record<"title", any>> | undefined;
|
|
36
|
+
}) | ({
|
|
37
|
+
type: "document";
|
|
38
|
+
name: "bookPage";
|
|
39
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
40
|
+
preview?: sanity.PreviewConfig<{
|
|
41
|
+
title: string;
|
|
42
|
+
media: string;
|
|
43
|
+
}, Record<"title" | "media", any>> | undefined;
|
|
44
|
+
}) | ({
|
|
45
|
+
type: "document";
|
|
46
|
+
name: "contactPage";
|
|
47
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
48
|
+
preview?: sanity.PreviewConfig<Record<string, string>, Record<never, any>> | undefined;
|
|
49
|
+
}) | ({
|
|
50
|
+
type: "document";
|
|
51
|
+
name: "galleryImage";
|
|
52
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
53
|
+
preview?: sanity.PreviewConfig<Record<string, string>, Record<never, any>> | undefined;
|
|
54
|
+
}) | ({
|
|
55
|
+
type: "document";
|
|
56
|
+
name: "siteSettings";
|
|
57
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
58
|
+
preview?: sanity.PreviewConfig<{
|
|
59
|
+
title: string;
|
|
60
|
+
subtitle: string;
|
|
61
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
62
|
+
}) | ({
|
|
63
|
+
type: "document";
|
|
64
|
+
name: "homePage";
|
|
65
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
66
|
+
preview?: sanity.PreviewConfig<{
|
|
67
|
+
title: string;
|
|
68
|
+
media: string;
|
|
69
|
+
}, Record<"title" | "media", any>> | undefined;
|
|
70
|
+
}) | ({
|
|
71
|
+
type: "document";
|
|
72
|
+
name: "legalPage";
|
|
73
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
74
|
+
preview?: sanity.PreviewConfig<{
|
|
75
|
+
title: string;
|
|
76
|
+
pageType: string;
|
|
77
|
+
}, Record<"title" | "pageType", any>> | undefined;
|
|
78
|
+
}))[];
|
|
79
|
+
|
|
80
|
+
declare const _default$a: {
|
|
81
|
+
type: "document";
|
|
82
|
+
name: "publication";
|
|
83
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
84
|
+
preview?: sanity.PreviewConfig<Record<string, string>, Record<never, any>> | undefined;
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
declare const _default$9: {
|
|
88
|
+
type: "document";
|
|
89
|
+
name: "person";
|
|
90
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
91
|
+
preview?: sanity.PreviewConfig<{
|
|
92
|
+
title: string;
|
|
93
|
+
subtitle: string;
|
|
94
|
+
media: string;
|
|
95
|
+
}, Record<"title" | "media" | "subtitle", any>> | undefined;
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* This is the schema definition for the rich text fields used for
|
|
100
|
+
* article content. When you import it in other schemas, you can specify
|
|
101
|
+
* `name` and `title` properties to suit your needs.
|
|
102
|
+
*/
|
|
103
|
+
declare const _default$8: {
|
|
104
|
+
type: "array";
|
|
105
|
+
name: "blockContent";
|
|
106
|
+
} & Omit<sanity.ArrayDefinition, "preview">;
|
|
107
|
+
|
|
108
|
+
declare const _default$7: {
|
|
109
|
+
type: "document";
|
|
110
|
+
name: "newsArticle";
|
|
111
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
112
|
+
preview?: sanity.PreviewConfig<{
|
|
113
|
+
title: string;
|
|
114
|
+
subtitle: string;
|
|
115
|
+
media: string;
|
|
116
|
+
}, Record<"title" | "media" | "subtitle", any>> | undefined;
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
declare const _default$6: {
|
|
120
|
+
type: "document";
|
|
121
|
+
name: "researchPage";
|
|
122
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
123
|
+
preview?: sanity.PreviewConfig<{
|
|
124
|
+
title: string;
|
|
125
|
+
}, Record<"title", any>> | undefined;
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
declare const _default$5: {
|
|
129
|
+
type: "document";
|
|
130
|
+
name: "bookPage";
|
|
131
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
132
|
+
preview?: sanity.PreviewConfig<{
|
|
133
|
+
title: string;
|
|
134
|
+
media: string;
|
|
135
|
+
}, Record<"title" | "media", any>> | undefined;
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
declare const _default$4: {
|
|
139
|
+
type: "document";
|
|
140
|
+
name: "contactPage";
|
|
141
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
142
|
+
preview?: sanity.PreviewConfig<Record<string, string>, Record<never, any>> | undefined;
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
declare const _default$3: {
|
|
146
|
+
type: "document";
|
|
147
|
+
name: "galleryImage";
|
|
148
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
149
|
+
preview?: sanity.PreviewConfig<Record<string, string>, Record<never, any>> | undefined;
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
declare const _default$2: {
|
|
153
|
+
type: "document";
|
|
154
|
+
name: "siteSettings";
|
|
155
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
156
|
+
preview?: sanity.PreviewConfig<{
|
|
157
|
+
title: string;
|
|
158
|
+
subtitle: string;
|
|
159
|
+
}, Record<"title" | "subtitle", any>> | undefined;
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
declare const _default$1: {
|
|
163
|
+
type: "document";
|
|
164
|
+
name: "homePage";
|
|
165
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
166
|
+
preview?: sanity.PreviewConfig<{
|
|
167
|
+
title: string;
|
|
168
|
+
media: string;
|
|
169
|
+
}, Record<"title" | "media", any>> | undefined;
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
declare const _default: {
|
|
173
|
+
type: "document";
|
|
174
|
+
name: "legalPage";
|
|
175
|
+
} & Omit<sanity.DocumentDefinition, "preview"> & {
|
|
176
|
+
preview?: sanity.PreviewConfig<{
|
|
177
|
+
title: string;
|
|
178
|
+
pageType: string;
|
|
179
|
+
}, Record<"title" | "pageType", any>> | undefined;
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
export { _default$8 as blockContent, _default$5 as bookPage, _default$4 as contactPage, _default$3 as galleryImage, _default$1 as homePage, _default as legalPage, _default$7 as newsArticle, _default$9 as person, _default$a as publication, _default$6 as researchPage, schemaTypes, schemaTypes as schemas, _default$2 as siteSettings };
|