@malloydata/malloy-explorer 0.0.257-dev250417005958 → 0.0.264-dev250417011542

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.
@@ -6,4 +6,4 @@ export interface LiteralValueEditorProps {
6
6
  setValue: (value: RawLiteralValue) => void;
7
7
  customStyle?: StyleXStyles;
8
8
  }
9
- export declare function LiteralValueEditor({ value, setValue, customStyle, }: LiteralValueEditorProps): import("react/jsx-runtime").JSX.Element | null;
9
+ export declare function LiteralValueEditor({ value, setValue, customStyle, }: LiteralValueEditorProps): import("react/jsx-runtime").JSX.Element | null | undefined;
@@ -1,7 +1,7 @@
1
1
  import * as Malloy from '@malloydata/malloy-interfaces';
2
- import { AtomicTypeType } from '@malloydata/malloy-interfaces';
2
+ import { AtomicTypeType, ParameterTypeType } from '@malloydata/malloy-interfaces';
3
3
  import { IconType } from '../primitives';
4
- export declare function atomicTypeToIcon(type: AtomicTypeType): IconType;
4
+ export declare function atomicTypeToIcon(type: AtomicTypeType | ParameterTypeType): IconType;
5
5
  export declare function fieldKindToColor(kind: 'dimension' | 'measure' | 'join' | 'view'): "purple" | "green" | "cyan" | undefined;
6
6
  export declare function fieldToIcon(field: Malloy.FieldInfo): IconType;
7
7
  export declare function relationshipToIcon(relationship: Malloy.Relationship): IconType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy-explorer",
3
- "version": "0.0.257-dev250417005958",
3
+ "version": "0.0.264-dev250417011542",
4
4
  "description": "Malloy visual query builder",
5
5
  "main": "dist/cjs/index.cjs",
6
6
  "types": "dist/types/index.d.ts",
@@ -25,8 +25,8 @@
25
25
  "dev": "vite",
26
26
  "preview": "vite preview",
27
27
  "lint": "tsc --noEmit && eslint .",
28
- "malloy-update-next": "npm install --no-fund --no-audit --save-exact $(./scripts/malloy-packages.ts next)",
29
- "malloy-update": "npm install --no-fund --no-audit --save-exact $(./scripts/malloy-packages.ts latest)",
28
+ "malloy-update-next": "npm install --no-fund --no-audit $(./scripts/malloy-packages.ts next)",
29
+ "malloy-update": "npm install --no-fund --no-audit $(./scripts/malloy-packages.ts latest)",
30
30
  "malloy-link": "npm --no-fund --no-audit link $(./scripts/malloy-packages.ts)",
31
31
  "malloy-unlink": "npm --no-fund --no-save --no-audit unlink $(./scripts/malloy-packages.ts) && npm --no-fund --no-audit install --force",
32
32
  "malloy-build-and-link": "cd ../malloy && npm run -ws build --workspace=@malloydata/malloy-query-builder --workspace=@malloydata/malloy-filter --workspace=@malloydata/malloy-interfaces --workspace=@malloydata/malloy-tag && npm link -ws",
@@ -98,11 +98,11 @@
98
98
  "vite-plugin-svgr": "^4.3.0"
99
99
  },
100
100
  "peerDependencies": {
101
- "@malloydata/malloy-filter": "0.0.261",
102
- "@malloydata/malloy-interfaces": "0.0.261",
103
- "@malloydata/malloy-query-builder": "0.0.261",
104
- "@malloydata/malloy-tag": "0.0.261",
105
- "@malloydata/render": "0.0.261",
101
+ "@malloydata/malloy-filter": ">=0.0.264",
102
+ "@malloydata/malloy-interfaces": ">=0.0.264",
103
+ "@malloydata/malloy-query-builder": ">=0.0.264",
104
+ "@malloydata/malloy-tag": ">=0.0.264",
105
+ "@malloydata/render": ">=0.0.264",
106
106
  "react": ">= 19.0.0",
107
107
  "react-dom": ">= 19.0.0"
108
108
  }