Update API doc
parent
aa0b15bcb2
commit
21988898cb
|
@ -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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue