@nfdi4plants/arctrl 3.0.0-beta.4 → 3.0.0-beta.6
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/node_modules/@fable-org/fable-library-js/Array.js +894 -4
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +121 -3
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +279 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +101 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +187 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +156 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +183 -7
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +217 -5
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +154 -5
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +20 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +30 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +68 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +6 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +98 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +18 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +601 -5
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +10 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +760 -16
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +26 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +18 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +36 -4
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +35 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +26 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +355 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +21 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +133 -1
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +543 -8
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +53 -4
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +673 -41
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +197 -4
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +128 -3
- package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +8 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +180 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +20 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +406 -2
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +2 -2
- package/dist/ts/ts/ARC.d.ts +12 -5
- package/dist/ts/ts/ARC.d.ts.map +1 -1
- package/dist/ts/ts/ARC.js +172 -93
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
- package/dist/ts/ts/Contract/ARC.js +8 -1
- package/dist/ts/ts/Contract/ArcAssay.js +14 -5
- package/dist/ts/ts/Contract/ArcInvestigation.js +10 -1
- package/dist/ts/ts/Contract/ArcRun.js +19 -6
- package/dist/ts/ts/Contract/ArcStudy.js +19 -6
- package/dist/ts/ts/Contract/ArcWorkflow.js +19 -6
- package/dist/ts/ts/Contract/Contract.js +42 -1
- package/dist/ts/ts/Contract/Datamap.js +61 -17
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
- package/dist/ts/ts/Contract/Git.js +22 -6
- package/dist/ts/ts/Contract/License.d.ts +5 -0
- package/dist/ts/ts/Contract/License.d.ts.map +1 -0
- package/dist/ts/ts/Contract/License.js +34 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +31 -6
- package/dist/ts/ts/ContractIO/ContractIO.js +5 -5
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +16 -4
- package/dist/ts/ts/Conversion.js +321 -48
- package/dist/ts/ts/Core/ArcTypes.js +216 -15
- package/dist/ts/ts/Core/Comment.js +11 -1
- package/dist/ts/ts/Core/CommentList.js +77 -2
- package/dist/ts/ts/Core/Conversion.js +123 -43
- package/dist/ts/ts/Core/Data.js +9 -2
- package/dist/ts/ts/Core/DataContext.js +19 -4
- package/dist/ts/ts/Core/DataFile.js +38 -1
- package/dist/ts/ts/Core/DataMap.js +111 -5
- package/dist/ts/ts/Core/Helper/Collections.js +106 -5
- package/dist/ts/ts/Core/Helper/HashCodes.js +4 -4
- package/dist/ts/ts/Core/Helper/Identifier.js +100 -2
- package/dist/ts/ts/Core/Helper/Regex.js +134 -2
- package/dist/ts/ts/Core/Helper/SemVer.js +23 -2
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +3 -1
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -1
- package/dist/ts/ts/Core/IdentifierSetters.js +27 -1
- package/dist/ts/ts/Core/OntologyAnnotation.js +4 -1
- package/dist/ts/ts/Core/OntologySourceReference.js +8 -1
- package/dist/ts/ts/Core/Person.js +8 -1
- package/dist/ts/ts/Core/Process/ColumnIndex.js +121 -4
- package/dist/ts/ts/Core/Process/Component.js +37 -4
- package/dist/ts/ts/Core/Process/Factor.js +9 -4
- package/dist/ts/ts/Core/Process/FactorValue.js +61 -4
- package/dist/ts/ts/Core/Process/Material.js +14 -4
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +41 -3
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +67 -4
- package/dist/ts/ts/Core/Process/MaterialType.js +15 -1
- package/dist/ts/ts/Core/Process/Process.js +150 -7
- package/dist/ts/ts/Core/Process/ProcessInput.js +48 -8
- package/dist/ts/ts/Core/Process/ProcessOutput.js +44 -7
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +10 -5
- package/dist/ts/ts/Core/Process/ProcessSequence.js +127 -6
- package/dist/ts/ts/Core/Process/Protocol.js +78 -4
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +6 -2
- package/dist/ts/ts/Core/Process/Sample.js +21 -3
- package/dist/ts/ts/Core/Process/Source.js +13 -3
- package/dist/ts/ts/Core/Publication.js +8 -1
- package/dist/ts/ts/Core/Table/ArcTable.js +34 -25
- package/dist/ts/ts/Core/Table/ArcTableAux.js +150 -23
- package/dist/ts/ts/Core/Table/ArcTables.js +24 -15
- package/dist/ts/ts/Core/Table/CompositeCell.js +7 -3
- package/dist/ts/ts/Core/Table/CompositeColumn.js +8 -4
- package/dist/ts/ts/Core/Table/CompositeHeader.js +18 -15
- package/dist/ts/ts/Core/Template.js +12 -2
- package/dist/ts/ts/Core/Templates.js +8 -4
- package/dist/ts/ts/Core/Value.js +7 -3
- package/dist/ts/ts/CrossAsync.js +11 -1
- package/dist/ts/ts/FileSystem/Commit.js +18 -0
- package/dist/ts/ts/FileSystem/FileSystem.js +8 -3
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +1 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/FileSystemTree.js +20 -13
- package/dist/ts/ts/FileSystem/Path.d.ts +2 -0
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
- package/dist/ts/ts/FileSystem/Path.js +17 -3
- package/dist/ts/ts/Json/Assay.d.ts +1 -1
- package/dist/ts/ts/Json/Assay.js +28 -28
- package/dist/ts/ts/Json/Comment.js +10 -10
- package/dist/ts/ts/Json/Data.js +6 -6
- package/dist/ts/ts/Json/DataMap/DataContext.js +4 -4
- package/dist/ts/ts/Json/DataMap/DataMap.js +2 -2
- package/dist/ts/ts/Json/Decode.js +14 -9
- package/dist/ts/ts/Json/Encode.js +43 -11
- package/dist/ts/ts/Json/Investigation.js +40 -22
- package/dist/ts/ts/Json/OntologyAnnotation.js +5 -5
- package/dist/ts/ts/Json/OntologySourceReference.js +2 -2
- package/dist/ts/ts/Json/Person.js +26 -26
- package/dist/ts/ts/Json/Process/Component.d.ts +6 -4
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/Component.js +27 -7
- package/dist/ts/ts/Json/Process/Factor.js +3 -3
- package/dist/ts/ts/Json/Process/FactorValue.js +8 -8
- package/dist/ts/ts/Json/Process/Material.js +9 -9
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +1 -1
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +8 -8
- package/dist/ts/ts/Json/Process/Process.js +12 -12
- package/dist/ts/ts/Json/Process/ProcessInput.js +4 -4
- package/dist/ts/ts/Json/Process/ProcessOutput.js +3 -3
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +11 -8
- package/dist/ts/ts/Json/Process/Protocol.js +13 -13
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +4 -2
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -1
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +21 -12
- package/dist/ts/ts/Json/Process/Sample.js +14 -14
- package/dist/ts/ts/Json/Process/Source.js +9 -9
- package/dist/ts/ts/Json/Process/Value.js +1 -1
- package/dist/ts/ts/Json/PropertyValue.js +1 -1
- package/dist/ts/ts/Json/Publication.js +6 -6
- package/dist/ts/ts/Json/ROCrate/LDContext.js +1 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +3 -3
- package/dist/ts/ts/Json/ROCrate/LDNode.js +19 -19
- package/dist/ts/ts/Json/Run.d.ts +11 -0
- package/dist/ts/ts/Json/Run.d.ts.map +1 -0
- package/dist/ts/ts/Json/Run.js +76 -0
- package/dist/ts/ts/Json/StringTable.js +1 -1
- package/dist/ts/ts/Json/Study.js +34 -34
- package/dist/ts/ts/Json/Table/ArcTable.js +29 -29
- package/dist/ts/ts/Json/Table/CellTable.js +6 -6
- package/dist/ts/ts/Json/Table/CompositeCell.js +4 -4
- package/dist/ts/ts/Json/Table/CompositeHeader.js +2 -2
- package/dist/ts/ts/Json/Table/IOType.js +1 -1
- package/dist/ts/ts/Json/Table/OATable.js +7 -7
- package/dist/ts/ts/Json/Table/Templates.js +92 -6
- package/dist/ts/ts/Json/Workflow.d.ts +11 -0
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -0
- package/dist/ts/ts/Json/Workflow.js +93 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +27 -1
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +17 -1
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +19 -1
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +27 -1
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +20 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +18 -1
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +20 -1
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +16 -1
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +25 -1
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +24 -1
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +23 -1
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +20 -1
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +19 -1
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +19 -1
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +35 -1
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +61 -0
- package/dist/ts/ts/Json.d.ts +34 -2
- package/dist/ts/ts/Json.d.ts.map +1 -1
- package/dist/ts/ts/Json.js +129 -2
- package/dist/ts/ts/JsonIO/Assay.js +15 -3
- package/dist/ts/ts/JsonIO/Investigation.js +15 -3
- package/dist/ts/ts/JsonIO/LDObject.js +17 -3
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +12 -2
- package/dist/ts/ts/JsonIO/Person.d.ts +16 -0
- package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Person.js +67 -0
- package/dist/ts/ts/JsonIO/Run.d.ts +10 -0
- package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Run.js +50 -0
- package/dist/ts/ts/JsonIO/Study.js +15 -3
- package/dist/ts/ts/JsonIO/Table/Compression.js +3 -3
- package/dist/ts/ts/JsonIO/Table/Templates.js +60 -5
- package/dist/ts/ts/JsonIO/Workflow.d.ts +10 -0
- package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Workflow.js +50 -0
- package/dist/ts/ts/License.d.ts +39 -0
- package/dist/ts/ts/License.d.ts.map +1 -0
- package/dist/ts/ts/License.js +123 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts +69 -0
- package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/CreativeWork.js +450 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +1 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -1
- package/dist/ts/ts/ROCrate/Generic/Dataset.js +27 -1
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/File.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/LabProcess.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/Organization.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/Person.js +7 -2
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +19 -15
- package/dist/ts/ts/ROCrate/Generic/Sample.js +5 -1
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +5 -1
- package/dist/ts/ts/ROCrate/LDContext.js +15 -6
- package/dist/ts/ts/ROCrate/LDObject.js +53 -17
- package/dist/ts/ts/ROCrateIO.d.ts +9 -3
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
- package/dist/ts/ts/ROCrateIO.js +67 -14
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +18 -15
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +5 -4
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +40 -17
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +4 -4
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +30 -15
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +32 -18
- package/dist/ts/ts/Spreadsheet/ArcRun.js +23 -8
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +22 -7
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +23 -8
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +75 -5
- package/dist/ts/ts/Spreadsheet/DataMap.js +1 -1
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +4 -4
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +8 -8
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +4 -4
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +2 -2
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -3
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +9 -3
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -4
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -5
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +1 -1
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +10 -8
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +5 -5
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +6 -6
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +246 -10
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +19 -13
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +5 -5
- package/dist/ts/ts/Template.Web.js +5 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +8 -1
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +10 -3
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +1 -0
- package/dist/ts/ts/Xlsx.d.ts +21 -1
- package/dist/ts/ts/Xlsx.d.ts.map +1 -1
- package/dist/ts/ts/Xlsx.js +81 -1
- package/dist/ts/ts/Yaml/ValidationPackage.js +18 -2
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +5 -2
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +27 -4
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +14 -3
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +30 -4
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +5 -1
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +65 -2
- package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +257 -1
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +71 -1
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +11 -1
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +188 -11
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +80 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +63 -4
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +17 -7
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js +198 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Expression.fs.js +46 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js +131 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js +307 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +38 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +11 -4
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +12 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +9 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +14 -7
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +31 -1
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Cell.fs.js +65 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Column.fs.js +38 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Row.fs.js +38 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Table.fs.js +34 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +49 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Workbook.fs.js +44 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Worksheet.fs.js +129 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +9 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +82 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +12 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +17 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +9 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +12 -5
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +12 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +2 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +42 -3
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Json.fs.js +53 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +9 -9
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +1 -1
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +2 -2
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +5 -1
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +730 -23
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +192 -7
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +45 -1
- package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +15 -2
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1383 -15
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +45 -4
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +10 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +5 -5
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +16 -6
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +26 -23
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +1 -1
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +8 -8
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +18 -2
- package/package.json +1 -1
- package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts +0 -2
- package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
- package/dist/ts/ts/FileSystem/DefaultGitattributes.js +0 -3
- package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts +0 -2
- package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
- package/dist/ts/ts/FileSystem/DefaultGitignore.js +0 -3
|
@@ -1,20 +1,40 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
1
|
+
import { indexed, map, choose, initialize, maxBy, tryPick, fold, iterate, isEmpty, length, tryItem, delay, append as append$1 } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
2
|
+
import { map as map$1, value, defaultArg } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
3
|
+
import { ofSeq, tryFind } from '../../../node_modules/@fable-org/fable-library-js/Map.js';
|
|
4
|
+
import { comparePrimitives, equals } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
5
|
+
import { DataType_String } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js';
|
|
6
|
+
import { RowBuilder_$ctor, RowBuilder__Combine_19F30600, RowBuilder_get_Empty } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js';
|
|
7
|
+
import { SheetEntity$1_some_2B595, Messages_format, RowElement_UnindexedCell, RowElement_IndexedCell, ColumnIndex } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js';
|
|
8
|
+
import { singleton, empty, append, exists, find, cons, initialize as initialize$1, map as map$2 } from '../../../node_modules/@fable-org/fable-library-js/List.js';
|
|
9
|
+
import { CellBuilder__AsCellElement_6F87C2ED, CellBuilder_$ctor } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js';
|
|
8
10
|
import { FsRangeAddress } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js';
|
|
9
|
-
import {
|
|
11
|
+
import { FsAddress } from '../../fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js';
|
|
12
|
+
import { Record } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
13
|
+
import { record_type, class_type, list_type, int32_type, tuple_type, string_type } from '../../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
14
|
+
import { Dictionary_tryGetValue, Seq_trySkip } from '../CollectionAux.js';
|
|
10
15
|
import { getItemFromDict, addToDict } from '../../../node_modules/@fable-org/fable-library-js/MapUtil.js';
|
|
11
16
|
import { Dictionary_init } from '../../Core/Helper/Collections.js';
|
|
17
|
+
import { toFail, printf } from '../../../node_modules/@fable-org/fable-library-js/String.js';
|
|
12
18
|
import { Remark, Comment$ } from '../../Core/Comment.js';
|
|
13
19
|
import { Comment_$007CComment$007C_$007C, Remark_$007CRemark$007C_$007C, Comment_wrapCommentKey } from './Comment.js';
|
|
14
20
|
|
|
15
21
|
function SparseRowModule_fromValues(v) {
|
|
16
22
|
return indexed(v);
|
|
17
23
|
}
|
|
24
|
+
function SparseRowModule_getValues(i) {
|
|
25
|
+
return map((tuple) => tuple[1], i);
|
|
26
|
+
}
|
|
27
|
+
function SparseRowModule_fromAllValues(v) {
|
|
28
|
+
return choose((tupledArg) => map$1((v_1) => [tupledArg[0], v_1], tupledArg[1]), indexed(v));
|
|
29
|
+
}
|
|
30
|
+
function SparseRowModule_getAllValues(i) {
|
|
31
|
+
const m = ofSeq(i, {
|
|
32
|
+
Compare: comparePrimitives
|
|
33
|
+
});
|
|
34
|
+
return initialize(maxBy((tuple) => tuple[0], i, {
|
|
35
|
+
Compare: comparePrimitives
|
|
36
|
+
})[0] + 1, (i_1) => tryFind(i_1, m));
|
|
37
|
+
}
|
|
18
38
|
function SparseRowModule_fromFsRow(r) {
|
|
19
39
|
return choose((c) => {
|
|
20
40
|
if (equals(c.Value, "")) {
|
|
@@ -33,6 +53,219 @@ function SparseRowModule_tryGetValueAt(i, vs) {
|
|
|
33
53
|
}
|
|
34
54
|
}, vs);
|
|
35
55
|
}
|
|
56
|
+
function SparseRowModule_toDSLRow(vs) {
|
|
57
|
+
const builder$0040 = RowBuilder_$ctor();
|
|
58
|
+
let this$_9;
|
|
59
|
+
const ns = map((_arg) => {
|
|
60
|
+
const v = _arg;
|
|
61
|
+
if (v == null) {
|
|
62
|
+
let c_1;
|
|
63
|
+
const this$_5 = CellBuilder__AsCellElement_6F87C2ED(CellBuilder_$ctor(), SheetEntity$1_some_2B595(singleton([DataType_String(), ""])));
|
|
64
|
+
let matchResult, errs_1, f_1, ms_2_1;
|
|
65
|
+
switch (this$_5.tag) {
|
|
66
|
+
case /* NoneOptional */
|
|
67
|
+
1: {
|
|
68
|
+
if (equals(this$_5.fields[0], empty())) {
|
|
69
|
+
matchResult = 1;
|
|
70
|
+
ms_2_1 = this$_5.fields[0];
|
|
71
|
+
} else {
|
|
72
|
+
matchResult = 2;
|
|
73
|
+
}
|
|
74
|
+
break;
|
|
75
|
+
}
|
|
76
|
+
case /* NoneRequired */
|
|
77
|
+
2: {
|
|
78
|
+
if (equals(this$_5.fields[0], empty())) {
|
|
79
|
+
matchResult = 1;
|
|
80
|
+
ms_2_1 = this$_5.fields[0];
|
|
81
|
+
} else {
|
|
82
|
+
matchResult = 2;
|
|
83
|
+
}
|
|
84
|
+
break;
|
|
85
|
+
}
|
|
86
|
+
default: {
|
|
87
|
+
matchResult = 0;
|
|
88
|
+
errs_1 = this$_5.fields[1];
|
|
89
|
+
f_1 = this$_5.fields[0];
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
switch (matchResult) {
|
|
93
|
+
case 0: {
|
|
94
|
+
c_1 = f_1;
|
|
95
|
+
break;
|
|
96
|
+
}
|
|
97
|
+
case 1: {
|
|
98
|
+
throw new Error("SheetEntity does not contain Value.");
|
|
99
|
+
break;
|
|
100
|
+
}
|
|
101
|
+
default: {
|
|
102
|
+
let matchResult_1, ms_3_1;
|
|
103
|
+
switch (this$_5.tag) {
|
|
104
|
+
case /* NoneOptional */
|
|
105
|
+
1: {
|
|
106
|
+
matchResult_1 = 0;
|
|
107
|
+
ms_3_1 = this$_5.fields[0];
|
|
108
|
+
break;
|
|
109
|
+
}
|
|
110
|
+
case /* NoneRequired */
|
|
111
|
+
2: {
|
|
112
|
+
matchResult_1 = 0;
|
|
113
|
+
ms_3_1 = this$_5.fields[0];
|
|
114
|
+
break;
|
|
115
|
+
}
|
|
116
|
+
default:
|
|
117
|
+
matchResult_1 = 1;
|
|
118
|
+
}
|
|
119
|
+
switch (matchResult_1) {
|
|
120
|
+
case 0: {
|
|
121
|
+
throw new Error(`SheetEntity does not contain Value:
|
|
122
|
+
${Messages_format(ms_3_1)}`);
|
|
123
|
+
break;
|
|
124
|
+
}
|
|
125
|
+
default:
|
|
126
|
+
throw new Error("Match failure: FsSpreadsheet.DSL.SheetEntity`1");
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
return SheetEntity$1_some_2B595(singleton(c_1[1] == null ? RowElement_UnindexedCell(c_1[0]) : RowElement_IndexedCell(new ColumnIndex(value(c_1[1])), c_1[0])));
|
|
131
|
+
} else {
|
|
132
|
+
const v_1 = value(v);
|
|
133
|
+
let c;
|
|
134
|
+
const this$_2 = CellBuilder__AsCellElement_6F87C2ED(CellBuilder_$ctor(), SheetEntity$1_some_2B595(singleton([DataType_String(), v_1])));
|
|
135
|
+
let matchResult_2, errs, f, ms_2;
|
|
136
|
+
switch (this$_2.tag) {
|
|
137
|
+
case /* NoneOptional */
|
|
138
|
+
1: {
|
|
139
|
+
if (equals(this$_2.fields[0], empty())) {
|
|
140
|
+
matchResult_2 = 1;
|
|
141
|
+
ms_2 = this$_2.fields[0];
|
|
142
|
+
} else {
|
|
143
|
+
matchResult_2 = 2;
|
|
144
|
+
}
|
|
145
|
+
break;
|
|
146
|
+
}
|
|
147
|
+
case /* NoneRequired */
|
|
148
|
+
2: {
|
|
149
|
+
if (equals(this$_2.fields[0], empty())) {
|
|
150
|
+
matchResult_2 = 1;
|
|
151
|
+
ms_2 = this$_2.fields[0];
|
|
152
|
+
} else {
|
|
153
|
+
matchResult_2 = 2;
|
|
154
|
+
}
|
|
155
|
+
break;
|
|
156
|
+
}
|
|
157
|
+
default: {
|
|
158
|
+
matchResult_2 = 0;
|
|
159
|
+
errs = this$_2.fields[1];
|
|
160
|
+
f = this$_2.fields[0];
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
switch (matchResult_2) {
|
|
164
|
+
case 0: {
|
|
165
|
+
c = f;
|
|
166
|
+
break;
|
|
167
|
+
}
|
|
168
|
+
case 1: {
|
|
169
|
+
throw new Error("SheetEntity does not contain Value.");
|
|
170
|
+
break;
|
|
171
|
+
}
|
|
172
|
+
default: {
|
|
173
|
+
let matchResult_3, ms_3;
|
|
174
|
+
switch (this$_2.tag) {
|
|
175
|
+
case /* NoneOptional */
|
|
176
|
+
1: {
|
|
177
|
+
matchResult_3 = 0;
|
|
178
|
+
ms_3 = this$_2.fields[0];
|
|
179
|
+
break;
|
|
180
|
+
}
|
|
181
|
+
case /* NoneRequired */
|
|
182
|
+
2: {
|
|
183
|
+
matchResult_3 = 0;
|
|
184
|
+
ms_3 = this$_2.fields[0];
|
|
185
|
+
break;
|
|
186
|
+
}
|
|
187
|
+
default:
|
|
188
|
+
matchResult_3 = 1;
|
|
189
|
+
}
|
|
190
|
+
switch (matchResult_3) {
|
|
191
|
+
case 0: {
|
|
192
|
+
throw new Error(`SheetEntity does not contain Value:
|
|
193
|
+
${Messages_format(ms_3)}`);
|
|
194
|
+
break;
|
|
195
|
+
}
|
|
196
|
+
default:
|
|
197
|
+
throw new Error("Match failure: FsSpreadsheet.DSL.SheetEntity`1");
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
return SheetEntity$1_some_2B595(singleton(c[1] == null ? RowElement_UnindexedCell(c[0]) : RowElement_IndexedCell(new ColumnIndex(value(c[1])), c[0])));
|
|
202
|
+
}
|
|
203
|
+
}, SparseRowModule_getAllValues(vs));
|
|
204
|
+
this$_9 = fold((state, we) => RowBuilder__Combine_19F30600(builder$0040, state, we), RowBuilder_get_Empty(), ns);
|
|
205
|
+
let matchResult_4, errs_2, f_3, ms_2_2;
|
|
206
|
+
switch (this$_9.tag) {
|
|
207
|
+
case /* NoneOptional */
|
|
208
|
+
1: {
|
|
209
|
+
if (equals(this$_9.fields[0], empty())) {
|
|
210
|
+
matchResult_4 = 1;
|
|
211
|
+
ms_2_2 = this$_9.fields[0];
|
|
212
|
+
} else {
|
|
213
|
+
matchResult_4 = 2;
|
|
214
|
+
}
|
|
215
|
+
break;
|
|
216
|
+
}
|
|
217
|
+
case /* NoneRequired */
|
|
218
|
+
2: {
|
|
219
|
+
if (equals(this$_9.fields[0], empty())) {
|
|
220
|
+
matchResult_4 = 1;
|
|
221
|
+
ms_2_2 = this$_9.fields[0];
|
|
222
|
+
} else {
|
|
223
|
+
matchResult_4 = 2;
|
|
224
|
+
}
|
|
225
|
+
break;
|
|
226
|
+
}
|
|
227
|
+
default: {
|
|
228
|
+
matchResult_4 = 0;
|
|
229
|
+
errs_2 = this$_9.fields[1];
|
|
230
|
+
f_3 = this$_9.fields[0];
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
switch (matchResult_4) {
|
|
234
|
+
case 0:
|
|
235
|
+
return f_3;
|
|
236
|
+
case 1:
|
|
237
|
+
throw new Error("SheetEntity does not contain Value.");
|
|
238
|
+
default: {
|
|
239
|
+
let matchResult_5, ms_3_2;
|
|
240
|
+
switch (this$_9.tag) {
|
|
241
|
+
case /* NoneOptional */
|
|
242
|
+
1: {
|
|
243
|
+
matchResult_5 = 0;
|
|
244
|
+
ms_3_2 = this$_9.fields[0];
|
|
245
|
+
break;
|
|
246
|
+
}
|
|
247
|
+
case /* NoneRequired */
|
|
248
|
+
2: {
|
|
249
|
+
matchResult_5 = 0;
|
|
250
|
+
ms_3_2 = this$_9.fields[0];
|
|
251
|
+
break;
|
|
252
|
+
}
|
|
253
|
+
default:
|
|
254
|
+
matchResult_5 = 1;
|
|
255
|
+
}
|
|
256
|
+
switch (matchResult_5) {
|
|
257
|
+
case 0:
|
|
258
|
+
throw new Error(`SheetEntity does not contain Value:
|
|
259
|
+
${Messages_format(ms_3_2)}`);
|
|
260
|
+
default:
|
|
261
|
+
throw new Error("Match failure: FsSpreadsheet.DSL.SheetEntity`1");
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
function SparseRowModule_readFromSheet(sheet) {
|
|
267
|
+
return map(SparseRowModule_fromFsRow, sheet.Rows);
|
|
268
|
+
}
|
|
36
269
|
function SparseRowModule_writeToSheet(rowI, row, sheet) {
|
|
37
270
|
const fsRow = sheet.RowWithRange(new FsRangeAddress(new FsAddress(rowI, 1), new FsAddress(rowI, 1)), true);
|
|
38
271
|
iterate((tupledArg) => {
|
|
@@ -51,6 +284,9 @@ class SparseTable extends Record {
|
|
|
51
284
|
this.ColumnCount = ColumnCount | 0;
|
|
52
285
|
}
|
|
53
286
|
}
|
|
287
|
+
function SparseTable_$reflection() {
|
|
288
|
+
return record_type("ARCtrl.Spreadsheet.SparseTable", [], SparseTable, () => [["Matrix", class_type("System.Collections.Generic.Dictionary`2", [tuple_type(string_type, int32_type), string_type])], ["Keys", list_type(string_type)], ["CommentKeys", list_type(string_type)], ["ColumnCount", int32_type]]);
|
|
289
|
+
}
|
|
54
290
|
function SparseTable__TryGetValue_11FD62A8(this$, key) {
|
|
55
291
|
return Dictionary_tryGetValue(key, this$.Matrix);
|
|
56
292
|
}
|
|
@@ -183,11 +419,11 @@ function SparseTable_FromRows_Z5579EC29(en, labels, lineNumber, prefix) {
|
|
|
183
419
|
}
|
|
184
420
|
function SparseTable_ToRows_759CAFC1(matrix, prefix) {
|
|
185
421
|
const prefix_1 = prefix == null ? "" : value(prefix) + " ";
|
|
186
|
-
return delay(() => append$1(map((key) => SparseRowModule_fromValues(cons(prefix_1 + key, initialize(matrix.ColumnCount - 1, (i) => SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [key, i + 1])))), matrix.Keys), delay(() => map((key_1) => SparseRowModule_fromValues(cons(Comment_wrapCommentKey(key_1), initialize(matrix.ColumnCount - 1, (i_1) => SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [key_1, i_1 + 1])))), matrix.CommentKeys))));
|
|
422
|
+
return delay(() => append$1(map((key) => SparseRowModule_fromValues(cons(prefix_1 + key, initialize$1(matrix.ColumnCount - 1, (i) => SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [key, i + 1])))), matrix.Keys), delay(() => map((key_1) => SparseRowModule_fromValues(cons(Comment_wrapCommentKey(key_1), initialize$1(matrix.ColumnCount - 1, (i_1) => SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [key_1, i_1 + 1])))), matrix.CommentKeys))));
|
|
187
423
|
}
|
|
188
424
|
function SparseTable_GetEmptyComments_3ECCA699(matrix) {
|
|
189
425
|
const collection = map$2((key) => Comment$.create(key), matrix.CommentKeys);
|
|
190
426
|
return Array.from(collection);
|
|
191
427
|
}
|
|
192
428
|
|
|
193
|
-
export { SparseRowModule_fromFsRow, SparseRowModule_fromValues, SparseRowModule_tryGetValueAt, SparseRowModule_writeToSheet, SparseTable, SparseTable_AddComment, SparseTable_AddEmptyComment, SparseTable_AddRow, SparseTable_Create_Z2192E64B, SparseTable_FromRows_Z5579EC29, SparseTable_GetEmptyComments_3ECCA699, SparseTable_ToRows_759CAFC1, SparseTable__TryGetValueDefault_5BAE6133, SparseTable__TryGetValue_11FD62A8 };
|
|
429
|
+
export { SparseRowModule_fromAllValues, SparseRowModule_fromFsRow, SparseRowModule_fromValues, SparseRowModule_getAllValues, SparseRowModule_getValues, SparseRowModule_readFromSheet, SparseRowModule_toDSLRow, SparseRowModule_tryGetValueAt, SparseRowModule_writeToSheet, SparseTable, SparseTable_$reflection, SparseTable_AddComment, SparseTable_AddEmptyComment, SparseTable_AddRow, SparseTable_Create_Z2192E64B, SparseTable_FromRows_Z5579EC29, SparseTable_GetEmptyComments_3ECCA699, SparseTable_ToRows_759CAFC1, SparseTable__TryGetValueDefault_5BAE6133, SparseTable__TryGetValue_11FD62A8 };
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { Record } from '../../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { ofArray, map, empty, cons, reverse, append, ofSeq } from '../../../node_modules/@fable-org/fable-library-js/List.js';
|
|
3
|
+
import { Comment$_$reflection } from '../../Core/Comment.js';
|
|
4
4
|
import { stringHash } from '../../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
5
|
-
import {
|
|
5
|
+
import { record_type, string_type, list_type } from '../../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
6
6
|
import { Comment_fromString, Comment_toString } from './Comment.js';
|
|
7
|
-
import {
|
|
7
|
+
import { SparseTable__TryGetValueDefault_5BAE6133, SparseTable_Create_Z2192E64B, SparseTable, SparseTable_FromRows_Z5579EC29, SparseTable_ToRows_759CAFC1, SparseRowModule_fromValues } from './SparseTable.js';
|
|
8
8
|
import { createMissingIdentifier, Study_fileNameFromIdentifier } from '../../Core/Helper/Identifier.js';
|
|
9
9
|
import { addToDict } from '../../../node_modules/@fable-org/fable-library-js/MapUtil.js';
|
|
10
|
-
import {
|
|
10
|
+
import { defaultArg, value } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
11
|
+
import { ResizeArray_iter, Option_fromValueWithDefault } from '../../Core/Helper/Collections.js';
|
|
11
12
|
import { List_distinct } from '../../../node_modules/@fable-org/fable-library-js/Seq2.js';
|
|
12
13
|
import { ArcStudy } from '../../Core/ArcTypes.js';
|
|
13
14
|
import { fromRows as fromRows$6, toRows as toRows$1 } from './DesignDescriptors.js';
|
|
@@ -16,6 +17,7 @@ import { fromRows as fromRows$4, toRows as toRows$3 } from './Factors.js';
|
|
|
16
17
|
import { fromRows as fromRows$3, toRows as toRows$4 } from './Assays.js';
|
|
17
18
|
import { fromRows as fromRows$2, toRows as toRows$5 } from './Protocols.js';
|
|
18
19
|
import { fromRows as fromRows$1, toRows as toRows$6 } from './Contacts.js';
|
|
20
|
+
import { collect, delay, append as append$1, singleton } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
19
21
|
import { ARCtrl_ArcTable__ArcTable_GetProtocols, ARCtrl_ArcTable__ArcTable_GetProcesses } from '../../Core/Conversion.js';
|
|
20
22
|
import { getFactors } from '../../Core/Process/ProcessSequence.js';
|
|
21
23
|
|
|
@@ -31,6 +33,9 @@ class StudyInfo extends Record {
|
|
|
31
33
|
this.Comments = Comments;
|
|
32
34
|
}
|
|
33
35
|
}
|
|
36
|
+
function StudyInfo_$reflection() {
|
|
37
|
+
return record_type("ARCtrl.Spreadsheet.Studies.StudyInfo", [], StudyInfo, () => [["Identifier", string_type], ["Title", string_type], ["Description", string_type], ["SubmissionDate", string_type], ["PublicReleaseDate", string_type], ["FileName", string_type], ["Comments", list_type(Comment$_$reflection())]]);
|
|
38
|
+
}
|
|
34
39
|
function StudyInfo_create(identifier, title, description, submissionDate, publicReleaseDate, fileName, comments) {
|
|
35
40
|
return new StudyInfo(identifier, title, description, submissionDate, publicReleaseDate, fileName, comments);
|
|
36
41
|
}
|
|
@@ -93,37 +98,37 @@ function fromRows(lineNumber, en) {
|
|
|
93
98
|
loop:
|
|
94
99
|
while (true) {
|
|
95
100
|
const lastLine = lastLine_mut, studyInfo = studyInfo_mut, designDescriptors = designDescriptors_mut, publications = publications_mut, factors = factors_mut, assays = assays_mut, protocols = protocols_mut, contacts = contacts_mut, remarks = remarks_mut, lineNumber_1 = lineNumber_1_mut;
|
|
96
|
-
let matchResult, k_12;
|
|
101
|
+
let matchResult, k_6, k_7, k_8, k_9, k_10, k_11, k_12;
|
|
97
102
|
if (lastLine != null) {
|
|
98
103
|
switch (value(lastLine)) {
|
|
99
104
|
case "STUDY DESIGN DESCRIPTORS": {
|
|
100
105
|
matchResult = 0;
|
|
101
|
-
value(lastLine);
|
|
106
|
+
k_6 = value(lastLine);
|
|
102
107
|
break;
|
|
103
108
|
}
|
|
104
109
|
case "STUDY PUBLICATIONS": {
|
|
105
110
|
matchResult = 1;
|
|
106
|
-
value(lastLine);
|
|
111
|
+
k_7 = value(lastLine);
|
|
107
112
|
break;
|
|
108
113
|
}
|
|
109
114
|
case "STUDY FACTORS": {
|
|
110
115
|
matchResult = 2;
|
|
111
|
-
value(lastLine);
|
|
116
|
+
k_8 = value(lastLine);
|
|
112
117
|
break;
|
|
113
118
|
}
|
|
114
119
|
case "STUDY ASSAYS": {
|
|
115
120
|
matchResult = 3;
|
|
116
|
-
value(lastLine);
|
|
121
|
+
k_9 = value(lastLine);
|
|
117
122
|
break;
|
|
118
123
|
}
|
|
119
124
|
case "STUDY PROTOCOLS": {
|
|
120
125
|
matchResult = 4;
|
|
121
|
-
value(lastLine);
|
|
126
|
+
k_10 = value(lastLine);
|
|
122
127
|
break;
|
|
123
128
|
}
|
|
124
129
|
case "STUDY CONTACTS": {
|
|
125
130
|
matchResult = 5;
|
|
126
|
-
value(lastLine);
|
|
131
|
+
k_11 = value(lastLine);
|
|
127
132
|
break;
|
|
128
133
|
}
|
|
129
134
|
default: {
|
|
@@ -223,6 +228,7 @@ function fromRows(lineNumber, en) {
|
|
|
223
228
|
default:
|
|
224
229
|
return [k_12, lineNumber_1, remarks, fromParts(studyInfo, designDescriptors, publications, factors, assays, protocols, contacts)];
|
|
225
230
|
}
|
|
231
|
+
break;
|
|
226
232
|
}
|
|
227
233
|
};
|
|
228
234
|
const patternInput_6 = StudyInfo_fromRows(lineNumber, en);
|
|
@@ -235,4 +241,4 @@ function toRows(study, assays) {
|
|
|
235
241
|
return delay(() => append$1(StudyInfo_toRows_1680536E(study), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY DESIGN DESCRIPTORS"])), delay(() => append$1(toRows$1("Study Design", ofSeq(study.StudyDesignDescriptors)), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY PUBLICATIONS"])), delay(() => append$1(toRows$2("Study Publication", ofSeq(study.Publications)), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY FACTORS"])), delay(() => append$1(toRows$3("Study Factor", factors), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY ASSAYS"])), delay(() => append$1(toRows$4("Study Assay", assays_1), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY PROTOCOLS"])), delay(() => append$1(toRows$5("Study Protocol", protocols), delay(() => append$1(singleton(SparseRowModule_fromValues(["STUDY CONTACTS"])), delay(() => toRows$6("Study Person", ofSeq(study.Contacts)))))))))))))))))))))))))));
|
|
236
242
|
}
|
|
237
243
|
|
|
238
|
-
export { StudyInfo, StudyInfo_FromSparseTable_3ECCA699, StudyInfo_ToSparseTable_1680536E, StudyInfo_create, StudyInfo_fromRows, StudyInfo_get_Labels, StudyInfo_toRows_1680536E, fromParts, fromRows, toRows };
|
|
244
|
+
export { StudyInfo, StudyInfo_$reflection, StudyInfo_FromSparseTable_3ECCA699, StudyInfo_ToSparseTable_1680536E, StudyInfo_create, StudyInfo_fromRows, StudyInfo_get_Labels, StudyInfo_toRows_1680536E, fromParts, fromRows, toRows };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ofArray, map, empty, ofSeq, cons, reverse } from '../../../node_modules/@fable-org/fable-library-js/List.js';
|
|
1
|
+
import { ofArray, map as map$1, empty, ofSeq, cons, reverse } from '../../../node_modules/@fable-org/fable-library-js/List.js';
|
|
2
2
|
import { value, unwrap, defaultArg } from '../../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
3
|
-
import { map
|
|
3
|
+
import { map } from '../../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
4
4
|
import { OntologyAnnotation } from '../../Core/OntologyAnnotation.js';
|
|
5
5
|
import { Option_fromValueWithDefault, ResizeArray_iter } from '../../Core/Helper/Collections.js';
|
|
6
6
|
import { ProtocolParameter_fromAggregatedStrings, Component_fromAggregatedStrings, ProtocolParameter_toAggregatedStrings, Component_toAggregatedStrings } from './Conversions.js';
|
|
7
7
|
import { ArcWorkflow_make, ArcWorkflow__get_Identifier, ArcWorkflow__get_WorkflowType, ArcWorkflow__get_Parameters, ArcWorkflow__get_Components, ArcWorkflow__get_SubWorkflowIdentifiers, ArcWorkflow__get_Title, ArcWorkflow__get_Description, ArcWorkflow__get_URI, ArcWorkflow__get_Version, ArcWorkflow__get_Comments } from '../../Core/ArcTypes.js';
|
|
8
8
|
import { createMissingIdentifier, Workflow_tryIdentifierFromFileName, Workflow_fileNameFromIdentifier } from '../../Core/Helper/Identifier.js';
|
|
9
9
|
import { Comment_fromString, Comment_toString } from './Comment.js';
|
|
10
|
-
import {
|
|
10
|
+
import { SparseTable__TryGetValueDefault_5BAE6133, SparseTable__TryGetValue_11FD62A8, SparseTable_Create_Z2192E64B, SparseTable, SparseTable_FromRows_Z5579EC29, SparseTable_ToRows_759CAFC1 } from './SparseTable.js';
|
|
11
11
|
import { join } from '../../../node_modules/@fable-org/fable-library-js/String.js';
|
|
12
12
|
import { addToDict } from '../../../node_modules/@fable-org/fable-library-js/MapUtil.js';
|
|
13
13
|
import { List_distinct } from '../../../node_modules/@fable-org/fable-library-js/Seq2.js';
|
|
@@ -38,7 +38,7 @@ function fromString(identifier, title, description, workflowType, workflowTypeTe
|
|
|
38
38
|
subworkflowIdentifiers_2 = [];
|
|
39
39
|
} else {
|
|
40
40
|
const subworkflowIdentifiers_1 = value(subworkflowIdentifiers);
|
|
41
|
-
const collection = map
|
|
41
|
+
const collection = map((s) => s.trim(), subworkflowIdentifiers_1.split(";"));
|
|
42
42
|
subworkflowIdentifiers_2 = Array.from(collection);
|
|
43
43
|
}
|
|
44
44
|
let workflowType_1;
|
|
@@ -53,7 +53,7 @@ function fromString(identifier, title, description, workflowType, workflowTypeTe
|
|
|
53
53
|
return ArcWorkflow_make(identifier == null ? fileName == null ? createMissingIdentifier() : (matchValue = Workflow_tryIdentifierFromFileName(value(fileName)), matchValue != null ? value(matchValue) : createMissingIdentifier()) : value(identifier), title, description, workflowType_1, uri, version, subworkflowIdentifiers_2, parameters, components, void 0, [], comments);
|
|
54
54
|
}
|
|
55
55
|
function fromSparseTable(matrix) {
|
|
56
|
-
const comments = map((k) => Comment_fromString(k, SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [k, 0])), matrix.CommentKeys);
|
|
56
|
+
const comments = map$1((k) => Comment_fromString(k, SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [k, 0])), matrix.CommentKeys);
|
|
57
57
|
return fromString(SparseTable__TryGetValue_11FD62A8(matrix, [identifierLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [titleLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [descriptionLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [workflowTypeLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [typeTermAccessionNumberLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [typeTermSourceREFLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [subWorkflowIdentifiersLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [uriLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [versionLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [parametersNameLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [parametersTermAccessionNumberLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [parametersTermSourceREFLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [componentsNameLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [componentsTypeLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [componentsTypeTermAccessionNumberLabel, 0]), SparseTable__TryGetValueDefault_5BAE6133(matrix, "", [componentsTypeTermSourceREFLabel, 0]), SparseTable__TryGetValue_11FD62A8(matrix, [fileNameLabel, 0]), Array.from(comments));
|
|
58
58
|
}
|
|
59
59
|
function toSparseTable(workflow) {
|
|
@@ -3,6 +3,7 @@ import { singleton } from '../node_modules/@fable-org/fable-library-js/AsyncBuil
|
|
|
3
3
|
import { downloadFile } from './WebRequest/WebRequest.js';
|
|
4
4
|
import { Templates_fromJsonString } from './JsonIO/Table/Templates.js';
|
|
5
5
|
import { startAsPromise } from '../node_modules/@fable-org/fable-library-js/Async.js';
|
|
6
|
+
import { class_type } from '../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
6
7
|
|
|
7
8
|
function getTemplates(url) {
|
|
8
9
|
const url_1 = defaultArg(url, "https://github.com/nfdi4plants/Swate-templates/releases/download/latest/templates_v2.0.0.json");
|
|
@@ -18,5 +19,8 @@ class WebController {
|
|
|
18
19
|
return startAsPromise(singleton.Delay(() => singleton.Bind(getTemplates(url), (_arg) => singleton.Return(_arg))));
|
|
19
20
|
}
|
|
20
21
|
}
|
|
22
|
+
function WebController_$reflection() {
|
|
23
|
+
return class_type("ARCtrl.Template.Web.WebController", void 0, WebController);
|
|
24
|
+
}
|
|
21
25
|
|
|
22
|
-
export { WebController, getTemplates };
|
|
26
|
+
export { WebController, WebController_$reflection, getTemplates };
|
|
@@ -3,6 +3,7 @@ import { join } from '../../node_modules/@fable-org/fable-library-js/String.js';
|
|
|
3
3
|
import { toList, delay, append, singleton, empty } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
4
4
|
import { equals, stringHash } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
5
5
|
import { boxHashArray, boxHashOption } from '../Core/Helper/HashCodes.js';
|
|
6
|
+
import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
6
7
|
|
|
7
8
|
class ValidationPackage {
|
|
8
9
|
constructor(name, version) {
|
|
@@ -49,5 +50,11 @@ class ValidationPackage {
|
|
|
49
50
|
return boxHashArray([stringHash(this$.Name), boxHashOption(this$.Version)]) | 0;
|
|
50
51
|
}
|
|
51
52
|
}
|
|
53
|
+
function ValidationPackage_$reflection() {
|
|
54
|
+
return class_type("ARCtrl.ValidationPackages.ValidationPackage", void 0, ValidationPackage);
|
|
55
|
+
}
|
|
56
|
+
function ValidationPackage_$ctor_27AED5E3(name, version) {
|
|
57
|
+
return new ValidationPackage(name, version);
|
|
58
|
+
}
|
|
52
59
|
|
|
53
|
-
export { ValidationPackage };
|
|
60
|
+
export { ValidationPackage, ValidationPackage_$ctor_27AED5E3, ValidationPackage_$reflection };
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { unwrap, value } from '../../node_modules/@fable-org/fable-library-js/Option.js';
|
|
2
2
|
import { join } from '../../node_modules/@fable-org/fable-library-js/String.js';
|
|
3
|
-
import { toList, delay, append,
|
|
3
|
+
import { toList, delay, append, singleton, empty, map, fold, length, item } from '../../node_modules/@fable-org/fable-library-js/Seq.js';
|
|
4
4
|
import { toString } from '../../node_modules/@fable-org/fable-library-js/Types.js';
|
|
5
5
|
import { sortBy } from '../../node_modules/@fable-org/fable-library-js/Array.js';
|
|
6
|
-
import {
|
|
6
|
+
import { compareArrays, equals } from '../../node_modules/@fable-org/fable-library-js/Util.js';
|
|
7
7
|
import { rangeDouble } from '../../node_modules/@fable-org/fable-library-js/Range.js';
|
|
8
8
|
import { boxHashArray, boxHashOption, boxHashSeq } from '../Core/Helper/HashCodes.js';
|
|
9
|
+
import { class_type } from '../../node_modules/@fable-org/fable-library-js/Reflection.js';
|
|
9
10
|
|
|
10
11
|
class ValidationPackagesConfig {
|
|
11
12
|
constructor(validation_packages, arc_specification) {
|
|
@@ -74,5 +75,11 @@ class ValidationPackagesConfig {
|
|
|
74
75
|
return boxHashArray([boxHashOption(this$.ARCSpecification), boxHashSeq(this$.ValidationPackages)]) | 0;
|
|
75
76
|
}
|
|
76
77
|
}
|
|
78
|
+
function ValidationPackagesConfig_$reflection() {
|
|
79
|
+
return class_type("ARCtrl.ValidationPackages.ValidationPackagesConfig", void 0, ValidationPackagesConfig);
|
|
80
|
+
}
|
|
81
|
+
function ValidationPackagesConfig_$ctor_376974AD(validation_packages, arc_specification) {
|
|
82
|
+
return new ValidationPackagesConfig(validation_packages, arc_specification);
|
|
83
|
+
}
|
|
77
84
|
|
|
78
|
-
export { ValidationPackagesConfig };
|
|
85
|
+
export { ValidationPackagesConfig, ValidationPackagesConfig_$ctor_376974AD, ValidationPackagesConfig_$reflection };
|
package/dist/ts/ts/Xlsx.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FsWorkbook } from './fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js';
|
|
2
2
|
import { DataMap } from './Core/DataMap.js';
|
|
3
3
|
import { TypeInfo } from '@fable-org/fable-library-js/Reflection.js';
|
|
4
|
-
import { ArcInvestigation, ArcStudy, ArcAssay } from './Core/ArcTypes.js';
|
|
4
|
+
import { ArcInvestigation, ArcRun, ArcWorkflow, ArcStudy, ArcAssay } from './Core/ArcTypes.js';
|
|
5
5
|
import { FSharpList } from '@fable-org/fable-library-js/List.js';
|
|
6
6
|
export declare class XlsxHelper_DatamapXlsx {
|
|
7
7
|
constructor();
|
|
@@ -30,6 +30,24 @@ export declare class XlsxHelper_StudyXlsx {
|
|
|
30
30
|
}
|
|
31
31
|
export declare function XlsxHelper_StudyXlsx_$reflection(): TypeInfo;
|
|
32
32
|
export declare function XlsxHelper_StudyXlsx_$ctor(): XlsxHelper_StudyXlsx;
|
|
33
|
+
export declare class XlsxHelper_WorkflowXlsx {
|
|
34
|
+
constructor();
|
|
35
|
+
fromFsWorkbook(fswb: FsWorkbook): ArcWorkflow;
|
|
36
|
+
toFsWorkbook(workflow: ArcWorkflow): FsWorkbook;
|
|
37
|
+
fromXlsxFileAsync(path: string): Promise<ArcWorkflow>;
|
|
38
|
+
toXlsxFileAsync(path: string, workflow: ArcWorkflow): Promise<void>;
|
|
39
|
+
}
|
|
40
|
+
export declare function XlsxHelper_WorkflowXlsx_$reflection(): TypeInfo;
|
|
41
|
+
export declare function XlsxHelper_WorkflowXlsx_$ctor(): XlsxHelper_WorkflowXlsx;
|
|
42
|
+
export declare class XlsxHelper_RunXlsx {
|
|
43
|
+
constructor();
|
|
44
|
+
fromFsWorkbook(fswb: FsWorkbook): ArcRun;
|
|
45
|
+
toFsWorkbook(run: ArcRun): FsWorkbook;
|
|
46
|
+
fromXlsxFileAsync(path: string): Promise<ArcRun>;
|
|
47
|
+
toXlsxFileAsync(path: string, run: ArcRun): Promise<void>;
|
|
48
|
+
}
|
|
49
|
+
export declare function XlsxHelper_RunXlsx_$reflection(): TypeInfo;
|
|
50
|
+
export declare function XlsxHelper_RunXlsx_$ctor(): XlsxHelper_RunXlsx;
|
|
33
51
|
export declare class XlsxHelper_InvestigationXlsx {
|
|
34
52
|
constructor();
|
|
35
53
|
fromFsWorkbook(fswb: FsWorkbook): ArcInvestigation;
|
|
@@ -44,6 +62,8 @@ export declare class XlsxController {
|
|
|
44
62
|
static get Datamap(): XlsxHelper_DatamapXlsx;
|
|
45
63
|
static get Assay(): XlsxHelper_AssayXlsx;
|
|
46
64
|
static get Study(): XlsxHelper_StudyXlsx;
|
|
65
|
+
static get Workflow(): XlsxHelper_WorkflowXlsx;
|
|
66
|
+
static get Run(): XlsxHelper_RunXlsx;
|
|
47
67
|
static get Investigation(): XlsxHelper_InvestigationXlsx;
|
|
48
68
|
}
|
|
49
69
|
export declare function XlsxController_$reflection(): TypeInfo;
|
package/dist/ts/ts/Xlsx.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Xlsx.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/Xlsx.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,8DAA8D,CAAC;AAC1F,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAG5C,OAAO,EAAc,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAEjF,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"Xlsx.d.ts","sourceRoot":"","sources":["../../../src/ARCtrl/ts/Xlsx.ts"],"names":[],"mappings":"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"}
|