gofish-graphics 0.0.5 → 0.0.6

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5457,11 +5457,8 @@ class Sn {
5457
5457
  }) {
5458
5458
  return fu(i, { width: r, height: a, transform: f, debug: l, defs: g, axes: h }, this);
5459
5459
  }
5460
- get name() {
5461
- return this._name;
5462
- }
5463
- set name(i) {
5464
- this._name = i;
5460
+ name(i) {
5461
+ return this._name = i, this;
5465
5462
  }
5466
5463
  }
5467
5464
  const hd = (s) => "intrinsicDims" in s && "transform" in s && "dims" in s, cu = (s, i = "") => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gofish-graphics",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "A library for creating charts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",