This is an automated email from the ASF dual-hosted git repository.

dependabot[bot] pushed a change to branch 
dependabot/npm_and_yarn/frontend/axios-1.18.0
in repository https://gitbox.apache.org/repos/asf/tsfile-viewer.git


    omit a3f3310  build(deps): bump axios from 1.15.1 to 1.18.0 in /frontend
     add eb66e9e  fix: data preview pagination, fixed columns and sidebar 
sizing (#33)
     add e84be30  build(deps): bump axios from 1.15.1 to 1.18.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   (a3f3310)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/frontend/axios-1.18.0 (e84be30)

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 +-
 frontend/.gitignore                                |    3 +
 frontend/index.html                                |    3 +-
 frontend/package-lock.json                         | 3306 +++++++++-----------
 frontend/package.json                              |   17 +-
 frontend/pnpm-lock.yaml                            | 2225 ++++++-------
 .../{src/api/tsfile/index.ts => postcss.config.js} |   12 +-
 frontend/public/tsfile_logo.svg                    |   22 +
 frontend/src/App.vue                               |   88 +-
 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       |  505 +--
 frontend/src/components/tsfile/FileTree.vue        |  383 ++-
 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               |   13 +-
 frontend/src/i18n/locales/zh-CN.json               |   13 +-
 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/tableStyle.ts                   |   58 +
 frontend/src/views/tsfile/chart/index.vue          |   39 +-
 frontend/src/views/tsfile/data-preview/index.vue   |   55 +-
 frontend/src/views/tsfile/file-selection/index.vue |    4 +-
 frontend/src/views/tsfile/metadata/index.vue       |   83 +-
 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 +-
 55 files changed, 5446 insertions(+), 5052 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/tableStyle.ts
 create mode 100644 frontend/tailwind.config.js
 delete mode 100644 frontend/uno.config.ts

Reply via email to