Skip to content

Commit 2f62a50

Browse files
committed
readme/doc
1 parent 51f0584 commit 2f62a50

File tree

92 files changed

+233
-265
lines changed

Some content is hidden

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

92 files changed

+233
-265
lines changed

docs/assets/main.js

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

docs/assets/navigation.js

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

docs/assets/search.js

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

docs/assets/style.css

Lines changed: 15 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
--light-color-text-aside: #6e6e6e;
1212
--light-color-link: #1f70c2;
1313

14-
--light-color-ts-keyword: #056bd6;
1514
--light-color-ts-project: #b111c9;
1615
--light-color-ts-module: var(--light-color-ts-project);
1716
--light-color-ts-namespace: var(--light-color-ts-project);
@@ -29,7 +28,7 @@
2928
--light-color-ts-constructor-signature: var(--light-color-ts-constructor);
3029
--light-color-ts-parameter: var(--light-color-ts-variable);
3130
/* type literal not included as links will never be generated to it */
32-
--light-color-ts-type-parameter: #a55c0e;
31+
--light-color-ts-type-parameter: var(--light-color-ts-type-alias);
3332
--light-color-ts-accessor: var(--light-color-ts-property);
3433
--light-color-ts-get-signature: var(--light-color-ts-accessor);
3534
--light-color-ts-set-signature: var(--light-color-ts-accessor);
@@ -51,7 +50,6 @@
5150
--dark-color-text-aside: #dddddd;
5251
--dark-color-link: #00aff4;
5352

54-
--dark-color-ts-keyword: #3399ff;
5553
--dark-color-ts-project: #e358ff;
5654
--dark-color-ts-module: var(--dark-color-ts-project);
5755
--dark-color-ts-namespace: var(--dark-color-ts-project);
@@ -69,7 +67,7 @@
6967
--dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
7068
--dark-color-ts-parameter: var(--dark-color-ts-variable);
7169
/* type literal not included as links will never be generated to it */
72-
--dark-color-ts-type-parameter: #e07d13;
70+
--dark-color-ts-type-parameter: var(--dark-color-ts-type-alias);
7371
--dark-color-ts-accessor: var(--dark-color-ts-property);
7472
--dark-color-ts-get-signature: var(--dark-color-ts-accessor);
7573
--dark-color-ts-set-signature: var(--dark-color-ts-accessor);
@@ -93,7 +91,6 @@
9391
--color-text-aside: var(--light-color-text-aside);
9492
--color-link: var(--light-color-link);
9593

96-
--color-ts-keyword: var(--light-color-ts-keyword);
9794
--color-ts-module: var(--light-color-ts-module);
9895
--color-ts-namespace: var(--light-color-ts-namespace);
9996
--color-ts-enum: var(--light-color-ts-enum);
@@ -135,7 +132,6 @@
135132
--color-text-aside: var(--dark-color-text-aside);
136133
--color-link: var(--dark-color-link);
137134

138-
--color-ts-keyword: var(--dark-color-ts-keyword);
139135
--color-ts-module: var(--dark-color-ts-module);
140136
--color-ts-namespace: var(--dark-color-ts-namespace);
141137
--color-ts-enum: var(--dark-color-ts-enum);
@@ -184,7 +180,6 @@ body {
184180
--color-text-aside: var(--light-color-text-aside);
185181
--color-link: var(--light-color-link);
186182

187-
--color-ts-keyword: var(--light-color-ts-keyword);
188183
--color-ts-module: var(--light-color-ts-module);
189184
--color-ts-namespace: var(--light-color-ts-namespace);
190185
--color-ts-enum: var(--light-color-ts-enum);
@@ -224,7 +219,6 @@ body {
224219
--color-text-aside: var(--dark-color-text-aside);
225220
--color-link: var(--dark-color-link);
226221

227-
--color-ts-keyword: var(--dark-color-ts-keyword);
228222
--color-ts-module: var(--dark-color-ts-module);
229223
--color-ts-namespace: var(--dark-color-ts-namespace);
230224
--color-ts-enum: var(--dark-color-ts-enum);
@@ -266,12 +260,12 @@ h6 {
266260
line-height: 1.2;
267261
}
268262

269-
h1 > a:not(.link),
270-
h2 > a:not(.link),
271-
h3 > a:not(.link),
272-
h4 > a:not(.link),
273-
h5 > a:not(.link),
274-
h6 > a:not(.link) {
263+
h1 > a,
264+
h2 > a,
265+
h3 > a,
266+
h4 > a,
267+
h5 > a,
268+
h6 > a {
275269
text-decoration: none;
276270
color: var(--color-text);
277271
}
@@ -649,28 +643,6 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
649643
font-weight: bold;
650644
}
651645

652-
.tsd-full-hierarchy:not(:last-child) {
653-
margin-bottom: 1em;
654-
padding-bottom: 1em;
655-
border-bottom: 1px solid var(--color-accent);
656-
}
657-
.tsd-full-hierarchy,
658-
.tsd-full-hierarchy ul {
659-
list-style: none;
660-
margin: 0;
661-
padding: 0;
662-
}
663-
.tsd-full-hierarchy ul {
664-
padding-left: 1.5rem;
665-
}
666-
.tsd-full-hierarchy a {
667-
padding: 0.25rem 0 !important;
668-
font-size: 1rem;
669-
display: inline-flex;
670-
align-items: center;
671-
color: var(--color-text);
672-
}
673-
674646
.tsd-panel-group.tsd-index-group {
675647
margin-bottom: 0;
676648
}
@@ -736,15 +708,12 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
736708
}
737709
.tsd-navigation > a,
738710
.tsd-navigation .tsd-accordion-summary {
739-
width: calc(100% - 0.25rem);
740-
display: flex;
741-
align-items: center;
711+
width: calc(100% - 0.5rem);
742712
}
743713
.tsd-navigation a,
744714
.tsd-navigation summary > span,
745715
.tsd-page-navigation a {
746-
display: flex;
747-
width: calc(100% - 0.25rem);
716+
display: inline-flex;
748717
align-items: center;
749718
padding: 0.25rem;
750719
color: var(--color-text);
@@ -784,6 +753,11 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
784753
margin-left: -1.5rem;
785754
}
786755

756+
.tsd-nested-navigation > li > a,
757+
.tsd-nested-navigation > li > span {
758+
width: calc(100% - 1.75rem - 0.5rem);
759+
}
760+
787761
.tsd-page-navigation ul {
788762
padding-left: 1.75rem;
789763
}
@@ -1010,11 +984,6 @@ a.tsd-index-link {
1010984
overflow-x: auto;
1011985
}
1012986

1013-
.tsd-signature-keyword {
1014-
color: var(--color-ts-keyword);
1015-
font-weight: normal;
1016-
}
1017-
1018987
.tsd-signature-symbol {
1019988
color: var(--color-text-aside);
1020989
font-weight: normal;

0 commit comments

Comments
 (0)