| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,6 +6,7 @@ export * from "../text-base"; | |||
| 6 | 6 | export abstract class EditableTextBase extends TextBase implements EditableTextBaseDefinition { | |
| 7 | 7 | public static blurEvent = "blur"; | |
| 8 | 8 | public static focusEvent = "focus"; | |
| 9 | + public static textChangeEvent = "textChange"; | ||
| 9 | 10 | ||
| 10 | 11 | public keyboardType: KeyboardType; | |
| 11 | 12 | public returnKeyType: ReturnKeyType; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,6 +10,7 @@ import { TextBase, Property, CssProperty, Style, Color, FormattedString } from " | |||
| 10 | 10 | export class EditableTextBase extends TextBase { | |
| 11 | 11 | public static blurEvent: string; | |
| 12 | 12 | public static focusEvent: string; | |
| 13 | + public static textChangeEvent: string; | ||
| 13 | 14 | ||
| 14 | 15 | /** | |
| 15 | 16 | * Gets or sets the soft keyboard type. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,6 +6,8 @@ export * from "../core/view"; | |||
| 6 | 6 | ||
| 7 | 7 | @CSSType("Switch") | |
| 8 | 8 | export class SwitchBase extends View implements SwitchDefinition { | |
| 9 | + public static checkedChangeEvent = "checkedChange"; | ||
| 10 | + | ||
| 9 | 11 | public checked: boolean; | |
| 10 | 12 | public offBackgroundColor: Color; | |
| 11 | 13 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,6 +11,8 @@ import { Color } from "../../color"; | |||
| 11 | 11 | */ | |
| 12 | 12 | export class Switch extends View { | |
| 13 | 13 | ||
| 14 | + public static checkedChangeEvent: string; | ||
| 15 | + | ||
| 14 | 16 | /** | |
| 15 | 17 | * Gets the native [android widget](http://developer.android.com/reference/android/widget/Switch.html) that represents the user interface for this component. Valid only when running on Android OS. | |
| 16 | 18 | */ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments