mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 11:59:34 +00:00
Add tooltipPosition
to PaginationNav
per #1656
This commit is contained in:
parent
b9aaa3adca
commit
60c2df4c97
6 changed files with 404 additions and 248 deletions
5
types/ListBox/ListBoxSelection.svelte.d.ts
vendored
5
types/ListBox/ListBoxSelection.svelte.d.ts
vendored
|
@ -38,5 +38,8 @@ export default class ListBoxSelection extends SvelteComponentTyped<
|
|||
/**
|
||||
* Default translation ids
|
||||
*/
|
||||
translationIds: { clearAll: "clearAll"; clearSelection: "clearSelection" };
|
||||
translationIds: {
|
||||
clearAll: "clearAll";
|
||||
clearSelection: "clearSelection";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -38,6 +38,12 @@ export interface PaginationNavProps
|
|||
* @default "Previous page"
|
||||
*/
|
||||
backwardText?: string;
|
||||
|
||||
/**
|
||||
* Set the position of the tooltip relative to the icon
|
||||
* @default "bottom"
|
||||
*/
|
||||
tooltipPosition?: "top" | "right" | "bottom" | "left" | "outside" | "inside";
|
||||
}
|
||||
|
||||
export default class PaginationNav extends SvelteComponentTyped<
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue