@malloydata/malloy-explorer 0.0.282-dev250527225235 → 0.0.284-dev250528183401

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.
@@ -0,0 +1,8 @@
1
+ import * as Malloy from '@malloydata/malloy-interfaces';
2
+ import { StyleXStyles } from '@stylexjs/stylex';
3
+ interface LiteralValueEditorProps {
4
+ value: Malloy.LiteralValue | undefined;
5
+ customStyle?: StyleXStyles;
6
+ }
7
+ export declare function LiteralValue({ value, customStyle }: LiteralValueEditorProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,6 @@
1
+ import { ASTDrillViewOperation, ASTQuery } from '@malloydata/malloy-query-builder';
2
+ export interface DrillOperationsProps {
3
+ rootQuery: ASTQuery;
4
+ drills: ASTDrillViewOperation[];
5
+ }
6
+ export declare function DrillOperations({ drills }: DrillOperationsProps): import("react/jsx-runtime").JSX.Element | null;
@@ -1,13 +1,19 @@
1
+ import * as Malloy from '@malloydata/malloy-interfaces';
1
2
  import { SubmittedQuery } from './SubmittedQuery';
2
3
  import './result_display.css';
3
- import type { MalloyRenderProps } from '@malloydata/render';
4
4
  import '@malloydata/render/webcomponent';
5
+ import type { MalloyRenderProps } from '@malloydata/render';
5
6
  declare global {
6
7
  interface HTMLElementTagNameMap {
7
8
  'malloy-render': HTMLElement & MalloyRenderProps;
8
9
  }
9
10
  }
11
+ export interface DrillData {
12
+ stableQuery: Malloy.Query | undefined;
13
+ stableDrillClauses: Malloy.DrillOperation[] | undefined;
14
+ }
10
15
  export interface ResultDisplayProps {
16
+ source: Malloy.SourceInfo;
11
17
  query: SubmittedQuery;
12
18
  }
13
- export default function ResultDisplay({ query }: ResultDisplayProps): import("react/jsx-runtime").JSX.Element;
19
+ export default function ResultDisplay({ source, query }: ResultDisplayProps): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy-explorer",
3
- "version": "0.0.282-dev250527225235",
3
+ "version": "0.0.284-dev250528183401",
4
4
  "description": "Malloy visual query builder",
5
5
  "main": "dist/cjs/index.cjs",
6
6
  "types": "dist/types/index.d.ts",
@@ -113,11 +113,11 @@
113
113
  "vite-plugin-svgr": "^4.3.0"
114
114
  },
115
115
  "peerDependencies": {
116
- "@malloydata/malloy-filter": ">= 0.0.282",
117
- "@malloydata/malloy-interfaces": ">= 0.0.282",
118
- "@malloydata/malloy-query-builder": ">= 0.0.282",
119
- "@malloydata/malloy-tag": ">= 0.0.282",
120
- "@malloydata/render": ">= 0.0.282",
116
+ "@malloydata/malloy-filter": ">= 0.0.284",
117
+ "@malloydata/malloy-interfaces": ">= 0.0.284",
118
+ "@malloydata/malloy-query-builder": ">= 0.0.284",
119
+ "@malloydata/malloy-tag": ">= 0.0.284",
120
+ "@malloydata/render": ">= 0.0.284",
121
121
  "react": ">= 19.0.0",
122
122
  "react-dom": ">= 19.0.0"
123
123
  }