@apify/docs-theme 1.0.232 → 1.0.233

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apify/docs-theme",
3
- "version": "1.0.232",
3
+ "version": "1.0.233",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "files": [
@@ -2026,3 +2026,11 @@ div[class^="navbarSearchContainer"] {
2026
2026
  width: 14px !important;
2027
2027
  height: 15px !important;
2028
2028
  }
2029
+
2030
+ /* Array brackets in API schema - rendered via CSS so they don't leak into .md export */
2031
+ .openapi-array-bracket-open::before {
2032
+ content: "Array [";
2033
+ }
2034
+ .openapi-array-bracket-close::before {
2035
+ content: "]";
2036
+ }