@malloydata/render 0.0.420 → 0.0.422
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/module/api/types.d.ts +85 -0
- package/dist/module/component/render-link.d.ts +1 -1
- package/dist/module/component/render-list.d.ts +1 -1
- package/dist/module/component/render-result-metadata.d.ts +9 -0
- package/dist/module/component/render.d.ts +3 -0
- package/dist/module/component/theme.d.ts +6 -0
- package/dist/module/data_tree/cells/atomic.d.ts +6 -6
- package/dist/module/html/utils.d.ts +3 -1
- package/dist/module/index.d.ts +1 -1
- package/dist/module/index.mjs +14903 -14776
- package/dist/module/index.umd.js +329 -329
- package/femto-config.motly +5 -1
- package/package.json +5 -5
package/femto-config.motly
CHANGED
|
@@ -4,10 +4,14 @@ build: {
|
|
|
4
4
|
"src/**/*.tsx",
|
|
5
5
|
"src/**/*.css",
|
|
6
6
|
"vite.config.mts",
|
|
7
|
-
"tsconfig.json"
|
|
7
|
+
"tsconfig.json",
|
|
8
|
+
"tsconfig.type-check.json"
|
|
8
9
|
]
|
|
9
10
|
outputs = ["dist/module/index.mjs"]
|
|
10
11
|
commands = [
|
|
12
|
+
# vite bundles the renderer but its dts pass only PRINTS type errors (exit 0).
|
|
13
|
+
# Run a real tsc first so a type error fails the build. See tsconfig.type-check.json.
|
|
14
|
+
"npx tsc -p tsconfig.type-check.json",
|
|
11
15
|
"npx vite build --outDir 'dist/module' --config vite.config.mts"
|
|
12
16
|
]
|
|
13
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/render",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.422",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/module/index.umd.js",
|
|
6
6
|
"types": "dist/module/index.d.ts",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"generate-flow": "ts-node ../../scripts/gen-flow.ts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@malloydata/malloy-interfaces": "0.0.
|
|
35
|
-
"@malloydata/malloy-tag": "0.0.
|
|
34
|
+
"@malloydata/malloy-interfaces": "0.0.422",
|
|
35
|
+
"@malloydata/malloy-tag": "0.0.422",
|
|
36
36
|
"@tanstack/solid-virtual": "^3.13.29",
|
|
37
37
|
"lodash": "^4.18.1",
|
|
38
38
|
"luxon": "^3.7.2",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"vega-lite": "^5.2.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@malloydata/db-duckdb": "0.0.
|
|
48
|
-
"@malloydata/malloy": "0.0.
|
|
47
|
+
"@malloydata/db-duckdb": "0.0.422",
|
|
48
|
+
"@malloydata/malloy": "0.0.422",
|
|
49
49
|
"@storybook/addon-essentials": "^8.6.18",
|
|
50
50
|
"@storybook/addon-interactions": "^8.6.18",
|
|
51
51
|
"@storybook/addon-links": "^8.6.15",
|