@nfdi4plants/arctrl 1.0.0-alpha6

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.
Files changed (277) hide show
  1. package/ARCtrl.js +257 -0
  2. package/Contract/Contract.js +95 -0
  3. package/Contracts/Contracts.ARCtrl.js +35 -0
  4. package/Contracts/Contracts.ArcAssay.js +65 -0
  5. package/Contracts/Contracts.ArcInvestigation.js +58 -0
  6. package/Contracts/Contracts.ArcStudy.js +65 -0
  7. package/Contracts/Contracts.Git.js +91 -0
  8. package/FileSystem/Commit.js +18 -0
  9. package/FileSystem/DefaultGitignore.js +3 -0
  10. package/FileSystem/FileSystem.js +53 -0
  11. package/FileSystem/FileSystemTree.js +223 -0
  12. package/FileSystem/Path.js +38 -0
  13. package/FileSystemTree.js +51 -0
  14. package/ISA/ISA/ArcTypes/ArcTable.js +744 -0
  15. package/ISA/ISA/ArcTypes/ArcTableAux.js +1142 -0
  16. package/ISA/ISA/ArcTypes/ArcTables.js +380 -0
  17. package/ISA/ISA/ArcTypes/ArcTypes.js +2018 -0
  18. package/ISA/ISA/ArcTypes/CompositeCell.js +180 -0
  19. package/ISA/ISA/ArcTypes/CompositeColumn.js +42 -0
  20. package/ISA/ISA/ArcTypes/CompositeHeader.js +358 -0
  21. package/ISA/ISA/ArcTypes/CompositeRow.js +111 -0
  22. package/ISA/ISA/ArcTypes/IdentifierSetters.js +26 -0
  23. package/ISA/ISA/Builder/Types.js +243 -0
  24. package/ISA/ISA/Fable.js +50 -0
  25. package/ISA/ISA/Helper.js +326 -0
  26. package/ISA/ISA/Identifier.js +76 -0
  27. package/ISA/ISA/JsonTypes/AnnotationValue.js +56 -0
  28. package/ISA/ISA/JsonTypes/Assay.js +620 -0
  29. package/ISA/ISA/JsonTypes/AssayMaterials.js +39 -0
  30. package/ISA/ISA/JsonTypes/ColumnIndex.js +246 -0
  31. package/ISA/ISA/JsonTypes/Comment.js +58 -0
  32. package/ISA/ISA/JsonTypes/CommentList.js +139 -0
  33. package/ISA/ISA/JsonTypes/Component.js +158 -0
  34. package/ISA/ISA/JsonTypes/Data.js +55 -0
  35. package/ISA/ISA/JsonTypes/DataFile.js +68 -0
  36. package/ISA/ISA/JsonTypes/Factor.js +128 -0
  37. package/ISA/ISA/JsonTypes/FactorValue.js +109 -0
  38. package/ISA/ISA/JsonTypes/Investigation.js +204 -0
  39. package/ISA/ISA/JsonTypes/Material.js +66 -0
  40. package/ISA/ISA/JsonTypes/MaterialAttribute.js +101 -0
  41. package/ISA/ISA/JsonTypes/MaterialAttributeValue.js +126 -0
  42. package/ISA/ISA/JsonTypes/MaterialType.js +41 -0
  43. package/ISA/ISA/JsonTypes/OntologyAnnotation.js +219 -0
  44. package/ISA/ISA/JsonTypes/OntologySourceReference.js +85 -0
  45. package/ISA/ISA/JsonTypes/Person.js +137 -0
  46. package/ISA/ISA/JsonTypes/Process.js +401 -0
  47. package/ISA/ISA/JsonTypes/ProcessInput.js +297 -0
  48. package/ISA/ISA/JsonTypes/ProcessOutput.js +263 -0
  49. package/ISA/ISA/JsonTypes/ProcessParameterValue.js +129 -0
  50. package/ISA/ISA/JsonTypes/ProcessSequence.js +255 -0
  51. package/ISA/ISA/JsonTypes/Protocol.js +277 -0
  52. package/ISA/ISA/JsonTypes/ProtocolParameter.js +101 -0
  53. package/ISA/ISA/JsonTypes/Publication.js +105 -0
  54. package/ISA/ISA/JsonTypes/Sample.js +71 -0
  55. package/ISA/ISA/JsonTypes/Source.js +54 -0
  56. package/ISA/ISA/JsonTypes/Study.js +942 -0
  57. package/ISA/ISA/JsonTypes/StudyMaterials.js +45 -0
  58. package/ISA/ISA/JsonTypes/URI.js +19 -0
  59. package/ISA/ISA/JsonTypes/Value.js +210 -0
  60. package/ISA/ISA/Regex.js +588 -0
  61. package/ISA/ISA.Json/Assay.js +123 -0
  62. package/ISA/ISA.Json/Comment.js +84 -0
  63. package/ISA/ISA.Json/ConverterOptions.js +33 -0
  64. package/ISA/ISA.Json/Data.js +271 -0
  65. package/ISA/ISA.Json/Decode.js +46 -0
  66. package/ISA/ISA.Json/Factor.js +194 -0
  67. package/ISA/ISA.Json/GEncode.js +15 -0
  68. package/ISA/ISA.Json/Investigation.js +132 -0
  69. package/ISA/ISA.Json/Material.js +233 -0
  70. package/ISA/ISA.Json/Ontology.js +204 -0
  71. package/ISA/ISA.Json/Person.js +204 -0
  72. package/ISA/ISA.Json/Process.js +291 -0
  73. package/ISA/ISA.Json/Protocol.js +242 -0
  74. package/ISA/ISA.Json/Publication.js +92 -0
  75. package/ISA/ISA.Json/Study.js +230 -0
  76. package/ISA/ISA.Json/Validation/Fable.js +69 -0
  77. package/ISA/ISA.Json/Validation/JsonSchemaValidation.js +88 -0
  78. package/ISA/ISA.Json/Validation/ValidationResult.js +45 -0
  79. package/ISA/ISA.Spreadsheet/AnnotationTable/ArcTable.js +137 -0
  80. package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeCell.js +78 -0
  81. package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeColumn.js +59 -0
  82. package/ISA/ISA.Spreadsheet/AnnotationTable/CompositeHeader.js +478 -0
  83. package/ISA/ISA.Spreadsheet/ArcAssay.js +150 -0
  84. package/ISA/ISA.Spreadsheet/ArcInvestigation.js +314 -0
  85. package/ISA/ISA.Spreadsheet/ArcStudy.js +67 -0
  86. package/ISA/ISA.Spreadsheet/CollectionAux.js +128 -0
  87. package/ISA/ISA.Spreadsheet/Metadata/Assays.js +81 -0
  88. package/ISA/ISA.Spreadsheet/Metadata/Comment.js +60 -0
  89. package/ISA/ISA.Spreadsheet/Metadata/Contacts.js +104 -0
  90. package/ISA/ISA.Spreadsheet/Metadata/Conversions.js +180 -0
  91. package/ISA/ISA.Spreadsheet/Metadata/DesignDescriptors.js +27 -0
  92. package/ISA/ISA.Spreadsheet/Metadata/Factors.js +85 -0
  93. package/ISA/ISA.Spreadsheet/Metadata/OntologyAnnotation.js +65 -0
  94. package/ISA/ISA.Spreadsheet/Metadata/OntologySourceReference.js +73 -0
  95. package/ISA/ISA.Spreadsheet/Metadata/Protocols.js +116 -0
  96. package/ISA/ISA.Spreadsheet/Metadata/Publication.js +96 -0
  97. package/ISA/ISA.Spreadsheet/Metadata/SparseTable.js +451 -0
  98. package/ISA/ISA.Spreadsheet/Metadata/Study.js +260 -0
  99. package/README.md +277 -0
  100. package/SemVer.js +60 -0
  101. package/Templates/Templates.Json.js +40 -0
  102. package/Templates/Templates.Spreadsheet.js +315 -0
  103. package/Templates/Templates.js +179 -0
  104. package/fable_modules/FsSpreadsheet.4.1.0/Cells/FsCell.fs +387 -0
  105. package/fable_modules/FsSpreadsheet.4.1.0/Cells/FsCell.fs.js +240 -0
  106. package/fable_modules/FsSpreadsheet.4.1.0/Cells/FsCellsCollection.fs +725 -0
  107. package/fable_modules/FsSpreadsheet.4.1.0/Cells/FsCellsCollection.fs.js +522 -0
  108. package/fable_modules/FsSpreadsheet.4.1.0/DSL/CellBuilder.fs +195 -0
  109. package/fable_modules/FsSpreadsheet.4.1.0/DSL/CellBuilder.fs.js +208 -0
  110. package/fable_modules/FsSpreadsheet.4.1.0/DSL/ColumnBuilder.fs +209 -0
  111. package/fable_modules/FsSpreadsheet.4.1.0/DSL/ColumnBuilder.fs.js +137 -0
  112. package/fable_modules/FsSpreadsheet.4.1.0/DSL/DSL.fs +61 -0
  113. package/fable_modules/FsSpreadsheet.4.1.0/DSL/DSL.fs.js +62 -0
  114. package/fable_modules/FsSpreadsheet.4.1.0/DSL/Expression.fs +24 -0
  115. package/fable_modules/FsSpreadsheet.4.1.0/DSL/Expression.fs.js +56 -0
  116. package/fable_modules/FsSpreadsheet.4.1.0/DSL/Operators.fs +102 -0
  117. package/fable_modules/FsSpreadsheet.4.1.0/DSL/Operators.fs.js +6 -0
  118. package/fable_modules/FsSpreadsheet.4.1.0/DSL/RowBuilder.fs +200 -0
  119. package/fable_modules/FsSpreadsheet.4.1.0/DSL/RowBuilder.fs.js +137 -0
  120. package/fable_modules/FsSpreadsheet.4.1.0/DSL/SheetBuilder.fs +139 -0
  121. package/fable_modules/FsSpreadsheet.4.1.0/DSL/SheetBuilder.fs.js +116 -0
  122. package/fable_modules/FsSpreadsheet.4.1.0/DSL/TableBuilder.fs +120 -0
  123. package/fable_modules/FsSpreadsheet.4.1.0/DSL/TableBuilder.fs.js +120 -0
  124. package/fable_modules/FsSpreadsheet.4.1.0/DSL/Transform.fs +229 -0
  125. package/fable_modules/FsSpreadsheet.4.1.0/DSL/Transform.fs.js +421 -0
  126. package/fable_modules/FsSpreadsheet.4.1.0/DSL/Types.fs +151 -0
  127. package/fable_modules/FsSpreadsheet.4.1.0/DSL/Types.fs.js +277 -0
  128. package/fable_modules/FsSpreadsheet.4.1.0/DSL/WorkbookBuilder.fs +114 -0
  129. package/fable_modules/FsSpreadsheet.4.1.0/DSL/WorkbookBuilder.fs.js +104 -0
  130. package/fable_modules/FsSpreadsheet.4.1.0/FsAddress.fs +177 -0
  131. package/fable_modules/FsSpreadsheet.4.1.0/FsAddress.fs.js +249 -0
  132. package/fable_modules/FsSpreadsheet.4.1.0/FsColumn.fs +200 -0
  133. package/fable_modules/FsSpreadsheet.4.1.0/FsColumn.fs.js +125 -0
  134. package/fable_modules/FsSpreadsheet.4.1.0/FsRow.fs +202 -0
  135. package/fable_modules/FsSpreadsheet.4.1.0/FsRow.fs.js +135 -0
  136. package/fable_modules/FsSpreadsheet.4.1.0/FsSpreadsheet.fableproj +58 -0
  137. package/fable_modules/FsSpreadsheet.4.1.0/FsWorkbook.fs +183 -0
  138. package/fable_modules/FsSpreadsheet.4.1.0/FsWorkbook.fs.js +138 -0
  139. package/fable_modules/FsSpreadsheet.4.1.0/FsWorksheet.fs +628 -0
  140. package/fable_modules/FsSpreadsheet.4.1.0/FsWorksheet.fs.js +398 -0
  141. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRange.fs +19 -0
  142. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRange.fs.js +41 -0
  143. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRangeAddress.fs +222 -0
  144. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRangeAddress.fs.js +235 -0
  145. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRangeBase.fs +93 -0
  146. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRangeBase.fs.js +91 -0
  147. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRangeColumn.fs +65 -0
  148. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRangeColumn.fs.js +74 -0
  149. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRangeRow.fs +22 -0
  150. package/fable_modules/FsSpreadsheet.4.1.0/Ranges/FsRangeRow.fs.js +40 -0
  151. package/fable_modules/FsSpreadsheet.4.1.0/SheetBuilder.fs +249 -0
  152. package/fable_modules/FsSpreadsheet.4.1.0/SheetBuilder.fs.js +325 -0
  153. package/fable_modules/FsSpreadsheet.4.1.0/Tables/FsTable.fs +455 -0
  154. package/fable_modules/FsSpreadsheet.4.1.0/Tables/FsTable.fs.js +310 -0
  155. package/fable_modules/FsSpreadsheet.4.1.0/Tables/FsTableField.fs +140 -0
  156. package/fable_modules/FsSpreadsheet.4.1.0/Tables/FsTableField.fs.js +173 -0
  157. package/fable_modules/FsSpreadsheet.4.1.0/Tables/FsTableRow.fs +6 -0
  158. package/fable_modules/FsSpreadsheet.4.1.0/Tables/FsTableRow.fs.js +17 -0
  159. package/fable_modules/FsSpreadsheet.4.1.0/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
  160. package/fable_modules/FsSpreadsheet.4.1.0/obj/Debug/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +19 -0
  161. package/fable_modules/FsSpreadsheet.4.1.0/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +3 -0
  162. package/fable_modules/FsSpreadsheet.4.1.0/obj/Release/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +19 -0
  163. package/fable_modules/Thoth.Json.10.1.0/Decode.fs +1366 -0
  164. package/fable_modules/Thoth.Json.10.1.0/Decode.fs.js +1798 -0
  165. package/fable_modules/Thoth.Json.10.1.0/Encode.fs +621 -0
  166. package/fable_modules/Thoth.Json.10.1.0/Encode.fs.js +472 -0
  167. package/fable_modules/Thoth.Json.10.1.0/Extra.fs +31 -0
  168. package/fable_modules/Thoth.Json.10.1.0/Extra.fs.js +8 -0
  169. package/fable_modules/Thoth.Json.10.1.0/Thoth.Json.fableproj +30 -0
  170. package/fable_modules/Thoth.Json.10.1.0/Types.fs +59 -0
  171. package/fable_modules/Thoth.Json.10.1.0/Types.fs.js +98 -0
  172. package/fable_modules/Thoth.Json.10.1.0/obj/Release/netstandard2.0/Thoth.Json.AssemblyInfo.fs +19 -0
  173. package/fable_modules/Thoth.Json.10.1.0/package.json +5 -0
  174. package/fable_modules/fable-library.4.1.4/Array.d.ts +120 -0
  175. package/fable_modules/fable-library.4.1.4/Array.js +1204 -0
  176. package/fable_modules/fable-library.4.1.4/Async.d.ts +32 -0
  177. package/fable_modules/fable-library.4.1.4/Async.js +158 -0
  178. package/fable_modules/fable-library.4.1.4/AsyncBuilder.d.ts +59 -0
  179. package/fable_modules/fable-library.4.1.4/AsyncBuilder.js +183 -0
  180. package/fable_modules/fable-library.4.1.4/BigInt.d.ts +115 -0
  181. package/fable_modules/fable-library.4.1.4/BigInt.js +282 -0
  182. package/fable_modules/fable-library.4.1.4/BitConverter.d.ts +27 -0
  183. package/fable_modules/fable-library.4.1.4/BitConverter.js +138 -0
  184. package/fable_modules/fable-library.4.1.4/Boolean.d.ts +3 -0
  185. package/fable_modules/fable-library.4.1.4/Boolean.js +21 -0
  186. package/fable_modules/fable-library.4.1.4/Char.d.ts +65 -0
  187. package/fable_modules/fable-library.4.1.4/Char.js +169 -0
  188. package/fable_modules/fable-library.4.1.4/Choice.d.ts +138 -0
  189. package/fable_modules/fable-library.4.1.4/Choice.js +227 -0
  190. package/fable_modules/fable-library.4.1.4/Date.d.ts +70 -0
  191. package/fable_modules/fable-library.4.1.4/Date.js +451 -0
  192. package/fable_modules/fable-library.4.1.4/DateOffset.d.ts +63 -0
  193. package/fable_modules/fable-library.4.1.4/DateOffset.js +268 -0
  194. package/fable_modules/fable-library.4.1.4/DateOnly.d.ts +18 -0
  195. package/fable_modules/fable-library.4.1.4/DateOnly.js +124 -0
  196. package/fable_modules/fable-library.4.1.4/Decimal.d.ts +45 -0
  197. package/fable_modules/fable-library.4.1.4/Decimal.js +212 -0
  198. package/fable_modules/fable-library.4.1.4/Double.d.ts +11 -0
  199. package/fable_modules/fable-library.4.1.4/Double.js +46 -0
  200. package/fable_modules/fable-library.4.1.4/Encoding.d.ts +12 -0
  201. package/fable_modules/fable-library.4.1.4/Encoding.js +173 -0
  202. package/fable_modules/fable-library.4.1.4/Event.d.ts +31 -0
  203. package/fable_modules/fable-library.4.1.4/Event.js +93 -0
  204. package/fable_modules/fable-library.4.1.4/FSharp.Collections.d.ts +7 -0
  205. package/fable_modules/fable-library.4.1.4/FSharp.Collections.js +27 -0
  206. package/fable_modules/fable-library.4.1.4/FSharp.Core.d.ts +17 -0
  207. package/fable_modules/fable-library.4.1.4/FSharp.Core.js +69 -0
  208. package/fable_modules/fable-library.4.1.4/Global.d.ts +24 -0
  209. package/fable_modules/fable-library.4.1.4/Global.js +8 -0
  210. package/fable_modules/fable-library.4.1.4/Guid.d.ts +10 -0
  211. package/fable_modules/fable-library.4.1.4/Guid.js +142 -0
  212. package/fable_modules/fable-library.4.1.4/Int32.d.ts +28 -0
  213. package/fable_modules/fable-library.4.1.4/Int32.js +135 -0
  214. package/fable_modules/fable-library.4.1.4/List.d.ts +143 -0
  215. package/fable_modules/fable-library.4.1.4/List.js +1273 -0
  216. package/fable_modules/fable-library.4.1.4/Long.d.ts +3 -0
  217. package/fable_modules/fable-library.4.1.4/Long.js +46 -0
  218. package/fable_modules/fable-library.4.1.4/MailboxProcessor.d.ts +25 -0
  219. package/fable_modules/fable-library.4.1.4/MailboxProcessor.js +93 -0
  220. package/fable_modules/fable-library.4.1.4/Map.d.ts +178 -0
  221. package/fable_modules/fable-library.4.1.4/Map.js +1396 -0
  222. package/fable_modules/fable-library.4.1.4/MapUtil.d.ts +10 -0
  223. package/fable_modules/fable-library.4.1.4/MapUtil.js +112 -0
  224. package/fable_modules/fable-library.4.1.4/MutableMap.d.ts +52 -0
  225. package/fable_modules/fable-library.4.1.4/MutableMap.js +326 -0
  226. package/fable_modules/fable-library.4.1.4/MutableSet.d.ts +39 -0
  227. package/fable_modules/fable-library.4.1.4/MutableSet.js +232 -0
  228. package/fable_modules/fable-library.4.1.4/Native.d.ts +2 -0
  229. package/fable_modules/fable-library.4.1.4/Native.js +8 -0
  230. package/fable_modules/fable-library.4.1.4/Numeric.d.ts +19 -0
  231. package/fable_modules/fable-library.4.1.4/Numeric.js +71 -0
  232. package/fable_modules/fable-library.4.1.4/Observable.d.ts +32 -0
  233. package/fable_modules/fable-library.4.1.4/Observable.js +113 -0
  234. package/fable_modules/fable-library.4.1.4/Option.d.ts +28 -0
  235. package/fable_modules/fable-library.4.1.4/Option.js +96 -0
  236. package/fable_modules/fable-library.4.1.4/README.md +3 -0
  237. package/fable_modules/fable-library.4.1.4/Random.d.ts +37 -0
  238. package/fable_modules/fable-library.4.1.4/Random.js +170 -0
  239. package/fable_modules/fable-library.4.1.4/Range.d.ts +12 -0
  240. package/fable_modules/fable-library.4.1.4/Range.js +45 -0
  241. package/fable_modules/fable-library.4.1.4/Reflection.d.ts +119 -0
  242. package/fable_modules/fable-library.4.1.4/Reflection.js +461 -0
  243. package/fable_modules/fable-library.4.1.4/RegExp.d.ts +10 -0
  244. package/fable_modules/fable-library.4.1.4/RegExp.js +132 -0
  245. package/fable_modules/fable-library.4.1.4/Seq.d.ts +165 -0
  246. package/fable_modules/fable-library.4.1.4/Seq.js +1379 -0
  247. package/fable_modules/fable-library.4.1.4/Seq2.d.ts +18 -0
  248. package/fable_modules/fable-library.4.1.4/Seq2.js +111 -0
  249. package/fable_modules/fable-library.4.1.4/Set.d.ts +190 -0
  250. package/fable_modules/fable-library.4.1.4/Set.js +1789 -0
  251. package/fable_modules/fable-library.4.1.4/String.d.ts +49 -0
  252. package/fable_modules/fable-library.4.1.4/String.js +540 -0
  253. package/fable_modules/fable-library.4.1.4/System.Collections.Generic.d.ts +71 -0
  254. package/fable_modules/fable-library.4.1.4/System.Collections.Generic.js +307 -0
  255. package/fable_modules/fable-library.4.1.4/System.Text.d.ts +30 -0
  256. package/fable_modules/fable-library.4.1.4/System.Text.js +110 -0
  257. package/fable_modules/fable-library.4.1.4/SystemException.d.ts +5 -0
  258. package/fable_modules/fable-library.4.1.4/SystemException.js +5 -0
  259. package/fable_modules/fable-library.4.1.4/TimeOnly.d.ts +15 -0
  260. package/fable_modules/fable-library.4.1.4/TimeOnly.js +122 -0
  261. package/fable_modules/fable-library.4.1.4/TimeSpan.d.ts +34 -0
  262. package/fable_modules/fable-library.4.1.4/TimeSpan.js +177 -0
  263. package/fable_modules/fable-library.4.1.4/Timer.d.ts +19 -0
  264. package/fable_modules/fable-library.4.1.4/Timer.js +67 -0
  265. package/fable_modules/fable-library.4.1.4/Types.d.ts +58 -0
  266. package/fable_modules/fable-library.4.1.4/Types.js +208 -0
  267. package/fable_modules/fable-library.4.1.4/Unicode.13.0.0.d.ts +2 -0
  268. package/fable_modules/fable-library.4.1.4/Unicode.13.0.0.js +4 -0
  269. package/fable_modules/fable-library.4.1.4/Uri.d.ts +29 -0
  270. package/fable_modules/fable-library.4.1.4/Uri.js +142 -0
  271. package/fable_modules/fable-library.4.1.4/Util.d.ts +187 -0
  272. package/fable_modules/fable-library.4.1.4/Util.js +662 -0
  273. package/fable_modules/fable-library.4.1.4/lib/big.d.ts +338 -0
  274. package/fable_modules/fable-library.4.1.4/lib/big.js +826 -0
  275. package/fable_modules/fable-library.4.1.4/package.json +23 -0
  276. package/fable_modules/project_cracked.json +1 -0
  277. package/package.json +22 -0
@@ -0,0 +1,125 @@
1
+ import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
2
+ import { FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
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.1.4/Seq.js";
5
+ import { toIterator, getEnumerator, comparePrimitives } from "../fable-library.4.1.4/Util.js";
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.1.4/Reflection.js";
8
+
9
+ export class FsColumn extends FsRangeBase {
10
+ constructor(rangeAddress, cells) {
11
+ super(rangeAddress);
12
+ this["cells@18"] = cells;
13
+ }
14
+ static empty() {
15
+ return new FsColumn(FsRangeAddress_$ctor_7E77A4A0(FsAddress_$ctor_Z37302880(0, 0), FsAddress_$ctor_Z37302880(0, 0)), FsCellsCollection_$ctor());
16
+ }
17
+ static createAt(index, cells) {
18
+ const getIndexBy = (f) => {
19
+ if (length(FsCellsCollection__GetCellsInColumn_Z524259A4(cells, index)) === 0) {
20
+ return 1;
21
+ }
22
+ else {
23
+ return FsAddress__get_RowNumber(f((c) => FsAddress__get_RowNumber(c.Address))(FsCellsCollection__GetCellsInColumn_Z524259A4(cells, index)).Address) | 0;
24
+ }
25
+ };
26
+ const minRowIndex = getIndexBy((projection) => ((source_1) => minBy(projection, source_1, {
27
+ Compare: comparePrimitives,
28
+ }))) | 0;
29
+ const maxRowIndex = getIndexBy((projection_1) => ((source_2) => maxBy(projection_1, source_2, {
30
+ Compare: comparePrimitives,
31
+ }))) | 0;
32
+ return new FsColumn(FsRangeAddress_$ctor_7E77A4A0(FsAddress_$ctor_Z37302880(minRowIndex, index), FsAddress_$ctor_Z37302880(maxRowIndex, index)), cells);
33
+ }
34
+ get Cells() {
35
+ const this$ = this;
36
+ return FsRangeBase__Cells_Z2740B3CA(this$, this$["cells@18"]);
37
+ }
38
+ get Index() {
39
+ const this$ = this;
40
+ return FsAddress__get_ColumnNumber(FsRangeAddress__get_FirstAddress(FsRangeBase__get_RangeAddress(this$))) | 0;
41
+ }
42
+ set Index(i) {
43
+ const this$ = this;
44
+ FsAddress__set_ColumnNumber_Z524259A4(FsRangeAddress__get_FirstAddress(FsRangeBase__get_RangeAddress(this$)), i);
45
+ FsAddress__set_ColumnNumber_Z524259A4(FsRangeAddress__get_LastAddress(FsRangeBase__get_RangeAddress(this$)), i);
46
+ }
47
+ get MinRowIndex() {
48
+ const this$ = this;
49
+ return FsAddress__get_RowNumber(FsRangeAddress__get_FirstAddress(FsRangeBase__get_RangeAddress(this$))) | 0;
50
+ }
51
+ get MaxRowIndex() {
52
+ const this$ = this;
53
+ return FsAddress__get_RowNumber(FsRangeAddress__get_LastAddress(FsRangeBase__get_RangeAddress(this$))) | 0;
54
+ }
55
+ Copy() {
56
+ const this$ = this;
57
+ const ra = FsRangeAddress__Copy(FsRangeBase__get_RangeAddress(this$));
58
+ const cells = map((c) => c.Copy(), this$.Cells);
59
+ const fcc = FsCellsCollection_$ctor();
60
+ FsCellsCollection__Add_Z21F271A4(fcc, cells);
61
+ return new FsColumn(ra, fcc);
62
+ }
63
+ static copy(column) {
64
+ return column.Copy();
65
+ }
66
+ static getIndex(column) {
67
+ return column.Index;
68
+ }
69
+ HasCellAt(rowIndex) {
70
+ const this$ = this;
71
+ return exists((c) => (c.RowNumber === rowIndex), this$.Cells);
72
+ }
73
+ static hasCellAt(rowIndex, column) {
74
+ return column.HasCellAt(rowIndex);
75
+ }
76
+ Item(rowIndex) {
77
+ const this$ = this;
78
+ return FsRangeBase__Cell_Z3407A44B(this$, FsAddress_$ctor_Z37302880(rowIndex, 1), this$["cells@18"]);
79
+ }
80
+ static item(rowIndex, column) {
81
+ return column.Item(rowIndex);
82
+ }
83
+ TryItem(rowIndex) {
84
+ const this$ = this;
85
+ return this$.HasCellAt(rowIndex) ? this$.Item(rowIndex) : void 0;
86
+ }
87
+ static tryItem(rowIndex, column) {
88
+ return column.TryItem(rowIndex);
89
+ }
90
+ ToDenseColumn() {
91
+ const this$ = this;
92
+ for (let i = this$.MinRowIndex; i <= this$.MaxRowIndex; i++) {
93
+ this$.Item(i);
94
+ }
95
+ }
96
+ static toDenseColumn(column) {
97
+ column.ToDenseColumn();
98
+ return column;
99
+ }
100
+ static createDenseColumnOf(column) {
101
+ const newColumn = column.Copy();
102
+ newColumn.ToDenseColumn();
103
+ return newColumn;
104
+ }
105
+ GetEnumerator() {
106
+ const this$ = this;
107
+ return getEnumerator(this$.Cells);
108
+ }
109
+ [Symbol.iterator]() {
110
+ return toIterator(getEnumerator(this));
111
+ }
112
+ "System.Collections.IEnumerable.GetEnumerator"() {
113
+ const this$ = this;
114
+ return getEnumerator(this$);
115
+ }
116
+ }
117
+
118
+ export function FsColumn_$reflection() {
119
+ return class_type("FsSpreadsheet.FsColumn", void 0, FsColumn, FsRangeBase_$reflection());
120
+ }
121
+
122
+ export function FsColumn_$ctor_7678C70A(rangeAddress, cells) {
123
+ return new FsColumn(rangeAddress, cells);
124
+ }
125
+
@@ -0,0 +1,202 @@
1
+ namespace FsSpreadsheet
2
+
3
+
4
+ open System.Collections.Generic
5
+ open System.Collections
6
+
7
+ open Fable.Core
8
+
9
+
10
+ // Type based on the type XLRow used in ClosedXml
11
+ /// <summary>
12
+ /// Creates an FsRow from the given FsRangeAddress, consisting of FsCells within a given FsCellsCollection, and a styleValue.
13
+ /// </summary>
14
+ /// <remarks>The FsCellsCollection must only cover 1 row!</remarks>
15
+ /// <exception cref="System.Exception">if given FsCellsCollection has more than 1 row.</exception>
16
+ [<AttachMembers>]
17
+ type FsRow (rangeAddress : FsRangeAddress, cells : FsCellsCollection)=
18
+
19
+ inherit FsRangeBase(rangeAddress)
20
+
21
+ let cells = cells
22
+
23
+ // ----------
24
+ // Creation
25
+ // ----------
26
+
27
+ static member empty() = FsRow (FsRangeAddress(FsAddress(0,0), FsAddress(0,0)), FsCellsCollection())
28
+
29
+ /// <summary>
30
+ /// Creates an FsRow from a given FsCellsCollection and an rowIndex.
31
+ /// </summary>
32
+ /// <remarks>The appropriate range of the cells (i.e. minimum colIndex and maximum colIndex) is derived from the FsCells with the matching rowIndex.</remarks>
33
+ static member createAt(index, (cells : FsCellsCollection)) =
34
+ let getIndexBy (f : (FsCell -> int) -> seq<FsCell> -> FsCell) =
35
+ match cells.GetCellsInRow index |> Seq.length with
36
+ | 0 -> 1
37
+ | _ ->
38
+ (
39
+ cells.GetCellsInRow index
40
+ |> f (fun c -> c.Address.ColumnNumber)
41
+ ).Address.ColumnNumber
42
+ let minColIndex = getIndexBy Seq.minBy
43
+ let maxColIndex = getIndexBy Seq.maxBy
44
+ FsRow (FsRangeAddress(FsAddress(index, minColIndex), FsAddress(index, maxColIndex)), cells)
45
+
46
+ interface IEnumerable<FsCell> with
47
+ member this.GetEnumerator() : System.Collections.Generic.IEnumerator<FsCell> = this.Cells.GetEnumerator()
48
+
49
+ interface IEnumerable with
50
+ member this.GetEnumerator() = (this :> IEnumerable<FsCell>).GetEnumerator() :> IEnumerator
51
+
52
+ // ----------
53
+ // PROPERTIES
54
+ // ----------
55
+
56
+ /// The associated FsCells.
57
+ member this.Cells =
58
+ base.Cells(cells)
59
+
60
+ /// <summary>
61
+ /// The index of the FsRow.
62
+ /// </summary>
63
+ member this.Index
64
+ with get() = this.RangeAddress.FirstAddress.RowNumber
65
+ and set(i) =
66
+ this.RangeAddress.FirstAddress.RowNumber <- i
67
+ this.RangeAddress.LastAddress.RowNumber <- i
68
+
69
+ /// <summary>
70
+ /// The number of the lowest column index of the FsRow where an FsCell exists.
71
+ /// </summary>
72
+ member this.MinColIndex
73
+ with get() = this.RangeAddress.FirstAddress.ColumnNumber
74
+
75
+ /// <summary>
76
+ /// The number of the highest column index of the FsRow where an FsCell exists.
77
+ /// </summary>
78
+ member this.MaxColIndex
79
+ with get() = this.RangeAddress.LastAddress.ColumnNumber
80
+
81
+
82
+ // -------
83
+ // METHODS
84
+ // -------
85
+
86
+ /// <summary>
87
+ /// Creates a deep copy of this FsRow.
88
+ /// </summary>
89
+ member this.Copy() =
90
+ let ra = this.RangeAddress.Copy()
91
+ let cells = this.Cells |> Seq.map (fun c -> c.Copy())
92
+ let fcc = FsCellsCollection()
93
+ fcc.Add cells
94
+ FsRow(ra, fcc)
95
+
96
+ /// <summary>
97
+ /// Returns a deep copy of a given FsRow.
98
+ /// </summary>
99
+ static member copy (row : FsRow) =
100
+ row.Copy()
101
+
102
+ /// <summary>
103
+ /// Returns the index of the given FsRow.
104
+ /// </summary>
105
+ static member getIndex (row : FsRow) =
106
+ row.Index
107
+
108
+ /// <summary>
109
+ /// Checks if there is an FsCell at given column index.
110
+ /// </summary>
111
+ /// <param name="colIndex">The number of the column where the presence of an FsCell shall be checked.</param>
112
+ member this.HasCellAt(colIndex) =
113
+ this.Cells
114
+ |> Seq.exists (fun c -> c.ColumnNumber = colIndex)
115
+
116
+ /// <summary>
117
+ /// Checks if there is an FsCell at given column index of a given FsRow.
118
+ /// </summary>
119
+ /// <param name="colIndex">The number of the column where the presence of an FsCell shall be checked.</param>
120
+ static member hasCellAt colIndex (row : FsRow) =
121
+ row.HasCellAt colIndex
122
+
123
+ /// <summary>
124
+ /// Returns the FsCell at columnIndex if it exists. Else creates an empty FsCell at that position.
125
+ /// </summary>
126
+ member this.Item(columnIndex) =
127
+ // use FsRangeBase call with colindex 1
128
+ base.Cell(FsAddress(1, columnIndex), cells)
129
+
130
+ /// <summary>
131
+ /// Returns the FsCell at the given columnIndex from an FsRow if it exists. Else creates an ampty FsCell at that position.
132
+ /// </summary>
133
+ static member item colIndex (row : FsRow) =
134
+ row.Item(colIndex)
135
+
136
+ /// <summary>
137
+ /// Returns the FsCell at the given columnIndex if it exists. Else returns None.
138
+ /// </summary>
139
+ /// <param name="colIndex">The number of the column where the FsCell shall be retrieved.</param>
140
+ member this.TryItem(colIndex) =
141
+ if this.HasCellAt colIndex then Some this[colIndex]
142
+ else None
143
+
144
+ /// <summary>
145
+ /// Returns the FsCell at the given columnIndex if it exists in the given FsRow. Else returns None.
146
+ /// </summary>
147
+ /// <param name="colIndex">The number of the column where the FsCell shall be retrieved.</param>
148
+ static member tryItem colIndex (row : FsRow) =
149
+ row.TryItem colIndex
150
+
151
+ /// <summary>
152
+ /// Inserts the value at columnIndex as an FsCell. If there is an FsCell at the position, this FsCells and all the ones right to it are shifted to the right.
153
+ /// </summary>
154
+ member this.InsertValueAt(colIndex, (value : 'a)) =
155
+ let cell = FsCell(value)
156
+ cells.Add(int32 this.Index, int32 colIndex, cell)
157
+
158
+ /// <summary>
159
+ /// Adds a value at the given row- and columnIndex to FsRow using.
160
+ ///
161
+ /// If a cell exists in the given position, shoves it to the right.
162
+ /// </summary>
163
+ static member insertValueAt colIndex value (row : FsRow) =
164
+ row.InsertValueAt(colIndex, value) |> ignore
165
+ row
166
+
167
+ //member this.SortCells() = _cells <- _cells |> List.sortBy (fun c -> c.WorksheetColumn)
168
+
169
+ // TO DO (later)
170
+ ///// Takes an FsCellsCollection and creates an FsRow from the given rowIndex and the cells in the FsCellsCollection that share the same rowIndex.
171
+ //static member fromCellsCollection rowIndex (cellsCollection : FsCellsCollection) =
172
+
173
+ /// <summary>
174
+ /// Transforms the FsRow into a dense FsRow.
175
+ ///
176
+ /// FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such "empty positions" are then filled with empty FsCells.
177
+ /// </summary>
178
+ member this.ToDenseRow() =
179
+ for i = this.MinColIndex to this.MaxColIndex do
180
+ ignore this[i]
181
+
182
+ /// <summary>
183
+ /// Transforms the given FsRow into a dense FsRow.
184
+ ///
185
+ /// FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such "empty positions" are then filled with empty FsCells.
186
+ /// </summary>
187
+ /// <param name="row">The FsRow that gets transformed into a dense FsRow.</param>
188
+ /// <remarks>This is an in-place operation.</remarks>
189
+ static member toDenseRow (row : FsRow) =
190
+ row.ToDenseRow()
191
+ row
192
+
193
+ /// <summary>
194
+ /// Takes a given FsRow and returns a new dense FsRow from it.
195
+ ///
196
+ /// FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such "empty positions" are then filled with empty FsCells.
197
+ /// </summary>
198
+ /// <param name="row">The FsRow that whose copy gets transformed into a dense FsRow.</param>
199
+ static member createDenseRowOf (row : FsRow) =
200
+ let newRow = row.Copy()
201
+ newRow.ToDenseRow()
202
+ newRow
@@ -0,0 +1,135 @@
1
+ import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
2
+ import { FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
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.1.4/Seq.js";
5
+ import { toIterator, getEnumerator, comparePrimitives } from "../fable-library.4.1.4/Util.js";
6
+ import { FsRangeBase_$reflection, FsRangeBase, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase__Cells_Z2740B3CA } from "./Ranges/FsRangeBase.fs.js";
7
+ import { FsCell } from "./Cells/FsCell.fs.js";
8
+ import { class_type } from "../fable-library.4.1.4/Reflection.js";
9
+
10
+ export class FsRow extends FsRangeBase {
11
+ constructor(rangeAddress, cells) {
12
+ super(rangeAddress);
13
+ this["cells@21"] = cells;
14
+ }
15
+ static empty() {
16
+ return new FsRow(FsRangeAddress_$ctor_7E77A4A0(FsAddress_$ctor_Z37302880(0, 0), FsAddress_$ctor_Z37302880(0, 0)), FsCellsCollection_$ctor());
17
+ }
18
+ static createAt(index, cells) {
19
+ const getIndexBy = (f) => {
20
+ if (length(FsCellsCollection__GetCellsInRow_Z524259A4(cells, index)) === 0) {
21
+ return 1;
22
+ }
23
+ else {
24
+ return FsAddress__get_ColumnNumber(f((c) => FsAddress__get_ColumnNumber(c.Address))(FsCellsCollection__GetCellsInRow_Z524259A4(cells, index)).Address) | 0;
25
+ }
26
+ };
27
+ const minColIndex = getIndexBy((projection) => ((source_1) => minBy(projection, source_1, {
28
+ Compare: comparePrimitives,
29
+ }))) | 0;
30
+ const maxColIndex = getIndexBy((projection_1) => ((source_2) => maxBy(projection_1, source_2, {
31
+ Compare: comparePrimitives,
32
+ }))) | 0;
33
+ return new FsRow(FsRangeAddress_$ctor_7E77A4A0(FsAddress_$ctor_Z37302880(index, minColIndex), FsAddress_$ctor_Z37302880(index, maxColIndex)), cells);
34
+ }
35
+ get Cells() {
36
+ const this$ = this;
37
+ return FsRangeBase__Cells_Z2740B3CA(this$, this$["cells@21"]);
38
+ }
39
+ get Index() {
40
+ const this$ = this;
41
+ return FsAddress__get_RowNumber(FsRangeAddress__get_FirstAddress(FsRangeBase__get_RangeAddress(this$))) | 0;
42
+ }
43
+ set Index(i) {
44
+ const this$ = this;
45
+ FsAddress__set_RowNumber_Z524259A4(FsRangeAddress__get_FirstAddress(FsRangeBase__get_RangeAddress(this$)), i);
46
+ FsAddress__set_RowNumber_Z524259A4(FsRangeAddress__get_LastAddress(FsRangeBase__get_RangeAddress(this$)), i);
47
+ }
48
+ get MinColIndex() {
49
+ const this$ = this;
50
+ return FsAddress__get_ColumnNumber(FsRangeAddress__get_FirstAddress(FsRangeBase__get_RangeAddress(this$))) | 0;
51
+ }
52
+ get MaxColIndex() {
53
+ const this$ = this;
54
+ return FsAddress__get_ColumnNumber(FsRangeAddress__get_LastAddress(FsRangeBase__get_RangeAddress(this$))) | 0;
55
+ }
56
+ Copy() {
57
+ const this$ = this;
58
+ const ra = FsRangeAddress__Copy(FsRangeBase__get_RangeAddress(this$));
59
+ const cells = map((c) => c.Copy(), this$.Cells);
60
+ const fcc = FsCellsCollection_$ctor();
61
+ FsCellsCollection__Add_Z21F271A4(fcc, cells);
62
+ return new FsRow(ra, fcc);
63
+ }
64
+ static copy(row) {
65
+ return row.Copy();
66
+ }
67
+ static getIndex(row) {
68
+ return row.Index;
69
+ }
70
+ HasCellAt(colIndex) {
71
+ const this$ = this;
72
+ return exists((c) => (c.ColumnNumber === colIndex), this$.Cells);
73
+ }
74
+ static hasCellAt(colIndex, row) {
75
+ return row.HasCellAt(colIndex);
76
+ }
77
+ Item(columnIndex) {
78
+ const this$ = this;
79
+ return FsRangeBase__Cell_Z3407A44B(this$, FsAddress_$ctor_Z37302880(1, columnIndex), this$["cells@21"]);
80
+ }
81
+ static item(colIndex, row) {
82
+ return row.Item(colIndex);
83
+ }
84
+ TryItem(colIndex) {
85
+ const this$ = this;
86
+ return this$.HasCellAt(colIndex) ? this$.Item(colIndex) : void 0;
87
+ }
88
+ static tryItem(colIndex, row) {
89
+ return row.TryItem(colIndex);
90
+ }
91
+ InsertValueAt(colIndex, value) {
92
+ const this$ = this;
93
+ const cell = new FsCell(value);
94
+ FsCellsCollection__Add_2E78CE33(this$["cells@21"], this$.Index, colIndex, cell);
95
+ }
96
+ static insertValueAt(colIndex, value, row) {
97
+ const value_1 = row.InsertValueAt(colIndex, value);
98
+ return row;
99
+ }
100
+ ToDenseRow() {
101
+ const this$ = this;
102
+ for (let i = this$.MinColIndex; i <= this$.MaxColIndex; i++) {
103
+ this$.Item(i);
104
+ }
105
+ }
106
+ static toDenseRow(row) {
107
+ row.ToDenseRow();
108
+ return row;
109
+ }
110
+ static createDenseRowOf(row) {
111
+ const newRow = row.Copy();
112
+ newRow.ToDenseRow();
113
+ return newRow;
114
+ }
115
+ GetEnumerator() {
116
+ const this$ = this;
117
+ return getEnumerator(this$.Cells);
118
+ }
119
+ [Symbol.iterator]() {
120
+ return toIterator(getEnumerator(this));
121
+ }
122
+ "System.Collections.IEnumerable.GetEnumerator"() {
123
+ const this$ = this;
124
+ return getEnumerator(this$);
125
+ }
126
+ }
127
+
128
+ export function FsRow_$reflection() {
129
+ return class_type("FsSpreadsheet.FsRow", void 0, FsRow, FsRangeBase_$reflection());
130
+ }
131
+
132
+ export function FsRow_$ctor_7678C70A(rangeAddress, cells) {
133
+ return new FsRow(rangeAddress, cells);
134
+ }
135
+
@@ -0,0 +1,58 @@
1
+ <Project Sdk="Microsoft.NET.Sdk">
2
+
3
+ <PropertyGroup>
4
+ <TargetFrameworks>netstandard2.0</TargetFrameworks>
5
+ <GenerateDocumentationFile>true</GenerateDocumentationFile>
6
+ </PropertyGroup>
7
+
8
+ <ItemGroup>
9
+ <Compile Include="FsAddress.fs" />
10
+ <Compile Include="Cells\FsCell.fs" />
11
+ <Compile Include="Cells\FsCellsCollection.fs" />
12
+ <Compile Include="Ranges\FsRangeAddress.fs" />
13
+ <Compile Include="Ranges\FsRangeBase.fs" />
14
+ <Compile Include="Ranges\FsRangeRow.fs" />
15
+ <Compile Include="Ranges\FsRangeColumn.fs" />
16
+ <Compile Include="Ranges\FsRange.fs" />
17
+ <Compile Include="FsRow.fs" />
18
+ <Compile Include="FsColumn.fs" />
19
+ <Compile Include="Tables\FsTableField.fs" />
20
+ <Compile Include="Tables\FsTableRow.fs" />
21
+ <Compile Include="Tables\FsTable.fs" />
22
+ <Compile Include="FsWorksheet.fs" />
23
+ <Compile Include="FsWorkbook.fs" />
24
+ <Compile Include="SheetBuilder.fs" />
25
+ <Compile Include="DSL\Expression.fs" />
26
+ <Compile Include="DSL\Types.fs" />
27
+ <Compile Include="DSL\Transform.fs" />
28
+ <Compile Include="DSL\Operators.fs" />
29
+ <Compile Include="DSL\CellBuilder.fs" />
30
+ <Compile Include="DSL\RowBuilder.fs" />
31
+ <Compile Include="DSL\ColumnBuilder.fs" />
32
+ <Compile Include="DSL\TableBuilder.fs" />
33
+ <Compile Include="DSL\SheetBuilder.fs" />
34
+ <Compile Include="DSL\WorkbookBuilder.fs" />
35
+ <Compile Include="DSL\DSL.fs" />
36
+ <None Include="..\..\docs\img\logo.png" Pack="true" PackagePath="\" />
37
+ </ItemGroup>
38
+
39
+ <PropertyGroup>
40
+ <Authors>Heinrich Lukas Weil, Oliver Maus, Kevin Schneider, Kevin Frey, Timo Mühlhaus</Authors>
41
+ <Description>Fable compliant Spreadsheet creation and manipulation in FSharp</Description>
42
+ <Summary>Spreadsheet creation and manipulation in FSharp</Summary>
43
+ <PackageLicenseExpression>MIT</PackageLicenseExpression>
44
+ <PackageIcon>logo.png</PackageIcon>
45
+ <PackageTags>F# FSharp spreadsheet Excel xlsx datascience fable fable-library</PackageTags>
46
+ <RepositoryUrl>https://github.com/CSBiology/FsSpreadsheet</RepositoryUrl>
47
+ <RepositoryType>git</RepositoryType>
48
+ </PropertyGroup>
49
+
50
+ <ItemGroup>
51
+ <Content Include="*.fsproj; **\*.fs; **\*.fsi" PackagePath="fable\" />
52
+ </ItemGroup>
53
+
54
+ <ItemGroup>
55
+ <PackageReference Include="Fable.Core" Version="4.0.0" />
56
+ </ItemGroup>
57
+
58
+ </Project>