Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Brace/api refs css #3282

Merged
merged 5 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/api_refs/scripts/update-typedoc-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ const { readFile, writeFile } = require("fs/promises");
async function main() {
const css = `\n.tsd-navigation {
word-break: break-word;
}

.col-content {
min-width: fit-content;
}

.page-menu {
display: none;
}\n`;

let file = await readFile("./public/assets/style.css", "utf-8");
Expand Down
2 changes: 1 addition & 1 deletion langchain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@
"openapi-types": "^12.1.3",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work on the PR! I've left a comment flagging the change in the "uuid" dependency from a hard dependency of "^9.0.0" to "9.0.1" for the maintainers to review.

"p-queue": "^6.6.2",
"p-retry": "4",
"uuid": "^9.0.0",
"uuid": "9.0.1",
"yaml": "^2.2.1",
"zod": "^3.22.3",
"zod-to-json-schema": "^3.20.4"
Expand Down
11 changes: 10 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22331,7 +22331,7 @@ __metadata:
typescript: ^5.0.0
typesense: ^1.5.3
usearch: ^1.1.1
uuid: ^9.0.0
uuid: 9.0.1
vectordb: ^0.1.4
voy-search: 0.6.2
weaviate-ts-client: ^1.4.0
Expand Down Expand Up @@ -31085,6 +31085,15 @@ __metadata:
languageName: node
linkType: hard

"uuid@npm:9.0.1":
version: 9.0.1
resolution: "uuid@npm:9.0.1"
bin:
uuid: dist/bin/uuid
checksum: 39931f6da74e307f51c0fb463dc2462807531dc80760a9bff1e35af4316131b4fc3203d16da60ae33f07fdca5b56f3f1dd662da0c99fea9aaeab2004780cc5f4
languageName: node
linkType: hard

"uuid@npm:^8.0.0, uuid@npm:^8.3.0, uuid@npm:^8.3.2":
version: 8.3.2
resolution: "uuid@npm:8.3.2"
Expand Down
Loading