@@ -505,20 +505,20 @@ Force-directed graph layout using velocity Verlet integration.
505
505
* [ * radial* .x] ( https://github.com/d3/d3-force/blob/v1.2.1/README.md#radial_x ) - set the target center * x* -coordinate.
506
506
* [ * radial* .y] ( https://github.com/d3/d3-force/blob/v1.2.1/README.md#radial_y ) - set the target center * y* -coordinate.
507
507
508
- ## [ Number Formats (d3-format)] ( https://github.com/d3/d3-format/tree/v1.4.2 )
508
+ ## [ Number Formats (d3-format)] ( https://github.com/d3/d3-format/tree/v1.4.3 )
509
509
510
510
Format numbers for human consumption.
511
511
512
- * [ d3.format] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#format ) - alias for * locale* .format on the default locale.
513
- * [ d3.formatPrefix] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#formatPrefix ) - alias for * locale* .formatPrefix on the default locale.
514
- * [ d3.formatSpecifier] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#formatSpecifier ) - parse a number format specifier.
515
- * [ d3.formatLocale] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#formatLocale ) - define a custom locale.
516
- * [ d3.formatDefaultLocale] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#formatDefaultLocale ) - define the default locale.
517
- * [ * locale* .format] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#locale_format ) - create a number format.
518
- * [ * locale* .formatPrefix] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#locale_formatPrefix ) - create a SI-prefix number format.
519
- * [ d3.precisionFixed] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#precisionFixed ) - compute decimal precision for fixed-point notation.
520
- * [ d3.precisionPrefix] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#precisionPrefix ) - compute decimal precision for SI-prefix notation.
521
- * [ d3.precisionRound] ( https://github.com/d3/d3-format/blob/v1.4.2 /README.md#precisionRound ) - compute significant digits for rounded notation.
512
+ * [ d3.format] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#format ) - alias for * locale* .format on the default locale.
513
+ * [ d3.formatPrefix] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#formatPrefix ) - alias for * locale* .formatPrefix on the default locale.
514
+ * [ d3.formatSpecifier] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#formatSpecifier ) - parse a number format specifier.
515
+ * [ d3.formatLocale] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#formatLocale ) - define a custom locale.
516
+ * [ d3.formatDefaultLocale] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#formatDefaultLocale ) - define the default locale.
517
+ * [ * locale* .format] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#locale_format ) - create a number format.
518
+ * [ * locale* .formatPrefix] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#locale_formatPrefix ) - create a SI-prefix number format.
519
+ * [ d3.precisionFixed] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#precisionFixed ) - compute decimal precision for fixed-point notation.
520
+ * [ d3.precisionPrefix] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#precisionPrefix ) - compute decimal precision for SI-prefix notation.
521
+ * [ d3.precisionRound] ( https://github.com/d3/d3-format/blob/v1.4.3 /README.md#precisionRound ) - compute significant digits for rounded notation.
522
522
523
523
## [ Geographies (d3-geo)] ( https://github.com/d3/d3-geo/tree/v1.11.9 )
524
524
@@ -702,37 +702,38 @@ Layout algorithms for visualizing hierarchical data.
702
702
* [ d3.packSiblings] ( https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#packSiblings ) - pack the specified array of circles.
703
703
* [ d3.packEnclose] ( https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#packEnclose ) - enclose the specified array of circles.
704
704
705
- ## [ Interpolators (d3-interpolate)] ( https://github.com/d3/d3-interpolate/tree/v1.3.3 )
705
+ ## [ Interpolators (d3-interpolate)] ( https://github.com/d3/d3-interpolate/tree/v1.4.0 )
706
706
707
707
Interpolate numbers, colors, strings, arrays, objects, whatever!
708
708
709
- * [ d3.interpolate] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolate ) - interpolate arbitrary values.
710
- * [ d3.interpolateArray] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateArray ) - interpolate arrays of arbitrary values.
711
- * [ d3.interpolateDate] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateDate ) - interpolate dates.
712
- * [ d3.interpolateNumber] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateNumber ) - interpolate numbers.
713
- * [ d3.interpolateObject] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateObject ) - interpolate arbitrary objects.
714
- * [ d3.interpolateRound] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateRound ) - interpolate integers.
715
- * [ d3.interpolateString] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateString ) - interpolate strings with embedded numbers.
716
- * [ d3.interpolateTransformCss] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateTransformCss ) - interpolate 2D CSS transforms.
717
- * [ d3.interpolateTransformSvg] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateTransformSvg ) - interpolate 2D SVG transforms.
718
- * [ d3.interpolateZoom] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateZoom ) - zoom and pan between two views.
719
- * [ d3.interpolateRgb] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateRgb ) - interpolate RGB colors.
720
- * [ d3.interpolateRgbBasis] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateRgbBasis ) - generate a B-spline through a set of colors.
721
- * [ d3.interpolateRgbBasisClosed] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateRgbBasisClosed ) - generate a closed B-spline through a set of colors.
722
- * [ d3.interpolateHsl] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateHsl ) - interpolate HSL colors.
723
- * [ d3.interpolateHslLong] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateHslLong ) - interpolate HSL colors, the long way.
724
- * [ d3.interpolateLab] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateLab ) - interpolate Lab colors.
725
- * [ d3.interpolateHcl] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateHcl ) - interpolate HCL colors.
726
- * [ d3.interpolateHclLong] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateHclLong ) - interpolate HCL colors, the long way.
727
- * [ d3.interpolateCubehelix] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateCubehelix ) - interpolate Cubehelix colors.
728
- * [ d3.interpolateCubehelixLong] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateCubehelixLong ) - interpolate Cubehelix colors, the long way.
729
- * [ * interpolate* .gamma] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolate_gamma ) - apply gamma correction during interpolation.
730
- * [ d3.interpolateHue] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateHue ) - interpolate a hue angle.
731
- * [ d3.interpolateDiscrete] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateDiscrete ) - generate a discrete interpolator from a set of values.
732
- * [ d3.interpolateBasis] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateBasis ) - generate a B-spline through a set of values.
733
- * [ d3.interpolateBasisClosed] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#interpolateBasisClosed ) - generate a closed B-spline through a set of values.
734
- * [ d3.piecewise] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#piecewise ) - generate a piecewise linear interpolator from a set of values.
735
- * [ d3.quantize] ( https://github.com/d3/d3-interpolate/blob/v1.3.3/README.md#quantize ) - generate uniformly-spaced samples from an interpolator.
709
+ * [ d3.interpolate] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolate ) - interpolate arbitrary values.
710
+ * [ d3.interpolateArray] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateArray ) - interpolate arrays of arbitrary values.
711
+ * [ d3.interpolateDate] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateDate ) - interpolate dates.
712
+ * [ d3.interpolateNumber] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateNumber ) - interpolate numbers.
713
+ * [ d3.interpolateNumberArray] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateNumberArray ) - interpolate arrays of numbers.
714
+ * [ d3.interpolateObject] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateObject ) - interpolate arbitrary objects.
715
+ * [ d3.interpolateRound] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateRound ) - interpolate integers.
716
+ * [ d3.interpolateString] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateString ) - interpolate strings with embedded numbers.
717
+ * [ d3.interpolateTransformCss] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateTransformCss ) - interpolate 2D CSS transforms.
718
+ * [ d3.interpolateTransformSvg] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateTransformSvg ) - interpolate 2D SVG transforms.
719
+ * [ d3.interpolateZoom] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateZoom ) - zoom and pan between two views.
720
+ * [ d3.interpolateRgb] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateRgb ) - interpolate RGB colors.
721
+ * [ d3.interpolateRgbBasis] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateRgbBasis ) - generate a B-spline through a set of colors.
722
+ * [ d3.interpolateRgbBasisClosed] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateRgbBasisClosed ) - generate a closed B-spline through a set of colors.
723
+ * [ d3.interpolateHsl] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHsl ) - interpolate HSL colors.
724
+ * [ d3.interpolateHslLong] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHslLong ) - interpolate HSL colors, the long way.
725
+ * [ d3.interpolateLab] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateLab ) - interpolate Lab colors.
726
+ * [ d3.interpolateHcl] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHcl ) - interpolate HCL colors.
727
+ * [ d3.interpolateHclLong] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHclLong ) - interpolate HCL colors, the long way.
728
+ * [ d3.interpolateCubehelix] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateCubehelix ) - interpolate Cubehelix colors.
729
+ * [ d3.interpolateCubehelixLong] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateCubehelixLong ) - interpolate Cubehelix colors, the long way.
730
+ * [ * interpolate* .gamma] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolate_gamma ) - apply gamma correction during interpolation.
731
+ * [ d3.interpolateHue] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHue ) - interpolate a hue angle.
732
+ * [ d3.interpolateDiscrete] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateDiscrete ) - generate a discrete interpolator from a set of values.
733
+ * [ d3.interpolateBasis] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateBasis ) - generate a B-spline through a set of values.
734
+ * [ d3.interpolateBasisClosed] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateBasisClosed ) - generate a closed B-spline through a set of values.
735
+ * [ d3.piecewise] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#piecewise ) - generate a piecewise linear interpolator from a set of values.
736
+ * [ d3.quantize] ( https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#quantize ) - generate uniformly-spaced samples from an interpolator.
736
737
737
738
## [ Paths (d3-path)] ( https://github.com/d3/d3-path/tree/v1.0.9 )
738
739
@@ -1198,22 +1199,22 @@ Stack shapes, placing one adjacent to another, as in a stacked bar chart.
1198
1199
* [ d3.stackOffsetSilhouette] ( https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOffsetSilhouette ) - center the streamgraph around zero.
1199
1200
* [ d3.stackOffsetWiggle] ( https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOffsetWiggle ) - minimize streamgraph wiggling.
1200
1201
1201
- ## [ Time Formats (d3-time-format)] ( https://github.com/d3/d3-time-format/tree/v2.2.2 )
1202
+ ## [ Time Formats (d3-time-format)] ( https://github.com/d3/d3-time-format/tree/v2.2.3 )
1202
1203
1203
1204
Parse and format times, inspired by strptime and strftime.
1204
1205
1205
- * [ d3.timeFormat] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#timeFormat ) - alias for * locale* .format on the default locale.
1206
- * [ d3.timeParse] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#timeParse ) - alias for * locale* .parse on the default locale.
1207
- * [ d3.utcFormat] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#utcFormat ) - alias for * locale* .utcFormat on the default locale.
1208
- * [ d3.utcParse] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#utcParse ) - alias for * locale* .utcParse on the default locale.
1209
- * [ d3.isoFormat] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#isoFormat ) - an ISO 8601 UTC formatter.
1210
- * [ d3.isoParse] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#isoParse ) - an ISO 8601 UTC parser.
1211
- * [ d3.timeFormatLocale] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#timeFormatLocale ) - define a custom locale.
1212
- * [ d3.timeFormatDefaultLocale] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#timeFormatDefaultLocale ) - define the default locale.
1213
- * [ * locale* .format] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#locale_format ) - create a time formatter.
1214
- * [ * locale* .parse] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#locale_parse ) - create a time parser.
1215
- * [ * locale* .utcFormat] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#locale_utcFormat ) - create a UTC formatter.
1216
- * [ * locale* .utcParse] ( https://github.com/d3/d3-time-format/blob/v2.2.2 /README.md#locale_utcParse ) - create a UTC parser.
1206
+ * [ d3.timeFormat] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#timeFormat ) - alias for * locale* .format on the default locale.
1207
+ * [ d3.timeParse] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#timeParse ) - alias for * locale* .parse on the default locale.
1208
+ * [ d3.utcFormat] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#utcFormat ) - alias for * locale* .utcFormat on the default locale.
1209
+ * [ d3.utcParse] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#utcParse ) - alias for * locale* .utcParse on the default locale.
1210
+ * [ d3.isoFormat] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#isoFormat ) - an ISO 8601 UTC formatter.
1211
+ * [ d3.isoParse] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#isoParse ) - an ISO 8601 UTC parser.
1212
+ * [ d3.timeFormatLocale] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#timeFormatLocale ) - define a custom locale.
1213
+ * [ d3.timeFormatDefaultLocale] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#timeFormatDefaultLocale ) - define the default locale.
1214
+ * [ * locale* .format] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#locale_format ) - create a time formatter.
1215
+ * [ * locale* .parse] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#locale_parse ) - create a time parser.
1216
+ * [ * locale* .utcFormat] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#locale_utcFormat ) - create a UTC formatter.
1217
+ * [ * locale* .utcParse] ( https://github.com/d3/d3-time-format/blob/v2.2.3 /README.md#locale_utcParse ) - create a UTC parser.
1217
1218
1218
1219
## [ Time Intervals (d3-time)] ( https://github.com/d3/d3-time/tree/v1.1.0 )
1219
1220
0 commit comments