@malloydata/render 0.0.417 → 0.0.419
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/.storybook/main.ts +14 -0
- package/dist/module/component/tag-configs.d.ts +15 -0
- package/dist/module/data_tree/fields/base.d.ts +11 -0
- package/dist/module/index.mjs +18177 -17805
- package/dist/module/index.umd.js +565 -345
- package/dist/module/plugins/big-value/big-value-component.d.ts +7 -0
- package/package.json +7 -5
|
@@ -16,6 +16,13 @@ export interface BigValueComponentProps {
|
|
|
16
16
|
settings: BigValueSettings;
|
|
17
17
|
/** Pre-resolved tag data for all child fields */
|
|
18
18
|
tagConfig: BigValueTagConfig;
|
|
19
|
+
/**
|
|
20
|
+
* Embedded/flattened mode: the host (e.g. a dashboard) supplies its own
|
|
21
|
+
* card chrome, so big-value drops its border, shadow and padding and
|
|
22
|
+
* centers its content. The host opts in via customProps; big-value owns
|
|
23
|
+
* the resulting styling so the host never reaches into its internals.
|
|
24
|
+
*/
|
|
25
|
+
embedded?: boolean;
|
|
19
26
|
}
|
|
20
27
|
/**
|
|
21
28
|
* Main Big Value component
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/render",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.419",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/module/index.umd.js",
|
|
6
6
|
"types": "dist/module/index.d.ts",
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
17
|
"types": "./dist/module/index.d.ts",
|
|
18
|
+
"import": "./dist/module/index.mjs",
|
|
19
|
+
"require": "./dist/module/index.umd.js",
|
|
18
20
|
"default": "./dist/module/index.umd.js"
|
|
19
21
|
}
|
|
20
22
|
},
|
|
@@ -29,8 +31,8 @@
|
|
|
29
31
|
"generate-flow": "ts-node ../../scripts/gen-flow.ts"
|
|
30
32
|
},
|
|
31
33
|
"dependencies": {
|
|
32
|
-
"@malloydata/malloy-interfaces": "0.0.
|
|
33
|
-
"@malloydata/malloy-tag": "0.0.
|
|
34
|
+
"@malloydata/malloy-interfaces": "0.0.419",
|
|
35
|
+
"@malloydata/malloy-tag": "0.0.419",
|
|
34
36
|
"@tanstack/solid-virtual": "^3.13.29",
|
|
35
37
|
"lodash": "^4.18.1",
|
|
36
38
|
"luxon": "^3.7.2",
|
|
@@ -42,8 +44,8 @@
|
|
|
42
44
|
"vega-lite": "^5.2.0"
|
|
43
45
|
},
|
|
44
46
|
"devDependencies": {
|
|
45
|
-
"@malloydata/db-duckdb": "0.0.
|
|
46
|
-
"@malloydata/malloy": "0.0.
|
|
47
|
+
"@malloydata/db-duckdb": "0.0.419",
|
|
48
|
+
"@malloydata/malloy": "0.0.419",
|
|
47
49
|
"@storybook/addon-essentials": "^8.6.18",
|
|
48
50
|
"@storybook/addon-interactions": "^8.6.18",
|
|
49
51
|
"@storybook/addon-links": "^8.6.15",
|