svelteplot 0.3.5-pr-121.2 → 0.3.5-pr-121.3

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.
@@ -44,7 +44,7 @@
44
44
  /** ticks is a shorthand for defining data, tickCount or interval */
45
45
  ticks?: number | string | Datum[];
46
46
  /** set to false or null to disable tick labels */
47
- text: boolean | null;
47
+ text?: boolean | null;
48
48
  /** approximate number of ticks to be generated */
49
49
  tickCount?: number;
50
50
  /** approximate number of pixels between generated ticks */
@@ -76,7 +76,7 @@ declare class __sveltets_Render<Datum extends RawValue> {
76
76
  /** ticks is a shorthand for defining data, tickCount or interval */
77
77
  ticks?: string | number | Datum[] | undefined;
78
78
  /** set to false or null to disable tick labels */
79
- text: boolean | null;
79
+ text?: boolean | null;
80
80
  /** approximate number of ticks to be generated */
81
81
  tickCount?: number;
82
82
  /** approximate number of pixels between generated ticks */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelteplot",
3
- "version": "0.3.5-pr-121.2",
3
+ "version": "0.3.5-pr-121.3",
4
4
  "license": "ISC",
5
5
  "author": {
6
6
  "name": "Gregor Aisch",