@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,384 @@
|
|
|
1
|
+
import { Record } from "@fable-org/fable-library-js/Types.js";
|
|
2
|
+
import { IComparable, IEquatable } from "@fable-org/fable-library-js/Util.js";
|
|
3
|
+
import { TypeInfo } from "@fable-org/fable-library-js/Reflection.js";
|
|
4
|
+
import { Option } from "@fable-org/fable-library-js/Option.js";
|
|
5
|
+
import { int32 } from "@fable-org/fable-library-js/Int32.js";
|
|
6
|
+
import { Spec_FormSpec$1, ClinicalPathway_ClinicalPathwaySpec, Spec_Score, Spec_ScoreRange, Spec_ScoreColor_$union, Spec_FormStep$1, Spec_FormField$1, Spec_FieldType_$union, Spec_MessageType_$union, Spec_DependsOn, Spec_Evaluator_$union, Shared_FieldOption, Shared_FieldOptionKey, Shared_MatrixItemKey, Shared_TransitionKey, Shared_StateKey, Shared_FieldKey } from "../FormSpec.js";
|
|
7
|
+
export declare class Types_FieldKeyTS extends Record implements IEquatable<Types_FieldKeyTS>, IComparable<Types_FieldKeyTS> {
|
|
8
|
+
readonly Value: string;
|
|
9
|
+
constructor(Value: string);
|
|
10
|
+
}
|
|
11
|
+
export declare function Types_FieldKeyTS_$reflection(): TypeInfo;
|
|
12
|
+
export declare class Types_StateKeyTS extends Record implements IEquatable<Types_StateKeyTS>, IComparable<Types_StateKeyTS> {
|
|
13
|
+
readonly Value: string;
|
|
14
|
+
constructor(Value: string);
|
|
15
|
+
}
|
|
16
|
+
export declare function Types_StateKeyTS_$reflection(): TypeInfo;
|
|
17
|
+
export declare class Types_TransitionKeyTS extends Record implements IEquatable<Types_TransitionKeyTS>, IComparable<Types_TransitionKeyTS> {
|
|
18
|
+
readonly Value: string;
|
|
19
|
+
constructor(Value: string);
|
|
20
|
+
}
|
|
21
|
+
export declare function Types_TransitionKeyTS_$reflection(): TypeInfo;
|
|
22
|
+
export declare class Types_MatrixItemKeyTS extends Record implements IEquatable<Types_MatrixItemKeyTS>, IComparable<Types_MatrixItemKeyTS> {
|
|
23
|
+
readonly Value: string;
|
|
24
|
+
constructor(Value: string);
|
|
25
|
+
}
|
|
26
|
+
export declare function Types_MatrixItemKeyTS_$reflection(): TypeInfo;
|
|
27
|
+
export declare class Types_FieldOptionKeyTS extends Record implements IEquatable<Types_FieldOptionKeyTS>, IComparable<Types_FieldOptionKeyTS> {
|
|
28
|
+
readonly Value: string;
|
|
29
|
+
constructor(Value: string);
|
|
30
|
+
}
|
|
31
|
+
export declare function Types_FieldOptionKeyTS_$reflection(): TypeInfo;
|
|
32
|
+
export declare class Types_FieldOptionTS extends Record implements IEquatable<Types_FieldOptionTS>, IComparable<Types_FieldOptionTS> {
|
|
33
|
+
readonly Description: string;
|
|
34
|
+
readonly Value: string;
|
|
35
|
+
readonly OptionKey: Types_FieldOptionKeyTS;
|
|
36
|
+
constructor(Description: string, Value: string, OptionKey: Types_FieldOptionKeyTS);
|
|
37
|
+
}
|
|
38
|
+
export declare function Types_FieldOptionTS_$reflection(): TypeInfo;
|
|
39
|
+
export declare class Types_TextInfoTS extends Record implements IEquatable<Types_TextInfoTS>, IComparable<Types_TextInfoTS> {
|
|
40
|
+
readonly Value: Option<string>;
|
|
41
|
+
constructor(Value: Option<string>);
|
|
42
|
+
}
|
|
43
|
+
export declare function Types_TextInfoTS_$reflection(): TypeInfo;
|
|
44
|
+
export declare class Types_BooleanInfoTS extends Record implements IEquatable<Types_BooleanInfoTS>, IComparable<Types_BooleanInfoTS> {
|
|
45
|
+
readonly DefaultValue: Option<boolean>;
|
|
46
|
+
readonly Selection: Option<boolean>;
|
|
47
|
+
constructor(DefaultValue: Option<boolean>, Selection$: Option<boolean>);
|
|
48
|
+
}
|
|
49
|
+
export declare function Types_BooleanInfoTS_$reflection(): TypeInfo;
|
|
50
|
+
export declare class Types_CheckboxInfoTS extends Record implements IEquatable<Types_CheckboxInfoTS>, IComparable<Types_CheckboxInfoTS> {
|
|
51
|
+
readonly DefaultValue: Option<boolean>;
|
|
52
|
+
readonly Selection: Option<boolean>;
|
|
53
|
+
constructor(DefaultValue: Option<boolean>, Selection$: Option<boolean>);
|
|
54
|
+
}
|
|
55
|
+
export declare function Types_CheckboxInfoTS_$reflection(): TypeInfo;
|
|
56
|
+
export declare class Types_SingleChoiceInfoTS extends Record implements IEquatable<Types_SingleChoiceInfoTS>, IComparable<Types_SingleChoiceInfoTS> {
|
|
57
|
+
readonly Options: Types_FieldOptionTS[];
|
|
58
|
+
constructor(Options: Types_FieldOptionTS[]);
|
|
59
|
+
}
|
|
60
|
+
export declare function Types_SingleChoiceInfoTS_$reflection(): TypeInfo;
|
|
61
|
+
export declare class Types_MultiChoiceInfoTS extends Record implements IEquatable<Types_MultiChoiceInfoTS>, IComparable<Types_MultiChoiceInfoTS> {
|
|
62
|
+
readonly Options: Types_FieldOptionTS[];
|
|
63
|
+
constructor(Options: Types_FieldOptionTS[]);
|
|
64
|
+
}
|
|
65
|
+
export declare function Types_MultiChoiceInfoTS_$reflection(): TypeInfo;
|
|
66
|
+
export declare class Types_MessageInfoTS extends Record implements IEquatable<Types_MessageInfoTS>, IComparable<Types_MessageInfoTS> {
|
|
67
|
+
readonly Heading: string;
|
|
68
|
+
readonly MessageType: int32;
|
|
69
|
+
readonly Message: string;
|
|
70
|
+
readonly Footer: Option<string>;
|
|
71
|
+
constructor(Heading: string, MessageType: int32, Message: string, Footer: Option<string>);
|
|
72
|
+
}
|
|
73
|
+
export declare function Types_MessageInfoTS_$reflection(): TypeInfo;
|
|
74
|
+
export declare class Types_MatrixItemTS extends Record implements IEquatable<Types_MatrixItemTS>, IComparable<Types_MatrixItemTS> {
|
|
75
|
+
readonly ItemKey: Types_MatrixItemKeyTS;
|
|
76
|
+
readonly ItemLabel: string;
|
|
77
|
+
constructor(ItemKey: Types_MatrixItemKeyTS, ItemLabel: string);
|
|
78
|
+
}
|
|
79
|
+
export declare function Types_MatrixItemTS_$reflection(): TypeInfo;
|
|
80
|
+
export declare class Types_MatrixInfoTS extends Record implements IEquatable<Types_MatrixInfoTS>, IComparable<Types_MatrixInfoTS> {
|
|
81
|
+
readonly Items: Types_FieldOptionTS[];
|
|
82
|
+
readonly Options: Types_FieldOptionTS[];
|
|
83
|
+
constructor(Items: Types_FieldOptionTS[], Options: Types_FieldOptionTS[]);
|
|
84
|
+
}
|
|
85
|
+
export declare function Types_MatrixInfoTS_$reflection(): TypeInfo;
|
|
86
|
+
export declare class Types_SignatureInfoTS extends Record implements IEquatable<Types_SignatureInfoTS>, IComparable<Types_SignatureInfoTS> {
|
|
87
|
+
readonly Value: Option<string>;
|
|
88
|
+
constructor(Value: Option<string>);
|
|
89
|
+
}
|
|
90
|
+
export declare function Types_SignatureInfoTS_$reflection(): TypeInfo;
|
|
91
|
+
export declare class Types_PluginFieldConfigTS extends Record implements IEquatable<Types_PluginFieldConfigTS>, IComparable<Types_PluginFieldConfigTS> {
|
|
92
|
+
readonly PluginId: string;
|
|
93
|
+
readonly FieldName: string;
|
|
94
|
+
constructor(PluginId: string, FieldName: string);
|
|
95
|
+
}
|
|
96
|
+
export declare function Types_PluginFieldConfigTS_$reflection(): TypeInfo;
|
|
97
|
+
export declare class Types_FieldTypeTS extends Record implements IEquatable<Types_FieldTypeTS>, IComparable<Types_FieldTypeTS> {
|
|
98
|
+
readonly Type: string;
|
|
99
|
+
readonly TextInfo: Option<Types_TextInfoTS>;
|
|
100
|
+
readonly BooleanInfo: Option<Types_BooleanInfoTS>;
|
|
101
|
+
readonly CheckboxInfo: Option<Types_CheckboxInfoTS>;
|
|
102
|
+
readonly SingleChoiceInfo: Option<Types_SingleChoiceInfoTS>;
|
|
103
|
+
readonly MultiChoiceInfo: Option<Types_MultiChoiceInfoTS>;
|
|
104
|
+
readonly MessageInfo: Option<Types_MessageInfoTS>;
|
|
105
|
+
readonly MatrixInfo: Option<Types_MatrixInfoTS>;
|
|
106
|
+
readonly SignatureInfo: Option<Types_SignatureInfoTS>;
|
|
107
|
+
readonly PluginConfig: Option<Types_PluginFieldConfigTS>;
|
|
108
|
+
constructor(Type: string, TextInfo: Option<Types_TextInfoTS>, BooleanInfo: Option<Types_BooleanInfoTS>, CheckboxInfo: Option<Types_CheckboxInfoTS>, SingleChoiceInfo: Option<Types_SingleChoiceInfoTS>, MultiChoiceInfo: Option<Types_MultiChoiceInfoTS>, MessageInfo: Option<Types_MessageInfoTS>, MatrixInfo: Option<Types_MatrixInfoTS>, SignatureInfo: Option<Types_SignatureInfoTS>, PluginConfig: Option<Types_PluginFieldConfigTS>);
|
|
109
|
+
}
|
|
110
|
+
export declare function Types_FieldTypeTS_$reflection(): TypeInfo;
|
|
111
|
+
export declare class Types_DependsOnTS extends Record implements IEquatable<Types_DependsOnTS>, IComparable<Types_DependsOnTS> {
|
|
112
|
+
readonly FieldKey: Types_FieldKeyTS;
|
|
113
|
+
readonly FieldValue: string;
|
|
114
|
+
readonly Evaluator: int32;
|
|
115
|
+
constructor(FieldKey: Types_FieldKeyTS, FieldValue: string, Evaluator: int32);
|
|
116
|
+
}
|
|
117
|
+
export declare function Types_DependsOnTS_$reflection(): TypeInfo;
|
|
118
|
+
export declare class Types_FormFieldTS extends Record implements IEquatable<Types_FormFieldTS>, IComparable<Types_FormFieldTS> {
|
|
119
|
+
readonly FieldOrder: int32;
|
|
120
|
+
readonly FieldKey: Types_FieldKeyTS;
|
|
121
|
+
readonly Label: string;
|
|
122
|
+
readonly Notes: Option<string>;
|
|
123
|
+
readonly DependsOn: Option<Types_DependsOnTS>;
|
|
124
|
+
readonly IsOptional: boolean;
|
|
125
|
+
readonly IsDeprecated: boolean;
|
|
126
|
+
readonly FieldType: Types_FieldTypeTS;
|
|
127
|
+
constructor(FieldOrder: int32, FieldKey: Types_FieldKeyTS, Label: string, Notes: Option<string>, DependsOn: Option<Types_DependsOnTS>, IsOptional: boolean, IsDeprecated: boolean, FieldType: Types_FieldTypeTS);
|
|
128
|
+
}
|
|
129
|
+
export declare function Types_FormFieldTS_$reflection(): TypeInfo;
|
|
130
|
+
export declare class Types_FormStepTS extends Record implements IEquatable<Types_FormStepTS>, IComparable<Types_FormStepTS> {
|
|
131
|
+
readonly StepOrder: int32;
|
|
132
|
+
readonly StepLabel: string;
|
|
133
|
+
readonly Fields: Types_FormFieldTS[];
|
|
134
|
+
constructor(StepOrder: int32, StepLabel: string, Fields: Types_FormFieldTS[]);
|
|
135
|
+
}
|
|
136
|
+
export declare function Types_FormStepTS_$reflection(): TypeInfo;
|
|
137
|
+
export declare class Types_ScoreRangeTS extends Record implements IEquatable<Types_ScoreRangeTS>, IComparable<Types_ScoreRangeTS> {
|
|
138
|
+
readonly Id: string;
|
|
139
|
+
readonly Min: int32;
|
|
140
|
+
readonly Max: int32;
|
|
141
|
+
readonly Label: string;
|
|
142
|
+
readonly Tag: int32;
|
|
143
|
+
constructor(Id: string, Min: int32, Max: int32, Label: string, Tag: int32);
|
|
144
|
+
}
|
|
145
|
+
export declare function Types_ScoreRangeTS_$reflection(): TypeInfo;
|
|
146
|
+
export declare class Types_ScoreTS extends Record implements IEquatable<Types_ScoreTS>, IComparable<Types_ScoreTS> {
|
|
147
|
+
readonly MaxScore: int32;
|
|
148
|
+
readonly ScoreRanges: Types_ScoreRangeTS[];
|
|
149
|
+
constructor(MaxScore: int32, ScoreRanges: Types_ScoreRangeTS[]);
|
|
150
|
+
}
|
|
151
|
+
export declare function Types_ScoreTS_$reflection(): TypeInfo;
|
|
152
|
+
export declare class Types_ClinicalPathwaySpecTS extends Record implements IEquatable<Types_ClinicalPathwaySpecTS>, IComparable<Types_ClinicalPathwaySpecTS> {
|
|
153
|
+
readonly PathwayId: string;
|
|
154
|
+
readonly PathwayName: string;
|
|
155
|
+
readonly Version: string;
|
|
156
|
+
readonly ProtocolSource: string;
|
|
157
|
+
constructor(PathwayId: string, PathwayName: string, Version: string, ProtocolSource: string);
|
|
158
|
+
}
|
|
159
|
+
export declare function Types_ClinicalPathwaySpecTS_$reflection(): TypeInfo;
|
|
160
|
+
export declare class Types_FormSpecTS extends Record implements IEquatable<Types_FormSpecTS>, IComparable<Types_FormSpecTS> {
|
|
161
|
+
readonly Id: string;
|
|
162
|
+
readonly Code: Option<string>;
|
|
163
|
+
readonly Title: string;
|
|
164
|
+
readonly Abstract: string;
|
|
165
|
+
readonly Version: string;
|
|
166
|
+
readonly FormSpecVersion: string;
|
|
167
|
+
readonly Steps: Types_FormStepTS[];
|
|
168
|
+
readonly CategoryTags: string[];
|
|
169
|
+
readonly Score: Option<Types_ScoreTS>;
|
|
170
|
+
readonly AssociatedCodes: string[];
|
|
171
|
+
readonly RequiresReview: boolean;
|
|
172
|
+
readonly RequiresReviewAndApproval: boolean;
|
|
173
|
+
readonly ClinicalPathway: Option<Types_ClinicalPathwaySpecTS>;
|
|
174
|
+
constructor(Id: string, Code: Option<string>, Title: string, Abstract: string, Version: string, FormSpecVersion: string, Steps: Types_FormStepTS[], CategoryTags: string[], Score: Option<Types_ScoreTS>, AssociatedCodes: string[], RequiresReview: boolean, RequiresReviewAndApproval: boolean, ClinicalPathway: Option<Types_ClinicalPathwaySpecTS>);
|
|
175
|
+
}
|
|
176
|
+
export declare function Types_FormSpecTS_$reflection(): TypeInfo;
|
|
177
|
+
/**
|
|
178
|
+
* Convert F# FieldKey to TypeScript representation
|
|
179
|
+
*/
|
|
180
|
+
export declare function Converters_fieldKeyToTS(_arg: Shared_FieldKey): Types_FieldKeyTS;
|
|
181
|
+
/**
|
|
182
|
+
* Convert TypeScript FieldKey to F# representation
|
|
183
|
+
*/
|
|
184
|
+
export declare function Converters_fieldKeyFromTS(key: Types_FieldKeyTS): Option<Shared_FieldKey>;
|
|
185
|
+
/**
|
|
186
|
+
* Convert F# StateKey to TypeScript representation
|
|
187
|
+
*/
|
|
188
|
+
export declare function Converters_stateKeyToTS(_arg: Shared_StateKey): Types_StateKeyTS;
|
|
189
|
+
/**
|
|
190
|
+
* Convert TypeScript StateKey to F# representation
|
|
191
|
+
*/
|
|
192
|
+
export declare function Converters_stateKeyFromTS(key: Types_StateKeyTS): Option<Shared_StateKey>;
|
|
193
|
+
/**
|
|
194
|
+
* Convert F# TransitionKey to TypeScript representation
|
|
195
|
+
*/
|
|
196
|
+
export declare function Converters_transitionKeyToTS(_arg: Shared_TransitionKey): Types_TransitionKeyTS;
|
|
197
|
+
/**
|
|
198
|
+
* Convert F# MatrixItemKey to TypeScript representation
|
|
199
|
+
*/
|
|
200
|
+
export declare function Converters_matrixItemKeyToTS(_arg: Shared_MatrixItemKey): Types_MatrixItemKeyTS;
|
|
201
|
+
/**
|
|
202
|
+
* Convert F# FieldOptionKey to TypeScript representation
|
|
203
|
+
*/
|
|
204
|
+
export declare function Converters_fieldOptionKeyToTS(_arg: Shared_FieldOptionKey): Types_FieldOptionKeyTS;
|
|
205
|
+
/**
|
|
206
|
+
* Convert TypeScript FieldOptionKey to F# representation
|
|
207
|
+
*/
|
|
208
|
+
export declare function Converters_fieldOptionKeyFromTS(key: Types_FieldOptionKeyTS): Option<Shared_FieldOptionKey>;
|
|
209
|
+
/**
|
|
210
|
+
* Convert F# FieldOption to TypeScript representation
|
|
211
|
+
*/
|
|
212
|
+
export declare function Converters_fieldOptionToTS(option: Shared_FieldOption): Types_FieldOptionTS;
|
|
213
|
+
/**
|
|
214
|
+
* Convert TypeScript FieldOption to F# representation
|
|
215
|
+
*/
|
|
216
|
+
export declare function Converters_fieldOptionFromTS(option: Types_FieldOptionTS): Option<Shared_FieldOption>;
|
|
217
|
+
/**
|
|
218
|
+
* Convert F# Evaluator to TypeScript representation
|
|
219
|
+
*/
|
|
220
|
+
export declare function Converters_evaluatorToTS(evaluator: Spec_Evaluator_$union): int32;
|
|
221
|
+
/**
|
|
222
|
+
* Convert TypeScript Evaluator to F# representation
|
|
223
|
+
*/
|
|
224
|
+
export declare function Converters_evaluatorFromTS(evaluator: int32): Option<Spec_Evaluator_$union>;
|
|
225
|
+
/**
|
|
226
|
+
* Convert F# DependsOn to TypeScript representation
|
|
227
|
+
*/
|
|
228
|
+
export declare function Converters_dependsOnToTS(deps: Spec_DependsOn): Types_DependsOnTS;
|
|
229
|
+
/**
|
|
230
|
+
* Convert TypeScript DependsOn to F# representation
|
|
231
|
+
*/
|
|
232
|
+
export declare function Converters_dependsOnFromTS(deps: Types_DependsOnTS): Option<Spec_DependsOn>;
|
|
233
|
+
/**
|
|
234
|
+
* Convert F# MessageType to TypeScript representation
|
|
235
|
+
*/
|
|
236
|
+
export declare function Converters_messageTypeToTS(msgType: Spec_MessageType_$union): int32;
|
|
237
|
+
/**
|
|
238
|
+
* Convert TypeScript MessageType to F# representation
|
|
239
|
+
*/
|
|
240
|
+
export declare function Converters_messageTypeFromTS(msgType: int32): Option<Spec_MessageType_$union>;
|
|
241
|
+
/**
|
|
242
|
+
* Convert F# FieldType to TypeScript representation
|
|
243
|
+
*/
|
|
244
|
+
export declare function Converters_fieldTypeToTS(fieldType: Spec_FieldType_$union): Types_FieldTypeTS;
|
|
245
|
+
/**
|
|
246
|
+
* Convert TypeScript FieldType to F# representation
|
|
247
|
+
*/
|
|
248
|
+
export declare function Converters_fieldTypeFromTS(fieldType: Types_FieldTypeTS): Option<Spec_FieldType_$union>;
|
|
249
|
+
/**
|
|
250
|
+
* Convert F# FormField to TypeScript representation
|
|
251
|
+
*/
|
|
252
|
+
export declare function Converters_formFieldToTS(field: Spec_FormField$1<Spec_FieldType_$union>): Types_FormFieldTS;
|
|
253
|
+
/**
|
|
254
|
+
* Convert TypeScript FormField to F# representation
|
|
255
|
+
*/
|
|
256
|
+
export declare function Converters_formFieldFromTS(field: Types_FormFieldTS): Option<Spec_FormField$1<Spec_FieldType_$union>>;
|
|
257
|
+
/**
|
|
258
|
+
* Convert F# FormStep to TypeScript representation
|
|
259
|
+
*/
|
|
260
|
+
export declare function Converters_formStepToTS(step: Spec_FormStep$1<Spec_FieldType_$union>): Types_FormStepTS;
|
|
261
|
+
/**
|
|
262
|
+
* Convert TypeScript FormStep to F# representation
|
|
263
|
+
*/
|
|
264
|
+
export declare function Converters_formStepFromTS(step: Types_FormStepTS): Option<Spec_FormStep$1<Spec_FieldType_$union>>;
|
|
265
|
+
/**
|
|
266
|
+
* Convert F# ScoreColor to TypeScript representation
|
|
267
|
+
*/
|
|
268
|
+
export declare function Converters_scoreColorToTS(color: Spec_ScoreColor_$union): int32;
|
|
269
|
+
/**
|
|
270
|
+
* Convert TypeScript ScoreColor to F# representation
|
|
271
|
+
*/
|
|
272
|
+
export declare function Converters_scoreColorFromTS(color: int32): Option<Spec_ScoreColor_$union>;
|
|
273
|
+
/**
|
|
274
|
+
* Convert F# ScoreRange to TypeScript representation
|
|
275
|
+
*/
|
|
276
|
+
export declare function Converters_scoreRangeToTS(range: Spec_ScoreRange): Types_ScoreRangeTS;
|
|
277
|
+
/**
|
|
278
|
+
* Convert TypeScript ScoreRange to F# representation
|
|
279
|
+
*/
|
|
280
|
+
export declare function Converters_scoreRangeFromTS(range: Types_ScoreRangeTS): Option<Spec_ScoreRange>;
|
|
281
|
+
/**
|
|
282
|
+
* Convert F# Score to TypeScript representation
|
|
283
|
+
*/
|
|
284
|
+
export declare function Converters_scoreToTS(score: Spec_Score): Types_ScoreTS;
|
|
285
|
+
/**
|
|
286
|
+
* Convert TypeScript Score to F# representation
|
|
287
|
+
*/
|
|
288
|
+
export declare function Converters_scoreFromTS(score: Types_ScoreTS): Option<Spec_Score>;
|
|
289
|
+
/**
|
|
290
|
+
* Convert F# ClinicalPathwaySpec to TypeScript representation (simplified)
|
|
291
|
+
*/
|
|
292
|
+
export declare function Converters_clinicalPathwayToTS(pathway: ClinicalPathway_ClinicalPathwaySpec): Types_ClinicalPathwaySpecTS;
|
|
293
|
+
/**
|
|
294
|
+
* Convert TypeScript ClinicalPathwaySpec to F# representation (simplified)
|
|
295
|
+
* Note: This is a simplified conversion - full conversion would require more fields
|
|
296
|
+
*/
|
|
297
|
+
export declare function Converters_clinicalPathwayFromTS(pathway: Types_ClinicalPathwaySpecTS): Option<ClinicalPathway_ClinicalPathwaySpec>;
|
|
298
|
+
/**
|
|
299
|
+
* Convert F# FormSpec to TypeScript representation
|
|
300
|
+
*/
|
|
301
|
+
export declare function Converters_formSpecToTS(spec: Spec_FormSpec$1<Spec_FieldType_$union>): Types_FormSpecTS;
|
|
302
|
+
/**
|
|
303
|
+
* Convert TypeScript FormSpec to F# representation
|
|
304
|
+
*/
|
|
305
|
+
export declare function Converters_formSpecFromTS(spec: Types_FormSpecTS): Option<Spec_FormSpec$1<Spec_FieldType_$union>>;
|
|
306
|
+
/**
|
|
307
|
+
* Validate a TypeScript FormSpec object from JavaScript/TypeScript
|
|
308
|
+
*/
|
|
309
|
+
export declare function Validators_validateFormSpec(input: any): Option<Types_FormSpecTS>;
|
|
310
|
+
/**
|
|
311
|
+
* Validate and convert a TypeScript FormSpec to F# domain type
|
|
312
|
+
*/
|
|
313
|
+
export declare function Validators_validateAndConvert(input: any): Option<Spec_FormSpec$1<Spec_FieldType_$union>>;
|
|
314
|
+
/**
|
|
315
|
+
* Main entry point: Validate a FormSpec from TypeScript/JavaScript
|
|
316
|
+
*/
|
|
317
|
+
export declare function Api_validateFormSpec<$a>(): ((arg0: $a) => Option<Types_FormSpecTS>);
|
|
318
|
+
/**
|
|
319
|
+
* Validate and convert a FormSpec to F# domain type
|
|
320
|
+
*/
|
|
321
|
+
export declare function Api_validateAndConvertFormSpec<$a>(): ((arg0: $a) => Option<Spec_FormSpec$1<Spec_FieldType_$union>>);
|
|
322
|
+
/**
|
|
323
|
+
* Convert F# FormSpec to TypeScript representation
|
|
324
|
+
*/
|
|
325
|
+
export declare function Api_formSpecToTypeScript(spec: Spec_FormSpec$1<Spec_FieldType_$union>): Types_FormSpecTS;
|
|
326
|
+
/**
|
|
327
|
+
* Convert TypeScript FormSpec to F# representation
|
|
328
|
+
*/
|
|
329
|
+
export declare function Api_formSpecFromTypeScript(spec: Types_FormSpecTS): Option<Spec_FormSpec$1<Spec_FieldType_$union>>;
|
|
330
|
+
/**
|
|
331
|
+
* Convert F# FormSpec JSON string (with union arrays) to FormSpecTS
|
|
332
|
+
* TypeScript: (json: string) => Option<FormSpecTS>
|
|
333
|
+
* Usage: Api.getFormSpecTSfromFormSpecFSjsonString(fsJsonString)
|
|
334
|
+
*
|
|
335
|
+
* This function handles JSON from APIs that send F# serialized FormSpec format:
|
|
336
|
+
* - FieldKey: ["FieldKey", "guid"] → { Value: "guid" }
|
|
337
|
+
* - FieldType: ["Text", {}] → { Type: "Text", TextInfo: {...}, ... }
|
|
338
|
+
*/
|
|
339
|
+
export declare function Api_getFormSpecTSfromFormSpecFSjsonString(formSpecFSstring: string): Option<Types_FormSpecTS>;
|
|
340
|
+
/**
|
|
341
|
+
* Convert FormSpecTS JSON string to F# FormSpec
|
|
342
|
+
* TypeScript: (json: string) => Option<FormSpec>
|
|
343
|
+
* Usage: Api.getFormSpecFSfromFormSpecTSjsonString(tsJsonString)
|
|
344
|
+
*
|
|
345
|
+
* This function converts FormSpecTS JSON (flat structure) back to F# FormSpec format:
|
|
346
|
+
* - { Value: "guid" } → FieldKey: ["FieldKey", "guid"]
|
|
347
|
+
* - { Type: "Text", ... } → FieldType: ["Text", {...}]
|
|
348
|
+
*/
|
|
349
|
+
export declare function Api_getFormSpecFSfromFormSpecTSjsonString(formSpecTSstring: string): Option<Spec_FormSpec$1<Spec_FieldType_$union>>;
|
|
350
|
+
/**
|
|
351
|
+
* Serialize a FormSpec to JSON string
|
|
352
|
+
*/
|
|
353
|
+
export declare function Api_serializeFormSpec(spec: Types_FormSpecTS): string;
|
|
354
|
+
/**
|
|
355
|
+
* Deserialize a FormSpec from JSON string
|
|
356
|
+
*/
|
|
357
|
+
export declare function Api_deserializeFormSpecTS(jsonTS: string): Option<Types_FormSpecTS>;
|
|
358
|
+
/**
|
|
359
|
+
* Convert F# FieldKey (discriminated union) to TypeScript FieldKeyTS
|
|
360
|
+
* TypeScript: (fieldKey: { tag: number, fields: string[] }) => FieldKeyTS
|
|
361
|
+
* Usage: Api.fieldKeyToTypeScript(fsharpFieldKey)
|
|
362
|
+
*/
|
|
363
|
+
export declare function Api_fieldKeyToTypeScript(fieldKey: Shared_FieldKey): Types_FieldKeyTS;
|
|
364
|
+
/**
|
|
365
|
+
* Get all field keys from a FormSpec
|
|
366
|
+
*/
|
|
367
|
+
export declare function Api_getFieldKeys(spec: Types_FormSpecTS): Types_FieldKeyTS[];
|
|
368
|
+
/**
|
|
369
|
+
* Find a field by its key
|
|
370
|
+
*/
|
|
371
|
+
export declare function Api_findFieldByKey(spec: Types_FormSpecTS, key: Types_FieldKeyTS): Option<Types_FormFieldTS>;
|
|
372
|
+
/**
|
|
373
|
+
* Get all fields of a specific type
|
|
374
|
+
*/
|
|
375
|
+
export declare function Api_getFieldsByType(spec: Types_FormSpecTS, fieldType: string): Types_FormFieldTS[];
|
|
376
|
+
/**
|
|
377
|
+
* Check if a FormSpec is valid (basic validation)
|
|
378
|
+
*/
|
|
379
|
+
export declare function Api_isValidFormSpec(spec: Types_FormSpecTS): boolean;
|
|
380
|
+
/**
|
|
381
|
+
* Get a summary of the FormSpec
|
|
382
|
+
*/
|
|
383
|
+
export declare function Api_getFormSpecSummary(spec: Types_FormSpecTS): any;
|
|
384
|
+
//# sourceMappingURL=FormSpec.Api.Option.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FormSpec.Api.Option.d.ts","sourceRoot":"","sources":["../../FormSpec.TS/Interop/FormSpec.Api.Option.ts"],"names":[],"mappings":"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"}
|