Skip to content

Commit acb3d73

Browse files
committed
message progress
1 parent f476a1d commit acb3d73

File tree

57 files changed

+21628
-6003
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+21628
-6003
lines changed

docs.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ async function main() {
88
app.options.addReader(new TypeDoc.TypeDocReader());
99

1010
app.bootstrap({
11-
entryPoints: ["src/api/*"],
12-
entryPointStrategy: 'expand'
11+
entryPoints: ['src/api/*'],
12+
entryPointStrategy: 'expand',
1313
});
1414

1515
const project = app.convert();
1616

1717
if (project) {
1818
// Project may not have converted correctly
19-
const outputDir = "docs";
19+
const outputDir = 'docs';
2020

2121
// Rendered docs
2222
await app.generateDocs(project, outputDir);

docs/assets/highlight.css

Lines changed: 45 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,56 @@
11
:root {
2-
--light-hl-0: #000000;
3-
--dark-hl-0: #D4D4D4;
4-
--light-hl-1: #0451A5;
5-
--dark-hl-1: #9CDCFE;
6-
--light-hl-2: #A31515;
7-
--dark-hl-2: #CE9178;
8-
--light-code-background: #FFFFFF;
9-
--dark-code-background: #1E1E1E;
2+
--light-hl-0: #000000;
3+
--dark-hl-0: #d4d4d4;
4+
--light-hl-1: #0451a5;
5+
--dark-hl-1: #9cdcfe;
6+
--light-hl-2: #a31515;
7+
--dark-hl-2: #ce9178;
8+
--light-code-background: #ffffff;
9+
--dark-code-background: #1e1e1e;
1010
}
1111

12-
@media (prefers-color-scheme: light) { :root {
13-
--hl-0: var(--light-hl-0);
14-
--hl-1: var(--light-hl-1);
15-
--hl-2: var(--light-hl-2);
16-
--code-background: var(--light-code-background);
17-
} }
12+
@media (prefers-color-scheme: light) {
13+
:root {
14+
--hl-0: var(--light-hl-0);
15+
--hl-1: var(--light-hl-1);
16+
--hl-2: var(--light-hl-2);
17+
--code-background: var(--light-code-background);
18+
}
19+
}
1820

19-
@media (prefers-color-scheme: dark) { :root {
20-
--hl-0: var(--dark-hl-0);
21-
--hl-1: var(--dark-hl-1);
22-
--hl-2: var(--dark-hl-2);
23-
--code-background: var(--dark-code-background);
24-
} }
21+
@media (prefers-color-scheme: dark) {
22+
:root {
23+
--hl-0: var(--dark-hl-0);
24+
--hl-1: var(--dark-hl-1);
25+
--hl-2: var(--dark-hl-2);
26+
--code-background: var(--dark-code-background);
27+
}
28+
}
2529

2630
:root[data-theme='light'] {
27-
--hl-0: var(--light-hl-0);
28-
--hl-1: var(--light-hl-1);
29-
--hl-2: var(--light-hl-2);
30-
--code-background: var(--light-code-background);
31+
--hl-0: var(--light-hl-0);
32+
--hl-1: var(--light-hl-1);
33+
--hl-2: var(--light-hl-2);
34+
--code-background: var(--light-code-background);
3135
}
3236

3337
:root[data-theme='dark'] {
34-
--hl-0: var(--dark-hl-0);
35-
--hl-1: var(--dark-hl-1);
36-
--hl-2: var(--dark-hl-2);
37-
--code-background: var(--dark-code-background);
38+
--hl-0: var(--dark-hl-0);
39+
--hl-1: var(--dark-hl-1);
40+
--hl-2: var(--dark-hl-2);
41+
--code-background: var(--dark-code-background);
3842
}
3943

40-
.hl-0 { color: var(--hl-0); }
41-
.hl-1 { color: var(--hl-1); }
42-
.hl-2 { color: var(--hl-2); }
43-
pre, code { background: var(--code-background); }
44+
.hl-0 {
45+
color: var(--hl-0);
46+
}
47+
.hl-1 {
48+
color: var(--hl-1);
49+
}
50+
.hl-2 {
51+
color: var(--hl-2);
52+
}
53+
pre,
54+
code {
55+
background: var(--code-background);
56+
}

docs/assets/search.js

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)