@opendata-ai/openchart-svelte 2.2.1 → 2.3.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/index.d.ts +8 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -0
- package/package.json +4 -4
- package/src/index.ts +46 -7
package/dist/index.d.ts
CHANGED
|
@@ -4,8 +4,15 @@
|
|
|
4
4
|
* Svelte 5 adapter for openchart. Provides <Chart />, <DataTable />,
|
|
5
5
|
* and <Graph /> components that wrap the vanilla adapter with Svelte
|
|
6
6
|
* lifecycle management using runes.
|
|
7
|
+
*
|
|
8
|
+
* Re-exports the full core type system and utilities so Svelte consumers
|
|
9
|
+
* only need a single @opendata-ai/openchart-svelte dependency.
|
|
7
10
|
*/
|
|
8
|
-
export
|
|
11
|
+
export * from '@opendata-ai/openchart-core';
|
|
12
|
+
export type { JPGExportOptions, PNGExportOptions } from '@opendata-ai/openchart-vanilla';
|
|
13
|
+
export { exportCSV, exportJPG, exportPNG, exportSVG } from '@opendata-ai/openchart-vanilla';
|
|
14
|
+
export type { ChartRenderer, CompiledGraphEdge, CompiledGraphNode, CompileResult, GraphCompilation, NormalizedChartSpec, NormalizedChrome, NormalizedGraphSpec, NormalizedSpec, NormalizedTableSpec, SimulationConfig, ValidationError, ValidationErrorCode, ValidationResult, } from '@opendata-ai/openchart-engine';
|
|
15
|
+
export { clearRenderers, compile, compileChart, compileGraph, compileTable, getChartRenderer, normalizeSpec, registerChartRenderer, validateSpec, } from '@opendata-ai/openchart-engine';
|
|
9
16
|
export { default as Chart } from './Chart.svelte';
|
|
10
17
|
export type { UseChartOptions, UseChartReturn } from './composables/useChart.svelte.js';
|
|
11
18
|
export { useChart } from './composables/useChart.svelte.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAMH,cAAc,6BAA6B,CAAC;AAM5C,YAAY,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AACzF,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAM5F,YAAY,EACV,aAAa,EACb,iBAAiB,EACjB,iBAAiB,EACjB,aAAa,EACb,gBAAgB,EAChB,mBAAmB,EACnB,gBAAgB,EAChB,mBAAmB,EACnB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,eAAe,EACf,mBAAmB,EACnB,gBAAgB,GACjB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EACL,cAAc,EACd,OAAO,EACP,YAAY,EACZ,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,aAAa,EACb,qBAAqB,EACrB,YAAY,GACb,MAAM,+BAA+B,CAAC;AAGvC,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAClD,YAAY,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AACxF,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAE5D,OAAO,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AAClE,YAAY,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AACxF,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAC5D,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAC5D,YAAY,EACV,oBAAoB,EACpB,mBAAmB,GACpB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,uCAAuC,CAAC;AAEtE,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AACxF,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAErE,YAAY,EACV,UAAU,EACV,cAAc,EACd,UAAU,EACV,kBAAkB,EAClB,qBAAqB,GACtB,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,16 @@
|
|
|
4
4
|
* Svelte 5 adapter for openchart. Provides <Chart />, <DataTable />,
|
|
5
5
|
* and <Graph /> components that wrap the vanilla adapter with Svelte
|
|
6
6
|
* lifecycle management using runes.
|
|
7
|
+
*
|
|
8
|
+
* Re-exports the full core type system and utilities so Svelte consumers
|
|
9
|
+
* only need a single @opendata-ai/openchart-svelte dependency.
|
|
7
10
|
*/
|
|
11
|
+
// ---------------------------------------------------------------------------
|
|
12
|
+
// Core: full type system, theme, colors, locale, accessibility, helpers
|
|
13
|
+
// ---------------------------------------------------------------------------
|
|
14
|
+
export * from '@opendata-ai/openchart-core';
|
|
15
|
+
export { exportCSV, exportJPG, exportPNG, exportSVG } from '@opendata-ai/openchart-vanilla';
|
|
16
|
+
export { clearRenderers, compile, compileChart, compileGraph, compileTable, getChartRenderer, normalizeSpec, registerChartRenderer, validateSpec, } from '@opendata-ai/openchart-engine';
|
|
8
17
|
// Components
|
|
9
18
|
export { default as Chart } from './Chart.svelte';
|
|
10
19
|
export { useChart } from './composables/useChart.svelte.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendata-ai/openchart-svelte",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "Svelte components for openchart: <Chart />, <DataTable />, <Graph />, <VizThemeProvider />",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Riley Hilliard",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"typecheck": "svelte-check --tsconfig ./tsconfig.json"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@opendata-ai/openchart-core": "2.
|
|
52
|
-
"@opendata-ai/openchart-engine": "2.
|
|
53
|
-
"@opendata-ai/openchart-vanilla": "2.
|
|
51
|
+
"@opendata-ai/openchart-core": "2.3.0",
|
|
52
|
+
"@opendata-ai/openchart-engine": "2.3.0",
|
|
53
|
+
"@opendata-ai/openchart-vanilla": "2.3.0"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"svelte": ">=5.0.0"
|
package/src/index.ts
CHANGED
|
@@ -4,17 +4,56 @@
|
|
|
4
4
|
* Svelte 5 adapter for openchart. Provides <Chart />, <DataTable />,
|
|
5
5
|
* and <Graph /> components that wrap the vanilla adapter with Svelte
|
|
6
6
|
* lifecycle management using runes.
|
|
7
|
+
*
|
|
8
|
+
* Re-exports the full core type system and utilities so Svelte consumers
|
|
9
|
+
* only need a single @opendata-ai/openchart-svelte dependency.
|
|
7
10
|
*/
|
|
8
11
|
|
|
9
|
-
//
|
|
12
|
+
// ---------------------------------------------------------------------------
|
|
13
|
+
// Core: full type system, theme, colors, locale, accessibility, helpers
|
|
14
|
+
// ---------------------------------------------------------------------------
|
|
15
|
+
|
|
16
|
+
export * from '@opendata-ai/openchart-core';
|
|
17
|
+
|
|
18
|
+
// ---------------------------------------------------------------------------
|
|
19
|
+
// Vanilla: export utilities (SVG/PNG/JPG/CSV)
|
|
20
|
+
// ---------------------------------------------------------------------------
|
|
21
|
+
|
|
22
|
+
export type { JPGExportOptions, PNGExportOptions } from '@opendata-ai/openchart-vanilla';
|
|
23
|
+
export { exportCSV, exportJPG, exportPNG, exportSVG } from '@opendata-ai/openchart-vanilla';
|
|
24
|
+
|
|
25
|
+
// ---------------------------------------------------------------------------
|
|
26
|
+
// Engine: compile API and types not covered by core
|
|
27
|
+
// ---------------------------------------------------------------------------
|
|
28
|
+
|
|
10
29
|
export type {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
30
|
+
ChartRenderer,
|
|
31
|
+
CompiledGraphEdge,
|
|
32
|
+
CompiledGraphNode,
|
|
33
|
+
CompileResult,
|
|
34
|
+
GraphCompilation,
|
|
35
|
+
NormalizedChartSpec,
|
|
36
|
+
NormalizedChrome,
|
|
37
|
+
NormalizedGraphSpec,
|
|
38
|
+
NormalizedSpec,
|
|
39
|
+
NormalizedTableSpec,
|
|
40
|
+
SimulationConfig,
|
|
41
|
+
ValidationError,
|
|
42
|
+
ValidationErrorCode,
|
|
43
|
+
ValidationResult,
|
|
17
44
|
} from '@opendata-ai/openchart-engine';
|
|
45
|
+
export {
|
|
46
|
+
clearRenderers,
|
|
47
|
+
compile,
|
|
48
|
+
compileChart,
|
|
49
|
+
compileGraph,
|
|
50
|
+
compileTable,
|
|
51
|
+
getChartRenderer,
|
|
52
|
+
normalizeSpec,
|
|
53
|
+
registerChartRenderer,
|
|
54
|
+
validateSpec,
|
|
55
|
+
} from '@opendata-ai/openchart-engine';
|
|
56
|
+
|
|
18
57
|
// Components
|
|
19
58
|
export { default as Chart } from './Chart.svelte';
|
|
20
59
|
export type { UseChartOptions, UseChartReturn } from './composables/useChart.svelte.js';
|