@malloydata/render 0.0.369 → 0.0.371
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/plugin-types.d.ts +32 -5
- package/dist/module/component/renderer-validation-specs.d.ts +2 -0
- package/dist/module/component/tag-configs.d.ts +1 -1
- package/dist/module/index.mjs +6661 -6594
- package/dist/module/index.umd.js +42 -42
- package/dist/module/render-field-metadata.d.ts +7 -7
- package/package.json +5 -5
|
@@ -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
|
|
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
|
-
*
|
|
34
|
-
*
|
|
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
|
|
36
|
+
private markOwnedTagPaths;
|
|
37
37
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/render",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.371",
|
|
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.
|
|
33
|
-
"@malloydata/malloy-tag": "0.0.
|
|
32
|
+
"@malloydata/malloy-interfaces": "0.0.371",
|
|
33
|
+
"@malloydata/malloy-tag": "0.0.371",
|
|
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.
|
|
46
|
-
"@malloydata/malloy": "0.0.
|
|
45
|
+
"@malloydata/db-duckdb": "0.0.371",
|
|
46
|
+
"@malloydata/malloy": "0.0.371",
|
|
47
47
|
"@storybook/addon-essentials": "^8.6.15",
|
|
48
48
|
"@storybook/addon-interactions": "^8.6.15",
|
|
49
49
|
"@storybook/addon-links": "^8.6.15",
|