Update API doc
parent
52bb19aa80
commit
cb55d9b926
|
@ -95064,6 +95064,14 @@
|
|||
"type": "Object",
|
||||
"default": "",
|
||||
"description": "Used to pass tokens of the loading icon section"
|
||||
},
|
||||
{
|
||||
"name": "filter",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "Object",
|
||||
"default": "",
|
||||
"description": "Used to pass tokens of the filter section"
|
||||
}
|
||||
],
|
||||
"methods": [],
|
||||
|
@ -95390,6 +95398,15 @@
|
|||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Size of loading icon"
|
||||
},
|
||||
{
|
||||
"name": "filter.margin",
|
||||
"token": "tree.filter.margin",
|
||||
"optional": true,
|
||||
"readonly": false,
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Margin of filter"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -256,4 +256,15 @@ export interface TreeDesignTokens extends ColorSchemeDesignToken<TreeDesignToken
|
|||
*/
|
||||
size?: string;
|
||||
};
|
||||
/**
|
||||
* Used to pass tokens of the filter section
|
||||
*/
|
||||
filter?: {
|
||||
/**
|
||||
* Margin of filter
|
||||
*
|
||||
* @designToken tree.filter.margin
|
||||
*/
|
||||
margin?: string;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue