@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,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: Object.getOwnPropertyDescriptor(all, name).get
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
get Svg () {
|
|
13
|
+
return Svg;
|
|
14
|
+
},
|
|
15
|
+
get Svg_$reflection () {
|
|
16
|
+
return Svg_$reflection;
|
|
17
|
+
},
|
|
18
|
+
get svg () {
|
|
19
|
+
return svg;
|
|
20
|
+
},
|
|
21
|
+
get svg_$reflection () {
|
|
22
|
+
return svg_$reflection;
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
const _Reflection = require("@fable-org/fable-library-js/Reflection.js");
|
|
26
|
+
class Svg {
|
|
27
|
+
constructor(){}
|
|
28
|
+
}
|
|
29
|
+
function Svg_$reflection() {
|
|
30
|
+
return (0, _Reflection.class_type)("Feliz.Svg", undefined, Svg);
|
|
31
|
+
}
|
|
32
|
+
class svg {
|
|
33
|
+
constructor(){}
|
|
34
|
+
}
|
|
35
|
+
function svg_$reflection() {
|
|
36
|
+
return (0, _Reflection.class_type)("Feliz.svg", undefined, svg);
|
|
37
|
+
} //# sourceMappingURL=Svg.fs.ts.map
|
|
38
|
+
|
|
39
|
+
//# sourceMappingURL=Svg.fs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":null,"sourcesContent":null,"sourceRoot":null}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
namespace Feliz
|
|
2
|
+
|
|
3
|
+
open Fable.Core
|
|
4
|
+
open Feliz.Styles
|
|
5
|
+
|
|
6
|
+
[<Erase>]
|
|
7
|
+
type textDecorationLine =
|
|
8
|
+
static member inline none : ITextDecorationLine = unbox "none"
|
|
9
|
+
static member inline underline : ITextDecorationLine = unbox "underline"
|
|
10
|
+
static member inline overline : ITextDecorationLine = unbox "overline"
|
|
11
|
+
static member inline lineThrough : ITextDecorationLine = unbox "line-through"
|
|
12
|
+
static member inline initial : ITextDecorationLine = unbox "initial"
|
|
13
|
+
static member inline inheritFromParent : ITextDecorationLine = unbox "inherit"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
namespace Feliz
|
|
2
|
+
|
|
3
|
+
open Fable.Core
|
|
4
|
+
open Feliz.Styles
|
|
5
|
+
|
|
6
|
+
[<Erase>]
|
|
7
|
+
type textDecorationStyle =
|
|
8
|
+
/// Default value. The line will display as a single line.
|
|
9
|
+
///
|
|
10
|
+
/// See example https://www.w3schools.com/cssref/playit.asp?filename=playcss_text-decoration-style&preval=solid
|
|
11
|
+
static member inline solid : ITextDecoration = unbox "solid"
|
|
12
|
+
/// The line will display as a double line.
|
|
13
|
+
///
|
|
14
|
+
/// https://www.w3schools.com/cssref/playit.asp?filename=playcss_text-decoration-style&preval=double
|
|
15
|
+
static member inline double : ITextDecoration = unbox "double"
|
|
16
|
+
/// The line will display as a dotted line.
|
|
17
|
+
///
|
|
18
|
+
/// See example https://www.w3schools.com/cssref/playit.asp?filename=playcss_text-decoration-style&preval=dotted
|
|
19
|
+
static member inline dotted : ITextDecoration = unbox "dotted"
|
|
20
|
+
/// The line will display as a dashed line.
|
|
21
|
+
///
|
|
22
|
+
/// See example https://www.w3schools.com/cssref/playit.asp?filename=playcss_text-decoration-style&preval=dashed
|
|
23
|
+
static member inline dashed : ITextDecoration = unbox "dashed"
|
|
24
|
+
/// The line will display as a wavy line.
|
|
25
|
+
///
|
|
26
|
+
/// https://www.w3schools.com/cssref/playit.asp?filename=playcss_text-decoration-style&preval=wavy
|
|
27
|
+
static member inline wavy : ITextDecoration = unbox "wavy"
|
|
28
|
+
/// Sets this property to its default value.
|
|
29
|
+
///
|
|
30
|
+
/// See example https://www.w3schools.com/cssref/playit.asp?filename=playcss_text-decoration-style&preval=initial
|
|
31
|
+
static member inline initial : ITextDecoration = unbox "initial"
|
|
32
|
+
/// Inherits this property from its parent element.
|
|
33
|
+
static member inline inheritFromParent : ITextDecoration = unbox "inherit"
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
namespace Feliz
|
|
2
|
+
|
|
3
|
+
open Feliz.Styles
|
|
4
|
+
open Fable.Core
|
|
5
|
+
|
|
6
|
+
/// The transform CSS property lets you rotate, scale, skew, or translate an element.
|
|
7
|
+
/// It modifies the coordinate space of the CSS [visual formatting model](https://developer.mozilla.org/en-US/docs/Web/CSS/Visual_formatting_model)
|
|
8
|
+
[<Erase>]
|
|
9
|
+
type transform =
|
|
10
|
+
/// Defines that there should be no transformation.
|
|
11
|
+
static member inline none = unbox<ITransformProperty> "none"
|
|
12
|
+
/// Defines a 2D transformation, using a matrix of six values.
|
|
13
|
+
static member inline matrix(x1: int, y1: int, z1: int, x2: int, y2: int, z2: int) =
|
|
14
|
+
unbox<ITransformProperty> (
|
|
15
|
+
"matrix(" +
|
|
16
|
+
(unbox<string> x1) + "," +
|
|
17
|
+
(unbox<string> y1) + "," +
|
|
18
|
+
(unbox<string> z1) + "," +
|
|
19
|
+
(unbox<string> x2) + "," +
|
|
20
|
+
(unbox<string> y2) + "," +
|
|
21
|
+
(unbox<string> z2) + ")"
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
/// Defines a 2D translation.
|
|
25
|
+
static member inline translate(x: int, y: int) =
|
|
26
|
+
unbox<ITransformProperty> (
|
|
27
|
+
"translate(" + (unbox<string> x) + "px," + (unbox<string> y) + "px)"
|
|
28
|
+
)
|
|
29
|
+
/// Defines a 2D translation.
|
|
30
|
+
static member inline translate(x: float, y: float) =
|
|
31
|
+
unbox<ITransformProperty> (
|
|
32
|
+
"translate(" + (unbox<string> x) + "px," + (unbox<string> y) + "px)"
|
|
33
|
+
)
|
|
34
|
+
/// Defines a 2D translation.
|
|
35
|
+
static member inline translate(x: ICssUnit, y: ICssUnit) =
|
|
36
|
+
unbox<ITransformProperty> (
|
|
37
|
+
"translate(" + (unbox<string> x) + "," + (unbox<string> y) + ")"
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
/// Defines a 3D translation.
|
|
41
|
+
static member inline translate3D(x: int, y: int, z: int) =
|
|
42
|
+
unbox<ITransformProperty> (
|
|
43
|
+
"translate3d(" + (unbox<string> x) + "px," + (unbox<string> y) + "px," + (unbox<string> z) + "px)"
|
|
44
|
+
)
|
|
45
|
+
/// Defines a 3D translation.
|
|
46
|
+
static member inline translate3D(x: float, y: float, z: float) =
|
|
47
|
+
unbox<ITransformProperty> (
|
|
48
|
+
"translate3d(" + (unbox<string> x) + "px," + (unbox<string> y) + "px," + (unbox<string> z) + "px)"
|
|
49
|
+
)
|
|
50
|
+
/// Defines a 3D translation.
|
|
51
|
+
static member inline translate3D(x: ICssUnit, y: ICssUnit, z: ICssUnit) =
|
|
52
|
+
unbox<ITransformProperty> (
|
|
53
|
+
"translate3d(" + (unbox<string> x) + "," + (unbox<string> y) + "," + (unbox<string> z) + ")"
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
/// Defines a translation, using only the value for the X-axis.
|
|
57
|
+
static member inline translateX(x: int) =
|
|
58
|
+
unbox<ITransformProperty> ("translateX(" + (unbox<string> x) + "px)")
|
|
59
|
+
/// Defines a translation, using only the value for the X-axis.
|
|
60
|
+
static member inline translateX(x: float) =
|
|
61
|
+
unbox<ITransformProperty> ("translateX(" + (unbox<string> x) + "px)")
|
|
62
|
+
/// Defines a translation, using only the value for the X-axis.
|
|
63
|
+
static member inline translateX(x: ICssUnit) =
|
|
64
|
+
unbox<ITransformProperty> ("translateX(" + (unbox<string> x) + ")")
|
|
65
|
+
/// Defines a translation, using only the value for the Y-axis.
|
|
66
|
+
static member inline translateY(y: int) =
|
|
67
|
+
unbox<ITransformProperty> ("translateY(" + (unbox<string> y) + "px)")
|
|
68
|
+
/// Defines a translation, using only the value for the Y-axis.
|
|
69
|
+
static member inline translateY(y: float) =
|
|
70
|
+
unbox<ITransformProperty> ("translateY(" + (unbox<string> y) + "px)")
|
|
71
|
+
/// Defines a translation, using only the value for the Y-axis.
|
|
72
|
+
static member inline translateY(y: ICssUnit) =
|
|
73
|
+
unbox<ITransformProperty> ("translateY(" + (unbox<string> y) + ")")
|
|
74
|
+
/// Defines a 3D translation, using only the value for the Z-axis.
|
|
75
|
+
static member inline translateZ(z: int) =
|
|
76
|
+
unbox<ITransformProperty> ("translateZ(" + (unbox<string> z) + "px)")
|
|
77
|
+
/// Defines a 3D translation, using only the value for the Z-axis.
|
|
78
|
+
static member inline translateZ(z: float) =
|
|
79
|
+
unbox<ITransformProperty> ("translateZ(" + (unbox<string> z) + "px)")
|
|
80
|
+
/// Defines a 3D translation, using only the value for the Z-axis.
|
|
81
|
+
static member inline translateZ(z: ICssUnit) =
|
|
82
|
+
unbox<ITransformProperty> ("translateZ(" + (unbox<string> z) + ")")
|
|
83
|
+
|
|
84
|
+
/// Defines a 2D scale transformation.
|
|
85
|
+
static member inline scale(x: int, y: int) =
|
|
86
|
+
unbox<ITransformProperty> (
|
|
87
|
+
"scale(" + (unbox<string> x) + "," + (unbox<string> y) + ")"
|
|
88
|
+
)
|
|
89
|
+
/// Defines a 2D scale transformation.
|
|
90
|
+
static member inline scale(x: float, y: float) =
|
|
91
|
+
unbox<ITransformProperty> (
|
|
92
|
+
"scale(" + (unbox<string> x) + "," + (unbox<string> y) + ")"
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
/// Defines a scale transformation.
|
|
96
|
+
static member inline scale(n: int) =
|
|
97
|
+
unbox<ITransformProperty> (
|
|
98
|
+
"scale(" + (unbox<string> n) + ")"
|
|
99
|
+
)
|
|
100
|
+
|
|
101
|
+
/// Defines a scale transformation.
|
|
102
|
+
static member inline scale(n: float) =
|
|
103
|
+
unbox<ITransformProperty> (
|
|
104
|
+
"scale(" + (unbox<string> n) + ")"
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
/// Defines a 3D scale transformation.
|
|
108
|
+
static member inline scale3D(x: int, y: int, z: int) =
|
|
109
|
+
unbox<ITransformProperty> (
|
|
110
|
+
"scale3d(" + (unbox<string> x) + "," + (unbox<string> y) + "," + (unbox<string> z) + ")"
|
|
111
|
+
)
|
|
112
|
+
/// Defines a 3D scale transformation.
|
|
113
|
+
static member inline scale3D(x: float, y: float, z: float) =
|
|
114
|
+
unbox<ITransformProperty> (
|
|
115
|
+
"scale3d(" + (unbox<string> x) + "," + (unbox<string> y) + "," + (unbox<string> z) + ")"
|
|
116
|
+
)
|
|
117
|
+
|
|
118
|
+
/// Defines a scale transformation by giving a value for the X-axis.
|
|
119
|
+
static member inline scaleX(x: int) =
|
|
120
|
+
unbox<ITransformProperty> ("scaleX(" + (unbox<string> x) + ")")
|
|
121
|
+
|
|
122
|
+
/// Defines a scale transformation by giving a value for the X-axis.
|
|
123
|
+
static member inline scaleX(x: float) =
|
|
124
|
+
unbox<ITransformProperty> ("scaleX(" + (unbox<string> x) + ")")
|
|
125
|
+
/// Defines a scale transformation by giving a value for the Y-axis.
|
|
126
|
+
static member inline scaleY(y: int) =
|
|
127
|
+
unbox<ITransformProperty> ("scaleY(" + (unbox<string> y) + ")")
|
|
128
|
+
/// Defines a scale transformation by giving a value for the Y-axis.
|
|
129
|
+
static member inline scaleY(y: float) =
|
|
130
|
+
unbox<ITransformProperty> ("scaleY(" + (unbox<string> y) + ")")
|
|
131
|
+
/// Defines a 3D translation, using only the value for the Z-axis.
|
|
132
|
+
static member inline scaleZ(z: int) =
|
|
133
|
+
unbox<ITransformProperty> ("scaleZ(" + (unbox<string> z) + ")")
|
|
134
|
+
/// Defines a 3D translation, using only the value for the Z-axis.
|
|
135
|
+
static member inline scaleZ(z: float) =
|
|
136
|
+
unbox<ITransformProperty> ("scaleZ(" + (unbox<string> z) + ")")
|
|
137
|
+
/// Defines a 2D rotation, the angle is specified in the parameter.
|
|
138
|
+
static member inline rotate(deg: int) =
|
|
139
|
+
unbox<ITransformProperty> ("rotate(" + (unbox<string> deg) + "deg)")
|
|
140
|
+
/// Defines a 2D rotation, the angle is specified in the parameter.
|
|
141
|
+
static member inline rotate(deg: float) =
|
|
142
|
+
unbox<ITransformProperty> ("rotate(" + (unbox<string> deg) + "deg)")
|
|
143
|
+
/// Defines a 3D rotation along the X-axis.
|
|
144
|
+
static member inline rotateX(deg: float) =
|
|
145
|
+
unbox<ITransformProperty> ("rotateX(" + (unbox<string> deg) + "deg)")
|
|
146
|
+
/// Defines a 3D rotation along the X-axis.
|
|
147
|
+
static member inline rotateX(deg: int) =
|
|
148
|
+
unbox<ITransformProperty> ("rotateX(" + (unbox<string> deg) + "deg)")
|
|
149
|
+
/// Defines a 3D rotation along the Y-axis.
|
|
150
|
+
static member inline rotateY(deg: float) =
|
|
151
|
+
unbox<ITransformProperty> ("rotateY(" + (unbox<string> deg) + "deg)")
|
|
152
|
+
/// Defines a 3D rotation along the Y-axis.
|
|
153
|
+
static member inline rotateY(deg: int) =
|
|
154
|
+
unbox<ITransformProperty> ("rotateY(" + (unbox<string> deg) + "deg)")
|
|
155
|
+
/// Defines a 3D rotation along the Z-axis.
|
|
156
|
+
static member inline rotateZ(deg: float) =
|
|
157
|
+
unbox<ITransformProperty> ("rotateZ(" + (unbox<string> deg) + "deg)")
|
|
158
|
+
/// Defines a 3D rotation along the Z-axis.
|
|
159
|
+
static member inline rotateZ(deg: int) =
|
|
160
|
+
unbox<ITransformProperty> ("rotateZ(" + (unbox<string> deg) + "deg)")
|
|
161
|
+
/// Defines a 2D skew transformation along the X- and the Y-axis.
|
|
162
|
+
static member inline skew(xAngle: int, yAngle: int) =
|
|
163
|
+
unbox<ITransformProperty> ("skew(" + (unbox<string> xAngle) + "deg," + (unbox<string> yAngle) + "deg)")
|
|
164
|
+
/// Defines a 2D skew transformation along the X- and the Y-axis.
|
|
165
|
+
static member inline skew(xAngle: float, yAngle: float) =
|
|
166
|
+
unbox<ITransformProperty> ("skew(" + (unbox<string> xAngle) + "deg," + (unbox<string> yAngle) + "deg)")
|
|
167
|
+
/// Defines a 2D skew transformation along the X-axis.
|
|
168
|
+
static member inline skewX(xAngle: int) =
|
|
169
|
+
unbox<ITransformProperty> ("skewX(" + (unbox<string> xAngle) + "deg)")
|
|
170
|
+
/// Defines a 2D skew transformation along the X-axis.
|
|
171
|
+
static member inline skewX(xAngle: float) =
|
|
172
|
+
unbox<ITransformProperty> ("skewX(" + (unbox<string> xAngle) + "deg)")
|
|
173
|
+
/// Defines a 2D skew transformation along the Y-axis.
|
|
174
|
+
static member inline skewY(xAngle: int) =
|
|
175
|
+
unbox<ITransformProperty> ("skewY(" + (unbox<string> xAngle) + "deg)")
|
|
176
|
+
/// Defines a 2D skew transformation along the Y-axis.
|
|
177
|
+
static member inline skewY(xAngle: float) =
|
|
178
|
+
unbox<ITransformProperty> ("skewY(" + (unbox<string> xAngle) + "deg)")
|
|
179
|
+
/// Defines a perspective view for a 3D transformed element.
|
|
180
|
+
static member inline perspective(n: int) =
|
|
181
|
+
unbox<ITransformProperty> ("perspective(" + (unbox<string> n) + ")")
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
namespace Feliz
|
|
2
|
+
|
|
3
|
+
open Fable.Core
|
|
4
|
+
open Feliz.Styles
|
|
5
|
+
|
|
6
|
+
[<Erase>]
|
|
7
|
+
type origin =
|
|
8
|
+
static member inline left : ITransformOrigin = unbox "left"
|
|
9
|
+
static member inline center : ITransformOrigin = unbox "center"
|
|
10
|
+
static member inline right : ITransformOrigin = unbox "right"
|
|
11
|
+
static member inline top : ITransformOrigin = unbox "top"
|
|
12
|
+
static member inline bottom : ITransformOrigin = unbox "bottom"
|
|
13
|
+
|
|
14
|
+
static member inline percentage (value: int) : ITransformOrigin =
|
|
15
|
+
unbox (unbox<string> value + "%")
|
|
16
|
+
static member inline percentage (value: float) : ITransformOrigin =
|
|
17
|
+
unbox (unbox<string> value + "%")
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
namespace Feliz
|
|
2
|
+
|
|
3
|
+
open Fable.Core
|
|
4
|
+
open Feliz.Styles
|
|
5
|
+
|
|
6
|
+
[<Erase>]
|
|
7
|
+
type transitionProperty =
|
|
8
|
+
static member inline all = unbox<ITransitionProperty> "all"
|
|
9
|
+
static member inline backdropFilter = unbox<ITransitionProperty> "backdrop-filter"
|
|
10
|
+
static member inline background = unbox<ITransitionProperty> "background"
|
|
11
|
+
static member inline backgroundColor = unbox<ITransitionProperty> "background-color"
|
|
12
|
+
static member inline backgroundPosition = unbox<ITransitionProperty> "background-position"
|
|
13
|
+
static member inline backgroundSize = unbox<ITransitionProperty> "background-size"
|
|
14
|
+
static member inline border = unbox<ITransitionProperty> "border"
|
|
15
|
+
static member inline borderBottom = unbox<ITransitionProperty> "border-bottom"
|
|
16
|
+
static member inline borderBottomColor = unbox<ITransitionProperty> "border-bottom-color"
|
|
17
|
+
static member inline borderBottomLeftRadius = unbox<ITransitionProperty> "border-bottom-left-radius"
|
|
18
|
+
static member inline borderBottomRightRadius = unbox<ITransitionProperty> "border-bottom-right-radius"
|
|
19
|
+
static member inline borderBottomWidth = unbox<ITransitionProperty> "border-bottom-width"
|
|
20
|
+
static member inline borderColor = unbox<ITransitionProperty> "border-color"
|
|
21
|
+
static member inline borderEndEndRadius = unbox<ITransitionProperty> "border-end-end-radius"
|
|
22
|
+
static member inline borderEndStartRadius = unbox<ITransitionProperty> "border-end-start-radius"
|
|
23
|
+
static member inline borderLeft = unbox<ITransitionProperty> "border-left"
|
|
24
|
+
static member inline borderLeftColor = unbox<ITransitionProperty> "border-left-color"
|
|
25
|
+
static member inline borderLeftWidth = unbox<ITransitionProperty> "border-left-width"
|
|
26
|
+
static member inline borderRadius = unbox<ITransitionProperty> "border-radius"
|
|
27
|
+
static member inline borderRight = unbox<ITransitionProperty> "border-right"
|
|
28
|
+
static member inline borderRightColor = unbox<ITransitionProperty> "border-right-color"
|
|
29
|
+
static member inline borderRightWidth = unbox<ITransitionProperty> "border-right-width"
|
|
30
|
+
static member inline borderStartEndRadius = unbox<ITransitionProperty> "border-start-end-radius"
|
|
31
|
+
static member inline borderStartStartRadius = unbox<ITransitionProperty> "border-start-start-radius"
|
|
32
|
+
static member inline borderTop = unbox<ITransitionProperty> "border-top"
|
|
33
|
+
static member inline borderTopColor = unbox<ITransitionProperty> "border-top-color"
|
|
34
|
+
static member inline borderTopLeftRadius = unbox<ITransitionProperty> "border-top-left-radius"
|
|
35
|
+
static member inline borderTopRightRadius = unbox<ITransitionProperty> "border-top-right-radius"
|
|
36
|
+
static member inline borderTopWidth = unbox<ITransitionProperty> "border-top-width"
|
|
37
|
+
static member inline borderWidth = unbox<ITransitionProperty> "border-width"
|
|
38
|
+
static member inline bottom = unbox<ITransitionProperty> "bottom"
|
|
39
|
+
static member inline boxShadow = unbox<ITransitionProperty> "box-shadow"
|
|
40
|
+
static member inline caretColor = unbox<ITransitionProperty> "caret-color"
|
|
41
|
+
static member inline clip = unbox<ITransitionProperty> "clip"
|
|
42
|
+
static member inline clipPath = unbox<ITransitionProperty> "clip-path"
|
|
43
|
+
static member inline color = unbox<ITransitionProperty> "color"
|
|
44
|
+
static member inline columnCount = unbox<ITransitionProperty> "column-count"
|
|
45
|
+
static member inline columnGap = unbox<ITransitionProperty> "column-gap"
|
|
46
|
+
static member inline columnRule = unbox<ITransitionProperty> "column-rule"
|
|
47
|
+
static member inline columnRuleColor = unbox<ITransitionProperty> "column-rule-color"
|
|
48
|
+
static member inline columnRuleWidth = unbox<ITransitionProperty> "column-rule-width"
|
|
49
|
+
static member inline columnWidth = unbox<ITransitionProperty> "column-width"
|
|
50
|
+
static member inline columns = unbox<ITransitionProperty> "columns"
|
|
51
|
+
static member inline filter = unbox<ITransitionProperty> "filter"
|
|
52
|
+
static member inline flex = unbox<ITransitionProperty> "flex"
|
|
53
|
+
static member inline flexBasis = unbox<ITransitionProperty> "flex-basis"
|
|
54
|
+
static member inline flexGrow = unbox<ITransitionProperty> "flex-grow"
|
|
55
|
+
static member inline flexShrink = unbox<ITransitionProperty> "flex-shrink"
|
|
56
|
+
static member inline font = unbox<ITransitionProperty> "font"
|
|
57
|
+
static member inline fontSize = unbox<ITransitionProperty> "font-size"
|
|
58
|
+
static member inline fontSizeAdjust = unbox<ITransitionProperty> "font-size-adjust"
|
|
59
|
+
static member inline fontStretch = unbox<ITransitionProperty> "font-stretch"
|
|
60
|
+
static member inline fontVariationSettings = unbox<ITransitionProperty> "font-variation-settings"
|
|
61
|
+
static member inline fontWeight = unbox<ITransitionProperty> "font-weight"
|
|
62
|
+
static member inline gap = unbox<ITransitionProperty> "gap"
|
|
63
|
+
static member inline gridColumnGap = unbox<ITransitionProperty> "grid-column-gap"
|
|
64
|
+
static member inline gridGap = unbox<ITransitionProperty> "grid-gap"
|
|
65
|
+
static member inline gridRowGap = unbox<ITransitionProperty> "grid-row-gap"
|
|
66
|
+
static member inline gridTemplateColumns = unbox<ITransitionProperty> "grid-template-columns"
|
|
67
|
+
static member inline gridTemplateRows = unbox<ITransitionProperty> "grid-template-rows"
|
|
68
|
+
static member inline height = unbox<ITransitionProperty> "height"
|
|
69
|
+
static member inline inset = unbox<ITransitionProperty> "inset"
|
|
70
|
+
static member inline insetBlock = unbox<ITransitionProperty> "inset-block"
|
|
71
|
+
static member inline insetBlockEnd = unbox<ITransitionProperty> "inset-block-end"
|
|
72
|
+
static member inline insetBlockStart = unbox<ITransitionProperty> "inset-block-start"
|
|
73
|
+
static member inline insetInline = unbox<ITransitionProperty> "inset-inline"
|
|
74
|
+
static member inline insetInlineEnd = unbox<ITransitionProperty> "inset-inline-end"
|
|
75
|
+
static member inline insetInlineStart = unbox<ITransitionProperty> "inset-inline-start"
|
|
76
|
+
static member inline left = unbox<ITransitionProperty> "left"
|
|
77
|
+
static member inline letterSpacing = unbox<ITransitionProperty> "letter-spacing"
|
|
78
|
+
static member inline lineClamp = unbox<ITransitionProperty> "line-clamp"
|
|
79
|
+
static member inline lineHeight = unbox<ITransitionProperty> "line-height"
|
|
80
|
+
static member inline margin = unbox<ITransitionProperty> "margin"
|
|
81
|
+
static member inline marginBottom = unbox<ITransitionProperty> "margin-bottom"
|
|
82
|
+
static member inline marginLeft = unbox<ITransitionProperty> "margin-left"
|
|
83
|
+
static member inline marginRight = unbox<ITransitionProperty> "margin-right"
|
|
84
|
+
static member inline marginTop = unbox<ITransitionProperty> "margin-top"
|
|
85
|
+
static member inline mask = unbox<ITransitionProperty> "mask"
|
|
86
|
+
static member inline maskBorder = unbox<ITransitionProperty> "mask-border"
|
|
87
|
+
static member inline maskPosition = unbox<ITransitionProperty> "mask-position"
|
|
88
|
+
static member inline maskSize = unbox<ITransitionProperty> "mask-size"
|
|
89
|
+
static member inline maxHeight = unbox<ITransitionProperty> "max-height"
|
|
90
|
+
static member inline maxLines = unbox<ITransitionProperty> "max-lines"
|
|
91
|
+
static member inline maxWidth = unbox<ITransitionProperty> "max-width"
|
|
92
|
+
static member inline minHeight = unbox<ITransitionProperty> "min-height"
|
|
93
|
+
static member inline minWidth = unbox<ITransitionProperty> "min-width"
|
|
94
|
+
static member inline objectPosition = unbox<ITransitionProperty> "object-position"
|
|
95
|
+
static member inline offset = unbox<ITransitionProperty> "offset"
|
|
96
|
+
static member inline offsetAnchor = unbox<ITransitionProperty> "offset-anchor"
|
|
97
|
+
static member inline offsetDistance = unbox<ITransitionProperty> "offset-distance"
|
|
98
|
+
static member inline offsetPath = unbox<ITransitionProperty> "offset-path"
|
|
99
|
+
static member inline offsetPosition = unbox<ITransitionProperty> "offset-position"
|
|
100
|
+
static member inline offsetRotate = unbox<ITransitionProperty> "offset-rotate"
|
|
101
|
+
static member inline opacity = unbox<ITransitionProperty> "opacity"
|
|
102
|
+
static member inline order = unbox<ITransitionProperty> "order"
|
|
103
|
+
static member inline outline = unbox<ITransitionProperty> "outline"
|
|
104
|
+
static member inline outlineColor = unbox<ITransitionProperty> "outline-color"
|
|
105
|
+
static member inline outlineOffset = unbox<ITransitionProperty> "outline-offset"
|
|
106
|
+
static member inline outlineWidth = unbox<ITransitionProperty> "outline-width"
|
|
107
|
+
static member inline padding = unbox<ITransitionProperty> "padding"
|
|
108
|
+
static member inline paddingBottom = unbox<ITransitionProperty> "padding-bottom"
|
|
109
|
+
static member inline paddingLeft = unbox<ITransitionProperty> "padding-left"
|
|
110
|
+
static member inline paddingRight = unbox<ITransitionProperty> "padding-right"
|
|
111
|
+
static member inline paddingTop = unbox<ITransitionProperty> "padding-top"
|
|
112
|
+
static member inline perspective = unbox<ITransitionProperty> "perspective"
|
|
113
|
+
static member inline perspectiveOrigin = unbox<ITransitionProperty> "perspective-origin"
|
|
114
|
+
static member inline right = unbox<ITransitionProperty> "right"
|
|
115
|
+
static member inline rotate = unbox<ITransitionProperty> "rotate"
|
|
116
|
+
static member inline rowGap = unbox<ITransitionProperty> "row-gap"
|
|
117
|
+
static member inline scale = unbox<ITransitionProperty> "scale"
|
|
118
|
+
static member inline scrollMargin = unbox<ITransitionProperty> "scroll-margin"
|
|
119
|
+
static member inline scrollMarginBlock = unbox<ITransitionProperty> "scroll-margin-block"
|
|
120
|
+
static member inline scrollMarginBlockEnd = unbox<ITransitionProperty> "scroll-margin-block-end"
|
|
121
|
+
static member inline scrollMarginBlockStart = unbox<ITransitionProperty> "scroll-margin-block-start"
|
|
122
|
+
static member inline scrollMarginBottom = unbox<ITransitionProperty> "scroll-margin-bottom"
|
|
123
|
+
static member inline scrollMarginInline = unbox<ITransitionProperty> "scroll-margin-inline"
|
|
124
|
+
static member inline scrollMarginInlineEnd = unbox<ITransitionProperty> "scroll-margin-inline-end"
|
|
125
|
+
static member inline scrollMarginInlineStart = unbox<ITransitionProperty> "scroll-margin-inline-start"
|
|
126
|
+
static member inline scrollMarginLeft = unbox<ITransitionProperty> "scroll-margin-left"
|
|
127
|
+
static member inline scrollMarginRight = unbox<ITransitionProperty> "scroll-margin-right"
|
|
128
|
+
static member inline scrollMarginTop = unbox<ITransitionProperty> "scroll-margin-top"
|
|
129
|
+
static member inline scrollPadding = unbox<ITransitionProperty> "scroll-padding"
|
|
130
|
+
static member inline scrollPaddingBlock = unbox<ITransitionProperty> "scroll-padding-block"
|
|
131
|
+
static member inline scrollPaddingBlockEnd = unbox<ITransitionProperty> "scroll-padding-block-end"
|
|
132
|
+
static member inline scrollPaddingBlockStart = unbox<ITransitionProperty> "scroll-padding-block-start"
|
|
133
|
+
static member inline scrollPaddingBottom = unbox<ITransitionProperty> "scroll-padding-bottom"
|
|
134
|
+
static member inline scrollPaddingInline = unbox<ITransitionProperty> "scroll-padding-inline"
|
|
135
|
+
static member inline scrollPaddingInlineEnd = unbox<ITransitionProperty> "scroll-padding-inline-end"
|
|
136
|
+
static member inline scrollPaddingInlineStart = unbox<ITransitionProperty> "scroll-padding-inline-start"
|
|
137
|
+
static member inline scrollPaddingLeft = unbox<ITransitionProperty> "scroll-padding-left"
|
|
138
|
+
static member inline scrollPaddingRight = unbox<ITransitionProperty> "scroll-padding-right"
|
|
139
|
+
static member inline scrollPaddingTop = unbox<ITransitionProperty> "scroll-padding-top"
|
|
140
|
+
static member inline scrollSnapCoordinate = unbox<ITransitionProperty> "scroll-snap-coordinate"
|
|
141
|
+
static member inline scrollSnapDestination = unbox<ITransitionProperty> "scroll-snap-destination"
|
|
142
|
+
static member inline scrollbarColor = unbox<ITransitionProperty> "scrollbar-color"
|
|
143
|
+
static member inline shapeImageThreshold = unbox<ITransitionProperty> "shape-image-threshold"
|
|
144
|
+
static member inline shapeMargin = unbox<ITransitionProperty> "shape-margin"
|
|
145
|
+
static member inline shapeOutside = unbox<ITransitionProperty> "shape-outside"
|
|
146
|
+
static member inline tabSize = unbox<ITransitionProperty> "tab-size"
|
|
147
|
+
static member inline textDecoration = unbox<ITransitionProperty> "text-decoration"
|
|
148
|
+
static member inline textDecorationColor = unbox<ITransitionProperty> "text-decoration-color"
|
|
149
|
+
static member inline textEmphasis = unbox<ITransitionProperty> "text-emphasis"
|
|
150
|
+
static member inline textEmphasisColor = unbox<ITransitionProperty> "text-emphasis-color"
|
|
151
|
+
static member inline textIndent = unbox<ITransitionProperty> "text-indent"
|
|
152
|
+
static member inline textShadow = unbox<ITransitionProperty> "text-shadow"
|
|
153
|
+
static member inline top = unbox<ITransitionProperty> "top"
|
|
154
|
+
static member inline transform = unbox<ITransitionProperty> "transform"
|
|
155
|
+
static member inline transformOrigin = unbox<ITransitionProperty> "transform-origin"
|
|
156
|
+
static member inline translate = unbox<ITransitionProperty> "translate"
|
|
157
|
+
static member inline verticalAlign = unbox<ITransitionProperty> "vertical-align"
|
|
158
|
+
static member inline visibility = unbox<ITransitionProperty> "visibility"
|
|
159
|
+
static member inline width = unbox<ITransitionProperty> "width"
|
|
160
|
+
static member inline wordSpacing = unbox<ITransitionProperty> "word-spacing"
|
|
161
|
+
static member inline zIndex = unbox<ITransitionProperty> "z-index"
|
|
162
|
+
static member inline zoom = unbox<ITransitionProperty> "zoom"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
namespace Feliz
|
|
2
|
+
|
|
3
|
+
/// Describes an element property
|
|
4
|
+
type IReactProperty = interface end
|
|
5
|
+
|
|
6
|
+
/// Describes style attribute
|
|
7
|
+
type IStyleAttribute = interface end
|
|
8
|
+
|
|
9
|
+
/// Describes an SVG attribute
|
|
10
|
+
type ISvgAttribute = interface end
|
|
11
|
+
|
|
12
|
+
type ReactElement = Fable.React.ReactElement
|
|
13
|
+
type IRefValue<'T> = Fable.React.IRefValue<'T>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":null,"sourcesContent":null,"sourceRoot":null}
|