Skip to content

Commit

Permalink
tyxml-lwd: Update compatibility with latest Tyxml
Browse files Browse the repository at this point in the history
  • Loading branch information
let-def committed Oct 29, 2023
1 parent a337a77 commit 7f3364e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 6 additions & 3 deletions lib/tyxml-lwd/tyxml_lwd.ml
Original file line number Diff line number Diff line change
Expand Up @@ -724,8 +724,9 @@ module Svg : sig
val a : ([<a_attr], [<a_content], [>a]) star
val view : ([<view_attr], [<descriptive_element], [>view]) star
val script : ([<script_attr], [<script_content], [>script]) unary
val animation :
([<animation_attr], [<descriptive_element], [>animation]) star
val animate : ([<animate_attr], [<descriptive_element], [>animate]) star
val animation : ([<animation_attr], [<descriptive_element], [>animation]) star
[@@ocaml.warning "-3"]
val set : ([<set_attr], [<descriptive_element], [>set]) star
val animateMotion :
([<animatemotion_attr], [<animatemotion_content], [>animatemotion]) star
Expand Down Expand Up @@ -1064,7 +1065,9 @@ end = struct
let a = star Raw_svg.a
let view = star Raw_svg.view
let script = unary Raw_svg.script
let animate = star Raw_svg.animate
let animation = star Raw_svg.animation
[@@ocaml.warning "-3"]
let set = star Raw_svg.set
let animateMotion = star Raw_svg.animateMotion
let mpath = star Raw_svg.mpath
Expand Down Expand Up @@ -1177,7 +1180,7 @@ module Html : sig
val a_onkeyup : Xml.keyboard_event_handler -> [>`OnKeyUp] attrib
val a_allowfullscreen : unit -> [>`Allowfullscreen] attrib
val a_allowpaymentrequest : unit -> [>`Allowpaymentrequest] attrib
val a_autocomplete : bool Lwd.t -> [>`Autocomplete] attrib
val a_autocomplete : autocomplete_option Lwd.t -> [>`Autocomplete] attrib
val a_async : unit -> [>`Async] attrib
val a_autofocus : unit -> [>`Autofocus] attrib
val a_autoplay : unit -> [>`Autoplay] attrib
Expand Down
4 changes: 3 additions & 1 deletion lib/tyxml-lwd/tyxml_lwd.mli
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,10 @@ module Svg : sig
val a : ([<a_attr], [<a_content], [>a]) star
val view : ([<view_attr], [<descriptive_element], [>view]) star
val script : ([<script_attr], [<script_content], [>script]) unary
val animate : ([<animate_attr], [<descriptive_element], [>animate]) star
val animation :
([<animation_attr], [<descriptive_element], [>animation]) star
[@@ocaml.warning "-3"]
val set : ([<set_attr], [<descriptive_element], [>set]) star
val animateMotion :
([<animatemotion_attr], [<animatemotion_content], [>animatemotion]) star
Expand Down Expand Up @@ -498,7 +500,7 @@ module Html : sig
val a_onkeyup : Xml.keyboard_event_handler -> [>`OnKeyUp] attrib
val a_allowfullscreen : unit -> [>`Allowfullscreen] attrib
val a_allowpaymentrequest : unit -> [>`Allowpaymentrequest] attrib
val a_autocomplete : bool Lwd.t -> [>`Autocomplete] attrib
val a_autocomplete : autocomplete_option Lwd.t -> [>`Autocomplete] attrib
val a_async : unit -> [>`Async] attrib
val a_autofocus : unit -> [>`Autofocus] attrib
val a_autoplay : unit -> [>`Autoplay] attrib
Expand Down

0 comments on commit 7f3364e

Please sign in to comment.