Skip to content

Commit

Permalink
Update API doc
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Bot committed Dec 14, 2024
1 parent b673695 commit d177ba5
Show file tree
Hide file tree
Showing 4 changed files with 347 additions and 442 deletions.
110 changes: 10 additions & 100 deletions apps/showcase/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -80366,58 +80366,13 @@
"description": "Color of drop point"
},
{
"name": "columnResizerWidth.0",
"token": "datatable.column.resizer.width.0",
"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",
"name": "columnResizer.width",
"token": "datatable.column.resizer.width",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "5 of column resizer width"
"description": "Width of column resizer"
},
{
"name": "resizeIndicator.width",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -100137,58 +100092,13 @@
"description": "Padding of footer"
},
{
"name": "columnResizerWidth.0",
"token": "treetable.column.resizer.width.0",
"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",
"name": "columnResizer.width",
"token": "treetable.column.resizer.width",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "5 of column resizer width"
"description": "Width of column resizer"
},
{
"name": "resizeIndicator.width",
Expand Down
40 changes: 5 additions & 35 deletions packages/themes/types/datatable/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
40 changes: 5 additions & 35 deletions packages/themes/types/treetable/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading

0 comments on commit d177ba5

Please sign in to comment.