-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2180430
commit 16314c6
Showing
13 changed files
with
50 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export declare function clear(element: Element): void |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export declare function paste( | ||
element: Element, | ||
text: string, | ||
init?: MouseEventInit, | ||
pasteOptions?: { | ||
initialSelectionStart?: number | ||
initialSelectionEnd?: number | ||
}, | ||
): void |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export declare function selectOptions( | ||
element: Element, | ||
values: HTMLElement | HTMLElement[] | string[] | string, | ||
init?: MouseEventInit, | ||
): void | ||
|
||
export declare function deselectOptions( | ||
element: Element, | ||
values: HTMLElement | HTMLElement[] | string[] | string, | ||
init?: MouseEventInit, | ||
): void |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
interface tabOptions { | ||
shift?: boolean | ||
focusTrap?: Document | Element | ||
} | ||
|
||
export declare function tab(userOpts?: tabOptions): void |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
interface uploadInit { | ||
clickInit?: MouseEventInit | ||
changeInit?: Event | ||
} | ||
|
||
interface uploadOptions { | ||
applyAccept?: boolean | ||
} | ||
|
||
export declare function upload( | ||
element: Element, | ||
files: File | File[], | ||
init?: uploadInit, | ||
options?: uploadOptions, | ||
): void |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.