@nfdi4plants/arctrl 3.1.0 → 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 +219 -59
- package/dist/ts/ts/CWL/CWLTypes.d.ts.map +1 -1
- package/dist/ts/ts/CWL/CWLTypes.js +696 -124
- package/dist/ts/ts/CWL/Decode.d.ts +303 -61
- package/dist/ts/ts/CWL/Decode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Decode.js +1162 -679
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts +37 -0
- package/dist/ts/ts/CWL/DynamicObjHelpers.d.ts.map +1 -0
- package/dist/ts/ts/CWL/DynamicObjHelpers.js +57 -0
- package/dist/ts/ts/CWL/Encode.d.ts +138 -14
- package/dist/ts/ts/CWL/Encode.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Encode.js +798 -522
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts +32 -6
- package/dist/ts/ts/CWL/ExpressionToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ExpressionToolDescription.js +31 -3
- 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 +69 -18
- package/dist/ts/ts/CWL/Inputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Inputs.js +191 -52
- package/dist/ts/ts/CWL/OperationDescription.d.ts +8 -6
- package/dist/ts/ts/CWL/OperationDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/OperationDescription.js +7 -3
- package/dist/ts/ts/CWL/Outputs.d.ts +55 -16
- package/dist/ts/ts/CWL/Outputs.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Outputs.js +170 -75
- package/dist/ts/ts/CWL/ParameterReference.d.ts +15 -9
- package/dist/ts/ts/CWL/ParameterReference.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ParameterReference.js +36 -17
- 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 +183 -66
- package/dist/ts/ts/CWL/Requirements.d.ts.map +1 -1
- package/dist/ts/ts/CWL/Requirements.js +475 -137
- package/dist/ts/ts/CWL/ToolDescription.d.ts +57 -8
- package/dist/ts/ts/CWL/ToolDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/ToolDescription.js +98 -7
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts +30 -7
- package/dist/ts/ts/CWL/WorkflowDescription.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowDescription.js +28 -3
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts +91 -36
- package/dist/ts/ts/CWL/WorkflowSteps.d.ts.map +1 -1
- package/dist/ts/ts/CWL/WorkflowSteps.js +206 -41
- 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 +49 -44
- 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 +38 -18
- 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 +19 -12
- package/dist/ts/ts/Conversion/Person.d.ts +5 -5
- package/dist/ts/ts/Conversion/Person.d.ts.map +1 -1
- package/dist/ts/ts/Conversion/Person.js +57 -25
- 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 +452 -69
- 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 +26 -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 +30 -15
- 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 +86 -47
- package/dist/ts/ts/Conversion.d.ts +24 -21
- package/dist/ts/ts/Conversion.d.ts.map +1 -1
- package/dist/ts/ts/Conversion.js +20 -13
- 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 +585 -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 +10 -10
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +5 -5
- 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 +6 -5
- 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.7 → YAMLicious.1.0.0}/Decode.fs.js +100 -134
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Encode.fs.js +10 -10
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Escapes.fs.js +41 -34
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Persil.fs.js +56 -204
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Preprocessing.fs.js +319 -0
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Reader.fs.js +1884 -0
- 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.7 → YAMLicious.1.0.0}/RegexActivePatterns.fs.js +16 -16
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0/Syntax.fs.js +840 -0
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → YAMLicious.1.0.0}/Writer.fs.js +106 -76
- package/dist/ts/ts/fable_modules/{YAMLicious.1.0.0-alpha.7 → 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.7/FlowToBlock.fs.js +0 -956
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Preprocessing.fs.js +0 -181
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Reader.fs.js +0 -1493
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/Regex.fs.js +0 -21
- package/dist/ts/ts/fable_modules/YAMLicious.1.0.0-alpha.7/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.7 → YAMLicious.1.0.0}/Interop/JsInterop.fs.js +0 -0
|
@@ -1,320 +0,0 @@
|
|
|
1
|
-
import { compare, equals, structuralHash, getEnumerator, toIterator, defaultOf, disposeSafe } from './Util.js';
|
|
2
|
-
import { class_type } from './Reflection.js';
|
|
3
|
-
import { delay, enumerateWhile, append, singleton, empty, toArray } from './Seq.js';
|
|
4
|
-
import { item, fill, copyTo, initialize, setItem } from './Array.js';
|
|
5
|
-
import { max } from './Double.js';
|
|
6
|
-
|
|
7
|
-
class Comparer$1 {
|
|
8
|
-
constructor(comparison) {
|
|
9
|
-
this.comparison = comparison;
|
|
10
|
-
}
|
|
11
|
-
Compare(x, y) {
|
|
12
|
-
const _ = this;
|
|
13
|
-
return _.comparison(x, y) | 0;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
function Comparer$1_$reflection(gen0) {
|
|
17
|
-
return class_type("System.Collections.Generic.Comparer`1", [gen0], Comparer$1);
|
|
18
|
-
}
|
|
19
|
-
function Comparer$1_$ctor_47C913C(comparison) {
|
|
20
|
-
return new Comparer$1(comparison);
|
|
21
|
-
}
|
|
22
|
-
function Comparer$1_get_Default() {
|
|
23
|
-
return Comparer$1_$ctor_47C913C(compare);
|
|
24
|
-
}
|
|
25
|
-
function Comparer$1_Create_47C913C(comparison) {
|
|
26
|
-
return Comparer$1_$ctor_47C913C(comparison);
|
|
27
|
-
}
|
|
28
|
-
function Comparer$1__Compare_5BDDA0(_, x, y) {
|
|
29
|
-
return _.comparison(x, y);
|
|
30
|
-
}
|
|
31
|
-
class EqualityComparer$1 {
|
|
32
|
-
constructor(equals, getHashCode) {
|
|
33
|
-
this.equals = equals;
|
|
34
|
-
this.getHashCode = getHashCode;
|
|
35
|
-
}
|
|
36
|
-
Equals(x, y) {
|
|
37
|
-
const _ = this;
|
|
38
|
-
return _.equals(x, y);
|
|
39
|
-
}
|
|
40
|
-
GetHashCode(x) {
|
|
41
|
-
const _ = this;
|
|
42
|
-
return _.getHashCode(x) | 0;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
function EqualityComparer$1_$reflection(gen0) {
|
|
46
|
-
return class_type("System.Collections.Generic.EqualityComparer`1", [gen0], EqualityComparer$1);
|
|
47
|
-
}
|
|
48
|
-
function EqualityComparer$1_$ctor_Z6EE254AB(equals, getHashCode) {
|
|
49
|
-
return new EqualityComparer$1(equals, getHashCode);
|
|
50
|
-
}
|
|
51
|
-
function EqualityComparer$1_get_Default() {
|
|
52
|
-
return EqualityComparer$1_$ctor_Z6EE254AB(equals, structuralHash);
|
|
53
|
-
}
|
|
54
|
-
function EqualityComparer$1_Create_Z6EE254AB(equals, getHashCode) {
|
|
55
|
-
return EqualityComparer$1_$ctor_Z6EE254AB(equals, getHashCode);
|
|
56
|
-
}
|
|
57
|
-
function EqualityComparer$1__Equals_5BDDA0(_, x, y) {
|
|
58
|
-
return _.equals(x, y);
|
|
59
|
-
}
|
|
60
|
-
function EqualityComparer$1__GetHashCode_2B595(_, x) {
|
|
61
|
-
return _.getHashCode(x);
|
|
62
|
-
}
|
|
63
|
-
class Stack$1 {
|
|
64
|
-
constructor(initialContents, initialCount) {
|
|
65
|
-
this.contents = initialContents;
|
|
66
|
-
this.count = (initialCount | 0);
|
|
67
|
-
}
|
|
68
|
-
GetEnumerator() {
|
|
69
|
-
const _ = this;
|
|
70
|
-
return getEnumerator(delay(() => {
|
|
71
|
-
let index = _.count - 1;
|
|
72
|
-
return enumerateWhile(() => (index >= 0), delay(() => append(singleton(item(index, _.contents)), delay(() => {
|
|
73
|
-
index = ((index - 1) | 0);
|
|
74
|
-
return empty();
|
|
75
|
-
}))));
|
|
76
|
-
}));
|
|
77
|
-
}
|
|
78
|
-
[Symbol.iterator]() {
|
|
79
|
-
return toIterator(getEnumerator(this));
|
|
80
|
-
}
|
|
81
|
-
"System.Collections.IEnumerable.GetEnumerator"() {
|
|
82
|
-
const this$ = this;
|
|
83
|
-
return getEnumerator(this$);
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
function Stack$1_$reflection(gen0) {
|
|
87
|
-
return class_type("System.Collections.Generic.Stack`1", [gen0], Stack$1);
|
|
88
|
-
}
|
|
89
|
-
function Stack$1_$ctor_Z3B4C077E(initialContents, initialCount) {
|
|
90
|
-
return new Stack$1(initialContents, initialCount);
|
|
91
|
-
}
|
|
92
|
-
function Stack$1_$ctor_Z524259A4(initialCapacity) {
|
|
93
|
-
return Stack$1_$ctor_Z3B4C077E(fill(new Array(initialCapacity), 0, initialCapacity, null), 0);
|
|
94
|
-
}
|
|
95
|
-
function Stack$1_$ctor() {
|
|
96
|
-
return Stack$1_$ctor_Z524259A4(4);
|
|
97
|
-
}
|
|
98
|
-
function Stack$1_$ctor_BB573A(xs) {
|
|
99
|
-
const arr = Array.from(xs);
|
|
100
|
-
return Stack$1_$ctor_Z3B4C077E(arr, arr.length);
|
|
101
|
-
}
|
|
102
|
-
function Stack$1__Ensure_Z524259A4(_, newSize) {
|
|
103
|
-
const oldSize = _.contents.length | 0;
|
|
104
|
-
if (newSize > oldSize) {
|
|
105
|
-
const old = _.contents;
|
|
106
|
-
_.contents = fill(new Array(max(newSize, oldSize * 2)), 0, max(newSize, oldSize * 2), null);
|
|
107
|
-
copyTo(old, 0, _.contents, 0, _.count);
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
function Stack$1__get_Count(_) {
|
|
111
|
-
return _.count;
|
|
112
|
-
}
|
|
113
|
-
function Stack$1__Pop(_) {
|
|
114
|
-
_.count = ((_.count - 1) | 0);
|
|
115
|
-
return item(_.count, _.contents);
|
|
116
|
-
}
|
|
117
|
-
function Stack$1__Peek(_) {
|
|
118
|
-
return item(_.count - 1, _.contents);
|
|
119
|
-
}
|
|
120
|
-
function Stack$1__Contains_2B595(_, x) {
|
|
121
|
-
let found = false;
|
|
122
|
-
let i = 0;
|
|
123
|
-
while ((i < _.count) && !found) {
|
|
124
|
-
if (equals(x, item(i, _.contents))) {
|
|
125
|
-
found = true;
|
|
126
|
-
}
|
|
127
|
-
else {
|
|
128
|
-
i = ((i + 1) | 0);
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
return found;
|
|
132
|
-
}
|
|
133
|
-
function Stack$1__TryPeek_1F3DB691(this$, result) {
|
|
134
|
-
if (this$.count > 0) {
|
|
135
|
-
result.contents = Stack$1__Peek(this$);
|
|
136
|
-
return true;
|
|
137
|
-
}
|
|
138
|
-
else {
|
|
139
|
-
return false;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
function Stack$1__TryPop_1F3DB691(this$, result) {
|
|
143
|
-
if (this$.count > 0) {
|
|
144
|
-
result.contents = Stack$1__Pop(this$);
|
|
145
|
-
return true;
|
|
146
|
-
}
|
|
147
|
-
else {
|
|
148
|
-
return false;
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
function Stack$1__Push_2B595(this$, x) {
|
|
152
|
-
Stack$1__Ensure_Z524259A4(this$, this$.count + 1);
|
|
153
|
-
this$.contents[this$.count] = x;
|
|
154
|
-
this$.count = ((this$.count + 1) | 0);
|
|
155
|
-
}
|
|
156
|
-
function Stack$1__Clear(_) {
|
|
157
|
-
_.count = 0;
|
|
158
|
-
fill(_.contents, 0, _.contents.length, defaultOf());
|
|
159
|
-
}
|
|
160
|
-
function Stack$1__TrimExcess(this$) {
|
|
161
|
-
if ((this$.count / this$.contents.length) > 0.9) {
|
|
162
|
-
Stack$1__Ensure_Z524259A4(this$, this$.count);
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
function Stack$1__ToArray(_) {
|
|
166
|
-
return initialize(_.count, (i) => item((_.count - 1) - i, _.contents));
|
|
167
|
-
}
|
|
168
|
-
class Queue$1 {
|
|
169
|
-
constructor(initialContents, initialCount) {
|
|
170
|
-
this.contents = initialContents;
|
|
171
|
-
this.count = (initialCount | 0);
|
|
172
|
-
this.head = 0;
|
|
173
|
-
this.tail = (((initialCount === this.contents.length) ? 0 : initialCount) | 0);
|
|
174
|
-
}
|
|
175
|
-
GetEnumerator() {
|
|
176
|
-
const _ = this;
|
|
177
|
-
return getEnumerator(Queue$1__toSeq(_));
|
|
178
|
-
}
|
|
179
|
-
[Symbol.iterator]() {
|
|
180
|
-
return toIterator(getEnumerator(this));
|
|
181
|
-
}
|
|
182
|
-
"System.Collections.IEnumerable.GetEnumerator"() {
|
|
183
|
-
const this$ = this;
|
|
184
|
-
return getEnumerator(this$);
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
function Queue$1_$reflection(gen0) {
|
|
188
|
-
return class_type("System.Collections.Generic.Queue`1", [gen0], Queue$1);
|
|
189
|
-
}
|
|
190
|
-
function Queue$1_$ctor_Z3B4C077E(initialContents, initialCount) {
|
|
191
|
-
return new Queue$1(initialContents, initialCount);
|
|
192
|
-
}
|
|
193
|
-
function Queue$1_$ctor_Z524259A4(initialCapacity) {
|
|
194
|
-
if (initialCapacity < 0) {
|
|
195
|
-
throw new Error("capacity is less than 0");
|
|
196
|
-
}
|
|
197
|
-
return Queue$1_$ctor_Z3B4C077E(fill(new Array(initialCapacity), 0, initialCapacity, null), 0);
|
|
198
|
-
}
|
|
199
|
-
function Queue$1_$ctor() {
|
|
200
|
-
return Queue$1_$ctor_Z524259A4(4);
|
|
201
|
-
}
|
|
202
|
-
function Queue$1_$ctor_BB573A(xs) {
|
|
203
|
-
const arr = Array.from(xs);
|
|
204
|
-
return Queue$1_$ctor_Z3B4C077E(arr, arr.length);
|
|
205
|
-
}
|
|
206
|
-
function Queue$1__get_Count(_) {
|
|
207
|
-
return _.count;
|
|
208
|
-
}
|
|
209
|
-
function Queue$1__Enqueue_2B595(_, value) {
|
|
210
|
-
if (_.count === Queue$1__size(_)) {
|
|
211
|
-
Queue$1__ensure_Z524259A4(_, _.count + 1);
|
|
212
|
-
}
|
|
213
|
-
_.contents[_.tail] = value;
|
|
214
|
-
_.tail = (((_.tail + 1) % Queue$1__size(_)) | 0);
|
|
215
|
-
_.count = ((_.count + 1) | 0);
|
|
216
|
-
}
|
|
217
|
-
function Queue$1__Dequeue(_) {
|
|
218
|
-
if (_.count === 0) {
|
|
219
|
-
throw new Error("Queue is empty");
|
|
220
|
-
}
|
|
221
|
-
const value = item(_.head, _.contents);
|
|
222
|
-
_.head = (((_.head + 1) % Queue$1__size(_)) | 0);
|
|
223
|
-
_.count = ((_.count - 1) | 0);
|
|
224
|
-
return value;
|
|
225
|
-
}
|
|
226
|
-
function Queue$1__Peek(_) {
|
|
227
|
-
if (_.count === 0) {
|
|
228
|
-
throw new Error("Queue is empty");
|
|
229
|
-
}
|
|
230
|
-
return item(_.head, _.contents);
|
|
231
|
-
}
|
|
232
|
-
function Queue$1__TryDequeue_1F3DB691(this$, result) {
|
|
233
|
-
if (this$.count === 0) {
|
|
234
|
-
return false;
|
|
235
|
-
}
|
|
236
|
-
else {
|
|
237
|
-
result.contents = Queue$1__Dequeue(this$);
|
|
238
|
-
return true;
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
function Queue$1__TryPeek_1F3DB691(this$, result) {
|
|
242
|
-
if (this$.count === 0) {
|
|
243
|
-
return false;
|
|
244
|
-
}
|
|
245
|
-
else {
|
|
246
|
-
result.contents = Queue$1__Peek(this$);
|
|
247
|
-
return true;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
function Queue$1__Contains_2B595(_, x) {
|
|
251
|
-
let found = false;
|
|
252
|
-
let i = 0;
|
|
253
|
-
while ((i < _.count) && !found) {
|
|
254
|
-
if (equals(x, item(Queue$1__toIndex_Z524259A4(_, i), _.contents))) {
|
|
255
|
-
found = true;
|
|
256
|
-
}
|
|
257
|
-
else {
|
|
258
|
-
i = ((i + 1) | 0);
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
return found;
|
|
262
|
-
}
|
|
263
|
-
function Queue$1__Clear(_) {
|
|
264
|
-
_.count = 0;
|
|
265
|
-
_.head = 0;
|
|
266
|
-
_.tail = 0;
|
|
267
|
-
fill(_.contents, 0, Queue$1__size(_), defaultOf());
|
|
268
|
-
}
|
|
269
|
-
function Queue$1__TrimExcess(_) {
|
|
270
|
-
if ((_.count / _.contents.length) > 0.9) {
|
|
271
|
-
Queue$1__ensure_Z524259A4(_, _.count);
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
function Queue$1__ToArray(_) {
|
|
275
|
-
return toArray(Queue$1__toSeq(_));
|
|
276
|
-
}
|
|
277
|
-
function Queue$1__CopyTo_Z3B4C077E(_, target, start) {
|
|
278
|
-
let i = start;
|
|
279
|
-
const enumerator = getEnumerator(Queue$1__toSeq(_));
|
|
280
|
-
try {
|
|
281
|
-
while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
|
|
282
|
-
const item = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
283
|
-
setItem(target, i, item);
|
|
284
|
-
i = ((i + 1) | 0);
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
finally {
|
|
288
|
-
disposeSafe(enumerator);
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
function Queue$1__size(this$) {
|
|
292
|
-
return this$.contents.length;
|
|
293
|
-
}
|
|
294
|
-
function Queue$1__toIndex_Z524259A4(this$, i) {
|
|
295
|
-
return (this$.head + i) % Queue$1__size(this$);
|
|
296
|
-
}
|
|
297
|
-
function Queue$1__ensure_Z524259A4(this$, requiredSize) {
|
|
298
|
-
const newBuffer = fill(new Array(requiredSize), 0, requiredSize, null);
|
|
299
|
-
if (this$.head < this$.tail) {
|
|
300
|
-
copyTo(this$.contents, this$.head, newBuffer, 0, this$.count);
|
|
301
|
-
}
|
|
302
|
-
else {
|
|
303
|
-
copyTo(this$.contents, this$.head, newBuffer, 0, Queue$1__size(this$) - this$.head);
|
|
304
|
-
copyTo(this$.contents, 0, newBuffer, Queue$1__size(this$) - this$.head, this$.tail);
|
|
305
|
-
}
|
|
306
|
-
this$.head = 0;
|
|
307
|
-
this$.contents = newBuffer;
|
|
308
|
-
this$.tail = (((this$.count === Queue$1__size(this$)) ? 0 : this$.count) | 0);
|
|
309
|
-
}
|
|
310
|
-
function Queue$1__toSeq(this$) {
|
|
311
|
-
return delay(() => {
|
|
312
|
-
let i = 0;
|
|
313
|
-
return enumerateWhile(() => (i < this$.count), delay(() => append(singleton(item(Queue$1__toIndex_Z524259A4(this$, i), this$.contents)), delay(() => {
|
|
314
|
-
i = ((i + 1) | 0);
|
|
315
|
-
return empty();
|
|
316
|
-
}))));
|
|
317
|
-
});
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
export { Comparer$1, Comparer$1_$ctor_47C913C, Comparer$1_$reflection, Comparer$1_Create_47C913C, Comparer$1__Compare_5BDDA0, Comparer$1_get_Default, EqualityComparer$1, EqualityComparer$1_$ctor_Z6EE254AB, EqualityComparer$1_$reflection, EqualityComparer$1_Create_Z6EE254AB, EqualityComparer$1__Equals_5BDDA0, EqualityComparer$1__GetHashCode_2B595, EqualityComparer$1_get_Default, Queue$1, Queue$1_$ctor, Queue$1_$ctor_BB573A, Queue$1_$ctor_Z524259A4, Queue$1_$reflection, Queue$1__Clear, Queue$1__Contains_2B595, Queue$1__CopyTo_Z3B4C077E, Queue$1__Dequeue, Queue$1__Enqueue_2B595, Queue$1__Peek, Queue$1__ToArray, Queue$1__TrimExcess, Queue$1__TryDequeue_1F3DB691, Queue$1__TryPeek_1F3DB691, Queue$1__ensure_Z524259A4, Queue$1__get_Count, Queue$1__size, Queue$1__toIndex_Z524259A4, Queue$1__toSeq, Stack$1, Stack$1_$ctor, Stack$1_$ctor_BB573A, Stack$1_$ctor_Z524259A4, Stack$1_$reflection, Stack$1__Clear, Stack$1__Contains_2B595, Stack$1__Ensure_Z524259A4, Stack$1__Peek, Stack$1__Pop, Stack$1__Push_2B595, Stack$1__ToArray, Stack$1__TrimExcess, Stack$1__TryPeek_1F3DB691, Stack$1__TryPop_1F3DB691, Stack$1__get_Count };
|
|
@@ -1,165 +0,0 @@
|
|
|
1
|
-
import { isNullOrEmpty, join, substring, format, replace } from './String.js';
|
|
2
|
-
import { class_type } from './Reflection.js';
|
|
3
|
-
import { int32ToString, clear } from './Util.js';
|
|
4
|
-
import { toString } from './Types.js';
|
|
5
|
-
|
|
6
|
-
class StringBuilder {
|
|
7
|
-
constructor(value, capacity) {
|
|
8
|
-
this.buf = [];
|
|
9
|
-
if (!isNullOrEmpty(value)) {
|
|
10
|
-
void (this.buf.push(value));
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
toString() {
|
|
14
|
-
const _ = this;
|
|
15
|
-
return join("", _.buf);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
function StringBuilder_$reflection() {
|
|
19
|
-
return class_type("System.Text.StringBuilder", undefined, StringBuilder);
|
|
20
|
-
}
|
|
21
|
-
function StringBuilder_$ctor_Z18115A39(value, capacity) {
|
|
22
|
-
return new StringBuilder(value, capacity);
|
|
23
|
-
}
|
|
24
|
-
function StringBuilder_$ctor_Z524259A4(capacity) {
|
|
25
|
-
return StringBuilder_$ctor_Z18115A39("", capacity);
|
|
26
|
-
}
|
|
27
|
-
function StringBuilder_$ctor_Z721C83C5(value) {
|
|
28
|
-
return StringBuilder_$ctor_Z18115A39(value, 16);
|
|
29
|
-
}
|
|
30
|
-
function StringBuilder_$ctor() {
|
|
31
|
-
return StringBuilder_$ctor_Z18115A39("", 16);
|
|
32
|
-
}
|
|
33
|
-
function StringBuilder__Append_Z721C83C5(x, s) {
|
|
34
|
-
void (x.buf.push(s));
|
|
35
|
-
return x;
|
|
36
|
-
}
|
|
37
|
-
function StringBuilder__Append_487EF8FB(x, s, startIndex, count) {
|
|
38
|
-
void (x.buf.push(substring(s, startIndex, count)));
|
|
39
|
-
return x;
|
|
40
|
-
}
|
|
41
|
-
function StringBuilder__Append_244C7CD6(x, c) {
|
|
42
|
-
void (x.buf.push(c));
|
|
43
|
-
return x;
|
|
44
|
-
}
|
|
45
|
-
function StringBuilder__Append_Z524259A4(x, o) {
|
|
46
|
-
void (x.buf.push(int32ToString(o)));
|
|
47
|
-
return x;
|
|
48
|
-
}
|
|
49
|
-
function StringBuilder__Append_5E38073B(x, o) {
|
|
50
|
-
void (x.buf.push(o.toString()));
|
|
51
|
-
return x;
|
|
52
|
-
}
|
|
53
|
-
function StringBuilder__Append_Z1FBCCD16(x, o) {
|
|
54
|
-
void (x.buf.push(toString(o)));
|
|
55
|
-
return x;
|
|
56
|
-
}
|
|
57
|
-
function StringBuilder__Append_4E60E31B(x, o) {
|
|
58
|
-
void (x.buf.push(toString(o)));
|
|
59
|
-
return x;
|
|
60
|
-
}
|
|
61
|
-
function StringBuilder__Append_Z372E4D23(x, cs) {
|
|
62
|
-
void (x.buf.push(cs.join('')));
|
|
63
|
-
return x;
|
|
64
|
-
}
|
|
65
|
-
function StringBuilder__Append_43A65C09(x, s) {
|
|
66
|
-
void (x.buf.push(toString(s)));
|
|
67
|
-
return x;
|
|
68
|
-
}
|
|
69
|
-
function StringBuilder__AppendFormat_433E080(x, fmt, o) {
|
|
70
|
-
void (x.buf.push(format(fmt, o)));
|
|
71
|
-
return x;
|
|
72
|
-
}
|
|
73
|
-
function StringBuilder__AppendFormat_Z3B30EC65(x, fmt, o1, o2) {
|
|
74
|
-
void (x.buf.push(format(fmt, o1, o2)));
|
|
75
|
-
return x;
|
|
76
|
-
}
|
|
77
|
-
function StringBuilder__AppendFormat_10D165E0(x, fmt, o1, o2, o3) {
|
|
78
|
-
void (x.buf.push(format(fmt, o1, o2, o3)));
|
|
79
|
-
return x;
|
|
80
|
-
}
|
|
81
|
-
function StringBuilder__AppendFormat_Z17053F5(x, fmt, arr) {
|
|
82
|
-
void (x.buf.push(format(fmt, ...arr)));
|
|
83
|
-
return x;
|
|
84
|
-
}
|
|
85
|
-
function StringBuilder__AppendFormat_Z696D8D1B(x, provider, fmt, o) {
|
|
86
|
-
void (x.buf.push(format(provider, fmt, o)));
|
|
87
|
-
return x;
|
|
88
|
-
}
|
|
89
|
-
function StringBuilder__AppendFormat_26802C9E(x, provider, fmt, o1, o2) {
|
|
90
|
-
void (x.buf.push(format(provider, fmt, o1, o2)));
|
|
91
|
-
return x;
|
|
92
|
-
}
|
|
93
|
-
function StringBuilder__AppendFormat_Z471ADCBB(x, provider, fmt, o1, o2, o3) {
|
|
94
|
-
void (x.buf.push(format(provider, fmt, o1, o2, o3)));
|
|
95
|
-
return x;
|
|
96
|
-
}
|
|
97
|
-
function StringBuilder__AppendFormat_6C2E3E6E(x, provider, fmt, arr) {
|
|
98
|
-
void (x.buf.push(format(provider, fmt, ...arr)));
|
|
99
|
-
return x;
|
|
100
|
-
}
|
|
101
|
-
function StringBuilder__AppendLine(x) {
|
|
102
|
-
void (x.buf.push("\n"));
|
|
103
|
-
return x;
|
|
104
|
-
}
|
|
105
|
-
function StringBuilder__AppendLine_Z721C83C5(x, s) {
|
|
106
|
-
void (x.buf.push(s));
|
|
107
|
-
void (x.buf.push("\n"));
|
|
108
|
-
return x;
|
|
109
|
-
}
|
|
110
|
-
function StringBuilder__Clear(x) {
|
|
111
|
-
clear(x.buf);
|
|
112
|
-
return x;
|
|
113
|
-
}
|
|
114
|
-
function StringBuilder__get_Chars_Z524259A4(x, index) {
|
|
115
|
-
let len = 0;
|
|
116
|
-
let i = -1;
|
|
117
|
-
while (((i + 1) < x.buf.length) && (len < index)) {
|
|
118
|
-
i = ((i + 1) | 0);
|
|
119
|
-
len = ((len + x.buf[i].length) | 0);
|
|
120
|
-
}
|
|
121
|
-
if (((index < 0) ? true : (i < 0)) ? true : (i >= x.buf.length)) {
|
|
122
|
-
throw new Error("Index was outside the bounds of the array");
|
|
123
|
-
}
|
|
124
|
-
else {
|
|
125
|
-
const pos = ((len - index) - 1) | 0;
|
|
126
|
-
return x.buf[i][pos];
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
function StringBuilder__set_Chars_413E0D0A(x, index, value) {
|
|
130
|
-
let len = 0;
|
|
131
|
-
let i = -1;
|
|
132
|
-
while (((i + 1) < x.buf.length) && (len < index)) {
|
|
133
|
-
i = ((i + 1) | 0);
|
|
134
|
-
len = ((len + x.buf[i].length) | 0);
|
|
135
|
-
}
|
|
136
|
-
if (((index < 0) ? true : (i < 0)) ? true : (i >= x.buf.length)) {
|
|
137
|
-
throw new Error("Index was outside the bounds of the array");
|
|
138
|
-
}
|
|
139
|
-
else {
|
|
140
|
-
const pos = ((len - index) - 1) | 0;
|
|
141
|
-
x.buf[i] = ((x.buf[i].slice(0, (pos - 1) + 1) + value) + x.buf[i].slice(pos + 1, x.buf[i].length));
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
function StringBuilder__Replace_Z766F94C0(x, oldValue, newValue) {
|
|
145
|
-
for (let i = x.buf.length - 1; i >= 0; i--) {
|
|
146
|
-
x.buf[i] = replace(x.buf[i], oldValue, newValue);
|
|
147
|
-
}
|
|
148
|
-
return x;
|
|
149
|
-
}
|
|
150
|
-
function StringBuilder__Replace_Z384F8060(x, oldValue, newValue) {
|
|
151
|
-
const str = replace(toString(x), oldValue, newValue);
|
|
152
|
-
return StringBuilder__Append_Z721C83C5(StringBuilder__Clear(x), str);
|
|
153
|
-
}
|
|
154
|
-
function StringBuilder__get_Length(x) {
|
|
155
|
-
let len = 0;
|
|
156
|
-
for (let i = x.buf.length - 1; i >= 0; i--) {
|
|
157
|
-
len = ((len + x.buf[i].length) | 0);
|
|
158
|
-
}
|
|
159
|
-
return len | 0;
|
|
160
|
-
}
|
|
161
|
-
function StringBuilder__ToString_Z37302880(x, firstIndex, length) {
|
|
162
|
-
return substring(toString(x), firstIndex, length);
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
export { StringBuilder, StringBuilder_$ctor, StringBuilder_$ctor_Z18115A39, StringBuilder_$ctor_Z524259A4, StringBuilder_$ctor_Z721C83C5, StringBuilder_$reflection, StringBuilder__AppendFormat_10D165E0, StringBuilder__AppendFormat_26802C9E, StringBuilder__AppendFormat_433E080, StringBuilder__AppendFormat_6C2E3E6E, StringBuilder__AppendFormat_Z17053F5, StringBuilder__AppendFormat_Z3B30EC65, StringBuilder__AppendFormat_Z471ADCBB, StringBuilder__AppendFormat_Z696D8D1B, StringBuilder__AppendLine, StringBuilder__AppendLine_Z721C83C5, StringBuilder__Append_244C7CD6, StringBuilder__Append_43A65C09, StringBuilder__Append_487EF8FB, StringBuilder__Append_4E60E31B, StringBuilder__Append_5E38073B, StringBuilder__Append_Z1FBCCD16, StringBuilder__Append_Z372E4D23, StringBuilder__Append_Z524259A4, StringBuilder__Append_Z721C83C5, StringBuilder__Clear, StringBuilder__Replace_Z384F8060, StringBuilder__Replace_Z766F94C0, StringBuilder__ToString_Z37302880, StringBuilder__get_Chars_Z524259A4, StringBuilder__get_Length, StringBuilder__set_Chars_413E0D0A };
|
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
import { comparePrimitives, padWithZeros, padLeftAndRightWithZeros } from './Util.js';
|
|
2
|
-
import { toInt64, fromFloat64 } from './BigInt.js';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Calls:
|
|
6
|
-
* - `Math.ceil` if the `value` is **negative**
|
|
7
|
-
* - `Math.floor` if the `value` is **positive**
|
|
8
|
-
* @param value Value to round
|
|
9
|
-
*/
|
|
10
|
-
function signedRound(value) {
|
|
11
|
-
return value < 0 ? Math.ceil(value) : Math.floor(value);
|
|
12
|
-
}
|
|
13
|
-
function create(d = 0, h = 0, m = 0, s = 0, ms = 0) {
|
|
14
|
-
switch (arguments.length) {
|
|
15
|
-
case 1:
|
|
16
|
-
// ticks
|
|
17
|
-
return fromTicks(arguments[0]);
|
|
18
|
-
case 3:
|
|
19
|
-
// h,m,s
|
|
20
|
-
d = 0, h = arguments[0], m = arguments[1], s = arguments[2], ms = 0;
|
|
21
|
-
break;
|
|
22
|
-
default:
|
|
23
|
-
// d,h,m,s,ms
|
|
24
|
-
break;
|
|
25
|
-
}
|
|
26
|
-
return d * 86400000 + h * 3600000 + m * 60000 + s * 1000 + ms;
|
|
27
|
-
}
|
|
28
|
-
function fromTicks(ticks) {
|
|
29
|
-
return Number(BigInt(ticks) / 10000n);
|
|
30
|
-
}
|
|
31
|
-
function fromDays(d) {
|
|
32
|
-
return create(d, 0, 0, 0);
|
|
33
|
-
}
|
|
34
|
-
function fromHours(h) {
|
|
35
|
-
return create(h, 0, 0);
|
|
36
|
-
}
|
|
37
|
-
function fromMinutes(m) {
|
|
38
|
-
return create(0, m, 0);
|
|
39
|
-
}
|
|
40
|
-
function fromSeconds(s) {
|
|
41
|
-
return create(0, 0, s);
|
|
42
|
-
}
|
|
43
|
-
function days(ts) {
|
|
44
|
-
return signedRound(ts / 86400000);
|
|
45
|
-
}
|
|
46
|
-
function hours(ts) {
|
|
47
|
-
return signedRound(ts % 86400000 / 3600000);
|
|
48
|
-
}
|
|
49
|
-
function minutes(ts) {
|
|
50
|
-
return signedRound(ts % 3600000 / 60000);
|
|
51
|
-
}
|
|
52
|
-
function seconds(ts) {
|
|
53
|
-
return signedRound(ts % 60000 / 1000);
|
|
54
|
-
}
|
|
55
|
-
function milliseconds(ts) {
|
|
56
|
-
return signedRound(ts % 1000);
|
|
57
|
-
}
|
|
58
|
-
function ticks(ts) {
|
|
59
|
-
return toInt64(fromFloat64(ts * 10000));
|
|
60
|
-
}
|
|
61
|
-
function totalDays(ts) {
|
|
62
|
-
return ts / 86400000;
|
|
63
|
-
}
|
|
64
|
-
function totalHours(ts) {
|
|
65
|
-
return ts / 3600000;
|
|
66
|
-
}
|
|
67
|
-
function totalMinutes(ts) {
|
|
68
|
-
return ts / 60000;
|
|
69
|
-
}
|
|
70
|
-
function totalSeconds(ts) {
|
|
71
|
-
return ts / 1000;
|
|
72
|
-
}
|
|
73
|
-
function negate(ts) {
|
|
74
|
-
return ts * -1;
|
|
75
|
-
}
|
|
76
|
-
function add(ts1, ts2) {
|
|
77
|
-
return ts1 + ts2;
|
|
78
|
-
}
|
|
79
|
-
function subtract(ts1, ts2) {
|
|
80
|
-
return ts1 - ts2;
|
|
81
|
-
}
|
|
82
|
-
function multiply(ts, factor) {
|
|
83
|
-
return ts * factor;
|
|
84
|
-
}
|
|
85
|
-
function divide(ts, b) {
|
|
86
|
-
return ts / b;
|
|
87
|
-
}
|
|
88
|
-
const op_Addition = add;
|
|
89
|
-
const op_Subtraction = subtract;
|
|
90
|
-
const op_Multiply = multiply;
|
|
91
|
-
const op_Division = divide;
|
|
92
|
-
const compare = comparePrimitives;
|
|
93
|
-
const compareTo = comparePrimitives;
|
|
94
|
-
function duration(x) {
|
|
95
|
-
return Math.abs(x);
|
|
96
|
-
}
|
|
97
|
-
function toString(ts, format = "c", _provider) {
|
|
98
|
-
if (["c", "g", "G"].indexOf(format) === -1) {
|
|
99
|
-
throw new Error("Custom formats are not supported");
|
|
100
|
-
}
|
|
101
|
-
const d = Math.abs(days(ts));
|
|
102
|
-
const h = Math.abs(hours(ts));
|
|
103
|
-
const m = Math.abs(minutes(ts));
|
|
104
|
-
const s = Math.abs(seconds(ts));
|
|
105
|
-
const ms = Math.abs(milliseconds(ts));
|
|
106
|
-
const sign = ts < 0 ? "-" : "";
|
|
107
|
-
return `${sign}${d === 0 && (format === "c" || format === "g") ? "" : format === "c" ? d + "." : d + ":"}${format === "g" ? h : padWithZeros(h, 2)}:${padWithZeros(m, 2)}:${padWithZeros(s, 2)}${ms === 0 && (format === "c" || format === "g") ? "" : format === "g" ? "." + padWithZeros(ms, 3) : "." + padLeftAndRightWithZeros(ms, 3, 7)}`;
|
|
108
|
-
}
|
|
109
|
-
function parse(str) {
|
|
110
|
-
const firstDot = str.search("\\.");
|
|
111
|
-
const firstColon = str.search("\\:");
|
|
112
|
-
if (firstDot === -1 && firstColon === -1) { // There is only a day ex: 4
|
|
113
|
-
const d = parseInt(str, 0);
|
|
114
|
-
if (isNaN(d)) {
|
|
115
|
-
throw new Error(`String '${str}' was not recognized as a valid TimeSpan.`);
|
|
116
|
-
}
|
|
117
|
-
else {
|
|
118
|
-
return create(d, 0, 0, 0, 0);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
if (firstColon > 0) { // process time part
|
|
122
|
-
// WIP: (-?)(((\d+)\.)?([0-9]|0[0-9]|1[0-9]|2[0-3]):(\d+)(:\d+(\.\d{1,7})?)?|\d+(?:(?!\.)))
|
|
123
|
-
const r = /^(-?)((\d+)\.)?(?:0*)([0-9]|0[0-9]|1[0-9]|2[0-3]):(?:0*)([0-5][0-9]|[0-9])(:(?:0*)([0-5][0-9]|[0-9]))?\.?(\d+)?$/.exec(str);
|
|
124
|
-
if (r != null && r[4] != null && r[5] != null) {
|
|
125
|
-
let d = 0;
|
|
126
|
-
let ms = 0;
|
|
127
|
-
let s = 0;
|
|
128
|
-
const sign = r[1] != null && r[1] === "-" ? -1 : 1;
|
|
129
|
-
const h = +r[4];
|
|
130
|
-
const m = +r[5];
|
|
131
|
-
if (r[3] != null) {
|
|
132
|
-
d = +r[3];
|
|
133
|
-
}
|
|
134
|
-
if (r[7] != null) {
|
|
135
|
-
s = +r[7];
|
|
136
|
-
}
|
|
137
|
-
if (r[8] != null) {
|
|
138
|
-
// Depending on the number of decimals passed, we need to adapt the numbers
|
|
139
|
-
switch (r[8].length) {
|
|
140
|
-
case 1:
|
|
141
|
-
ms = +r[8] * 100;
|
|
142
|
-
break;
|
|
143
|
-
case 2:
|
|
144
|
-
ms = +r[8] * 10;
|
|
145
|
-
break;
|
|
146
|
-
case 3:
|
|
147
|
-
ms = +r[8];
|
|
148
|
-
break;
|
|
149
|
-
case 4:
|
|
150
|
-
ms = +r[8] / 10;
|
|
151
|
-
break;
|
|
152
|
-
case 5:
|
|
153
|
-
ms = +r[8] / 100;
|
|
154
|
-
break;
|
|
155
|
-
case 6:
|
|
156
|
-
ms = +r[8] / 1000;
|
|
157
|
-
break;
|
|
158
|
-
case 7:
|
|
159
|
-
ms = +r[8] / 10000;
|
|
160
|
-
break;
|
|
161
|
-
default:
|
|
162
|
-
throw new Error(`String '${str}' was not recognized as a valid TimeSpan.`);
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
return sign * create(d, h, m, s, ms);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
throw new Error(`String '${str}' was not recognized as a valid TimeSpan.`);
|
|
169
|
-
}
|
|
170
|
-
function tryParse(v, defValue) {
|
|
171
|
-
try {
|
|
172
|
-
defValue.contents = parse(v);
|
|
173
|
-
return true;
|
|
174
|
-
}
|
|
175
|
-
catch {
|
|
176
|
-
return false;
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
export { add, compare, compareTo, create, days, divide, duration, fromDays, fromHours, fromMinutes, fromSeconds, fromTicks, hours, milliseconds, minutes, multiply, negate, op_Addition, op_Division, op_Multiply, op_Subtraction, parse, seconds, subtract, ticks, toString, totalDays, totalHours, totalMinutes, totalSeconds, tryParse };
|