Skip to content

Commit

Permalink
Replaced the vanilla JavaScript-based UI with React + Replaced Flatpi…
Browse files Browse the repository at this point in the history
…ckr with Air Datepicker + Fixed rendering of bitmap metrics when gaps are present
  • Loading branch information
carlosabalde committed Mar 3, 2025
1 parent 4c92fcc commit 39fbf28
Show file tree
Hide file tree
Showing 13 changed files with 3,654 additions and 824 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
- ?
+ Replaced the vanilla JavaScript-based UI with React.
+ Replaced Flatpickr with Air Datepicker.
+ Fixed rendering of bitmap metrics when gaps are present.
+ Updated dependencies.
* Go
- go-duckdb 1.8.4 ➙ 1.8.5
Expand Down
17 changes: 15 additions & 2 deletions assets/webpack/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,20 @@
"es2021": true
},
"extends": [
"eslint:recommended"
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react",
"react-hooks"
],
"globals": {
"varnishmon": "readonly"
},
Expand All @@ -21,5 +29,10 @@
"no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"eqeqeq": ["error", "smart"],
"curly": ["error", "all"]
},
"settings": {
"react": {
"version": "detect"
}
}
}
Loading

0 comments on commit 39fbf28

Please sign in to comment.