@malloydata/malloy-explorer 0.0.285-dev250530164457 → 0.0.285-dev250610181307

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.
@@ -336,6 +336,7 @@ html[dir='rtl'] .mly17fq3gk{box-shadow:0 2px 12px 0 rgba(0,0,0,.1), 0 1px 2px 0
336
336
  .mly1so62im{will-change:transform}
337
337
  .mly1vvkbs{word-wrap:break-word}
338
338
  .mly35i7{writing-mode:sideways-lr}
339
+ .mly1ja2u2z{z-index:0}
339
340
  .mly1vjfegm{z-index:1}
340
341
  .mly11uqc5h{z-index:100}
341
342
  .mlyhtitgo{z-index:2}
@@ -462,36 +463,3 @@ html[dir='rtl'] .mly17fq3gk{box-shadow:0 2px 12px 0 rgba(0,0,0,.1), 0 1px 2px 0
462
463
  div[data-radix-popper-content-wrapper] {
463
464
  z-index: 100 !important;
464
465
  }
465
- .malloy-render_result-wrapper malloy-render::part(table-container) {
466
- width: 100%;
467
- }
468
-
469
- .malloy-render_result-wrapper {
470
- height: 100%;
471
- position: 'relative';
472
- z-index: 0;
473
- overflow: hidden;
474
- }
475
-
476
- .malloy-tooltip {
477
- background: rgba(255, 255, 255, 0.95);
478
- padding: 8px;
479
- border-radius: 4px;
480
- box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
481
- height: fit-content;
482
- width: fit-content;
483
- transform: translate(10px, 10px);
484
- }
485
-
486
- .malloy-tooltip--table {
487
- th,
488
- td {
489
- text-wrap: nowrap;
490
- }
491
-
492
- th {
493
- text-align: left;
494
- }
495
-
496
- font-size: 12px;
497
- }
@@ -1,13 +1,5 @@
1
1
  import * as Malloy from '@malloydata/malloy-interfaces';
2
2
  import { SubmittedQuery } from './SubmittedQuery';
3
- import './result_display.css';
4
- import '@malloydata/render/webcomponent';
5
- import type { MalloyRenderProps } from '@malloydata/render';
6
- declare global {
7
- interface HTMLElementTagNameMap {
8
- 'malloy-render': HTMLElement & MalloyRenderProps;
9
- }
10
- }
11
3
  export interface DrillData {
12
4
  stableQuery: Malloy.Query | undefined;
13
5
  stableDrillClauses: Malloy.DrillOperation[] | undefined;
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
2
  import { TemporalFilter, TemporalUnit } from '@malloydata/malloy-filter';
3
3
  type TemporalFilterOperator = TemporalFilter['operator'];
4
- type TemporalFilterType = TemporalFilterOperator | '-null';
4
+ type TemporalFilterType = TemporalFilterOperator | '-null' | 'not_before';
5
5
  export interface DateTimeFilterCoreProps {
6
6
  filter: TemporalFilter | null;
7
7
  setFilter: (filter: TemporalFilter) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy-explorer",
3
- "version": "0.0.285-dev250530164457",
3
+ "version": "0.0.285-dev250610181307",
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.285",
117
- "@malloydata/malloy-interfaces": ">= 0.0.285",
118
- "@malloydata/malloy-query-builder": ">= 0.0.285",
119
- "@malloydata/malloy-tag": ">= 0.0.285",
120
- "@malloydata/render": ">= 0.0.285",
116
+ "@malloydata/malloy-filter": ">= 0.0.290",
117
+ "@malloydata/malloy-interfaces": ">= 0.0.290",
118
+ "@malloydata/malloy-query-builder": ">= 0.0.290",
119
+ "@malloydata/malloy-tag": ">= 0.0.290",
120
+ "@malloydata/render": ">= 0.0.290",
121
121
  "react": ">= 19.0.0",
122
122
  "react-dom": ">= 19.0.0"
123
123
  }
package/vite.config.mts CHANGED
@@ -38,7 +38,6 @@ export default defineConfig({
38
38
  '@malloydata/malloy-interfaces',
39
39
  '@malloydata/malloy-query-builder',
40
40
  '@malloydata/render',
41
- '@malloydata/render/webcomponent',
42
41
  ],
43
42
  output: {
44
43
  manualChunks: _id => {
@@ -60,7 +59,6 @@ export default defineConfig({
60
59
  '@malloydata/malloy-filter',
61
60
  '@malloydata/malloy-interfaces',
62
61
  '@malloydata/malloy-query-builder',
63
- '@malloydata/render/webcomponent',
64
62
  ],
65
63
  },
66
64
  });