@nfdi4plants/arctrl 1.0.7 → 1.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/ARC.js +47 -11
- package/Contract/Contract.js +3 -3
- package/Contracts/Contracts.ArcTypes.js +30 -18
- package/Contracts/Contracts.Git.js +4 -4
- package/FileSystem/Commit.js +2 -2
- package/FileSystem/FileSystem.js +4 -4
- package/FileSystem/FileSystemTree.js +8 -8
- package/FileSystem/Path.js +2 -2
- package/FileSystemTree.js +1 -1
- package/ISA/ISA/ArcTypes/ArcTable.js +23 -31
- package/ISA/ISA/ArcTypes/ArcTableAux.js +27 -16
- package/ISA/ISA/ArcTypes/ArcTables.js +11 -11
- package/ISA/ISA/ArcTypes/ArcTypes.js +118 -83
- package/ISA/ISA/ArcTypes/CompositeCell.js +4 -4
- package/ISA/ISA/ArcTypes/CompositeColumn.js +8 -7
- package/ISA/ISA/ArcTypes/CompositeHeader.js +5 -5
- package/ISA/ISA/ArcTypes/CompositeRow.js +1 -1
- package/ISA/ISA/Builder/Types.js +5 -5
- package/ISA/ISA/Fable.js +6 -6
- package/ISA/ISA/Helper.js +15 -13
- package/ISA/ISA/Identifier.js +1 -1
- package/ISA/ISA/JsonTypes/Assay.js +8 -8
- package/ISA/ISA/JsonTypes/AssayMaterials.js +4 -4
- package/ISA/ISA/JsonTypes/ColumnIndex.js +5 -5
- package/ISA/ISA/JsonTypes/Comment.js +3 -3
- package/ISA/ISA/JsonTypes/CommentList.js +4 -4
- package/ISA/ISA/JsonTypes/Component.js +4 -4
- package/ISA/ISA/JsonTypes/Data.js +4 -4
- package/ISA/ISA/JsonTypes/DataFile.js +2 -2
- package/ISA/ISA/JsonTypes/Factor.js +6 -6
- package/ISA/ISA/JsonTypes/FactorValue.js +5 -5
- package/ISA/ISA/JsonTypes/Investigation.js +6 -6
- package/ISA/ISA/JsonTypes/Material.js +5 -5
- package/ISA/ISA/JsonTypes/MaterialAttribute.js +3 -3
- package/ISA/ISA/JsonTypes/MaterialAttributeValue.js +5 -5
- package/ISA/ISA/JsonTypes/MaterialType.js +2 -2
- package/ISA/ISA/JsonTypes/OntologyAnnotation.js +6 -6
- package/ISA/ISA/JsonTypes/OntologySourceReference.js +6 -6
- package/ISA/ISA/JsonTypes/Person.js +23 -8
- package/ISA/ISA/JsonTypes/Process.js +13 -13
- package/ISA/ISA/JsonTypes/ProcessInput.js +5 -5
- package/ISA/ISA/JsonTypes/ProcessOutput.js +5 -5
- package/ISA/ISA/JsonTypes/ProcessParameterValue.js +5 -5
- package/ISA/ISA/JsonTypes/ProcessSequence.js +6 -6
- package/ISA/ISA/JsonTypes/Protocol.js +6 -6
- package/ISA/ISA/JsonTypes/ProtocolParameter.js +3 -3
- package/ISA/ISA/JsonTypes/Publication.js +6 -6
- package/ISA/ISA/JsonTypes/Sample.js +5 -5
- package/ISA/ISA/JsonTypes/Source.js +5 -5
- package/ISA/ISA/JsonTypes/Study.js +8 -8
- package/ISA/ISA/JsonTypes/StudyMaterials.js +4 -4
- package/ISA/ISA/JsonTypes/Value.js +22 -29
- package/ISA/ISA/Regex.js +3 -3
- package/ISA/ISA.Json/ArcTypes/ArcAssay.js +157 -65
- package/ISA/ISA.Json/ArcTypes/ArcInvestigation.js +78 -49
- package/ISA/ISA.Json/ArcTypes/ArcStudy.js +136 -24
- package/ISA/ISA.Json/ArcTypes/ArcTable.js +183 -21
- package/ISA/ISA.Json/ArcTypes/CellTable.js +40 -0
- package/ISA/ISA.Json/ArcTypes/CompositeCell.js +34 -23
- package/ISA/ISA.Json/ArcTypes/CompositeHeader.js +18 -46
- package/ISA/ISA.Json/ArcTypes/IOType.js +11 -13
- package/ISA/ISA.Json/ArcTypes/OATable.js +42 -0
- package/ISA/ISA.Json/Assay.js +71 -47
- package/ISA/ISA.Json/Comment.js +31 -35
- package/ISA/ISA.Json/ConverterOptions.js +19 -1
- package/ISA/ISA.Json/Data.js +119 -137
- package/ISA/ISA.Json/Decode.js +51 -36
- package/ISA/ISA.Json/Factor.js +90 -90
- package/ISA/ISA.Json/GEncode.js +31 -6
- package/ISA/ISA.Json/Investigation.js +54 -79
- package/ISA/ISA.Json/Material.js +103 -104
- package/ISA/ISA.Json/Ontology.js +99 -92
- package/ISA/ISA.Json/Person.js +47 -65
- package/ISA/ISA.Json/Process.js +144 -130
- package/ISA/ISA.Json/Protocol.js +144 -105
- package/ISA/ISA.Json/Publication.js +34 -40
- package/ISA/ISA.Json/StringTable.js +44 -0
- package/ISA/ISA.Json/Study.js +70 -96
- package/ISA/ISA.Json/context/rocrate/isa_assay_context.js +34 -0
- package/ISA/ISA.Json/context/rocrate/isa_comment_context.js +23 -0
- package/ISA/ISA.Json/context/rocrate/isa_component_context.js +24 -0
- package/ISA/ISA.Json/context/rocrate/isa_data_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_factor_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_factor_value_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_investigation_context.js +33 -0
- package/ISA/ISA.Json/context/rocrate/isa_material_attribute_context.js +23 -0
- package/ISA/ISA.Json/context/rocrate/isa_material_attribute_value_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_material_context.js +26 -0
- package/ISA/ISA.Json/context/rocrate/isa_ontology_annotation_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_ontology_source_reference_context.js +26 -0
- package/ISA/ISA.Json/context/rocrate/isa_organization_context.js +22 -0
- package/ISA/ISA.Json/context/rocrate/isa_person_context.js +31 -0
- package/ISA/ISA.Json/context/rocrate/isa_process_context.js +31 -0
- package/ISA/ISA.Json/context/rocrate/isa_process_parameter_value_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_protocol_context.js +30 -0
- package/ISA/ISA.Json/context/rocrate/isa_protocol_parameter_context.js +23 -0
- package/ISA/ISA.Json/context/rocrate/isa_publication_context.js +27 -0
- package/ISA/ISA.Json/context/rocrate/isa_sample_context.js +26 -0
- package/ISA/ISA.Json/context/rocrate/isa_source_context.js +25 -0
- package/ISA/ISA.Json/context/rocrate/isa_study_context.js +42 -0
- package/ISA/ISA.Json/context/rocrate/rocrate_context.js +25 -0
- package/ISA/ISA.Spreadsheet/AnnotationTable/ArcTable.js +56 -43
- package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeCell.js +3 -3
- package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeColumn.js +11 -11
- package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeHeader.js +5 -5
- package/ISA/ISA.Spreadsheet/ArcAssay.js +100 -88
- package/ISA/ISA.Spreadsheet/ArcInvestigation.js +12 -12
- package/ISA/ISA.Spreadsheet/ArcStudy.js +36 -24
- package/ISA/ISA.Spreadsheet/CollectionAux.js +8 -8
- package/ISA/ISA.Spreadsheet/Metadata/Assays.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/Comment.js +31 -20
- package/ISA/ISA.Spreadsheet/Metadata/Contacts.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/Conversions.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/DesignDescriptors.js +1 -1
- package/ISA/ISA.Spreadsheet/Metadata/Factors.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/OntologyAnnotation.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/OntologySourceReference.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/Protocols.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/Publication.js +5 -5
- package/ISA/ISA.Spreadsheet/Metadata/SparseTable.js +28 -23
- package/ISA/ISA.Spreadsheet/Metadata/Study.js +8 -8
- package/README.md +20 -3
- package/SemVer.js +6 -6
- package/Templates/Template.Json.js +43 -36
- package/Templates/Template.Spreadsheet.js +12 -12
- package/Templates/Template.Web.js +4 -4
- package/Templates/Template.js +7 -7
- package/Templates/Templates.js +7 -7
- package/WebRequest/WebRequest.Node.js +15 -0
- package/WebRequest/WebRequest.js +10 -29
- package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +7 -7
- package/fable_modules/Fable.Promise.2.2.2/Promise.fs.js +3 -3
- package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +8 -8
- package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +2 -2
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Cells/FsCell.fs.js +14 -14
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Cells/FsCellsCollection.fs.js +6 -6
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/CellBuilder.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/ColumnBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/DSL.fs.js +2 -2
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Expression.fs.js +1 -1
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/RowBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/SheetBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/TableBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Transform.fs.js +6 -6
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Types.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/WorkbookBuilder.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsAddress.fs +22 -8
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsAddress.fs.js +24 -14
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsColumn.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsRow.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsWorkbook.fs.js +6 -6
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsWorksheet.fs +12 -6
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsWorksheet.fs.js +21 -17
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRange.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeAddress.fs.js +4 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeBase.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeColumn.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeRow.fs.js +1 -1
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/SheetBuilder.fs.js +8 -8
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTable.fs.js +7 -7
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTableField.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTableRow.fs.js +1 -1
- package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/obj/Release/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +3 -3
- package/fable_modules/Thoth.Json.Core.0.2.1/Decode.fs +1390 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Decode.fs.js +1230 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Encode.fs +233 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Encode.fs.js +113 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Thoth.Json.Core.fableproj +28 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Types.fs +76 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js +33 -0
- package/fable_modules/Thoth.Json.Core.0.2.1/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
- package/fable_modules/{Thoth.Json.10.1.0/obj/Release/netstandard2.0/Thoth.Json.AssemblyInfo.fs → Thoth.Json.Core.0.2.1/obj/Debug/netstandard2.0/Thoth.Json.Core.AssemblyInfo.fs} +8 -7
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Decode.fs +79 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Decode.fs.js +85 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Encode.fs +32 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Encode.fs.js +45 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Thoth.Json.JavaScript.fableproj +21 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Debug/netstandard2.0/Thoth.Json.JavaScript.AssemblyInfo.fs +18 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Release/netstandard2.0/Thoth.Json.JavaScript.AssemblyInfo.fs +19 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Array.d.ts +4 -1
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Array.js +124 -86
- package/fable_modules/fable-library-js.4.13.0/CHANGELOG.md +29 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Choice.d.ts +0 -17
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Choice.js +0 -43
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Date.js +3 -2
- package/fable_modules/fable-library-js.4.13.0/FSharp.Core.CompilerServices.d.ts +12 -0
- package/fable_modules/fable-library-js.4.13.0/FSharp.Core.CompilerServices.js +27 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/List.js +3 -3
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Map.js +3 -3
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MutableMap.js +2 -1
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MutableSet.js +2 -1
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Random.js +7 -7
- package/fable_modules/fable-library-js.4.13.0/Result.d.ts +37 -0
- package/fable_modules/fable-library-js.4.13.0/Result.js +165 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Set.js +2 -2
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/String.d.ts +1 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/String.js +8 -5
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/System.Collections.Generic.d.ts +15 -7
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/System.Collections.Generic.js +46 -36
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/System.Text.d.ts +9 -1
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/System.Text.js +60 -8
- package/fable_modules/fable-library-js.4.13.0/big.d.ts +338 -0
- package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/package.json +4 -3
- package/fable_modules/project_cracked.json +1 -1
- package/package.json +1 -1
- package/ISA/ISA.Json/Validation/Fable.js +0 -69
- package/ISA/ISA.Json/Validation/JsonSchemaValidation.js +0 -88
- package/ISA/ISA.Json/Validation/ValidationResult.js +0 -45
- package/fable_modules/Thoth.Json.10.1.0/Decode.fs +0 -1366
- package/fable_modules/Thoth.Json.10.1.0/Decode.fs.js +0 -1798
- package/fable_modules/Thoth.Json.10.1.0/Encode.fs +0 -621
- package/fable_modules/Thoth.Json.10.1.0/Encode.fs.js +0 -472
- package/fable_modules/Thoth.Json.10.1.0/Extra.fs +0 -31
- package/fable_modules/Thoth.Json.10.1.0/Extra.fs.js +0 -8
- package/fable_modules/Thoth.Json.10.1.0/Thoth.Json.fableproj +0 -30
- package/fable_modules/Thoth.Json.10.1.0/Types.fs +0 -59
- package/fable_modules/Thoth.Json.10.1.0/Types.fs.js +0 -98
- package/fable_modules/Thoth.Json.10.1.0/package.json +0 -5
- package/fable_modules/fable-library.4.5.0/CHANGELOG.md +0 -11
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Cells/FsCell.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Cells/FsCellsCollection.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/CellBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/ColumnBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/DSL.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Expression.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Operators.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Operators.fs.js +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/RowBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/SheetBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/TableBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Transform.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/Types.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/DSL/WorkbookBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsColumn.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsRow.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsSpreadsheet.fableproj +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/FsWorkbook.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRange.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeAddress.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeBase.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeColumn.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeRow.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/SheetBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTable.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTableField.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Tables/FsTableRow.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/obj/Debug/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Async.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Async.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/AsyncBuilder.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/AsyncBuilder.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/BigInt.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/BigInt.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/BitConverter.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/BitConverter.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Boolean.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Boolean.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Char.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Char.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Date.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/DateOffset.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/DateOffset.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/DateOnly.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/DateOnly.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Decimal.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Decimal.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Double.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Double.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Encoding.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Encoding.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Event.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Event.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/FSharp.Collections.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/FSharp.Collections.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/FSharp.Core.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/FSharp.Core.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Global.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Global.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Guid.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Guid.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Int32.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Int32.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/List.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Long.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Long.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MailboxProcessor.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MailboxProcessor.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Map.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MapUtil.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MapUtil.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MutableMap.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/MutableSet.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Native.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Native.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Numeric.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Numeric.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Observable.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Observable.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Option.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Option.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/README.md +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Random.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Range.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Range.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Reflection.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Reflection.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/RegExp.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/RegExp.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Seq.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Seq.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Seq2.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Seq2.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Set.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/SystemException.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/SystemException.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/TimeOnly.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/TimeOnly.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/TimeSpan.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/TimeSpan.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Timer.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Timer.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Types.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Types.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Unicode.13.0.0.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Unicode.13.0.0.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Uri.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Uri.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Util.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/Util.js +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/lib/big.d.ts +0 -0
- /package/fable_modules/{fable-library.4.5.0 → fable-library-js.4.13.0}/lib/big.js +0 -0
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { toString, Union } from "../../fable-library.4.
|
|
2
|
-
import { class_type, union_type } from "../../fable-library.4.
|
|
3
|
-
import { map, defaultArg, unwrap } from "../../fable-library.4.
|
|
1
|
+
import { toString, Union } from "../../fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { class_type, union_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { map, defaultArg, unwrap } from "../../fable-library-js.4.13.0/Option.js";
|
|
4
4
|
import { FsAddress__get_FixedRow, FsAddress__get_FixedColumn, FsAddress__get_Address, FsAddress__Copy, CellReference_indexToColAdress, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
|
|
5
|
-
import { parse as parse_3 } from "../../fable-library.4.
|
|
6
|
-
import Decimal from "../../fable-library.4.
|
|
7
|
-
import { parse } from "../../fable-library.4.
|
|
8
|
-
import { parse as parse_1 } from "../../fable-library.4.
|
|
9
|
-
import { toUInt64, toInt64 } from "../../fable-library.4.
|
|
10
|
-
import { parse as parse_2 } from "../../fable-library.4.
|
|
11
|
-
import { parse as parse_4 } from "../../fable-library.4.
|
|
12
|
-
import { parse as parse_5 } from "../../fable-library.4.
|
|
13
|
-
import { parse as parse_6 } from "../../fable-library.4.
|
|
14
|
-
import { forAll } from "../../fable-library.4.
|
|
15
|
-
import { equals } from "../../fable-library.4.
|
|
5
|
+
import { parse as parse_3 } from "../../fable-library-js.4.13.0/Decimal.js";
|
|
6
|
+
import Decimal from "../../fable-library-js.4.13.0/Decimal.js";
|
|
7
|
+
import { parse } from "../../fable-library-js.4.13.0/Double.js";
|
|
8
|
+
import { parse as parse_1 } from "../../fable-library-js.4.13.0/Int32.js";
|
|
9
|
+
import { toUInt64, toInt64 } from "../../fable-library-js.4.13.0/BigInt.js";
|
|
10
|
+
import { parse as parse_2 } from "../../fable-library-js.4.13.0/Long.js";
|
|
11
|
+
import { parse as parse_4 } from "../../fable-library-js.4.13.0/Date.js";
|
|
12
|
+
import { parse as parse_5 } from "../../fable-library-js.4.13.0/Guid.js";
|
|
13
|
+
import { parse as parse_6 } from "../../fable-library-js.4.13.0/Char.js";
|
|
14
|
+
import { forAll } from "../../fable-library-js.4.13.0/Seq.js";
|
|
15
|
+
import { equals } from "../../fable-library-js.4.13.0/Util.js";
|
|
16
16
|
|
|
17
17
|
export class DataType extends Union {
|
|
18
18
|
constructor(tag, fields) {
|
package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Cells/FsCellsCollection.fs.js
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { addToSet, addToDict, getItemFromDict } from "../../fable-library.4.
|
|
2
|
-
import { some } from "../../fable-library.4.
|
|
3
|
-
import { class_type } from "../../fable-library.4.
|
|
4
|
-
import { minBy, min, singleton, empty, delay, collect, max, isEmpty, iterate, map } from "../../fable-library.4.
|
|
1
|
+
import { addToSet, addToDict, getItemFromDict } from "../../fable-library-js.4.13.0/MapUtil.js";
|
|
2
|
+
import { some } from "../../fable-library-js.4.13.0/Option.js";
|
|
3
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
4
|
+
import { minBy, min, singleton, empty, delay, collect, max, isEmpty, iterate, map } from "../../fable-library-js.4.13.0/Seq.js";
|
|
5
5
|
import { FsAddress_$ctor_Z37302880, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
|
|
6
|
-
import { comparePrimitives } from "../../fable-library.4.
|
|
7
|
-
import { rangeDouble } from "../../fable-library.4.
|
|
6
|
+
import { comparePrimitives } from "../../fable-library-js.4.13.0/Util.js";
|
|
7
|
+
import { rangeDouble } from "../../fable-library-js.4.13.0/Range.js";
|
|
8
8
|
|
|
9
9
|
export function Dictionary_tryGet(k, dict) {
|
|
10
10
|
if (dict.has(k)) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { toString, Union } from "../../fable-library.4.
|
|
2
|
-
import { class_type, union_type, char_type } from "../../fable-library.4.
|
|
1
|
+
import { toString, Union } from "../../fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { class_type, union_type, char_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { DataType } from "../Cells/FsCell.fs.js";
|
|
4
|
-
import { head, tail, isEmpty, append, empty, map, reduce } from "../../fable-library.4.
|
|
4
|
+
import { head, tail, isEmpty, append, empty, map, reduce } from "../../fable-library-js.4.13.0/List.js";
|
|
5
5
|
import { SheetEntity$1__get_Messages, Message__MapText_11D407F6, SheetEntity$1 } from "./Types.fs.js";
|
|
6
|
-
import { printf, toText } from "../../fable-library.4.
|
|
6
|
+
import { printf, toText } from "../../fable-library-js.4.13.0/String.js";
|
|
7
7
|
import { OptionalSource$1__get_Source, RequiredSource$1__get_Source, OptionalSource$1_$ctor_2B595, RequiredSource$1_$ctor_2B595 } from "./Expression.fs.js";
|
|
8
8
|
|
|
9
9
|
export class ReduceOperation extends Union {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
2
2
|
import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
|
|
3
|
-
import { append, map, empty } from "../../fable-library.4.
|
|
4
|
-
import { printf, toText } from "../../fable-library.4.
|
|
3
|
+
import { append, map, empty } from "../../fable-library-js.4.13.0/List.js";
|
|
4
|
+
import { printf, toText } from "../../fable-library-js.4.13.0/String.js";
|
|
5
5
|
import { OptionalSource$1__get_Source, RequiredSource$1__get_Source, OptionalSource$1_$ctor_2B595, RequiredSource$1_$ctor_2B595 } from "./Expression.fs.js";
|
|
6
6
|
|
|
7
7
|
export class ColumnBuilder {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
2
2
|
import { SheetEntity$1 } from "./Types.fs.js";
|
|
3
|
-
import { singleton } from "../../fable-library.4.
|
|
3
|
+
import { singleton } from "../../fable-library-js.4.13.0/List.js";
|
|
4
4
|
|
|
5
5
|
export class DSL {
|
|
6
6
|
constructor() {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
2
2
|
import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
|
|
3
|
-
import { append, map, empty } from "../../fable-library.4.
|
|
4
|
-
import { printf, toText } from "../../fable-library.4.
|
|
3
|
+
import { append, map, empty } from "../../fable-library-js.4.13.0/List.js";
|
|
4
|
+
import { printf, toText } from "../../fable-library-js.4.13.0/String.js";
|
|
5
5
|
import { OptionalSource$1__get_Source, RequiredSource$1__get_Source, OptionalSource$1_$ctor_2B595, RequiredSource$1_$ctor_2B595 } from "./Expression.fs.js";
|
|
6
6
|
|
|
7
7
|
export class RowBuilder {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
2
2
|
import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
|
|
3
|
-
import { append, map, empty } from "../../fable-library.4.
|
|
4
|
-
import { printf, toText } from "../../fable-library.4.
|
|
3
|
+
import { append, map, empty } from "../../fable-library-js.4.13.0/List.js";
|
|
4
|
+
import { printf, toText } from "../../fable-library-js.4.13.0/String.js";
|
|
5
5
|
|
|
6
6
|
export class SheetBuilder {
|
|
7
7
|
constructor(name) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
2
2
|
import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
|
|
3
|
-
import { append, map, empty } from "../../fable-library.4.
|
|
4
|
-
import { printf, toText } from "../../fable-library.4.
|
|
3
|
+
import { append, map, empty } from "../../fable-library-js.4.13.0/List.js";
|
|
4
|
+
import { printf, toText } from "../../fable-library-js.4.13.0/String.js";
|
|
5
5
|
|
|
6
6
|
export class TableBuilder {
|
|
7
7
|
constructor(name) {
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { choose, transpose, map, iterateIndexed, iterate, ofArrayWithTail, empty, reverse, singleton, tail as tail_25, cons, head, isEmpty } from "../../fable-library.4.
|
|
1
|
+
import { choose, transpose, map, iterateIndexed, iterate, ofArrayWithTail, empty, reverse, singleton, tail as tail_25, cons, head, isEmpty } from "../../fable-library-js.4.13.0/List.js";
|
|
2
2
|
import { RowIndex__get_Index, ColumnIndex__get_Index, TableElement__get_IsColumn, SheetElement } from "./Types.fs.js";
|
|
3
|
-
import { toString } from "../../fable-library.4.
|
|
3
|
+
import { toString } from "../../fable-library-js.4.13.0/Types.js";
|
|
4
4
|
import { FsRangeColumn__Cell_Z4232C216 } from "../Ranges/FsRangeColumn.fs.js";
|
|
5
5
|
import { FsTableField__get_Column } from "../Tables/FsTableField.fs.js";
|
|
6
|
-
import { add, FSharpSet__Contains, ofSeq } from "../../fable-library.4.
|
|
7
|
-
import { comparePrimitives } from "../../fable-library.4.
|
|
8
|
-
import { max } from "../../fable-library.4.
|
|
6
|
+
import { add, FSharpSet__Contains, ofSeq } from "../../fable-library-js.4.13.0/Set.js";
|
|
7
|
+
import { comparePrimitives } from "../../fable-library-js.4.13.0/Util.js";
|
|
8
|
+
import { max } from "../../fable-library-js.4.13.0/Seq.js";
|
|
9
9
|
import { FsCellsCollection__get_MaxRowNumber } from "../Cells/FsCellsCollection.fs.js";
|
|
10
10
|
import { FsRangeAddress_$ctor_7E77A4A0 } from "../Ranges/FsRangeAddress.fs.js";
|
|
11
11
|
import { FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
|
|
12
|
-
import { toText, printf, toFail } from "../../fable-library.4.
|
|
12
|
+
import { toText, printf, toFail } from "../../fable-library-js.4.13.0/String.js";
|
|
13
13
|
import { FsWorkbook } from "../FsWorkbook.fs.js";
|
|
14
14
|
import { FsWorksheet } from "../FsWorksheet.fs.js";
|
|
15
15
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Union } from "../../fable-library.4.
|
|
2
|
-
import { tuple_type, obj_type, int32_type, list_type, union_type, class_type, string_type } from "../../fable-library.4.
|
|
3
|
-
import { empty, pick, exists, map, reduce } from "../../fable-library.4.
|
|
4
|
-
import { printf, toConsole } from "../../fable-library.4.
|
|
1
|
+
import { Union } from "../../fable-library-js.4.13.0/Types.js";
|
|
2
|
+
import { tuple_type, obj_type, int32_type, list_type, union_type, class_type, string_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { empty, pick, exists, map, reduce } from "../../fable-library-js.4.13.0/List.js";
|
|
4
|
+
import { printf, toConsole } from "../../fable-library-js.4.13.0/String.js";
|
|
5
5
|
import { DataType_$reflection } from "../Cells/FsCell.fs.js";
|
|
6
6
|
|
|
7
7
|
export class Message extends Union {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
2
2
|
import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
|
|
3
|
-
import { append, map, empty } from "../../fable-library.4.
|
|
4
|
-
import { printf, toText } from "../../fable-library.4.
|
|
3
|
+
import { append, map, empty } from "../../fable-library-js.4.13.0/List.js";
|
|
4
|
+
import { printf, toText } from "../../fable-library-js.4.13.0/String.js";
|
|
5
5
|
|
|
6
6
|
export class WorkbookBuilder {
|
|
7
7
|
constructor() {
|
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
/// Module containing functions to work with "A1" style excel cell references.
|
|
5
5
|
module CellReference =
|
|
6
6
|
|
|
7
|
+
[<Literal>]
|
|
8
|
+
let indexPattern =
|
|
9
|
+
"([A-Z]*)(\d*)"
|
|
10
|
+
|
|
11
|
+
let indexRegex =
|
|
12
|
+
System.Text.RegularExpressions.Regex(indexPattern)
|
|
13
|
+
|
|
7
14
|
/// Transforms excel column string indices (e.g. A, B, Z, AA, CD) to index number (starting with A = 1).
|
|
8
15
|
let colAdressToIndex (columnAdress : string) =
|
|
9
16
|
let length = columnAdress.Length
|
|
@@ -30,17 +37,24 @@ module CellReference =
|
|
|
30
37
|
let ofIndices column (row : uint32) =
|
|
31
38
|
sprintf "%s%i" (indexToColAdress column) row
|
|
32
39
|
|
|
40
|
+
|
|
41
|
+
|
|
33
42
|
/// Maps a "A1" style excel cell reference to a column * row index tuple (1 Based indices).
|
|
34
43
|
let toIndices (reference : string) =
|
|
35
|
-
let
|
|
36
|
-
let
|
|
37
|
-
let regex = System.Text.RegularExpressions.Regex.Match(inp,pattern)
|
|
44
|
+
let charPart = System.Text.StringBuilder()
|
|
45
|
+
let numPart = System.Text.StringBuilder()
|
|
38
46
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
47
|
+
reference
|
|
48
|
+
|> Seq.iter (fun c ->
|
|
49
|
+
if System.Char.IsLetter c then
|
|
50
|
+
charPart.Append c |> ignore
|
|
51
|
+
elif System.Char.IsDigit c then
|
|
52
|
+
numPart.Append c |> ignore
|
|
53
|
+
else
|
|
54
|
+
failwithf "Reference %s does not match Excel A1-style" reference
|
|
55
|
+
)
|
|
56
|
+
colAdressToIndex (charPart.ToString()), uint32 (numPart.ToString())
|
|
57
|
+
|
|
44
58
|
|
|
45
59
|
/// Maps a "A1" style excel cell reference to a column (1 Based indices).
|
|
46
60
|
let toColIndex (reference : string) =
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
import { toFail, printf, toText } from "../fable-library.4.
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
import { toFail, printf, toText } from "../fable-library-js.4.13.0/String.js";
|
|
2
|
+
import { StringBuilder__Append_244C7CD6, StringBuilder_$ctor } from "../fable-library-js.4.13.0/System.Text.js";
|
|
3
|
+
import { iterate } from "../fable-library-js.4.13.0/Seq.js";
|
|
4
|
+
import { isDigit, isLetter } from "../fable-library-js.4.13.0/Char.js";
|
|
5
|
+
import { toString } from "../fable-library-js.4.13.0/Types.js";
|
|
6
|
+
import { parse } from "../fable-library-js.4.13.0/Int32.js";
|
|
7
|
+
import { toUInt32, fromInt32, fromUInt32, op_Addition, toInt64 } from "../fable-library-js.4.13.0/BigInt.js";
|
|
8
|
+
import { class_type } from "../fable-library-js.4.13.0/Reflection.js";
|
|
9
|
+
|
|
10
|
+
export const CellReference_indexRegex = /([A-Z]*)(\d*)/gu;
|
|
6
11
|
|
|
7
12
|
/**
|
|
8
13
|
* Transforms excel column string indices (e.g. A, B, Z, AA, CD) to index number (starting with A = 1).
|
|
@@ -57,15 +62,20 @@ export function CellReference_ofIndices(column, row) {
|
|
|
57
62
|
* Maps a "A1" style excel cell reference to a column * row index tuple (1 Based indices).
|
|
58
63
|
*/
|
|
59
64
|
export function CellReference_toIndices(reference) {
|
|
60
|
-
const
|
|
61
|
-
const
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
65
|
+
const charPart = StringBuilder_$ctor();
|
|
66
|
+
const numPart = StringBuilder_$ctor();
|
|
67
|
+
iterate((c) => {
|
|
68
|
+
if (isLetter(c)) {
|
|
69
|
+
StringBuilder__Append_244C7CD6(charPart, c);
|
|
70
|
+
}
|
|
71
|
+
else if (isDigit(c)) {
|
|
72
|
+
StringBuilder__Append_244C7CD6(numPart, c);
|
|
73
|
+
}
|
|
74
|
+
else {
|
|
75
|
+
toFail(printf("Reference %s does not match Excel A1-style"))(reference);
|
|
76
|
+
}
|
|
77
|
+
}, reference.split(""));
|
|
78
|
+
return [CellReference_colAdressToIndex(toString(charPart)), parse(toString(numPart), 511, true, 32)];
|
|
69
79
|
}
|
|
70
80
|
|
|
71
81
|
/**
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
|
|
2
2
|
import { FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
|
|
3
3
|
import { FsCellsCollection__Add_Z21F271A4, FsCellsCollection__GetCellsInColumn_Z524259A4, FsCellsCollection_$ctor } from "./Cells/FsCellsCollection.fs.js";
|
|
4
|
-
import { exists, map, maxBy, minBy, length } from "../fable-library.4.
|
|
5
|
-
import { toIterator, getEnumerator, comparePrimitives } from "../fable-library.4.
|
|
4
|
+
import { exists, map, maxBy, minBy, length } from "../fable-library-js.4.13.0/Seq.js";
|
|
5
|
+
import { toIterator, getEnumerator, comparePrimitives } from "../fable-library-js.4.13.0/Util.js";
|
|
6
6
|
import { FsRangeBase_$reflection, FsRangeBase, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase__Cells_Z2740B3CA } from "./Ranges/FsRangeBase.fs.js";
|
|
7
|
-
import { class_type } from "../fable-library.4.
|
|
7
|
+
import { class_type } from "../fable-library-js.4.13.0/Reflection.js";
|
|
8
8
|
|
|
9
9
|
export class FsColumn extends FsRangeBase {
|
|
10
10
|
constructor(rangeAddress, cells) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
|
|
2
2
|
import { FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
|
|
3
3
|
import { FsCellsCollection__Add_2E78CE33, FsCellsCollection__Add_Z21F271A4, FsCellsCollection__GetCellsInRow_Z524259A4, FsCellsCollection_$ctor } from "./Cells/FsCellsCollection.fs.js";
|
|
4
|
-
import { exists, map, maxBy, minBy, length } from "../fable-library.4.
|
|
5
|
-
import { toIterator, getEnumerator, comparePrimitives } from "../fable-library.4.
|
|
4
|
+
import { exists, map, maxBy, minBy, length } from "../fable-library-js.4.13.0/Seq.js";
|
|
5
|
+
import { toIterator, getEnumerator, comparePrimitives } from "../fable-library-js.4.13.0/Util.js";
|
|
6
6
|
import { FsRangeBase_$reflection, FsRangeBase, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase__Cells_Z2740B3CA } from "./Ranges/FsRangeBase.fs.js";
|
|
7
7
|
import { FsCell } from "./Cells/FsCell.fs.js";
|
|
8
|
-
import { class_type } from "../fable-library.4.
|
|
8
|
+
import { class_type } from "../fable-library-js.4.13.0/Reflection.js";
|
|
9
9
|
|
|
10
10
|
export class FsRow extends FsRangeBase {
|
|
11
11
|
constructor(rangeAddress, cells) {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { collect, tryFind as tryFind_1, removeInPlace, map } from "../fable-library.4.
|
|
1
|
+
import { collect, tryFind as tryFind_1, removeInPlace, map } from "../fable-library-js.4.13.0/Array.js";
|
|
2
2
|
import { FsWorksheet } from "./FsWorksheet.fs.js";
|
|
3
|
-
import { tryFind, tryItem, iterate, exists } from "../fable-library.4.
|
|
4
|
-
import { printf, toFail } from "../fable-library.4.
|
|
5
|
-
import { defaultArg, value as value_1 } from "../fable-library.4.
|
|
6
|
-
import { safeHash, equals, defaultOf } from "../fable-library.4.
|
|
7
|
-
import { class_type } from "../fable-library.4.
|
|
3
|
+
import { tryFind, tryItem, iterate, exists } from "../fable-library-js.4.13.0/Seq.js";
|
|
4
|
+
import { printf, toFail } from "../fable-library-js.4.13.0/String.js";
|
|
5
|
+
import { defaultArg, value as value_1 } from "../fable-library-js.4.13.0/Option.js";
|
|
6
|
+
import { safeHash, equals, defaultOf } from "../fable-library-js.4.13.0/Util.js";
|
|
7
|
+
import { class_type } from "../fable-library-js.4.13.0/Reflection.js";
|
|
8
8
|
|
|
9
9
|
export class FsWorkbook {
|
|
10
10
|
constructor() {
|
|
@@ -366,13 +366,19 @@ type FsWorksheet (name, ?fsRows, ?fsTables, ?fsCellsCollection) =
|
|
|
366
366
|
_cells.GetCells()
|
|
367
367
|
|> Seq.groupBy (fun c -> c.RowNumber)
|
|
368
368
|
|> Seq.iter (fun (rowIndex,cells) ->
|
|
369
|
+
let mutable min = 1
|
|
370
|
+
let mutable max = 1
|
|
371
|
+
cells
|
|
372
|
+
|> Seq.iter (fun c ->
|
|
373
|
+
let cn = c.ColumnNumber
|
|
374
|
+
if cn < min then min <- cn
|
|
375
|
+
if cn > max then max <- cn
|
|
376
|
+
)
|
|
369
377
|
let newRange =
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
FsAddress(rowIndex,Seq.last cells |> fun c -> c.ColumnNumber)
|
|
375
|
-
|> FsRangeAddress
|
|
378
|
+
FsRangeAddress(
|
|
379
|
+
FsAddress(rowIndex,min),
|
|
380
|
+
FsAddress(rowIndex,max)
|
|
381
|
+
)
|
|
376
382
|
match Map.tryFind rowIndex rows with
|
|
377
383
|
| Some row ->
|
|
378
384
|
row.RangeAddress <- newRange
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { FsCellsCollection__RemoveValueAt_Z37302880, FsCellsCollection__TryRemoveValueAt_Z37302880, FsCellsCollection__RemoveCellAt_Z37302880, FsCellsCollection__Add_2E78CE33, FsCellsCollection__Add_Z21F271A4, FsCellsCollection__Add_Z334DF64D, FsCellsCollection__TryGetCell_Z37302880, FsCellsCollection__Copy, FsCellsCollection__GetCells, FsCellsCollection_$ctor } from "./Cells/FsCellsCollection.fs.js";
|
|
2
|
-
import { empty, maxBy, filter, exists, find, tryFind, iterate, last, head, sortBy, map } from "../fable-library.4.
|
|
2
|
+
import { empty, maxBy, filter, exists, find, tryFind, iterate, last, head, sortBy, map } from "../fable-library-js.4.13.0/Seq.js";
|
|
3
3
|
import { FsColumn } from "./FsColumn.fs.js";
|
|
4
|
-
import { clear, safeHash, equals, disposeSafe, getEnumerator, numberHash, comparePrimitives } from "../fable-library.4.
|
|
4
|
+
import { clear, safeHash, equals, disposeSafe, getEnumerator, numberHash, comparePrimitives } from "../fable-library-js.4.13.0/Util.js";
|
|
5
5
|
import { FsAddress__get_ColumnNumber, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
|
|
6
6
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
|
|
7
|
-
import { groupBy } from "../fable-library.4.
|
|
8
|
-
import { value as value_3, defaultArg } from "../fable-library.4.
|
|
7
|
+
import { groupBy } from "../fable-library-js.4.13.0/Seq2.js";
|
|
8
|
+
import { value as value_3, defaultArg } from "../fable-library-js.4.13.0/Option.js";
|
|
9
9
|
import { FsRow } from "./FsRow.fs.js";
|
|
10
|
-
import { toConsole, printf, toFail } from "../fable-library.4.
|
|
10
|
+
import { toConsole, printf, toFail } from "../fable-library-js.4.13.0/String.js";
|
|
11
11
|
import { FsRangeBase__set_RangeAddress_6A2513BC } from "./Ranges/FsRangeBase.fs.js";
|
|
12
|
-
import { addRangeInPlace, removeInPlace } from "../fable-library.4.
|
|
13
|
-
import { tryFind as tryFind_1, ofSeq } from "../fable-library.4.
|
|
12
|
+
import { addRangeInPlace, removeInPlace } from "../fable-library-js.4.13.0/Array.js";
|
|
13
|
+
import { tryFind as tryFind_1, ofSeq } from "../fable-library-js.4.13.0/Map.js";
|
|
14
14
|
import { FsTable } from "./Tables/FsTable.fs.js";
|
|
15
|
-
import { iterate as iterate_1 } from "../fable-library.4.
|
|
15
|
+
import { iterate as iterate_1 } from "../fable-library-js.4.13.0/List.js";
|
|
16
16
|
import { FsCell } from "./Cells/FsCell.fs.js";
|
|
17
|
-
import { class_type } from "../fable-library.4.
|
|
17
|
+
import { class_type } from "../fable-library-js.4.13.0/Reflection.js";
|
|
18
18
|
|
|
19
19
|
export class FsWorksheet {
|
|
20
20
|
constructor(name, fsRows, fsTables, fsCellsCollection) {
|
|
@@ -240,15 +240,19 @@ export class FsWorksheet {
|
|
|
240
240
|
Compare: comparePrimitives,
|
|
241
241
|
});
|
|
242
242
|
iterate((tupledArg) => {
|
|
243
|
-
let c_2, c_3;
|
|
244
243
|
const rowIndex = tupledArg[0] | 0;
|
|
245
|
-
let
|
|
246
|
-
let
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
244
|
+
let min = 1;
|
|
245
|
+
let max = 1;
|
|
246
|
+
iterate((c_1) => {
|
|
247
|
+
const cn = c_1.ColumnNumber | 0;
|
|
248
|
+
if (cn < min) {
|
|
249
|
+
min = (cn | 0);
|
|
250
|
+
}
|
|
251
|
+
if (cn > max) {
|
|
252
|
+
max = (cn | 0);
|
|
253
|
+
}
|
|
254
|
+
}, tupledArg[1]);
|
|
255
|
+
const newRange = FsRangeAddress_$ctor_7E77A4A0(FsAddress_$ctor_Z37302880(rowIndex, min), FsAddress_$ctor_Z37302880(rowIndex, max));
|
|
252
256
|
const matchValue = tryFind_1(rowIndex, rows);
|
|
253
257
|
if (matchValue == null) {
|
|
254
258
|
self.RowWithRange(newRange, true);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { FsRangeBase__get_RangeAddress, FsRangeBase_$reflection, FsRangeBase } from "./FsRangeBase.fs.js";
|
|
2
|
-
import { class_type } from "../../fable-library.4.
|
|
3
|
-
import { int32ToString, defaultOf } from "../../fable-library.4.
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
3
|
+
import { int32ToString, defaultOf } from "../../fable-library-js.4.13.0/Util.js";
|
|
4
4
|
import { FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
|
|
5
5
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress_$ctor_7E77A4A0, FsRangeAddress__get_FirstAddress } from "./FsRangeAddress.fs.js";
|
|
6
|
-
import { printf, toText } from "../../fable-library.4.
|
|
6
|
+
import { printf, toText } from "../../fable-library-js.4.13.0/String.js";
|
|
7
7
|
import { FsRangeRow_$ctor_6A2513BC } from "./FsRangeRow.fs.js";
|
|
8
8
|
|
|
9
9
|
export class FsRange extends FsRangeBase {
|
package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeAddress.fs.js
RENAMED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library.4.
|
|
2
|
-
import { toConsole, printf, toText } from "../../fable-library.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
2
|
+
import { toConsole, printf, toText } from "../../fable-library-js.4.13.0/String.js";
|
|
3
|
+
import { item } from "../../fable-library-js.4.13.0/Array.js";
|
|
3
4
|
import { FsAddress__get_Address, FsAddress_$ctor_Z37302880, FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress_$ctor_Z721C83C5, CellReference_moveHorizontal, CellReference_toIndices } from "../FsAddress.fs.js";
|
|
4
5
|
|
|
5
6
|
export class FsRangeAddress {
|
|
@@ -35,7 +36,7 @@ export function Range_ofBoundaries(fromCellReference, toCellReference) {
|
|
|
35
36
|
*/
|
|
36
37
|
export function Range_toBoundaries(area) {
|
|
37
38
|
const a = area.split(":");
|
|
38
|
-
return [
|
|
39
|
+
return [item(0, a), item(1, a)];
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { equals, defaultOf } from "../../fable-library.4.
|
|
2
|
-
import { class_type } from "../../fable-library.4.
|
|
1
|
+
import { equals, defaultOf } from "../../fable-library-js.4.13.0/Util.js";
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress__Extend_6D30B323 } from "./FsRangeAddress.fs.js";
|
|
4
4
|
import { FsAddress__get_FixedColumn, FsAddress__get_FixedRow, FsAddress_$ctor_Z4C746FC0, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
|
|
5
5
|
import { FsCellsCollection__GetCells_7E77A4A0, FsCellsCollection__Add_2E78CE33, FsCellsCollection__TryGetCell_Z37302880, FsCellsCollection__get_MaxColumnNumber, FsCellsCollection__get_MaxRowNumber } from "../Cells/FsCellsCollection.fs.js";
|
|
6
|
-
import { printf, toFail } from "../../fable-library.4.
|
|
6
|
+
import { printf, toFail } from "../../fable-library-js.4.13.0/String.js";
|
|
7
7
|
import { FsCell } from "../Cells/FsCell.fs.js";
|
|
8
8
|
|
|
9
9
|
export class FsRangeBase {
|
package/fable_modules/{FsSpreadsheet.5.1.2 → FsSpreadsheet.5.1.3}/Ranges/FsRangeColumn.fs.js
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { FsRangeBase__Cells_Z2740B3CA, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase_$reflection, FsRangeBase } from "./FsRangeBase.fs.js";
|
|
2
|
-
import { class_type } from "../../fable-library.4.
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./FsRangeAddress.fs.js";
|
|
4
4
|
import { FsAddress__get_RowNumber, FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
|
|
5
|
-
import { map, toList } from "../../fable-library.4.
|
|
6
|
-
import { rangeDouble } from "../../fable-library.4.
|
|
5
|
+
import { map, toList } from "../../fable-library-js.4.13.0/Seq.js";
|
|
6
|
+
import { rangeDouble } from "../../fable-library-js.4.13.0/Range.js";
|
|
7
7
|
|
|
8
8
|
export class FsRangeColumn extends FsRangeBase {
|
|
9
9
|
constructor(rangeAddress) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FsRangeBase__Cells_Z2740B3CA, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase_$reflection, FsRangeBase } from "./FsRangeBase.fs.js";
|
|
2
|
-
import { class_type } from "../../fable-library.4.
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./FsRangeAddress.fs.js";
|
|
4
4
|
import { FsAddress__get_ColumnNumber, FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
|
|
5
5
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { equals, disposeSafe, getEnumerator, curry2, defaultOf } from "../fable-library.4.
|
|
2
|
-
import { addToDict, tryGetValue } from "../fable-library.4.
|
|
3
|
-
import { Record, FSharpRef } from "../fable-library.4.
|
|
4
|
-
import { toNullable, some } from "../fable-library.4.
|
|
1
|
+
import { equals, disposeSafe, getEnumerator, curry2, defaultOf } from "../fable-library-js.4.13.0/Util.js";
|
|
2
|
+
import { addToDict, tryGetValue } from "../fable-library-js.4.13.0/MapUtil.js";
|
|
3
|
+
import { Record, FSharpRef } from "../fable-library-js.4.13.0/Types.js";
|
|
4
|
+
import { toNullable, some } from "../fable-library-js.4.13.0/Option.js";
|
|
5
5
|
import { FsCell, FsCell_$reflection } from "./Cells/FsCell.fs.js";
|
|
6
|
-
import { record_type, string_type, bool_type, option_type, float64_type, list_type, lambda_type } from "../fable-library.4.
|
|
7
|
-
import { iterate, isEmpty, map as map_1, concat, singleton, append, empty as empty_1 } from "../fable-library.4.
|
|
8
|
-
import { newGuid } from "../fable-library.4.
|
|
6
|
+
import { record_type, string_type, bool_type, option_type, float64_type, list_type, lambda_type } from "../fable-library-js.4.13.0/Reflection.js";
|
|
7
|
+
import { iterate, isEmpty, map as map_1, concat, singleton, append, empty as empty_1 } from "../fable-library-js.4.13.0/List.js";
|
|
8
|
+
import { newGuid } from "../fable-library-js.4.13.0/Guid.js";
|
|
9
9
|
import { FsRangeAddress_$ctor_7E77A4A0, FsRangeAddress__get_FirstAddress } from "./Ranges/FsRangeAddress.fs.js";
|
|
10
10
|
import { FsRangeBase__get_RangeAddress } from "./Ranges/FsRangeBase.fs.js";
|
|
11
11
|
import { FsAddress_$ctor_Z37302880, FsAddress__get_RowNumber } from "./FsAddress.fs.js";
|
|
12
|
-
import { find, indexed } from "../fable-library.4.
|
|
12
|
+
import { find, indexed } from "../fable-library-js.4.13.0/Seq.js";
|
|
13
13
|
import { FsRangeColumn__Cell_Z4232C216 } from "./Ranges/FsRangeColumn.fs.js";
|
|
14
14
|
import { FsTableField__get_Column } from "./Tables/FsTableField.fs.js";
|
|
15
15
|
import { FsWorksheet } from "./FsWorksheet.fs.js";
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { disposeSafe, getEnumerator, comparePrimitives, int32ToString, defaultOf, equals } from "../../fable-library.4.
|
|
1
|
+
import { disposeSafe, getEnumerator, comparePrimitives, int32ToString, defaultOf, equals } from "../../fable-library-js.4.13.0/Util.js";
|
|
2
2
|
import { FsRangeBase_$reflection, FsRangeBase, FsRangeBase__set_RangeAddress_6A2513BC, FsRangeBase__ColumnCount, FsRangeBase__get_RangeAddress } from "../Ranges/FsRangeBase.fs.js";
|
|
3
|
-
import { exists, toList, choose, tryPick, tryFind, find, max, length, iterate, iterateIndexed, map, reduce, singleton, collect, delay, initialize } from "../../fable-library.4.
|
|
3
|
+
import { exists, toList, choose, tryPick, tryFind, find, max, length, iterate, iterateIndexed, map, reduce, singleton, collect, delay, initialize } from "../../fable-library-js.4.13.0/Seq.js";
|
|
4
4
|
import { FsRange_$ctor_6A2513BC, FsRange__FirstRow } from "../Ranges/FsRange.fs.js";
|
|
5
5
|
import { FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
|
|
6
6
|
import { FsRangeAddress__Copy, FsRangeAddress__Union_6A2513BC, FsRangeAddress__get_LastAddress, FsRangeAddress_$ctor_7E77A4A0, FsRangeAddress__get_FirstAddress } from "../Ranges/FsRangeAddress.fs.js";
|
|
7
7
|
import { FsRow } from "../FsRow.fs.js";
|
|
8
8
|
import { FsColumn } from "../FsColumn.fs.js";
|
|
9
|
-
import { rangeDouble } from "../../fable-library.4.
|
|
9
|
+
import { rangeDouble } from "../../fable-library-js.4.13.0/Range.js";
|
|
10
10
|
import { FsTableField__set_Index_Z524259A4, FsTableField_$ctor_Z18115A39, FsTableField__HeaderCell_10EBE01C, FsTableField__get_Index, FsTableField_$ctor_726EFFB, FsTableField__get_Name, FsTableField_$ctor_6547009B, FsTableField__get_Column } from "./FsTableField.fs.js";
|
|
11
|
-
import { getItemFromDict, addToDict, addToSet } from "../../fable-library.4.
|
|
11
|
+
import { getItemFromDict, addToDict, addToSet } from "../../fable-library-js.4.13.0/MapUtil.js";
|
|
12
12
|
import { FsRangeColumn__get_Index, FsRangeColumn_$ctor_6A2513BC, FsRangeColumn_$ctor_Z524259A4 } from "../Ranges/FsRangeColumn.fs.js";
|
|
13
13
|
import { FsCellsCollection__TryGetCell_Z37302880, FsCellsCollection__GetCellsInColumn_Z524259A4, Dictionary_tryGet } from "../Cells/FsCellsCollection.fs.js";
|
|
14
|
-
import { replace } from "../../fable-library.4.
|
|
15
|
-
import { defaultArg, value as value_2 } from "../../fable-library.4.
|
|
14
|
+
import { replace } from "../../fable-library-js.4.13.0/String.js";
|
|
15
|
+
import { defaultArg, value as value_2 } from "../../fable-library-js.4.13.0/Option.js";
|
|
16
16
|
import { DataType } from "../Cells/FsCell.fs.js";
|
|
17
|
-
import { class_type } from "../../fable-library.4.
|
|
17
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
18
18
|
|
|
19
19
|
export class FsTable extends FsRangeBase {
|
|
20
20
|
constructor(name, rangeAddress, showTotalsRow, showHeaderRow) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library.4.
|
|
2
|
-
import { equals, defaultOf } from "../../fable-library.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
2
|
+
import { equals, defaultOf } from "../../fable-library-js.4.13.0/Util.js";
|
|
3
3
|
import { FsRangeColumn__Cells_Z2740B3CA, FsRangeColumn__Copy, FsRangeColumn__FirstCell_Z2740B3CA, FsRangeColumn_$ctor_6A2513BC } from "../Ranges/FsRangeColumn.fs.js";
|
|
4
4
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "../Ranges/FsRangeAddress.fs.js";
|
|
5
5
|
import { FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
|
|
6
6
|
import { FsRangeBase__get_RangeAddress } from "../Ranges/FsRangeBase.fs.js";
|
|
7
|
-
import { printf, toFail } from "../../fable-library.4.
|
|
8
|
-
import { skip } from "../../fable-library.4.
|
|
7
|
+
import { printf, toFail } from "../../fable-library-js.4.13.0/String.js";
|
|
8
|
+
import { skip } from "../../fable-library-js.4.13.0/Seq.js";
|
|
9
9
|
|
|
10
10
|
export class FsTableField {
|
|
11
11
|
constructor(name, index, column, totalsRowLabel, totalsRowFunction) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FsRangeRow_$reflection, FsRangeRow } from "../Ranges/FsRangeRow.fs.js";
|
|
2
|
-
import { class_type } from "../../fable-library.4.
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.13.0/Reflection.js";
|
|
3
3
|
|
|
4
4
|
export class FsTableRow extends FsRangeRow {
|
|
5
5
|
constructor(rangeAddress) {
|
|
@@ -10,10 +10,10 @@ open System.Reflection
|
|
|
10
10
|
[<assembly: System.Reflection.AssemblyCompanyAttribute("Heinrich Lukas Weil, Oliver Maus, Kevin Schneider, Kevin Frey, Timo Mühlhaus")>]
|
|
11
11
|
[<assembly: System.Reflection.AssemblyConfigurationAttribute("Release")>]
|
|
12
12
|
[<assembly: System.Reflection.AssemblyDescriptionAttribute("Fable compliant Spreadsheet creation and manipulation in FSharp")>]
|
|
13
|
-
[<assembly: System.Reflection.AssemblyFileVersionAttribute("5.1.
|
|
14
|
-
[<assembly: System.Reflection.AssemblyInformationalVersionAttribute("5.1.
|
|
13
|
+
[<assembly: System.Reflection.AssemblyFileVersionAttribute("5.1.3.0")>]
|
|
14
|
+
[<assembly: System.Reflection.AssemblyInformationalVersionAttribute("5.1.3")>]
|
|
15
15
|
[<assembly: System.Reflection.AssemblyProductAttribute("FsSpreadsheet")>]
|
|
16
16
|
[<assembly: System.Reflection.AssemblyTitleAttribute("FsSpreadsheet")>]
|
|
17
|
-
[<assembly: System.Reflection.AssemblyVersionAttribute("5.1.
|
|
17
|
+
[<assembly: System.Reflection.AssemblyVersionAttribute("5.1.3.0")>]
|
|
18
18
|
[<assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/CSBiology/FsSpreadsheet")>]
|
|
19
19
|
do()
|