@scalar/docusaurus 0.7.41 → 0.7.43

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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # @scalar/docusaurus
2
2
 
3
+ ## 0.7.43
4
+
5
+ ### Patch Changes
6
+
7
+ - [#8295](https://github.com/scalar/scalar/pull/8295): fix(docusaurus): remove extra elements around in markdown summary components
8
+
9
+ #### Updated Dependencies
10
+
11
+ - **@scalar/types@0.6.9**
12
+
13
+ ## 0.7.42
14
+
15
+ ### Patch Changes
16
+
17
+ #### Updated Dependencies
18
+
19
+ - **@scalar/types@0.6.8**
20
+ - [#8274](https://github.com/scalar/scalar/pull/8274): feat(agent): add config to hide search api
21
+
3
22
  ## 0.7.41
4
23
 
5
24
  ### 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 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.41",
22
+ "version": "0.7.43",
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.7"
51
+ "@scalar/types": "0.6.9"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@docusaurus/core": "^3.9.2",
@@ -75,8 +75,8 @@
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",
79
- "dev": "cd ./playground && docusaurus start --port=5063 --no-open",
78
+ "build": "shx rm -Rf ./dist ./tsconfig.build.tsbuildinfo && tsc -p tsconfig.build.json && postcss src/theme.css -o dist/theme.css",
79
+ "dev": "docusaurus start playground --port=5063 --no-open",
80
80
  "format": "scalar-format",
81
81
  "format:check": "scalar-format-check",
82
82
  "lint:check": "scalar-lint-check",