-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
…efaults. Make it easier to dispatch events with detail.target, bubbles, and cancellable while specifying other options
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { BaseController } from "./base_controller"; | ||
export declare class AutosizeController extends BaseController { | ||
private boundHandler; | ||
initialize(): void; | ||
connect(): void; | ||
windowResize(): void; | ||
private handler; | ||
private _handler; | ||
private autosize; | ||
} | ||
//# sourceMappingURL=autosize_controller.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { BaseController } from "./base_controller"; | ||
export declare class DetectDirtyController extends BaseController { | ||
initialValue: string | boolean | null; | ||
boundHandler: (event?: Event | undefined) => void; | ||
initialize(): void; | ||
connect(): void; | ||
disconnect(): void; | ||
restore(): void; | ||
private handler; | ||
private checkDirty; | ||
} | ||
export declare function isDirty(element: HTMLElement): boolean; | ||
//# sourceMappingURL=detect_dirty_controller.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export declare function isHTMLLinkElement(element: Element): element is HTMLLinkElement; | ||
export declare function isHTMLFormElement(element: Element): element is HTMLFormElement; | ||
export declare function isHTMLInputElement(element: Element): element is HTMLInputElement; | ||
export declare function isHTMLImageElement(element: Element): element is HTMLImageElement; | ||
export declare function isElementCheckable(element: Element): element is HTMLInputElement & { | ||
checked: boolean; | ||
}; | ||
export declare function isHTMLLinkElement(element: Element): element is HTMLLinkElement; | ||
export declare function isHTMLFormElement(element: Element): element is HTMLFormElement; | ||
export declare function isHTMLInputElement(element: Element): element is HTMLInputElement; | ||
export declare function isHTMLImageElement(element: Element): element is HTMLImageElement; | ||
export declare function isElementCheckable(element: Element): element is HTMLInputElement & { | ||
checked: boolean; | ||
}; | ||
//# sourceMappingURL=elements.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.