@itwin/core-quantity 4.10.0-dev.1 → 4.10.0-dev.11

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 (64) hide show
  1. package/CHANGELOG.md +13 -1
  2. package/lib/cjs/Exception.d.ts +2 -1
  3. package/lib/cjs/Exception.d.ts.map +1 -1
  4. package/lib/cjs/Exception.js +1 -0
  5. package/lib/cjs/Exception.js.map +1 -1
  6. package/lib/cjs/Formatter/Format.d.ts +4 -1
  7. package/lib/cjs/Formatter/Format.d.ts.map +1 -1
  8. package/lib/cjs/Formatter/Format.js +17 -23
  9. package/lib/cjs/Formatter/Format.js.map +1 -1
  10. package/lib/cjs/Formatter/FormatEnums.d.ts +17 -1
  11. package/lib/cjs/Formatter/FormatEnums.d.ts.map +1 -1
  12. package/lib/cjs/Formatter/FormatEnums.js +33 -1
  13. package/lib/cjs/Formatter/FormatEnums.js.map +1 -1
  14. package/lib/cjs/Formatter/Formatter.d.ts +1 -0
  15. package/lib/cjs/Formatter/Formatter.d.ts.map +1 -1
  16. package/lib/cjs/Formatter/Formatter.js +54 -6
  17. package/lib/cjs/Formatter/Formatter.js.map +1 -1
  18. package/lib/cjs/Formatter/Interfaces.d.ts +2 -0
  19. package/lib/cjs/Formatter/Interfaces.d.ts.map +1 -1
  20. package/lib/cjs/Formatter/Interfaces.js.map +1 -1
  21. package/lib/cjs/Interfaces.d.ts +13 -0
  22. package/lib/cjs/Interfaces.d.ts.map +1 -1
  23. package/lib/cjs/Interfaces.js +11 -0
  24. package/lib/cjs/Interfaces.js.map +1 -1
  25. package/lib/cjs/Parser.d.ts +1 -0
  26. package/lib/cjs/Parser.d.ts.map +1 -1
  27. package/lib/cjs/Parser.js +57 -5
  28. package/lib/cjs/Parser.js.map +1 -1
  29. package/lib/cjs/Quantity.d.ts +14 -0
  30. package/lib/cjs/Quantity.d.ts.map +1 -1
  31. package/lib/cjs/Quantity.js +40 -2
  32. package/lib/cjs/Quantity.js.map +1 -1
  33. package/lib/esm/Exception.d.ts +2 -1
  34. package/lib/esm/Exception.d.ts.map +1 -1
  35. package/lib/esm/Exception.js +1 -0
  36. package/lib/esm/Exception.js.map +1 -1
  37. package/lib/esm/Formatter/Format.d.ts +4 -1
  38. package/lib/esm/Formatter/Format.d.ts.map +1 -1
  39. package/lib/esm/Formatter/Format.js +18 -24
  40. package/lib/esm/Formatter/Format.js.map +1 -1
  41. package/lib/esm/Formatter/FormatEnums.d.ts +17 -1
  42. package/lib/esm/Formatter/FormatEnums.d.ts.map +1 -1
  43. package/lib/esm/Formatter/FormatEnums.js +31 -0
  44. package/lib/esm/Formatter/FormatEnums.js.map +1 -1
  45. package/lib/esm/Formatter/Formatter.d.ts +1 -0
  46. package/lib/esm/Formatter/Formatter.d.ts.map +1 -1
  47. package/lib/esm/Formatter/Formatter.js +56 -8
  48. package/lib/esm/Formatter/Formatter.js.map +1 -1
  49. package/lib/esm/Formatter/Interfaces.d.ts +2 -0
  50. package/lib/esm/Formatter/Interfaces.d.ts.map +1 -1
  51. package/lib/esm/Formatter/Interfaces.js.map +1 -1
  52. package/lib/esm/Interfaces.d.ts +13 -0
  53. package/lib/esm/Interfaces.d.ts.map +1 -1
  54. package/lib/esm/Interfaces.js +10 -1
  55. package/lib/esm/Interfaces.js.map +1 -1
  56. package/lib/esm/Parser.d.ts +1 -0
  57. package/lib/esm/Parser.d.ts.map +1 -1
  58. package/lib/esm/Parser.js +58 -6
  59. package/lib/esm/Parser.js.map +1 -1
  60. package/lib/esm/Quantity.d.ts +14 -0
  61. package/lib/esm/Quantity.d.ts.map +1 -1
  62. package/lib/esm/Quantity.js +37 -1
  63. package/lib/esm/Quantity.js.map +1 -1
  64. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/core-quantity",
3
- "version": "4.10.0-dev.1",
3
+ "version": "4.10.0-dev.11",
4
4
  "description": "Quantity parsing, formatting and conversions for iModel.js",
5
5
  "main": "lib/cjs/core-quantity.js",
6
6
  "module": "lib/esm/core-quantity.js",
@@ -35,11 +35,11 @@
35
35
  "rimraf": "^3.0.2",
36
36
  "sinon": "^17.0.2",
37
37
  "typescript": "~5.3.3",
38
- "@itwin/build-tools": "4.10.0-dev.1",
39
- "@itwin/core-bentley": "4.10.0-dev.1"
38
+ "@itwin/build-tools": "4.10.0-dev.11",
39
+ "@itwin/core-bentley": "4.10.0-dev.11"
40
40
  },
41
41
  "peerDependencies": {
42
- "@itwin/core-bentley": "^4.10.0-dev.1"
42
+ "@itwin/core-bentley": "^4.10.0-dev.11"
43
43
  },
44
44
  "nyc": {
45
45
  "extends": "./node_modules/@itwin/build-tools/.nycrc"