November 27, 2024

API Explorer中的凭据自动填充

让开发者免去查找和复制API密钥的麻烦。当用户通过认证后,他们的API凭据将自动填入API Playground。这样,他们可以更快地进行第一次API调用。

API Explorer Splash Image

Webflow的API Explorer中查看实时效果。

Read the docs

卡片组件系统

增强了文档卡片组件,改善视觉组织效果。信息现在可以以更结构化和吸引人的方式呈现。

1interface CardProps {
2 title: string;
3 description: string;
4 icon?: IconName;
5 variant?: 'default' | 'bordered' | 'filled';
6 actions?: CardAction[];
7}
8
9interface CardAction {
10 label: string;
11 href?: string;
12 onClick?: () => void;
13}
Read the docs