Update API doc

master
GitHub Actions Bot 2024-12-14 08:25:51 +00:00
parent b673695e59
commit d177ba5ff7
4 changed files with 346 additions and 441 deletions

View File

@ -79852,12 +79852,12 @@
"description": "Used to pass tokens of the drop point section"
},
{
"name": "columnResizerWidth",
"name": "columnResizer",
"optional": true,
"readonly": false,
"type": "Object",
"default": "",
"description": "Used to pass tokens of the column resizer width section"
"description": "Used to pass tokens of the column resizer section"
},
{
"name": "resizeIndicator",
@ -80366,58 +80366,13 @@
"description": "Color of drop point"
},
{
"name": "columnResizerWidth.0",
"token": "datatable.column.resizer.width.0",
"name": "columnResizer.width",
"token": "datatable.column.resizer.width",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "0 of column resizer width"
},
{
"name": "columnResizerWidth.1",
"token": "datatable.column.resizer.width.1",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "1 of column resizer width"
},
{
"name": "columnResizerWidth.2",
"token": "datatable.column.resizer.width.2",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "2 of column resizer width"
},
{
"name": "columnResizerWidth.3",
"token": "datatable.column.resizer.width.3",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "3 of column resizer width"
},
{
"name": "columnResizerWidth.4",
"token": "datatable.column.resizer.width.4",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "4 of column resizer width"
},
{
"name": "columnResizerWidth.5",
"token": "datatable.column.resizer.width.5",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "5 of column resizer width"
"description": "Width of column resizer"
},
{
"name": "resizeIndicator.width",
@ -99647,12 +99602,12 @@
"description": "Used to pass tokens of the footer section"
},
{
"name": "columnResizerWidth",
"name": "columnResizer",
"optional": true,
"readonly": false,
"type": "Object",
"default": "",
"description": "Used to pass tokens of the column resizer width section"
"description": "Used to pass tokens of the column resizer section"
},
{
"name": "resizeIndicator",
@ -100137,58 +100092,13 @@
"description": "Padding of footer"
},
{
"name": "columnResizerWidth.0",
"token": "treetable.column.resizer.width.0",
"name": "columnResizer.width",
"token": "treetable.column.resizer.width",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "0 of column resizer width"
},
{
"name": "columnResizerWidth.1",
"token": "treetable.column.resizer.width.1",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "1 of column resizer width"
},
{
"name": "columnResizerWidth.2",
"token": "treetable.column.resizer.width.2",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "2 of column resizer width"
},
{
"name": "columnResizerWidth.3",
"token": "treetable.column.resizer.width.3",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "3 of column resizer width"
},
{
"name": "columnResizerWidth.4",
"token": "treetable.column.resizer.width.4",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "4 of column resizer width"
},
{
"name": "columnResizerWidth.5",
"token": "treetable.column.resizer.width.5",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "5 of column resizer width"
"description": "Width of column resizer"
},
{
"name": "resizeIndicator.width",

View File

@ -360,45 +360,15 @@ export interface DataTableDesignTokens extends ColorSchemeDesignToken<DataTableD
color?: string;
};
/**
* Used to pass tokens of the column resizer width section
* Used to pass tokens of the column resizer section
*/
columnResizerWidth?: {
columnResizer?: {
/**
* 0 of column resizer width
* Width of column resizer
*
* @designToken datatable.column.resizer.width.0
* @designToken datatable.column.resizer.width
*/
0?: string;
/**
* 1 of column resizer width
*
* @designToken datatable.column.resizer.width.1
*/
1?: string;
/**
* 2 of column resizer width
*
* @designToken datatable.column.resizer.width.2
*/
2?: string;
/**
* 3 of column resizer width
*
* @designToken datatable.column.resizer.width.3
*/
3?: string;
/**
* 4 of column resizer width
*
* @designToken datatable.column.resizer.width.4
*/
4?: string;
/**
* 5 of column resizer width
*
* @designToken datatable.column.resizer.width.5
*/
5?: string;
width?: string;
};
/**
* Used to pass tokens of the resize indicator section

View File

@ -349,45 +349,15 @@ export interface TreeTableDesignTokens extends ColorSchemeDesignToken<TreeTableD
padding?: string;
};
/**
* Used to pass tokens of the column resizer width section
* Used to pass tokens of the column resizer section
*/
columnResizerWidth?: {
columnResizer?: {
/**
* 0 of column resizer width
* Width of column resizer
*
* @designToken treetable.column.resizer.width.0
* @designToken treetable.column.resizer.width
*/
0?: string;
/**
* 1 of column resizer width
*
* @designToken treetable.column.resizer.width.1
*/
1?: string;
/**
* 2 of column resizer width
*
* @designToken treetable.column.resizer.width.2
*/
2?: string;
/**
* 3 of column resizer width
*
* @designToken treetable.column.resizer.width.3
*/
3?: string;
/**
* 4 of column resizer width
*
* @designToken treetable.column.resizer.width.4
*/
4?: string;
/**
* 5 of column resizer width
*
* @designToken treetable.column.resizer.width.5
*/
5?: string;
width?: string;
};
/**
* Used to pass tokens of the resize indicator section

File diff suppressed because it is too large Load Diff