@t8/docsgen 0.3.29 → 0.3.31
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 +4 -1
- package/dist/css/index.css +2 -2
- package/dist/css/section.css +2 -2
- package/package.json +1 -1
- package/src/css/base.css +4 -1
- package/src/css/index.css +2 -2
- package/src/css/section.css +2 -2
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,7 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
--aux-color: #797979;
|
|
10
10
|
--aux-background: #f2f2f2;
|
|
11
|
-
--aux-background-end:
|
|
11
|
+
--aux-background-end: #e3e3e3;
|
|
12
|
+
--aux-border-color: #828282;
|
|
12
13
|
--aux-link-color: royalblue;
|
|
13
14
|
--aux-secondary-color: var(--color);
|
|
14
15
|
--aux-emphatic-color: #3d3d3d; /* cover title, selected nav item */
|
|
@@ -28,6 +29,8 @@
|
|
|
28
29
|
|
|
29
30
|
--aux-color: #8e9198;
|
|
30
31
|
--aux-background: #1d2331;
|
|
32
|
+
--aux-background-end: #232738;
|
|
33
|
+
--aux-border-color: #49587b;
|
|
31
34
|
--aux-link-color: deepskyblue;
|
|
32
35
|
--aux-secondary-color: var(--color);
|
|
33
36
|
--aux-emphatic-color: #c6c7cb;
|
package/dist/css/index.css
CHANGED
|
@@ -122,7 +122,7 @@ section.intro-title {
|
|
|
122
122
|
var(--aux-background),
|
|
123
123
|
var(--aux-background-end)
|
|
124
124
|
);
|
|
125
|
-
border-right: 0.05em solid var(--
|
|
125
|
+
border-right: 0.05em solid var(--aux-border-color);
|
|
126
126
|
}
|
|
127
127
|
section.intro-title .section-content {
|
|
128
128
|
display: flex;
|
|
@@ -177,7 +177,7 @@ section.intro pre {
|
|
|
177
177
|
var(--aux-background-end)
|
|
178
178
|
);
|
|
179
179
|
border-right: none;
|
|
180
|
-
border-bottom: 0.05em solid var(--
|
|
180
|
+
border-bottom: 0.05em solid var(--aux-border-color);
|
|
181
181
|
}
|
|
182
182
|
section.intro-title .section-content {
|
|
183
183
|
min-height: 35vh;
|
package/dist/css/section.css
CHANGED
|
@@ -40,7 +40,7 @@ footer {
|
|
|
40
40
|
var(--aux-background),
|
|
41
41
|
var(--aux-background-end)
|
|
42
42
|
);
|
|
43
|
-
border-right: 0.05em solid var(--
|
|
43
|
+
border-right: 0.05em solid var(--aux-border-color);
|
|
44
44
|
padding: 0.75rem var(--content-padding-x);
|
|
45
45
|
margin: 0;
|
|
46
46
|
box-sizing: border-box;
|
|
@@ -109,7 +109,7 @@ footer {
|
|
|
109
109
|
var(--aux-background),
|
|
110
110
|
var(--aux-background-end)
|
|
111
111
|
);
|
|
112
|
-
border-top: 0.35em solid var(--
|
|
112
|
+
border-top: 0.35em solid var(--aux-border-color);
|
|
113
113
|
border-right: none;
|
|
114
114
|
padding: 0.25rem var(--content-padding-x) 0.35rem;
|
|
115
115
|
margin: 0;
|
package/package.json
CHANGED
package/src/css/base.css
CHANGED
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
--aux-color: #797979;
|
|
10
10
|
--aux-background: #f2f2f2;
|
|
11
|
-
--aux-background-end:
|
|
11
|
+
--aux-background-end: #e3e3e3;
|
|
12
|
+
--aux-border-color: #828282;
|
|
12
13
|
--aux-link-color: royalblue;
|
|
13
14
|
--aux-secondary-color: var(--color);
|
|
14
15
|
--aux-emphatic-color: #3d3d3d; /* cover title, selected nav item */
|
|
@@ -28,6 +29,8 @@
|
|
|
28
29
|
|
|
29
30
|
--aux-color: #8e9198;
|
|
30
31
|
--aux-background: #1d2331;
|
|
32
|
+
--aux-background-end: #232738;
|
|
33
|
+
--aux-border-color: #49587b;
|
|
31
34
|
--aux-link-color: deepskyblue;
|
|
32
35
|
--aux-secondary-color: var(--color);
|
|
33
36
|
--aux-emphatic-color: #c6c7cb;
|
package/src/css/index.css
CHANGED
|
@@ -122,7 +122,7 @@ section.intro-title {
|
|
|
122
122
|
var(--aux-background),
|
|
123
123
|
var(--aux-background-end)
|
|
124
124
|
);
|
|
125
|
-
border-right: 0.05em solid var(--
|
|
125
|
+
border-right: 0.05em solid var(--aux-border-color);
|
|
126
126
|
}
|
|
127
127
|
section.intro-title .section-content {
|
|
128
128
|
display: flex;
|
|
@@ -177,7 +177,7 @@ section.intro pre {
|
|
|
177
177
|
var(--aux-background-end)
|
|
178
178
|
);
|
|
179
179
|
border-right: none;
|
|
180
|
-
border-bottom: 0.05em solid var(--
|
|
180
|
+
border-bottom: 0.05em solid var(--aux-border-color);
|
|
181
181
|
}
|
|
182
182
|
section.intro-title .section-content {
|
|
183
183
|
min-height: 35vh;
|
package/src/css/section.css
CHANGED
|
@@ -40,7 +40,7 @@ footer {
|
|
|
40
40
|
var(--aux-background),
|
|
41
41
|
var(--aux-background-end)
|
|
42
42
|
);
|
|
43
|
-
border-right: 0.05em solid var(--
|
|
43
|
+
border-right: 0.05em solid var(--aux-border-color);
|
|
44
44
|
padding: 0.75rem var(--content-padding-x);
|
|
45
45
|
margin: 0;
|
|
46
46
|
box-sizing: border-box;
|
|
@@ -109,7 +109,7 @@ footer {
|
|
|
109
109
|
var(--aux-background),
|
|
110
110
|
var(--aux-background-end)
|
|
111
111
|
);
|
|
112
|
-
border-top: 0.35em solid var(--
|
|
112
|
+
border-top: 0.35em solid var(--aux-border-color);
|
|
113
113
|
border-right: none;
|
|
114
114
|
padding: 0.25rem var(--content-padding-x) 0.35rem;
|
|
115
115
|
margin: 0;
|