@vizzly/dashboard 0.14.4-dev-638c4c213227d29bb6a665fc62b13368e8b8bc5b → 0.14.4-dev-ccfbdccebc45fb0361ebf39ecb0ab567ca7a1067
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 +1027 -1055
- package/dist/dashboard.cjs.production.min.js +1 -1
- package/dist/dashboard.esm.js +1027 -1055
- package/dist/services/src/index.d.ts +3 -2
- 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/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/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.
|