@malloydata/render 0.0.293 → 0.0.294
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/malloy-stories-indexer.ts +20 -7
- package/README.md +8 -0
- package/dist/module/api/json-schema-types.d.ts +36 -0
- package/dist/{api → module/api}/malloy-renderer.d.ts +4 -1
- package/dist/{api → module/api}/malloy-viz.d.ts +6 -3
- package/dist/module/api/plugin-types.d.ts +42 -0
- package/dist/{api → module/api}/types.d.ts +5 -2
- package/dist/module/component/bar-chart/generate-bar_chart-vega-spec.d.ts +4 -0
- package/dist/{component → module/component}/bar-chart/get-bar_chart-settings.d.ts +3 -3
- package/dist/{component → module/component}/bar-chart/get-custom-tooltips-entries.d.ts +2 -2
- package/dist/{component → module/component}/chart/chart-dev-tool.d.ts +2 -2
- package/dist/{component → module/component/chart}/chart-layout-settings.d.ts +4 -4
- package/dist/module/component/chart/chart-v2.d.ts +23 -0
- package/dist/{component → module/component}/chart/chart.d.ts +3 -3
- package/dist/{component → module/component}/chart/default-chart-tooltip.d.ts +1 -1
- package/dist/{component → module/component}/dashboard/dashboard.d.ts +1 -1
- package/dist/{component → module/component}/legacy-charts/legacy_chart.d.ts +1 -1
- package/dist/{component → module/component}/malloy-modal/malloy-modal.d.ts +1 -1
- package/dist/{component → module/component}/render-image.d.ts +1 -1
- package/dist/{component → module/component}/render-link.d.ts +1 -1
- package/dist/{component → module/component}/render-list.d.ts +1 -1
- package/dist/{component → module/component}/render-numeric-field.d.ts +1 -1
- package/dist/{component → module/component}/render-result-metadata.d.ts +9 -6
- package/dist/{component → module/component}/render-time.d.ts +1 -1
- package/dist/{component → module/component}/render.d.ts +5 -2
- package/dist/{component → module/component/renderer}/apply-renderer.d.ts +1 -1
- package/dist/module/component/renderer/plugin-render-container.d.ts +8 -0
- package/dist/module/component/result-context.d.ts +4 -0
- package/dist/{component → module/component}/result-store/result-store.d.ts +3 -3
- package/dist/{component → module/component}/table/table-context.d.ts +3 -4
- package/dist/{component → module/component}/table/table-layout.d.ts +2 -2
- package/dist/{component → module/component}/table/table.d.ts +2 -2
- package/dist/{component → module/component}/tag-utils.d.ts +1 -1
- package/dist/{component → module/component}/tooltip/tooltip.d.ts +1 -1
- package/dist/{component → module/component}/types.d.ts +13 -4
- package/dist/{component → module/component}/util.d.ts +1 -1
- package/dist/{component → module/component}/vega/base-vega-config.d.ts +1 -1
- package/dist/{component → module/component}/vega/measure-axis.d.ts +2 -2
- package/dist/{component → module/component}/vega/vega-chart.d.ts +2 -4
- package/dist/{component → module/component}/vega/vega-utils.d.ts +1 -1
- package/dist/{component → module/component}/vega-types.d.ts +2 -2
- package/dist/{data_tree → module/data_tree}/cells/atomic.d.ts +3 -3
- package/dist/{data_tree → module/data_tree}/cells/base.d.ts +3 -4
- package/dist/{data_tree → module/data_tree}/cells/index.d.ts +2 -2
- package/dist/{data_tree → module/data_tree}/cells/nest.d.ts +9 -12
- package/dist/{data_tree → module/data_tree}/drilling.d.ts +2 -2
- package/dist/{data_tree → module/data_tree}/fields/atomic.d.ts +12 -12
- package/dist/{data_tree → module/data_tree}/fields/base.d.ts +9 -13
- package/dist/{data_tree → module/data_tree}/fields/index.d.ts +3 -4
- package/dist/{data_tree → module/data_tree}/fields/nest.d.ts +9 -11
- package/dist/{data_tree → module/data_tree}/index.d.ts +3 -4
- package/dist/{data_tree → module/data_tree}/types.d.ts +2 -7
- package/dist/{data_tree → module/data_tree}/utils.d.ts +8 -5
- package/dist/{html → module/html}/area_sparkline.d.ts +5 -5
- package/dist/{html → module/html}/bar_chart.d.ts +4 -4
- package/dist/{html → module/html}/bar_sparkline.d.ts +5 -5
- package/dist/{html → module/html}/boolean.d.ts +4 -4
- package/dist/{html → module/html}/bytes.d.ts +4 -4
- package/dist/{html → module/html}/cartesian_chart.d.ts +2 -2
- package/dist/{html → module/html}/chart.d.ts +4 -4
- package/dist/{html → module/html}/column_sparkline.d.ts +5 -5
- package/dist/{html → module/html}/container.d.ts +5 -6
- package/dist/{html → module/html}/currency.d.ts +4 -4
- package/dist/{html → module/html}/dashboard.d.ts +2 -2
- package/dist/{html → module/html}/data_styles.d.ts +1 -1
- package/dist/{html → module/html}/data_volume.d.ts +4 -4
- package/dist/{html → module/html}/date.d.ts +4 -4
- package/dist/{html → module/html}/duration.d.ts +4 -5
- package/dist/{html → module/html}/html_view.d.ts +5 -5
- package/dist/{html → module/html}/image.d.ts +4 -4
- package/dist/{html → module/html}/json.d.ts +4 -4
- package/dist/{html → module/html}/line_chart.d.ts +4 -4
- package/dist/{html → module/html}/link.d.ts +4 -4
- package/dist/{html → module/html}/list.d.ts +2 -2
- package/dist/{html → module/html}/list_detail.d.ts +1 -1
- package/dist/{html → module/html}/main_renderer_factory.d.ts +6 -6
- package/dist/{html → module/html}/number.d.ts +4 -4
- package/dist/{html → module/html}/percent.d.ts +4 -4
- package/dist/{html → module/html}/point_map.d.ts +5 -5
- package/dist/{html → module/html}/renderer.d.ts +3 -3
- package/dist/{html → module/html}/renderer_factory.d.ts +5 -5
- package/dist/{html → module/html}/renderer_types.d.ts +2 -2
- package/dist/{html → module/html}/scatter_chart.d.ts +4 -4
- package/dist/{html → module/html}/segment_map.d.ts +5 -5
- package/dist/{html → module/html}/shape_map.d.ts +5 -5
- package/dist/{html → module/html}/sparkline.d.ts +5 -5
- package/dist/{html → module/html}/table.d.ts +3 -3
- package/dist/{html → module/html}/text.d.ts +4 -4
- package/dist/{html → module/html}/unsupported.d.ts +4 -4
- package/dist/{html → module/html}/utils.d.ts +3 -3
- package/dist/{html → module/html}/vega_spec.d.ts +5 -5
- package/dist/module/index.d.ts +11 -0
- package/dist/module/index.mjs +34397 -32554
- package/dist/module/index.umd.js +423 -401
- package/dist/module/plugins/bar-chart/bar-chart-plugin.d.ts +14 -0
- package/dist/module/plugins/bar-chart/bar-chart-settings.d.ts +49 -0
- package/dist/module/plugins/bar-chart/generate-bar_chart-vega-spec.d.ts +4 -0
- package/dist/module/plugins/bar-chart/get-bar_chart-settings.d.ts +5 -0
- package/dist/module/plugins/bar-chart/settings-to-tag.d.ts +3 -0
- package/dist/module/plugins/dummy-dom-plugin.d.ts +8 -0
- package/dist/module/plugins/dummy-plugin.d.ts +8 -0
- package/dist/module/plugins/index.d.ts +3 -0
- package/dist/module/plugins/line-chart/generate-line_chart-vega-spec.d.ts +17 -0
- package/dist/module/plugins/line-chart/get-line_chart-settings.d.ts +5 -0
- package/dist/module/plugins/line-chart/line-chart-plugin.d.ts +21 -0
- package/dist/module/plugins/line-chart/line-chart-settings.d.ts +52 -0
- package/dist/module/plugins/line-chart/settings-to-tag.d.ts +3 -0
- package/dist/module/registry/types.d.ts +15 -0
- package/dist/module/render-field-metadata.d.ts +18 -0
- package/dist/{stories → module/stories}/themes.stories.d.ts +1 -2
- package/dist/{stories → module/stories}/util.d.ts +4 -4
- package/dist/{stories → module/stories}/vega-config-override.stories.d.ts +1 -2
- package/dist/module/stories/wrapped-table.stories.d.ts +9 -0
- package/dist/{util.d.ts → module/util.d.ts} +11 -4
- package/package.json +10 -10
- package/{vite.config.base.ts → vite.config.base.mts} +11 -1
- package/{vite.config.ts → vite.config.mts} +1 -1
- package/dist/component/bar-chart/generate-bar_chart-vega-spec.d.ts +0 -4
- package/dist/component/line-chart/generate-line_chart-vega-spec.d.ts +0 -4
- package/dist/component/line-chart/get-line_chart-settings.d.ts +0 -11
- package/dist/component/result-context.d.ts +0 -4
- package/dist/data_tree/plugins.d.ts +0 -14
- package/dist/index.d.ts +0 -7
- package/dist/plugins/line-chart-series-plugin.d.ts +0 -7
- package/dist/render-field-metadata.d.ts +0 -33
- /package/dist/{component → module/component}/chart/debug_icon.d.ts +0 -0
- /package/dist/{component → module/component}/default-settings.d.ts +0 -0
- /package/dist/{component → module/component}/error-message/error-message.d.ts +0 -0
- /package/dist/{component → module/component}/vega/merge-vega-configs.d.ts +0 -0
- /package/dist/{component → module/component}/vega/vega-expr-addons.d.ts +0 -0
- /package/dist/{html → module/html}/index.d.ts +0 -0
- /package/dist/{html → module/html}/state_codes.d.ts +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.