Update API doc

pull/6674/head
GitHub Actions Bot 2024-10-28 15:45:43 +00:00
parent aa0b15bcb2
commit 21988898cb
2 changed files with 28 additions and 0 deletions

View File

@ -82122,6 +82122,14 @@
"default": "", "default": "",
"description": "Used to pass tokens of the content section" "description": "Used to pass tokens of the content section"
}, },
{
"name": "footer",
"optional": true,
"readonly": false,
"type": "Object",
"default": "",
"description": "Used to pass tokens of the footer section"
},
{ {
"name": "colorScheme", "name": "colorScheme",
"optional": true, "optional": true,
@ -82211,6 +82219,15 @@
"type": "string", "type": "string",
"default": "", "default": "",
"description": "Padding of content" "description": "Padding of content"
},
{
"name": "footer.padding",
"token": "drawer.footer.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Padding of footer"
} }
] ]
} }

View File

@ -79,4 +79,15 @@ export interface DrawerDesignTokens extends ColorSchemeDesignToken<DrawerDesignT
*/ */
padding?: string; padding?: string;
}; };
/**
* Used to pass tokens of the footer section
*/
footer?: {
/**
* Padding of footer
*
* @designToken drawer.footer.padding
*/
padding?: string;
};
} }