-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from rpbouman/dev
Upgrade DuckDB WASM, column width feature
- Loading branch information
Showing
5 changed files
with
101 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
font-style: normal; | ||
font-weight: 400; | ||
font-display: block; | ||
src: url("https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@2.47.0/fonts/tabler-icons.woff2?v2.47.0") format("woff2"); | ||
src: url("https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.2.0/dist/fonts/tabler-icons.woff2?v3.2.0") format("woff2"); | ||
} | ||
|
||
ul#resources > li::marker { | ||
|
@@ -689,12 +689,34 @@ <h3 id="settingsDialogTitle">Settings</h3> | |
<input id="querySettingsTab" type="radio" name="settingsTabs"/> | ||
<div role="tabpanel"> | ||
<form id="querySettings"> | ||
<label for="autoRunQuery">Autorun Query</label> | ||
<label | ||
for="autoRunQuery" | ||
title="When enabled the pivot table is updated automatically after modifying the query. When disabled, you have to explicitly hit the execute button." | ||
>Autorun Query</label> | ||
<input id="autoRunQuery" type="checkbox"/> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<!-- | ||
Pivot Table | ||
--> | ||
<div> | ||
<label | ||
role="tab" | ||
for="pivotSettingsTab" | ||
> | ||
Pivot Table | ||
</label> | ||
<input id="pivotSettingsTab" type="radio" name="settingsTabs"/> | ||
<div role="tabpanel"> | ||
<form id="pivotSettings"> | ||
<label for="maxCellWidth">Max cellwidth (ch)</label> | ||
<input id="maxCellWidth" type="number" min="1" max="256" value="30"/> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<!-- | ||
Theme | ||
--> | ||
|
@@ -778,10 +800,10 @@ <h3 id="aboutDialogTitle">About Huey...</h3> | |
A DuckDB User Interface | ||
</p> | ||
<ul> | ||
<li>Huey version 0.0.3 - tiny ripple</li> | ||
<li>Huey version 0.0.4 - tricky duckling</li> | ||
<li><a href="https://duckdb.org/" target="_duckdb" id="duckdbVersionLabel"></a></li> | ||
<li><a href="https://www.jsdelivr.com/package/npm/@duckdb/duckdb-wasm?version=1.28.1-dev179.0" target="jsdelivr">DuckDB WASM 1.28.1-dev179.0</a></li> | ||
<li><a href="https://tabler.io/icons" target="_tabler-icons">Tabler Icons v2.47.0</a></li> | ||
<li><a href="https://www.jsdelivr.com/package/npm/@duckdb/duckdb-wasm?version=1.28.1-dev181.0" target="jsdelivr">DuckDB WASM 1.28.1-dev181.0</a></li> | ||
<li><a href="https://tabler.io/icons" target="_tabler-icons">Tabler Icons v3.2.0</a></li> | ||
<li><a href="https://github.com/rpbouman/huey/" target="_github">Huey Source on Github</a></li> | ||
<li><a href="https://raw.githubusercontent.com/rpbouman/huey/dev/LICENSE" target="_github">License (MIT)</a></li> | ||
</ul> | ||
|
@@ -1061,7 +1083,7 @@ <h1>Axis Caption</h1> | |
|
||
<script onload="resourceLoaded(this)" src="App/App.js"></script> | ||
<script type="module"> | ||
import * as duckdb from 'https://cdn.jsdelivr.net/npm/@duckdb/[email protected]dev179.0/+esm'; | ||
import * as duckdb from 'https://cdn.jsdelivr.net/npm/@duckdb/[email protected]dev181.0/+esm'; | ||
|
||
const JSDELIVR_BUNDLES = duckdb.getJsDelivrBundles(); | ||
const bundle = await duckdb.selectBundle(JSDELIVR_BUNDLES); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters