mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
v0.26.0
This commit is contained in:
parent
6ee0bab0d9
commit
443f957027
6 changed files with 50 additions and 7 deletions
2
types/Select/SelectItem.d.ts
vendored
2
types/Select/SelectItem.d.ts
vendored
|
@ -1,6 +1,6 @@
|
|||
/// <reference types="svelte" />
|
||||
|
||||
export interface SelectItemProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["option"]> {
|
||||
export interface SelectItemProps {
|
||||
/**
|
||||
* Specify the option value
|
||||
* @default ""
|
||||
|
|
2
types/Tooltip/Tooltip.d.ts
vendored
2
types/Tooltip/Tooltip.d.ts
vendored
|
@ -94,5 +94,7 @@ export default class Tooltip {
|
|||
triggerText: {};
|
||||
};
|
||||
|
||||
$on(eventname: "click", cb: (event: WindowEventMap["click"]) => void): () => void;
|
||||
$on(eventname: "mousedown", cb: (event: WindowEventMap["mousedown"]) => void): () => void;
|
||||
$on(eventname: string, cb: (event: Event) => void): () => void;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue