@vizzly/dashboard 0.14.4-dev-853fa16da5e049a03a787a1aedebe8e5ce756e21 → 0.14.4-dev-ac144c6e109da595b1c8df4be87f046b8be9fe29
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/dashboard/src/types.d.ts +1 -0
- package/dist/dashboard.cjs.development.js +5271 -5266
- package/dist/dashboard.cjs.production.min.js +1 -1
- package/dist/dashboard.esm.js +5271 -5266
- package/dist/services/src/index.d.ts +3 -2
- package/dist/shared-logic/src/Component/types.d.ts +0 -1
- package/dist/shared-logic/src/ComponentInterface/types.d.ts +1 -0
- package/dist/shared-logic/src/CustomView/types.d.ts +2 -5
- package/dist/shared-logic/src/DataSet/DataSet.d.ts +1 -3
- package/dist/shared-logic/src/Drilldown/Drilldown.d.ts +4 -4
- package/dist/shared-logic/src/Query/Query.d.ts +1 -15
- package/dist/shared-logic/src/Result/Result.d.ts +0 -3
- package/dist/shared-logic/src/api/queryEngine/getRunQueriesCallback.d.ts +1 -1
- package/dist/shared-ui/src/components/Component.d.ts +1 -1
- package/dist/shared-ui/src/components/Drilldown/useDrilldownSelection.d.ts +2 -2
- package/dist/shared-ui/src/components/SunburstChart/SunburstChart.d.ts +1 -1
- package/dist/shared-ui/src/components/SunburstChart/SunburstChartView.d.ts +10 -10
- package/dist/shared-ui/src/components/SunburstChart/convertDataToSunburstData.d.ts +5 -5
- package/dist/shared-ui/src/library/DataPanel/FieldCollectorInput.d.ts +6 -6
- package/package.json +2 -2
- package/dist/shared-logic/src/Query/validate.d.ts +0 -13
- package/dist/shared-logic/src/Result/ValidationLogic.d.ts +0 -7
|
@@ -6,6 +6,7 @@ import { QueryEngineEndpoint } from '../../shared-logic/src/QueryEngineConfig/ty
|
|
|
6
6
|
import { loadDataSetsCallback } from '../../shared-logic/src/Callbacks/types';
|
|
7
7
|
import { EditorBehaviour } from '../../shared-ui/src/components/Editor/types';
|
|
8
8
|
import { VariablesCallback } from '../../shared-logic/src/Variables/types';
|
|
9
|
+
export type { FilterConfig } from '../../shared-logic/src/AdditionalFilter/types';
|
|
9
10
|
export declare type SharedEditorProps = {
|
|
10
11
|
/**
|
|
11
12
|
* Optionally, return the `Component` that will be rendered in the Editor.
|