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 Jan 14, 2025
1 parent 724a69d commit c9cb026
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 18 deletions.
90 changes: 90 additions & 0 deletions apps/showcase/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -80226,6 +80226,24 @@
"default": "",
"description": "Padding of header"
},
{
"name": "sm.padding",
"token": "datatable.header.sm.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Sm padding of header"
},
{
"name": "lg.padding",
"token": "datatable.header.lg.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Lg padding of header"
},
{
"name": "headerCell.background",
"token": "datatable.header.cell.background",
Expand Down Expand Up @@ -80352,6 +80370,24 @@
"default": "",
"description": "Focus ring shadow of header cell"
},
{
"name": "sm.padding",
"token": "datatable.header.cell.sm.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Sm padding of header cell"
},
{
"name": "lg.padding",
"token": "datatable.header.cell.lg.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Lg padding of header cell"
},
{
"name": "columnTitle.fontWeight",
"token": "datatable.column.title.font.weight",
Expand Down Expand Up @@ -80487,6 +80523,24 @@
"default": "",
"description": "Padding of body cell"
},
{
"name": "sm.padding",
"token": "datatable.body.cell.sm.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Sm padding of body cell"
},
{
"name": "lg.padding",
"token": "datatable.body.cell.lg.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Lg padding of body cell"
},
{
"name": "bodyCell.selectedBorderColor",
"token": "datatable.body.cell.selected.border.color",
Expand Down Expand Up @@ -80532,6 +80586,24 @@
"default": "",
"description": "Padding of footer cell"
},
{
"name": "sm.padding",
"token": "datatable.footer.cell.sm.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Sm padding of footer cell"
},
{
"name": "lg.padding",
"token": "datatable.footer.cell.lg.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Lg padding of footer cell"
},
{
"name": "columnFooter.fontWeight",
"token": "datatable.column.footer.font.weight",
Expand Down Expand Up @@ -80586,6 +80658,24 @@
"default": "",
"description": "Padding of footer"
},
{
"name": "sm.padding",
"token": "datatable.footer.sm.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Sm padding of footer"
},
{
"name": "lg.padding",
"token": "datatable.footer.lg.padding",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Lg padding of footer"
},
{
"name": "dropPoint.color",
"token": "datatable.drop.point.color",
Expand Down
12 changes: 6 additions & 6 deletions packages/themes/types/datatable/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -310,12 +310,6 @@ export interface DataTableDesignTokens extends ColorSchemeDesignToken<DataTableD
* @designToken datatable.body.cell.padding
*/
padding?: string;
/**
* Selected border color of body cell
*
* @designToken datatable.body.cell.selected.border.color
*/
selectedBorderColor?: string;
/**
* Sm of body cell
*/
Expand All @@ -338,6 +332,12 @@ export interface DataTableDesignTokens extends ColorSchemeDesignToken<DataTableD
*/
padding?: string;
};
/**
* Selected border color of body cell
*
* @designToken datatable.body.cell.selected.border.color
*/
selectedBorderColor?: string;
};
/**
* Used to pass tokens of the footer cell section
Expand Down
20 changes: 8 additions & 12 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c9cb026

Please sign in to comment.