layerchart 0.79.1 → 0.79.2

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.
@@ -89,7 +89,7 @@
89
89
  fill-opacity={fillOpacity}
90
90
  {stroke}
91
91
  stroke-width={strokeWidth}
92
- class={cls($$props.fill == null && 'fill-surface-content')}
92
+ class={cls(fill == null && 'fill-surface-content', className)}
93
93
  {...$$restProps}
94
94
  on:click
95
95
  on:pointermove
@@ -110,8 +110,8 @@
110
110
  stroke-width={strokeWidth}
111
111
  marker-start={markerStartId ? `url(#${markerStartId})` : undefined}
112
112
  marker-end={markerEndId ? `url(#${markerEndId})` : undefined}
113
+ class={cls(stroke === undefined && 'stroke-surface-content', className)}
113
114
  {...$$restProps}
114
- class={cls($$props.stroke === undefined && 'stroke-surface-content', className)}
115
115
  on:click
116
116
  on:pointermove
117
117
  on:pointerleave
@@ -98,11 +98,11 @@
98
98
  y={$tweened_y}
99
99
  width={$tweened_width}
100
100
  height={$tweened_height}
101
- class={cls(fill == null && 'fill-surface-content')}
102
101
  {fill}
103
102
  fill-opacity={fillOpacity}
104
103
  {stroke}
105
104
  stroke-width={strokeWidth}
105
+ class={cls(fill == null && 'fill-surface-content', className)}
106
106
  {...$$restProps}
107
107
  on:click
108
108
  on:pointerenter
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": "Sean Lynch <techniq35@gmail.com>",
5
5
  "license": "MIT",
6
6
  "repository": "techniq/layerchart",
7
- "version": "0.79.1",
7
+ "version": "0.79.2",
8
8
  "devDependencies": {
9
9
  "@changesets/cli": "^2.27.12",
10
10
  "@mdi/js": "^7.4.47",