@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,10 +1,10 @@
|
|
|
1
|
-
import { getItemFromDict, addToDict, addToSet } from '../../../../node_modules/@fable-org/fable-library-
|
|
2
|
-
import { some, value } from '../../../../node_modules/@fable-org/fable-library-
|
|
3
|
-
import { comparePrimitives } from '../../../../node_modules/@fable-org/fable-library-
|
|
4
|
-
import { map, iterate, isEmpty, max, collect, delay, empty, singleton, min, minBy } from '../../../../node_modules/@fable-org/fable-library-
|
|
5
|
-
import { rangeDouble } from '../../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { getItemFromDict, addToDict, addToSet } from '../../../../node_modules/@fable-org/fable-library-ts/MapUtil.js';
|
|
2
|
+
import { some, value } from '../../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
3
|
+
import { comparePrimitives } from '../../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
4
|
+
import { map, iterate, isEmpty, max, collect, delay, empty, singleton, min, minBy } from '../../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
5
|
+
import { rangeDouble } from '../../../../node_modules/@fable-org/fable-library-ts/Range.js';
|
|
6
6
|
import { FsAddress } from '../FsAddress.fs.js';
|
|
7
|
-
import { class_type } from '../../../../node_modules/@fable-org/fable-library-
|
|
7
|
+
import { class_type } from '../../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
8
8
|
|
|
9
9
|
function Dictionary_tryGet(k, dict) {
|
|
10
10
|
if (dict.has(k)) {
|
|
@@ -31,19 +31,31 @@ class FsCellsCollection {
|
|
|
31
31
|
const this$ = this;
|
|
32
32
|
this$._count = count | 0;
|
|
33
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* The highest rowIndex in The FsCellsCollection.
|
|
36
|
+
*/
|
|
34
37
|
get MaxRowNumber() {
|
|
35
38
|
const this$ = this;
|
|
36
39
|
return this$._maxRowUsed | 0;
|
|
37
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* The highest columnIndex in The FsCellsCollection.
|
|
43
|
+
*/
|
|
38
44
|
get MaxColumnNumber() {
|
|
39
45
|
const this$ = this;
|
|
40
46
|
return this$._maxColumnUsed | 0;
|
|
41
47
|
}
|
|
48
|
+
/**
|
|
49
|
+
* Creates a deep copy of the FsCellsCollection.
|
|
50
|
+
*/
|
|
42
51
|
Copy() {
|
|
43
52
|
const this$ = this;
|
|
44
53
|
const cells = map((c) => c.Copy(), this$.GetCells());
|
|
45
54
|
return FsCellsCollection.createFromCells(cells);
|
|
46
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* Returns a deep copy of a given FsCellsCollection.
|
|
58
|
+
*/
|
|
47
59
|
static copy(cellsCollection) {
|
|
48
60
|
return cellsCollection.Copy();
|
|
49
61
|
}
|
|
@@ -69,11 +81,17 @@ class FsCellsCollection {
|
|
|
69
81
|
return true;
|
|
70
82
|
}
|
|
71
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* Creates an FsCellsCollection from the given FsCells.
|
|
86
|
+
*/
|
|
72
87
|
static createFromCells(cells) {
|
|
73
88
|
const fcc = new FsCellsCollection();
|
|
74
89
|
fcc.AddMany(cells);
|
|
75
90
|
return fcc;
|
|
76
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* Empties the whole FsCellsCollection.
|
|
94
|
+
*/
|
|
77
95
|
Clear() {
|
|
78
96
|
const this$ = this;
|
|
79
97
|
this$._count = 0;
|
|
@@ -84,8 +102,11 @@ class FsCellsCollection {
|
|
|
84
102
|
this$._maxColumnUsed = 0;
|
|
85
103
|
return this$;
|
|
86
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* Adds an FsCell of given rowIndex and columnIndex to the FsCellsCollection.
|
|
107
|
+
*/
|
|
87
108
|
Add(cell, row, column) {
|
|
88
|
-
let matchValue, columnsCollection_1;
|
|
109
|
+
let matchValue = void 0, columnsCollection_1 = void 0;
|
|
89
110
|
const this$ = this;
|
|
90
111
|
if (row != null) {
|
|
91
112
|
cell.RowNumber = value(row) | 0;
|
|
@@ -112,23 +133,38 @@ class FsCellsCollection {
|
|
|
112
133
|
delHash.delete(column_1);
|
|
113
134
|
}
|
|
114
135
|
}
|
|
136
|
+
/**
|
|
137
|
+
* Adds an FsCell of given rowIndex and columnIndex to an FsCellsCollection.
|
|
138
|
+
*/
|
|
115
139
|
static addCellWithIndeces(rowIndex, colIndex, cell, cellsCollection) {
|
|
116
140
|
cellsCollection.Add(cell, rowIndex, colIndex);
|
|
117
141
|
}
|
|
142
|
+
/**
|
|
143
|
+
* Adds an FsCell to an FsCellsCollection.
|
|
144
|
+
*/
|
|
118
145
|
static addCell(cell, cellsCollection) {
|
|
119
146
|
cellsCollection.Add(cell);
|
|
120
147
|
return cellsCollection;
|
|
121
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* Adds FsCells to the FsCellsCollection.
|
|
151
|
+
*/
|
|
122
152
|
AddMany(cells) {
|
|
123
153
|
const this$ = this;
|
|
124
154
|
iterate((arg) => {
|
|
125
|
-
|
|
155
|
+
this$.Add(arg);
|
|
126
156
|
}, cells);
|
|
127
157
|
}
|
|
158
|
+
/**
|
|
159
|
+
* Adds FsCells to an FsCellsCollection.
|
|
160
|
+
*/
|
|
128
161
|
static addCells(cells, cellsCollection) {
|
|
129
162
|
cellsCollection.AddMany(cells);
|
|
130
163
|
return cellsCollection;
|
|
131
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* Checks if an FsCell exists at given row- and columnIndex.
|
|
167
|
+
*/
|
|
132
168
|
ContainsCellAt(rowIndex, colIndex) {
|
|
133
169
|
const this$ = this;
|
|
134
170
|
const matchValue = Dictionary_tryGet(rowIndex, this$._rowsCollection);
|
|
@@ -139,23 +175,29 @@ class FsCellsCollection {
|
|
|
139
175
|
return colsCollection.has(colIndex);
|
|
140
176
|
}
|
|
141
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* Checks if an FsCell exists at given row- and columnIndex of a given FsCellsCollection.
|
|
180
|
+
*/
|
|
142
181
|
static containsCellAt(rowIndex, colIndex, cellsCollection) {
|
|
143
182
|
return cellsCollection.ContainsCellAt(rowIndex, colIndex);
|
|
144
183
|
}
|
|
184
|
+
/**
|
|
185
|
+
* Removes an FsCell of given rowIndex and columnIndex from the FsCellsCollection.
|
|
186
|
+
*/
|
|
145
187
|
RemoveCellAt(row, column) {
|
|
146
|
-
let delHash;
|
|
188
|
+
let delHash = void 0;
|
|
147
189
|
const this$ = this;
|
|
148
190
|
this$._count = this$._count - 1 | 0;
|
|
149
191
|
const rowRemoved = FsCellsCollection.DecrementUsage(this$._rowsUsed, row);
|
|
150
192
|
const columnRemoved = FsCellsCollection.DecrementUsage(this$._columnsUsed, column);
|
|
151
193
|
if (rowRemoved && row === this$._maxRowUsed) {
|
|
152
194
|
this$._maxRowUsed = (!isEmpty(this$._rowsUsed.keys()) ? max(this$._rowsUsed.keys(), {
|
|
153
|
-
Compare: comparePrimitives
|
|
195
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
154
196
|
}) : 0) | 0;
|
|
155
197
|
}
|
|
156
198
|
if (columnRemoved && column === this$._maxColumnUsed) {
|
|
157
199
|
this$._maxColumnUsed = (!isEmpty(this$._columnsUsed.keys()) ? max(this$._columnsUsed.keys(), {
|
|
158
|
-
Compare: comparePrimitives
|
|
200
|
+
Compare: (x_1, y_1) => comparePrimitives(x_1, y_1) | 0
|
|
159
201
|
}) : 0) | 0;
|
|
160
202
|
}
|
|
161
203
|
const matchValue = Dictionary_tryGet(row, this$._deleted);
|
|
@@ -179,10 +221,16 @@ class FsCellsCollection {
|
|
|
179
221
|
}
|
|
180
222
|
}
|
|
181
223
|
}
|
|
224
|
+
/**
|
|
225
|
+
* Removes an FsCell of given rowIndex and columnIndex from an FsCellsCollection.
|
|
226
|
+
*/
|
|
182
227
|
static removeCellAt(rowIndex, colIndex, cellsCollection) {
|
|
183
228
|
cellsCollection.RemoveCellAt(rowIndex, colIndex);
|
|
184
229
|
return cellsCollection;
|
|
185
230
|
}
|
|
231
|
+
/**
|
|
232
|
+
* Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection.
|
|
233
|
+
*/
|
|
186
234
|
TryRemoveValueAt(rowIndex, colIndex) {
|
|
187
235
|
const this$ = this;
|
|
188
236
|
const matchValue = Dictionary_tryGet(rowIndex, this$._rowsCollection);
|
|
@@ -195,25 +243,43 @@ class FsCellsCollection {
|
|
|
195
243
|
}
|
|
196
244
|
}
|
|
197
245
|
}
|
|
246
|
+
/**
|
|
247
|
+
* Removes the value of an FsCell at given row- and columnIndex if it exists from a given FsCollection.
|
|
248
|
+
*/
|
|
198
249
|
static tryRemoveValueAt(rowIndex, colIndex, cellsCollection) {
|
|
199
250
|
cellsCollection.TryRemoveValueAt(rowIndex, colIndex);
|
|
200
251
|
return cellsCollection;
|
|
201
252
|
}
|
|
253
|
+
/**
|
|
254
|
+
* Removes the value of an FsCell at given row- and columnIndex from the FsCollection.
|
|
255
|
+
*/
|
|
202
256
|
RemoveValueAt(rowIndex, colIndex) {
|
|
203
257
|
const this$ = this;
|
|
204
258
|
getItemFromDict(getItemFromDict(this$._rowsCollection, rowIndex), colIndex).Value = "";
|
|
205
259
|
}
|
|
260
|
+
/**
|
|
261
|
+
* Removes the value of an FsCell at given row- and columnIndex from a given FsCollection.
|
|
262
|
+
*/
|
|
206
263
|
static removeValueAt(rowIndex, colIndex, cellsCollection) {
|
|
207
264
|
cellsCollection.RemoveValueAt(rowIndex, colIndex);
|
|
208
265
|
return cellsCollection;
|
|
209
266
|
}
|
|
267
|
+
/**
|
|
268
|
+
* Returns all FsCells of the FsCellsCollection.
|
|
269
|
+
*/
|
|
210
270
|
GetCells() {
|
|
211
271
|
const this$ = this;
|
|
212
272
|
return collect((columnsCollection) => columnsCollection.values(), this$._rowsCollection.values());
|
|
213
273
|
}
|
|
274
|
+
/**
|
|
275
|
+
* Returns all FsCells of the FsCellsCollection.
|
|
276
|
+
*/
|
|
214
277
|
static getCells(cellsCollection) {
|
|
215
278
|
return cellsCollection.GetCells();
|
|
216
279
|
}
|
|
280
|
+
/**
|
|
281
|
+
* Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate.
|
|
282
|
+
*/
|
|
217
283
|
GetCellsInRangeBy(rowStart, columnStart, rowEnd, columnEnd, predicate) {
|
|
218
284
|
const this$ = this;
|
|
219
285
|
const finalRow = (rowEnd > this$._maxRowUsed ? this$._maxRowUsed : rowEnd) | 0;
|
|
@@ -226,7 +292,7 @@ class FsCellsCollection {
|
|
|
226
292
|
const columnsCollection = value(matchValue);
|
|
227
293
|
return collect((co) => {
|
|
228
294
|
const matchValue_1 = Dictionary_tryGet(co, columnsCollection);
|
|
229
|
-
let matchResult, cell_1;
|
|
295
|
+
let matchResult = void 0, cell_1 = void 0;
|
|
230
296
|
if (matchValue_1 != null) {
|
|
231
297
|
if (predicate(value(matchValue_1))) {
|
|
232
298
|
matchResult = 0;
|
|
@@ -248,16 +314,28 @@ class FsCellsCollection {
|
|
|
248
314
|
}
|
|
249
315
|
}, rangeDouble(rowStart, 1, finalRow)));
|
|
250
316
|
}
|
|
317
|
+
/**
|
|
318
|
+
* Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate.
|
|
319
|
+
*/
|
|
251
320
|
static filterCellsFromTo(rowStart, columnStart, rowEnd, columnEnd, predicate, cellsCollection) {
|
|
252
321
|
return cellsCollection.GetCellsInRangeBy(rowStart, columnStart, rowEnd, columnEnd, predicate);
|
|
253
322
|
}
|
|
323
|
+
/**
|
|
324
|
+
* Returns the FsCells from given startAddress to lastAddress and fulfilling the predicate.
|
|
325
|
+
*/
|
|
254
326
|
GetCellsInStringRangeBy(startAddress, lastAddress, predicate) {
|
|
255
327
|
const this$ = this;
|
|
256
328
|
return this$.GetCellsInRangeBy(startAddress.RowNumber, startAddress.ColumnNumber, lastAddress.RowNumber, lastAddress.ColumnNumber, predicate);
|
|
257
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress and fulfilling the predicate.
|
|
332
|
+
*/
|
|
258
333
|
static filterCellsFromToAddress(startAddress, lastAddress, predicate, cellsCollection) {
|
|
259
334
|
return cellsCollection.GetCellsInStringRangeBy(startAddress, lastAddress, predicate);
|
|
260
335
|
}
|
|
336
|
+
/**
|
|
337
|
+
* Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd.
|
|
338
|
+
*/
|
|
261
339
|
GetCellsInRange(rowStart, columnStart, rowEnd, columnEnd) {
|
|
262
340
|
const this$ = this;
|
|
263
341
|
const finalRow = (rowEnd > this$._maxRowUsed ? this$._maxRowUsed : rowEnd) | 0;
|
|
@@ -279,16 +357,28 @@ class FsCellsCollection {
|
|
|
279
357
|
}
|
|
280
358
|
}, rangeDouble(rowStart, 1, finalRow)));
|
|
281
359
|
}
|
|
360
|
+
/**
|
|
361
|
+
* Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd.
|
|
362
|
+
*/
|
|
282
363
|
static getCellsFromTo(rowStart, columnStart, rowEnd, columnEnd, cellsCollection) {
|
|
283
364
|
return cellsCollection.GetCellsInRange(rowStart, columnStart, rowEnd, columnEnd);
|
|
284
365
|
}
|
|
366
|
+
/**
|
|
367
|
+
* Returns the FsCells from given startAddress to lastAddress.
|
|
368
|
+
*/
|
|
285
369
|
GetCellsInStringRange(startAddress, lastAddress) {
|
|
286
370
|
const this$ = this;
|
|
287
371
|
return this$.GetCellsInRange(startAddress.RowNumber, startAddress.ColumnNumber, lastAddress.RowNumber, lastAddress.ColumnNumber);
|
|
288
372
|
}
|
|
373
|
+
/**
|
|
374
|
+
* Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress.
|
|
375
|
+
*/
|
|
289
376
|
static getCellsFromToAddress(startAddress, lastAddress, cellsCollection) {
|
|
290
377
|
return cellsCollection.GetCellsInStringRange(startAddress, lastAddress);
|
|
291
378
|
}
|
|
379
|
+
/**
|
|
380
|
+
* Returns the FsCell at given rowIndex and columnIndex if it exists. Otherwise returns None.
|
|
381
|
+
*/
|
|
292
382
|
TryGetCell(row, column) {
|
|
293
383
|
const this$ = this;
|
|
294
384
|
if (row > this$._maxRowUsed ? true : column > this$._maxColumnUsed) {
|
|
@@ -303,43 +393,70 @@ class FsCellsCollection {
|
|
|
303
393
|
}
|
|
304
394
|
}
|
|
305
395
|
}
|
|
396
|
+
/**
|
|
397
|
+
* Returns the FsCell from an FsCellsCollection at given rowIndex and columnIndex if it exists. Otherwise returns None.
|
|
398
|
+
*/
|
|
306
399
|
static tryGetCell(rowIndex, colIndex, cellsCollection) {
|
|
307
400
|
return cellsCollection.TryGetCell(rowIndex, colIndex);
|
|
308
401
|
}
|
|
402
|
+
/**
|
|
403
|
+
* Returns all FsCells in the given columnIndex.
|
|
404
|
+
*/
|
|
309
405
|
GetCellsInColumn(colIndex) {
|
|
310
406
|
const this$ = this;
|
|
311
407
|
return this$.GetCellsInRange(1, colIndex, this$._maxRowUsed, colIndex);
|
|
312
408
|
}
|
|
409
|
+
/**
|
|
410
|
+
* Returns all FsCells in an FsCellsCollection with the given columnIndex.
|
|
411
|
+
*/
|
|
313
412
|
static getCellsInColumn(colIndex, cellsCollection) {
|
|
314
413
|
return cellsCollection.GetCellsInColumn(colIndex);
|
|
315
414
|
}
|
|
415
|
+
/**
|
|
416
|
+
* Returns all FsCells in the given rowIndex.
|
|
417
|
+
*/
|
|
316
418
|
GetCellsInRow(rowIndex) {
|
|
317
419
|
const this$ = this;
|
|
318
420
|
return this$.GetCellsInRange(rowIndex, 1, rowIndex, this$._maxColumnUsed);
|
|
319
421
|
}
|
|
422
|
+
/**
|
|
423
|
+
* Returns all FsCells in an FsCellsCollection with the given rowIndex.
|
|
424
|
+
*/
|
|
320
425
|
static getCellsInRow(rowIndex, cellsCollection) {
|
|
321
426
|
return cellsCollection.GetCellsInRow(rowIndex);
|
|
322
427
|
}
|
|
428
|
+
/**
|
|
429
|
+
* Returns the upper left corner of the FsCellsCollection.
|
|
430
|
+
*/
|
|
323
431
|
GetFirstAddress() {
|
|
324
|
-
let d_1;
|
|
432
|
+
let d_1 = void 0;
|
|
325
433
|
const this$ = this;
|
|
326
434
|
return (isEmpty(this$._rowsCollection) ? true : isEmpty(this$._rowsCollection.keys())) ? new FsAddress(0, 0) : new FsAddress(min(this$._rowsCollection.keys(), {
|
|
327
|
-
Compare: comparePrimitives
|
|
435
|
+
Compare: (x, y) => comparePrimitives(x, y) | 0
|
|
328
436
|
}), (d_1 = minBy((d) => min(d.keys(), {
|
|
329
|
-
Compare: comparePrimitives
|
|
330
|
-
}), this$._rowsCollection.values(), {
|
|
331
|
-
Compare: comparePrimitives
|
|
437
|
+
Compare: (x_1, y_1) => comparePrimitives(x_1, y_1) | 0
|
|
438
|
+
}) | 0, this$._rowsCollection.values(), {
|
|
439
|
+
Compare: (x_2, y_2) => comparePrimitives(x_2, y_2) | 0
|
|
332
440
|
}), min(d_1.keys(), {
|
|
333
|
-
Compare: comparePrimitives
|
|
441
|
+
Compare: (x_3, y_3) => comparePrimitives(x_3, y_3) | 0
|
|
334
442
|
})));
|
|
335
443
|
}
|
|
444
|
+
/**
|
|
445
|
+
* Returns the upper left corner of a given FsCellsCollection.
|
|
446
|
+
*/
|
|
336
447
|
static getFirstAddress(cells) {
|
|
337
448
|
return cells.GetFirstAddress();
|
|
338
449
|
}
|
|
450
|
+
/**
|
|
451
|
+
* Returns the lower right corner of the FsCellsCollection.
|
|
452
|
+
*/
|
|
339
453
|
GetLastAddress() {
|
|
340
454
|
const this$ = this;
|
|
341
455
|
return new FsAddress(this$.MaxRowNumber, this$.MaxColumnNumber);
|
|
342
456
|
}
|
|
457
|
+
/**
|
|
458
|
+
* Returns the lower right corner of a given FsCellsCollection.
|
|
459
|
+
*/
|
|
343
460
|
static getLastAddress(cells) {
|
|
344
461
|
return cells.GetLastAddress();
|
|
345
462
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Union, toString } from '../../../../node_modules/@fable-org/fable-library-
|
|
2
|
-
import { union_type, char_type, class_type } from '../../../../node_modules/@fable-org/fable-library-
|
|
3
|
-
import {
|
|
4
|
-
import { reduce, map, empty, append, isEmpty, tail, head } from '../../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { Union, toString } from '../../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
2
|
+
import { union_type, char_type, class_type } from '../../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
3
|
+
import { DataType } from '../Cells/FsCell.fs.js';
|
|
4
|
+
import { reduce, map, empty, append, isEmpty, tail, head } from '../../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
5
5
|
import { SheetEntity$1_NoneOptional, Message__MapText_11D407F6, SheetEntity$1_Some, SheetEntity$1_NoneRequired, SheetEntity$1__get_Messages } from './Types.fs.js';
|
|
6
|
-
import { toText, printf } from '../../../../node_modules/@fable-org/fable-library-
|
|
6
|
+
import { toText, printf } from '../../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
7
7
|
import { RequiredSource$1_$ctor_2B595, OptionalSource$1_$ctor_2B595, RequiredSource$1__get_Source, OptionalSource$1__get_Source } from './Expression.fs.js';
|
|
8
8
|
|
|
9
9
|
class ReduceOperation extends Union {
|
|
@@ -21,7 +21,7 @@ function ReduceOperation_$reflection() {
|
|
|
21
21
|
}
|
|
22
22
|
function ReduceOperation__Reduce_70D1A69E(this$, values) {
|
|
23
23
|
const separator = this$.fields[0];
|
|
24
|
-
return [
|
|
24
|
+
return [DataType.String$, reduce((a, b) => `${a}${separator}${b}`, map((arg) => toString(arg[1]), values))];
|
|
25
25
|
}
|
|
26
26
|
class CellBuilder {
|
|
27
27
|
constructor() {
|
|
@@ -39,7 +39,7 @@ function CellBuilder_get_Empty() {
|
|
|
39
39
|
}
|
|
40
40
|
function CellBuilder__SignMessages_3F89FFFC(this$, messages) {
|
|
41
41
|
return map((m) => {
|
|
42
|
-
let clo;
|
|
42
|
+
let clo = void 0;
|
|
43
43
|
return Message__MapText_11D407F6(m, (clo = toText(printf("In Cell: %s")), clo));
|
|
44
44
|
}, messages);
|
|
45
45
|
}
|
|
@@ -48,7 +48,7 @@ function CellBuilder__Yield_36B9E420(this$, ro) {
|
|
|
48
48
|
return SheetEntity$1_NoneOptional(empty());
|
|
49
49
|
}
|
|
50
50
|
function CellBuilder__Combine_F07E260(this$, wx1, wx2) {
|
|
51
|
-
let matchResult, l1, l2, messages1, messages2, messages2_1, messages1_1, f1, messages1_2, messages2_2, f2, messages1_3, messages2_3, messages1_4, messages2_4;
|
|
51
|
+
let matchResult = void 0, l1 = void 0, l2 = void 0, messages1 = void 0, messages2 = void 0, messages2_1 = void 0, messages1_1 = void 0, f1 = void 0, messages1_2 = void 0, messages2_2 = void 0, f2 = void 0, messages1_3 = void 0, messages2_3 = void 0, messages1_4 = void 0, messages2_4 = void 0;
|
|
52
52
|
switch (wx1.tag) {
|
|
53
53
|
case /* NoneRequired */
|
|
54
54
|
2: {
|
|
@@ -152,7 +152,7 @@ function CellBuilder__Combine_245D6C8(this$, wx1, wx2) {
|
|
|
152
152
|
return OptionalSource$1_$ctor_2B595(CellBuilder__Combine_F07E260(this$, wx1, OptionalSource$1__get_Source(wx2)));
|
|
153
153
|
}
|
|
154
154
|
function CellBuilder__AsCellElement_6F87C2ED(this$, children) {
|
|
155
|
-
let matchResult, messages, v, messages_1, vals, messages_2, messages_3;
|
|
155
|
+
let matchResult = void 0, messages = void 0, v = void 0, messages_1 = void 0, vals = void 0, messages_2 = void 0, messages_3 = void 0;
|
|
156
156
|
switch (children.tag) {
|
|
157
157
|
case /* NoneRequired */
|
|
158
158
|
2: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { class_type } from '../../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { class_type } from '../../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
2
2
|
import { SheetEntity$1_some_2B595, Message__MapText_11D407F6, SheetEntity$1_NoneOptional, SheetEntity$1_Some, SheetEntity$1_NoneRequired, SheetEntity$1__get_Messages } from './Types.fs.js';
|
|
3
|
-
import { empty, map, append } from '../../../../node_modules/@fable-org/fable-library-
|
|
4
|
-
import { toText, printf } from '../../../../node_modules/@fable-org/fable-library-
|
|
3
|
+
import { empty, map, append } from '../../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
4
|
+
import { toText, printf } from '../../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
5
5
|
import { RequiredSource$1_$ctor_2B595, OptionalSource$1_$ctor_2B595, RequiredSource$1__get_Source, OptionalSource$1__get_Source } from './Expression.fs.js';
|
|
6
6
|
|
|
7
7
|
class RowBuilder {
|
|
@@ -19,12 +19,12 @@ function RowBuilder_get_Empty() {
|
|
|
19
19
|
}
|
|
20
20
|
function RowBuilder__SignMessages_3F89FFFC(this$, messages) {
|
|
21
21
|
return map((m) => {
|
|
22
|
-
let clo;
|
|
22
|
+
let clo = void 0;
|
|
23
23
|
return Message__MapText_11D407F6(m, (clo = toText(printf("In Row: %s")), clo));
|
|
24
24
|
}, messages);
|
|
25
25
|
}
|
|
26
26
|
function RowBuilder__Combine_19F30600(this$, wx1, wx2) {
|
|
27
|
-
let matchResult, l1, l2, messages1, messages2, messages2_1, messages1_1, f1, messages1_2, messages2_2, f2, messages1_3, messages2_3, messages1_4, messages2_4;
|
|
27
|
+
let matchResult = void 0, l1 = void 0, l2 = void 0, messages1 = void 0, messages2 = void 0, messages2_1 = void 0, messages1_1 = void 0, f1 = void 0, messages1_2 = void 0, messages2_2 = void 0, f2 = void 0, messages1_3 = void 0, messages2_3 = void 0, messages1_4 = void 0, messages2_4 = void 0;
|
|
28
28
|
switch (wx1.tag) {
|
|
29
29
|
case /* NoneRequired */
|
|
30
30
|
2: {
|
package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/DSL/Types.fs.js
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Union } from '../../../../node_modules/@fable-org/fable-library-
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { Union } from '../../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
2
|
+
import { Exception } from '../../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
3
|
+
import { union_type, string_type, class_type, list_type, int32_type, tuple_type, obj_type } from '../../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
4
|
+
import { reduce, map, exists, pick, empty } from '../../../../node_modules/@fable-org/fable-library-ts/List.js';
|
|
5
5
|
import { DataType_$reflection } from '../Cells/FsCell.fs.js';
|
|
6
6
|
|
|
7
|
-
function Message_Text(Item) {
|
|
7
|
+
function Message_Text$(Item) {
|
|
8
8
|
return new Message(0, [Item]);
|
|
9
9
|
}
|
|
10
10
|
function Message_Exception(Item) {
|
|
@@ -24,7 +24,7 @@ function Message_$reflection() {
|
|
|
24
24
|
return union_type("FsSpreadsheet.DSL.Message", [], Message, () => [[["Item", string_type]], [["Item", class_type("System.Exception")]]]);
|
|
25
25
|
}
|
|
26
26
|
function Message_message_Z721C83C5(s) {
|
|
27
|
-
return Message_Text(s);
|
|
27
|
+
return Message_Text$(s);
|
|
28
28
|
}
|
|
29
29
|
function Message_message_2BC701FD(e) {
|
|
30
30
|
return Message_Exception(e);
|
|
@@ -32,10 +32,10 @@ function Message_message_2BC701FD(e) {
|
|
|
32
32
|
function Message__MapText_11D407F6(this$, m) {
|
|
33
33
|
if (this$.tag === /* Exception */
|
|
34
34
|
1) {
|
|
35
|
-
|
|
35
|
+
this$.fields[0];
|
|
36
36
|
return this$;
|
|
37
37
|
} else {
|
|
38
|
-
return Message_Text(m(this$.fields[0]));
|
|
38
|
+
return Message_Text$(m(this$.fields[0]));
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
function Message__AsString(this$) {
|
|
@@ -66,7 +66,7 @@ function Message__TryException(this$) {
|
|
|
66
66
|
function Message__get_IsTxt(this$) {
|
|
67
67
|
if (this$.tag === /* Text */
|
|
68
68
|
0) {
|
|
69
|
-
|
|
69
|
+
this$.fields[0];
|
|
70
70
|
return true;
|
|
71
71
|
} else {
|
|
72
72
|
return false;
|
|
@@ -75,7 +75,7 @@ function Message__get_IsTxt(this$) {
|
|
|
75
75
|
function Message__get_IsExc(this$) {
|
|
76
76
|
if (this$.tag === /* Text */
|
|
77
77
|
0) {
|
|
78
|
-
|
|
78
|
+
this$.fields[0];
|
|
79
79
|
return true;
|
|
80
80
|
} else {
|
|
81
81
|
return false;
|
|
@@ -87,10 +87,10 @@ function Messages_format(ms) {
|
|
|
87
87
|
function Messages_fail(ms) {
|
|
88
88
|
const s = Messages_format(ms);
|
|
89
89
|
if (exists(Message__get_IsExc, ms)) {
|
|
90
|
-
|
|
90
|
+
console.log("s");
|
|
91
91
|
throw pick(Message__TryException, ms);
|
|
92
92
|
} else {
|
|
93
|
-
throw new
|
|
93
|
+
throw new Exception(s);
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
function SheetEntity$1_Some(Item1, Item2) {
|
|
@@ -127,7 +127,7 @@ function SheetEntity$1__get_Messages(this$) {
|
|
|
127
127
|
2:
|
|
128
128
|
return this$.fields[0];
|
|
129
129
|
default: {
|
|
130
|
-
|
|
130
|
+
this$.fields[0];
|
|
131
131
|
return this$.fields[1];
|
|
132
132
|
}
|
|
133
133
|
}
|
|
@@ -146,7 +146,7 @@ function ColumnIndex_$reflection() {
|
|
|
146
146
|
return union_type("FsSpreadsheet.DSL.ColumnIndex", [], ColumnIndex, () => [[["Item", int32_type]]]);
|
|
147
147
|
}
|
|
148
148
|
function ColumnIndex__get_Index(self) {
|
|
149
|
-
return self.fields[0];
|
|
149
|
+
return self.fields[0] | 0;
|
|
150
150
|
}
|
|
151
151
|
class RowIndex extends Union {
|
|
152
152
|
constructor(Item) {
|
|
@@ -162,7 +162,7 @@ function RowIndex_$reflection() {
|
|
|
162
162
|
return union_type("FsSpreadsheet.DSL.RowIndex", [], RowIndex, () => [[["Item", int32_type]]]);
|
|
163
163
|
}
|
|
164
164
|
function RowIndex__get_Index(self) {
|
|
165
|
-
return self.fields[0];
|
|
165
|
+
return self.fields[0] | 0;
|
|
166
166
|
}
|
|
167
167
|
function ColumnElement_IndexedCell(Item1, Item2) {
|
|
168
168
|
return new ColumnElement(0, [Item1, Item2]);
|
|
@@ -304,4 +304,4 @@ function Workbook_$reflection() {
|
|
|
304
304
|
return union_type("FsSpreadsheet.DSL.Workbook", [], Workbook, () => [[["Item", list_type(WorkbookElement_$reflection())]]]);
|
|
305
305
|
}
|
|
306
306
|
|
|
307
|
-
export { ColumnElement, ColumnElement_$reflection, ColumnElement_IndexedCell, ColumnElement_UnindexedCell, ColumnIndex, ColumnIndex_$reflection, ColumnIndex__get_Index, Message, Message_$reflection, Message_Exception, Message_Text
|
|
307
|
+
export { ColumnElement, ColumnElement_$reflection, ColumnElement_IndexedCell, ColumnElement_UnindexedCell, ColumnIndex, ColumnIndex_$reflection, ColumnIndex__get_Index, Message, Message_$reflection, Message_Exception, Message_Text$, Message__AsString, Message__MapText_11D407F6, Message__TryException, Message__TryText, Message__get_IsExc, Message__get_IsTxt, Message_message_2BC701FD, Message_message_Z721C83C5, Messages_fail, Messages_format, RowElement, RowElement_$reflection, RowElement_IndexedCell, RowElement_UnindexedCell, RowIndex, RowIndex_$reflection, RowIndex__get_Index, SheetElement, SheetElement_$reflection, SheetElement_IndexedCell, SheetElement_IndexedColumn, SheetElement_IndexedRow, SheetElement_Table, SheetElement_UnindexedCell, SheetElement_UnindexedColumn, SheetElement_UnindexedRow, SheetEntity$1, SheetEntity$1_$reflection, SheetEntity$1_NoneOptional, SheetEntity$1_NoneRequired, SheetEntity$1_Some, SheetEntity$1__get_Messages, SheetEntity$1_some_2B595, TableElement, TableElement_$reflection, TableElement_UnindexedColumn, TableElement_UnindexedRow, TableElement__get_IsColumn, TableElement__get_IsRow, Workbook, WorkbookElement, WorkbookElement_$reflection, WorkbookElement_NamedSheet, WorkbookElement_UnnamedSheet, Workbook_$reflection };
|
package/dist/ts/ts/fable_modules/{FsSpreadsheet.7.0.0-alpha.1 → FsSpreadsheet.7.0.1}/FsAddress.fs.js
RENAMED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { parse } from '../../../node_modules/@fable-org/fable-library-
|
|
2
|
-
import { toText, printf, toFail } from '../../../node_modules/@fable-org/fable-library-
|
|
3
|
-
import { StringBuilder_$ctor, StringBuilder__Append_244C7CD6 } from '../../../node_modules/@fable-org/fable-library-
|
|
4
|
-
import { iterate } from '../../../node_modules/@fable-org/fable-library-
|
|
5
|
-
import { isLetter, isDigit } from '../../../node_modules/@fable-org/fable-library-
|
|
6
|
-
import { toString } from '../../../node_modules/@fable-org/fable-library-
|
|
7
|
-
import {
|
|
8
|
-
import { value, unwrap } from '../../../node_modules/@fable-org/fable-library-
|
|
9
|
-
import { stringHash, identityHash } from '../../../node_modules/@fable-org/fable-library-
|
|
1
|
+
import { parse } from '../../../node_modules/@fable-org/fable-library-ts/Int32.js';
|
|
2
|
+
import { toText, printf, toFail } from '../../../node_modules/@fable-org/fable-library-ts/String.js';
|
|
3
|
+
import { StringBuilder_$ctor, StringBuilder__Append_244C7CD6 } from '../../../node_modules/@fable-org/fable-library-ts/System.Text.js';
|
|
4
|
+
import { iterate } from '../../../node_modules/@fable-org/fable-library-ts/Seq.js';
|
|
5
|
+
import { isLetter, isDigit } from '../../../node_modules/@fable-org/fable-library-ts/Char.js';
|
|
6
|
+
import { toString } from '../../../node_modules/@fable-org/fable-library-ts/Types.js';
|
|
7
|
+
import { toInt64_unchecked, op_Addition, fromUInt32, fromInt32, toUInt32_unchecked } from '../../../node_modules/@fable-org/fable-library-ts/BigInt.js';
|
|
8
|
+
import { value, unwrap } from '../../../node_modules/@fable-org/fable-library-ts/Option.js';
|
|
9
|
+
import { stringHash, identityHash } from '../../../node_modules/@fable-org/fable-library-ts/Util.js';
|
|
10
10
|
import { mergeHashes } from './HashCodes.fs.js';
|
|
11
|
-
import { class_type } from '../../../node_modules/@fable-org/fable-library-
|
|
11
|
+
import { class_type } from '../../../node_modules/@fable-org/fable-library-ts/Reflection.js';
|
|
12
12
|
|
|
13
13
|
const CellReference_indexRegex = /([A-Z]*)(\d*)/gu;
|
|
14
14
|
function CellReference_colAdressToIndex(columnAdress) {
|
|
@@ -35,7 +35,7 @@ function CellReference_indexToColAdress(i) {
|
|
|
35
35
|
} else {
|
|
36
36
|
const mod26 = (index - 1) % 26;
|
|
37
37
|
index_mut = ~~((index - 1) / 26);
|
|
38
|
-
acc_mut = String.fromCharCode(("A".charCodeAt(0) >>> 0) + mod26) + acc;
|
|
38
|
+
acc_mut = String.fromCharCode(("A".charCodeAt(0) >>> 0) + mod26 & 65535) + acc;
|
|
39
39
|
continue loop;
|
|
40
40
|
}
|
|
41
41
|
break;
|
|
@@ -74,17 +74,17 @@ function CellReference_setRowIndex(rowI, reference) {
|
|
|
74
74
|
return CellReference_ofIndices(CellReference_toIndices(reference)[0], rowI);
|
|
75
75
|
}
|
|
76
76
|
function CellReference_moveHorizontal(amount, reference) {
|
|
77
|
-
let value;
|
|
77
|
+
let value = void 0;
|
|
78
78
|
let tupledArg_1;
|
|
79
79
|
const tupledArg = CellReference_toIndices(reference);
|
|
80
|
-
tupledArg_1 = [(value =
|
|
80
|
+
tupledArg_1 = [(value = toInt64_unchecked(op_Addition(toInt64_unchecked(fromUInt32(tupledArg[0])), toInt64_unchecked(fromInt32(amount)))), toUInt32_unchecked(value) >>> 0), tupledArg[1]];
|
|
81
81
|
return CellReference_ofIndices(tupledArg_1[0], tupledArg_1[1]);
|
|
82
82
|
}
|
|
83
83
|
function CellReference_moveVertical(amount, reference) {
|
|
84
|
-
let value;
|
|
84
|
+
let value = void 0;
|
|
85
85
|
let tupledArg_1;
|
|
86
86
|
const tupledArg = CellReference_toIndices(reference);
|
|
87
|
-
tupledArg_1 = [tupledArg[0], (value =
|
|
87
|
+
tupledArg_1 = [tupledArg[0], (value = toInt64_unchecked(op_Addition(toInt64_unchecked(fromUInt32(tupledArg[1])), toInt64_unchecked(fromInt32(amount)))), toUInt32_unchecked(value) >>> 0)];
|
|
88
88
|
return CellReference_ofIndices(tupledArg_1[0], tupledArg_1[1]);
|
|
89
89
|
}
|
|
90
90
|
class FsAddress {
|
|
@@ -131,39 +131,63 @@ class FsAddress {
|
|
|
131
131
|
get FixedColumn() {
|
|
132
132
|
return false;
|
|
133
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* Creates a deep copy of the FsAddress.
|
|
136
|
+
*/
|
|
134
137
|
Copy() {
|
|
135
138
|
const this$ = this;
|
|
136
139
|
const colNo = this$.ColumnNumber | 0;
|
|
137
140
|
return new FsAddress(this$.RowNumber, colNo, this$.FixedRow, this$.FixedColumn);
|
|
138
141
|
}
|
|
142
|
+
/**
|
|
143
|
+
* Returns a deep copy of the given FsAddress.
|
|
144
|
+
*/
|
|
139
145
|
static copy(address) {
|
|
140
146
|
return address.Copy();
|
|
141
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* Updates the row- and columnIndex respective to the given indices.
|
|
150
|
+
*/
|
|
142
151
|
UpdateIndices(rowIndex, colIndex) {
|
|
143
152
|
const self = this;
|
|
144
153
|
self._columnNumber = colIndex | 0;
|
|
145
154
|
self._rowNumber = rowIndex | 0;
|
|
146
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* Updates the row- and columnIndex of a given FsAddress respective to the given indices.
|
|
158
|
+
*/
|
|
147
159
|
static updateIndices(rowIndex, colIndex, address) {
|
|
148
160
|
address.UpdateIndices(rowIndex, colIndex);
|
|
149
161
|
return address;
|
|
150
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* Returns the row- and the columnIndex of the FsAddress.
|
|
165
|
+
*/
|
|
151
166
|
ToIndices() {
|
|
152
167
|
const self = this;
|
|
153
168
|
return [self._rowNumber, self._columnNumber];
|
|
154
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* Returns the row- and the columnIndex of a given FsAddress.
|
|
172
|
+
*/
|
|
155
173
|
static toIndices(address) {
|
|
156
174
|
return address.ToIndices();
|
|
157
175
|
}
|
|
176
|
+
/**
|
|
177
|
+
* Compares the FsAddress with a given other one.
|
|
178
|
+
*/
|
|
158
179
|
Compare(address) {
|
|
159
180
|
const self = this;
|
|
160
181
|
return self.Address === address.Address && self.ColumnNumber === address.ColumnNumber && self.RowNumber === address.RowNumber && self.FixedColumn === address.FixedColumn && self.FixedRow === address.FixedRow;
|
|
161
182
|
}
|
|
183
|
+
/**
|
|
184
|
+
* Checks if 2 FsAddresses are equal.
|
|
185
|
+
*/
|
|
162
186
|
static compare(address1, address2) {
|
|
163
187
|
return address1.Compare(address2);
|
|
164
188
|
}
|
|
165
189
|
GetHashCode() {
|
|
166
|
-
let copyOfStruct, copyOfStruct_1;
|
|
190
|
+
let copyOfStruct = void 0, copyOfStruct_1 = void 0;
|
|
167
191
|
const this$ = this;
|
|
168
192
|
let hash_7;
|
|
169
193
|
let hash_5;
|
|
@@ -175,7 +199,7 @@ class FsAddress {
|
|
|
175
199
|
return mergeHashes((copyOfStruct_1 = this$.FixedRow, identityHash(copyOfStruct_1)), hash_7) | 0;
|
|
176
200
|
}
|
|
177
201
|
Equals(other) {
|
|
178
|
-
let other_1;
|
|
202
|
+
let other_1 = void 0;
|
|
179
203
|
const this$ = this;
|
|
180
204
|
return other instanceof FsAddress && (other_1 = other, this$.Compare(other_1));
|
|
181
205
|
}
|