@malloydata/render 0.0.417 → 0.0.418

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.
@@ -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.417",
3
+ "version": "0.0.418",
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.417",
33
- "@malloydata/malloy-tag": "0.0.417",
34
+ "@malloydata/malloy-interfaces": "0.0.418",
35
+ "@malloydata/malloy-tag": "0.0.418",
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.417",
46
- "@malloydata/malloy": "0.0.417",
47
+ "@malloydata/db-duckdb": "0.0.418",
48
+ "@malloydata/malloy": "0.0.418",
47
49
  "@storybook/addon-essentials": "^8.6.18",
48
50
  "@storybook/addon-interactions": "^8.6.18",
49
51
  "@storybook/addon-links": "^8.6.15",