@t8/docsgen 0.3.28 → 0.3.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/biome.json +35 -0
- package/dist/css/base.css +2 -0
- package/dist/css/index.css +10 -0
- package/dist/css/section.css +10 -0
- package/package.json +1 -1
- package/src/css/base.css +2 -0
- package/src/css/index.css +10 -0
- package/src/css/section.css +10 -0
package/biome.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"formatter": {
|
|
3
|
+
"indentStyle": "space"
|
|
4
|
+
},
|
|
5
|
+
"linter": {
|
|
6
|
+
"rules": {
|
|
7
|
+
"a11y": {
|
|
8
|
+
"noAutofocus": "off",
|
|
9
|
+
"useButtonType": "off",
|
|
10
|
+
"useHtmlLang": "off"
|
|
11
|
+
},
|
|
12
|
+
"security": {
|
|
13
|
+
"noDangerouslySetInnerHtml": "off"
|
|
14
|
+
},
|
|
15
|
+
"style": {
|
|
16
|
+
"noDescendingSpecificity": "off",
|
|
17
|
+
"noNonNullAssertion": "off",
|
|
18
|
+
"useConst": "off"
|
|
19
|
+
},
|
|
20
|
+
"suspicious": {
|
|
21
|
+
"noArrayIndexKey": "off",
|
|
22
|
+
"noAssignInExpressions": "off",
|
|
23
|
+
"noConfusingVoidType": "off"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"vcs": {
|
|
28
|
+
"enabled": true,
|
|
29
|
+
"clientKind": "git",
|
|
30
|
+
"useIgnoreFile": true
|
|
31
|
+
},
|
|
32
|
+
"files": {
|
|
33
|
+
"includes": ["**", "!schema.json"]
|
|
34
|
+
}
|
|
35
|
+
}
|
package/dist/css/base.css
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
--aux-color: #797979;
|
|
10
10
|
--aux-background: #f2f2f2;
|
|
11
|
+
--aux-background-end: #e3e3e3;
|
|
11
12
|
--aux-link-color: royalblue;
|
|
12
13
|
--aux-secondary-color: var(--color);
|
|
13
14
|
--aux-emphatic-color: #3d3d3d; /* cover title, selected nav item */
|
|
@@ -27,6 +28,7 @@
|
|
|
27
28
|
|
|
28
29
|
--aux-color: #8e9198;
|
|
29
30
|
--aux-background: #1d2331;
|
|
31
|
+
--aux-background-end: #232738;
|
|
30
32
|
--aux-link-color: deepskyblue;
|
|
31
33
|
--aux-secondary-color: var(--color);
|
|
32
34
|
--aux-emphatic-color: #c6c7cb;
|
package/dist/css/index.css
CHANGED
|
@@ -117,6 +117,11 @@ section.intro-title {
|
|
|
117
117
|
text-align: right;
|
|
118
118
|
line-height: 1.3;
|
|
119
119
|
color: var(--emphatic-color);
|
|
120
|
+
background: linear-gradient(
|
|
121
|
+
to right,
|
|
122
|
+
var(--aux-background),
|
|
123
|
+
var(--aux-background-end)
|
|
124
|
+
);
|
|
120
125
|
border-right: 0.05em solid var(--line-color);
|
|
121
126
|
}
|
|
122
127
|
section.intro-title .section-content {
|
|
@@ -166,6 +171,11 @@ section.intro pre {
|
|
|
166
171
|
align-items: center;
|
|
167
172
|
justify-content: center;
|
|
168
173
|
text-align: center;
|
|
174
|
+
background: linear-gradient(
|
|
175
|
+
to bottom,
|
|
176
|
+
var(--aux-background),
|
|
177
|
+
var(--aux-background-end)
|
|
178
|
+
);
|
|
169
179
|
border-right: none;
|
|
170
180
|
border-bottom: 0.05em solid var(--line-color);
|
|
171
181
|
}
|
package/dist/css/section.css
CHANGED
|
@@ -35,6 +35,11 @@ footer {
|
|
|
35
35
|
font-size: 0.9em;
|
|
36
36
|
line-height: 1.25;
|
|
37
37
|
text-align: end;
|
|
38
|
+
background: linear-gradient(
|
|
39
|
+
to right,
|
|
40
|
+
var(--aux-background),
|
|
41
|
+
var(--aux-background-end)
|
|
42
|
+
);
|
|
38
43
|
border-right: 0.05em solid var(--line-color);
|
|
39
44
|
padding: 0.75rem var(--content-padding-x);
|
|
40
45
|
margin: 0;
|
|
@@ -99,6 +104,11 @@ footer {
|
|
|
99
104
|
display: block;
|
|
100
105
|
font-size: inherit;
|
|
101
106
|
text-align: start;
|
|
107
|
+
background: linear-gradient(
|
|
108
|
+
to top,
|
|
109
|
+
var(--aux-background),
|
|
110
|
+
var(--aux-background-end)
|
|
111
|
+
);
|
|
102
112
|
border-top: 0.35em solid var(--line-color);
|
|
103
113
|
border-right: none;
|
|
104
114
|
padding: 0.25rem var(--content-padding-x) 0.35rem;
|
package/package.json
CHANGED
package/src/css/base.css
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
--aux-color: #797979;
|
|
10
10
|
--aux-background: #f2f2f2;
|
|
11
|
+
--aux-background-end: #e3e3e3;
|
|
11
12
|
--aux-link-color: royalblue;
|
|
12
13
|
--aux-secondary-color: var(--color);
|
|
13
14
|
--aux-emphatic-color: #3d3d3d; /* cover title, selected nav item */
|
|
@@ -27,6 +28,7 @@
|
|
|
27
28
|
|
|
28
29
|
--aux-color: #8e9198;
|
|
29
30
|
--aux-background: #1d2331;
|
|
31
|
+
--aux-background-end: #232738;
|
|
30
32
|
--aux-link-color: deepskyblue;
|
|
31
33
|
--aux-secondary-color: var(--color);
|
|
32
34
|
--aux-emphatic-color: #c6c7cb;
|
package/src/css/index.css
CHANGED
|
@@ -117,6 +117,11 @@ section.intro-title {
|
|
|
117
117
|
text-align: right;
|
|
118
118
|
line-height: 1.3;
|
|
119
119
|
color: var(--emphatic-color);
|
|
120
|
+
background: linear-gradient(
|
|
121
|
+
to right,
|
|
122
|
+
var(--aux-background),
|
|
123
|
+
var(--aux-background-end)
|
|
124
|
+
);
|
|
120
125
|
border-right: 0.05em solid var(--line-color);
|
|
121
126
|
}
|
|
122
127
|
section.intro-title .section-content {
|
|
@@ -166,6 +171,11 @@ section.intro pre {
|
|
|
166
171
|
align-items: center;
|
|
167
172
|
justify-content: center;
|
|
168
173
|
text-align: center;
|
|
174
|
+
background: linear-gradient(
|
|
175
|
+
to bottom,
|
|
176
|
+
var(--aux-background),
|
|
177
|
+
var(--aux-background-end)
|
|
178
|
+
);
|
|
169
179
|
border-right: none;
|
|
170
180
|
border-bottom: 0.05em solid var(--line-color);
|
|
171
181
|
}
|
package/src/css/section.css
CHANGED
|
@@ -35,6 +35,11 @@ footer {
|
|
|
35
35
|
font-size: 0.9em;
|
|
36
36
|
line-height: 1.25;
|
|
37
37
|
text-align: end;
|
|
38
|
+
background: linear-gradient(
|
|
39
|
+
to right,
|
|
40
|
+
var(--aux-background),
|
|
41
|
+
var(--aux-background-end)
|
|
42
|
+
);
|
|
38
43
|
border-right: 0.05em solid var(--line-color);
|
|
39
44
|
padding: 0.75rem var(--content-padding-x);
|
|
40
45
|
margin: 0;
|
|
@@ -99,6 +104,11 @@ footer {
|
|
|
99
104
|
display: block;
|
|
100
105
|
font-size: inherit;
|
|
101
106
|
text-align: start;
|
|
107
|
+
background: linear-gradient(
|
|
108
|
+
to top,
|
|
109
|
+
var(--aux-background),
|
|
110
|
+
var(--aux-background-end)
|
|
111
|
+
);
|
|
102
112
|
border-top: 0.35em solid var(--line-color);
|
|
103
113
|
border-right: none;
|
|
104
114
|
padding: 0.25rem var(--content-padding-x) 0.35rem;
|