Skip to content

Commit 94893fb

Browse files
Common/v0.0.5
1 parent de6d3fa commit 94893fb

Some content is hidden

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

69 files changed

+1802
-39
lines changed

.github/workflows/NPM.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
continue-on-error: true
3838
working-directory: .
3939
run: |
40-
npm install --include prod dev optional peer --legacy-peer-deps
41-
npm publish --legacy-peer-deps --provenance
40+
npm publish --legacy-peer-deps --provenance --ignore-scripts
4241
env:
4342
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/Node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
- uses: pnpm/[email protected]
6363
with:
64-
version: 8.15.5
64+
version: 9.3.0
6565
run_install: |
6666
- recursive: true
6767
args: [

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.5
2+
3+
- Cleanup
4+
15
## 0.0.4
26

37
- Minify

Documentation/.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.

Documentation/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: #ffdd00;
7+
--light-hl-1: #ff66ff;
8+
--light-hl-2: #ff4444;
9+
--light-hl-3: #44ffff;
10+
--light-hl-4: #44ff44;
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+
}

Documentation/assets/highlight.css

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

Documentation/assets/icons.js

Lines changed: 15 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)