svelteplot 0.2.6-next.3 → 0.2.6-next.5

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/Mark.svelte CHANGED
@@ -174,7 +174,9 @@
174
174
  ScaledChannelName,
175
175
  ScaleName
176
176
  ][]) {
177
- if (array1[i][channel] !== array2[i][channel]) return true;
177
+ if (!isEqual(array1[i][channel], array2[i][channel])) {
178
+ return true;
179
+ }
178
180
  }
179
181
  }
180
182
  return false;
@@ -163,7 +163,8 @@
163
163
  .item,
164
164
  .item-label,
165
165
  .swatch {
166
- display: inline-block;
166
+ display: inline-flex;
167
+ align-items: center;
167
168
  }
168
169
  .item-label {
169
170
  vertical-align: super;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelteplot",
3
- "version": "0.2.6-next.3",
3
+ "version": "0.2.6-next.5",
4
4
  "license": "ISC",
5
5
  "author": {
6
6
  "name": "Gregor Aisch",