@opendata-ai/openchart-core 6.5.1 → 6.5.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.
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/types/layout.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1837,8 +1837,8 @@ interface ResolvedLabel {
|
|
|
1837
1837
|
to: Point;
|
|
1838
1838
|
/** Connector line color. */
|
|
1839
1839
|
stroke: string;
|
|
1840
|
-
/** Connector style: straight line
|
|
1841
|
-
style: 'straight' | 'curve'
|
|
1840
|
+
/** Connector style: straight line or curved arrow. */
|
|
1841
|
+
style: 'straight' | 'curve';
|
|
1842
1842
|
};
|
|
1843
1843
|
/** Background color behind the label text. */
|
|
1844
1844
|
background?: string;
|
package/package.json
CHANGED
package/src/types/layout.ts
CHANGED
|
@@ -497,8 +497,8 @@ export interface ResolvedLabel {
|
|
|
497
497
|
to: Point;
|
|
498
498
|
/** Connector line color. */
|
|
499
499
|
stroke: string;
|
|
500
|
-
/** Connector style: straight line
|
|
501
|
-
style: 'straight' | 'curve'
|
|
500
|
+
/** Connector style: straight line or curved arrow. */
|
|
501
|
+
style: 'straight' | 'curve';
|
|
502
502
|
};
|
|
503
503
|
/** Background color behind the label text. */
|
|
504
504
|
background?: string;
|