@mui/x-charts-vendor 9.0.0 → 9.4.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.
Files changed (65) hide show
  1. package/d3-geo.d.ts +4 -0
  2. package/d3-geo.js +5 -0
  3. package/d3-geo.mjs +5 -0
  4. package/lib-vendor/d3-geo/LICENSE +34 -0
  5. package/lib-vendor/d3-geo/dist/d3-geo.js +2873 -0
  6. package/lib-vendor/d3-geo/dist/d3-geo.min.js +1957 -0
  7. package/lib-vendor/d3-geo/src/area.js +77 -0
  8. package/lib-vendor/d3-geo/src/bounds.js +169 -0
  9. package/lib-vendor/d3-geo/src/cartesian.js +42 -0
  10. package/lib-vendor/d3-geo/src/centroid.js +134 -0
  11. package/lib-vendor/d3-geo/src/circle.js +77 -0
  12. package/lib-vendor/d3-geo/src/clip/antimeridian.js +89 -0
  13. package/lib-vendor/d3-geo/src/clip/buffer.js +30 -0
  14. package/lib-vendor/d3-geo/src/clip/circle.js +173 -0
  15. package/lib-vendor/d3-geo/src/clip/extent.js +25 -0
  16. package/lib-vendor/d3-geo/src/clip/index.js +124 -0
  17. package/lib-vendor/d3-geo/src/clip/line.js +60 -0
  18. package/lib-vendor/d3-geo/src/clip/rectangle.js +159 -0
  19. package/lib-vendor/d3-geo/src/clip/rejoin.js +103 -0
  20. package/lib-vendor/d3-geo/src/compose.js +15 -0
  21. package/lib-vendor/d3-geo/src/constant.js +11 -0
  22. package/lib-vendor/d3-geo/src/contains.js +95 -0
  23. package/lib-vendor/d3-geo/src/distance.js +18 -0
  24. package/lib-vendor/d3-geo/src/graticule.js +118 -0
  25. package/lib-vendor/d3-geo/src/identity.js +8 -0
  26. package/lib-vendor/d3-geo/src/index.js +335 -0
  27. package/lib-vendor/d3-geo/src/interpolate.js +35 -0
  28. package/lib-vendor/d3-geo/src/length.js +50 -0
  29. package/lib-vendor/d3-geo/src/math.js +44 -0
  30. package/lib-vendor/d3-geo/src/noop.js +7 -0
  31. package/lib-vendor/d3-geo/src/path/area.js +50 -0
  32. package/lib-vendor/d3-geo/src/path/bounds.js +31 -0
  33. package/lib-vendor/d3-geo/src/path/centroid.js +89 -0
  34. package/lib-vendor/d3-geo/src/path/context.js +53 -0
  35. package/lib-vendor/d3-geo/src/path/index.js +71 -0
  36. package/lib-vendor/d3-geo/src/path/measure.js +47 -0
  37. package/lib-vendor/d3-geo/src/path/string.js +93 -0
  38. package/lib-vendor/d3-geo/src/pointEqual.js +10 -0
  39. package/lib-vendor/d3-geo/src/polygonContains.js +72 -0
  40. package/lib-vendor/d3-geo/src/projection/albers.js +11 -0
  41. package/lib-vendor/d3-geo/src/projection/albersUsa.js +118 -0
  42. package/lib-vendor/d3-geo/src/projection/azimuthal.js +26 -0
  43. package/lib-vendor/d3-geo/src/projection/azimuthalEqualArea.js +20 -0
  44. package/lib-vendor/d3-geo/src/projection/azimuthalEquidistant.js +20 -0
  45. package/lib-vendor/d3-geo/src/projection/conic.js +18 -0
  46. package/lib-vendor/d3-geo/src/projection/conicConformal.js +39 -0
  47. package/lib-vendor/d3-geo/src/projection/conicEqualArea.js +33 -0
  48. package/lib-vendor/d3-geo/src/projection/conicEquidistant.js +31 -0
  49. package/lib-vendor/d3-geo/src/projection/cylindricalEqualArea.js +17 -0
  50. package/lib-vendor/d3-geo/src/projection/equalEarth.js +37 -0
  51. package/lib-vendor/d3-geo/src/projection/equirectangular.js +16 -0
  52. package/lib-vendor/d3-geo/src/projection/fit.js +52 -0
  53. package/lib-vendor/d3-geo/src/projection/gnomonic.js +20 -0
  54. package/lib-vendor/d3-geo/src/projection/identity.js +103 -0
  55. package/lib-vendor/d3-geo/src/projection/index.js +181 -0
  56. package/lib-vendor/d3-geo/src/projection/mercator.js +51 -0
  57. package/lib-vendor/d3-geo/src/projection/naturalEarth1.js +29 -0
  58. package/lib-vendor/d3-geo/src/projection/orthographic.js +18 -0
  59. package/lib-vendor/d3-geo/src/projection/resample.js +106 -0
  60. package/lib-vendor/d3-geo/src/projection/stereographic.js +22 -0
  61. package/lib-vendor/d3-geo/src/projection/transverseMercator.js +27 -0
  62. package/lib-vendor/d3-geo/src/rotation.js +65 -0
  63. package/lib-vendor/d3-geo/src/stream.js +83 -0
  64. package/lib-vendor/d3-geo/src/transform.js +42 -0
  65. package/package.json +18 -2
package/d3-geo.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ // `x-charts-vendor/d3-geo` (TypeScript)
2
+ //
3
+ // Export the type definitions for this package:
4
+ export * from "d3-geo";
package/d3-geo.js ADDED
@@ -0,0 +1,5 @@
1
+ // `x-charts-vendor/d3-geo` (CommonJS)
2
+ // See upstream license: https://github.com/d3/d3-geo/blob/main/LICENSE
3
+ //
4
+ // Our CommonJS package relies on transpiled vendor files in `lib-vendor/d3-geo`
5
+ module.exports = require("./lib-vendor/d3-geo/src/index.js");
package/d3-geo.mjs ADDED
@@ -0,0 +1,5 @@
1
+ // `x-charts-vendor/d3-geo` (ESM)
2
+ // See upstream license: https://github.com/d3/d3-geo/blob/main/LICENSE
3
+ //
4
+ // Our ESM package uses the underlying installed dependencies of `node_modules/d3-geo`
5
+ export * from "d3-geo";
@@ -0,0 +1,34 @@
1
+ Copyright 2010-2024 Mike Bostock
2
+
3
+ Permission to use, copy, modify, and/or distribute this software for any purpose
4
+ with or without fee is hereby granted, provided that the above copyright notice
5
+ and this permission notice appear in all copies.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
8
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
9
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
10
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
11
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
12
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
13
+ THIS SOFTWARE.
14
+
15
+ This license applies to GeographicLib, versions 1.12 and later.
16
+
17
+ Copyright 2008-2012 Charles Karney
18
+
19
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
20
+ this software and associated documentation files (the "Software"), to deal in
21
+ the Software without restriction, including without limitation the rights to
22
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
23
+ the Software, and to permit persons to whom the Software is furnished to do so,
24
+ subject to the following conditions:
25
+
26
+ The above copyright notice and this permission notice shall be included in all
27
+ copies or substantial portions of the Software.
28
+
29
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
31
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
32
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
33
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
34
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.