@meaningfully/ui 0.0.2 → 0.0.3

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.
@@ -29,6 +29,7 @@
29
29
 
30
30
  api.getDocumentSet(documentSetId).then((receivedDocumentSet: DocumentSet) => {
31
31
  documentSet = receivedDocumentSet;
32
+ documentSet.uploadDate = new Date(documentSet.uploadDate); // convert to Date object, if necessary (SQLite returns date obj, Postgres returns string)
32
33
  metadataColumns = (documentSet.parameters.metadataColumns ?? []) as string[];
33
34
  // @ts-ignore
34
35
  textColumn = documentSet.parameters.textColumns[0] as string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meaningfully/ui",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "license": "MIT",
5
5
  "description": "Svelte components for meaningfully semantic search",
6
6
  "repo": "https://github.com/jeremybmerrill/meaningfully-ui",