@f1studio/form-spec 5.0.0-alpha.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Designer.d.ts +89 -0
- package/FormSpec.TS/Components/HelloComponent.js +68 -0
- package/FormSpec.TS/Components/HelloComponent.js.map +1 -0
- package/FormSpec.TS/Components/HelloComponent.ts.map +1 -0
- package/FormSpec.TS/Designer.js +526 -0
- package/FormSpec.TS/Designer.js.map +1 -0
- package/FormSpec.TS/Designer.ts.map +1 -0
- package/FormSpec.TS/FormSpec.js +5400 -0
- package/FormSpec.TS/FormSpec.js.map +1 -0
- package/FormSpec.TS/FormSpec.ts.map +1 -0
- package/FormSpec.TS/FormSpecHelpers.js +382 -0
- package/FormSpec.TS/FormSpecHelpers.js.map +1 -0
- package/FormSpec.TS/FormSpecHelpers.ts.map +1 -0
- package/FormSpec.TS/Helpers.js +732 -0
- package/FormSpec.TS/Helpers.js.map +1 -0
- package/FormSpec.TS/Helpers.ts.map +1 -0
- package/FormSpec.TS/Interfaces.js +257 -0
- package/FormSpec.TS/Interfaces.js.map +1 -0
- package/FormSpec.TS/Interfaces.ts.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Helpers.js +854 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Helpers.js.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Helpers.ts.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Option.js +1961 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Option.js.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Option.ts.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Values.Api.Option.js +1367 -0
- package/FormSpec.TS/Interop/FormSpec.Values.Api.Option.js.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Values.Api.Option.ts.map +1 -0
- package/FormSpec.TS/Logging/LogTypes.js +347 -0
- package/FormSpec.TS/Logging/LogTypes.js.map +1 -0
- package/FormSpec.TS/Logging/LogTypes.ts.map +1 -0
- package/FormSpec.TS/Migrator.js +230 -0
- package/FormSpec.TS/Migrator.js.map +1 -0
- package/FormSpec.TS/Migrator.ts.map +1 -0
- package/FormSpec.TS/PathwayDataExtractor.js +361 -0
- package/FormSpec.TS/PathwayDataExtractor.js.map +1 -0
- package/FormSpec.TS/PathwayDataExtractor.ts.map +1 -0
- package/FormSpec.TS/PathwayExecutor.js +1321 -0
- package/FormSpec.TS/PathwayExecutor.js.map +1 -0
- package/FormSpec.TS/PathwayExecutor.ts.map +1 -0
- package/FormSpec.TS/PathwayValidator.js +346 -0
- package/FormSpec.TS/PathwayValidator.js.map +1 -0
- package/FormSpec.TS/PathwayValidator.ts.map +1 -0
- package/FormSpec.TS/PluginInterface.js +171 -0
- package/FormSpec.TS/PluginInterface.js.map +1 -0
- package/FormSpec.TS/PluginInterface.ts.map +1 -0
- package/FormSpec.TS/Prelude.js +59 -0
- package/FormSpec.TS/Prelude.js.map +1 -0
- package/FormSpec.TS/Prelude.ts.map +1 -0
- package/FormSpec.TS/Renderers/FormSpecMarkdownRenderer.js +958 -0
- package/FormSpec.TS/Renderers/FormSpecMarkdownRenderer.js.map +1 -0
- package/FormSpec.TS/Renderers/FormSpecMarkdownRenderer.ts.map +1 -0
- package/FormSpec.TS/Renderers/MermaidRenderer.js +228 -0
- package/FormSpec.TS/Renderers/MermaidRenderer.js.map +1 -0
- package/FormSpec.TS/Renderers/MermaidRenderer.ts.map +1 -0
- package/FormSpec.TS/Renderers/PathwayRenderers.js +190 -0
- package/FormSpec.TS/Renderers/PathwayRenderers.js.map +1 -0
- package/FormSpec.TS/Renderers/PathwayRenderers.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Base.fs +511 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Base.fs.js +437 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Base.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Base.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Error.fs +16 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Error.fs.js +73 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Error.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Error.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Extensions.fs +50 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Extensions.fs.js +72 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Extensions.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Extensions.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Fable.Form.fableproj +28 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Field.fs +24 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Field.fs.js +56 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Field.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Field.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Fable.Form.Simple.fableproj +31 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Form.fs +178 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Form.fs.js +464 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Form.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Form.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Extensions.fs +17 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Hooks.fs +152 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Hooks.fs.js +25 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Hooks.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Hooks.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Types.fableproj +28 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.fs +218 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.fs.js +37 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.Types.fableproj +27 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.fs +82 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.fs.js +7 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/BorderStyle.fs +59 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Colors.fs +154 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Colors.fs.js +32 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Colors.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Colors.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Feliz.fableproj +42 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Fonts.fs +240 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/GridTypes.fs +24 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Html.fs +826 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Interop.fs +83 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Interop.fs.js +292 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Interop.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Interop.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Key.fs +65 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Key.fs.js +229 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Key.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Key.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Length.fs +91 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Locale.fs +876 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Properties.fs +4080 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Properties.fs.js +133 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Properties.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Properties.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/React.fs +656 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/React.fs.js +561 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/React.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/React.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactDOM.fs +25 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactDOM.fs.js +46 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactDOM.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactDOM.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactInterop.js +63 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactInterop.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactTypes.fs +41 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactTypes.fs.js +7 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactTypes.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactTypes.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/StyleTypes.fs +53 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/StyleTypes.fs.js +7 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/StyleTypes.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/StyleTypes.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Styles.fs +5740 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs +1455 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs.js +39 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/TextDecorationLine.fs +13 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/TextDecorationStyle.fs +33 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Transform.fs +181 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/TransformOrigin.fs +17 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/TransitionProperty.fs +162 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs +13 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs.js +7 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Decode.fs +1768 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Decode.fs.js +2337 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Decode.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Decode.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Encode.fs +811 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Encode.fs.js +465 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Encode.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Encode.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Extra.fs +47 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Extra.fs.js +18 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Extra.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Extra.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Thoth.Json.fableproj +34 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs +68 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs.js +355 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/project_cracked.json +1 -0
- package/FormSpec.d.ts +1257 -0
- package/FormSpecHelpers.d.ts +50 -0
- package/Helpers.d.ts +147 -0
- package/Interfaces.d.ts +70 -0
- package/Interop/FormSpec.Api.Helpers.d.ts +247 -0
- package/Interop/FormSpec.Api.Helpers.d.ts.map +1 -0
- package/Interop/FormSpec.Api.Option.d.ts +384 -0
- package/Interop/FormSpec.Api.Option.d.ts.map +1 -0
- package/Interop/FormSpec.Values.Api.Option.d.ts +324 -0
- package/Interop/FormSpec.Values.Api.Option.d.ts.map +1 -0
- package/Migrator.d.ts +59 -0
- package/PathwayDataExtractor.d.ts +19 -0
- package/PathwayExecutor.d.ts +210 -0
- package/PathwayValidator.d.ts +52 -0
- package/PluginInterface.d.ts +36 -0
- package/Prelude.d.ts +11 -0
- package/README.TS.md +622 -0
- package/README.md +85 -0
- package/package.json +39 -0
- package/src/Components/HelloComponent.ts +48 -0
- package/src/Components/HelloComponent.ts.map +1 -0
- package/src/Designer.ts +389 -0
- package/src/Designer.ts.map +1 -0
- package/src/FormSpec.ts +3114 -0
- package/src/FormSpec.ts.map +1 -0
- package/src/FormSpecHelpers.ts +374 -0
- package/src/FormSpecHelpers.ts.map +1 -0
- package/src/Helpers.ts +765 -0
- package/src/Helpers.ts.map +1 -0
- package/src/Interfaces.ts +166 -0
- package/src/Interfaces.ts.map +1 -0
- package/src/Interop/FormSpec.Api.Helpers.ts +872 -0
- package/src/Interop/FormSpec.Api.Helpers.ts.map +1 -0
- package/src/Interop/FormSpec.Api.Option.ts +1618 -0
- package/src/Interop/FormSpec.Api.Option.ts.map +1 -0
- package/src/Interop/FormSpec.Values.Api.Option.ts +1214 -0
- package/src/Interop/FormSpec.Values.Api.Option.ts.map +1 -0
- package/src/Logging/LogTypes.ts +212 -0
- package/src/Logging/LogTypes.ts.map +1 -0
- package/src/Migrator.ts +156 -0
- package/src/Migrator.ts.map +1 -0
- package/src/PathwayDataExtractor.ts +290 -0
- package/src/PathwayDataExtractor.ts.map +1 -0
- package/src/PathwayExecutor.ts +1102 -0
- package/src/PathwayExecutor.ts.map +1 -0
- package/src/PathwayValidator.ts +244 -0
- package/src/PathwayValidator.ts.map +1 -0
- package/src/PluginInterface.ts +79 -0
- package/src/PluginInterface.ts.map +1 -0
- package/src/Prelude.ts +21 -0
- package/src/Prelude.ts.map +1 -0
- package/src/Renderers/FormSpecMarkdownRenderer.ts +874 -0
- package/src/Renderers/FormSpecMarkdownRenderer.ts.map +1 -0
- package/src/Renderers/MermaidRenderer.ts +218 -0
- package/src/Renderers/MermaidRenderer.ts.map +1 -0
- package/src/Renderers/PathwayRenderers.ts +200 -0
- package/src/Renderers/PathwayRenderers.ts.map +1 -0
|
@@ -0,0 +1,826 @@
|
|
|
1
|
+
namespace Feliz
|
|
2
|
+
|
|
3
|
+
open Fable.React
|
|
4
|
+
open Fable.Core
|
|
5
|
+
open Fable.Core.JsInterop
|
|
6
|
+
open System
|
|
7
|
+
|
|
8
|
+
[<Erase>]
|
|
9
|
+
type Html =
|
|
10
|
+
static member inline a xs = Interop.createElement "a" xs
|
|
11
|
+
static member inline a (children: #seq<ReactElement>) = Interop.reactElementWithChildren "a" children
|
|
12
|
+
|
|
13
|
+
static member inline abbr xs = Interop.createElement "abbr" xs
|
|
14
|
+
static member inline abbr (value: float) = Interop.reactElementWithChild "abbr" value
|
|
15
|
+
static member inline abbr (value: int) = Interop.reactElementWithChild "abbr" value
|
|
16
|
+
static member inline abbr (value: ReactElement) = Interop.reactElementWithChild "abbr" value
|
|
17
|
+
static member inline abbr (value: string) = Interop.reactElementWithChild "abbr" value
|
|
18
|
+
static member inline abbr (children: #seq<ReactElement>) = Interop.reactElementWithChildren "abbr" children
|
|
19
|
+
|
|
20
|
+
static member inline address xs = Interop.createElement "address" xs
|
|
21
|
+
static member inline address (value: float) = Interop.reactElementWithChild "address" value
|
|
22
|
+
static member inline address (value: int) = Interop.reactElementWithChild "address" value
|
|
23
|
+
static member inline address (value: ReactElement) = Interop.reactElementWithChild "address" value
|
|
24
|
+
static member inline address (value: string) = Interop.reactElementWithChild "address" value
|
|
25
|
+
static member inline address (children: #seq<ReactElement>) = Interop.reactElementWithChildren "address" children
|
|
26
|
+
|
|
27
|
+
static member inline anchor xs = Interop.createElement "a" xs
|
|
28
|
+
static member inline anchor (children: #seq<ReactElement>) = Interop.reactElementWithChildren "a" children
|
|
29
|
+
|
|
30
|
+
static member inline animate xs = Interop.createElement "animate" xs
|
|
31
|
+
|
|
32
|
+
static member inline animateMotion xs = Interop.createElement "animateMotion" xs
|
|
33
|
+
static member inline animateMotion (children: #seq<ReactElement>) = Interop.reactElementWithChildren "animateMotion" children
|
|
34
|
+
|
|
35
|
+
static member inline animateTransform xs = Interop.createElement "animateTransform" xs
|
|
36
|
+
static member inline animateTransform (children: #seq<ReactElement>) = Interop.reactElementWithChildren "animateTransform" children
|
|
37
|
+
|
|
38
|
+
static member inline area xs = Interop.createElement "area" xs
|
|
39
|
+
|
|
40
|
+
static member inline article xs = Interop.createElement "article" xs
|
|
41
|
+
static member inline article (children: #seq<ReactElement>) = Interop.reactElementWithChildren "article" children
|
|
42
|
+
|
|
43
|
+
static member inline aside xs = Interop.createElement "aside" xs
|
|
44
|
+
static member inline aside (children: #seq<ReactElement>) = Interop.reactElementWithChildren "aside" children
|
|
45
|
+
|
|
46
|
+
static member inline audio xs = Interop.createElement "audio" xs
|
|
47
|
+
static member inline audio (children: #seq<ReactElement>) = Interop.reactElementWithChildren "audio" children
|
|
48
|
+
|
|
49
|
+
static member inline b xs = Interop.createElement "b" xs
|
|
50
|
+
static member inline b (value: float) = Interop.reactElementWithChild "b" value
|
|
51
|
+
static member inline b (value: int) = Interop.reactElementWithChild "b" value
|
|
52
|
+
static member inline b (value: ReactElement) = Interop.reactElementWithChild "b" value
|
|
53
|
+
static member inline b (value: string) = Interop.reactElementWithChild "b" value
|
|
54
|
+
static member inline b (children: #seq<ReactElement>) = Interop.reactElementWithChildren "b" children
|
|
55
|
+
|
|
56
|
+
static member inline base' xs = Interop.createElement "base" xs
|
|
57
|
+
|
|
58
|
+
static member inline bdi xs = Interop.createElement "bdi" xs
|
|
59
|
+
static member inline bdi (value: float) = Interop.reactElementWithChild "bdi" value
|
|
60
|
+
static member inline bdi (value: int) = Interop.reactElementWithChild "bdi" value
|
|
61
|
+
static member inline bdi (value: ReactElement) = Interop.reactElementWithChild "bdi" value
|
|
62
|
+
static member inline bdi (value: string) = Interop.reactElementWithChild "bdi" value
|
|
63
|
+
static member inline bdi (children: #seq<ReactElement>) = Interop.reactElementWithChildren "bdi" children
|
|
64
|
+
|
|
65
|
+
static member inline bdo xs = Interop.createElement "bdo" xs
|
|
66
|
+
static member inline bdo (value: float) = Interop.reactElementWithChild "bdo" value
|
|
67
|
+
static member inline bdo (value: int) = Interop.reactElementWithChild "bdo" value
|
|
68
|
+
static member inline bdo (value: ReactElement) = Interop.reactElementWithChild "bdo" value
|
|
69
|
+
static member inline bdo (value: string) = Interop.reactElementWithChild "bdo" value
|
|
70
|
+
static member inline bdo (children: #seq<ReactElement>) = Interop.reactElementWithChildren "bdo" children
|
|
71
|
+
|
|
72
|
+
static member inline blockquote xs = Interop.createElement "blockquote" xs
|
|
73
|
+
static member inline blockquote (value: float) = Interop.reactElementWithChild "blockquote" value
|
|
74
|
+
static member inline blockquote (value: int) = Interop.reactElementWithChild "blockquote" value
|
|
75
|
+
static member inline blockquote (value: ReactElement) = Interop.reactElementWithChild "blockquote" value
|
|
76
|
+
static member inline blockquote (value: string) = Interop.reactElementWithChild "blockquote" value
|
|
77
|
+
static member inline blockquote (children: #seq<ReactElement>) = Interop.reactElementWithChildren "blockquote" children
|
|
78
|
+
|
|
79
|
+
static member inline body xs = Interop.createElement "body" xs
|
|
80
|
+
static member inline body (value: float) = Interop.reactElementWithChild "body" value
|
|
81
|
+
static member inline body (value: int) = Interop.reactElementWithChild "body" value
|
|
82
|
+
static member inline body (value: ReactElement) = Interop.reactElementWithChild "body" value
|
|
83
|
+
static member inline body (value: string) = Interop.reactElementWithChild "body" value
|
|
84
|
+
static member inline body (children: #seq<ReactElement>) = Interop.reactElementWithChildren "body" children
|
|
85
|
+
|
|
86
|
+
static member inline br xs = Interop.createElement "br" xs
|
|
87
|
+
|
|
88
|
+
static member inline button xs = Interop.createElement "button" xs
|
|
89
|
+
static member inline button (children: #seq<ReactElement>) = Interop.reactElementWithChildren "button" children
|
|
90
|
+
|
|
91
|
+
static member inline canvas xs = Interop.createElement "canvas" xs
|
|
92
|
+
|
|
93
|
+
static member inline caption xs = Interop.createElement "caption" xs
|
|
94
|
+
static member inline caption (value: float) = Interop.reactElementWithChild "caption" value
|
|
95
|
+
static member inline caption (value: int) = Interop.reactElementWithChild "caption" value
|
|
96
|
+
static member inline caption (value: ReactElement) = Interop.reactElementWithChild "caption" value
|
|
97
|
+
static member inline caption (value: string) = Interop.reactElementWithChild "caption" value
|
|
98
|
+
static member inline caption (children: #seq<ReactElement>) = Interop.reactElementWithChildren "caption" children
|
|
99
|
+
|
|
100
|
+
static member inline cite xs = Interop.createElement "cite" xs
|
|
101
|
+
static member inline cite (value: float) = Interop.reactElementWithChild "cite" value
|
|
102
|
+
static member inline cite (value: int) = Interop.reactElementWithChild "cite" value
|
|
103
|
+
static member inline cite (value: ReactElement) = Interop.reactElementWithChild "cite" value
|
|
104
|
+
static member inline cite (value: string) = Interop.reactElementWithChild "cite" value
|
|
105
|
+
static member inline cite (children: #seq<ReactElement>) = Interop.reactElementWithChildren "cite" children
|
|
106
|
+
[<Obsolete "Html.circle is obsolete, use Svg.circle instead">]
|
|
107
|
+
static member inline circle xs = Interop.createElement "circle" xs
|
|
108
|
+
[<Obsolete "Html.circle is obsolete, use Svg.circle instead">]
|
|
109
|
+
static member inline circle (children: #seq<ReactElement>) = Interop.reactElementWithChildren "circle" children
|
|
110
|
+
[<Obsolete "Html.clipPath is obsolete, use Svg.clipPath instead">]
|
|
111
|
+
static member inline clipPath xs = Interop.createElement "clipPath" xs
|
|
112
|
+
[<Obsolete "Html.clipPath is obsolete, use Svg.clipPath instead">]
|
|
113
|
+
static member inline clipPath (children: #seq<ReactElement>) = Interop.reactElementWithChildren "clipPath" children
|
|
114
|
+
|
|
115
|
+
static member inline code xs = Interop.createElement "code" xs
|
|
116
|
+
static member inline code (value: bool) = Interop.reactElementWithChild "code" value
|
|
117
|
+
static member inline code (value: float) = Interop.reactElementWithChild "code" value
|
|
118
|
+
static member inline code (value: int) = Interop.reactElementWithChild "code" value
|
|
119
|
+
static member inline code (value: ReactElement) = Interop.reactElementWithChild "code" value
|
|
120
|
+
static member inline code (value: string) = Interop.reactElementWithChild "code" value
|
|
121
|
+
static member inline code (children: #seq<ReactElement>) = Interop.reactElementWithChildren "code" children
|
|
122
|
+
|
|
123
|
+
static member inline col xs = Interop.createElement "col" xs
|
|
124
|
+
|
|
125
|
+
static member inline colgroup xs = Interop.createElement "colgroup" xs
|
|
126
|
+
static member inline colgroup (children: #seq<ReactElement>) = Interop.reactElementWithChildren "colgroup" children
|
|
127
|
+
|
|
128
|
+
[<Obsolete("This deprecated API should no longer be used, but will probably still work.")>]
|
|
129
|
+
static member inline content (value: float) : ReactElement = unbox value
|
|
130
|
+
[<Obsolete("This deprecated API should no longer be used, but will probably still work.")>]
|
|
131
|
+
static member inline content (value: int) : ReactElement = unbox value
|
|
132
|
+
[<Obsolete("This deprecated API should no longer be used, but will probably still work.")>]
|
|
133
|
+
static member inline content (value: string) : ReactElement = unbox value
|
|
134
|
+
|
|
135
|
+
static member inline data xs = Interop.createElement "data" xs
|
|
136
|
+
static member inline data (value: float) = Interop.reactElementWithChild "data" value
|
|
137
|
+
static member inline data (value: int) = Interop.reactElementWithChild "data" value
|
|
138
|
+
static member inline data (value: ReactElement) = Interop.reactElementWithChild "data" value
|
|
139
|
+
static member inline data (value: string) = Interop.reactElementWithChild "data" value
|
|
140
|
+
static member inline data (children: #seq<ReactElement>) = Interop.reactElementWithChildren "data" children
|
|
141
|
+
|
|
142
|
+
static member inline datalist xs = Interop.createElement "datalist" xs
|
|
143
|
+
static member inline datalist (value: float) = Interop.reactElementWithChild "datalist" value
|
|
144
|
+
static member inline datalist (value: int) = Interop.reactElementWithChild "datalist" value
|
|
145
|
+
static member inline datalist (value: ReactElement) = Interop.reactElementWithChild "datalist" value
|
|
146
|
+
static member inline datalist (value: string) = Interop.reactElementWithChild "datalist" value
|
|
147
|
+
static member inline datalist (children: #seq<ReactElement>) = Interop.reactElementWithChildren "datalist" children
|
|
148
|
+
|
|
149
|
+
static member inline dd xs = Interop.createElement "dd" xs
|
|
150
|
+
static member inline dd (value: float) = Interop.reactElementWithChild "dd" value
|
|
151
|
+
static member inline dd (value: int) = Interop.reactElementWithChild "dd" value
|
|
152
|
+
static member inline dd (value: ReactElement) = Interop.reactElementWithChild "dd" value
|
|
153
|
+
static member inline dd (value: string) = Interop.reactElementWithChild "dd" value
|
|
154
|
+
static member inline dd (children: #seq<ReactElement>) = Interop.reactElementWithChildren "dd" children
|
|
155
|
+
[<Obsolete "Html.defs is obsolete, use Svg.defs instead">]
|
|
156
|
+
static member inline defs xs = Interop.createElement "defs" xs
|
|
157
|
+
[<Obsolete "Html.defs is obsolete, use Svg.defs instead">]
|
|
158
|
+
static member inline defs (children: #seq<ReactElement>) = Interop.reactElementWithChildren "defs" children
|
|
159
|
+
static member inline del xs = Interop.createElement "del" xs
|
|
160
|
+
static member inline del (value: float) = Interop.reactElementWithChild "del" value
|
|
161
|
+
static member inline del (value: int) = Interop.reactElementWithChild "del" value
|
|
162
|
+
static member inline del (value: ReactElement) = Interop.reactElementWithChild "del" value
|
|
163
|
+
static member inline del (value: string) = Interop.reactElementWithChild "del" value
|
|
164
|
+
static member inline del (children: #seq<ReactElement>) = Interop.reactElementWithChildren "del" children
|
|
165
|
+
|
|
166
|
+
static member inline details xs = Interop.createElement "details" xs
|
|
167
|
+
static member inline details (children: #seq<ReactElement>) = Interop.reactElementWithChildren "details" children
|
|
168
|
+
|
|
169
|
+
[<Obsolete "Html.desc is obsolete, use Svg.desc instead">]
|
|
170
|
+
static member inline desc xs = Interop.createElement "desc" xs
|
|
171
|
+
[<Obsolete "Html.desc is obsolete, use Svg.desc instead">]
|
|
172
|
+
static member inline desc (value: float) = Interop.reactElementWithChild "desc" value
|
|
173
|
+
[<Obsolete "Html.desc is obsolete, use Svg.desc instead">]
|
|
174
|
+
static member inline desc (value: int) = Interop.reactElementWithChild "desc" value
|
|
175
|
+
[<Obsolete "Html.desc is obsolete, use Svg.desc instead">]
|
|
176
|
+
static member inline desc (value: string) = Interop.reactElementWithChild "desc" value
|
|
177
|
+
|
|
178
|
+
static member inline dfn xs = Interop.createElement "ins" xs
|
|
179
|
+
static member inline dfn (value: float) = Interop.reactElementWithChild "dfn" value
|
|
180
|
+
static member inline dfn (value: int) = Interop.reactElementWithChild "dfn" value
|
|
181
|
+
static member inline dfn (value: ReactElement) = Interop.reactElementWithChild "dfn" value
|
|
182
|
+
static member inline dfn (value: string) = Interop.reactElementWithChild "dfn" value
|
|
183
|
+
static member inline dfn (children: #seq<ReactElement>) = Interop.reactElementWithChildren "dfn" children
|
|
184
|
+
|
|
185
|
+
static member inline dialog xs = Interop.createElement "dialog" xs
|
|
186
|
+
static member inline dialog (value: float) = Interop.reactElementWithChild "dialog" value
|
|
187
|
+
static member inline dialog (value: int) = Interop.reactElementWithChild "dialog" value
|
|
188
|
+
static member inline dialog (value: ReactElement) = Interop.reactElementWithChild "dialog" value
|
|
189
|
+
static member inline dialog (value: string) = Interop.reactElementWithChild "dialog" value
|
|
190
|
+
static member inline dialog (children: #seq<ReactElement>) = Interop.reactElementWithChildren "dialog" children
|
|
191
|
+
|
|
192
|
+
/// The `<div>` tag defines a division or a section in an HTML document
|
|
193
|
+
static member inline div xs = Interop.createElement "div" xs
|
|
194
|
+
static member inline div (value: float) = Interop.reactElementWithChild "div" value
|
|
195
|
+
static member inline div (value: int) = Interop.reactElementWithChild "div" value
|
|
196
|
+
static member inline div (value: ReactElement) = Interop.reactElementWithChild "div" value
|
|
197
|
+
static member inline div (value: string) = Interop.reactElementWithChild "div" value
|
|
198
|
+
static member inline div (children: #seq<ReactElement>) = Interop.reactElementWithChildren "div" children
|
|
199
|
+
|
|
200
|
+
static member inline dl xs = Interop.createElement "dl" xs
|
|
201
|
+
static member inline dl (children: #seq<ReactElement>) = Interop.reactElementWithChildren "dl" children
|
|
202
|
+
|
|
203
|
+
static member inline dt xs = Interop.createElement "dt" xs
|
|
204
|
+
static member inline dt (value: float) = Interop.reactElementWithChild "dt" value
|
|
205
|
+
static member inline dt (value: int) = Interop.reactElementWithChild "dt" value
|
|
206
|
+
static member inline dt (value: ReactElement) = Interop.reactElementWithChild "dt" value
|
|
207
|
+
static member inline dt (value: string) = Interop.reactElementWithChild "dt" value
|
|
208
|
+
static member inline dt (children: #seq<ReactElement>) = Interop.reactElementWithChildren "dt" children
|
|
209
|
+
|
|
210
|
+
[<Obsolete "Html.ellipse is obsolete, use Svg.ellipse instead">]
|
|
211
|
+
static member inline ellipse xs = Interop.createElement "ellipse" xs
|
|
212
|
+
[<Obsolete "Html.ellipse is obsolete, use Svg.ellipse instead">]
|
|
213
|
+
static member inline ellipse (children: #seq<ReactElement>) = Interop.reactElementWithChildren "ellipse" children
|
|
214
|
+
|
|
215
|
+
static member inline em xs = Interop.createElement "em" xs
|
|
216
|
+
static member inline em (value: float) = Interop.reactElementWithChild "em" value
|
|
217
|
+
static member inline em (value: int) = Interop.reactElementWithChild "em" value
|
|
218
|
+
static member inline em (value: ReactElement) = Interop.reactElementWithChild "em" value
|
|
219
|
+
static member inline em (value: string) = Interop.reactElementWithChild "em" value
|
|
220
|
+
static member inline em (children: #seq<ReactElement>) = Interop.reactElementWithChildren "em" children
|
|
221
|
+
|
|
222
|
+
static member inline embed xs = Interop.createElement "embed" xs
|
|
223
|
+
[<Obsolete "Html.feBlend is obsolete, use Svg.feBlend instead">]
|
|
224
|
+
static member inline feBlend xs = Interop.createElement "feBlend" xs
|
|
225
|
+
[<Obsolete "Html.feBlend is obsolete, use Svg.feBlend instead">]
|
|
226
|
+
static member inline feBlend (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feBlend" children
|
|
227
|
+
[<Obsolete "Html.feColorMatrix is obsolete, use Svg.feColorMatrix instead">]
|
|
228
|
+
static member inline feColorMatrix xs = Interop.createElement "feColorMatrix" xs
|
|
229
|
+
[<Obsolete "Html.feColorMatrix is obsolete, use Svg.feColorMatrix instead">]
|
|
230
|
+
static member inline feColorMatrix (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feColorMatrix" children
|
|
231
|
+
[<Obsolete "Html.feComponentTransfer is obsolete, use Svg.feComponentTransfer instead">]
|
|
232
|
+
static member inline feComponentTransfer xs = Interop.createElement "feComponentTransfer" xs
|
|
233
|
+
[<Obsolete "Html.feComponentTransfer is obsolete, use Svg.feComponentTransfer instead">]
|
|
234
|
+
static member inline feComponentTransfer (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feComponentTransfer" children
|
|
235
|
+
[<Obsolete "Html.feComposite is obsolete, use Svg.feComposite instead">]
|
|
236
|
+
static member inline feComposite xs = Interop.createElement "feComposite" xs
|
|
237
|
+
[<Obsolete "Html.feComposite is obsolete, use Svg.feComposite instead">]
|
|
238
|
+
static member inline feComposite (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feComposite" children
|
|
239
|
+
[<Obsolete "Html.feConvolveMatrix is obsolete, use Svg.feConvolveMatrix instead">]
|
|
240
|
+
static member inline feConvolveMatrix xs = Interop.createElement "feConvolveMatrix" xs
|
|
241
|
+
[<Obsolete "Html.feConvolveMatrix is obsolete, use Svg.feConvolveMatrix instead">]
|
|
242
|
+
static member inline feConvolveMatrix (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feConvolveMatrix" children
|
|
243
|
+
[<Obsolete "Html.feDiffuseLighting is obsolete, use Svg.feDiffuseLighting instead">]
|
|
244
|
+
static member inline feDiffuseLighting xs = Interop.createElement "feDiffuseLighting" xs
|
|
245
|
+
[<Obsolete "Html.feDiffuseLighting is obsolete, use Svg.feDiffuseLighting instead">]
|
|
246
|
+
static member inline feDiffuseLighting (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feDiffuseLighting" children
|
|
247
|
+
[<Obsolete "Html.feDisplacementMap is obsolete, use Svg.feDisplacementMap instead">]
|
|
248
|
+
static member inline feDisplacementMap xs = Interop.createElement "feDisplacementMap" xs
|
|
249
|
+
[<Obsolete "Html.feDisplacementMap is obsolete, use Svg.feDisplacementMap instead">]
|
|
250
|
+
static member inline feDisplacementMap (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feDisplacementMap" children
|
|
251
|
+
[<Obsolete "Html.feDistantLight is obsolete, use Svg.feDistantLight instead">]
|
|
252
|
+
static member inline feDistantLight xs = Interop.createElement "feDistantLight" xs
|
|
253
|
+
[<Obsolete "Html.feDistantLight is obsolete, use Svg.feDistantLight instead">]
|
|
254
|
+
static member inline feDistantLight (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feDistantLight" children
|
|
255
|
+
[<Obsolete "Html.feDropShadow is obsolete, use Svg.feDropShadow instead">]
|
|
256
|
+
static member inline feDropShadow xs = Interop.createElement "feDropShadow" xs
|
|
257
|
+
[<Obsolete "Html.feDropShadow is obsolete, use Svg.feDropShadow instead">]
|
|
258
|
+
static member inline feDropShadow (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feDropShadow" children
|
|
259
|
+
[<Obsolete "Html.feFlood is obsolete, use Svg.feFlood instead">]
|
|
260
|
+
static member inline feFlood xs = Interop.createElement "feFlood" xs
|
|
261
|
+
[<Obsolete "Html.feFlood is obsolete, use Svg.feFlood instead">]
|
|
262
|
+
static member inline feFlood (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feFlood" children
|
|
263
|
+
[<Obsolete "Html.feFuncA is obsolete, use Svg.feFuncA instead">]
|
|
264
|
+
static member inline feFuncA xs = Interop.createElement "feFuncA" xs
|
|
265
|
+
[<Obsolete "Html.feFuncA is obsolete, use Svg.feFuncA instead">]
|
|
266
|
+
static member inline feFuncA (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feFuncA" children
|
|
267
|
+
[<Obsolete "Html.feFuncB is obsolete, use Svg.feFuncB instead">]
|
|
268
|
+
static member inline feFuncB xs = Interop.createElement "feFuncB" xs
|
|
269
|
+
[<Obsolete "Html.feFuncB is obsolete, use Svg.feFuncB instead">]
|
|
270
|
+
static member inline feFuncB (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feFuncB" children
|
|
271
|
+
[<Obsolete "Html.feFuncG is obsolete, use Svg.feFuncG instead">]
|
|
272
|
+
static member inline feFuncG xs = Interop.createElement "feFuncG" xs
|
|
273
|
+
[<Obsolete "Html.feFuncG is obsolete, use Svg.feFuncG instead">]
|
|
274
|
+
static member inline feFuncG (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feFuncG" children
|
|
275
|
+
[<Obsolete "Html.feFuncR is obsolete, use Svg.feFuncR instead">]
|
|
276
|
+
static member inline feFuncR xs = Interop.createElement "feFuncR" xs
|
|
277
|
+
[<Obsolete "Html.feFuncR is obsolete, use Svg.feFuncR instead">]
|
|
278
|
+
static member inline feFuncR (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feFuncR" children
|
|
279
|
+
[<Obsolete "Html.feGaussianBlur is obsolete, use Svg.feGaussianBlur instead">]
|
|
280
|
+
static member inline feGaussianBlur xs = Interop.createElement "feGaussianBlur" xs
|
|
281
|
+
[<Obsolete "Html.feGaussianBlur is obsolete, use Svg.feGaussianBlur instead">]
|
|
282
|
+
static member inline feGaussianBlur (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feGaussianBlur" children
|
|
283
|
+
[<Obsolete "Html.feImage is obsolete, use Svg.feImage instead">]
|
|
284
|
+
static member inline feImage xs = Interop.createElement "feImage" xs
|
|
285
|
+
[<Obsolete "Html.feImage is obsolete, use Svg.feImage instead">]
|
|
286
|
+
static member inline feImage (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feImage" children
|
|
287
|
+
[<Obsolete "Html.feMerge is obsolete, use Svg.feMerge instead">]
|
|
288
|
+
static member inline feMerge xs = Interop.createElement "feMerge" xs
|
|
289
|
+
[<Obsolete "Html.feMerge is obsolete, use Svg.feMerge instead">]
|
|
290
|
+
static member inline feMerge (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feMerge" children
|
|
291
|
+
[<Obsolete "Html.feMergeNode is obsolete, use Svg.feMergeNode instead">]
|
|
292
|
+
static member inline feMergeNode xs = Interop.createElement "feMergeNode" xs
|
|
293
|
+
[<Obsolete "Html.feMergeNode is obsolete, use Svg.feMergeNode instead">]
|
|
294
|
+
static member inline feMergeNode (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feMergeNode" children
|
|
295
|
+
[<Obsolete "Html.feMorphology is obsolete, use Svg.feMorphology instead">]
|
|
296
|
+
static member inline feMorphology xs = Interop.createElement "feMorphology" xs
|
|
297
|
+
[<Obsolete "Html.feMorphology is obsolete, use Svg.feMorphology instead">]
|
|
298
|
+
static member inline feMorphology (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feMorphology" children
|
|
299
|
+
[<Obsolete "Html.feOffset is obsolete, use Svg.feOffset instead">]
|
|
300
|
+
static member inline feOffset xs = Interop.createElement "feOffset" xs
|
|
301
|
+
[<Obsolete "Html.feOffset is obsolete, use Svg.feOffset instead">]
|
|
302
|
+
static member inline feOffset (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feOffset" children
|
|
303
|
+
[<Obsolete "Html.fePointLight is obsolete, use Svg.fePointLight instead">]
|
|
304
|
+
static member inline fePointLight xs = Interop.createElement "fePointLight" xs
|
|
305
|
+
[<Obsolete "Html.fePointLight is obsolete, use Svg.fePointLight instead">]
|
|
306
|
+
static member inline fePointLight (children: #seq<ReactElement>) = Interop.reactElementWithChildren "fePointLight" children
|
|
307
|
+
[<Obsolete "Html.feSpecularLighting is obsolete, use Svg.feSpecularLighting instead">]
|
|
308
|
+
static member inline feSpecularLighting xs = Interop.createElement "feSpecularLighting" xs
|
|
309
|
+
[<Obsolete "Html.feSpecularLighting is obsolete, use Svg.feSpecularLighting instead">]
|
|
310
|
+
static member inline feSpecularLighting (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feSpecularLighting" children
|
|
311
|
+
[<Obsolete "Html.feSpotLight is obsolete, use Svg.feSpotLight instead">]
|
|
312
|
+
static member inline feSpotLight xs = Interop.createElement "feSpotLight" xs
|
|
313
|
+
[<Obsolete "Html.feSpotLight is obsolete, use Svg.feSpotLight instead">]
|
|
314
|
+
static member inline feSpotLight (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feSpotLight" children
|
|
315
|
+
[<Obsolete "Html.feTile is obsolete, use Svg.feTile instead">]
|
|
316
|
+
static member inline feTile xs = Interop.createElement "feTile" xs
|
|
317
|
+
[<Obsolete "Html.feTile is obsolete, use Svg.feTile instead">]
|
|
318
|
+
static member inline feTile (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feTile" children
|
|
319
|
+
[<Obsolete "Html.feTurbulence is obsolete, use Svg.feTurbulence instead">]
|
|
320
|
+
static member inline feTurbulence xs = Interop.createElement "feTurbulence" xs
|
|
321
|
+
[<Obsolete "Html.feTurbulence is obsolete, use Svg.feTurbulence instead">]
|
|
322
|
+
static member inline feTurbulence (children: #seq<ReactElement>) = Interop.reactElementWithChildren "feTurbulence" children
|
|
323
|
+
static member inline fieldSet xs = Interop.createElement "fieldset" xs
|
|
324
|
+
static member inline fieldSet (children: #seq<ReactElement>) = Interop.reactElementWithChildren "fieldset" children
|
|
325
|
+
|
|
326
|
+
static member inline figcaption xs = Interop.createElement "figcaption" xs
|
|
327
|
+
static member inline figcaption (children: #seq<ReactElement>) = Interop.reactElementWithChildren "figcaption" children
|
|
328
|
+
|
|
329
|
+
static member inline figure xs = Interop.createElement "figure" xs
|
|
330
|
+
static member inline figure (children: #seq<ReactElement>) = Interop.reactElementWithChildren "figure" children
|
|
331
|
+
[<Obsolete "Html.filter is obsolete, use Svg.filter instead">]
|
|
332
|
+
static member inline filter xs = Interop.createElement "filter" xs
|
|
333
|
+
[<Obsolete "Html.filter is obsolete, use Svg.filter instead">]
|
|
334
|
+
static member inline filter (children: #seq<ReactElement>) = Interop.reactElementWithChildren "filter" children
|
|
335
|
+
|
|
336
|
+
static member inline footer xs = Interop.createElement "footer" xs
|
|
337
|
+
static member inline footer (children: #seq<ReactElement>) = Interop.reactElementWithChildren "footer" children
|
|
338
|
+
[<Obsolete "Html.foreignObject is obsolete, use Svg.foreignObject instead">]
|
|
339
|
+
static member inline foreignObject xs = Interop.createElement "foreignObject" xs
|
|
340
|
+
[<Obsolete "Html.foreignObject is obsolete, use Svg.foreignObject instead">]
|
|
341
|
+
static member inline foreignObject (children: #seq<ReactElement>) = Interop.reactElementWithChildren "foreignObject" children
|
|
342
|
+
|
|
343
|
+
static member inline form xs = Interop.createElement "form" xs
|
|
344
|
+
static member inline form (children: #seq<ReactElement>) = Interop.reactElementWithChildren "form" children
|
|
345
|
+
|
|
346
|
+
// [<Obsolete("Html.fragment is obsolete, use React.fragment instead. This function will be removed in the coming v1.0 release")>]
|
|
347
|
+
// static member inline fragment xs = Fable.React.Helpers.fragment [] xs
|
|
348
|
+
[<Obsolete "Html.g is obsolete, use Svg.g instead">]
|
|
349
|
+
static member inline g xs = Interop.createElement "g" xs
|
|
350
|
+
[<Obsolete "Html.g is obsolete, use Svg.g instead">]
|
|
351
|
+
static member inline g (children: #seq<ReactElement>) = Interop.reactElementWithChildren "g" children
|
|
352
|
+
|
|
353
|
+
static member inline h1 xs = Interop.createElement "h1" xs
|
|
354
|
+
static member inline h1 (value: float) = Interop.reactElementWithChild "h1" value
|
|
355
|
+
static member inline h1 (value: int) = Interop.reactElementWithChild "h1" value
|
|
356
|
+
static member inline h1 (value: ReactElement) = Interop.reactElementWithChild "h1" value
|
|
357
|
+
static member inline h1 (value: string) = Interop.reactElementWithChild "h1" value
|
|
358
|
+
static member inline h1 (children: #seq<ReactElement>) = Interop.reactElementWithChildren "h1" children
|
|
359
|
+
static member inline h2 xs = Interop.createElement "h2" xs
|
|
360
|
+
static member inline h2 (value: float) = Interop.reactElementWithChild "h2" value
|
|
361
|
+
static member inline h2 (value: int) = Interop.reactElementWithChild "h2" value
|
|
362
|
+
static member inline h2 (value: ReactElement) = Interop.reactElementWithChild "h2" value
|
|
363
|
+
static member inline h2 (value: string) = Interop.reactElementWithChild "h2" value
|
|
364
|
+
static member inline h2 (children: #seq<ReactElement>) = Interop.reactElementWithChildren "h2" children
|
|
365
|
+
|
|
366
|
+
static member inline h3 xs = Interop.createElement "h3" xs
|
|
367
|
+
static member inline h3 (value: float) = Interop.reactElementWithChild "h3" value
|
|
368
|
+
static member inline h3 (value: int) = Interop.reactElementWithChild "h3" value
|
|
369
|
+
static member inline h3 (value: ReactElement) = Interop.reactElementWithChild "h3" value
|
|
370
|
+
static member inline h3 (value: string) = Interop.reactElementWithChild "h3" value
|
|
371
|
+
static member inline h3 (children: #seq<ReactElement>) = Interop.reactElementWithChildren "h3" children
|
|
372
|
+
|
|
373
|
+
static member inline h4 xs = Interop.createElement "h4" xs
|
|
374
|
+
static member inline h4 (value: float) = Interop.reactElementWithChild "h4" value
|
|
375
|
+
static member inline h4 (value: int) = Interop.reactElementWithChild "h4" value
|
|
376
|
+
static member inline h4 (value: ReactElement) = Interop.reactElementWithChild "h4" value
|
|
377
|
+
static member inline h4 (value: string) = Interop.reactElementWithChild "h4" value
|
|
378
|
+
static member inline h4 (children: #seq<ReactElement>) = Interop.reactElementWithChildren "h4" children
|
|
379
|
+
|
|
380
|
+
static member inline h5 xs = Interop.createElement "h5" xs
|
|
381
|
+
static member inline h5 (value: float) = Interop.reactElementWithChild "h5" value
|
|
382
|
+
static member inline h5 (value: int) = Interop.reactElementWithChild "h5" value
|
|
383
|
+
static member inline h5 (value: ReactElement) = Interop.reactElementWithChild "h5" value
|
|
384
|
+
static member inline h5 (value: string) = Interop.reactElementWithChild "h5" value
|
|
385
|
+
static member inline h5 (children: #seq<ReactElement>) = Interop.reactElementWithChildren "h5" children
|
|
386
|
+
|
|
387
|
+
static member inline h6 xs = Interop.createElement "h6" xs
|
|
388
|
+
static member inline h6 (value: float) = Interop.reactElementWithChild "h6" value
|
|
389
|
+
static member inline h6 (value: int) = Interop.reactElementWithChild "h6" value
|
|
390
|
+
static member inline h6 (value: ReactElement) = Interop.reactElementWithChild "h6" value
|
|
391
|
+
static member inline h6 (value: string) = Interop.reactElementWithChild "h6" value
|
|
392
|
+
static member inline h6 (children: #seq<ReactElement>) = Interop.reactElementWithChildren "h6" children
|
|
393
|
+
|
|
394
|
+
static member inline head xs = Interop.createElement "head" xs
|
|
395
|
+
static member inline head (children: #seq<ReactElement>) = Interop.reactElementWithChildren "head" children
|
|
396
|
+
|
|
397
|
+
static member inline header xs = Interop.createElement "header" xs
|
|
398
|
+
static member inline header (children: #seq<ReactElement>) = Interop.reactElementWithChildren "header" children
|
|
399
|
+
|
|
400
|
+
static member inline hr xs = Interop.createElement "hr" xs
|
|
401
|
+
|
|
402
|
+
static member inline html xs = Interop.createElement "html" xs
|
|
403
|
+
static member inline html (children: #seq<ReactElement>) = Interop.reactElementWithChildren "html" children
|
|
404
|
+
|
|
405
|
+
static member inline i xs = Interop.createElement "i" xs
|
|
406
|
+
static member inline i (value: float) = Interop.reactElementWithChild "i" value
|
|
407
|
+
static member inline i (value: int) = Interop.reactElementWithChild "i" value
|
|
408
|
+
static member inline i (value: ReactElement) = Interop.reactElementWithChild "i" value
|
|
409
|
+
static member inline i (value: string) = Interop.reactElementWithChild "i" value
|
|
410
|
+
static member inline i (children: #seq<ReactElement>) = Interop.reactElementWithChildren "i" children
|
|
411
|
+
|
|
412
|
+
static member inline iframe xs = Interop.createElement "iframe" xs
|
|
413
|
+
|
|
414
|
+
static member inline img xs = Interop.createElement "img" xs
|
|
415
|
+
/// SVG Image element, not to be confused with HTML img alias.
|
|
416
|
+
static member inline image xs = Interop.createElement "image" xs
|
|
417
|
+
/// SVG Image element, not to be confused with HTML img alias.
|
|
418
|
+
static member inline image (children: #seq<ReactElement>) = Interop.reactElementWithChildren "image" children
|
|
419
|
+
|
|
420
|
+
static member inline input xs = Interop.createElement "input" xs
|
|
421
|
+
|
|
422
|
+
static member inline ins xs = Interop.createElement "ins" xs
|
|
423
|
+
static member inline ins (value: float) = Interop.reactElementWithChild "ins" value
|
|
424
|
+
static member inline ins (value: int) = Interop.reactElementWithChild "ins" value
|
|
425
|
+
static member inline ins (value: ReactElement) = Interop.reactElementWithChild "ins" value
|
|
426
|
+
static member inline ins (value: string) = Interop.reactElementWithChild "ins" value
|
|
427
|
+
static member inline ins (children: #seq<ReactElement>) = Interop.reactElementWithChildren "ins" children
|
|
428
|
+
|
|
429
|
+
static member inline kbd xs = Interop.createElement "kbd" xs
|
|
430
|
+
static member inline kbd (value: float) = Interop.reactElementWithChild "kbd" value
|
|
431
|
+
static member inline kbd (value: int) = Interop.reactElementWithChild "kbd" value
|
|
432
|
+
static member inline kbd (value: ReactElement) = Interop.reactElementWithChild "kbd" value
|
|
433
|
+
static member inline kbd (value: string) = Interop.reactElementWithChild "kbd" value
|
|
434
|
+
static member inline kbd (children: #seq<ReactElement>) = Interop.reactElementWithChildren "kbd" children
|
|
435
|
+
|
|
436
|
+
static member inline label xs = Interop.createElement "label" xs
|
|
437
|
+
static member inline label (children: #seq<ReactElement>) = Interop.reactElementWithChildren "label" children
|
|
438
|
+
|
|
439
|
+
static member inline legend xs = Interop.createElement "legend" xs
|
|
440
|
+
static member inline legend (value: float) = Interop.reactElementWithChild "legend" value
|
|
441
|
+
static member inline legend (value: int) = Interop.reactElementWithChild "legend" value
|
|
442
|
+
static member inline legend (value: ReactElement) = Interop.reactElementWithChild "legend" value
|
|
443
|
+
static member inline legend (value: string) = Interop.reactElementWithChild "legend" value
|
|
444
|
+
static member inline legend (children: #seq<ReactElement>) = Interop.reactElementWithChildren "legend" children
|
|
445
|
+
|
|
446
|
+
static member inline li xs = Interop.createElement "li" xs
|
|
447
|
+
static member inline li (value: float) = Interop.reactElementWithChild "li" value
|
|
448
|
+
static member inline li (value: int) = Interop.reactElementWithChild "li" value
|
|
449
|
+
static member inline li (value: ReactElement) = Interop.reactElementWithChild "li" value
|
|
450
|
+
static member inline li (value: string) = Interop.reactElementWithChild "li" value
|
|
451
|
+
static member inline li (children: #seq<ReactElement>) = Interop.reactElementWithChildren "li" children
|
|
452
|
+
[<Obsolete "Html.line is obsolete, use Svg.line instead">]
|
|
453
|
+
static member inline line xs = Interop.createElement "line" xs
|
|
454
|
+
[<Obsolete "Html.line is obsolete, use Svg.line instead">]
|
|
455
|
+
static member inline line (children: #seq<ReactElement>) = Interop.reactElementWithChildren "line" children
|
|
456
|
+
[<Obsolete "Html.linearGradient is obsolete, use Svg.linearGradient instead">]
|
|
457
|
+
static member inline linearGradient xs = Interop.createElement "linearGradient" xs
|
|
458
|
+
[<Obsolete "Html.linearGradient is obsolete, use Svg.linearGradient instead">]
|
|
459
|
+
static member inline linearGradient (children: #seq<ReactElement>) = Interop.reactElementWithChildren "linearGradient" children
|
|
460
|
+
|
|
461
|
+
static member inline link xs = Interop.createElement "link" xs
|
|
462
|
+
|
|
463
|
+
static member inline listItem xs = Interop.createElement "li" xs
|
|
464
|
+
static member inline listItem (value: float) = Interop.reactElementWithChild "li" value
|
|
465
|
+
static member inline listItem (value: int) = Interop.reactElementWithChild "li" value
|
|
466
|
+
static member inline listItem (value: ReactElement) = Interop.reactElementWithChild "li" value
|
|
467
|
+
static member inline listItem (value: string) = Interop.reactElementWithChild "li" value
|
|
468
|
+
static member inline listItem (children: #seq<ReactElement>) = Interop.reactElementWithChildren "li" children
|
|
469
|
+
|
|
470
|
+
static member inline main xs = Interop.createElement "main" xs
|
|
471
|
+
static member inline main (children: #seq<ReactElement>) = Interop.reactElementWithChildren "main" children
|
|
472
|
+
|
|
473
|
+
static member inline map xs = Interop.createElement "map" xs
|
|
474
|
+
static member inline map (children: #seq<ReactElement>) = Interop.reactElementWithChildren "map" children
|
|
475
|
+
|
|
476
|
+
static member inline mark xs = Interop.createElement "mark" xs
|
|
477
|
+
static member inline mark (value: float) = Interop.reactElementWithChild "mark" value
|
|
478
|
+
static member inline mark (value: int) = Interop.reactElementWithChild "mark" value
|
|
479
|
+
static member inline mark (value: ReactElement) = Interop.reactElementWithChild "mark" value
|
|
480
|
+
static member inline mark (value: string) = Interop.reactElementWithChild "mark" value
|
|
481
|
+
static member inline mark (children: #seq<ReactElement>) = Interop.reactElementWithChildren "mark" children
|
|
482
|
+
[<Obsolete "Html.marker is obsolete, use Svg.marker instead">]
|
|
483
|
+
static member inline marker xs = Interop.createElement "marker" xs
|
|
484
|
+
[<Obsolete "Html.marker is obsolete, use Svg.marker instead">]
|
|
485
|
+
static member inline marker (children: #seq<ReactElement>) = Interop.reactElementWithChildren "marker" children
|
|
486
|
+
[<Obsolete "Html.mask is obsolete, use Svg.mask instead">]
|
|
487
|
+
static member inline mask xs = Interop.createElement "mask" xs
|
|
488
|
+
[<Obsolete "Html.mask is obsolete, use Svg.mask instead">]
|
|
489
|
+
static member inline mask (children: #seq<ReactElement>) = Interop.reactElementWithChildren "mask" children
|
|
490
|
+
|
|
491
|
+
static member inline meta xs = Interop.createElement "meta" xs
|
|
492
|
+
|
|
493
|
+
static member inline metadata xs = Interop.createElement "metadata" xs
|
|
494
|
+
static member inline metadata (children: #seq<ReactElement>) = Interop.reactElementWithChildren "metadata" children
|
|
495
|
+
|
|
496
|
+
static member inline meter xs = Interop.createElement "meter" xs
|
|
497
|
+
static member inline meter (value: float) = Interop.reactElementWithChild "meter" value
|
|
498
|
+
static member inline meter (value: int) = Interop.reactElementWithChild "meter" value
|
|
499
|
+
static member inline meter (value: ReactElement) = Interop.reactElementWithChild "meter" value
|
|
500
|
+
static member inline meter (value: string) = Interop.reactElementWithChild "meter" value
|
|
501
|
+
static member inline meter (children: #seq<ReactElement>) = Interop.reactElementWithChildren "meter" children
|
|
502
|
+
[<Obsolete "Html.mpath is obsolte, use Svg.mpath instead">]
|
|
503
|
+
static member inline mpath xs = Interop.createElement "mpath" xs
|
|
504
|
+
[<Obsolete "Html.mpath is obsolte, use Svg.mpath instead">]
|
|
505
|
+
static member inline mpath (children: #seq<ReactElement>) = Interop.reactElementWithChildren "mpath" children
|
|
506
|
+
static member inline nav xs = Interop.createElement "nav" xs
|
|
507
|
+
static member inline nav (children: #seq<ReactElement>) = Interop.reactElementWithChildren "nav" children
|
|
508
|
+
|
|
509
|
+
/// The empty element, renders nothing on screen
|
|
510
|
+
static member inline none : ReactElement = unbox null
|
|
511
|
+
|
|
512
|
+
static member inline noscript xs = Interop.createElement "noscript" xs
|
|
513
|
+
static member inline noscript (children: #seq<ReactElement>) = Interop.reactElementWithChildren "noscript" children
|
|
514
|
+
|
|
515
|
+
static member inline object xs = Interop.createElement "object" xs
|
|
516
|
+
static member inline object (children: #seq<ReactElement>) = Interop.reactElementWithChildren "object" children
|
|
517
|
+
|
|
518
|
+
static member inline ol xs = Interop.createElement "ol" xs
|
|
519
|
+
static member inline ol (children: #seq<ReactElement>) = Interop.reactElementWithChildren "ol" children
|
|
520
|
+
|
|
521
|
+
static member inline option xs = Interop.createElement "option" xs
|
|
522
|
+
static member inline option (value: float) = Interop.reactElementWithChild "option" value
|
|
523
|
+
static member inline option (value: int) = Interop.reactElementWithChild "option" value
|
|
524
|
+
static member inline option (value: ReactElement) = Interop.reactElementWithChild "option" value
|
|
525
|
+
static member inline option (value: string) = Interop.reactElementWithChild "option" value
|
|
526
|
+
static member inline option (children: #seq<ReactElement>) = Interop.reactElementWithChildren "option" children
|
|
527
|
+
|
|
528
|
+
static member inline optgroup xs = Interop.createElement "optgroup" xs
|
|
529
|
+
static member inline optgroup (children: #seq<ReactElement>) = Interop.reactElementWithChildren "optgroup" children
|
|
530
|
+
|
|
531
|
+
static member inline orderedList xs = Interop.createElement "ol" xs
|
|
532
|
+
static member inline orderedList (children: #seq<ReactElement>) = Interop.reactElementWithChildren "ol" children
|
|
533
|
+
|
|
534
|
+
static member inline output xs = Interop.createElement "output" xs
|
|
535
|
+
static member inline output (value: float) = Interop.reactElementWithChild "output" value
|
|
536
|
+
static member inline output (value: int) = Interop.reactElementWithChild "output" value
|
|
537
|
+
static member inline output (value: ReactElement) = Interop.reactElementWithChild "output" value
|
|
538
|
+
static member inline output (value: string) = Interop.reactElementWithChild "output" value
|
|
539
|
+
static member inline output (children: #seq<ReactElement>) = Interop.reactElementWithChildren "output" children
|
|
540
|
+
|
|
541
|
+
static member inline p xs = Interop.createElement "p" xs
|
|
542
|
+
static member inline p (value: float) = Interop.reactElementWithChild "p" value
|
|
543
|
+
static member inline p (value: int) = Interop.reactElementWithChild "p" value
|
|
544
|
+
static member inline p (value: ReactElement) = Interop.reactElementWithChild "p" value
|
|
545
|
+
static member inline p (value: string) = Interop.reactElementWithChild "p" value
|
|
546
|
+
static member inline p (children: #seq<ReactElement>) = Interop.reactElementWithChildren "p" children
|
|
547
|
+
|
|
548
|
+
static member inline paragraph xs = Interop.createElement "p" xs
|
|
549
|
+
static member inline paragraph (value: float) = Interop.reactElementWithChild "p" value
|
|
550
|
+
static member inline paragraph (value: int) = Interop.reactElementWithChild "p" value
|
|
551
|
+
static member inline paragraph (value: ReactElement) = Interop.reactElementWithChild "p" value
|
|
552
|
+
static member inline paragraph (value: string) = Interop.reactElementWithChild "p" value
|
|
553
|
+
static member inline paragraph (children: #seq<ReactElement>) = Interop.reactElementWithChildren "p" children
|
|
554
|
+
|
|
555
|
+
static member inline param xs = Interop.createElement "param" xs
|
|
556
|
+
[<Obsolete "Html.path is obsolete, use Svg.path instead">]
|
|
557
|
+
static member inline path xs = Interop.createElement "path" xs
|
|
558
|
+
[<Obsolete "Html.path is obsolete, use Svg.path instead">]
|
|
559
|
+
static member inline path (children: #seq<ReactElement>) = Interop.reactElementWithChildren "path" children
|
|
560
|
+
[<Obsolete "Html.pattern is obsolete, use Svg.pattern instead">]
|
|
561
|
+
static member inline pattern xs = Interop.createElement "pattern" xs
|
|
562
|
+
[<Obsolete "Html.pattern is obsolete, use Svg.pattern instead">]
|
|
563
|
+
static member inline pattern (children: #seq<ReactElement>) = Interop.reactElementWithChildren "pattern" children
|
|
564
|
+
static member inline picture xs = Interop.createElement "picture" xs
|
|
565
|
+
static member inline picture (children: #seq<ReactElement>) = Interop.reactElementWithChildren "picture" children
|
|
566
|
+
[<Obsolete "Html.polygon is obsolete, use Svg.polygon instead">]
|
|
567
|
+
static member inline polygon xs = Interop.createElement "polygon" xs
|
|
568
|
+
[<Obsolete "Html.polygon is obsolete, use Svg.polygon instead">]
|
|
569
|
+
static member inline polygon (children: #seq<ReactElement>) = Interop.reactElementWithChildren "polygon" children
|
|
570
|
+
[<Obsolete "Html.polyline is obsolete, use Svg.polyline instead">]
|
|
571
|
+
static member inline polyline xs = Interop.createElement "polyline" xs
|
|
572
|
+
[<Obsolete "Html.polyline is obsolete, use Svg.polyline instead">]
|
|
573
|
+
static member inline polyline (children: #seq<ReactElement>) = Interop.reactElementWithChildren "polyline" children
|
|
574
|
+
static member inline pre xs = Interop.createElement "pre" xs
|
|
575
|
+
static member inline pre (value: bool) = Interop.reactElementWithChild "pre" value
|
|
576
|
+
static member inline pre (value: float) = Interop.reactElementWithChild "pre" value
|
|
577
|
+
static member inline pre (value: int) = Interop.reactElementWithChild "pre" value
|
|
578
|
+
static member inline pre (value: ReactElement) = Interop.reactElementWithChild "pre" value
|
|
579
|
+
static member inline pre (value: string) = Interop.reactElementWithChild "pre" value
|
|
580
|
+
static member inline pre (children: #seq<ReactElement>) = Interop.reactElementWithChildren "pre" children
|
|
581
|
+
|
|
582
|
+
static member inline progress xs = Interop.createElement "progress" xs
|
|
583
|
+
static member inline progress (children: #seq<ReactElement>) = Interop.reactElementWithChildren "progress" children
|
|
584
|
+
|
|
585
|
+
static member inline q xs = Interop.createElement "q" xs
|
|
586
|
+
static member inline q (children: #seq<ReactElement>) = Interop.reactElementWithChildren "q" children
|
|
587
|
+
[<Obsolete "Html.radialGradient is obsolete, use Svg.radialGradient instead">]
|
|
588
|
+
static member inline radialGradient xs = Interop.createElement "radialGradient" xs
|
|
589
|
+
[<Obsolete "Html.radialGradient is obsolete, use Svg.radialGradient instead">]
|
|
590
|
+
static member inline radialGradient (children: #seq<ReactElement>) = Interop.reactElementWithChildren "radialGradient" children
|
|
591
|
+
|
|
592
|
+
static member inline rb xs = Interop.createElement "rb" xs
|
|
593
|
+
static member inline rb (value: float) = Interop.reactElementWithChild "rb" value
|
|
594
|
+
static member inline rb (value: int) = Interop.reactElementWithChild "rb" value
|
|
595
|
+
static member inline rb (value: ReactElement) = Interop.reactElementWithChild "rb" value
|
|
596
|
+
static member inline rb (value: string) = Interop.reactElementWithChild "rb" value
|
|
597
|
+
static member inline rb (children: #seq<ReactElement>) = Interop.reactElementWithChildren "rb" children
|
|
598
|
+
[<Obsolete "Html.rect is obsolete, use Svg.rect instead">]
|
|
599
|
+
static member inline rect xs = Interop.createElement "rect" xs
|
|
600
|
+
[<Obsolete "Html.rect is obsolete, use Svg.rect instead">]
|
|
601
|
+
static member inline rect (children: #seq<ReactElement>) = Interop.reactElementWithChildren "rect" children
|
|
602
|
+
|
|
603
|
+
static member inline rp xs = Interop.createElement "rp" xs
|
|
604
|
+
static member inline rp (value: float) = Interop.reactElementWithChild "rp" value
|
|
605
|
+
static member inline rp (value: int) = Interop.reactElementWithChild "rp" value
|
|
606
|
+
static member inline rp (value: ReactElement) = Interop.reactElementWithChild "rp" value
|
|
607
|
+
static member inline rp (value: string) = Interop.reactElementWithChild "rp" value
|
|
608
|
+
static member inline rp (children: #seq<ReactElement>) = Interop.reactElementWithChildren "rp" children
|
|
609
|
+
|
|
610
|
+
static member inline rt xs = Interop.createElement "rt" xs
|
|
611
|
+
static member inline rt (value: float) = Interop.reactElementWithChild "rt" value
|
|
612
|
+
static member inline rt (value: int) = Interop.reactElementWithChild "rt" value
|
|
613
|
+
static member inline rt (value: ReactElement) = Interop.reactElementWithChild "rt" value
|
|
614
|
+
static member inline rt (value: string) = Interop.reactElementWithChild "rt" value
|
|
615
|
+
static member inline rt (children: #seq<ReactElement>) = Interop.reactElementWithChildren "rt" children
|
|
616
|
+
|
|
617
|
+
static member inline rtc xs = Interop.createElement "rtc" xs
|
|
618
|
+
static member inline rtc (value: float) = Interop.reactElementWithChild "rtc" value
|
|
619
|
+
static member inline rtc (value: int) = Interop.reactElementWithChild "rtc" value
|
|
620
|
+
static member inline rtc (value: ReactElement) = Interop.reactElementWithChild "rtc" value
|
|
621
|
+
static member inline rtc (value: string) = Interop.reactElementWithChild "rtc" value
|
|
622
|
+
static member inline rtc (children: #seq<ReactElement>) = Interop.reactElementWithChildren "rtc" children
|
|
623
|
+
|
|
624
|
+
static member inline ruby xs = Interop.createElement "ruby" xs
|
|
625
|
+
static member inline ruby (value: float) = Interop.reactElementWithChild "ruby" value
|
|
626
|
+
static member inline ruby (value: int) = Interop.reactElementWithChild "ruby" value
|
|
627
|
+
static member inline ruby (value: ReactElement) = Interop.reactElementWithChild "ruby" value
|
|
628
|
+
static member inline ruby (value: string) = Interop.reactElementWithChild "ruby" value
|
|
629
|
+
static member inline ruby (children: #seq<ReactElement>) = Interop.reactElementWithChildren "ruby" children
|
|
630
|
+
|
|
631
|
+
static member inline s xs = Interop.createElement "s" xs
|
|
632
|
+
static member inline s (value: float) = Interop.reactElementWithChild "s" value
|
|
633
|
+
static member inline s (value: int) = Interop.reactElementWithChild "s" value
|
|
634
|
+
static member inline s (value: ReactElement) = Interop.reactElementWithChild "s" value
|
|
635
|
+
static member inline s (value: string) = Interop.reactElementWithChild "s" value
|
|
636
|
+
static member inline s (children: #seq<ReactElement>) = Interop.reactElementWithChildren "s" children
|
|
637
|
+
|
|
638
|
+
static member inline samp xs = Interop.createElement "samp" xs
|
|
639
|
+
static member inline samp (value: float) = Interop.reactElementWithChild "samp" value
|
|
640
|
+
static member inline samp (value: int) = Interop.reactElementWithChild "samp" value
|
|
641
|
+
static member inline samp (value: ReactElement) = Interop.reactElementWithChild "samp" value
|
|
642
|
+
static member inline samp (value: string) = Interop.reactElementWithChild "samp" value
|
|
643
|
+
static member inline samp (children: #seq<ReactElement>) = Interop.reactElementWithChildren "samp" children
|
|
644
|
+
|
|
645
|
+
static member inline script xs = Interop.createElement "script" xs
|
|
646
|
+
static member inline script (children: #seq<ReactElement>) = Interop.reactElementWithChildren "script" children
|
|
647
|
+
|
|
648
|
+
static member inline section xs = Interop.createElement "section" xs
|
|
649
|
+
static member inline section (children: #seq<ReactElement>) = Interop.reactElementWithChildren "section" children
|
|
650
|
+
|
|
651
|
+
static member inline select xs = Interop.createElement "select" xs
|
|
652
|
+
static member inline select (children: #seq<ReactElement>) = Interop.reactElementWithChildren "select" children
|
|
653
|
+
[<Obsolete "Html.set is obsolete, use Svg.set instead">]
|
|
654
|
+
static member inline set xs = Interop.createElement "set" xs
|
|
655
|
+
[<Obsolete "Html.set is obsolete, use Svg.set instead">]
|
|
656
|
+
static member inline set (children: #seq<ReactElement>) = Interop.reactElementWithChildren "set" children
|
|
657
|
+
|
|
658
|
+
static member inline small xs = Interop.createElement "small" xs
|
|
659
|
+
static member inline small (value: float) = Interop.reactElementWithChild "small" value
|
|
660
|
+
static member inline small (value: int) = Interop.reactElementWithChild "small" value
|
|
661
|
+
static member inline small (value: ReactElement) = Interop.reactElementWithChild "small" value
|
|
662
|
+
static member inline small (value: string) = Interop.reactElementWithChild "small" value
|
|
663
|
+
static member inline small (children: #seq<ReactElement>) = Interop.reactElementWithChildren "small" children
|
|
664
|
+
|
|
665
|
+
static member inline source xs = Interop.createElement "source" xs
|
|
666
|
+
|
|
667
|
+
static member inline span xs = Interop.createElement "span" xs
|
|
668
|
+
static member inline span (value: float) = Interop.reactElementWithChild "span" value
|
|
669
|
+
static member inline span (value: int) = Interop.reactElementWithChild "span" value
|
|
670
|
+
static member inline span (value: ReactElement) = Interop.reactElementWithChild "span" value
|
|
671
|
+
static member inline span (value: string) = Interop.reactElementWithChild "span" value
|
|
672
|
+
static member inline span (children: #seq<ReactElement>) = Interop.reactElementWithChildren "span" children
|
|
673
|
+
[<Obsolete "Html.stop is obsolete, use Svg.stop instead">]
|
|
674
|
+
static member inline stop xs = Interop.createElement "stop" xs
|
|
675
|
+
[<Obsolete "Html.stop is obsolete, use Svg.stop instead">]
|
|
676
|
+
static member inline stop (children: #seq<ReactElement>) = Interop.reactElementWithChildren "stop" children
|
|
677
|
+
|
|
678
|
+
static member inline strong xs = Interop.createElement "strong" xs
|
|
679
|
+
static member inline strong (value: float) = Interop.reactElementWithChild "strong" value
|
|
680
|
+
static member inline strong (value: int) = Interop.reactElementWithChild "strong" value
|
|
681
|
+
static member inline strong (value: ReactElement) = Interop.reactElementWithChild "strong" value
|
|
682
|
+
static member inline strong (value: string) = Interop.reactElementWithChild "strong" value
|
|
683
|
+
static member inline strong (children: #seq<ReactElement>) = Interop.reactElementWithChildren "strong" children
|
|
684
|
+
|
|
685
|
+
static member inline style xs = Interop.createElement "style" xs
|
|
686
|
+
static member inline style (value: string) = Interop.reactElementWithChild "style" value
|
|
687
|
+
|
|
688
|
+
static member inline sub xs = Interop.createElement "sub" xs
|
|
689
|
+
static member inline sub (value: float) = Interop.reactElementWithChild "sub" value
|
|
690
|
+
static member inline sub (value: int) = Interop.reactElementWithChild "sub" value
|
|
691
|
+
static member inline sub (value: ReactElement) = Interop.reactElementWithChild "sub" value
|
|
692
|
+
static member inline sub (value: string) = Interop.reactElementWithChild "sub" value
|
|
693
|
+
static member inline sub (children: #seq<ReactElement>) = Interop.reactElementWithChildren "sub" children
|
|
694
|
+
|
|
695
|
+
static member inline summary xs = Interop.createElement "summary" xs
|
|
696
|
+
static member inline summary (value: float) = Interop.reactElementWithChild "summary" value
|
|
697
|
+
static member inline summary (value: int) = Interop.reactElementWithChild "summary" value
|
|
698
|
+
static member inline summary (value: ReactElement) = Interop.reactElementWithChild "summary" value
|
|
699
|
+
static member inline summary (value: string) = Interop.reactElementWithChild "summary" value
|
|
700
|
+
static member inline summary (children: #seq<ReactElement>) = Interop.reactElementWithChildren "summary" children
|
|
701
|
+
|
|
702
|
+
static member inline sup xs = Interop.createElement "sup" xs
|
|
703
|
+
static member inline sup (value: float) = Interop.reactElementWithChild "sup" value
|
|
704
|
+
static member inline sup (value: int) = Interop.reactElementWithChild "sup" value
|
|
705
|
+
static member inline sup (value: ReactElement) = Interop.reactElementWithChild "sup" value
|
|
706
|
+
static member inline sup (value: string) = Interop.reactElementWithChild "sup" value
|
|
707
|
+
static member inline sup (children: #seq<ReactElement>) = Interop.reactElementWithChildren "sup" children
|
|
708
|
+
|
|
709
|
+
[<Obsolete "Html.svg is obsolete, use Svg.svg instead where Svg is the entry point to all SVG related elements">]
|
|
710
|
+
static member inline svg xs = Interop.createElement "svg" xs
|
|
711
|
+
[<Obsolete "Html.svg is obsolete, use Svg.svg instead where Svg is the entry point to all SVG related elements">]
|
|
712
|
+
static member inline svg (children: #seq<ReactElement>) = Interop.reactElementWithChildren "svg" children
|
|
713
|
+
[<Obsolete "Html.switch is obsolete, use Svg.switch instead">]
|
|
714
|
+
static member inline switch xs = Interop.createElement "switch" xs
|
|
715
|
+
[<Obsolete "Html.switch is obsolete, use Svg.switch instead">]
|
|
716
|
+
static member inline switch (children: #seq<ReactElement>) = Interop.reactElementWithChildren "switch" children
|
|
717
|
+
[<Obsolete "Html.symbol is obsolete, use Svg.symbol instead">]
|
|
718
|
+
static member inline symbol xs = Interop.createElement "symbol" xs
|
|
719
|
+
[<Obsolete "Html.symbol is obsolete, use Svg.symbol instead">]
|
|
720
|
+
static member inline symbol (children: #seq<ReactElement>) = Interop.reactElementWithChildren "symbol" children
|
|
721
|
+
|
|
722
|
+
static member inline table xs = Interop.createElement "table" xs
|
|
723
|
+
static member inline table (children: #seq<ReactElement>) = Interop.reactElementWithChildren "table" children
|
|
724
|
+
|
|
725
|
+
static member inline tableBody xs = Interop.createElement "tbody" xs
|
|
726
|
+
static member inline tableBody (children: #seq<ReactElement>) = Interop.reactElementWithChildren "tbody" children
|
|
727
|
+
|
|
728
|
+
static member inline tableCell xs = Interop.createElement "td" xs
|
|
729
|
+
static member inline tableCell (children: #seq<ReactElement>) = Interop.reactElementWithChildren "td" children
|
|
730
|
+
|
|
731
|
+
static member inline tableHeader xs = Interop.createElement "th" xs
|
|
732
|
+
static member inline tableHeader (children: #seq<ReactElement>) = Interop.reactElementWithChildren "th" children
|
|
733
|
+
|
|
734
|
+
static member inline tableRow xs = Interop.createElement "tr" xs
|
|
735
|
+
static member inline tableRow (children: #seq<ReactElement>) = Interop.reactElementWithChildren "tr" children
|
|
736
|
+
|
|
737
|
+
static member inline tbody xs = Interop.createElement "tbody" xs
|
|
738
|
+
static member inline tbody (children: #seq<ReactElement>) = Interop.reactElementWithChildren "tbody" children
|
|
739
|
+
|
|
740
|
+
static member inline td xs = Interop.createElement "td" xs
|
|
741
|
+
static member inline td (value: float) = Interop.reactElementWithChild "td" value
|
|
742
|
+
static member inline td (value: int) = Interop.reactElementWithChild "td" value
|
|
743
|
+
static member inline td (value: ReactElement) = Interop.reactElementWithChild "td" value
|
|
744
|
+
static member inline td (value: string) = Interop.reactElementWithChild "td" value
|
|
745
|
+
static member inline td (children: #seq<ReactElement>) = Interop.reactElementWithChildren "td" children
|
|
746
|
+
|
|
747
|
+
static member inline template xs = Interop.createElement "template" xs
|
|
748
|
+
static member inline template (children: #seq<ReactElement>) = Interop.reactElementWithChildren "template" children
|
|
749
|
+
|
|
750
|
+
[<Obsolete "Html.text is obsolete for creating <text> SVG elements. Use Svg.text instead">]
|
|
751
|
+
static member inline text xs = Interop.createElement "text" xs
|
|
752
|
+
static member inline text (value: float) : ReactElement = unbox value
|
|
753
|
+
static member inline text (value: int) : ReactElement = unbox value
|
|
754
|
+
static member inline text (value: string) : ReactElement = unbox value
|
|
755
|
+
static member inline text (value: System.Guid) : ReactElement = unbox (string value)
|
|
756
|
+
|
|
757
|
+
static member inline textf fmt = Printf.kprintf Html.text fmt
|
|
758
|
+
|
|
759
|
+
static member inline textarea xs = Interop.createElement "textarea" xs
|
|
760
|
+
static member inline textarea (children: #seq<ReactElement>) = Interop.reactElementWithChildren "textarea" children
|
|
761
|
+
[<Obsolete "Html.textPath is obsolete, use Svg.textPath instead">]
|
|
762
|
+
static member inline textPath xs = Interop.createElement "textPath" xs
|
|
763
|
+
[<Obsolete "Html.textPath is obsolete, use Svg.textPath instead">]
|
|
764
|
+
static member inline textPath (children: #seq<ReactElement>) = Interop.reactElementWithChildren "textPath" children
|
|
765
|
+
|
|
766
|
+
static member inline tfoot xs = Interop.createElement "tfoot" xs
|
|
767
|
+
static member inline tfoot (children: #seq<ReactElement>) = Interop.reactElementWithChildren "tfoot" children
|
|
768
|
+
|
|
769
|
+
static member inline th xs = Interop.createElement "th" xs
|
|
770
|
+
static member inline th (value: float) = Interop.reactElementWithChild "th" value
|
|
771
|
+
static member inline th (value: int) = Interop.reactElementWithChild "th" value
|
|
772
|
+
static member inline th (value: ReactElement) = Interop.reactElementWithChild "th" value
|
|
773
|
+
static member inline th (value: string) = Interop.reactElementWithChild "th" value
|
|
774
|
+
static member inline th (children: #seq<ReactElement>) = Interop.reactElementWithChildren "th" children
|
|
775
|
+
|
|
776
|
+
static member inline thead xs = Interop.createElement "thead" xs
|
|
777
|
+
static member inline thead (children: #seq<ReactElement>) = Interop.reactElementWithChildren "thead" children
|
|
778
|
+
|
|
779
|
+
static member inline time xs = Interop.createElement "time" xs
|
|
780
|
+
static member inline time (children: #seq<ReactElement>) = Interop.reactElementWithChildren "time" children
|
|
781
|
+
static member inline title xs = Interop.createElement "title" xs
|
|
782
|
+
static member inline title (value: float) = Interop.reactElementWithChild "title" value
|
|
783
|
+
static member inline title (value: int) = Interop.reactElementWithChild "title" value
|
|
784
|
+
static member inline title (value: ReactElement) = Interop.reactElementWithChild "title" value
|
|
785
|
+
static member inline title (value: string) = Interop.reactElementWithChild "title" value
|
|
786
|
+
static member inline title (children: #seq<ReactElement>) = Interop.reactElementWithChildren "title" children
|
|
787
|
+
static member inline tr xs = Interop.createElement "tr" xs
|
|
788
|
+
static member inline tr (children: #seq<ReactElement>) = Interop.reactElementWithChildren "tr" children
|
|
789
|
+
|
|
790
|
+
static member inline track xs = Interop.createElement "track" xs
|
|
791
|
+
[<Obsolete "Html.tspan is obsolete, use Svg.tspan instead">]
|
|
792
|
+
static member inline tspan xs = Interop.createElement "tspan" xs
|
|
793
|
+
[<Obsolete "Html.tspan is obsolete, use Svg.tspan instead">]
|
|
794
|
+
static member inline tspan (children: #seq<ReactElement>) = Interop.reactElementWithChildren "tspan" children
|
|
795
|
+
|
|
796
|
+
static member inline u xs = Interop.createElement "u" xs
|
|
797
|
+
static member inline u (value: float) = Interop.reactElementWithChild "u" value
|
|
798
|
+
static member inline u (value: int) = Interop.reactElementWithChild "u" value
|
|
799
|
+
static member inline u (value: ReactElement) = Interop.reactElementWithChild "u" value
|
|
800
|
+
static member inline u (value: string) = Interop.reactElementWithChild "u" value
|
|
801
|
+
static member inline u (children: #seq<ReactElement>) = Interop.reactElementWithChildren "u" children
|
|
802
|
+
|
|
803
|
+
static member inline ul xs = Interop.createElement "ul" xs
|
|
804
|
+
static member inline ul (children: #seq<ReactElement>) = Interop.reactElementWithChildren "ul" children
|
|
805
|
+
|
|
806
|
+
static member inline unorderedList xs = Interop.createElement "ul" xs
|
|
807
|
+
static member inline unorderedList (children: #seq<ReactElement>) = Interop.reactElementWithChildren "ul" children
|
|
808
|
+
[<Obsolete "Html.use is obsolete, use Svg.use instead">]
|
|
809
|
+
static member inline use' xs = Interop.createElement "use" xs
|
|
810
|
+
[<Obsolete "Html.use is obsolete, use Svg.use instead">]
|
|
811
|
+
static member inline use' (children: #seq<ReactElement>) = Interop.reactElementWithChildren "use" children
|
|
812
|
+
static member inline var xs = Interop.createElement "var" xs
|
|
813
|
+
static member inline var (value: float) = Interop.reactElementWithChild "var" value
|
|
814
|
+
static member inline var (value: int) = Interop.reactElementWithChild "var" value
|
|
815
|
+
static member inline var (value: ReactElement) = Interop.reactElementWithChild "var" value
|
|
816
|
+
static member inline var (value: string) = Interop.reactElementWithChild "var" value
|
|
817
|
+
static member inline var (children: #seq<ReactElement>) = Interop.reactElementWithChildren "var" children
|
|
818
|
+
|
|
819
|
+
static member inline video xs = Interop.createElement "video" xs
|
|
820
|
+
static member inline video (children: #seq<ReactElement>) = Interop.reactElementWithChildren "video" children
|
|
821
|
+
[<Obsolete "Html.view is obsolete, use Svg.view instead">]
|
|
822
|
+
static member inline view xs = Interop.createElement "view" xs
|
|
823
|
+
[<Obsolete "Html.view is obsolete, use Svg.view instead">]
|
|
824
|
+
static member inline view (children: #seq<ReactElement>) = Interop.reactElementWithChildren "view" children
|
|
825
|
+
|
|
826
|
+
static member inline wbr xs = Interop.createElement "wbr" xs
|