Skip to content

Commit 3e015f5

Browse files
committed
Merge branch 'master' into building-docs
2 parents 57e487a + 4f7a513 commit 3e015f5

File tree

12 files changed

+196
-211
lines changed

12 files changed

+196
-211
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,7 @@ jobs:
518518
workflows:
519519
version: 2
520520
build-and-test:
521+
max_auto_reruns: 1
521522
jobs:
522523
- install-and-cibuild
523524
- timezone-jasmine:

draftlogs/7475_fix.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Update plot with all config changes during call to `Plotly.react` [#7475](https://github.com/plotly/plotly.js/pull/7475)

draftlogs/7542_fix.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Fix some typos (and a conditional check) [[#7542](https://github.com/plotly/plotly.js/pull/7542)], with thanks to @musvaage for the contribution!

esbuild-config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var glsl = require('esbuild-plugin-glsl').glsl;
22
var environmentPlugin = require('esbuild-plugin-environment').environmentPlugin;
3-
const stylePlugin = require('esbuild-style-plugin');
3+
const InlineCSSPlugin = require('esbuild-plugin-inline-css');
44

55
module.exports = {
66
entryPoints: ['./lib/index.js'],
@@ -10,7 +10,7 @@ module.exports = {
1010
minify: false,
1111
sourcemap: false,
1212
plugins: [
13-
stylePlugin(),
13+
InlineCSSPlugin(),
1414
glsl({
1515
minify: true,
1616
}),

package-lock.json

Lines changed: 64 additions & 85 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
"esbuild-plugin-browserify-adapter": "^0.1.4",
137137
"esbuild-plugin-environment": "^0.4.0",
138138
"esbuild-plugin-glsl": "^1.2.2",
139-
"esbuild-style-plugin": "^1.6.3",
139+
"esbuild-plugin-inline-css": "^0.0.1",
140140
"extra-iterable": "^2.5.22",
141141
"falafel": "^2.2.5",
142142
"fs-extra": "^10.1.0",

src/components/colorbar/draw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ function drawColorBar(g, opts, gd) {
401401
ax.tickfont.size :
402402
0
403403
) + (
404-
ax.ticks !== 'intside' ?
404+
ax.ticks !== 'inside' ?
405405
opts.ticklen || 0 :
406406
0
407407
);

0 commit comments

Comments
 (0)