Skip to content

Commit de02711

Browse files
Document/v0.1.2
1 parent ae8f58b commit de02711

27 files changed

+1747
-0
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
## 0.1.2
22

3+
### Changed
4+
5+
- Renamed Documentation folder to docs
6+
- Updated `typedoc` to version 0.26.7
7+
- Updated `typedoc-plugin-mdn-links` to version 3.3.1
8+
- Updated `typedoc-plugin-merge-modules` to version 6.0.1
9+
- Updated `@playform/build` to version 0.1.6
10+
- Added option to specify output folder for documentation
11+
312
## 0.1.1
413

514
### Changed

docs/.nojekyll

Lines changed: 1 addition & 0 deletions
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.

docs/assets/custom.css

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

docs/assets/highlight.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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: #0451A5;
11+
--dark-hl-4: #9CDCFE;
12+
--light-code-background: #FFFFFF;
13+
--dark-code-background: #1E1E1E;
14+
}
15+
16+
@media (prefers-color-scheme: light) { :root {
17+
--hl-0: var(--light-hl-0);
18+
--hl-1: var(--light-hl-1);
19+
--hl-2: var(--light-hl-2);
20+
--hl-3: var(--light-hl-3);
21+
--hl-4: var(--light-hl-4);
22+
--code-background: var(--light-code-background);
23+
} }
24+
25+
@media (prefers-color-scheme: dark) { :root {
26+
--hl-0: var(--dark-hl-0);
27+
--hl-1: var(--dark-hl-1);
28+
--hl-2: var(--dark-hl-2);
29+
--hl-3: var(--dark-hl-3);
30+
--hl-4: var(--dark-hl-4);
31+
--code-background: var(--dark-code-background);
32+
} }
33+
34+
:root[data-theme='light'] {
35+
--hl-0: var(--light-hl-0);
36+
--hl-1: var(--light-hl-1);
37+
--hl-2: var(--light-hl-2);
38+
--hl-3: var(--light-hl-3);
39+
--hl-4: var(--light-hl-4);
40+
--code-background: var(--light-code-background);
41+
}
42+
43+
:root[data-theme='dark'] {
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+
--code-background: var(--dark-code-background);
50+
}
51+
52+
.hl-0 { color: var(--hl-0); }
53+
.hl-1 { color: var(--hl-1); }
54+
.hl-2 { color: var(--hl-2); }
55+
.hl-3 { color: var(--hl-3); }
56+
.hl-4 { color: var(--hl-4); }
57+
pre, code { background: var(--code-background); }

docs/assets/icons.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)