Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Upgrade vue-data-ui from 2.0.54 to 2.2.51 #111

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Anomaly-1
Copy link
Owner

snyk-top-banner

Snyk has created this PR to upgrade vue-data-ui from 2.0.54 to 2.2.51.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 197 versions ahead of your current version.

  • The recommended version was released on 21 days ago.

Release notes
Package name: vue-data-ui
  • 2.2.51 - 2024-08-10

    This release adds slots to customize the user options menu. You can now:

    • choose which buttons to show or hide
    • customize the button contents

    Predefined actions in user options menu depend on the type of chart. Some charts have more or less actions available. Action buttons contain an predefined icons by default.

    To hide a given action, set the userOption.buttons, for example:

    const config = ref({
      userOptions: {
        show: true,
        buttons: {
          img: false,
          csv: false,
          // all other actions will be visible by default (list of all actions below)
        },
      },
    });

    You can use slots to override the content of action buttons.
    What happens when the button is clicked is taken care of by the component, except for the optionFullscreen slot.

    <VueUiDonut :config="config" :dataset="dataset">
    <template #optionPdf> GENERATE PDF </template>

    <!-- This is the only action where scoped content is provided -->
    <template template #optionFullscreen="{ isFullscreen, toggleFullscreen }">
    <div @ click="toggleFullscreen(isFullscreen ? 'out' : 'in')">
    TOGGLE FULLSCREEN
    </div>
    </template>
    </VueUiDonut>

    User options actions available per chart:

    Chart name User options actions slot names
    VueUi3dBar optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiAgePyramid optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiCandlestick optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiChestnut optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiDonut optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen
    VueUiDonutEvolution optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiDumbbell optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiFlow optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiGalaxy optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiGauge optionPdf, optionImg, optionFullscreen
    VueUiHeatmap optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiMolecule optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen
    VueUiMoodRadar optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiNestedDonuts optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen
    VueUiOnion optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiParallelCoordinatePlot optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen
    VueUiQuadrant optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen
    VueUiQuickChart optionPdf, optionImg, optionFullscreen
    VueUiRadar optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiRelationCircle optionPdf, optionImg, optionFullscreen
    VueUiRings optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiScatter optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiSparkHistogram (no user options menu)
    VueUiSparkStackbar (no user options menu)
    VueUiSparkTrend (no user options menu)
    VueUiSparkbar (no user options menu)
    VueUiSparkgauge (no user options menu)
    VueUiSparkline (no user options menu)
    VueUiStripPlot optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen
    VueUiTableHeatmap optionPdf, optionImg, optionCsv, optionFullscreen
    VueUiTableSparkline optionPdf, optionImg, optionCsv, optionFullscreen
    VueUiThermometer optionPdf, optionImg, optionFullscreen
    VueUiTiremarks optionPdf, optionImg, optionFullscreen
    VueUiTreemap optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiVerticalBar optionPdf, optionImg, optionCsv, optionTable, optionSort, optionFullscreen
    VueUiWaffle optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiWheel optionPdf, optionImg, optionFullscreen
    VueUiWordCloud optionPdf, optionImg, optionCsv, optionTable, optionFullscreen
    VueUiXy optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionStack
    VueUiXyCanvas optionPdf, optionImg, optionCsv, optionTable, optionLabels, optionFullscreen, optionStack
  • 2.2.50 - 2024-08-06
    Component Change
    VueUiFlow A skeleton loader is displayed when dataset is not provided
    VueUiParallelCoordinatePlot A skeleton loader is displayed when dataset is not provided
    VueUiSkeleton Added the "flow" and "parallelCoordinatePlot" options
  • 2.2.49 - 2024-08-05

    This technical release improves bundle size.

  • 2.2.48 - 2024-08-04
    1. VueUiParallelCoordinatePlot : improved animations

    2. Added exposed methods to allow full replacement of the default user options menu with your own custom menu.

    Component All Exposed methods
    VueUi3dBar generatePdf, generateImage, toggleTable
    VueUiAgePyramid generatePdf, generateImage, generateCsv, toggleTable
    VueUiCandlestick generatePdf, generateImage, generateCsv, toggleTable
    VueUiChestnut getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiDonut getData, generatePdf, generateImage, generateCsv, toggleTable, toggleLabels
    VueUiDonutEvolution getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiDumbbell getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiFlow getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiGalaxy getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiGauge generatePdf, generateImage
    VueUiHeatmap generatePdf, generateImage, generateCsv, toggleTable
    VueUiMolecule getData, generatePdf, generateImage, generateCsv, toggleTable, toggleLabels
    VueUiMoodRadar getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiNestedDonuts getData, generatePdf, generateImage, generateCsv, toggleTable, toggleLabels
    VueUiOnion getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiParallelCoordinatePlot getData, generatePdf, generateImage, generateCsv, toggleTable, toggleLabels
    VueUiQuadrant getData, generatePdf, generateImage, generateCsv, toggleTable, toggleLabels
    VueUiRadar getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiRings getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiScatter getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiStripPlot getData, generatePdf, generateImage, generateCsv, toggleTable, toggleLabels
    VueUiThermometer generatePdf, generateImage
    VueUiTiremarks generatePdf, generateImage
    VueUiTreemap getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiVerticalBar getData, generatePdf, generateImage, generateCsv, toggleTable, toggleSort
    VueUiWaffle getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiWheel generatePdf, generateImage
    VueUiWordCloud getData, generatePdf, generateImage, generateCsv, toggleTable
    VueUiXy getData, generatePdf, generateImage, generateCsv, toggleTable, toggleLabels, toggleStack
    VueUiXyCanvas getData, generatePdf, generateImage, generateCsv, toggleTable, toggleLabels, toggleStack
  • 2.2.47 - 2024-08-03

    VueUiQuickChart: added animation config options:

    config.barAnimated: boolean; // default: true
    config.lineAnimated: boolean; // default: true

    Animations will run on load.

  • 2.2.46 - 2024-08-02

    VueUiParallelCoordinatePlot: improved @ selectLegend and @ selectDatapoint emits.

  • 2.2.45 - 2024-08-01

    This release adds a new chart component:

    VueUiParallelCoordinatePlot

    A parallel coordinate plot is graphical method where each observation or data point is depicted as a line traversing a series of parallel axes, corresponding to a specific variable or dimension. This arrangement allows for the exploration of relationships, trends, and variations that might be obscured in raw data.

    image

    Check out the docs

  • 2.2.44 - 2024-07-28

    VueUiOnion improvements :

    • Added a config option to control the max thickness of tracks, so the chart does not look weird with a single datapoint:
    config.style.chart.layout.maxThickness // default: 64
    • Added an optional start animation:
    config.useStartAnimation // default: true
  • 2.2.43 - 2024-07-26

    VueUiNestedDonuts : fixed error when unsegregating series

  • 2.2.42 - 2024-07-24

    This release fixes reactivity issues (chart not updating when dataset is mutated) on the following charts:

    • VueUiDonut
    • VueUiNestedDonuts
  • 2.2.41 - 2024-07-23
  • 2.2.40 - 2024-07-22
  • 2.2.39 - 2024-07-19
  • 2.2.38 - 2024-07-15
  • 2.2.37 - 2024-07-15
  • 2.2.36 - 2024-07-15
  • 2.2.35 - 2024-07-09
  • 2.2.34 - 2024-07-09
  • 2.2.33 - 2024-07-09
  • 2.2.32 - 2024-07-09
  • 2.2.31 - 2024-07-08
  • 2.2.30 - 2024-07-07
  • 2.2.29 - 2024-07-07
  • 2.2.28 - 2024-07-06
  • 2.2.27 - 2024-07-06
  • 2.2.26 - 2024-07-04
  • 2.2.25 - 2024-07-03
  • 2.2.24 - 2024-07-03
  • 2.2.23 - 2024-07-02
  • 2.2.22 - 2024-07-02
  • 2.2.21 - 2024-07-02
  • 2.2.20 - 2024-07-02
  • 2.2.19 - 2024-06-28
  • 2.2.18 - 2024-06-25
  • 2.2.17 - 2024-06-11
  • 2.2.16 - 2024-06-10
  • 2.2.15 - 2024-06-09
  • 2.2.14 - 2024-06-09
  • 2.2.13 - 2024-06-09
  • 2.2.12 - 2024-06-09
  • 2.2.11 - 2024-06-08
  • 2.2.10 - 2024-06-08
  • 2.2.9 - 2024-06-06
  • 2.2.8 - 2024-06-04
  • 2.2.7 - 2024-06-04
  • 2.2.6 - 2024-06-04
  • 2.2.5 - 2024-06-03
  • 2.2.4 - 2024-06-03
  • 2.2.3 - 2024-06-03
  • 2.2.2 - 2024-06-02
  • 2.2.1 - 2024-06-02
  • 2.2.0 - 2024-06-01
  • 2.1.99 - 2024-06-01
  • 2.1.98 - 2024-06-01
  • 2.1.97 - 2024-05-31
  • 2.1.96 - 2024-05-31
  • 2.1.95 - 2024-05-30
  • 2.1.94 - 2024-05-30
  • 2.1.93 - 2024-05-30
  • 2.1.92 - 2024-05-27
  • 2.1.91 - 2024-05-27
  • 2.1.90 - 2024-05-26
  • 2.1.89 - 2024-05-24
  • 2.1.88 - 2024-05-24
  • 2.1.87 - 2024-05-24
  • 2.1.86 - 2024-05-23
  • 2.1.85 - 2024-05-23
  • 2.1.84 - 2024-05-23
  • 2.1.83 - 2024-05-23
  • 2.1.82 - 2024-05-23
  • 2.1.81 - 2024-05-22
  • 2.1.80 - 2024-05-22
  • 2.1.79 - 2024-05-22
  • 2.1.78 - 2024-05-22
  • 2.1.77 - 2024-05-21
  • 2.1.76 - 2024-05-21
  • 2.1.75 - 2024-05-20
  • 2.1.74 - 2024-05-20
  • 2.1.73 - 2024-05-20
  • 2.1.72 - 2024-05-20
  • 2.1.71 - 2024-05-20
  • 2.1.70 - 2024-05-20
  • 2.1.69 - 2024-05-20
  • 2.1.68 - 2024-05-20
  • 2.1.67 - 2024-05-19
  • 2.1.66 - 2024-05-19
  • 2.1.65 - 2024-05-18
  • 2.1.64 - 2024-05-17
  • 2.1.63 - 2024-05-17
  • 2.1.62 - 2024-05-17
  • 2.1.61 - 2024-05-17
  • 2.1.60 - 2024-05-16
  • 2.1.59 - 2024-05-16
  • 2.1.58 - 2024-05-15
  • 2.1.57 - 2024-05-15
  • 2.1.56 - 2024-05-15
  • 2.1.55 - 2024-05-14
  • 2.1.54 - 2024-05-14
  • 2.1.53 - 2024-05-14
  • 2.1.52 - 2024-05-13
  • 2.1.51 - 2024-05-13
  • 2.1.50 - 2024-05-13
  • 2.1.49 - 2024-05-13
  • 2.1.48 - 2024-05-13
  • 2.1.47 - 2024-05-13
  • 2.1.46 - 2024-05-13
  • 2.1.45 - 2024-05-13
  • 2.1.44 - 2024-05-12
  • 2.1.43 - 2024-05-11
  • 2.1.42 - 2024-05-11
  • 2.1.41 - 2024-05-11
  • 2.1.40 - 2024-05-10
  • 2.1.39 - 2024-05-09
  • 2.1.38 - 2024-05-09
  • 2.1.37 - 2024-05-09
  • 2.1.36 - 2024-05-08
  • 2.1.35 - 2024-05-08
  • 2.1.34 - 2024-05-08
  • 2.1.33 - 2024-05-08
  • 2.1.32 - 2024-05-07
  • 2.1.31 - 2024-05-07
  • 2.1.30 - 2024-05-07
  • 2.1.29 - 2024-05-07
  • 2.1.28 - 2024-05-07
  • 2.1.27 - 2024-05-07
  • 2.1.26 - 2024-05-06
  • 2.1.25 - 2024-05-06
  • 2.1.24 - 2024-05-06
  • 2.1.23 - 2024-05-05
  • 2.1.22 - 2024-05-04
  • 2.1.21 - 2024-05-04
  • 2.1.20 - 2024-05-04
  • 2.1.19 - 2024-05-04
  • 2.1.18 - 2024-05-03
  • 2.1.17 - 2024-05-03
  • 2.1.16 - 2024-05-02
  • 2.1.15 - 2024-05-01
  • 2.1.14 - 2024-05-01
  • 2.1.13 - 2024-04-30
  • 2.1.12 - 2024-04-29
  • 2.1.11 - 2024-04-29
  • 2.1.10 - 2024-04-29
  • 2.1.9 - 2024-04-28
  • 2.1.8 - 2024-04-28
  • 2.1.7 - 2024-04-27
  • 2.1.6 - 2024-04-27
  • 2.1.5 - 2024-04-27
  • 2.1.4 - 2024-04-27
  • 2.1.3 - 2024-04-27
  • 2.1.2 - 2024-04-24
  • 2.1.1 - 2024-04-23
  • 2.1.0 - 2024-04-23
  • 2.0.99 - 2024-04-22
  • 2.0.98 - 2024-04-22
  • 2.0.97 - 2024-04-21
  • 2.0.96 - 2024-04-21
  • 2.0.95 - 2024-04-21
  • 2.0.94 - 2024-04-20
  • 2.0.93 - 2024-04-19
  • 2.0.92 - 2024-04-19
  • 2.0.91 - 2024-04-18
  • 2.0.90 - 2024-04-17
  • 2.0.89 - 2024-04-17
  • 2.0.88 - 2024-04-16
  • 2.0.87 - 2024-04-15
  • 2.0.86 - 2024-04-15
  • 2.0.85 - 2024-04-14
  • 2.0.84 - 2024-04-14
  • 2.0.83 - 2024-04-14
  • 2.0.82 - 2024-04-14
  • 2.0.81 - 2024-04-13
  • 2.0.80 - 2024-04-13
  • 2.0.79 - 2024-04-12
  • 2.0.78 - 2024-04-10
  • 2.0.77 - 2024-04-10
  • 2.0.76 - 2024-04-09
  • 2.0.75 - 2024-04-08
  • 2.0.74 - 2024-04-08
  • 2.0.73 - 2024-04-08
  • 2.0.72 - 2024-04-08
  • 2.0.71 - 2024-04-07
  • 2.0.70 - 2024-04-07
  • 2.0.69 - 2024-04-07
  • 2.0.68 - 2024-04-07
  • 2.0.67 - 2024-04-06
  • 2.0.66 - 2024-04-06
  • 2.0.65 - 2024-04-06
  • 2.0.64 - 2024-04-06
  • 2.0.63 - 2024-04-06
  • 2.0.62 - 2024-04-06
  • 2.0.61 - 2024-04-05
  • 2.0.60 - 2024-04-04
  • 2.0.59 - 2024-04-04
  • 2.0.58 - 2024-04-03
  • 2.0.57 - 2024-04-03
  • 2.0.56 - 2024-04-02
  • 2.0.55 - 2024-04-02
  • 2.0.54 - 2024-03-31
from vue-data-ui GitHub release notes

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

Snyk has created this PR to upgrade vue-data-ui from 2.0.54 to 2.2.51.

See this package in npm:
vue-data-ui

See this project in Snyk:
https://app.snyk.io/org/anomaly-1/project/412be8c1-e89b-4334-b8af-ee5d0c470f4b?utm_source=github&utm_medium=referral&page=upgrade-pr
Copy link

vercel bot commented Aug 31, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
platemaster ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 31, 2024 8:30am

Copy link

netlify bot commented Aug 31, 2024

Deploy Preview for platemaster ready!

Name Link
🔨 Latest commit 7582033
🔍 Latest deploy log https://app.netlify.com/sites/platemaster/deploys/66d2d48505fff100080bc55c
😎 Deploy Preview https://deploy-preview-111--platemaster.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants