@nfdi4plants/arctrl 3.1.1 → 3.2.0
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/dist/ts/index.d.ts +3 -0
- package/dist/ts/index.d.ts.map +1 -1
- package/dist/ts/index.js +3 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Array.js +1296 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Async.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/AsyncBuilder.js +190 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/BigInt.js +479 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Boolean.js +23 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Char.js +172 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Choice.js +187 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/CollectionUtil.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Date.js +843 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/DateOffset.js +247 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Decimal.js +279 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Double.js +53 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Collections.js +48 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/FSharp.Core.js +148 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Global.js +31 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Guid.js +140 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Int32.js +165 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/List.js +1282 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Long.js +40 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Map.js +1298 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MapUtil.js +126 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableMap.js +323 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/MutableSet.js +225 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Native.js +14 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Numeric.js +63 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Option.js +81 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Random.js +174 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Range.js +47 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Reflection.js +471 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/RegExp.js +137 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Result.js +169 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq.js +1398 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Seq2.js +110 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Set.js +1670 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/String.js +660 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Collections.Generic.js +328 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.Text.js +201 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/System.js +292 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/TimeSpan.js +170 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Types.js +199 -0
- package/dist/ts/node_modules/@fable-org/{fable-library-js → fable-library-ts}/Unicode.13.0.0.js +0 -2
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Uri.js +154 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/Util.js +747 -0
- package/dist/ts/node_modules/@fable-org/fable-library-ts/lib/big.js +1052 -0
- package/dist/ts/ts/ARC.d.ts +122 -62
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +142 -86
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts +32 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.d.ts.map +1 -0
- package/dist/ts/ts/CWL/CWLKnownFieldNames.js +95 -0
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts +12 -12
- package/dist/ts/ts/CWL/CWLProcessingUnit.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLProcessingUnit.js +7 -7
- package/dist/ts/ts/CWL/CWLTypes.d.ts +62 -19
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLTypes.js +241 -60
- package/dist/ts/ts/CWL/Decode.d.ts +24 -25
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Decode.js +454 -314
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts +4 -4
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/DynamicObjHelpers.js +10 -10
- package/dist/ts/ts/CWL/Encode.d.ts +26 -17
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Encode.js +451 -411
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +31 -7
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +29 -8
- package/dist/ts/ts/CWL/HashHelpers.d.ts +4 -3
- package/dist/ts/ts/CWL/HashHelpers.d.ts.map +1 -1
- package/dist/ts/ts/CWL/HashHelpers.js +9 -9
- package/dist/ts/ts/CWL/Inputs.d.ts +8 -8
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Inputs.js +9 -13
- package/dist/ts/ts/CWL/OperationDescription.d.ts +7 -7
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/OperationDescription.js +5 -8
- package/dist/ts/ts/CWL/Outputs.d.ts +10 -10
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Outputs.js +36 -17
- package/dist/ts/ts/CWL/ParameterReference.d.ts +13 -10
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ParameterReference.js +29 -21
- package/dist/ts/ts/CWL/ParameterValue.d.ts +57 -0
- package/dist/ts/ts/CWL/ParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/CWL/ParameterValue.js +321 -0
- package/dist/ts/ts/CWL/Requirements.d.ts +51 -23
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Requirements.js +89 -81
- package/dist/ts/ts/CWL/ToolDescription.d.ts +33 -9
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ToolDescription.js +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +29 -8
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowDescription.js +26 -8
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +45 -21
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowSteps.js +70 -34
- package/dist/ts/ts/CWLRunResolver.d.ts +11 -11
- package/dist/ts/ts/CWLRunResolver.d.ts.map +1 -1
- package/dist/ts/ts/CWLRunResolver.js +16 -16
- package/dist/ts/ts/Contract/ARC.d.ts +2 -2
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +1 -1
- package/dist/ts/ts/Contract/ArcAssay.d.ts +7 -6
- package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcAssay.js +15 -10
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts +5 -4
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcInvestigation.js +12 -7
- package/dist/ts/ts/Contract/ArcRun.d.ts +11 -10
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcRun.js +24 -21
- package/dist/ts/ts/Contract/ArcStudy.d.ts +8 -7
- package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcStudy.js +15 -10
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +9 -8
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ArcWorkflow.js +20 -16
- package/dist/ts/ts/Contract/Contract.d.ts +38 -8
- package/dist/ts/ts/Contract/Contract.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Contract.js +46 -7
- package/dist/ts/ts/Contract/Datamap.d.ts +5 -4
- package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Datamap.js +45 -32
- package/dist/ts/ts/Contract/Git.d.ts +6 -5
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Git.js +4 -4
- package/dist/ts/ts/Contract/License.d.ts +4 -3
- package/dist/ts/ts/Contract/License.d.ts.map +1 -1
- package/dist/ts/ts/Contract/License.js +5 -5
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +5 -4
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +6 -7
- package/dist/ts/ts/ContractIO/ContractIO.d.ts +5 -4
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/ContractIO.js +45 -43
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +13 -12
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -1
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +6 -6
- package/dist/ts/ts/Conversion/Assay.d.ts +5 -5
- package/dist/ts/ts/Conversion/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Assay.js +35 -16
- package/dist/ts/ts/Conversion/Basic.d.ts +16 -13
- package/dist/ts/ts/Conversion/Basic.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Basic.js +69 -38
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts +3 -3
- package/dist/ts/ts/Conversion/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ColumnIndex.js +8 -8
- package/dist/ts/ts/Conversion/Datamap.d.ts +4 -4
- package/dist/ts/ts/Conversion/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Datamap.js +2 -2
- package/dist/ts/ts/Conversion/DateTime.d.ts +1 -1
- package/dist/ts/ts/Conversion/DateTime.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/DateTime.js +7 -6
- package/dist/ts/ts/Conversion/Investigation.d.ts +5 -5
- package/dist/ts/ts/Conversion/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Investigation.js +17 -10
- package/dist/ts/ts/Conversion/Person.d.ts +4 -4
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Person.js +39 -23
- package/dist/ts/ts/Conversion/Process.d.ts +14 -11
- package/dist/ts/ts/Conversion/Process.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Process.js +57 -46
- package/dist/ts/ts/Conversion/Run.d.ts +12 -17
- package/dist/ts/ts/Conversion/Run.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Run.js +450 -68
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/Conversion/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/ScholarlyArticle.js +25 -17
- package/dist/ts/ts/Conversion/Study.d.ts +5 -5
- package/dist/ts/ts/Conversion/Study.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Study.js +27 -13
- package/dist/ts/ts/Conversion/Table.d.ts +10 -11
- package/dist/ts/ts/Conversion/Table.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Table.js +17 -24
- package/dist/ts/ts/Conversion/Workflow.d.ts +17 -17
- package/dist/ts/ts/Conversion/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Workflow.js +78 -40
- package/dist/ts/ts/Conversion.d.ts +10 -11
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +2 -2
- package/dist/ts/ts/Core/ArcTypes.d.ts +331 -76
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -1
- package/dist/ts/ts/Core/ArcTypes.js +567 -299
- package/dist/ts/ts/Core/Comment.d.ts +5 -5
- package/dist/ts/ts/Core/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Core/Comment.js +17 -10
- package/dist/ts/ts/Core/CommentList.d.ts +3 -3
- package/dist/ts/ts/Core/CommentList.d.ts.map +1 -1
- package/dist/ts/ts/Core/CommentList.js +8 -8
- package/dist/ts/ts/Core/Conversion.d.ts +25 -25
- package/dist/ts/ts/Core/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Core/Conversion.js +102 -102
- package/dist/ts/ts/Core/Data.d.ts +6 -6
- package/dist/ts/ts/Core/Data.d.ts.map +1 -1
- package/dist/ts/ts/Core/Data.js +11 -10
- package/dist/ts/ts/Core/DataContext.d.ts +10 -10
- package/dist/ts/ts/Core/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataContext.js +3 -3
- package/dist/ts/ts/Core/DataFile.d.ts +9 -6
- package/dist/ts/ts/Core/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Core/DataFile.js +20 -9
- package/dist/ts/ts/Core/Datamap.d.ts +17 -16
- package/dist/ts/ts/Core/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Core/Datamap.js +16 -14
- package/dist/ts/ts/Core/Helper/Collections.d.ts +4 -4
- package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Collections.js +30 -37
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts +15 -4
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/HashCodes.js +33 -14
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Identifier.js +10 -8
- package/dist/ts/ts/Core/Helper/ORCID.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/ORCID.js +4 -3
- package/dist/ts/ts/Core/Helper/Regex.d.ts +7 -7
- package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Regex.js +20 -12
- package/dist/ts/ts/Core/Helper/SemVer.d.ts +5 -5
- package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/SemVer.js +7 -7
- package/dist/ts/ts/Core/Helper/Url.d.ts +1 -1
- package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -1
- package/dist/ts/ts/Core/Helper/Url.js +8 -7
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +2 -2
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts +23 -5
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologyAnnotation.js +116 -45
- package/dist/ts/ts/Core/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Core/OntologySourceReference.js +4 -4
- package/dist/ts/ts/Core/Person.d.ts +19 -9
- package/dist/ts/ts/Core/Person.d.ts.map +1 -1
- package/dist/ts/ts/Core/Person.js +27 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +11 -11
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ColumnIndex.js +68 -29
- package/dist/ts/ts/Core/Process/Component.d.ts +16 -16
- package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Component.js +38 -25
- package/dist/ts/ts/Core/Process/Factor.d.ts +53 -8
- package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Factor.js +62 -11
- package/dist/ts/ts/Core/Process/FactorValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/FactorValue.js +39 -47
- package/dist/ts/ts/Core/Process/Material.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Material.js +5 -5
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +7 -7
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +17 -8
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +15 -15
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +45 -48
- package/dist/ts/ts/Core/Process/MaterialType.d.ts +7 -5
- package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/MaterialType.js +14 -7
- package/dist/ts/ts/Core/Process/Process.d.ts +22 -22
- package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Process.js +42 -26
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessInput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +14 -14
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessOutput.js +15 -10
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +30 -15
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +56 -46
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +16 -16
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProcessSequence.js +33 -26
- package/dist/ts/ts/Core/Process/Protocol.d.ts +9 -9
- package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Protocol.js +21 -13
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +28 -7
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +33 -8
- package/dist/ts/ts/Core/Process/Sample.d.ts +10 -10
- package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Sample.js +5 -5
- package/dist/ts/ts/Core/Process/Source.d.ts +8 -8
- package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Core/Process/Source.js +5 -5
- package/dist/ts/ts/Core/Publication.d.ts +5 -5
- package/dist/ts/ts/Core/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Core/Publication.js +18 -11
- package/dist/ts/ts/Core/ScalarValue.d.ts +41 -0
- package/dist/ts/ts/Core/ScalarValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/{Value.js → ScalarValue.js} +56 -29
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +134 -15
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +204 -68
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +15 -10
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTableAux.js +75 -71
- package/dist/ts/ts/Core/Table/ArcTables.d.ts +12 -9
- package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/ArcTables.js +42 -38
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts +46 -7
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeCell.js +52 -12
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +20 -7
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeColumn.js +17 -4
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +116 -22
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Core/Table/CompositeHeader.js +219 -65
- package/dist/ts/ts/Core/Template.d.ts +15 -9
- package/dist/ts/ts/Core/Template.d.ts.map +1 -1
- package/dist/ts/ts/Core/Template.js +19 -11
- package/dist/ts/ts/Core/Templates.d.ts +24 -5
- package/dist/ts/ts/Core/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Core/Templates.js +26 -8
- package/dist/ts/ts/Core/URI.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.d.ts +6 -5
- package/dist/ts/ts/CrossAsync.d.ts.map +1 -1
- package/dist/ts/ts/CrossAsync.js +6 -6
- package/dist/ts/ts/FileSystem/Commit.d.ts +3 -3
- package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Commit.js +2 -2
- package/dist/ts/ts/FileSystem/FileSystem.d.ts +9 -9
- package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystem.js +4 -4
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +35 -16
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +36 -18
- package/dist/ts/ts/FileSystem/Path.d.ts +9 -8
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +13 -13
- package/dist/ts/ts/Json/Assay.d.ts +9 -9
- package/dist/ts/ts/Json/Assay.d.ts.map +1 -1
- package/dist/ts/ts/Json/Assay.js +86 -50
- package/dist/ts/ts/Json/Comment.d.ts +4 -4
- package/dist/ts/ts/Json/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Json/Comment.js +38 -17
- package/dist/ts/ts/Json/Data.d.ts +7 -7
- package/dist/ts/ts/Json/Data.d.ts.map +1 -1
- package/dist/ts/ts/Json/Data.js +48 -20
- package/dist/ts/ts/Json/DataFile.d.ts +2 -2
- package/dist/ts/ts/Json/DataFile.d.ts.map +1 -1
- package/dist/ts/ts/Json/DataFile.js +10 -9
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts +2 -2
- package/dist/ts/ts/Json/Datamap/DataContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/DataContext.js +14 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts +7 -7
- package/dist/ts/ts/Json/Datamap/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Json/Datamap/Datamap.js +4 -4
- package/dist/ts/ts/Json/Decode.d.ts +6 -6
- package/dist/ts/ts/Json/Decode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Decode.js +32 -32
- package/dist/ts/ts/Json/Encode.d.ts +6 -5
- package/dist/ts/ts/Json/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Json/Encode.js +28 -26
- package/dist/ts/ts/Json/IDTable.d.ts +2 -2
- package/dist/ts/ts/Json/IDTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/IDTable.js +2 -2
- package/dist/ts/ts/Json/Investigation.d.ts +9 -9
- package/dist/ts/ts/Json/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/Json/Investigation.js +68 -33
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts +6 -6
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologyAnnotation.js +60 -25
- package/dist/ts/ts/Json/OntologySourceReference.d.ts +4 -4
- package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Json/OntologySourceReference.js +36 -15
- package/dist/ts/ts/Json/Person.d.ts +5 -5
- package/dist/ts/ts/Json/Person.d.ts.map +1 -1
- package/dist/ts/ts/Json/Person.js +57 -29
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/AssayMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Component.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Component.js +25 -11
- package/dist/ts/ts/Json/Process/Factor.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Factor.js +17 -9
- package/dist/ts/ts/Json/Process/FactorValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/FactorValue.js +14 -7
- package/dist/ts/ts/Json/Process/Material.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Material.js +31 -31
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +4 -4
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +16 -8
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +14 -7
- package/dist/ts/ts/Json/Process/MaterialType.d.ts +2 -2
- package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/MaterialType.js +9 -8
- package/dist/ts/ts/Json/Process/Process.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Process.js +28 -14
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessInput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessOutput.js +2 -2
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +5 -5
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +16 -8
- package/dist/ts/ts/Json/Process/Protocol.d.ts +4 -4
- package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Protocol.js +30 -16
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +4 -4
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +16 -8
- package/dist/ts/ts/Json/Process/Sample.d.ts +7 -7
- package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Sample.js +37 -60
- package/dist/ts/ts/Json/Process/Source.d.ts +5 -5
- package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Source.js +34 -57
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +5 -5
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/StudyMaterials.js +12 -5
- package/dist/ts/ts/Json/Process/Value.d.ts +6 -6
- package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Value.js +4 -4
- package/dist/ts/ts/Json/PropertyValue.d.ts +6 -6
- package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/PropertyValue.js +31 -22
- package/dist/ts/ts/Json/Publication.d.ts +5 -5
- package/dist/ts/ts/Json/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Json/Publication.js +36 -15
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDContext.js +17 -16
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +21 -14
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDNode.js +94 -29
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDRef.js +4 -4
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +2 -2
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -1
- package/dist/ts/ts/Json/ROCrate/LDValue.js +8 -7
- package/dist/ts/ts/Json/Run.d.ts +7 -7
- package/dist/ts/ts/Json/Run.d.ts.map +1 -1
- package/dist/ts/ts/Json/Run.js +28 -14
- package/dist/ts/ts/Json/StringTable.d.ts +7 -7
- package/dist/ts/ts/Json/StringTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/StringTable.js +10 -10
- package/dist/ts/ts/Json/Study.d.ts +9 -9
- package/dist/ts/ts/Json/Study.d.ts.map +1 -1
- package/dist/ts/ts/Json/Study.js +79 -45
- package/dist/ts/ts/Json/Table/ArcTable.d.ts +10 -10
- package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/ArcTable.js +28 -28
- package/dist/ts/ts/Json/Table/CellTable.d.ts +9 -9
- package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CellTable.js +8 -8
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts +6 -6
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeCell.js +7 -7
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +2 -2
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/CompositeHeader.js +7 -7
- package/dist/ts/ts/Json/Table/IOType.d.ts +2 -2
- package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/IOType.js +2 -2
- package/dist/ts/ts/Json/Table/OATable.d.ts +8 -8
- package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/OATable.js +8 -8
- package/dist/ts/ts/Json/Table/Templates.d.ts +9 -9
- package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/Json/Table/Templates.js +11 -11
- package/dist/ts/ts/Json/Workflow.d.ts +7 -7
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Json/Workflow.js +28 -14
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +3 -3
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/property_value_context.js +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +4 -4
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +3 -3
- package/dist/ts/ts/Json.d.ts +9 -9
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +2 -2
- package/dist/ts/ts/JsonIO/Assay.d.ts +6 -7
- package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Assay.js +13 -12
- package/dist/ts/ts/JsonIO/Datamap.d.ts +3 -4
- package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Datamap.js +7 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Investigation.js +11 -10
- package/dist/ts/ts/JsonIO/LDObject.d.ts +5 -6
- package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/LDObject.js +14 -13
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +5 -6
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +11 -10
- package/dist/ts/ts/JsonIO/Person.d.ts +5 -6
- package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Person.js +11 -10
- package/dist/ts/ts/JsonIO/Run.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Run.js +9 -8
- package/dist/ts/ts/JsonIO/Study.d.ts +7 -8
- package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Study.js +13 -12
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts +6 -6
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Compression.js +4 -4
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts +10 -10
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Table/Templates.js +13 -12
- package/dist/ts/ts/JsonIO/Workflow.d.ts +4 -5
- package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/JsonIO/Workflow.js +9 -8
- package/dist/ts/ts/License.d.ts +12 -6
- package/dist/ts/ts/License.d.ts.map +1 -1
- package/dist/ts/ts/License.js +49 -14
- package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/Helper.js +1 -1
- package/dist/ts/ts/ROCrate/LDContext.d.ts +15 -4
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDContext.js +27 -16
- package/dist/ts/ts/ROCrate/LDObject.d.ts +19 -10
- package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDObject.js +76 -38
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Comment.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Comment.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputationalWorkflow.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ComputerLanguage.js +22 -16
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreateAction.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/CreativeWork.js +25 -23
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Dataset.js +48 -45
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/DefinedTerm.js +11 -9
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/File.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/File.js +15 -13
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/FormalParameter.js +18 -16
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProcess.js +16 -14
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/LabProtocol.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Organization.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Organization.js +8 -6
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Person.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Person.js +28 -25
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PostalAddress.js +17 -16
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts +10 -6
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/PropertyValue.js +104 -61
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/Sample.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/Sample.js +14 -13
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts +4 -4
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/ScholarlyArticle.js +12 -10
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts +5 -5
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/SoftwareSourceCode.js +11 -10
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowInvocation.js +4 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts +3 -3
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/LDTypes/WorkflowProtocol.js +4 -3
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/ROCrateContext.js +2 -2
- package/dist/ts/ts/ROCrateIO.d.ts +13 -8
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +16 -13
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +13 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +15 -15
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +23 -12
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +17 -18
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +18 -17
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +37 -29
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +6 -6
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +16 -15
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +21 -21
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcRun.js +9 -9
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +13 -12
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +9 -9
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +8 -8
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +11 -11
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts +2 -2
- package/dist/ts/ts/Spreadsheet/Datamap.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Datamap.js +6 -5
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts +4 -4
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapColumn.js +14 -10
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapHeader.js +30 -21
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/DatamapTable/DatamapTable.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +12 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +5 -5
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +11 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +8 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +9 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +11 -9
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +13 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +55 -49
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +14 -14
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +10 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +7 -7
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +8 -8
- package/dist/ts/ts/Template.Web.d.ts +10 -6
- package/dist/ts/ts/Template.Web.d.ts.map +1 -1
- package/dist/ts/ts/Template.Web.js +4 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +6 -3
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +10 -7
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +7 -4
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +29 -24
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +4 -4
- package/dist/ts/ts/WebRequest/WebRequest.d.ts +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -1
- package/dist/ts/ts/WebRequest/WebRequest.js +3 -3
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts +6 -6
- package/dist/ts/ts/WorkflowGraph/Adapters.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Adapters.js +13 -13
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts +7 -4
- package/dist/ts/ts/WorkflowGraph/BuildOptions.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/BuildOptions.js +2 -2
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts +25 -19
- package/dist/ts/ts/WorkflowGraph/Builder.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/Builder.js +82 -68
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts +52 -32
- package/dist/ts/ts/WorkflowGraph/GraphTypes.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/GraphTypes.js +90 -30
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts +5 -5
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.d.ts.map +1 -1
- package/dist/ts/ts/WorkflowGraph/ReferenceParsing.js +4 -4
- package/dist/ts/ts/Xlsx.d.ts +5 -5
- package/dist/ts/ts/Xlsx.d.ts.map +1 -1
- package/dist/ts/ts/Xlsx.js +8 -6
- package/dist/ts/ts/Yaml/Encode.d.ts +2 -2
- package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/Encode.js +2 -2
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +12 -12
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +4 -5
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -1
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +12 -12
- package/dist/ts/ts/Yaml.d.ts +3 -3
- package/dist/ts/ts/Yaml.d.ts.map +1 -1
- package/dist/ts/ts/Yaml.js +3 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/DynObj.fs.js +6 -6
- package/dist/ts/ts/fable_modules/DynamicObj.8.0.0/DynamicObj.fs.js +515 -0
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/FableJS.fs.js +23 -8
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/HashCodes.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/PropertyHelper.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{DynamicObj.7.1.0 → DynamicObj.8.0.0}/ReflectionUtils.fs.js +16 -6
- package/dist/ts/ts/fable_modules/{Fable.Fetch.2.6.0 → Fable.Fetch.2.7.0}/Fetch.fs.js +11 -11
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +8 -7
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Http.fs.js +21 -21
- package/dist/ts/ts/fable_modules/{Fable.SimpleHttp.3.5.0 → Fable.SimpleHttp.3.6.0}/Types.fs.js +52 -19
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCell.fs.js +255 -126
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Cells/FsCellsCollection.fs.js +135 -18
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/CellBuilder.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Expression.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/RowBuilder.fs.js +5 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Types.fs.js +16 -16
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsAddress.fs.js +41 -17
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsColumn.fs.js +70 -7
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsRow.fs.js +76 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorkbook.fs.js +77 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsWorksheet.fs.js +237 -32
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/HashCodes.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Cell.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Column.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Row.fs.js +6 -6
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Table.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Value.fs.js +11 -11
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Workbook.fs.js +3 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Json/Worksheet.fs.js +8 -8
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRange.fs.js +6 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeAddress.fs.js +11 -5
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeBase.fs.js +18 -13
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeColumn.fs.js +9 -3
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Ranges/FsRangeRow.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTable.fs.js +185 -26
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/Tables/FsTableField.fs.js +48 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.1/Cell.fs.js +65 -0
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/FsExtensions.fs.js +1 -1
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Json.fs.js +9 -9
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Table.fs.js +15 -14
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Workbook.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Worksheet.fs.js +4 -4
- package/dist/ts/ts/fable_modules/{FsSpreadsheet.Js.7.0.0-alpha.1 → FsSpreadsheet.Js.7.0.1}/Xlsx.fs.js +2 -2
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Decode.fs.js +265 -159
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Encode.fs.js +94 -36
- package/dist/ts/ts/fable_modules/{Thoth.Json.Core.0.7.0 → Thoth.Json.Core.0.9.1}/Types.fs.js +16 -22
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Decode.fs.js +9 -7
- package/dist/ts/ts/fable_modules/{Thoth.Json.JavaScript.0.4.1 → Thoth.Json.JavaScript.0.5.0}/Encode.fs.js +2 -3
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Decode.fs.js +98 -104
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Encode.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Escapes.fs.js +41 -34
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Persil.fs.js +48 -48
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Preprocessing.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Reader.fs.js +129 -112
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Regex.fs.js +23 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/RegexActivePatterns.fs.js +14 -14
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Syntax.fs.js +77 -56
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Writer.fs.js +34 -31
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/YAMLiciousTypes.fs.js +74 -32
- package/package.json +3 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +0 -1244
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +0 -146
- package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +0 -186
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +0 -286
- package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +0 -24
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +0 -172
- package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +0 -187
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +0 -185
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +0 -750
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +0 -271
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +0 -214
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +0 -30
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +0 -72
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +0 -145
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +0 -137
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +0 -1276
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +0 -49
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +0 -1399
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +0 -130
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +0 -330
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +0 -236
- package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +0 -10
- package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +0 -73
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +0 -99
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +0 -48
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +0 -465
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +0 -133
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +0 -168
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +0 -1381
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +0 -114
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +0 -1792
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +0 -557
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Collections.Generic.js +0 -320
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +0 -165
- package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +0 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +0 -180
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +0 -211
- package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +0 -160
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +0 -771
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +0 -825
- package/dist/ts/ts/Core/Value.d.ts +0 -41
- package/dist/ts/ts/Core/Value.d.ts.map +0 -1
- package/dist/ts/ts/fable_modules/DynamicObj.7.1.0/DynamicObj.fs.js +0 -367
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +0 -68
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/Regex.fs.js +0 -21
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.11/StringBuffer.fs.js +0 -60
- /package/dist/ts/ts/fable_modules/{Fable.Exceljs.1.6.0 → Fable.Exceljs.2.0.0_565fc3e-alpha.1}/ExcelJs.fs.js +0 -0
- /package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.11 → YAMLicious.1.0.0}/Interop/JsInterop.fs.js +0 -0
|
@@ -1,42 +1,49 @@
|
|
|
1
|
-
import { equals, defaultOf, int32ToString, comparePrimitives, getEnumerator, disposeSafe } from '../../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { equals, defaultOf, Exception, int32ToString, comparePrimitives, getEnumerator, disposeSafe } from '../../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
2
2
|
import { Dictionary_tryGet } from '../Cells/FsCellsCollection.fs.js';
|
|
3
3
|
import { FsTableField } from './FsTableField.fs.js';
|
|
4
|
-
import { length, iterateIndexed, initialize, delay, collect, singleton, reduce, map, iterate, max, find, tryFind, tryPick, choose, toList, exists } from '../../../../node_modules/@fable-org/fable-library-
|
|
4
|
+
import { length, iterateIndexed, initialize, delay, collect, singleton, reduce, map, iterate, max, find, tryFind, tryPick, choose, toList, exists } from '../../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
5
5
|
import { FsRange } from '../Ranges/FsRange.fs.js';
|
|
6
6
|
import { FsRow } from '../FsRow.fs.js';
|
|
7
7
|
import { FsRangeAddress } from '../Ranges/FsRangeAddress.fs.js';
|
|
8
8
|
import { FsAddress } from '../FsAddress.fs.js';
|
|
9
|
-
import { defaultArg, value, some } from '../../../../node_modules/@fable-org/fable-library-
|
|
9
|
+
import { defaultArg, value, some } from '../../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
10
|
+
import { replace, toText, printf, concat } from '../../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
10
11
|
import { FsColumn } from '../FsColumn.fs.js';
|
|
11
|
-
import { rangeDouble } from '../../../../node_modules/@fable-org/fable-library-
|
|
12
|
-
import {
|
|
13
|
-
import { addToDict, addToSet, getItemFromDict } from '../../../../node_modules/@fable-org/fable-library-
|
|
12
|
+
import { rangeDouble } from '../../../../node_modules/@fable-org/fable-library-ts/Range.js';
|
|
13
|
+
import { ArgumentException_$ctor_Z384F8060, ArgumentOutOfRangeException_$ctor_Z384F8060, ArgumentException_$ctor_Z721C83C5 } from '../../../../node_modules/@fable-org/fable-library-ts/System.js';
|
|
14
|
+
import { addToDict, addToSet, getItemFromDict } from '../../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
14
15
|
import { FsRangeColumn } from '../Ranges/FsRangeColumn.fs.js';
|
|
15
|
-
import {
|
|
16
|
+
import { DataType } from '../Cells/FsCell.fs.js';
|
|
16
17
|
import { FsRangeBase, FsRangeBase_$reflection } from '../Ranges/FsRangeBase.fs.js';
|
|
17
|
-
import { class_type } from '../../../../node_modules/@fable-org/fable-library-
|
|
18
|
+
import { class_type } from '../../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
18
19
|
|
|
19
20
|
class FsTable extends FsRangeBase {
|
|
20
21
|
constructor(name, rangeAddress, showTotalsRow, showHeaderRow, fieldNames) {
|
|
21
22
|
super(rangeAddress);
|
|
22
|
-
let fns, dict;
|
|
23
|
+
let fns = void 0, dict = void 0;
|
|
23
24
|
this._name = replace(name.trim(), " ", "_");
|
|
24
25
|
this._lastRangeAddress = rangeAddress;
|
|
25
26
|
this._showTotalsRow = defaultArg(showTotalsRow, false);
|
|
26
27
|
this._showHeaderRow = defaultArg(showHeaderRow, true);
|
|
27
28
|
this._fieldNames = fieldNames == null ? /* @__PURE__ */ new Map([]) : (fns = value(fieldNames), length(fns) !== super.ColumnCount() ? (() => {
|
|
28
|
-
let arg, arg_1;
|
|
29
|
-
throw
|
|
29
|
+
let arg = void 0, arg_1 = void 0;
|
|
30
|
+
throw ArgumentException_$ctor_Z384F8060((arg = length(fns) | 0, arg_1 = super.ColumnCount() | 0, toText(printf("The number of field names (%i) must match the number of columns (%i) in the range."))(arg)(arg_1)), "fieldNames");
|
|
30
31
|
})() : void 0, dict = /* @__PURE__ */ new Map([]), iterateIndexed((i, fn) => {
|
|
31
32
|
const colI = rangeAddress.FirstAddress.ColumnNumber + i | 0;
|
|
32
33
|
addToDict(dict, fn, new FsTableField(fn, i, new FsRangeColumn(new FsRangeAddress(new FsAddress(rangeAddress.FirstAddress.RowNumber, colI), new FsAddress(rangeAddress.LastAddress.RowNumber, colI)))));
|
|
33
34
|
}, fns), dict);
|
|
34
35
|
this._uniqueNames = /* @__PURE__ */ new Set([]);
|
|
35
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* The name of the FsTable.
|
|
39
|
+
*/
|
|
36
40
|
get Name() {
|
|
37
41
|
const this$ = this;
|
|
38
42
|
return this$._name;
|
|
39
43
|
}
|
|
44
|
+
/**
|
|
45
|
+
* Returns all fieldnames as `fieldname*FsTableField` dictionary.
|
|
46
|
+
*/
|
|
40
47
|
GetFieldNames(cellsCollection) {
|
|
41
48
|
const this$ = this;
|
|
42
49
|
if (!equals(this$._fieldNames, defaultOf()) && !equals(this$._lastRangeAddress, defaultOf()) && equals(this$._lastRangeAddress, this$.RangeAddress)) {
|
|
@@ -46,18 +53,30 @@ class FsTable extends FsRangeBase {
|
|
|
46
53
|
return this$._fieldNames;
|
|
47
54
|
}
|
|
48
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* The FsTableFields of this FsTable.
|
|
58
|
+
*/
|
|
49
59
|
GetFields(cellsCollection) {
|
|
50
60
|
const this$ = this;
|
|
51
61
|
return initialize(super.ColumnCount(), (i) => this$.GetFieldAt(i, cellsCollection));
|
|
52
62
|
}
|
|
63
|
+
/**
|
|
64
|
+
* Gets or sets if the header row is shown.
|
|
65
|
+
*/
|
|
53
66
|
get ShowHeaderRow() {
|
|
54
67
|
const this$ = this;
|
|
55
68
|
return this$._showHeaderRow;
|
|
56
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* Gets or sets if the header row is shown.
|
|
72
|
+
*/
|
|
57
73
|
set ShowHeaderRow(showHeaderRow) {
|
|
58
74
|
const this$ = this;
|
|
59
75
|
this$._showHeaderRow = showHeaderRow;
|
|
60
76
|
}
|
|
77
|
+
/**
|
|
78
|
+
* Returns the header row as FsRangeRow. Scans for new fieldnames.
|
|
79
|
+
*/
|
|
61
80
|
HeadersRow() {
|
|
62
81
|
const this$ = this;
|
|
63
82
|
return !this$.ShowHeaderRow ? defaultOf() : new FsRange(super.RangeAddress).FirstRow();
|
|
@@ -76,46 +95,71 @@ class FsTable extends FsRangeBase {
|
|
|
76
95
|
const this$ = this;
|
|
77
96
|
const matchValue = this$.TryGetHeaderRow(cellsCollection);
|
|
78
97
|
if (matchValue == null) {
|
|
79
|
-
throw new
|
|
98
|
+
throw new Exception(concat('Error. Unable to get header row for table "', this$.Name, '" as `ShowHeaderRow` is set to `false`.'));
|
|
80
99
|
} else {
|
|
81
100
|
return value(matchValue);
|
|
82
101
|
}
|
|
83
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* Returns the FsColumns from the FsTable.
|
|
105
|
+
*/
|
|
84
106
|
GetColumns(cellsCollection) {
|
|
85
107
|
const this$ = this;
|
|
86
108
|
return delay(() => collect((i) => singleton(new FsColumn(new FsRangeAddress(new FsAddress(this$.RangeAddress.FirstAddress.RowNumber, i), new FsAddress(this$.RangeAddress.LastAddress.RowNumber, i)), cellsCollection)), rangeDouble(this$.RangeAddress.FirstAddress.ColumnNumber, 1, this$.RangeAddress.LastAddress.ColumnNumber)));
|
|
87
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* Returns the FsRows from the FsTable, including HeaderRows if present. If only the body rows are needed, use GetBodyRows.
|
|
112
|
+
*/
|
|
88
113
|
GetRows(cellsCollection) {
|
|
89
114
|
const this$ = this;
|
|
90
115
|
return delay(() => collect((i) => singleton(new FsRow(new FsRangeAddress(new FsAddress(i, this$.RangeAddress.FirstAddress.ColumnNumber), new FsAddress(i, this$.RangeAddress.LastAddress.ColumnNumber)), cellsCollection)), rangeDouble(this$.RangeAddress.FirstAddress.RowNumber, 1, this$.RangeAddress.LastAddress.RowNumber)));
|
|
91
116
|
}
|
|
117
|
+
/**
|
|
118
|
+
* Returns the body rows from the FsTable, i.e. all rows except the header row (if shown).
|
|
119
|
+
*/
|
|
92
120
|
GetBodyRows(cellsCollection) {
|
|
93
121
|
const this$ = this;
|
|
94
122
|
const firstRowIndex = (this$.ShowHeaderRow ? this$.RangeAddress.FirstAddress.RowNumber + 1 : this$.RangeAddress.FirstAddress.RowNumber) | 0;
|
|
95
123
|
return delay(() => collect((i) => singleton(new FsRow(new FsRangeAddress(new FsAddress(i, this$.RangeAddress.FirstAddress.ColumnNumber), new FsAddress(i, this$.RangeAddress.LastAddress.ColumnNumber)), cellsCollection)), rangeDouble(firstRowIndex, 1, this$.RangeAddress.LastAddress.RowNumber)));
|
|
96
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* Returns the FsRow at the given index from the FsTable.
|
|
127
|
+
*/
|
|
97
128
|
GetRowAt(index, cellsCollection) {
|
|
98
|
-
let arg;
|
|
129
|
+
let arg = void 0;
|
|
99
130
|
const this$ = this;
|
|
100
131
|
if (index <= 0 ? true : index > super.RowCount()) {
|
|
101
|
-
throw
|
|
132
|
+
throw ArgumentOutOfRangeException_$ctor_Z384F8060(int32ToString(index), (arg = super.RowCount() | 0, toText(printf("Row index must be between 1 and %i"))(arg)));
|
|
102
133
|
}
|
|
103
134
|
const rowI = this$.RangeAddress.FirstAddress.RowNumber + index - 1 | 0;
|
|
104
135
|
return new FsRow(new FsRangeAddress(new FsAddress(rowI, this$.RangeAddress.FirstAddress.ColumnNumber), new FsAddress(rowI, this$.RangeAddress.LastAddress.ColumnNumber)), cellsCollection);
|
|
105
136
|
}
|
|
137
|
+
/**
|
|
138
|
+
* Returns the body FsRow at the given index from the FsTable, i.e. all rows except the header row (if shown).
|
|
139
|
+
*/
|
|
106
140
|
GetBodyRowAt(index, cellsCollection) {
|
|
107
141
|
const this$ = this;
|
|
108
142
|
return this$.ShowHeaderRow ? this$.GetRowAt(index + 1, cellsCollection) : this$.GetRowAt(index, cellsCollection);
|
|
109
143
|
}
|
|
144
|
+
/**
|
|
145
|
+
* Updates the FsRangeAddress of the FsTable according to the FsTableFields associated.
|
|
146
|
+
*/
|
|
110
147
|
RescanRange() {
|
|
111
148
|
const this$ = this;
|
|
112
149
|
const rangeAddress = reduce((r1, r2) => r1.Union(r2), map((v) => v.Column.RangeAddress, this$._fieldNames.values()));
|
|
113
150
|
this$.RangeAddress = rangeAddress;
|
|
114
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* Updates the FsRangeAddress of a given FsTable according to the FsTableFields associated.
|
|
154
|
+
*/
|
|
115
155
|
static rescanRange(table) {
|
|
116
156
|
table.RescanRange();
|
|
117
157
|
return table;
|
|
118
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* Returns a unique name consisting of the original name and an initial offset that is raised
|
|
161
|
+
* if the original name with that offset is already present.
|
|
162
|
+
*/
|
|
119
163
|
GetUniqueName(originalName, initialOffset, enforceOffset) {
|
|
120
164
|
const this$ = this;
|
|
121
165
|
let name = originalName + (enforceOffset ? int32ToString(initialOffset) : "");
|
|
@@ -130,9 +174,16 @@ class FsTable extends FsRangeBase {
|
|
|
130
174
|
addToSet(name, this$._uniqueNames);
|
|
131
175
|
return name;
|
|
132
176
|
}
|
|
177
|
+
/**
|
|
178
|
+
* Returns a unique name consisting of the original name and an initial offset that is raised
|
|
179
|
+
* if the original name with that offset is already present.
|
|
180
|
+
*/
|
|
133
181
|
static getUniqueNames(originalName, initialOffset, enforceOffset, table) {
|
|
134
182
|
return table.GetUniqueName(originalName, initialOffset, enforceOffset);
|
|
135
183
|
}
|
|
184
|
+
/**
|
|
185
|
+
* Creates and adds FsTableFields from a sequence of field names to the FsTable.
|
|
186
|
+
*/
|
|
136
187
|
InitFields(fieldNames) {
|
|
137
188
|
const this$ = this;
|
|
138
189
|
iterateIndexed((i, fn) => {
|
|
@@ -140,30 +191,42 @@ class FsTable extends FsRangeBase {
|
|
|
140
191
|
addToDict(this$._fieldNames, fn, tableField);
|
|
141
192
|
}, fieldNames);
|
|
142
193
|
}
|
|
194
|
+
/**
|
|
195
|
+
* Creates and adds FsTableFields from a sequence of field names to a given FsTable.
|
|
196
|
+
*/
|
|
143
197
|
static initFields(fieldNames, table) {
|
|
144
198
|
table.InitFields(fieldNames);
|
|
145
199
|
return table;
|
|
146
200
|
}
|
|
201
|
+
/**
|
|
202
|
+
* Adds a sequence of FsTableFields to the FsTable.
|
|
203
|
+
*/
|
|
147
204
|
AddFields(tableFields) {
|
|
148
205
|
const this$ = this;
|
|
149
206
|
iterate((tf) => {
|
|
150
207
|
addToDict(this$._fieldNames, tf.Name, tf);
|
|
151
208
|
}, tableFields);
|
|
152
209
|
}
|
|
210
|
+
/**
|
|
211
|
+
* Adds a sequence of FsTableFields to a given FsTable.
|
|
212
|
+
*/
|
|
153
213
|
static addFields(tableFields, table) {
|
|
154
214
|
table.AddFields(tableFields);
|
|
155
215
|
return table;
|
|
156
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* Returns the FsTableField with given name. If an FsTableField does not exist under this name in the FsTable, adds it.
|
|
219
|
+
*/
|
|
157
220
|
Field(name, cellsCollection) {
|
|
158
|
-
let s, offset;
|
|
221
|
+
let s = void 0, offset = void 0;
|
|
159
222
|
const this$ = this;
|
|
160
223
|
const matchValue = Dictionary_tryGet(name, this$._fieldNames);
|
|
161
224
|
if (matchValue == null) {
|
|
162
|
-
const newField = new FsTableField(name, (s = map((v) => v.Index, this$._fieldNames.values()), length(s) === 0 ? 0 : max(s, {
|
|
163
|
-
Compare: comparePrimitives
|
|
225
|
+
const newField = new FsTableField(name, (s = map((v) => v.Index | 0, this$._fieldNames.values()), length(s) === 0 ? 0 : max(s, {
|
|
226
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
164
227
|
})) + 1, new FsRangeColumn((offset = this$._fieldNames.size | 0, new FsRangeAddress(new FsAddress(this$.RangeAddress.FirstAddress.RowNumber, this$.RangeAddress.FirstAddress.ColumnNumber + offset), new FsAddress(this$.RangeAddress.LastAddress.RowNumber, this$.RangeAddress.FirstAddress.ColumnNumber + offset)))), some(defaultOf()), some(defaultOf()));
|
|
165
228
|
if (this$.ShowHeaderRow) {
|
|
166
|
-
|
|
229
|
+
newField.HeaderCell(cellsCollection, true).SetValueAs(name);
|
|
167
230
|
}
|
|
168
231
|
addToDict(this$._fieldNames, name, newField);
|
|
169
232
|
this$.RescanRange();
|
|
@@ -172,81 +235,139 @@ class FsTable extends FsRangeBase {
|
|
|
172
235
|
return value(matchValue);
|
|
173
236
|
}
|
|
174
237
|
}
|
|
238
|
+
/**
|
|
239
|
+
* Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this
|
|
240
|
+
* FsTable) and returns the respective FsTableField.
|
|
241
|
+
*/
|
|
175
242
|
GetField(name, cellsCollection) {
|
|
176
243
|
const this$ = this;
|
|
177
244
|
const name_1 = replace(name, "\r\n", "\n");
|
|
178
245
|
try {
|
|
179
246
|
return getItemFromDict(this$.GetFieldNames(cellsCollection), name_1);
|
|
180
247
|
} catch (matchValue) {
|
|
181
|
-
throw new
|
|
248
|
+
throw new Exception("The header row doesn't contain field name '" + name_1 + "'.");
|
|
182
249
|
}
|
|
183
250
|
}
|
|
251
|
+
/**
|
|
252
|
+
* Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this
|
|
253
|
+
* FsTable) and returns the respective FsTableField.
|
|
254
|
+
*/
|
|
184
255
|
static getField(name, cellsCollection, table) {
|
|
185
256
|
return table.GetField(name, cellsCollection);
|
|
186
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* Takes the index of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of
|
|
260
|
+
* this FsTable) and returns the respective FsTableField.
|
|
261
|
+
*/
|
|
187
262
|
GetFieldAt(index, cellsCollection) {
|
|
188
263
|
const this$ = this;
|
|
189
264
|
try {
|
|
190
265
|
return find((ftf) => ftf.Index === index, this$.GetFieldNames(cellsCollection).values());
|
|
191
266
|
} catch (matchValue) {
|
|
192
|
-
throw new
|
|
267
|
+
throw new Exception(`FsTableField with index ${index} does not exist in the FsTable.`);
|
|
193
268
|
}
|
|
194
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of
|
|
272
|
+
* this FsTable) and returns the index of the respective FsTableField.
|
|
273
|
+
*/
|
|
195
274
|
GetFieldIndex(name, cellsCollection) {
|
|
196
275
|
const this$ = this;
|
|
197
276
|
return this$.GetField(name, cellsCollection).Index | 0;
|
|
198
277
|
}
|
|
278
|
+
/**
|
|
279
|
+
* Renames a fieldname of the FsTable if it exists. Else fails.
|
|
280
|
+
*/
|
|
199
281
|
RenameField(oldName, newName) {
|
|
200
282
|
const this$ = this;
|
|
201
283
|
const matchValue = Dictionary_tryGet(oldName, this$._fieldNames);
|
|
202
284
|
if (matchValue == null) {
|
|
203
|
-
throw
|
|
285
|
+
throw ArgumentException_$ctor_Z384F8060("The FsTabelField does not exist in this FsTable", "oldName");
|
|
204
286
|
} else {
|
|
205
287
|
const field = value(matchValue);
|
|
206
288
|
this$._fieldNames.delete(oldName);
|
|
207
289
|
addToDict(this$._fieldNames, newName, field);
|
|
208
290
|
}
|
|
209
291
|
}
|
|
292
|
+
/**
|
|
293
|
+
* Renames a fieldname of the FsTable if it exists. Else fails.
|
|
294
|
+
*/
|
|
210
295
|
static renameField(oldName, newName, table) {
|
|
211
296
|
table.RenameField(oldName, newName);
|
|
212
297
|
return table;
|
|
213
298
|
}
|
|
299
|
+
/**
|
|
300
|
+
* Returns the header cell from a given FsCellsCollection with the given colum index if the cell exists. Else returns None.
|
|
301
|
+
*/
|
|
214
302
|
TryGetHeaderCellOfColumnAt(cellsCollection, colIndex) {
|
|
215
303
|
const this$ = this;
|
|
216
304
|
const fstRowIndex = this$.RangeAddress.FirstAddress.RowNumber | 0;
|
|
217
305
|
return tryFind((c) => c.RowNumber === fstRowIndex, cellsCollection.GetCellsInColumn(colIndex));
|
|
218
306
|
}
|
|
307
|
+
/**
|
|
308
|
+
* Returns the header cell from a given FsCellsCollection with the given column index in a given FsTable if the cell exists. Else
|
|
309
|
+
* returns None.
|
|
310
|
+
*/
|
|
219
311
|
static tryGetHeaderCellOfColumnIndexAt(cellsCollection, colIndex, table) {
|
|
220
312
|
return table.TryGetHeaderCellOfColumnAt(cellsCollection, colIndex);
|
|
221
313
|
}
|
|
314
|
+
/**
|
|
315
|
+
* Returns the header cell of a given FsRangeColumn from a given FsCellsCollection if the cell exists. Else returns None.
|
|
316
|
+
*/
|
|
222
317
|
TryGetHeaderCellOfColumn(cellsCollection, column) {
|
|
223
318
|
const this$ = this;
|
|
224
319
|
return this$.TryGetHeaderCellOfColumnAt(cellsCollection, column.Index);
|
|
225
320
|
}
|
|
321
|
+
/**
|
|
322
|
+
* Returns the header cell of a given FsRangeColumn from a given FsCellsCollection in a given FsTable if the cell exists.
|
|
323
|
+
* Else returns None.
|
|
324
|
+
*/
|
|
226
325
|
static tryGetHeaderCellOfColumn(cellsCollection, column, table) {
|
|
227
326
|
return table.TryGetHeaderCellOfColumn(cellsCollection, column);
|
|
228
327
|
}
|
|
328
|
+
/**
|
|
329
|
+
* Returns the header cell from a given FsCellsCollection with the given colum index.
|
|
330
|
+
*/
|
|
229
331
|
GetHeaderCellOfColumnAt(cellsCollection, colIndex) {
|
|
230
332
|
const this$ = this;
|
|
231
333
|
return value(this$.TryGetHeaderCellOfColumnAt(cellsCollection, colIndex));
|
|
232
334
|
}
|
|
335
|
+
/**
|
|
336
|
+
* Returns the header cell from a given FsCellsCollection with the given colum index in a given FsTable.
|
|
337
|
+
*/
|
|
233
338
|
static getHeaderCellOfColumnIndexAt(cellsCollection, colIndex, table) {
|
|
234
339
|
return table.GetHeaderCellOfColumnAt(cellsCollection, colIndex);
|
|
235
340
|
}
|
|
341
|
+
/**
|
|
342
|
+
* Returns the header cell of a given FsRangeColumn from a given FsCellsCollection.
|
|
343
|
+
*/
|
|
236
344
|
GetHeaderCellOfColumn(cellsCollection, column) {
|
|
237
345
|
const this$ = this;
|
|
238
346
|
return value(this$.TryGetHeaderCellOfColumn(cellsCollection, column));
|
|
239
347
|
}
|
|
348
|
+
/**
|
|
349
|
+
* Returns the header cell of a given FsRangeColumn from a given FsCellsCollection in a given FsTable.
|
|
350
|
+
*/
|
|
240
351
|
static getHeaderCellOfColumn(cellsCollection, column, table) {
|
|
241
352
|
return table.GetHeaderCellOfColumn(cellsCollection, column);
|
|
242
353
|
}
|
|
354
|
+
/**
|
|
355
|
+
* Returns the header cell of a given FsTableField from a given FsCellsCollection.
|
|
356
|
+
*/
|
|
243
357
|
GetHeaderCellOfTableField(cellsCollection, tableField) {
|
|
244
358
|
const this$ = this;
|
|
245
359
|
return tableField.HeaderCell(cellsCollection, this$.ShowHeaderRow);
|
|
246
360
|
}
|
|
361
|
+
/**
|
|
362
|
+
* Returns the header cell of a given FsTableField from a given FsCellsCollection in a given FsTable.
|
|
363
|
+
*/
|
|
247
364
|
static getHeaderCellOfTableField(cellsCollection, tableField, table) {
|
|
248
365
|
return table.GetHeaderCellOfTableField(cellsCollection, tableField);
|
|
249
366
|
}
|
|
367
|
+
/**
|
|
368
|
+
* Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists.
|
|
369
|
+
* Else returns None.
|
|
370
|
+
*/
|
|
250
371
|
TryGetHeaderCellOfTableFieldAt(cellsCollection, tableFieldIndex) {
|
|
251
372
|
const this$ = this;
|
|
252
373
|
return tryPick((tf) => {
|
|
@@ -257,16 +378,30 @@ class FsTable extends FsRangeBase {
|
|
|
257
378
|
}
|
|
258
379
|
}, this$._fieldNames.values());
|
|
259
380
|
}
|
|
381
|
+
/**
|
|
382
|
+
* Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists
|
|
383
|
+
* in a given FsTable. Else returns None.
|
|
384
|
+
*/
|
|
260
385
|
static tryGetHeaderCellOfTableFieldIndexAt(cellsCollection, tableFieldIndex, table) {
|
|
261
386
|
return table.TryGetHeaderCellOfTableFieldAt(cellsCollection, tableFieldIndex);
|
|
262
387
|
}
|
|
388
|
+
/**
|
|
389
|
+
* Returns the header cell from an FsTableField with the given index using a given FsCellsCollection.
|
|
390
|
+
*/
|
|
263
391
|
GetHeaderCellOfTableFieldAt(cellsCollection, tableFieldIndex) {
|
|
264
392
|
const this$ = this;
|
|
265
393
|
return value(this$.TryGetHeaderCellOfTableFieldAt(cellsCollection, tableFieldIndex));
|
|
266
394
|
}
|
|
395
|
+
/**
|
|
396
|
+
* Returns the header cell from an FsTableField with the given index using a given FsCellsCollection in a given FsTable.
|
|
397
|
+
*/
|
|
267
398
|
static getHeaderCellOfTableFieldIndexAt(cellsCollection, tableFieldIndex, table) {
|
|
268
399
|
return table.GetHeaderCellOfTableFieldAt(cellsCollection, tableFieldIndex);
|
|
269
400
|
}
|
|
401
|
+
/**
|
|
402
|
+
* Returns the header cell from an FsTableField with the given name using an FsCellsCollection in the FsTable if the cell exists.
|
|
403
|
+
* Else returns None.
|
|
404
|
+
*/
|
|
270
405
|
TryGetHeaderCellByFieldName(cellsCollection, fieldName) {
|
|
271
406
|
const this$ = this;
|
|
272
407
|
const matchValue = Dictionary_tryGet(fieldName, this$._fieldNames);
|
|
@@ -277,30 +412,54 @@ class FsTable extends FsRangeBase {
|
|
|
277
412
|
return tf.HeaderCell(cellsCollection, this$.ShowHeaderRow);
|
|
278
413
|
}
|
|
279
414
|
}
|
|
415
|
+
/**
|
|
416
|
+
* Returns the header cell from an FsTableField with the given name using an FsCellsCollection in a given FsTable if the cell exists.
|
|
417
|
+
* Else returns None.
|
|
418
|
+
*/
|
|
280
419
|
static tryGetHeaderCellByFieldName(cellsCollection, fieldName, table) {
|
|
281
420
|
return table.TryGetHeaderCellByFieldName(cellsCollection, fieldName);
|
|
282
421
|
}
|
|
422
|
+
/**
|
|
423
|
+
* Returns the data cells from a given FsCellsCollection with the given colum index.
|
|
424
|
+
*/
|
|
283
425
|
GetDataCellsOfColumnAt(cellsCollection, colIndex) {
|
|
284
426
|
const this$ = this;
|
|
285
427
|
return choose((ri) => cellsCollection.TryGetCell(ri, colIndex), toList(rangeDouble(this$.RangeAddress.FirstAddress.RowNumber + 1, 1, this$.RangeAddress.LastAddress.RowNumber)));
|
|
286
428
|
}
|
|
429
|
+
/**
|
|
430
|
+
* Returns the data cells from a given FsCellsCollection with the given colum index in a given FsTable.
|
|
431
|
+
*/
|
|
287
432
|
static getDataCellsOfColumnIndexAt(cellsCollection, colIndex, table) {
|
|
288
433
|
return table.GetDataCellsOfColumnAt(cellsCollection, colIndex);
|
|
289
434
|
}
|
|
435
|
+
/**
|
|
436
|
+
* Creates a deep copy of this FsTable.
|
|
437
|
+
*/
|
|
290
438
|
Copy() {
|
|
291
439
|
const this$ = this;
|
|
292
440
|
const ra = this$.RangeAddress.Copy();
|
|
293
441
|
return new FsTable(this$.Name, ra, false, this$.ShowHeaderRow);
|
|
294
442
|
}
|
|
443
|
+
/**
|
|
444
|
+
* Returns a deep copy of a given FsTable.
|
|
445
|
+
*/
|
|
295
446
|
static copy(table) {
|
|
296
447
|
return table.Copy();
|
|
297
448
|
}
|
|
449
|
+
/**
|
|
450
|
+
* Validates that the FsTable contains at least one body row.
|
|
451
|
+
*/
|
|
298
452
|
static validateForWrite(table, cellsCollection) {
|
|
299
|
-
let arg;
|
|
453
|
+
let arg = void 0;
|
|
300
454
|
if (length(table.GetBodyRows(cellsCollection)) === 0) {
|
|
301
|
-
throw
|
|
455
|
+
throw ArgumentException_$ctor_Z384F8060((arg = table.Name, toText(printf("The table '%s' must contain at least one body row."))(arg)), "table");
|
|
302
456
|
}
|
|
303
457
|
}
|
|
458
|
+
/**
|
|
459
|
+
* Updates the TableFields according to the range of the table and the underlying cellcollection.
|
|
460
|
+
*
|
|
461
|
+
* For this, maps over the range of the table and sets the header of the table fields to the value of the cell. If no cell value is set, the header value and the underlying cell value are set to a default value.
|
|
462
|
+
*/
|
|
304
463
|
RescanFieldNames(cellsCollection) {
|
|
305
464
|
const this$ = this;
|
|
306
465
|
if (this$.ShowHeaderRow) {
|
|
@@ -316,11 +475,11 @@ class FsTable extends FsRangeBase {
|
|
|
316
475
|
if (matchValue == null) {
|
|
317
476
|
if (name === defaultOf() !== (name === "")) {
|
|
318
477
|
name = this$.GetUniqueName("Column", cellPos + 1, true);
|
|
319
|
-
|
|
320
|
-
cell.DataType =
|
|
478
|
+
cell.SetValueAs(name);
|
|
479
|
+
cell.DataType = DataType.String$;
|
|
321
480
|
}
|
|
322
481
|
if (this$._fieldNames.has(name)) {
|
|
323
|
-
throw
|
|
482
|
+
throw ArgumentException_$ctor_Z721C83C5("The header row contains more than one field name '" + name + "'.");
|
|
324
483
|
}
|
|
325
484
|
addToDict(this$._fieldNames, name, new FsTableField(name, cellPos));
|
|
326
485
|
cellPos = cellPos + 1 | 0;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { FsRangeColumn } from '../Ranges/FsRangeColumn.fs.js';
|
|
2
|
-
import { defaultOf, equals } from '../../../../node_modules/@fable-org/fable-library-
|
|
2
|
+
import { defaultOf, equals } from '../../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
3
3
|
import { FsRangeAddress } from '../Ranges/FsRangeAddress.fs.js';
|
|
4
4
|
import { FsAddress } from '../FsAddress.fs.js';
|
|
5
|
-
import { defaultArg, some } from '../../../../node_modules/@fable-org/fable-library-
|
|
6
|
-
import { toFail, printf } from '../../../../node_modules/@fable-org/fable-library-
|
|
7
|
-
import { skip } from '../../../../node_modules/@fable-org/fable-library-
|
|
8
|
-
import { class_type } from '../../../../node_modules/@fable-org/fable-library-
|
|
5
|
+
import { defaultArg, some } from '../../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
6
|
+
import { toFail, printf } from '../../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
7
|
+
import { skip } from '../../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
8
|
+
import { class_type } from '../../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
9
9
|
|
|
10
10
|
class FsTableField {
|
|
11
11
|
constructor(name, index, column, totalsRowLabel, totalsRowFunction) {
|
|
@@ -16,18 +16,32 @@ class FsTableField {
|
|
|
16
16
|
this._name = name;
|
|
17
17
|
this["Column@"] = this._column;
|
|
18
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* Gets or sets the FsRangeColumn of this FsTableField.
|
|
21
|
+
*/
|
|
19
22
|
get Column() {
|
|
20
23
|
const __ = this;
|
|
21
24
|
return __["Column@"];
|
|
22
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* Gets or sets the FsRangeColumn of this FsTableField.
|
|
28
|
+
*/
|
|
23
29
|
set Column(v) {
|
|
24
30
|
const __ = this;
|
|
25
31
|
__["Column@"] = v;
|
|
26
32
|
}
|
|
33
|
+
/**
|
|
34
|
+
* Gets or sets the 0-based index of the FsTableField inside the associated FsTable.
|
|
35
|
+
* Sets the associated FsRangeColumn's column index accordingly.
|
|
36
|
+
*/
|
|
27
37
|
get Index() {
|
|
28
38
|
const this$ = this;
|
|
29
39
|
return this$._index | 0;
|
|
30
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* Gets or sets the 0-based index of the FsTableField inside the associated FsTable.
|
|
43
|
+
* Sets the associated FsRangeColumn's column index accordingly.
|
|
44
|
+
*/
|
|
31
45
|
set Index(index) {
|
|
32
46
|
const this$ = this;
|
|
33
47
|
if (index === this$._index) {
|
|
@@ -41,10 +55,17 @@ class FsTableField {
|
|
|
41
55
|
}
|
|
42
56
|
}
|
|
43
57
|
}
|
|
58
|
+
/**
|
|
59
|
+
* The name of this FsTableField.
|
|
60
|
+
*/
|
|
44
61
|
get Name() {
|
|
45
62
|
const this$ = this;
|
|
46
63
|
return this$._name;
|
|
47
64
|
}
|
|
65
|
+
/**
|
|
66
|
+
* Sets the name of the FsTableField. If `showHeaderRow` is true, takes the respective FsCellsCollection and renames the header cell
|
|
67
|
+
* according to the name of the FsTableField.
|
|
68
|
+
*/
|
|
48
69
|
SetName(name, cellsCollection, showHeaderRow) {
|
|
49
70
|
const this$ = this;
|
|
50
71
|
this$._name = name;
|
|
@@ -52,19 +73,32 @@ class FsTableField {
|
|
|
52
73
|
this$.Column.FirstCell(cellsCollection).SetValueAs(name);
|
|
53
74
|
}
|
|
54
75
|
}
|
|
76
|
+
/**
|
|
77
|
+
* Sets the name of a given FsTableField. If `showHeaderRow` is true, takes the respective FsCellsCollection and renames the header cell
|
|
78
|
+
* according to the name of the FsTableField.
|
|
79
|
+
*/
|
|
55
80
|
static setName(name, cellsCollection, showHeaderRow, tableField) {
|
|
56
81
|
tableField.SetName(name, cellsCollection, showHeaderRow);
|
|
57
82
|
return tableField;
|
|
58
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* Creates a deep copy of this FsTableField.
|
|
86
|
+
*/
|
|
59
87
|
Copy() {
|
|
60
88
|
const this$ = this;
|
|
61
89
|
const col = this$.Column.Copy();
|
|
62
90
|
const ind = this$.Index | 0;
|
|
63
91
|
return new FsTableField(this$.Name, ind, col, some(defaultOf()), some(defaultOf()));
|
|
64
92
|
}
|
|
93
|
+
/**
|
|
94
|
+
* Returns a deep copy of a given FsTableField.
|
|
95
|
+
*/
|
|
65
96
|
static copy(tableField) {
|
|
66
97
|
return tableField.Copy();
|
|
67
98
|
}
|
|
99
|
+
/**
|
|
100
|
+
* Returns the header cell (taken from a given FsCellsCollection) for the FsTableField if `showHeaderRow` is true. Else fails.
|
|
101
|
+
*/
|
|
68
102
|
HeaderCell(cellsCollection, showHeaderRow) {
|
|
69
103
|
const this$ = this;
|
|
70
104
|
if (!showHeaderRow) {
|
|
@@ -74,13 +108,22 @@ class FsTableField {
|
|
|
74
108
|
return this$.Column.FirstCell(cellsCollection);
|
|
75
109
|
}
|
|
76
110
|
}
|
|
111
|
+
/**
|
|
112
|
+
* Returns the header cell (taken from an FsCellsCollection) for a given FsTableField if `showHeaderRow` is true. Else fails.
|
|
113
|
+
*/
|
|
77
114
|
static getHeaderCell(cellsCollection, showHeaderRow, tableField) {
|
|
78
115
|
return tableField.HeaderCell(cellsCollection, showHeaderRow);
|
|
79
116
|
}
|
|
117
|
+
/**
|
|
118
|
+
* Gets the collection of data cells for this FsTableField. Excludes the header and footer cells.
|
|
119
|
+
*/
|
|
80
120
|
DataCells(cellsCollection) {
|
|
81
121
|
const this$ = this;
|
|
82
122
|
return skip(1, this$.Column.Cells(cellsCollection));
|
|
83
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* Gets the collection of data cells for a given FsTableField. Excludes the header and footer cells.
|
|
126
|
+
*/
|
|
84
127
|
static getDataCells(cellsCollection, tableField) {
|
|
85
128
|
return tableField.DataCells(cellsCollection);
|
|
86
129
|
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { FsCell, DataType } from '../FsSpreadsheet.7.0.1/Cells/FsCell.fs.js';
|
|
2
|
+
import { some, value } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
3
|
+
import { fromDate, op_Addition, offset } from '../../../node_modules/@fable-org/fable-library-ts/DateOffset.js';
|
|
4
|
+
import { FsAddress } from '../FsSpreadsheet.7.0.1/FsAddress.fs.js';
|
|
5
|
+
import { toString } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
6
|
+
import { parse as parse$1 } from '../../../node_modules/@fable-org/fable-library-ts/Double.js';
|
|
7
|
+
import { parse } from '../../../node_modules/@fable-org/fable-library-ts/Boolean.js';
|
|
8
|
+
|
|
9
|
+
function writeFromFsCell(fsCell) {
|
|
10
|
+
const matchValue = fsCell.DataType;
|
|
11
|
+
switch (matchValue.tag) {
|
|
12
|
+
case /* Number */
|
|
13
|
+
2:
|
|
14
|
+
return some(fsCell.ValueAsFloat());
|
|
15
|
+
case /* Date */
|
|
16
|
+
3: {
|
|
17
|
+
const dt = fromDate(fsCell.ValueAsDateTime());
|
|
18
|
+
return some(op_Addition(dt, offset(dt)));
|
|
19
|
+
}
|
|
20
|
+
case /* String */
|
|
21
|
+
0:
|
|
22
|
+
return some(fsCell.Value);
|
|
23
|
+
case /* Empty */
|
|
24
|
+
4:
|
|
25
|
+
return some(fsCell.Value);
|
|
26
|
+
default:
|
|
27
|
+
return some(fsCell.ValueAsBool());
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
function readToFsCell(worksheetName, rowIndex, columnIndex, jsCell) {
|
|
31
|
+
const t = jsCell.type;
|
|
32
|
+
const fsadress = FsAddress.fromString(jsCell.address);
|
|
33
|
+
const createFscell = (dt, v) => new FsCell(v, dt, fsadress);
|
|
34
|
+
const vTemp = toString(value(jsCell.value));
|
|
35
|
+
switch (t) {
|
|
36
|
+
case 2:
|
|
37
|
+
return createFscell(DataType.Number$, parse$1(vTemp));
|
|
38
|
+
case 3:
|
|
39
|
+
return createFscell(DataType.String$, vTemp);
|
|
40
|
+
case 4:
|
|
41
|
+
return createFscell(DataType.Date$, function(v) {
|
|
42
|
+
const d = new Date(v);
|
|
43
|
+
return new Date(d.getTime() + d.getTimezoneOffset() * 6e4);
|
|
44
|
+
}(value(jsCell.value)));
|
|
45
|
+
case 5:
|
|
46
|
+
return createFscell(DataType.String$, value(jsCell.value).hyperlink);
|
|
47
|
+
case 6: {
|
|
48
|
+
const matchValue = jsCell.formula;
|
|
49
|
+
switch (matchValue) {
|
|
50
|
+
case "TRUE()":
|
|
51
|
+
return createFscell(DataType.Boolean$, true);
|
|
52
|
+
case "FALSE()":
|
|
53
|
+
return createFscell(DataType.Boolean$, false);
|
|
54
|
+
default:
|
|
55
|
+
return createFscell(DataType.String$, matchValue);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
case 9:
|
|
59
|
+
return createFscell(DataType.Boolean$, parse(vTemp));
|
|
60
|
+
default:
|
|
61
|
+
return createFscell(DataType.String$, vTemp);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export { readToFsCell, writeFromFsCell };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Xlsx } from './Xlsx.fs.js';
|
|
2
2
|
import { Json } from './Json.fs.js';
|
|
3
|
-
import { unwrap } from '../../../node_modules/@fable-org/fable-library-
|
|
3
|
+
import { unwrap } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
4
4
|
|
|
5
5
|
function FsSpreadsheet_FsWorkbook__FsWorkbook_fromXlsxFile_Static_Z721C83C5(path) {
|
|
6
6
|
return Xlsx.fromXlsxFile(path);
|