This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/frontend/echarts-6.1.0
in repository https://gitbox.apache.org/repos/asf/tsfile-viewer.git
omit b8f564f build(deps): bump echarts from 6.0.0 to 6.1.0 in /frontend
add 1a14814 fix: correct table column alignment and non-millisecond
timestamp formatting (#27)
add 7c8fe2f fix: data preview table body overlapping pagination on load
(#28)
add 5474759 fix: data preview table body overlapping pagination on load
(#29)
add eb66e9e fix: data preview pagination, fixed columns and sidebar
sizing (#33)
add 0ebcba6 build(deps): bump echarts from 6.0.0 to 6.1.0 in /frontend
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b8f564f)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/frontend/echarts-6.1.0 (0ebcba6)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../tsfile/viewer/dto/DataPreviewResponse.java | 8 +
.../apache/tsfile/viewer/service/DataService.java | 23 +-
.../apache/tsfile/viewer/service/FileService.java | 9 +-
frontend/.gitignore | 3 +
frontend/index.html | 3 +-
frontend/package-lock.json | 3306 +++++++++-----------
frontend/package.json | 17 +-
frontend/pnpm-lock.yaml | 2355 ++++++--------
.../{src/api/tsfile/index.ts => postcss.config.js} | 12 +-
frontend/public/tsfile_logo.svg | 22 +
frontend/src/App.vue | 88 +-
frontend/src/api/tsfile/data.ts | 24 +-
frontend/src/api/tsfile/types.ts | 5 +
frontend/src/components/layout/AppSidebar.vue | 252 ++
.../src/components/layout/FullscreenToggle.vue | 29 +-
frontend/src/components/layout/LanguageToggle.vue | 58 +-
frontend/src/components/layout/LayoutHeader.vue | 79 -
.../layout/{RefreshButton.vue => PageHeader.vue} | 39 +-
frontend/src/components/layout/RefreshButton.vue | 25 +-
frontend/src/components/layout/ThemeToggle.vue | 79 +-
.../src/components/layout/TimezoneSelector.vue | 66 +-
.../src/components/tsfile/AdvancedFilterDialog.vue | 103 +-
frontend/src/components/tsfile/ChartPanel.vue | 56 +-
frontend/src/components/tsfile/DataTable.vue | 509 +--
frontend/src/components/tsfile/FileTree.vue | 376 ++-
frontend/src/components/tsfile/FileUpload.vue | 118 +-
.../src/components/tsfile/MeasurementsTable.vue | 191 +-
frontend/src/components/tsfile/MetaCards.vue | 49 +-
frontend/src/components/tsfile/RecentFiles.vue | 109 +-
frontend/src/components/tsfile/RowGroupsTable.vue | 138 +-
frontend/src/components/tsfile/ScanChart.vue | 46 +-
frontend/src/components/tsfile/ScanLogPanel.vue | 33 +-
frontend/src/components/tsfile/ScanProgress.vue | 23 +-
frontend/src/components/tsfile/ScanReport.vue | 205 +-
.../src/components/tsfile/TableFilterPanel.vue | 140 +-
frontend/src/components/tsfile/TablesTable.vue | 365 ++-
frontend/src/components/tsfile/TreeFilterPanel.vue | 97 +-
frontend/src/composables/useTheme.ts | 29 +-
frontend/src/i18n/locales/en-US.json | 17 +-
frontend/src/i18n/locales/zh-CN.json | 17 +-
frontend/src/main.ts | 15 +-
frontend/src/styles/element/index.scss | 63 +
frontend/src/styles/index.css | 406 +++
frontend/src/styles/tokens.css | 98 +
frontend/src/theme/charts.ts | 122 +
frontend/src/theme/stripe.css | 125 -
frontend/src/theme/stripeTheme.ts | 166 -
.../src/utils/dataTypeTag.ts | 26 +-
frontend/src/utils/fileId.ts | 50 +
frontend/src/utils/tableStyle.ts | 58 +
frontend/src/utils/timestamp.ts | 48 +
frontend/src/views/tsfile/chart/index.vue | 44 +-
frontend/src/views/tsfile/data-preview/index.vue | 63 +-
frontend/src/views/tsfile/file-selection/index.vue | 4 +-
frontend/src/views/tsfile/metadata/index.vue | 88 +-
frontend/src/views/tsfile/scan/index.vue | 112 +-
frontend/tailwind.config.js | 68 +
frontend/tsconfig.node.json | 5 +-
frontend/uno.config.ts | 32 -
frontend/vite.config.ts | 71 +-
60 files changed, 5776 insertions(+), 5011 deletions(-)
copy frontend/{src/api/tsfile/index.ts => postcss.config.js} (80%)
create mode 100644 frontend/public/tsfile_logo.svg
create mode 100644 frontend/src/components/layout/AppSidebar.vue
delete mode 100644 frontend/src/components/layout/LayoutHeader.vue
copy frontend/src/components/layout/{RefreshButton.vue => PageHeader.vue} (53%)
create mode 100644 frontend/src/styles/element/index.scss
create mode 100644 frontend/src/styles/index.css
create mode 100644 frontend/src/styles/tokens.css
create mode 100644 frontend/src/theme/charts.ts
delete mode 100644 frontend/src/theme/stripe.css
delete mode 100644 frontend/src/theme/stripeTheme.ts
copy backend/src/main/java/org/apache/tsfile/viewer/dto/FileScanRequest.java
=> frontend/src/utils/dataTypeTag.ts (52%)
create mode 100644 frontend/src/utils/fileId.ts
create mode 100644 frontend/src/utils/tableStyle.ts
create mode 100644 frontend/src/utils/timestamp.ts
create mode 100644 frontend/tailwind.config.js
delete mode 100644 frontend/uno.config.ts