@prosophia/lab-classic 0.0.3 → 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 +388 -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 +1025 -0
- package/dist/schemas/index.mjs +987 -0
- package/package.json +14 -3
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
interface SiteSettings {
|
|
2
|
+
labName?: string;
|
|
3
|
+
labNameAccent?: string;
|
|
4
|
+
labNameDescription?: string;
|
|
5
|
+
footerText?: string;
|
|
6
|
+
showPrivacyPolicy?: boolean;
|
|
7
|
+
privacyPolicyUrl?: string;
|
|
8
|
+
showTerms?: boolean;
|
|
9
|
+
termsUrl?: string;
|
|
10
|
+
}
|
|
11
|
+
interface SiteConfig {
|
|
12
|
+
title: string;
|
|
13
|
+
description: string;
|
|
14
|
+
url?: string;
|
|
15
|
+
}
|
|
16
|
+
interface ThemeConfig {
|
|
17
|
+
primaryColor?: string;
|
|
18
|
+
accentColor?: string;
|
|
19
|
+
}
|
|
20
|
+
interface ProsophiaConfig {
|
|
21
|
+
template?: string;
|
|
22
|
+
site: SiteConfig;
|
|
23
|
+
theme?: ThemeConfig;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export type { ProsophiaConfig as P, SiteSettings as S, ThemeConfig as T, SiteConfig as a };
|