@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,355 @@
|
|
|
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 CaseStrategy () {
|
|
13
|
+
return CaseStrategy;
|
|
14
|
+
},
|
|
15
|
+
get CaseStrategy_$reflection () {
|
|
16
|
+
return CaseStrategy_$reflection;
|
|
17
|
+
},
|
|
18
|
+
get CaseStrategy_CamelCase () {
|
|
19
|
+
return CaseStrategy_CamelCase;
|
|
20
|
+
},
|
|
21
|
+
get CaseStrategy_PascalCase () {
|
|
22
|
+
return CaseStrategy_PascalCase;
|
|
23
|
+
},
|
|
24
|
+
get CaseStrategy_SnakeCase () {
|
|
25
|
+
return CaseStrategy_SnakeCase;
|
|
26
|
+
},
|
|
27
|
+
get ErrorReason () {
|
|
28
|
+
return ErrorReason;
|
|
29
|
+
},
|
|
30
|
+
get ErrorReason_$reflection () {
|
|
31
|
+
return ErrorReason_$reflection;
|
|
32
|
+
},
|
|
33
|
+
get ErrorReason_BadField () {
|
|
34
|
+
return ErrorReason_BadField;
|
|
35
|
+
},
|
|
36
|
+
get ErrorReason_BadOneOf () {
|
|
37
|
+
return ErrorReason_BadOneOf;
|
|
38
|
+
},
|
|
39
|
+
get ErrorReason_BadPath () {
|
|
40
|
+
return ErrorReason_BadPath;
|
|
41
|
+
},
|
|
42
|
+
get ErrorReason_BadPrimitive () {
|
|
43
|
+
return ErrorReason_BadPrimitive;
|
|
44
|
+
},
|
|
45
|
+
get ErrorReason_BadPrimitiveExtra () {
|
|
46
|
+
return ErrorReason_BadPrimitiveExtra;
|
|
47
|
+
},
|
|
48
|
+
get ErrorReason_BadType () {
|
|
49
|
+
return ErrorReason_BadType;
|
|
50
|
+
},
|
|
51
|
+
get ErrorReason_FailMessage () {
|
|
52
|
+
return ErrorReason_FailMessage;
|
|
53
|
+
},
|
|
54
|
+
get ErrorReason_TooSmallArray () {
|
|
55
|
+
return ErrorReason_TooSmallArray;
|
|
56
|
+
},
|
|
57
|
+
get ExtraCoders () {
|
|
58
|
+
return ExtraCoders;
|
|
59
|
+
},
|
|
60
|
+
get ExtraCoders_$reflection () {
|
|
61
|
+
return ExtraCoders_$reflection;
|
|
62
|
+
},
|
|
63
|
+
get Util_Cache$1 () {
|
|
64
|
+
return Util_Cache$1;
|
|
65
|
+
},
|
|
66
|
+
get Util_Cache$1_$ctor () {
|
|
67
|
+
return Util_Cache$1_$ctor;
|
|
68
|
+
},
|
|
69
|
+
get Util_Cache$1_$reflection () {
|
|
70
|
+
return Util_Cache$1_$reflection;
|
|
71
|
+
},
|
|
72
|
+
get Util_Cache$1__GetOrAdd_43981464 () {
|
|
73
|
+
return Util_Cache$1__GetOrAdd_43981464;
|
|
74
|
+
},
|
|
75
|
+
get Util_CachedDecoders () {
|
|
76
|
+
return Util_CachedDecoders;
|
|
77
|
+
},
|
|
78
|
+
get Util_CachedEncoders () {
|
|
79
|
+
return Util_CachedEncoders;
|
|
80
|
+
},
|
|
81
|
+
get Util_Casing_convert () {
|
|
82
|
+
return Util_Casing_convert;
|
|
83
|
+
},
|
|
84
|
+
get Util_Casing_lowerFirst () {
|
|
85
|
+
return Util_Casing_lowerFirst;
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
const _Types = require("@fable-org/fable-library-js/Types.js");
|
|
89
|
+
const _Reflection = require("@fable-org/fable-library-js/Reflection.js");
|
|
90
|
+
const _Result = require("@fable-org/fable-library-js/Result.js");
|
|
91
|
+
const _Util = require("@fable-org/fable-library-js/Util.js");
|
|
92
|
+
const _MapUtil = require("@fable-org/fable-library-js/MapUtil.js");
|
|
93
|
+
const _RegExp = require("@fable-org/fable-library-js/RegExp.js");
|
|
94
|
+
function ErrorReason_BadPrimitive(Item1, Item2) {
|
|
95
|
+
return new ErrorReason(0, [
|
|
96
|
+
Item1,
|
|
97
|
+
Item2
|
|
98
|
+
]);
|
|
99
|
+
}
|
|
100
|
+
function ErrorReason_BadPrimitiveExtra(Item1, Item2, Item3) {
|
|
101
|
+
return new ErrorReason(1, [
|
|
102
|
+
Item1,
|
|
103
|
+
Item2,
|
|
104
|
+
Item3
|
|
105
|
+
]);
|
|
106
|
+
}
|
|
107
|
+
function ErrorReason_BadType(Item1, Item2) {
|
|
108
|
+
return new ErrorReason(2, [
|
|
109
|
+
Item1,
|
|
110
|
+
Item2
|
|
111
|
+
]);
|
|
112
|
+
}
|
|
113
|
+
function ErrorReason_BadField(Item1, Item2) {
|
|
114
|
+
return new ErrorReason(3, [
|
|
115
|
+
Item1,
|
|
116
|
+
Item2
|
|
117
|
+
]);
|
|
118
|
+
}
|
|
119
|
+
function ErrorReason_BadPath(Item1, Item2, Item3) {
|
|
120
|
+
return new ErrorReason(4, [
|
|
121
|
+
Item1,
|
|
122
|
+
Item2,
|
|
123
|
+
Item3
|
|
124
|
+
]);
|
|
125
|
+
}
|
|
126
|
+
function ErrorReason_TooSmallArray(Item1, Item2) {
|
|
127
|
+
return new ErrorReason(5, [
|
|
128
|
+
Item1,
|
|
129
|
+
Item2
|
|
130
|
+
]);
|
|
131
|
+
}
|
|
132
|
+
function ErrorReason_FailMessage(Item) {
|
|
133
|
+
return new ErrorReason(6, [
|
|
134
|
+
Item
|
|
135
|
+
]);
|
|
136
|
+
}
|
|
137
|
+
function ErrorReason_BadOneOf(Item) {
|
|
138
|
+
return new ErrorReason(7, [
|
|
139
|
+
Item
|
|
140
|
+
]);
|
|
141
|
+
}
|
|
142
|
+
class ErrorReason extends _Types.Union {
|
|
143
|
+
cases() {
|
|
144
|
+
return [
|
|
145
|
+
"BadPrimitive",
|
|
146
|
+
"BadPrimitiveExtra",
|
|
147
|
+
"BadType",
|
|
148
|
+
"BadField",
|
|
149
|
+
"BadPath",
|
|
150
|
+
"TooSmallArray",
|
|
151
|
+
"FailMessage",
|
|
152
|
+
"BadOneOf"
|
|
153
|
+
];
|
|
154
|
+
}
|
|
155
|
+
constructor(tag, fields){
|
|
156
|
+
super(), this.tag = tag, this.fields = fields;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
function ErrorReason_$reflection() {
|
|
160
|
+
return (0, _Reflection.union_type)("Thoth.Json.ErrorReason", [], ErrorReason, ()=>[
|
|
161
|
+
[
|
|
162
|
+
[
|
|
163
|
+
"Item1",
|
|
164
|
+
_Reflection.string_type
|
|
165
|
+
],
|
|
166
|
+
[
|
|
167
|
+
"Item2",
|
|
168
|
+
_Reflection.obj_type
|
|
169
|
+
]
|
|
170
|
+
],
|
|
171
|
+
[
|
|
172
|
+
[
|
|
173
|
+
"Item1",
|
|
174
|
+
_Reflection.string_type
|
|
175
|
+
],
|
|
176
|
+
[
|
|
177
|
+
"Item2",
|
|
178
|
+
_Reflection.obj_type
|
|
179
|
+
],
|
|
180
|
+
[
|
|
181
|
+
"Item3",
|
|
182
|
+
_Reflection.string_type
|
|
183
|
+
]
|
|
184
|
+
],
|
|
185
|
+
[
|
|
186
|
+
[
|
|
187
|
+
"Item1",
|
|
188
|
+
_Reflection.string_type
|
|
189
|
+
],
|
|
190
|
+
[
|
|
191
|
+
"Item2",
|
|
192
|
+
_Reflection.obj_type
|
|
193
|
+
]
|
|
194
|
+
],
|
|
195
|
+
[
|
|
196
|
+
[
|
|
197
|
+
"Item1",
|
|
198
|
+
_Reflection.string_type
|
|
199
|
+
],
|
|
200
|
+
[
|
|
201
|
+
"Item2",
|
|
202
|
+
_Reflection.obj_type
|
|
203
|
+
]
|
|
204
|
+
],
|
|
205
|
+
[
|
|
206
|
+
[
|
|
207
|
+
"Item1",
|
|
208
|
+
_Reflection.string_type
|
|
209
|
+
],
|
|
210
|
+
[
|
|
211
|
+
"Item2",
|
|
212
|
+
_Reflection.obj_type
|
|
213
|
+
],
|
|
214
|
+
[
|
|
215
|
+
"Item3",
|
|
216
|
+
_Reflection.string_type
|
|
217
|
+
]
|
|
218
|
+
],
|
|
219
|
+
[
|
|
220
|
+
[
|
|
221
|
+
"Item1",
|
|
222
|
+
_Reflection.string_type
|
|
223
|
+
],
|
|
224
|
+
[
|
|
225
|
+
"Item2",
|
|
226
|
+
_Reflection.obj_type
|
|
227
|
+
]
|
|
228
|
+
],
|
|
229
|
+
[
|
|
230
|
+
[
|
|
231
|
+
"Item",
|
|
232
|
+
_Reflection.string_type
|
|
233
|
+
]
|
|
234
|
+
],
|
|
235
|
+
[
|
|
236
|
+
[
|
|
237
|
+
"Item",
|
|
238
|
+
(0, _Reflection.list_type)(_Reflection.string_type)
|
|
239
|
+
]
|
|
240
|
+
]
|
|
241
|
+
]);
|
|
242
|
+
}
|
|
243
|
+
function CaseStrategy_PascalCase() {
|
|
244
|
+
return new CaseStrategy(0, []);
|
|
245
|
+
}
|
|
246
|
+
function CaseStrategy_CamelCase() {
|
|
247
|
+
return new CaseStrategy(1, []);
|
|
248
|
+
}
|
|
249
|
+
function CaseStrategy_SnakeCase() {
|
|
250
|
+
return new CaseStrategy(2, []);
|
|
251
|
+
}
|
|
252
|
+
class CaseStrategy extends _Types.Union {
|
|
253
|
+
cases() {
|
|
254
|
+
return [
|
|
255
|
+
"PascalCase",
|
|
256
|
+
"CamelCase",
|
|
257
|
+
"SnakeCase"
|
|
258
|
+
];
|
|
259
|
+
}
|
|
260
|
+
constructor(tag, fields){
|
|
261
|
+
super(), this.tag = tag, this.fields = fields;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
function CaseStrategy_$reflection() {
|
|
265
|
+
return (0, _Reflection.union_type)("Thoth.Json.CaseStrategy", [], CaseStrategy, ()=>[
|
|
266
|
+
[],
|
|
267
|
+
[],
|
|
268
|
+
[]
|
|
269
|
+
]);
|
|
270
|
+
}
|
|
271
|
+
class ExtraCoders extends _Types.Record {
|
|
272
|
+
constructor(Hash, Coders){
|
|
273
|
+
super();
|
|
274
|
+
this.Hash = Hash;
|
|
275
|
+
this.Coders = Coders;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
function ExtraCoders_$reflection() {
|
|
279
|
+
return (0, _Reflection.record_type)("Thoth.Json.ExtraCoders", [], ExtraCoders, ()=>[
|
|
280
|
+
[
|
|
281
|
+
"Hash",
|
|
282
|
+
_Reflection.string_type
|
|
283
|
+
],
|
|
284
|
+
[
|
|
285
|
+
"Coders",
|
|
286
|
+
(0, _Reflection.class_type)("Microsoft.FSharp.Collections.FSharpMap`2", [
|
|
287
|
+
_Reflection.string_type,
|
|
288
|
+
(0, _Reflection.tuple_type)((0, _Reflection.lambda_type)(_Reflection.obj_type, _Reflection.obj_type), (0, _Reflection.lambda_type)(_Reflection.string_type, (0, _Reflection.lambda_type)(_Reflection.obj_type, (0, _Reflection.union_type)("Microsoft.FSharp.Core.FSharpResult`2", [
|
|
289
|
+
_Reflection.obj_type,
|
|
290
|
+
(0, _Reflection.tuple_type)(_Reflection.string_type, ErrorReason_$reflection())
|
|
291
|
+
], _Result.FSharpResult$2, ()=>[
|
|
292
|
+
[
|
|
293
|
+
[
|
|
294
|
+
"ResultValue",
|
|
295
|
+
_Reflection.obj_type
|
|
296
|
+
]
|
|
297
|
+
],
|
|
298
|
+
[
|
|
299
|
+
[
|
|
300
|
+
"ErrorValue",
|
|
301
|
+
(0, _Reflection.tuple_type)(_Reflection.string_type, ErrorReason_$reflection())
|
|
302
|
+
]
|
|
303
|
+
]
|
|
304
|
+
]))))
|
|
305
|
+
])
|
|
306
|
+
]
|
|
307
|
+
]);
|
|
308
|
+
}
|
|
309
|
+
class Util_Cache$1 {
|
|
310
|
+
constructor(){
|
|
311
|
+
this.cache = new Map([]);
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
function Util_Cache$1_$reflection(gen0) {
|
|
315
|
+
return (0, _Reflection.class_type)("Thoth.Json.Util.Cache`1", [
|
|
316
|
+
gen0
|
|
317
|
+
], Util_Cache$1);
|
|
318
|
+
}
|
|
319
|
+
function Util_Cache$1_$ctor() {
|
|
320
|
+
return new Util_Cache$1();
|
|
321
|
+
}
|
|
322
|
+
function Util_Cache$1__GetOrAdd_43981464(__, key, factory) {
|
|
323
|
+
let matchValue;
|
|
324
|
+
let outArg = (0, _Util.defaultOf)();
|
|
325
|
+
matchValue = [
|
|
326
|
+
(0, _MapUtil.tryGetValue)(__.cache, key, new _Types.FSharpRef(()=>outArg, (v)=>{
|
|
327
|
+
outArg = v;
|
|
328
|
+
})),
|
|
329
|
+
outArg
|
|
330
|
+
];
|
|
331
|
+
if (matchValue[0]) {
|
|
332
|
+
return matchValue[1];
|
|
333
|
+
} else {
|
|
334
|
+
const x_1 = factory();
|
|
335
|
+
(0, _MapUtil.addToDict)(__.cache, key, x_1);
|
|
336
|
+
return x_1;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
const Util_CachedEncoders = Util_Cache$1_$ctor();
|
|
340
|
+
const Util_CachedDecoders = Util_Cache$1_$ctor();
|
|
341
|
+
function Util_Casing_lowerFirst(str) {
|
|
342
|
+
return str.slice(undefined, 0 + 1).toLowerCase() + str.slice(1, str.length);
|
|
343
|
+
}
|
|
344
|
+
function Util_Casing_convert(caseStrategy, fieldName) {
|
|
345
|
+
switch(caseStrategy.tag){
|
|
346
|
+
case /* SnakeCase */ 2:
|
|
347
|
+
return (0, _RegExp.replace)(Util_Casing_lowerFirst(fieldName), "[A-Z]", "_$0").toLowerCase();
|
|
348
|
+
case /* PascalCase */ 0:
|
|
349
|
+
return fieldName;
|
|
350
|
+
default:
|
|
351
|
+
return Util_Casing_lowerFirst(fieldName);
|
|
352
|
+
}
|
|
353
|
+
} //# sourceMappingURL=Types.fs.ts.map
|
|
354
|
+
|
|
355
|
+
//# sourceMappingURL=Types.fs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs.ts"],"names":["matchValue","outArg","__","key","x","factory","``.ctor``","str","caseStrategy","lowerFirst","fieldName"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAyCQ,IAAA,CAAA,KAAA,GAAY,IAAA,IAAA,EAAA;;;;;;;;;;;;IAGFA,IAAAA;IAAAC,IAAAA,aAAA,eAAA;IAAAD,aAAAA;YAAA,oBAAA,EAAAE,GAAAA,KAAAA,EAAkBC,KAAlB,IAAA,gBAAA,CAAA,IAAAF,QAAAA,CAAAA;YAAAA,SAAAA;;QAAAA;KAAAA;IAAA,IAAAD,UAAAA,CAAAA,EAAAA,EAAAA;QACO,OAAAA,UAAAA,CAAAA,EAAAA;;QAELI,MAAAA,MAAIC;QACR,IAAA,kBAAA,EAAAH,GAAAA,KAAAA,EAAUC,KAAKC;eACfA;;;4BAISE;4BACAA;;WAIbC,IAAAA,KAAAA,CAAK,WAAE,IAAA,GAAA,WAAA,KAAwBA,IAAAA,KAAAA,CAAK,GAALA,IAAAA,MAAAA;;;WAGzBC,aAAAA,GAAAA;;YAGF,WAAA,eAAA,EACaC,uBAAWC,YAAW,SAAS,OAAA,WAAA;;mBAEhCA;;YALD,OAAAD,uBAAWC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["./Types.fs"],"names":["matchValue","outArg","__","key","x","factory","\u0060\u0060.ctor\u0060\u0060","str","caseStrategy","lowerFirst","fieldName"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyCQ,sBAAY;;;;;;;;;;;;;AAGFA;AAAAC,wBAAA;AAAAD,mBAAA,YAAA,AAAAE,UAAkBC,KAAlB,kCAAAF;AAAAA;SAAAA;AAAA,QAAA,AAAAD;AACO,eAAA,AAAAA;;;AAELI,2BAAI,AAAAC;AACR,kBAAA,AAAAH,UAAUC,KAAKC;eACfA;;;;uEAIS,AAAAE;;gJACA,AAAAA;;;WAIb,AAAAC,UAAK,WAAE,uBAAwB,AAAAA,UAAK,GAALA;;;;YAGzBC;;AAGF,mBAAA,QACa,AAAAC,uBAAWC,YAAW,SAAS;;mBAEhCA;;AALD,mBAAA,AAAAD,uBAAWC","file":null,"sourcesContent":null,"sourceRoot":null}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"Version":"4.28.0","FableOptions":{"TypedArrays":false,"ClampByteArrays":false,"Language":["TypeScript"],"Define":["FABLE_COMPILER","FABLE_COMPILER_4","FABLE_COMPILER_TYPESCRIPT"],"DebugMode":false,"OptimizeFSharpAst":false,"Verbosity":["Normal"],"FileExtension":".ts","TriggeredByDependency":false,"NoReflection":false},"ProjectPath":"D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/FormSpec.fsproj","SourcePaths":["D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Extensions.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Error.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Field.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Base.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Form.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Hooks.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Extensions.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Key.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/StyleTypes.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactTypes.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Interop.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Colors.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Fonts.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Transform.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Length.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Properties.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/BorderStyle.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/TextDecorationStyle.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/TextDecorationLine.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/TransitionProperty.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/TransformOrigin.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/GridTypes.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Styles.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/Html.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/React.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactDOM.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Decode.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Encode.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Extra.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Prelude.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Logging/LogTypes.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/FormSpec.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Designer.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Helpers.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Interfaces.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/PluginInterface.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/PathwayDataExtractor.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Migrator.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/PathwayExecutor.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/PathwayValidator.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/FormSpecHelpers.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Yaml/FormSpec.Yaml.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Yaml/FormSpec.Yaml.Validate.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Yaml/FormSpec.Yaml.Convert.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Renderers/PathwayRenderers.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Renderers/MermaidRenderer.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Renderers/FormSpecMarkdownRenderer.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Interop/FormSpec.Api.Helpers.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Interop/FormSpec.Api.Option.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Interop/FormSpec.Values.Api.Option.fs","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.FS/Components/HelloComponent.fs"],"FSharpOptions":["--nowarn:1701,1702,1701,1702","--define:TRACE","--define:RELEASE","--define:NETSTANDARD","--define:NETSTANDARD2_1","--define:NETSTANDARD1_0_OR_GREATER","--define:NETSTANDARD1_1_OR_GREATER","--define:NETSTANDARD1_2_OR_GREATER","--define:NETSTANDARD1_3_OR_GREATER","--define:NETSTANDARD1_4_OR_GREATER","--define:NETSTANDARD1_5_OR_GREATER","--define:NETSTANDARD1_6_OR_GREATER","--define:NETSTANDARD2_0_OR_GREATER","--define:NETSTANDARD2_1_OR_GREATER","--noframework","--nologo","--simpleresolution","--nocopyfsharpcore","--nowin32manifest","--warn:3","--fullpaths","--flaterrors","--optimize-","-r:C:/Users/LuisFX/.nuget/packages/yamldotnet/13.7.1/lib/netstandard2.1/YamlDotNet.dll","-r:C:/Users/LuisFX/.nuget/packages/thoth.json.net/11.0.0/lib/netstandard2.0/Thoth.Json.Net.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.ValueTuple.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Threading.Thread.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Threading.Tasks.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Threading.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Text.RegularExpressions.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Text.Encoding.Extensions.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Text.Encoding.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Runtime.Numerics.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Runtime.InteropServices.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Runtime.Extensions.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Runtime.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Reflection.Primitives.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Reflection.Extensions.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Reflection.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Numerics.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Net.Requests.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.IO.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Globalization.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Diagnostics.Tracing.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Diagnostics.Tools.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Diagnostics.Debug.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Core.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Console.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.ComponentModel.TypeConverter.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.ComponentModel.Primitives.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.ComponentModel.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Collections.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/System.Collections.Concurrent.dll","-r:C:/Users/LuisFX/.nuget/packages/newtonsoft.json/11.0.2/lib/netstandard2.0/Newtonsoft.Json.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/netstandard.dll","-r:C:/Program Files/dotnet/packs/NETStandard.Library.Ref/2.1.0/ref/netstandard2.1/mscorlib.dll","-r:C:/Users/LuisFX/.nuget/packages/feliz.compilerplugins/2.2.0/lib/netstandard2.0/Feliz.CompilerPlugins.dll","-r:C:/Users/LuisFX/.nuget/packages/fable.core/4.4.0/lib/netstandard2.0/Fable.Core.dll","-r:C:/Users/LuisFX/.nuget/packages/fable.ast/4.2.1/lib/netstandard2.0/Fable.AST.dll","-r:C:/Users/LuisFX/.nuget/packages/fable.browser.webstorage/1.3.0/lib/netstandard2.0/Browser.WebStorage.dll","-r:C:/Users/LuisFX/.nuget/packages/fable.browser.gamepad/1.3.0/lib/netstandard2.0/Browser.Gamepad.dll","-r:C:/Users/LuisFX/.nuget/packages/fable.browser.event/1.7.0/lib/netstandard2.0/Browser.Event.dll","-r:C:/Users/LuisFX/.nuget/packages/fable.browser.dom/2.20.0/lib/netstandard2.0/Browser.Dom.dll","-r:C:/Users/LuisFX/.nuget/packages/fable.browser.blob/1.4.0/lib/netstandard2.0/Browser.Blob.dll","-r:C:\\Users\\LuisFX\\.nuget\\packages\\fable\\4.28.0\\tools\\net6.0\\any\\FSharp.Core.dll"],"References":[],"OutDir":["Some","D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS"],"FableLibDir":"fable-library","FableModulesDir":"D:/code/luisfx/f1-monorepo/packages/core/form-spec/FormSpec.TS/fable_modules","OutputType":["Library"],"TargetFramework":["Some","netstandard2.1"],"Exclude":[],"SourceMaps":true,"SourceMapsRoot":null}
|