Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/primefaces/primevue
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed Oct 16, 2024
2 parents 4e7f8ed + cb55d9b commit 57d0b47
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
17 changes: 17 additions & 0 deletions apps/showcase/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [],
Expand Down Expand Up @@ -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"
}
]
}
Expand Down
11 changes: 11 additions & 0 deletions packages/themes/types/tree/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
}

0 comments on commit 57d0b47

Please sign in to comment.