@vizabi/reader-ddfcsv 4.3.2 → 4.3.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.
Files changed (31) hide show
  1. package/dist/reader-ddfcsv-polyfill.js +1 -1
  2. package/dist/reader-ddfcsv-polyfill.js.map +1 -1
  3. package/dist/reader-ddfcsv.js +2 -2
  4. package/dist/reader-ddfcsv.js.map +1 -1
  5. package/lib/src/ddf-csv.d.ts +2 -1
  6. package/lib/src/ddf-csv.js +15 -8
  7. package/lib/src/ddf-csv.js.map +1 -1
  8. package/lib/src/ddfcsv-reader.js +1 -1
  9. package/lib/src/ddfcsv-reader.js.map +1 -1
  10. package/lib/src/resource-selection-optimizer/in-clause-under-conjunction.d.ts +1 -3
  11. package/lib/src/resource-selection-optimizer/in-clause-under-conjunction.js +38 -83
  12. package/lib/src/resource-selection-optimizer/in-clause-under-conjunction.js.map +1 -1
  13. package/lib-web/src/ddf-csv.d.ts +2 -1
  14. package/lib-web/src/ddf-csv.js +15 -8
  15. package/lib-web/src/ddf-csv.js.map +1 -1
  16. package/lib-web/src/ddfcsv-reader.js +1 -1
  17. package/lib-web/src/ddfcsv-reader.js.map +1 -1
  18. package/lib-web/src/resource-selection-optimizer/in-clause-under-conjunction.d.ts +1 -3
  19. package/lib-web/src/resource-selection-optimizer/in-clause-under-conjunction.js +38 -83
  20. package/lib-web/src/resource-selection-optimizer/in-clause-under-conjunction.js.map +1 -1
  21. package/package.json +3 -3
  22. package/src/ddf-csv.ts +13 -9
  23. package/src/ddfcsv-reader.ts +1 -1
  24. package/src/resource-selection-optimizer/in-clause-under-conjunction.ts +39 -101
  25. package/test/definition/datapoints-definition.spec.ts +1 -1
  26. package/test/main.spec.ts +8 -4
  27. package/test/result-fixtures/in-clause-under-conjunction-1.json +100 -100
  28. package/test/result-fixtures/in-clause-under-conjunction-2.json +70169 -70169
  29. package/test/result-fixtures/multi-instances/entities-sg.json +2 -2
  30. package/test/tslint.json +3 -2
  31. package/tslint.json +1 -1
@@ -352,7 +352,7 @@
352
352
  {
353
353
  "geo": "fra_clipperton",
354
354
  "name": "Clipperton",
355
- "world_4region": "",
355
+ "world_4region": null,
356
356
  "latitude": null,
357
357
  "longitude": null
358
358
  },
@@ -597,7 +597,7 @@
597
597
  {
598
598
  "geo": "fra_antarc",
599
599
  "name": "French Southern and Antarctic Lands",
600
- "world_4region": "",
600
+ "world_4region": null,
601
601
  "latitude": null,
602
602
  "longitude": null
603
603
  },
package/test/tslint.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "rules": {
8
8
  "no-unused-expression-chai": true,
9
9
  "ban-types": false,
10
- "quotemark": [true, "single"],
10
+ "quotemark": false,
11
11
  "arrow-parens": false,
12
12
  "no-var-requires": false,
13
13
  "trailing-comma": false,
@@ -17,7 +17,8 @@
17
17
  "member-access": false,
18
18
  "no-unused-expression": false,
19
19
  "ordered-imports": false,
20
- "max-line-length": false
20
+ "max-line-length": false,
21
+ "no-console": false
21
22
  },
22
23
  "rulesDirectory": [
23
24
  "tslint-no-unused-expression-chai"
package/tslint.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "rules": {
8
8
  "no-unused-expression-chai": true,
9
9
  "ban-types": false,
10
- "quotemark": [true, "single"],
10
+ "quotemark": false,
11
11
  "arrow-parens": false,
12
12
  "no-var-requires": false,
13
13
  "trailing-comma": false,