@veritone-ce/design-system 2.8.12 → 2.8.13-next.1
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.
- package/dist/cjs/Dialog/components.js +29 -90
- package/dist/cjs/Dialog/state.js +2 -8
- package/dist/cjs/Dialog/styles.module.scss.js +2 -2
- package/dist/cjs/FileUploader/controlled.js +7 -0
- package/dist/cjs/Table/AutoTable/controlled.js +2 -1
- package/dist/cjs/Table/AutoTable/styles.module.scss.js +1 -1
- package/dist/cjs/TablePagination/index.js +21 -8
- package/dist/cjs/bundled_modules/d3-array/src/ascending.js +9 -0
- package/dist/cjs/bundled_modules/d3-array/src/bisect.js +16 -0
- package/dist/cjs/bundled_modules/d3-array/src/bisector.js +62 -0
- package/dist/cjs/bundled_modules/d3-array/src/descending.js +13 -0
- package/dist/cjs/bundled_modules/d3-array/src/deviation.js +12 -0
- package/dist/cjs/bundled_modules/d3-array/src/fsum.js +45 -0
- package/dist/cjs/bundled_modules/d3-array/src/intersection.js +25 -0
- package/dist/cjs/bundled_modules/d3-array/src/max.js +26 -0
- package/dist/cjs/bundled_modules/d3-array/src/mean.js +25 -0
- package/dist/cjs/bundled_modules/d3-array/src/median.js +11 -0
- package/dist/cjs/bundled_modules/d3-array/src/merge.js +15 -0
- package/dist/cjs/bundled_modules/d3-array/src/min.js +26 -0
- package/dist/cjs/bundled_modules/d3-array/src/number.js +27 -0
- package/dist/cjs/bundled_modules/d3-array/src/permute.js +9 -0
- package/dist/cjs/bundled_modules/d3-array/src/quantile.js +36 -0
- package/dist/cjs/bundled_modules/d3-array/src/quickselect.js +59 -0
- package/dist/cjs/bundled_modules/d3-array/src/range.js +19 -0
- package/dist/cjs/bundled_modules/d3-array/src/sort.js +20 -0
- package/dist/cjs/bundled_modules/d3-array/src/sum.js +17 -0
- package/dist/cjs/bundled_modules/d3-array/src/ticks.js +63 -0
- package/dist/cjs/bundled_modules/d3-array/src/union.js +17 -0
- package/dist/cjs/bundled_modules/d3-array/src/variance.js +31 -0
- package/dist/cjs/bundled_modules/d3-color/src/color.js +410 -0
- package/dist/cjs/bundled_modules/d3-color/src/cubehelix.js +68 -0
- package/dist/cjs/bundled_modules/d3-color/src/define.js +17 -0
- package/dist/cjs/bundled_modules/d3-color/src/lab.js +124 -0
- package/dist/cjs/bundled_modules/d3-color/src/math.js +7 -0
- package/dist/cjs/bundled_modules/d3-delaunay/src/delaunay.js +254 -0
- package/dist/cjs/bundled_modules/d3-delaunay/src/path.js +43 -0
- package/dist/cjs/bundled_modules/d3-delaunay/src/polygon.js +23 -0
- package/dist/cjs/bundled_modules/d3-delaunay/src/voronoi.js +338 -0
- package/dist/cjs/bundled_modules/d3-dispatch/src/dispatch.js +88 -0
- package/dist/cjs/bundled_modules/d3-dsv/src/dsv.js +170 -0
- package/dist/cjs/bundled_modules/d3-force/src/center.js +46 -0
- package/dist/cjs/bundled_modules/d3-force/src/collide.js +106 -0
- package/dist/cjs/bundled_modules/d3-force/src/constant.js +11 -0
- package/dist/cjs/bundled_modules/d3-force/src/jiggle.js +9 -0
- package/dist/cjs/bundled_modules/d3-force/src/lcg.js +15 -0
- package/dist/cjs/bundled_modules/d3-force/src/link.js +123 -0
- package/dist/cjs/bundled_modules/d3-force/src/manyBody.js +122 -0
- package/dist/cjs/bundled_modules/d3-force/src/simulation.js +164 -0
- package/dist/cjs/bundled_modules/d3-force/src/x.js +47 -0
- package/dist/cjs/bundled_modules/d3-force/src/y.js +47 -0
- package/dist/cjs/bundled_modules/d3-format/src/defaultLocale.js +24 -0
- package/dist/cjs/bundled_modules/d3-format/src/exponent.js +11 -0
- package/dist/cjs/bundled_modules/d3-format/src/formatDecimal.js +27 -0
- package/dist/cjs/bundled_modules/d3-format/src/formatGroup.js +24 -0
- package/dist/cjs/bundled_modules/d3-format/src/formatNumerals.js +13 -0
- package/dist/cjs/bundled_modules/d3-format/src/formatPrefixAuto.js +22 -0
- package/dist/cjs/bundled_modules/d3-format/src/formatRounded.js +17 -0
- package/dist/cjs/bundled_modules/d3-format/src/formatSpecifier.js +54 -0
- package/dist/cjs/bundled_modules/d3-format/src/formatTrim.js +17 -0
- package/dist/cjs/bundled_modules/d3-format/src/formatTypes.js +25 -0
- package/dist/cjs/bundled_modules/d3-format/src/identity.js +9 -0
- package/dist/cjs/bundled_modules/d3-format/src/locale.js +154 -0
- package/dist/cjs/bundled_modules/d3-format/src/precisionFixed.js +11 -0
- package/dist/cjs/bundled_modules/d3-format/src/precisionPrefix.js +11 -0
- package/dist/cjs/bundled_modules/d3-format/src/precisionRound.js +12 -0
- package/dist/cjs/bundled_modules/d3-geo/src/area.js +83 -0
- package/dist/cjs/bundled_modules/d3-geo/src/bounds.js +185 -0
- package/dist/cjs/bundled_modules/d3-geo/src/cartesian.js +43 -0
- package/dist/cjs/bundled_modules/d3-geo/src/centroid.js +149 -0
- package/dist/cjs/bundled_modules/d3-geo/src/circle.js +35 -0
- package/dist/cjs/bundled_modules/d3-geo/src/clip/antimeridian.js +98 -0
- package/dist/cjs/bundled_modules/d3-geo/src/clip/buffer.js +30 -0
- package/dist/cjs/bundled_modules/d3-geo/src/clip/circle.js +183 -0
- package/dist/cjs/bundled_modules/d3-geo/src/clip/index.js +137 -0
- package/dist/cjs/bundled_modules/d3-geo/src/clip/line.js +65 -0
- package/dist/cjs/bundled_modules/d3-geo/src/clip/rectangle.js +174 -0
- package/dist/cjs/bundled_modules/d3-geo/src/clip/rejoin.js +109 -0
- package/dist/cjs/bundled_modules/d3-geo/src/compose.js +18 -0
- package/dist/cjs/bundled_modules/d3-geo/src/graticule.js +107 -0
- package/dist/cjs/bundled_modules/d3-geo/src/identity.js +7 -0
- package/dist/cjs/bundled_modules/d3-geo/src/math.js +57 -0
- package/dist/cjs/bundled_modules/d3-geo/src/noop.js +7 -0
- package/dist/cjs/bundled_modules/d3-geo/src/path/area.js +54 -0
- package/dist/cjs/bundled_modules/d3-geo/src/path/bounds.js +32 -0
- package/dist/cjs/bundled_modules/d3-geo/src/path/centroid.js +104 -0
- package/dist/cjs/bundled_modules/d3-geo/src/path/context.js +51 -0
- package/dist/cjs/bundled_modules/d3-geo/src/path/index.js +82 -0
- package/dist/cjs/bundled_modules/d3-geo/src/path/measure.js +49 -0
- package/dist/cjs/bundled_modules/d3-geo/src/path/string.js +92 -0
- package/dist/cjs/bundled_modules/d3-geo/src/pointEqual.js +11 -0
- package/dist/cjs/bundled_modules/d3-geo/src/polygonContains.js +80 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/albers.js +16 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/albersUsa.js +117 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/azimuthal.js +32 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/azimuthalEqualArea.js +24 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/azimuthalEquidistant.js +24 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/conic.js +19 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/conicConformal.js +45 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/conicEqualArea.js +40 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/conicEquidistant.js +39 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/cylindricalEqualArea.js +19 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/equalEarth.js +43 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/equirectangular.js +19 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/fit.js +54 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/gnomonic.js +23 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/identity.js +91 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/index.js +184 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/mercator.js +60 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/naturalEarth1.js +35 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/orthographic.js +22 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/resample.js +108 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/stereographic.js +25 -0
- package/dist/cjs/bundled_modules/d3-geo/src/projection/transverseMercator.js +34 -0
- package/dist/cjs/bundled_modules/d3-geo/src/rotation.js +86 -0
- package/dist/cjs/bundled_modules/d3-geo/src/stream.js +75 -0
- package/dist/cjs/bundled_modules/d3-geo/src/transform.js +24 -0
- package/dist/cjs/bundled_modules/d3-geo-projection/src/math.js +28 -0
- package/dist/cjs/bundled_modules/d3-geo-projection/src/mollweide.js +38 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/accessors.js +13 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/array.js +27 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/cluster.js +90 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/constant.js +16 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/ancestors.js +13 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/count.js +18 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/descendants.js +9 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/each.js +13 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/eachAfter.js +21 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/eachBefore.js +18 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/find.js +14 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/index.js +99 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/iterator.js +20 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/leaves.js +15 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/links.js +15 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/path.js +36 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/sort.js +13 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/hierarchy/sum.js +15 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/lcg.js +15 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/pack/enclose.js +122 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/pack/index.js +87 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/pack/siblings.js +118 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/partition.js +58 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/stratify.js +151 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/tree.js +243 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/treemap/binary.js +52 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/treemap/dice.js +18 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/treemap/index.js +100 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/treemap/resquarify.js +42 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/treemap/round.js +12 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/treemap/slice.js +18 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/treemap/sliceDice.js +12 -0
- package/dist/cjs/bundled_modules/d3-hierarchy/src/treemap/squarify.js +74 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/array.js +29 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/basis.js +26 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/basisClosed.js +19 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/color.js +37 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/constant.js +7 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/cubehelix.js +36 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/date.js +12 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/discrete.js +12 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/hcl.js +28 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/hsl.js +28 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/hue.js +15 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/index.js +53 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/lab.js +22 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/number.js +11 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/numberArray.js +21 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/object.js +29 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/piecewise.js +17 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/quantize.js +11 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/rgb.js +63 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/round.js +11 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/string.js +70 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/transform/decompose.js +33 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/transform/index.js +68 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/transform/parse.js +23 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/value.js +28 -0
- package/dist/cjs/bundled_modules/d3-interpolate/src/zoom.js +77 -0
- package/dist/cjs/bundled_modules/d3-path/src/path.js +157 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/add.js +91 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/cover.js +49 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/data.js +13 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/extent.js +11 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/find.js +76 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/quad.js +13 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/quadtree.js +79 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/remove.js +69 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/root.js +9 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/size.js +13 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/visit.js +22 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/visitAfter.js +27 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/x.js +14 -0
- package/dist/cjs/bundled_modules/d3-quadtree/src/y.js +14 -0
- package/dist/cjs/bundled_modules/d3-scale/src/constant.js +11 -0
- package/dist/cjs/bundled_modules/d3-scale/src/continuous.js +136 -0
- package/dist/cjs/bundled_modules/d3-scale/src/diverging.js +116 -0
- package/dist/cjs/bundled_modules/d3-scale/src/identity.js +34 -0
- package/dist/cjs/bundled_modules/d3-scale/src/init.js +31 -0
- package/dist/cjs/bundled_modules/d3-scale/src/linear.js +77 -0
- package/dist/cjs/bundled_modules/d3-scale/src/log.js +148 -0
- package/dist/cjs/bundled_modules/d3-scale/src/nice.js +24 -0
- package/dist/cjs/bundled_modules/d3-scale/src/number.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale/src/ordinal.js +53 -0
- package/dist/cjs/bundled_modules/d3-scale/src/pow.js +58 -0
- package/dist/cjs/bundled_modules/d3-scale/src/quantile.js +65 -0
- package/dist/cjs/bundled_modules/d3-scale/src/quantize.js +62 -0
- package/dist/cjs/bundled_modules/d3-scale/src/sequential.js +119 -0
- package/dist/cjs/bundled_modules/d3-scale/src/symlog.js +42 -0
- package/dist/cjs/bundled_modules/d3-scale/src/threshold.js +45 -0
- package/dist/cjs/bundled_modules/d3-scale/src/tickFormat.js +39 -0
- package/dist/cjs/bundled_modules/d3-scale/src/time.js +85 -0
- package/dist/cjs/bundled_modules/d3-scale/src/utcTime.js +21 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/Accent.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/Dark2.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/Paired.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/Pastel1.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/Pastel2.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/Set1.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/Set2.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/Set3.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/category10.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/categorical/observable10.js +9 -0
- package/dist/cjs/bundled_modules/d3-scale-chromatic/src/colors.js +11 -0
- package/dist/cjs/bundled_modules/d3-shape/src/arc.js +274 -0
- package/dist/cjs/bundled_modules/d3-shape/src/area.js +118 -0
- package/dist/cjs/bundled_modules/d3-shape/src/array.js +11 -0
- package/dist/cjs/bundled_modules/d3-shape/src/constant.js +11 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/basis.js +59 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/basisClosed.js +58 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/basisOpen.js +45 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/bundle.js +62 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/cardinal.js +69 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/cardinalClosed.js +68 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/cardinalOpen.js +56 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/catmullRom.js +95 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/catmullRomClosed.js +80 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/catmullRomOpen.js +68 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/linear.js +37 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/linearClosed.js +31 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/monotone.js +109 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/natural.js +71 -0
- package/dist/cjs/bundled_modules/d3-shape/src/curve/step.js +61 -0
- package/dist/cjs/bundled_modules/d3-shape/src/line.js +64 -0
- package/dist/cjs/bundled_modules/d3-shape/src/math.js +36 -0
- package/dist/cjs/bundled_modules/d3-shape/src/noop.js +7 -0
- package/dist/cjs/bundled_modules/d3-shape/src/path.js +23 -0
- package/dist/cjs/bundled_modules/d3-shape/src/point.js +12 -0
- package/dist/cjs/bundled_modules/d3-shape/src/symbol/circle.js +15 -0
- package/dist/cjs/bundled_modules/d3-shape/src/symbol.js +38 -0
- package/dist/cjs/bundled_modules/d3-time/src/day.js +41 -0
- package/dist/cjs/bundled_modules/d3-time/src/duration.js +17 -0
- package/dist/cjs/bundled_modules/d3-time/src/hour.js +31 -0
- package/dist/cjs/bundled_modules/d3-time/src/interval.js +73 -0
- package/dist/cjs/bundled_modules/d3-time/src/millisecond.js +29 -0
- package/dist/cjs/bundled_modules/d3-time/src/minute.js +31 -0
- package/dist/cjs/bundled_modules/d3-time/src/month.js +32 -0
- package/dist/cjs/bundled_modules/d3-time/src/second.js +18 -0
- package/dist/cjs/bundled_modules/d3-time/src/ticks.js +64 -0
- package/dist/cjs/bundled_modules/d3-time/src/week.js +73 -0
- package/dist/cjs/bundled_modules/d3-time/src/year.js +54 -0
- package/dist/cjs/bundled_modules/d3-time-format/src/defaultLocale.js +33 -0
- package/dist/cjs/bundled_modules/d3-time-format/src/locale.js +694 -0
- package/dist/cjs/bundled_modules/d3-timer/src/interval.js +23 -0
- package/dist/cjs/bundled_modules/d3-timer/src/timer.js +117 -0
- package/dist/cjs/bundled_modules/delaunator/index.js +485 -0
- package/dist/cjs/bundled_modules/internmap/src/index.js +66 -0
- package/dist/cjs/bundled_modules/json-stringify-pretty-compact/index.js +104 -0
- package/dist/cjs/bundled_modules/robust-predicates/esm/orient2d.js +184 -0
- package/dist/cjs/bundled_modules/robust-predicates/esm/util.js +95 -0
- package/dist/cjs/bundled_modules/topojson-client/src/feature.js +77 -0
- package/dist/cjs/bundled_modules/topojson-client/src/identity.js +9 -0
- package/dist/cjs/bundled_modules/topojson-client/src/mesh.js +60 -0
- package/dist/cjs/bundled_modules/topojson-client/src/reverse.js +10 -0
- package/dist/cjs/bundled_modules/topojson-client/src/stitch.js +79 -0
- package/dist/cjs/bundled_modules/topojson-client/src/transform.js +25 -0
- package/dist/cjs/bundled_modules/vega/build/vega.module.js +272 -0
- package/dist/cjs/bundled_modules/vega-canvas/build/vega-canvas.browser.js +18 -0
- package/dist/cjs/bundled_modules/vega-crossfilter/build/vega-crossfilter.js +676 -0
- package/dist/cjs/bundled_modules/vega-dataflow/build/vega-dataflow.js +2102 -0
- package/dist/cjs/bundled_modules/vega-embed/build/embed.js +2939 -0
- package/dist/cjs/bundled_modules/vega-encode/build/vega-encode.js +962 -0
- package/dist/cjs/bundled_modules/vega-event-selector/build/vega-event-selector.js +192 -0
- package/dist/cjs/bundled_modules/vega-expression/build/vega-expression.js +1615 -0
- package/dist/cjs/bundled_modules/vega-force/build/vega-force.js +295 -0
- package/dist/cjs/bundled_modules/vega-format/build/vega-format.js +201 -0
- package/dist/cjs/bundled_modules/vega-functions/build/vega-functions.js +842 -0
- package/dist/cjs/bundled_modules/vega-geo/build/vega-geo.js +1333 -0
- package/dist/cjs/bundled_modules/vega-hierarchy/build/vega-hierarchy.js +580 -0
- package/dist/cjs/bundled_modules/vega-interpreter/build/vega-interpreter.js +310 -0
- package/dist/cjs/bundled_modules/vega-label/build/vega-label.js +876 -0
- package/dist/cjs/bundled_modules/vega-lite/build/index.js +20157 -0
- package/dist/cjs/bundled_modules/vega-loader/build/vega-loader.browser.js +337 -0
- package/dist/cjs/bundled_modules/vega-parser/build/vega-parser.js +3805 -0
- package/dist/cjs/bundled_modules/vega-projection/build/vega-projection.js +90 -0
- package/dist/cjs/bundled_modules/vega-regression/build/vega-regression.js +236 -0
- package/dist/cjs/bundled_modules/vega-runtime/build/vega-runtime.js +588 -0
- package/dist/cjs/bundled_modules/vega-scale/build/vega-scale.js +846 -0
- package/dist/cjs/bundled_modules/vega-scenegraph/build/vega-scenegraph.js +5040 -0
- package/dist/cjs/bundled_modules/vega-schema-url-parser/dist/parser.modern.js +7 -0
- package/dist/cjs/bundled_modules/vega-selections/build/vega-selection.js +342 -0
- package/dist/cjs/bundled_modules/vega-statistics/build/vega-statistics.js +1193 -0
- package/dist/cjs/bundled_modules/vega-themes/build/index.js +853 -0
- package/dist/cjs/bundled_modules/vega-time/build/vega-time.js +342 -0
- package/dist/cjs/bundled_modules/vega-tooltip/build/index.js +353 -0
- package/dist/cjs/bundled_modules/vega-transforms/build/vega-transforms.js +3781 -0
- package/dist/cjs/bundled_modules/vega-util/build/vega-util.js +824 -0
- package/dist/cjs/bundled_modules/vega-view/build/vega-view.js +1306 -0
- package/dist/cjs/bundled_modules/vega-view-transforms/build/vega-view-transforms.js +1313 -0
- package/dist/cjs/bundled_modules/vega-voronoi/build/vega-voronoi.js +80 -0
- package/dist/cjs/bundled_modules/vega-wordcloud/build/vega-wordcloud.js +540 -0
- package/dist/cjs/index.js +11 -0
- package/dist/cjs/styles/createPalette.js +11 -0
- package/dist/cjs/styles/entrypoint.scss.js +7 -0
- package/dist/cjs/styles.css +1 -1
- package/dist/cjs/unstable/Card/components.js +213 -0
- package/dist/cjs/unstable/Card/state.js +53 -0
- package/dist/cjs/unstable/Card/styles.module.scss.js +1 -1
- package/dist/cjs/unstable/StatCard/index.js +124 -0
- package/dist/cjs/unstable/StatCard/index.module.scss.js +7 -0
- package/dist/cjs/unstable/extras/chart/BarChart.js +42 -0
- package/dist/cjs/unstable/extras/chart/Chart.js +100 -0
- package/dist/cjs/unstable/extras/chart/DistributionChart.js +84 -0
- package/dist/cjs/unstable/extras/chart/DonutChart.js +43 -0
- package/dist/cjs/unstable/extras/chart/LineChart.js +45 -0
- package/dist/cjs/unstable/extras/chart/PieChart.js +39 -0
- package/dist/cjs/unstable/extras/chart/TimelineChart.js +48 -0
- package/dist/cjs/unstable/extras/chart/index.js +23 -0
- package/dist/cjs/unstable/index.js +39 -13
- package/dist/cjs/unstable/skeleton/index.js +74 -0
- package/dist/cjs/unstable/skeleton/index.module.scss.js +7 -0
- package/dist/cjs/unstable/suspense/index.js +18 -0
- package/dist/cjs/unstable/suspense/index.module.scss.js +7 -0
- package/dist/cjs/unstable/suspense/loader.js +23 -0
- package/dist/esm/Dialog/components.js +28 -89
- package/dist/esm/Dialog/state.js +2 -8
- package/dist/esm/Dialog/styles.module.scss.js +2 -2
- package/dist/esm/FileUploader/controlled.js +7 -0
- package/dist/esm/Table/AutoTable/controlled.js +2 -1
- package/dist/esm/Table/AutoTable/styles.module.scss.js +1 -1
- package/dist/esm/TablePagination/index.js +21 -8
- package/dist/esm/bundled_modules/d3-array/src/ascending.js +5 -0
- package/dist/esm/bundled_modules/d3-array/src/bisect.js +10 -0
- package/dist/esm/bundled_modules/d3-array/src/bisector.js +58 -0
- package/dist/esm/bundled_modules/d3-array/src/descending.js +9 -0
- package/dist/esm/bundled_modules/d3-array/src/deviation.js +8 -0
- package/dist/esm/bundled_modules/d3-array/src/fsum.js +43 -0
- package/dist/esm/bundled_modules/d3-array/src/intersection.js +21 -0
- package/dist/esm/bundled_modules/d3-array/src/max.js +22 -0
- package/dist/esm/bundled_modules/d3-array/src/mean.js +21 -0
- package/dist/esm/bundled_modules/d3-array/src/median.js +7 -0
- package/dist/esm/bundled_modules/d3-array/src/merge.js +11 -0
- package/dist/esm/bundled_modules/d3-array/src/min.js +22 -0
- package/dist/esm/bundled_modules/d3-array/src/number.js +22 -0
- package/dist/esm/bundled_modules/d3-array/src/permute.js +5 -0
- package/dist/esm/bundled_modules/d3-array/src/quantile.js +31 -0
- package/dist/esm/bundled_modules/d3-array/src/quickselect.js +55 -0
- package/dist/esm/bundled_modules/d3-array/src/range.js +15 -0
- package/dist/esm/bundled_modules/d3-array/src/sort.js +17 -0
- package/dist/esm/bundled_modules/d3-array/src/sum.js +13 -0
- package/dist/esm/bundled_modules/d3-array/src/ticks.js +57 -0
- package/dist/esm/bundled_modules/d3-array/src/union.js +13 -0
- package/dist/esm/bundled_modules/d3-array/src/variance.js +27 -0
- package/dist/esm/bundled_modules/d3-color/src/color.js +398 -0
- package/dist/esm/bundled_modules/d3-color/src/cubehelix.js +63 -0
- package/dist/esm/bundled_modules/d3-color/src/define.js +12 -0
- package/dist/esm/bundled_modules/d3-color/src/lab.js +117 -0
- package/dist/esm/bundled_modules/d3-color/src/math.js +4 -0
- package/dist/esm/bundled_modules/d3-delaunay/src/delaunay.js +250 -0
- package/dist/esm/bundled_modules/d3-delaunay/src/path.js +39 -0
- package/dist/esm/bundled_modules/d3-delaunay/src/polygon.js +19 -0
- package/dist/esm/bundled_modules/d3-delaunay/src/voronoi.js +334 -0
- package/dist/esm/bundled_modules/d3-dispatch/src/dispatch.js +84 -0
- package/dist/esm/bundled_modules/d3-dsv/src/dsv.js +166 -0
- package/dist/esm/bundled_modules/d3-force/src/center.js +42 -0
- package/dist/esm/bundled_modules/d3-force/src/collide.js +102 -0
- package/dist/esm/bundled_modules/d3-force/src/constant.js +7 -0
- package/dist/esm/bundled_modules/d3-force/src/jiggle.js +5 -0
- package/dist/esm/bundled_modules/d3-force/src/lcg.js +11 -0
- package/dist/esm/bundled_modules/d3-force/src/link.js +119 -0
- package/dist/esm/bundled_modules/d3-force/src/manyBody.js +118 -0
- package/dist/esm/bundled_modules/d3-force/src/simulation.js +158 -0
- package/dist/esm/bundled_modules/d3-force/src/x.js +43 -0
- package/dist/esm/bundled_modules/d3-force/src/y.js +43 -0
- package/dist/esm/bundled_modules/d3-format/src/defaultLocale.js +20 -0
- package/dist/esm/bundled_modules/d3-format/src/exponent.js +7 -0
- package/dist/esm/bundled_modules/d3-format/src/formatDecimal.js +22 -0
- package/dist/esm/bundled_modules/d3-format/src/formatGroup.js +20 -0
- package/dist/esm/bundled_modules/d3-format/src/formatNumerals.js +9 -0
- package/dist/esm/bundled_modules/d3-format/src/formatPrefixAuto.js +18 -0
- package/dist/esm/bundled_modules/d3-format/src/formatRounded.js +13 -0
- package/dist/esm/bundled_modules/d3-format/src/formatSpecifier.js +49 -0
- package/dist/esm/bundled_modules/d3-format/src/formatTrim.js +13 -0
- package/dist/esm/bundled_modules/d3-format/src/formatTypes.js +21 -0
- package/dist/esm/bundled_modules/d3-format/src/identity.js +5 -0
- package/dist/esm/bundled_modules/d3-format/src/locale.js +150 -0
- package/dist/esm/bundled_modules/d3-format/src/precisionFixed.js +7 -0
- package/dist/esm/bundled_modules/d3-format/src/precisionPrefix.js +7 -0
- package/dist/esm/bundled_modules/d3-format/src/precisionRound.js +8 -0
- package/dist/esm/bundled_modules/d3-geo/src/area.js +78 -0
- package/dist/esm/bundled_modules/d3-geo/src/bounds.js +181 -0
- package/dist/esm/bundled_modules/d3-geo/src/cartesian.js +35 -0
- package/dist/esm/bundled_modules/d3-geo/src/centroid.js +145 -0
- package/dist/esm/bundled_modules/d3-geo/src/circle.js +33 -0
- package/dist/esm/bundled_modules/d3-geo/src/clip/antimeridian.js +94 -0
- package/dist/esm/bundled_modules/d3-geo/src/clip/buffer.js +26 -0
- package/dist/esm/bundled_modules/d3-geo/src/clip/circle.js +179 -0
- package/dist/esm/bundled_modules/d3-geo/src/clip/index.js +133 -0
- package/dist/esm/bundled_modules/d3-geo/src/clip/line.js +61 -0
- package/dist/esm/bundled_modules/d3-geo/src/clip/rectangle.js +170 -0
- package/dist/esm/bundled_modules/d3-geo/src/clip/rejoin.js +105 -0
- package/dist/esm/bundled_modules/d3-geo/src/compose.js +14 -0
- package/dist/esm/bundled_modules/d3-geo/src/graticule.js +103 -0
- package/dist/esm/bundled_modules/d3-geo/src/identity.js +3 -0
- package/dist/esm/bundled_modules/d3-geo/src/math.js +33 -0
- package/dist/esm/bundled_modules/d3-geo/src/noop.js +3 -0
- package/dist/esm/bundled_modules/d3-geo/src/path/area.js +50 -0
- package/dist/esm/bundled_modules/d3-geo/src/path/bounds.js +28 -0
- package/dist/esm/bundled_modules/d3-geo/src/path/centroid.js +100 -0
- package/dist/esm/bundled_modules/d3-geo/src/path/context.js +47 -0
- package/dist/esm/bundled_modules/d3-geo/src/path/index.js +78 -0
- package/dist/esm/bundled_modules/d3-geo/src/path/measure.js +45 -0
- package/dist/esm/bundled_modules/d3-geo/src/path/string.js +88 -0
- package/dist/esm/bundled_modules/d3-geo/src/pointEqual.js +7 -0
- package/dist/esm/bundled_modules/d3-geo/src/polygonContains.js +76 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/albers.js +12 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/albersUsa.js +113 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/azimuthal.js +29 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/azimuthalEqualArea.js +19 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/azimuthalEquidistant.js +19 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/conic.js +17 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/conicConformal.js +40 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/conicEqualArea.js +35 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/conicEquidistant.js +34 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/cylindricalEqualArea.js +17 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/equalEarth.js +38 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/equirectangular.js +14 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/fit.js +49 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/gnomonic.js +18 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/identity.js +87 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/index.js +179 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/mercator.js +54 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/naturalEarth1.js +30 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/orthographic.js +17 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/resample.js +104 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/stereographic.js +20 -0
- package/dist/esm/bundled_modules/d3-geo/src/projection/transverseMercator.js +29 -0
- package/dist/esm/bundled_modules/d3-geo/src/rotation.js +81 -0
- package/dist/esm/bundled_modules/d3-geo/src/stream.js +71 -0
- package/dist/esm/bundled_modules/d3-geo/src/transform.js +22 -0
- package/dist/esm/bundled_modules/d3-geo-projection/src/math.js +18 -0
- package/dist/esm/bundled_modules/d3-geo-projection/src/mollweide.js +31 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/accessors.js +10 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/array.js +22 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/cluster.js +86 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/constant.js +11 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/ancestors.js +9 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/count.js +14 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/descendants.js +5 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/each.js +9 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/eachAfter.js +17 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/eachBefore.js +14 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/find.js +10 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/index.js +93 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/iterator.js +16 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/leaves.js +11 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/links.js +11 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/path.js +32 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/sort.js +9 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/hierarchy/sum.js +11 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/lcg.js +11 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/pack/enclose.js +120 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/pack/index.js +83 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/pack/siblings.js +116 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/partition.js +54 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/stratify.js +147 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/tree.js +239 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/treemap/binary.js +48 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/treemap/dice.js +14 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/treemap/index.js +96 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/treemap/resquarify.js +38 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/treemap/round.js +8 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/treemap/slice.js +14 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/treemap/sliceDice.js +8 -0
- package/dist/esm/bundled_modules/d3-hierarchy/src/treemap/squarify.js +68 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/array.js +24 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/basis.js +21 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/basisClosed.js +15 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/color.js +31 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/constant.js +3 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/cubehelix.js +31 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/date.js +8 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/discrete.js +8 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/hcl.js +23 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/hsl.js +23 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/hue.js +11 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/index.js +21 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/lab.js +18 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/number.js +7 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/numberArray.js +16 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/object.js +25 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/piecewise.js +13 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/quantize.js +7 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/rgb.js +57 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/round.js +7 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/string.js +66 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/transform/decompose.js +28 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/transform/index.js +65 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/transform/parse.js +20 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/value.js +24 -0
- package/dist/esm/bundled_modules/d3-interpolate/src/zoom.js +73 -0
- package/dist/esm/bundled_modules/d3-path/src/path.js +154 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/add.js +86 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/cover.js +45 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/data.js +9 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/extent.js +7 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/find.js +72 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/quad.js +9 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/quadtree.js +75 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/remove.js +64 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/root.js +5 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/size.js +9 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/visit.js +18 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/visitAfter.js +23 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/x.js +9 -0
- package/dist/esm/bundled_modules/d3-quadtree/src/y.js +9 -0
- package/dist/esm/bundled_modules/d3-scale/src/constant.js +7 -0
- package/dist/esm/bundled_modules/d3-scale/src/continuous.js +129 -0
- package/dist/esm/bundled_modules/d3-scale/src/diverging.js +108 -0
- package/dist/esm/bundled_modules/d3-scale/src/identity.js +30 -0
- package/dist/esm/bundled_modules/d3-scale/src/init.js +28 -0
- package/dist/esm/bundled_modules/d3-scale/src/linear.js +72 -0
- package/dist/esm/bundled_modules/d3-scale/src/log.js +143 -0
- package/dist/esm/bundled_modules/d3-scale/src/nice.js +20 -0
- package/dist/esm/bundled_modules/d3-scale/src/number.js +5 -0
- package/dist/esm/bundled_modules/d3-scale/src/ordinal.js +48 -0
- package/dist/esm/bundled_modules/d3-scale/src/pow.js +52 -0
- package/dist/esm/bundled_modules/d3-scale/src/quantile.js +61 -0
- package/dist/esm/bundled_modules/d3-scale/src/quantize.js +58 -0
- package/dist/esm/bundled_modules/d3-scale/src/sequential.js +110 -0
- package/dist/esm/bundled_modules/d3-scale/src/symlog.js +37 -0
- package/dist/esm/bundled_modules/d3-scale/src/threshold.js +41 -0
- package/dist/esm/bundled_modules/d3-scale/src/tickFormat.js +35 -0
- package/dist/esm/bundled_modules/d3-scale/src/time.js +80 -0
- package/dist/esm/bundled_modules/d3-scale/src/utcTime.js +17 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/Accent.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/Dark2.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/Paired.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/Pastel1.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/Pastel2.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/Set1.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/Set2.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/Set3.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/category10.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/categorical/observable10.js +5 -0
- package/dist/esm/bundled_modules/d3-scale-chromatic/src/colors.js +7 -0
- package/dist/esm/bundled_modules/d3-shape/src/arc.js +270 -0
- package/dist/esm/bundled_modules/d3-shape/src/area.js +114 -0
- package/dist/esm/bundled_modules/d3-shape/src/array.js +7 -0
- package/dist/esm/bundled_modules/d3-shape/src/constant.js +7 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/basis.js +53 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/basisClosed.js +54 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/basisOpen.js +41 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/bundle.js +58 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/cardinal.js +63 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/cardinalClosed.js +63 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/cardinalOpen.js +51 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/catmullRom.js +90 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/catmullRomClosed.js +76 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/catmullRomOpen.js +64 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/linear.js +33 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/linearClosed.js +27 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/monotone.js +106 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/natural.js +67 -0
- package/dist/esm/bundled_modules/d3-shape/src/curve/step.js +55 -0
- package/dist/esm/bundled_modules/d3-shape/src/line.js +60 -0
- package/dist/esm/bundled_modules/d3-shape/src/math.js +22 -0
- package/dist/esm/bundled_modules/d3-shape/src/noop.js +3 -0
- package/dist/esm/bundled_modules/d3-shape/src/path.js +21 -0
- package/dist/esm/bundled_modules/d3-shape/src/point.js +9 -0
- package/dist/esm/bundled_modules/d3-shape/src/symbol/circle.js +11 -0
- package/dist/esm/bundled_modules/d3-shape/src/symbol.js +34 -0
- package/dist/esm/bundled_modules/d3-time/src/day.js +37 -0
- package/dist/esm/bundled_modules/d3-time/src/duration.js +9 -0
- package/dist/esm/bundled_modules/d3-time/src/hour.js +28 -0
- package/dist/esm/bundled_modules/d3-time/src/interval.js +71 -0
- package/dist/esm/bundled_modules/d3-time/src/millisecond.js +27 -0
- package/dist/esm/bundled_modules/d3-time/src/minute.js +28 -0
- package/dist/esm/bundled_modules/d3-time/src/month.js +29 -0
- package/dist/esm/bundled_modules/d3-time/src/second.js +16 -0
- package/dist/esm/bundled_modules/d3-time/src/ticks.js +59 -0
- package/dist/esm/bundled_modules/d3-time/src/week.js +58 -0
- package/dist/esm/bundled_modules/d3-time/src/year.js +51 -0
- package/dist/esm/bundled_modules/d3-time-format/src/defaultLocale.js +29 -0
- package/dist/esm/bundled_modules/d3-time-format/src/locale.js +690 -0
- package/dist/esm/bundled_modules/d3-timer/src/interval.js +19 -0
- package/dist/esm/bundled_modules/d3-timer/src/timer.js +112 -0
- package/dist/esm/bundled_modules/delaunator/index.js +481 -0
- package/dist/esm/bundled_modules/internmap/src/index.js +63 -0
- package/dist/esm/bundled_modules/json-stringify-pretty-compact/index.js +100 -0
- package/dist/esm/bundled_modules/robust-predicates/esm/orient2d.js +182 -0
- package/dist/esm/bundled_modules/robust-predicates/esm/util.js +88 -0
- package/dist/esm/bundled_modules/topojson-client/src/feature.js +72 -0
- package/dist/esm/bundled_modules/topojson-client/src/identity.js +5 -0
- package/dist/esm/bundled_modules/topojson-client/src/mesh.js +55 -0
- package/dist/esm/bundled_modules/topojson-client/src/reverse.js +6 -0
- package/dist/esm/bundled_modules/topojson-client/src/stitch.js +75 -0
- package/dist/esm/bundled_modules/topojson-client/src/transform.js +21 -0
- package/dist/esm/bundled_modules/vega/build/vega.module.js +38 -0
- package/dist/esm/bundled_modules/vega-canvas/build/vega-canvas.browser.js +14 -0
- package/dist/esm/bundled_modules/vega-crossfilter/build/vega-crossfilter.js +673 -0
- package/dist/esm/bundled_modules/vega-dataflow/build/vega-dataflow.js +2080 -0
- package/dist/esm/bundled_modules/vega-embed/build/embed.js +2932 -0
- package/dist/esm/bundled_modules/vega-encode/build/vega-encode.js +952 -0
- package/dist/esm/bundled_modules/vega-event-selector/build/vega-event-selector.js +190 -0
- package/dist/esm/bundled_modules/vega-expression/build/vega-expression.js +1597 -0
- package/dist/esm/bundled_modules/vega-force/build/vega-force.js +293 -0
- package/dist/esm/bundled_modules/vega-format/build/vega-format.js +191 -0
- package/dist/esm/bundled_modules/vega-functions/build/vega-functions.js +779 -0
- package/dist/esm/bundled_modules/vega-geo/build/vega-geo.js +1322 -0
- package/dist/esm/bundled_modules/vega-hierarchy/build/vega-hierarchy.js +572 -0
- package/dist/esm/bundled_modules/vega-interpreter/build/vega-interpreter.js +308 -0
- package/dist/esm/bundled_modules/vega-label/build/vega-label.js +874 -0
- package/dist/esm/bundled_modules/vega-lite/build/index.js +20110 -0
- package/dist/esm/bundled_modules/vega-loader/build/vega-loader.browser.js +328 -0
- package/dist/esm/bundled_modules/vega-parser/build/vega-parser.js +3783 -0
- package/dist/esm/bundled_modules/vega-projection/build/vega-projection.js +86 -0
- package/dist/esm/bundled_modules/vega-regression/build/vega-regression.js +233 -0
- package/dist/esm/bundled_modules/vega-runtime/build/vega-runtime.js +586 -0
- package/dist/esm/bundled_modules/vega-scale/build/vega-scale.js +799 -0
- package/dist/esm/bundled_modules/vega-scenegraph/build/vega-scenegraph.js +4982 -0
- package/dist/esm/bundled_modules/vega-schema-url-parser/dist/parser.modern.js +3 -0
- package/dist/esm/bundled_modules/vega-selections/build/vega-selection.js +336 -0
- package/dist/esm/bundled_modules/vega-statistics/build/vega-statistics.js +1157 -0
- package/dist/esm/bundled_modules/vega-themes/build/index.js +837 -0
- package/dist/esm/bundled_modules/vega-time/build/vega-time.js +314 -0
- package/dist/esm/bundled_modules/vega-tooltip/build/index.js +339 -0
- package/dist/esm/bundled_modules/vega-transforms/build/vega-transforms.js +3740 -0
- package/dist/esm/bundled_modules/vega-util/build/vega-util.js +753 -0
- package/dist/esm/bundled_modules/vega-view/build/vega-view.js +1304 -0
- package/dist/esm/bundled_modules/vega-view-transforms/build/vega-view-transforms.js +1306 -0
- package/dist/esm/bundled_modules/vega-voronoi/build/vega-voronoi.js +78 -0
- package/dist/esm/bundled_modules/vega-wordcloud/build/vega-wordcloud.js +538 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/styles/createPalette.js +1 -1
- package/dist/esm/styles/entrypoint.scss.js +3 -0
- package/dist/esm/styles.css +1 -1
- package/dist/esm/unstable/Card/components.js +182 -0
- package/dist/esm/unstable/Card/state.js +30 -0
- package/dist/esm/unstable/Card/styles.module.scss.js +1 -1
- package/dist/esm/unstable/StatCard/index.js +116 -0
- package/dist/esm/unstable/StatCard/index.module.scss.js +3 -0
- package/dist/esm/unstable/extras/chart/BarChart.js +40 -0
- package/dist/esm/unstable/extras/chart/Chart.js +96 -0
- package/dist/esm/unstable/extras/chart/DistributionChart.js +82 -0
- package/dist/esm/unstable/extras/chart/DonutChart.js +41 -0
- package/dist/esm/unstable/extras/chart/LineChart.js +43 -0
- package/dist/esm/unstable/extras/chart/PieChart.js +37 -0
- package/dist/esm/unstable/extras/chart/TimelineChart.js +46 -0
- package/dist/esm/unstable/extras/chart/index.js +8 -0
- package/dist/esm/unstable/index.js +5 -1
- package/dist/esm/unstable/skeleton/index.js +69 -0
- package/dist/esm/unstable/skeleton/index.module.scss.js +3 -0
- package/dist/esm/unstable/suspense/index.js +15 -0
- package/dist/esm/unstable/suspense/index.module.scss.js +3 -0
- package/dist/esm/unstable/suspense/loader.js +20 -0
- package/dist/types/Dialog/components.d.ts +27 -20
- package/dist/types/Dialog/factory.d.ts +4 -5
- package/dist/types/Dialog/state.d.ts +1 -15
- package/dist/types/TablePagination/index.d.ts +1 -1
- package/dist/types/styles/createPalette.d.ts +13 -2
- package/dist/types/unstable/Card/components.d.ts +90 -0
- package/dist/types/unstable/Card/index.d.ts +2 -11
- package/dist/types/unstable/Card/state.d.ts +20 -0
- package/dist/types/unstable/StatCard/index.d.ts +33 -0
- package/dist/types/unstable/extras/chart/BarChart.d.ts +16 -0
- package/dist/types/unstable/extras/chart/Chart.d.ts +33 -0
- package/dist/types/unstable/extras/chart/DistributionChart.d.ts +18 -0
- package/dist/types/unstable/extras/chart/DonutChart.d.ts +16 -0
- package/dist/types/unstable/extras/chart/LineChart.d.ts +16 -0
- package/dist/types/unstable/extras/chart/PieChart.d.ts +14 -0
- package/dist/types/unstable/extras/chart/TimelineChart.d.ts +15 -0
- package/dist/types/unstable/extras/chart/index.d.ts +15 -33
- package/dist/types/unstable/index.d.ts +3 -0
- package/dist/types/unstable/skeleton/index.d.ts +15 -0
- package/dist/types/unstable/suspense/index.d.ts +9 -0
- package/dist/types/unstable/suspense/loader.d.ts +7 -0
- package/package.json +1 -7
- package/dist/cjs/unstable/Card/index.js +0 -33
- package/dist/esm/unstable/Card/index.js +0 -29
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var math = require('../math.js');
|
|
4
|
+
var index = require('./index.js');
|
|
5
|
+
|
|
6
|
+
function conicProjection(projectAt) {
|
|
7
|
+
var phi0 = 0,
|
|
8
|
+
phi1 = math.pi / 3,
|
|
9
|
+
m = index.projectionMutator(projectAt),
|
|
10
|
+
p = m(phi0, phi1);
|
|
11
|
+
|
|
12
|
+
p.parallels = function(_) {
|
|
13
|
+
return arguments.length ? m(phi0 = _[0] * math.radians, phi1 = _[1] * math.radians) : [phi0 * math.degrees, phi1 * math.degrees];
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return p;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
exports.conicProjection = conicProjection;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var math = require('../math.js');
|
|
6
|
+
var conic = require('./conic.js');
|
|
7
|
+
var mercator = require('./mercator.js');
|
|
8
|
+
|
|
9
|
+
function tany(y) {
|
|
10
|
+
return math.tan((math.halfPi + y) / 2);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function conicConformalRaw(y0, y1) {
|
|
14
|
+
var cy0 = math.cos(y0),
|
|
15
|
+
n = y0 === y1 ? math.sin(y0) : math.log(cy0 / math.cos(y1)) / math.log(tany(y1) / tany(y0)),
|
|
16
|
+
f = cy0 * math.pow(tany(y0), n) / n;
|
|
17
|
+
|
|
18
|
+
if (!n) return mercator.mercatorRaw;
|
|
19
|
+
|
|
20
|
+
function project(x, y) {
|
|
21
|
+
if (f > 0) { if (y < -math.halfPi + math.epsilon) y = -math.halfPi + math.epsilon; }
|
|
22
|
+
else { if (y > math.halfPi - math.epsilon) y = math.halfPi - math.epsilon; }
|
|
23
|
+
var r = f / math.pow(tany(y), n);
|
|
24
|
+
return [r * math.sin(n * x), f - r * math.cos(n * x)];
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
project.invert = function(x, y) {
|
|
28
|
+
var fy = f - y, r = math.sign(n) * math.sqrt(x * x + fy * fy),
|
|
29
|
+
l = math.atan2(x, math.abs(fy)) * math.sign(fy);
|
|
30
|
+
if (fy * n < 0)
|
|
31
|
+
l -= math.pi * math.sign(x) * math.sign(fy);
|
|
32
|
+
return [l / n, 2 * math.atan(math.pow(f / r, 1 / n)) - math.halfPi];
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
return project;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function geoConicConformal() {
|
|
39
|
+
return conic.conicProjection(conicConformalRaw)
|
|
40
|
+
.scale(109.5)
|
|
41
|
+
.parallels([30, 30]);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
exports.conicConformalRaw = conicConformalRaw;
|
|
45
|
+
exports.default = geoConicConformal;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var math = require('../math.js');
|
|
6
|
+
var conic = require('./conic.js');
|
|
7
|
+
var cylindricalEqualArea = require('./cylindricalEqualArea.js');
|
|
8
|
+
|
|
9
|
+
function conicEqualAreaRaw(y0, y1) {
|
|
10
|
+
var sy0 = math.sin(y0), n = (sy0 + math.sin(y1)) / 2;
|
|
11
|
+
|
|
12
|
+
// Are the parallels symmetrical around the Equator?
|
|
13
|
+
if (math.abs(n) < math.epsilon) return cylindricalEqualArea.cylindricalEqualAreaRaw(y0);
|
|
14
|
+
|
|
15
|
+
var c = 1 + sy0 * (2 * n - sy0), r0 = math.sqrt(c) / n;
|
|
16
|
+
|
|
17
|
+
function project(x, y) {
|
|
18
|
+
var r = math.sqrt(c - 2 * n * math.sin(y)) / n;
|
|
19
|
+
return [r * math.sin(x *= n), r0 - r * math.cos(x)];
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
project.invert = function(x, y) {
|
|
23
|
+
var r0y = r0 - y,
|
|
24
|
+
l = math.atan2(x, math.abs(r0y)) * math.sign(r0y);
|
|
25
|
+
if (r0y * n < 0)
|
|
26
|
+
l -= math.pi * math.sign(x) * math.sign(r0y);
|
|
27
|
+
return [l / n, math.asin((c - (x * x + r0y * r0y) * n * n) / (2 * n))];
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
return project;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function geoConicEqualArea() {
|
|
34
|
+
return conic.conicProjection(conicEqualAreaRaw)
|
|
35
|
+
.scale(155.424)
|
|
36
|
+
.center([0, 33.6442]);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
exports.conicEqualAreaRaw = conicEqualAreaRaw;
|
|
40
|
+
exports.default = geoConicEqualArea;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var math = require('../math.js');
|
|
6
|
+
var conic = require('./conic.js');
|
|
7
|
+
var equirectangular = require('./equirectangular.js');
|
|
8
|
+
|
|
9
|
+
function conicEquidistantRaw(y0, y1) {
|
|
10
|
+
var cy0 = math.cos(y0),
|
|
11
|
+
n = y0 === y1 ? math.sin(y0) : (cy0 - math.cos(y1)) / (y1 - y0),
|
|
12
|
+
g = cy0 / n + y0;
|
|
13
|
+
|
|
14
|
+
if (math.abs(n) < math.epsilon) return equirectangular.equirectangularRaw;
|
|
15
|
+
|
|
16
|
+
function project(x, y) {
|
|
17
|
+
var gy = g - y, nx = n * x;
|
|
18
|
+
return [gy * math.sin(nx), g - gy * math.cos(nx)];
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
project.invert = function(x, y) {
|
|
22
|
+
var gy = g - y,
|
|
23
|
+
l = math.atan2(x, math.abs(gy)) * math.sign(gy);
|
|
24
|
+
if (gy * n < 0)
|
|
25
|
+
l -= math.pi * math.sign(x) * math.sign(gy);
|
|
26
|
+
return [l / n, g - math.sign(n) * math.sqrt(x * x + gy * gy)];
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
return project;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function geoConicEquidistant() {
|
|
33
|
+
return conic.conicProjection(conicEquidistantRaw)
|
|
34
|
+
.scale(131.154)
|
|
35
|
+
.center([0, 13.9389]);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
exports.conicEquidistantRaw = conicEquidistantRaw;
|
|
39
|
+
exports.default = geoConicEquidistant;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var math = require('../math.js');
|
|
4
|
+
|
|
5
|
+
function cylindricalEqualAreaRaw(phi0) {
|
|
6
|
+
var cosPhi0 = math.cos(phi0);
|
|
7
|
+
|
|
8
|
+
function forward(lambda, phi) {
|
|
9
|
+
return [lambda * cosPhi0, math.sin(phi) / cosPhi0];
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
forward.invert = function(x, y) {
|
|
13
|
+
return [x / cosPhi0, math.asin(y * cosPhi0)];
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return forward;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
exports.cylindricalEqualAreaRaw = cylindricalEqualAreaRaw;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var index = require('./index.js');
|
|
6
|
+
var math = require('../math.js');
|
|
7
|
+
|
|
8
|
+
var A1 = 1.340264,
|
|
9
|
+
A2 = -0.081106,
|
|
10
|
+
A3 = 0.000893,
|
|
11
|
+
A4 = 0.003796,
|
|
12
|
+
M = math.sqrt(3) / 2,
|
|
13
|
+
iterations = 12;
|
|
14
|
+
|
|
15
|
+
function equalEarthRaw(lambda, phi) {
|
|
16
|
+
var l = math.asin(M * math.sin(phi)), l2 = l * l, l6 = l2 * l2 * l2;
|
|
17
|
+
return [
|
|
18
|
+
lambda * math.cos(l) / (M * (A1 + 3 * A2 * l2 + l6 * (7 * A3 + 9 * A4 * l2))),
|
|
19
|
+
l * (A1 + A2 * l2 + l6 * (A3 + A4 * l2))
|
|
20
|
+
];
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
equalEarthRaw.invert = function(x, y) {
|
|
24
|
+
var l = y, l2 = l * l, l6 = l2 * l2 * l2;
|
|
25
|
+
for (var i = 0, delta, fy, fpy; i < iterations; ++i) {
|
|
26
|
+
fy = l * (A1 + A2 * l2 + l6 * (A3 + A4 * l2)) - y;
|
|
27
|
+
fpy = A1 + 3 * A2 * l2 + l6 * (7 * A3 + 9 * A4 * l2);
|
|
28
|
+
l -= delta = fy / fpy, l2 = l * l, l6 = l2 * l2 * l2;
|
|
29
|
+
if (math.abs(delta) < math.epsilon2) break;
|
|
30
|
+
}
|
|
31
|
+
return [
|
|
32
|
+
M * x * (A1 + 3 * A2 * l2 + l6 * (7 * A3 + 9 * A4 * l2)) / math.cos(l),
|
|
33
|
+
math.asin(math.sin(l) / M)
|
|
34
|
+
];
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
function geoEqualEarth() {
|
|
38
|
+
return index.default(equalEarthRaw)
|
|
39
|
+
.scale(177.158);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
exports.default = geoEqualEarth;
|
|
43
|
+
exports.equalEarthRaw = equalEarthRaw;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var index = require('./index.js');
|
|
6
|
+
|
|
7
|
+
function equirectangularRaw(lambda, phi) {
|
|
8
|
+
return [lambda, phi];
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
equirectangularRaw.invert = equirectangularRaw;
|
|
12
|
+
|
|
13
|
+
function geoEquirectangular() {
|
|
14
|
+
return index.default(equirectangularRaw)
|
|
15
|
+
.scale(152.63);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
exports.default = geoEquirectangular;
|
|
19
|
+
exports.equirectangularRaw = equirectangularRaw;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var stream = require('../stream.js');
|
|
4
|
+
var bounds = require('../path/bounds.js');
|
|
5
|
+
|
|
6
|
+
function fit(projection, fitBounds, object) {
|
|
7
|
+
var clip = projection.clipExtent && projection.clipExtent();
|
|
8
|
+
projection.scale(150).translate([0, 0]);
|
|
9
|
+
if (clip != null) projection.clipExtent(null);
|
|
10
|
+
stream.default(object, projection.stream(bounds.default));
|
|
11
|
+
fitBounds(bounds.default.result());
|
|
12
|
+
if (clip != null) projection.clipExtent(clip);
|
|
13
|
+
return projection;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function fitExtent(projection, extent, object) {
|
|
17
|
+
return fit(projection, function(b) {
|
|
18
|
+
var w = extent[1][0] - extent[0][0],
|
|
19
|
+
h = extent[1][1] - extent[0][1],
|
|
20
|
+
k = Math.min(w / (b[1][0] - b[0][0]), h / (b[1][1] - b[0][1])),
|
|
21
|
+
x = +extent[0][0] + (w - k * (b[1][0] + b[0][0])) / 2,
|
|
22
|
+
y = +extent[0][1] + (h - k * (b[1][1] + b[0][1])) / 2;
|
|
23
|
+
projection.scale(150 * k).translate([x, y]);
|
|
24
|
+
}, object);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function fitSize(projection, size, object) {
|
|
28
|
+
return fitExtent(projection, [[0, 0], size], object);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function fitWidth(projection, width, object) {
|
|
32
|
+
return fit(projection, function(b) {
|
|
33
|
+
var w = +width,
|
|
34
|
+
k = w / (b[1][0] - b[0][0]),
|
|
35
|
+
x = (w - k * (b[1][0] + b[0][0])) / 2,
|
|
36
|
+
y = -k * b[0][1];
|
|
37
|
+
projection.scale(150 * k).translate([x, y]);
|
|
38
|
+
}, object);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function fitHeight(projection, height, object) {
|
|
42
|
+
return fit(projection, function(b) {
|
|
43
|
+
var h = +height,
|
|
44
|
+
k = h / (b[1][1] - b[0][1]),
|
|
45
|
+
x = -k * b[0][0],
|
|
46
|
+
y = (h - k * (b[1][1] + b[0][1])) / 2;
|
|
47
|
+
projection.scale(150 * k).translate([x, y]);
|
|
48
|
+
}, object);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
exports.fitExtent = fitExtent;
|
|
52
|
+
exports.fitHeight = fitHeight;
|
|
53
|
+
exports.fitSize = fitSize;
|
|
54
|
+
exports.fitWidth = fitWidth;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var math = require('../math.js');
|
|
6
|
+
var azimuthal = require('./azimuthal.js');
|
|
7
|
+
var index = require('./index.js');
|
|
8
|
+
|
|
9
|
+
function gnomonicRaw(x, y) {
|
|
10
|
+
var cy = math.cos(y), k = math.cos(x) * cy;
|
|
11
|
+
return [cy * math.sin(x) / k, math.sin(y) / k];
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
gnomonicRaw.invert = azimuthal.azimuthalInvert(math.atan);
|
|
15
|
+
|
|
16
|
+
function geoGnomonic() {
|
|
17
|
+
return index.default(gnomonicRaw)
|
|
18
|
+
.scale(144.049)
|
|
19
|
+
.clipAngle(60);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
exports.default = geoGnomonic;
|
|
23
|
+
exports.gnomonicRaw = gnomonicRaw;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var rectangle = require('../clip/rectangle.js');
|
|
6
|
+
var identity = require('../identity.js');
|
|
7
|
+
var transform = require('../transform.js');
|
|
8
|
+
var fit = require('./fit.js');
|
|
9
|
+
var math = require('../math.js');
|
|
10
|
+
|
|
11
|
+
function geoIdentity() {
|
|
12
|
+
var k = 1, tx = 0, ty = 0, sx = 1, sy = 1, // scale, translate and reflect
|
|
13
|
+
alpha = 0, ca, sa, // angle
|
|
14
|
+
x0 = null, y0, x1, y1, // clip extent
|
|
15
|
+
kx = 1, ky = 1,
|
|
16
|
+
transform$1 = transform.transformer({
|
|
17
|
+
point: function(x, y) {
|
|
18
|
+
var p = projection([x, y]);
|
|
19
|
+
this.stream.point(p[0], p[1]);
|
|
20
|
+
}
|
|
21
|
+
}),
|
|
22
|
+
postclip = identity.default,
|
|
23
|
+
cache,
|
|
24
|
+
cacheStream;
|
|
25
|
+
|
|
26
|
+
function reset() {
|
|
27
|
+
kx = k * sx;
|
|
28
|
+
ky = k * sy;
|
|
29
|
+
cache = cacheStream = null;
|
|
30
|
+
return projection;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
function projection (p) {
|
|
34
|
+
var x = p[0] * kx, y = p[1] * ky;
|
|
35
|
+
if (alpha) {
|
|
36
|
+
var t = y * ca - x * sa;
|
|
37
|
+
x = x * ca + y * sa;
|
|
38
|
+
y = t;
|
|
39
|
+
}
|
|
40
|
+
return [x + tx, y + ty];
|
|
41
|
+
}
|
|
42
|
+
projection.invert = function(p) {
|
|
43
|
+
var x = p[0] - tx, y = p[1] - ty;
|
|
44
|
+
if (alpha) {
|
|
45
|
+
var t = y * ca + x * sa;
|
|
46
|
+
x = x * ca - y * sa;
|
|
47
|
+
y = t;
|
|
48
|
+
}
|
|
49
|
+
return [x / kx, y / ky];
|
|
50
|
+
};
|
|
51
|
+
projection.stream = function(stream) {
|
|
52
|
+
return cache && cacheStream === stream ? cache : cache = transform$1(postclip(cacheStream = stream));
|
|
53
|
+
};
|
|
54
|
+
projection.postclip = function(_) {
|
|
55
|
+
return arguments.length ? (postclip = _, x0 = y0 = x1 = y1 = null, reset()) : postclip;
|
|
56
|
+
};
|
|
57
|
+
projection.clipExtent = function(_) {
|
|
58
|
+
return arguments.length ? (postclip = _ == null ? (x0 = y0 = x1 = y1 = null, identity.default) : rectangle.default(x0 = +_[0][0], y0 = +_[0][1], x1 = +_[1][0], y1 = +_[1][1]), reset()) : x0 == null ? null : [[x0, y0], [x1, y1]];
|
|
59
|
+
};
|
|
60
|
+
projection.scale = function(_) {
|
|
61
|
+
return arguments.length ? (k = +_, reset()) : k;
|
|
62
|
+
};
|
|
63
|
+
projection.translate = function(_) {
|
|
64
|
+
return arguments.length ? (tx = +_[0], ty = +_[1], reset()) : [tx, ty];
|
|
65
|
+
};
|
|
66
|
+
projection.angle = function(_) {
|
|
67
|
+
return arguments.length ? (alpha = _ % 360 * math.radians, sa = math.sin(alpha), ca = math.cos(alpha), reset()) : alpha * math.degrees;
|
|
68
|
+
};
|
|
69
|
+
projection.reflectX = function(_) {
|
|
70
|
+
return arguments.length ? (sx = _ ? -1 : 1, reset()) : sx < 0;
|
|
71
|
+
};
|
|
72
|
+
projection.reflectY = function(_) {
|
|
73
|
+
return arguments.length ? (sy = _ ? -1 : 1, reset()) : sy < 0;
|
|
74
|
+
};
|
|
75
|
+
projection.fitExtent = function(extent, object) {
|
|
76
|
+
return fit.fitExtent(projection, extent, object);
|
|
77
|
+
};
|
|
78
|
+
projection.fitSize = function(size, object) {
|
|
79
|
+
return fit.fitSize(projection, size, object);
|
|
80
|
+
};
|
|
81
|
+
projection.fitWidth = function(width, object) {
|
|
82
|
+
return fit.fitWidth(projection, width, object);
|
|
83
|
+
};
|
|
84
|
+
projection.fitHeight = function(height, object) {
|
|
85
|
+
return fit.fitHeight(projection, height, object);
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
return projection;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
exports.default = geoIdentity;
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var antimeridian = require('../clip/antimeridian.js');
|
|
6
|
+
var circle = require('../clip/circle.js');
|
|
7
|
+
var rectangle = require('../clip/rectangle.js');
|
|
8
|
+
var compose = require('../compose.js');
|
|
9
|
+
var identity = require('../identity.js');
|
|
10
|
+
var math = require('../math.js');
|
|
11
|
+
var rotation = require('../rotation.js');
|
|
12
|
+
var transform = require('../transform.js');
|
|
13
|
+
var fit = require('./fit.js');
|
|
14
|
+
var resample = require('./resample.js');
|
|
15
|
+
|
|
16
|
+
var transformRadians = transform.transformer({
|
|
17
|
+
point: function(x, y) {
|
|
18
|
+
this.stream.point(x * math.radians, y * math.radians);
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
function transformRotate(rotate) {
|
|
23
|
+
return transform.transformer({
|
|
24
|
+
point: function(x, y) {
|
|
25
|
+
var r = rotate(x, y);
|
|
26
|
+
return this.stream.point(r[0], r[1]);
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function scaleTranslate(k, dx, dy, sx, sy) {
|
|
32
|
+
function transform(x, y) {
|
|
33
|
+
x *= sx; y *= sy;
|
|
34
|
+
return [dx + k * x, dy - k * y];
|
|
35
|
+
}
|
|
36
|
+
transform.invert = function(x, y) {
|
|
37
|
+
return [(x - dx) / k * sx, (dy - y) / k * sy];
|
|
38
|
+
};
|
|
39
|
+
return transform;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
function scaleTranslateRotate(k, dx, dy, sx, sy, alpha) {
|
|
43
|
+
if (!alpha) return scaleTranslate(k, dx, dy, sx, sy);
|
|
44
|
+
var cosAlpha = math.cos(alpha),
|
|
45
|
+
sinAlpha = math.sin(alpha),
|
|
46
|
+
a = cosAlpha * k,
|
|
47
|
+
b = sinAlpha * k,
|
|
48
|
+
ai = cosAlpha / k,
|
|
49
|
+
bi = sinAlpha / k,
|
|
50
|
+
ci = (sinAlpha * dy - cosAlpha * dx) / k,
|
|
51
|
+
fi = (sinAlpha * dx + cosAlpha * dy) / k;
|
|
52
|
+
function transform(x, y) {
|
|
53
|
+
x *= sx; y *= sy;
|
|
54
|
+
return [a * x - b * y + dx, dy - b * x - a * y];
|
|
55
|
+
}
|
|
56
|
+
transform.invert = function(x, y) {
|
|
57
|
+
return [sx * (ai * x - bi * y + ci), sy * (fi - bi * x - ai * y)];
|
|
58
|
+
};
|
|
59
|
+
return transform;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function projection(project) {
|
|
63
|
+
return projectionMutator(function() { return project; })();
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function projectionMutator(projectAt) {
|
|
67
|
+
var project,
|
|
68
|
+
k = 150, // scale
|
|
69
|
+
x = 480, y = 250, // translate
|
|
70
|
+
lambda = 0, phi = 0, // center
|
|
71
|
+
deltaLambda = 0, deltaPhi = 0, deltaGamma = 0, rotate, // pre-rotate
|
|
72
|
+
alpha = 0, // post-rotate angle
|
|
73
|
+
sx = 1, // reflectX
|
|
74
|
+
sy = 1, // reflectX
|
|
75
|
+
theta = null, preclip = antimeridian.default, // pre-clip angle
|
|
76
|
+
x0 = null, y0, x1, y1, postclip = identity.default, // post-clip extent
|
|
77
|
+
delta2 = 0.5, // precision
|
|
78
|
+
projectResample,
|
|
79
|
+
projectTransform,
|
|
80
|
+
projectRotateTransform,
|
|
81
|
+
cache,
|
|
82
|
+
cacheStream;
|
|
83
|
+
|
|
84
|
+
function projection(point) {
|
|
85
|
+
return projectRotateTransform(point[0] * math.radians, point[1] * math.radians);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
function invert(point) {
|
|
89
|
+
point = projectRotateTransform.invert(point[0], point[1]);
|
|
90
|
+
return point && [point[0] * math.degrees, point[1] * math.degrees];
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
projection.stream = function(stream) {
|
|
94
|
+
return cache && cacheStream === stream ? cache : cache = transformRadians(transformRotate(rotate)(preclip(projectResample(postclip(cacheStream = stream)))));
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
projection.preclip = function(_) {
|
|
98
|
+
return arguments.length ? (preclip = _, theta = undefined, reset()) : preclip;
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
projection.postclip = function(_) {
|
|
102
|
+
return arguments.length ? (postclip = _, x0 = y0 = x1 = y1 = null, reset()) : postclip;
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
projection.clipAngle = function(_) {
|
|
106
|
+
return arguments.length ? (preclip = +_ ? circle.default(theta = _ * math.radians) : (theta = null, antimeridian.default), reset()) : theta * math.degrees;
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
projection.clipExtent = function(_) {
|
|
110
|
+
return arguments.length ? (postclip = _ == null ? (x0 = y0 = x1 = y1 = null, identity.default) : rectangle.default(x0 = +_[0][0], y0 = +_[0][1], x1 = +_[1][0], y1 = +_[1][1]), reset()) : x0 == null ? null : [[x0, y0], [x1, y1]];
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
projection.scale = function(_) {
|
|
114
|
+
return arguments.length ? (k = +_, recenter()) : k;
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
projection.translate = function(_) {
|
|
118
|
+
return arguments.length ? (x = +_[0], y = +_[1], recenter()) : [x, y];
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
projection.center = function(_) {
|
|
122
|
+
return arguments.length ? (lambda = _[0] % 360 * math.radians, phi = _[1] % 360 * math.radians, recenter()) : [lambda * math.degrees, phi * math.degrees];
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
projection.rotate = function(_) {
|
|
126
|
+
return arguments.length ? (deltaLambda = _[0] % 360 * math.radians, deltaPhi = _[1] % 360 * math.radians, deltaGamma = _.length > 2 ? _[2] % 360 * math.radians : 0, recenter()) : [deltaLambda * math.degrees, deltaPhi * math.degrees, deltaGamma * math.degrees];
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
projection.angle = function(_) {
|
|
130
|
+
return arguments.length ? (alpha = _ % 360 * math.radians, recenter()) : alpha * math.degrees;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
projection.reflectX = function(_) {
|
|
134
|
+
return arguments.length ? (sx = _ ? -1 : 1, recenter()) : sx < 0;
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
projection.reflectY = function(_) {
|
|
138
|
+
return arguments.length ? (sy = _ ? -1 : 1, recenter()) : sy < 0;
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
projection.precision = function(_) {
|
|
142
|
+
return arguments.length ? (projectResample = resample.default(projectTransform, delta2 = _ * _), reset()) : math.sqrt(delta2);
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
projection.fitExtent = function(extent, object) {
|
|
146
|
+
return fit.fitExtent(projection, extent, object);
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
projection.fitSize = function(size, object) {
|
|
150
|
+
return fit.fitSize(projection, size, object);
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
projection.fitWidth = function(width, object) {
|
|
154
|
+
return fit.fitWidth(projection, width, object);
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
projection.fitHeight = function(height, object) {
|
|
158
|
+
return fit.fitHeight(projection, height, object);
|
|
159
|
+
};
|
|
160
|
+
|
|
161
|
+
function recenter() {
|
|
162
|
+
var center = scaleTranslateRotate(k, 0, 0, sx, sy, alpha).apply(null, project(lambda, phi)),
|
|
163
|
+
transform = scaleTranslateRotate(k, x - center[0], y - center[1], sx, sy, alpha);
|
|
164
|
+
rotate = rotation.rotateRadians(deltaLambda, deltaPhi, deltaGamma);
|
|
165
|
+
projectTransform = compose.default(project, transform);
|
|
166
|
+
projectRotateTransform = compose.default(rotate, projectTransform);
|
|
167
|
+
projectResample = resample.default(projectTransform, delta2);
|
|
168
|
+
return reset();
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
function reset() {
|
|
172
|
+
cache = cacheStream = null;
|
|
173
|
+
return projection;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
return function() {
|
|
177
|
+
project = projectAt.apply(this, arguments);
|
|
178
|
+
projection.invert = project.invert && invert;
|
|
179
|
+
return recenter();
|
|
180
|
+
};
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
exports.default = projection;
|
|
184
|
+
exports.projectionMutator = projectionMutator;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var math = require('../math.js');
|
|
6
|
+
var rotation = require('../rotation.js');
|
|
7
|
+
var index = require('./index.js');
|
|
8
|
+
|
|
9
|
+
function mercatorRaw(lambda, phi) {
|
|
10
|
+
return [lambda, math.log(math.tan((math.halfPi + phi) / 2))];
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
mercatorRaw.invert = function(x, y) {
|
|
14
|
+
return [x, 2 * math.atan(math.exp(y)) - math.halfPi];
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
function geoMercator() {
|
|
18
|
+
return mercatorProjection(mercatorRaw)
|
|
19
|
+
.scale(961 / math.tau);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function mercatorProjection(project) {
|
|
23
|
+
var m = index.default(project),
|
|
24
|
+
center = m.center,
|
|
25
|
+
scale = m.scale,
|
|
26
|
+
translate = m.translate,
|
|
27
|
+
clipExtent = m.clipExtent,
|
|
28
|
+
x0 = null, y0, x1, y1; // clip extent
|
|
29
|
+
|
|
30
|
+
m.scale = function(_) {
|
|
31
|
+
return arguments.length ? (scale(_), reclip()) : scale();
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
m.translate = function(_) {
|
|
35
|
+
return arguments.length ? (translate(_), reclip()) : translate();
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
m.center = function(_) {
|
|
39
|
+
return arguments.length ? (center(_), reclip()) : center();
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
m.clipExtent = function(_) {
|
|
43
|
+
return arguments.length ? ((_ == null ? x0 = y0 = x1 = y1 = null : (x0 = +_[0][0], y0 = +_[0][1], x1 = +_[1][0], y1 = +_[1][1])), reclip()) : x0 == null ? null : [[x0, y0], [x1, y1]];
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
function reclip() {
|
|
47
|
+
var k = math.pi * scale(),
|
|
48
|
+
t = m(rotation.default(m.rotate()).invert([0, 0]));
|
|
49
|
+
return clipExtent(x0 == null
|
|
50
|
+
? [[t[0] - k, t[1] - k], [t[0] + k, t[1] + k]] : project === mercatorRaw
|
|
51
|
+
? [[Math.max(t[0] - k, x0), y0], [Math.min(t[0] + k, x1), y1]]
|
|
52
|
+
: [[x0, Math.max(t[1] - k, y0)], [x1, Math.min(t[1] + k, y1)]]);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
return reclip();
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
exports.default = geoMercator;
|
|
59
|
+
exports.mercatorProjection = mercatorProjection;
|
|
60
|
+
exports.mercatorRaw = mercatorRaw;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var index = require('./index.js');
|
|
6
|
+
var math = require('../math.js');
|
|
7
|
+
|
|
8
|
+
function naturalEarth1Raw(lambda, phi) {
|
|
9
|
+
var phi2 = phi * phi, phi4 = phi2 * phi2;
|
|
10
|
+
return [
|
|
11
|
+
lambda * (0.8707 - 0.131979 * phi2 + phi4 * (-0.013791 + phi4 * (0.003971 * phi2 - 0.001529 * phi4))),
|
|
12
|
+
phi * (1.007226 + phi2 * (0.015085 + phi4 * (-0.044475 + 0.028874 * phi2 - 0.005916 * phi4)))
|
|
13
|
+
];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
naturalEarth1Raw.invert = function(x, y) {
|
|
17
|
+
var phi = y, i = 25, delta;
|
|
18
|
+
do {
|
|
19
|
+
var phi2 = phi * phi, phi4 = phi2 * phi2;
|
|
20
|
+
phi -= delta = (phi * (1.007226 + phi2 * (0.015085 + phi4 * (-0.044475 + 0.028874 * phi2 - 0.005916 * phi4))) - y) /
|
|
21
|
+
(1.007226 + phi2 * (0.015085 * 3 + phi4 * (-0.044475 * 7 + 0.028874 * 9 * phi2 - 0.005916 * 11 * phi4)));
|
|
22
|
+
} while (math.abs(delta) > math.epsilon && --i > 0);
|
|
23
|
+
return [
|
|
24
|
+
x / (0.8707 + (phi2 = phi * phi) * (-0.131979 + phi2 * (-0.013791 + phi2 * phi2 * phi2 * (0.003971 - 0.001529 * phi2)))),
|
|
25
|
+
phi
|
|
26
|
+
];
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
function geoNaturalEarth1() {
|
|
30
|
+
return index.default(naturalEarth1Raw)
|
|
31
|
+
.scale(175.295);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
exports.default = geoNaturalEarth1;
|
|
35
|
+
exports.naturalEarth1Raw = naturalEarth1Raw;
|