@scalar/docusaurus 0.7.42 → 0.7.44
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/CHANGELOG.md +18 -0
- package/dist/theme.css +5 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @scalar/docusaurus
|
|
2
2
|
|
|
3
|
+
## 0.7.44
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
#### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- **@scalar/types@0.6.10**
|
|
10
|
+
|
|
11
|
+
## 0.7.43
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#8295](https://github.com/scalar/scalar/pull/8295): fix(docusaurus): remove extra elements around in markdown summary components
|
|
16
|
+
|
|
17
|
+
#### Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- **@scalar/types@0.6.9**
|
|
20
|
+
|
|
3
21
|
## 0.7.42
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/theme.css
CHANGED
|
@@ -231,7 +231,7 @@ html[data-theme="light"] body .api-client-drawer {
|
|
|
231
231
|
user-select: none;
|
|
232
232
|
}
|
|
233
233
|
|
|
234
|
-
/* Docusaurus base style overrides
|
|
234
|
+
/* Docusaurus base style overrides */
|
|
235
235
|
:where(.scalar-app) ul,
|
|
236
236
|
:where(.scalar-app) ol {
|
|
237
237
|
/** Docusaurus adds some default margin to lists */
|
|
@@ -241,6 +241,10 @@ html[data-theme="light"] body .api-client-drawer {
|
|
|
241
241
|
border-collapse: initial;
|
|
242
242
|
overflow: initial;
|
|
243
243
|
}
|
|
244
|
+
:where(.scalar-app) .markdown.markdown-summary:before,
|
|
245
|
+
:where(.scalar-app) .markdown.markdown-summary:after {
|
|
246
|
+
display: none;
|
|
247
|
+
}
|
|
244
248
|
|
|
245
249
|
.scalar-app code.hljs * {
|
|
246
250
|
font-size: var(--scalar-small);
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"testing",
|
|
20
20
|
"react"
|
|
21
21
|
],
|
|
22
|
-
"version": "0.7.
|
|
22
|
+
"version": "0.7.44",
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">=20"
|
|
25
25
|
},
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@scalar/types": "0.6.
|
|
51
|
+
"@scalar/types": "0.6.10"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@docusaurus/core": "^3.9.2",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"react": "^18.0.0 || ^19.0.0"
|
|
76
76
|
},
|
|
77
77
|
"scripts": {
|
|
78
|
-
"build": "shx rm -Rf ./dist && tsc -p tsconfig.build.json && postcss src/theme.css -o dist/theme.css",
|
|
78
|
+
"build": "shx rm -Rf ./dist ./tsconfig.build.tsbuildinfo && tsc -p tsconfig.build.json && postcss src/theme.css -o dist/theme.css",
|
|
79
79
|
"dev": "docusaurus start playground --port=5063 --no-open",
|
|
80
80
|
"format": "scalar-format",
|
|
81
81
|
"format:check": "scalar-format-check",
|