Skip to content

Commit ef2518f

Browse files
0.0.3
1 parent bb2037c commit ef2518f

27 files changed

+1797
-14
lines changed

Documentation/.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

Documentation/Function/Configuration.configuration.html

+1
Large diffs are not rendered by default.

Documentation/Function/Configuration.readFile.html

+33
Large diffs are not rendered by default.

Documentation/Function/Configuration.resolve.html

+9
Large diffs are not rendered by default.

Documentation/Function/Integration.Merge.html

+2
Large diffs are not rendered by default.

Documentation/Function/Integration.integration.html

+1
Large diffs are not rendered by default.

Documentation/Interface/Configuration.Type.html

+1
Large diffs are not rendered by default.

Documentation/Interface/Integration.Type.html

+1
Large diffs are not rendered by default.

Documentation/Interface/Option.Type.html

+20
Large diffs are not rendered by default.

Documentation/Module/Biome.html

+3
Large diffs are not rendered by default.

Documentation/Module/Configuration.html

+5
Large diffs are not rendered by default.

Documentation/Module/Integration.html

+5
Large diffs are not rendered by default.

Documentation/Module/Option.html

+3
Large diffs are not rendered by default.

Documentation/Type/Biome.Type.html

+1
Large diffs are not rendered by default.

Documentation/Variable/Biome.biome.html

+1
Large diffs are not rendered by default.

Documentation/Variable/Integration.Default.html

+1
Large diffs are not rendered by default.

Documentation/Variable/Option.option.html

+1
Large diffs are not rendered by default.

Documentation/assets/custom.css

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
:root {
2+
--dark-color-background: #000;
3+
--dark-color-background-secondary: #000;
4+
--dark-code-background: #040404;
5+
--color-accent: #2463eb;
6+
--dark-hl-0: #ffdd00;
7+
--dark-hl-1: #ff66ff;
8+
--dark-hl-2: #ff4444;
9+
--dark-hl-3: #44ffff;
10+
--dark-hl-4: #44ff44;
11+
}
12+
13+
body #tsd-search .field label {
14+
left: 50%;
15+
margin-left: -20px;
16+
z-index: 1;
17+
text-align: center;
18+
}
19+
20+
body #tsd-search.has-focus .field label {
21+
display: none;
22+
}
23+
24+
body #tsd-search .field input {
25+
z-index: 2;
26+
}
27+
28+
body pre,
29+
body .tsd-page-toolbar,
30+
body .tsd-generator {
31+
border: none;
32+
}
33+
34+
body .tsd-navigation a,
35+
body .tsd-navigation summary > span,
36+
body .tsd-page-navigation a {
37+
padding: 0.5rem;
38+
border-radius: 8px;
39+
}
40+
41+
body .tsd-description .tsd-signatures .tsd-signature,
42+
body .tsd-signature,
43+
body .tsd-signatures .tsd-signature,
44+
body .tsd-typography td,
45+
body .tsd-typography th,
46+
body code.tsd-tag {
47+
border-radius: 12px;
48+
border-width: 2px;
49+
}

Documentation/assets/highlight.css

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
:root {
2+
--light-hl-0: #795E26;
3+
--dark-hl-0: #DCDCAA;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
8+
--light-hl-3: #0000FF;
9+
--dark-hl-3: #569CD6;
10+
--light-hl-4: #AF00DB;
11+
--dark-hl-4: #C586C0;
12+
--light-hl-5: #001080;
13+
--dark-hl-5: #9CDCFE;
14+
--light-hl-6: #008000;
15+
--dark-hl-6: #6A9955;
16+
--light-hl-7: #267F99;
17+
--dark-hl-7: #4EC9B0;
18+
--light-hl-8: #098658;
19+
--dark-hl-8: #B5CEA8;
20+
--light-hl-9: #0070C1;
21+
--dark-hl-9: #4FC1FF;
22+
--light-hl-10: #000000;
23+
--dark-hl-10: #C8C8C8;
24+
--light-code-background: #FFFFFF;
25+
--dark-code-background: #1E1E1E;
26+
}
27+
28+
@media (prefers-color-scheme: light) { :root {
29+
--hl-0: var(--light-hl-0);
30+
--hl-1: var(--light-hl-1);
31+
--hl-2: var(--light-hl-2);
32+
--hl-3: var(--light-hl-3);
33+
--hl-4: var(--light-hl-4);
34+
--hl-5: var(--light-hl-5);
35+
--hl-6: var(--light-hl-6);
36+
--hl-7: var(--light-hl-7);
37+
--hl-8: var(--light-hl-8);
38+
--hl-9: var(--light-hl-9);
39+
--hl-10: var(--light-hl-10);
40+
--code-background: var(--light-code-background);
41+
} }
42+
43+
@media (prefers-color-scheme: dark) { :root {
44+
--hl-0: var(--dark-hl-0);
45+
--hl-1: var(--dark-hl-1);
46+
--hl-2: var(--dark-hl-2);
47+
--hl-3: var(--dark-hl-3);
48+
--hl-4: var(--dark-hl-4);
49+
--hl-5: var(--dark-hl-5);
50+
--hl-6: var(--dark-hl-6);
51+
--hl-7: var(--dark-hl-7);
52+
--hl-8: var(--dark-hl-8);
53+
--hl-9: var(--dark-hl-9);
54+
--hl-10: var(--dark-hl-10);
55+
--code-background: var(--dark-code-background);
56+
} }
57+
58+
:root[data-theme='light'] {
59+
--hl-0: var(--light-hl-0);
60+
--hl-1: var(--light-hl-1);
61+
--hl-2: var(--light-hl-2);
62+
--hl-3: var(--light-hl-3);
63+
--hl-4: var(--light-hl-4);
64+
--hl-5: var(--light-hl-5);
65+
--hl-6: var(--light-hl-6);
66+
--hl-7: var(--light-hl-7);
67+
--hl-8: var(--light-hl-8);
68+
--hl-9: var(--light-hl-9);
69+
--hl-10: var(--light-hl-10);
70+
--code-background: var(--light-code-background);
71+
}
72+
73+
:root[data-theme='dark'] {
74+
--hl-0: var(--dark-hl-0);
75+
--hl-1: var(--dark-hl-1);
76+
--hl-2: var(--dark-hl-2);
77+
--hl-3: var(--dark-hl-3);
78+
--hl-4: var(--dark-hl-4);
79+
--hl-5: var(--dark-hl-5);
80+
--hl-6: var(--dark-hl-6);
81+
--hl-7: var(--dark-hl-7);
82+
--hl-8: var(--dark-hl-8);
83+
--hl-9: var(--dark-hl-9);
84+
--hl-10: var(--dark-hl-10);
85+
--code-background: var(--dark-code-background);
86+
}
87+
88+
.hl-0 { color: var(--hl-0); }
89+
.hl-1 { color: var(--hl-1); }
90+
.hl-2 { color: var(--hl-2); }
91+
.hl-3 { color: var(--hl-3); }
92+
.hl-4 { color: var(--hl-4); }
93+
.hl-5 { color: var(--hl-5); }
94+
.hl-6 { color: var(--hl-6); }
95+
.hl-7 { color: var(--hl-7); }
96+
.hl-8 { color: var(--hl-8); }
97+
.hl-9 { color: var(--hl-9); }
98+
.hl-10 { color: var(--hl-10); }
99+
pre, code { background: var(--code-background); }

Documentation/assets/main.js

+59
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Documentation/assets/navigation.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Documentation/assets/search.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)