@malloydata/render 0.0.369 → 0.0.370

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.
@@ -10,6 +10,7 @@ export declare class RenderFieldMetadata {
10
10
  private onPluginCreateError?;
11
11
  private registry;
12
12
  private rootField;
13
+ private warnedLegacyDeclaredPathPlugins;
13
14
  readonly logCollector: RenderLogCollector;
14
15
  constructor(result: Malloy.Result, pluginRegistry?: RenderPluginFactory[], pluginOptions?: Record<string, unknown>, onPluginCreateError?: OnPluginCreateError | undefined, logCollector?: RenderLogCollector);
15
16
  private instantiatePluginsForField;
@@ -25,13 +26,12 @@ export declare class RenderFieldMetadata {
25
26
  */
26
27
  private validateFieldTags;
27
28
  /**
28
- * Mark tag paths declared by plugins as read.
29
- * This prevents false-positive "unknown tag" warnings for tags that
30
- * are consumed at render time or interaction time but may not have
31
- * been read yet (e.g. virtualized charts, hover tooltips).
29
+ * Mark renderer-owned tag paths as read.
32
30
  *
33
- * Built-in renderer tags are now handled by resolveBuiltInTags()
34
- * which reads all tags at setup time via typed config resolvers.
31
+ * This is ownership bookkeeping, not config resolution. A renderer may
32
+ * still read tags at setup time or render time, but unread-tag warnings
33
+ * are suppressed based on semantic ownership declared via
34
+ * RendererValidationSpec.
35
35
  */
36
- private markDeclaredTags;
36
+ private markOwnedTagPaths;
37
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/render",
3
- "version": "0.0.369",
3
+ "version": "0.0.370",
4
4
  "license": "MIT",
5
5
  "main": "dist/module/index.umd.js",
6
6
  "types": "dist/module/index.d.ts",
@@ -29,8 +29,8 @@
29
29
  "generate-flow": "ts-node ../../scripts/gen-flow.ts"
30
30
  },
31
31
  "dependencies": {
32
- "@malloydata/malloy-interfaces": "0.0.369",
33
- "@malloydata/malloy-tag": "0.0.369",
32
+ "@malloydata/malloy-interfaces": "0.0.370",
33
+ "@malloydata/malloy-tag": "0.0.370",
34
34
  "@tanstack/solid-virtual": "^3.10.4",
35
35
  "lodash": "^4.17.20",
36
36
  "luxon": "^3.5.0",
@@ -42,8 +42,8 @@
42
42
  "vega-lite": "^5.2.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@malloydata/db-duckdb": "0.0.369",
46
- "@malloydata/malloy": "0.0.369",
45
+ "@malloydata/db-duckdb": "0.0.370",
46
+ "@malloydata/malloy": "0.0.370",
47
47
  "@storybook/addon-essentials": "^8.6.15",
48
48
  "@storybook/addon-interactions": "^8.6.15",
49
49
  "@storybook/addon-links": "^8.6.15",