svelteplot 0.4.8-pr-227.1 → 0.4.8-pr-226.0
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/marks/Text.svelte
CHANGED
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
wordSpacing?: ConstantAccessor<CSS.Property.WordSpacing, Datum>;
|
|
26
26
|
textTransform?: ConstantAccessor<CSS.Property.TextTransform, Datum>;
|
|
27
27
|
textDecoration?: ConstantAccessor<CSS.Property.TextDecoration, Datum>;
|
|
28
|
+
/**
|
|
29
|
+
* the horizontal text anchor; start, end, or middle
|
|
30
|
+
*/
|
|
31
|
+
textAnchor?: ConstantAccessor<CSS.Property.TextAnchor, Datum>;
|
|
28
32
|
/**
|
|
29
33
|
* if you want to apply class names to individual text elements
|
|
30
34
|
*/
|
|
@@ -81,6 +81,10 @@ declare class __sveltets_Render<Datum extends DataRecord> {
|
|
|
81
81
|
wordSpacing?: ConstantAccessor<CSS.Property.WordSpacing<0 | (string & {})>, Datum>;
|
|
82
82
|
textTransform?: ConstantAccessor<CSS.Property.TextTransform, Datum>;
|
|
83
83
|
textDecoration?: ConstantAccessor<CSS.Property.TextDecoration<0 | (string & {})>, Datum>;
|
|
84
|
+
/**
|
|
85
|
+
* the horizontal text anchor; start, end, or middle
|
|
86
|
+
*/
|
|
87
|
+
textAnchor?: ConstantAccessor<CSS.Property.TextAnchor, Datum>;
|
|
84
88
|
/**
|
|
85
89
|
* if you want to apply class names to individual text elements
|
|
86
90
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelteplot",
|
|
3
|
-
"version": "0.4.8-pr-
|
|
3
|
+
"version": "0.4.8-pr-226.0",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Gregor Aisch",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"typedoc": "^0.28.13",
|
|
107
107
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
108
108
|
"typescript": "^5.9.3",
|
|
109
|
-
"vite": "^6.3.
|
|
109
|
+
"vite": "^6.3.6",
|
|
110
110
|
"vitest": "^3.2.4",
|
|
111
111
|
"vitest-matchmedia-mock": "^2.0.3",
|
|
112
112
|
"yoctocolors": "^2.1.2"
|