From de2e458ee631fbc5883d894cd103b2016ba35761 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Sun, 23 Feb 2025 16:56:52 -0500 Subject: [PATCH] docs: update server SDK reference --- docs/sdks/introduction.mdx | 17 ++++++++++++----- src/components/table/table.css | 8 ++++++-- src/components/table/table.js | 2 +- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/docs/sdks/introduction.mdx b/docs/sdks/introduction.mdx index 6f7b3834..cd52b8b6 100644 --- a/docs/sdks/introduction.mdx +++ b/docs/sdks/introduction.mdx @@ -138,7 +138,7 @@ Turnkey also has several [wrappers for popular web3 libraries](https://docs.turn , ], [ - "Arbitrary Request Signing", + "Request Authentication", "Stamping", , , @@ -154,6 +154,7 @@ Turnkey also has several [wrappers for popular web3 libraries](https://docs.turn , , , @@ -181,7 +183,8 @@ Turnkey also has several [wrappers for popular web3 libraries](https://docs.turn , ], [ - "Wallet Management", + "API Client", + "Fully-Typed", , , , @@ -189,12 +192,16 @@ Turnkey also has several [wrappers for popular web3 libraries](https://docs.turn "", ], [ - "Policy Management", - , + { + text: "Secure Enclave Channels", + url: "https://docs.turnkey.com/security/enclave-secure-channels", + }, + "HPKE", , , "", "", + "", ], ]} /> diff --git a/src/components/table/table.css b/src/components/table/table.css index 0326d2bc..0e75fbb0 100644 --- a/src/components/table/table.css +++ b/src/components/table/table.css @@ -39,6 +39,10 @@ width: 10rem; } +.column-headings > .column-heading.server:nth-child(2) { + width: 10rem; +} + .column-headings > .column-heading:last-child { border-right: none; } @@ -83,7 +87,7 @@ .table-row > .table-cell.server:nth-child(2) { padding-left: 0.5rem; - width: 7rem; + width: 10rem; border-left: 1px solid var(--tk-border-gray-100); } @@ -93,7 +97,7 @@ align-items: center; } -.table-row > .table-cell.server:nth-child(n + 2) { +.table-row > .table-cell.server:nth-child(n + 3) { display: flex; justify-content: center; align-items: center; diff --git a/src/components/table/table.js b/src/components/table/table.js index 0a0755d5..7d9166e3 100644 --- a/src/components/table/table.js +++ b/src/components/table/table.js @@ -23,7 +23,7 @@ export default function Table({ referenceType, columnHeadings, tableRows }) { {tableRow.map((row, rowIndex) => { return (
- {row} + {row?.text ? {row?.text} : row}
); })}