diff --git a/WebSharper.UI/Doc.Client.fsi b/WebSharper.UI/Doc.Client.fsi index 6a87231..91b009c 100644 --- a/WebSharper.UI/Doc.Client.fsi +++ b/WebSharper.UI/Doc.Client.fsi @@ -183,32 +183,32 @@ module Doc = // Form helpers /// Input box. - [] + [] val Input : seq -> Var -> Doc /// Input box. /// The var must be passed using the .V property. - [] + [] val InputV : seq -> var: string -> Doc /// Input box with type="number". /// For validation to work properly in Internet Explorer 9 and older, /// needs to be inside a
with Attr.ValidateForm. - [] + [] val IntInput : seq -> Var> -> Doc /// Input box with type="number". /// For validation to work properly in Internet Explorer 9 and older, /// needs to be inside a with Attr.ValidateForm. /// The var must be passed using the .V property. - [] + [] val IntInputV : seq -> CheckedInput -> Doc /// Input box with type="number". /// If the input box is blank, the value is set to 0. /// If the input is not parseable as an int, the value is unchanged from its last valid value. /// It is advised to use IntInput instead for better user experience. - [] + [] val IntInputUnchecked : seq -> Var -> Doc /// Input box with type="number". @@ -216,27 +216,27 @@ module Doc = /// If the input is not parseable as an int, the value is unchanged from its last valid value. /// It is advised to use IntInput instead for better user experience. /// The var must be passed using the .V property. - [] + [] val IntInputUncheckedV : seq -> int -> Doc /// Input box with type="number". /// For validation to work properly in Internet Explorer 9 and older, /// needs to be inside a with Attr.ValidateForm. - [] + [] val FloatInput : seq -> Var> -> Doc /// Input box with type="number". /// For validation to work properly in Internet Explorer 9 and older, /// needs to be inside a with Attr.ValidateForm. /// The var must be passed using the .V property. - [] + [] val FloatInputV : seq -> CheckedInput -> Doc /// Input box with type="number". /// If the input box is blank, the value is set to 0. /// If the input is not parseable as a float, the value is unchanged from its last valid value. /// It is advised to use FloatInput instead for better user experience. - [] + [] val FloatInputUnchecked : seq -> Var -> Doc /// Input box with type="number". @@ -244,25 +244,25 @@ module Doc = /// If the input is not parseable as a float, the value is unchanged from its last valid value. /// It is advised to use FloatInput instead for better user experience. /// The var must be passed using the .V property. - [] + [] val FloatInputUncheckedV : seq -> float -> Doc /// Input text area. - [] + [] val InputArea : seq -> Var -> Doc /// Input text area. /// The var must be passed using the .V property. - [] + [] val InputAreaV : seq -> string -> Doc /// Password box. - [] + [] val PasswordBox : seq -> Var -> Doc /// Password box. /// The var must be passed using the .V property. - [] + [] val PasswordBoxV : seq -> string -> Doc /// Submit button. Calls the callback function when the button is pressed. @@ -280,36 +280,36 @@ module Doc = val LinkView : caption: string -> seq -> View<'T> -> ('T -> unit) -> Doc /// Check Box. - [] + [] val CheckBox : seq -> Var -> Doc /// Check Box Group. - [] + [] val CheckBoxGroup : seq -> 'T -> Var> -> Doc when 'T : equality /// Select box. - [] + [] val Select : seq -> optionText: ('T -> string) -> options: list<'T> -> Var<'T> -> Doc when 'T : equality /// Select box with time-varying option list. - [] + [] val SelectDyn : seq -> optionText: ('T -> string) -> options: View> -> Var<'T> -> Doc when 'T : equality /// Select box where the first option returns None. - [] + [] val SelectOptional : seq -> noneText: string -> optionText: ('T -> string) -> options: list<'T> -> Var> -> Doc when 'T : equality /// Select box with time-varying option list where the first option returns None. - [] + [] val SelectDynOptional : seq -> noneText: string -> optionText: ('T -> string) -> options: View> -> Var> -> Doc when 'T : equality /// Radio button. - [] + [] val Radio : seq -> 'T -> Var<'T> -> Doc when 'T : equality @@ -498,32 +498,32 @@ module Doc = module Elt = /// Input box. - [] + [] val Input : seq -> Var -> Elt /// Input box. /// The var must be passed using the .V property. - [] + [] val InputV : seq -> var: string -> Elt /// Input box with type="number". /// For validation to work properly in Internet Explorer 9 and older, /// needs to be inside a with Attr.ValidateForm. - [] + [] val IntInput : seq -> Var> -> Elt /// Input box with type="number". /// For validation to work properly in Internet Explorer 9 and older, /// needs to be inside a with Attr.ValidateForm. /// The var must be passed using the .V property. - [] + [] val IntInputV : seq -> CheckedInput -> Elt /// Input box with type="number". /// If the input box is blank, the value is set to 0. /// If the input is not parseable as an int, the value is unchanged from its last valid value. /// It is advised to use IntInput instead for better user experience. - [] + [] val IntInputUnchecked : seq -> Var -> Elt /// Input box with type="number". @@ -531,27 +531,27 @@ module Elt = /// If the input is not parseable as an int, the value is unchanged from its last valid value. /// It is advised to use IntInput instead for better user experience. /// The var must be passed using the .V property. - [] + [] val IntInputUncheckedV : seq -> int -> Elt /// Input box with type="number". /// For validation to work properly in Internet Explorer 9 and older, /// needs to be inside a with Attr.ValidateForm. - [] + [] val FloatInput : seq -> Var> -> Elt /// Input box with type="number". /// For validation to work properly in Internet Explorer 9 and older, /// needs to be inside a with Attr.ValidateForm. /// The var must be passed using the .V property. - [] + [] val FloatInputV : seq -> CheckedInput -> Elt /// Input box with type="number". /// If the input box is blank, the value is set to 0. /// If the input is not parseable as a float, the value is unchanged from its last valid value. /// It is advised to use FloatInput instead for better user experience. - [] + [] val FloatInputUnchecked : seq -> Var -> Elt /// Input box with type="number". @@ -559,25 +559,25 @@ module Elt = /// If the input is not parseable as a float, the value is unchanged from its last valid value. /// It is advised to use FloatInput instead for better user experience. /// The var must be passed using the .V property. - [] + [] val FloatInputUncheckedV : seq -> float -> Elt /// Input text area. - [] + [] val InputArea : seq -> Var -> Elt /// Input text area. /// The var must be passed using the .V property. - [] + [] val InputAreaV : seq -> string -> Elt /// Password box. - [] + [] val PasswordBox : seq -> Var -> Elt /// Password box. /// The var must be passed using the .V property. - [] + [] val PasswordBoxV : seq -> string -> Elt /// Submit button. Calls the callback function when the button is pressed. @@ -595,36 +595,36 @@ module Elt = val LinkView : caption: string -> seq -> View<'T> -> ('T -> unit) -> Elt /// Check Box. - [] + [] val CheckBox : seq -> Var -> Elt /// Check Box Group. - [] + [] val CheckBoxGroup : seq -> 'T -> Var> -> Elt when 'T : equality /// Select box. - [] + [] val Select : seq -> optionText: ('T -> string) -> options: list<'T> -> Var<'T> -> Elt when 'T : equality /// Select box with time-varying option list. - [] + [] val SelectDyn : seq -> optionText: ('T -> string) -> options: View> -> Var<'T> -> Elt when 'T : equality /// Select box where the first option returns None. - [] + [] val SelectOptional : seq -> noneText: string -> optionText: ('T -> string) -> options: list<'T> -> Var> -> Elt when 'T : equality /// Select box with time-varying option list where the first option returns None. - [] + [] val SelectDynOptional : seq -> noneText: string -> optionText: ('T -> string) -> options: View> -> Var> -> Elt when 'T : equality /// Radio button. - [] + [] val Radio : seq -> 'T -> Var<'T> -> Elt when 'T : equality